diff --git a/docs/models/Transaction.md b/docs/models/Transaction.md index 78f2ae4..d0edc8e 100644 --- a/docs/models/Transaction.md +++ b/docs/models/Transaction.md @@ -39,6 +39,8 @@ * `PendingAmlScreening` (value: `'PENDING_AML_SCREENING'`) +* `PendingEnrichment` (value: `'PENDING_ENRICHMENT'`) + * `Cancelling` (value: `'CANCELLING'`) * `Cancelled` (value: `'CANCELLED'`) diff --git a/models/transaction.ts b/models/transaction.ts index 7671688..7c44de9 100644 --- a/models/transaction.ts +++ b/models/transaction.ts @@ -60,6 +60,7 @@ export const TransactionStateEnum = { Completed: 'COMPLETED', PartiallyCompleted: 'PARTIALLY_COMPLETED', PendingAmlScreening: 'PENDING_AML_SCREENING', + PendingEnrichment: 'PENDING_ENRICHMENT', Cancelling: 'CANCELLING', Cancelled: 'CANCELLED', Rejected: 'REJECTED',