Skip to content
This repository was archived by the owner on May 30, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions docs/output/accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ Describes a Moov account associated with an individual or a business.
| profile | [Profile](#profile) | Details for individual or business |
| metadata | `object` | Arbitrary key-value pairs |
| foreignID | `string` | Optional identification or alias |
| verification | [AccountVerification](#accountverification) | Describes identity verification status and relevant identity verification documents |
| customerSupport | [CustomerSupport](#customersupport), `null` | Displayed on credit card transactions (business only) |
| settings | [AccountSettings](#accountsettings), `null` | Account settings |
| createdOn | `string` | Date account was created |
Expand Down Expand Up @@ -557,18 +556,6 @@ Describes the responsibilities associated with a business representative.



### AccountVerification

Describes the verification state of an account

**Properties**

| Property | Type | Description |
| ---- | ---- | ----------- |
| verificationStatus | `unverified`, `pending`, `resubmit`, `review`, `verified`, `failed`| The status of an identity verification for a profile |



### CustomerSupport

Describes customer support contact information for a business account.
Expand Down
File renamed without changes.
8 changes: 0 additions & 8 deletions lib/accounts.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { Address } from "./address.js";
* @property {Profile} profile - Details for individual or business
* @property {object} metadata - Arbitrary key-value pairs
* @property {string} foreignID - Optional identification or alias
* @property {AccountVerification} verification - Describes identity verification status and relevant identity verification documents
* @property {CustomerSupport|null} customerSupport - Displayed on credit card transactions (business only)
* @property {AccountSettings|null} settings - Account settings
* @property {string} createdOn - Date account was created
Expand Down Expand Up @@ -300,13 +299,6 @@ import { Address } from "./address.js";
* @tag Accounts
*/

/**
* Describes the verification state of an account
* @typedef AccountVerification
* @property {"unverified"|"pending"|"resubmit"|"review"|"verified"|"failed"} verificationStatus - The status of an identity verification for a profile
* @tag Accounts
*/

/**
* Describes customer support contact information for a business account.
* @typedef CustomerSupport
Expand Down
20 changes: 0 additions & 20 deletions lib/types/accounts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
* @property {Profile} profile - Details for individual or business
* @property {object} metadata - Arbitrary key-value pairs
* @property {string} foreignID - Optional identification or alias
* @property {AccountVerification} verification - Describes identity verification status and relevant identity verification documents
* @property {CustomerSupport|null} customerSupport - Displayed on credit card transactions (business only)
* @property {AccountSettings|null} settings - Account settings
* @property {string} createdOn - Date account was created
Expand Down Expand Up @@ -284,12 +283,6 @@
* @property {string} jobTitle
* @tag Accounts
*/
/**
* Describes the verification state of an account
* @typedef AccountVerification
* @property {"unverified"|"pending"|"resubmit"|"review"|"verified"|"failed"} verificationStatus - The status of an identity verification for a profile
* @tag Accounts
*/
/**
* Describes customer support contact information for a business account.
* @typedef CustomerSupport
Expand Down Expand Up @@ -421,10 +414,6 @@ export type Account = {
* - Optional identification or alias
*/
foreignID: string;
/**
* - Describes identity verification status and relevant identity verification documents
*/
verification: AccountVerification;
/**
* - Displayed on credit card transactions (business only)
*/
Expand Down Expand Up @@ -597,15 +586,6 @@ export type Responsibility = {
ownershipPercentage: number;
jobTitle: string;
};
/**
* Describes the verification state of an account
*/
export type AccountVerification = {
/**
* - The status of an identity verification for a profile
*/
verificationStatus: "unverified" | "pending" | "resubmit" | "review" | "verified" | "failed";
};
/**
* Describes customer support contact information for a business account.
*/
Expand Down