@mojaloop/api-snippets 17.0.5-snapshot.0 → 17.0.5-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/sdk-scheme-adapter-backend-v2_0_0-openapi3-snippets.yaml +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/backend/json-schemas.json +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/backend/openapi.d.ts +1 -3
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.d.ts +1 -1
- package/package.json +1 -1
- package/sdk-scheme-adapter/v2_0_0/backend/openapi.yaml +1 -1
@@ -404,9 +404,7 @@ export interface components {
|
|
404
404
|
/** @description A response to a request for a quote. */
|
405
405
|
transactionRequestResponse: {
|
406
406
|
transactionId: components["schemas"]["transactionId"];
|
407
|
-
|
408
|
-
} & {
|
409
|
-
transactionRequestState: unknown;
|
407
|
+
transactionRequestState: components["schemas"]["transactionRequestState"];
|
410
408
|
};
|
411
409
|
/** @enum {string} */
|
412
410
|
transactionRequestState: "RECEIVED" | "PENDING" | "ACCEPTED" | "REJECTED";
|
package/package.json
CHANGED