Skip to content

Commit

Permalink
Dynamic descriptor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
devinmarieb committed Jul 2, 2024
1 parent 4b4a93a commit 2e10ac9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/output/cards.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ Describes a Card account.

| Property | Type | Description |
| ---- | ---- | ----------- |
| dynamicDescriptor | `string`| An optional override of the default card statement descriptor for a single transfer |
| dynamicDescriptor | `string`| An optional override of the default card statement descriptor for a transfer. Accounts must be enabled by Moov to set this field. |
| merchantInitiatedType | `recurring`, `unscheduled`, `null`| Enum: [recurring unscheduled] Describes how the card transaction was initiated |


Expand Down
2 changes: 1 addition & 1 deletion docs/output/transfers.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ try {

| Property | Type | Description |
| ---- | ---- | ----------- |
| dynamicDescriptor | `string`| An optional override of the default card statement descriptor for a single transfer |
| dynamicDescriptor | `string`| An optional override of the default card statement descriptor for a transfer. Accounts must be enabled by Moov to set this field. |
| transactionSource | `first-recurring`, `recurring`, `unscheduled`, `null`| Enum: [first-recurring recurring unscheduled] Describes how the card transaction was initiated |


Expand Down
2 changes: 1 addition & 1 deletion lib/cardDetails.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @typedef CardDetails
* @type {object}
* @property {string} dynamicDescriptor -An optional override of the default card statement descriptor for a single transfer
* @property {string} dynamicDescriptor - An optional override of the default card statement descriptor for a transfer. Accounts must be enabled by Moov to set this field.
* @property {"first-recurring"|"recurring"|"unscheduled"|null} transactionSource - Enum: [first-recurring recurring unscheduled] Describes how the card transaction was initiated
* @tag Transfers
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/transfers.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Address } from "./address.js";
/**
* @typedef CardDetails
* @type {object}
* @property {string} dynamicDescriptor - An optional override of the default card statement descriptor for a single transfer
* @property {string} dynamicDescriptor - An optional override of the default card statement descriptor for a transfer. Accounts must be enabled by Moov to set this field.
* @property {"recurring"|"unscheduled"|null} merchantInitiatedType - Enum: [recurring unscheduled] Describes how the card transaction was initiated
* @tag Cards
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/types/cardDetails.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export var unused: {};
export type CardDetails = {
/**
* -An optional override of the default card statement descriptor for a single transfer
* -An optional override of the default card statement descriptor for a transfer. Accounts must be enabled by Moov to set this field.
*/
dynamicDescriptor: string;
/**
Expand Down
4 changes: 2 additions & 2 deletions lib/types/transfers.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @typedef CardDetails
* @type {object}
* @property {string} dynamicDescriptor -An optional override of the default card statement descriptor for a single transfer.
* @property {string} dynamicDescriptor -An optional override of the default card statement descriptor for a transfer. Accounts must be enabled by Moov to set this field.
* @property {"recurring"|"unscheduled"|null} merchantInitiatedType - Enum: [recurring unscheduled] Describes how the card transaction was initiated
* @tag Cards
*/
Expand Down Expand Up @@ -393,7 +393,7 @@ export class Transfers {
}
export type CardDetails = {
/**
* -An optional override of the default card statement descriptor for a single transfer
* -An optional override of the default card statement descriptor for a transfer. Accounts must be enabled by Moov to set this field.
*/
dynamicDescriptor: string;
/**
Expand Down

0 comments on commit 2e10ac9

Please sign in to comment.