@mojaloop/api-snippets 17.6.1 → 17.7.0-snapshot.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/fspiop-rest-v2.0-openapi3-snippets.yaml +5 -7
- package/docs/sdk-scheme-adapter-backend-v2_1_0-openapi3-snippets.yaml +13 -13
- package/docs/sdk-scheme-adapter-outbound-v2_1_0-openapi3-snippets.yaml +2 -2
- package/fspiop/v2_0/openapi3/components/schemas/CorrelationId.yaml +5 -6
- package/lib/fspiop/v2_0/json-schemas.json +78 -78
- package/lib/fspiop/v2_0/openapi.d.ts +1 -1
- package/lib/sdk-scheme-adapter/v2_1_0/backend/json-schemas.json +123 -123
- package/lib/sdk-scheme-adapter/v2_1_0/backend/openapi.d.ts +6 -6
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/json-schemas.json +144 -144
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/openapi.d.ts +1 -1
- package/package.json +6 -6
- package/sdk-bulk.yaml +5 -9
- package/sdk-scheme-adapter/v2_1_0/backend/openapi.yaml +11 -11
- package/sdk-scheme-adapter/v2_1_0/components/schemas/CorrelationId.yaml +5 -6
- package/thirdparty/v1_0/openapi3/thirdparty-dfsp-api.yaml +11 -8
- package/thirdparty/v1_0/openapi3/thirdparty-pisp-api.yaml +11 -8
@@ -467,7 +467,7 @@ export interface components {
|
|
467
467
|
};
|
468
468
|
/** @enum {string} */
|
469
469
|
amountType: "SEND" | "RECEIVE";
|
470
|
-
/** @description A Mojaloop API bulk quote identifier (UUID). */
|
470
|
+
/** @description A Mojaloop API bulk quote identifier (UUID/ULID). */
|
471
471
|
bulkQuoteId: string;
|
472
472
|
/** @description A request for a bulk quote. */
|
473
473
|
bulkQuoteRequest: {
|
@@ -484,7 +484,7 @@ export interface components {
|
|
484
484
|
/** @description Fees for each individual transaction, if any of them are charged per transaction. */
|
485
485
|
individualQuoteResults: (components["schemas"]["IndividualQuoteResultSuccess"] | components["schemas"]["IndividualQuoteResultFailed"])[];
|
486
486
|
};
|
487
|
-
/** @description A Mojaloop API transfer identifier (UUID). */
|
487
|
+
/** @description A Mojaloop API transfer identifier (UUID/ULID). */
|
488
488
|
bulkTransferId: string;
|
489
489
|
bulkTransferRequest: {
|
490
490
|
bulkQuote?: components["schemas"]["bulkQuoteResponse"];
|
@@ -613,7 +613,7 @@ export interface components {
|
|
613
613
|
};
|
614
614
|
/** @enum {string} */
|
615
615
|
payerType: "CONSUMER" | "AGENT" | "BUSINESS" | "DEVICE";
|
616
|
-
/** @description A Mojaloop API quote identifier (UUID). */
|
616
|
+
/** @description A Mojaloop API quote identifier (UUID/ULID). */
|
617
617
|
quoteId: string;
|
618
618
|
/** @description A request for a quote for transfer from the DFSP backend. */
|
619
619
|
quoteRequest: {
|
@@ -680,7 +680,7 @@ export interface components {
|
|
680
680
|
subScenario?: components["schemas"]["TransactionSubScenario"];
|
681
681
|
authenticationType?: components["schemas"]["AuthenticationType"];
|
682
682
|
};
|
683
|
-
/** @description A Mojaloop API transaction request identifier (UUID). */
|
683
|
+
/** @description A Mojaloop API transaction request identifier (UUID/ULID). */
|
684
684
|
transactionRequestId: string;
|
685
685
|
/** @description A response to a request for a quote. */
|
686
686
|
transactionRequestResponse: {
|
@@ -721,7 +721,7 @@ export interface components {
|
|
721
721
|
transactionType: components["schemas"]["transactionType"];
|
722
722
|
transferState: components["schemas"]["transferState"];
|
723
723
|
};
|
724
|
-
/** @description A Mojaloop API transfer identifier (UUID). */
|
724
|
+
/** @description A Mojaloop API transfer identifier (UUID/ULID). */
|
725
725
|
transferId: string;
|
726
726
|
transferParty: {
|
727
727
|
dateOfBirth?: components["schemas"]["dateOfBirth"];
|
@@ -835,7 +835,7 @@ export interface components {
|
|
835
835
|
};
|
836
836
|
/**
|
837
837
|
* CorrelationId
|
838
|
-
* @description Identifier that correlates all messages of the same sequence. The
|
838
|
+
* @description Identifier that correlates all messages of the same sequence. The supported identifiers formats are for lowercase [UUID](https://datatracker.ietf.org/doc/html/rfc9562) and uppercase [ULID](https://github.com/ulid/spec)
|
839
839
|
* @example b51ec534-ee48-4575-b6a9-ead2955b8069
|
840
840
|
*/
|
841
841
|
CorrelationId: string;
|