@mojaloop/api-snippets 17.0.3-snapshot.1 → 17.0.3-snapshot.2
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 +22 -0
- package/docs/sdk-scheme-adapter-outbound-v2_0_0-openapi3-snippets.yaml +2 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/json-schemas.json +48 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/openapi.d.ts +12 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.d.ts +28 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.js +1 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.js.map +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/backend/types.d.ts +1 -0
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/json-schemas.json +36 -0
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/openapi.d.ts +1 -0
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.d.ts +21 -0
- package/package.json +1 -1
- package/sdk-scheme-adapter/v2_0_0/components/schemas/individualTransferResult.yaml +2 -0
@@ -2209,6 +2209,26 @@ components:
|
|
2209
2209
|
maxLength: 48
|
2210
2210
|
description: Fulfilment that must be attached to the transfer by the Payee.
|
2211
2211
|
example: WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8
|
2212
|
+
TransferState:
|
2213
|
+
title: TransferState
|
2214
|
+
type: string
|
2215
|
+
enum:
|
2216
|
+
- RECEIVED
|
2217
|
+
- RESERVED
|
2218
|
+
- COMMITTED
|
2219
|
+
- ABORTED
|
2220
|
+
description: >-
|
2221
|
+
Below are the allowed values for the enumeration.
|
2222
|
+
|
2223
|
+
- RECEIVED - Next ledger has received the transfer.
|
2224
|
+
|
2225
|
+
- RESERVED - Next ledger has reserved the transfer.
|
2226
|
+
|
2227
|
+
- COMMITTED - Next ledger has successfully performed the transfer.
|
2228
|
+
|
2229
|
+
- ABORTED - Next ledger has aborted the transfer due to a rejection or
|
2230
|
+
failure to perform the transfer.
|
2231
|
+
example: RESERVED
|
2212
2232
|
transferError:
|
2213
2233
|
type: object
|
2214
2234
|
description: >-
|
@@ -2241,6 +2261,8 @@ components:
|
|
2241
2261
|
extensionList:
|
2242
2262
|
$ref: '#/components/schemas/ExtensionList'
|
2243
2263
|
description: Optional extension, specific to deployment.
|
2264
|
+
transferState:
|
2265
|
+
$ref: '#/components/schemas/TransferState'
|
2244
2266
|
lastError:
|
2245
2267
|
$ref: '#/components/schemas/transferError'
|
2246
2268
|
bulkTransactionIndividualTransferResult:
|
@@ -1611,6 +1611,8 @@ components:
|
|
1611
1611
|
extensionList:
|
1612
1612
|
$ref: '#/components/schemas/ExtensionList'
|
1613
1613
|
description: Optional extension, specific to deployment.
|
1614
|
+
transferState:
|
1615
|
+
$ref: '#/components/schemas/TransferState'
|
1614
1616
|
lastError:
|
1615
1617
|
$ref: '#/components/schemas/transferError'
|
1616
1618
|
bulkTransferResponse:
|
@@ -13242,6 +13242,18 @@
|
|
13242
13242
|
"description": "Fulfilment that must be attached to the transfer by the Payee.",
|
13243
13243
|
"example": "WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8"
|
13244
13244
|
},
|
13245
|
+
"TransferState": {
|
13246
|
+
"title": "TransferState",
|
13247
|
+
"type": "string",
|
13248
|
+
"enum": [
|
13249
|
+
"RECEIVED",
|
13250
|
+
"RESERVED",
|
13251
|
+
"COMMITTED",
|
13252
|
+
"ABORTED"
|
13253
|
+
],
|
13254
|
+
"description": "Below are the allowed values for the enumeration.\n- RECEIVED - Next ledger has received the transfer.\n- RESERVED - Next ledger has reserved the transfer.\n- COMMITTED - Next ledger has successfully performed the transfer.\n- ABORTED - Next ledger has aborted the transfer due to a rejection or failure to perform the transfer.",
|
13255
|
+
"example": "RESERVED"
|
13256
|
+
},
|
13245
13257
|
"transferError": {
|
13246
13258
|
"type": "object",
|
13247
13259
|
"description": "This object represents a Mojaloop API error received at any time during the transfer process",
|
@@ -13386,6 +13398,18 @@
|
|
13386
13398
|
"extension"
|
13387
13399
|
]
|
13388
13400
|
},
|
13401
|
+
"transferState": {
|
13402
|
+
"title": "TransferState",
|
13403
|
+
"type": "string",
|
13404
|
+
"enum": [
|
13405
|
+
"RECEIVED",
|
13406
|
+
"RESERVED",
|
13407
|
+
"COMMITTED",
|
13408
|
+
"ABORTED"
|
13409
|
+
],
|
13410
|
+
"description": "Below are the allowed values for the enumeration.\n- RECEIVED - Next ledger has received the transfer.\n- RESERVED - Next ledger has reserved the transfer.\n- COMMITTED - Next ledger has successfully performed the transfer.\n- ABORTED - Next ledger has aborted the transfer due to a rejection or failure to perform the transfer.",
|
13411
|
+
"example": "RESERVED"
|
13412
|
+
},
|
13389
13413
|
"lastError": {
|
13390
13414
|
"type": "object",
|
13391
13415
|
"description": "This object represents a Mojaloop API error received at any time during the transfer process",
|
@@ -14871,6 +14895,18 @@
|
|
14871
14895
|
"extension"
|
14872
14896
|
]
|
14873
14897
|
},
|
14898
|
+
"transferState": {
|
14899
|
+
"title": "TransferState",
|
14900
|
+
"type": "string",
|
14901
|
+
"enum": [
|
14902
|
+
"RECEIVED",
|
14903
|
+
"RESERVED",
|
14904
|
+
"COMMITTED",
|
14905
|
+
"ABORTED"
|
14906
|
+
],
|
14907
|
+
"description": "Below are the allowed values for the enumeration.\n- RECEIVED - Next ledger has received the transfer.\n- RESERVED - Next ledger has reserved the transfer.\n- COMMITTED - Next ledger has successfully performed the transfer.\n- ABORTED - Next ledger has aborted the transfer due to a rejection or failure to perform the transfer.",
|
14908
|
+
"example": "RESERVED"
|
14909
|
+
},
|
14874
14910
|
"lastError": {
|
14875
14911
|
"type": "object",
|
14876
14912
|
"description": "This object represents a Mojaloop API error received at any time during the transfer process",
|
@@ -16814,6 +16850,18 @@
|
|
16814
16850
|
"extension"
|
16815
16851
|
]
|
16816
16852
|
},
|
16853
|
+
"transferState": {
|
16854
|
+
"title": "TransferState",
|
16855
|
+
"type": "string",
|
16856
|
+
"enum": [
|
16857
|
+
"RECEIVED",
|
16858
|
+
"RESERVED",
|
16859
|
+
"COMMITTED",
|
16860
|
+
"ABORTED"
|
16861
|
+
],
|
16862
|
+
"description": "Below are the allowed values for the enumeration.\n- RECEIVED - Next ledger has received the transfer.\n- RESERVED - Next ledger has reserved the transfer.\n- COMMITTED - Next ledger has successfully performed the transfer.\n- ABORTED - Next ledger has aborted the transfer due to a rejection or failure to perform the transfer.",
|
16863
|
+
"example": "RESERVED"
|
16864
|
+
},
|
16817
16865
|
"lastError": {
|
16818
16866
|
"type": "object",
|
16819
16867
|
"description": "This object represents a Mojaloop API error received at any time during the transfer process",
|
@@ -749,6 +749,17 @@ export interface components {
|
|
749
749
|
* @example WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8
|
750
750
|
*/
|
751
751
|
IlpFulfilment: string;
|
752
|
+
/**
|
753
|
+
* TransferState
|
754
|
+
* @description Below are the allowed values for the enumeration.
|
755
|
+
* - RECEIVED - Next ledger has received the transfer.
|
756
|
+
* - RESERVED - Next ledger has reserved the transfer.
|
757
|
+
* - COMMITTED - Next ledger has successfully performed the transfer.
|
758
|
+
* - ABORTED - Next ledger has aborted the transfer due to a rejection or failure to perform the transfer.
|
759
|
+
* @example RESERVED
|
760
|
+
* @enum {string}
|
761
|
+
*/
|
762
|
+
TransferState: "RECEIVED" | "RESERVED" | "COMMITTED" | "ABORTED";
|
752
763
|
/** @description This object represents a Mojaloop API error received at any time during the transfer process */
|
753
764
|
transferError: {
|
754
765
|
/** @description The HTTP status code returned to the caller. This is the same as the actual HTTP status code returned with the response. */
|
@@ -762,6 +773,7 @@ export interface components {
|
|
762
773
|
fulfilment?: components["schemas"]["IlpFulfilment"];
|
763
774
|
/** @description Optional extension, specific to deployment. */
|
764
775
|
extensionList?: components["schemas"]["ExtensionList"];
|
776
|
+
transferState?: components["schemas"]["TransferState"];
|
765
777
|
lastError?: components["schemas"]["transferError"];
|
766
778
|
};
|
767
779
|
bulkTransactionIndividualTransferResult: {
|
@@ -4762,6 +4762,13 @@ export declare namespace Schemas {
|
|
4762
4762
|
description: string;
|
4763
4763
|
example: string;
|
4764
4764
|
};
|
4765
|
+
const TransferState: {
|
4766
|
+
title: string;
|
4767
|
+
type: string;
|
4768
|
+
enum: string[];
|
4769
|
+
description: string;
|
4770
|
+
example: string;
|
4771
|
+
};
|
4765
4772
|
const transferError: {
|
4766
4773
|
type: string;
|
4767
4774
|
description: string;
|
@@ -4891,6 +4898,13 @@ export declare namespace Schemas {
|
|
4891
4898
|
};
|
4892
4899
|
required: string[];
|
4893
4900
|
};
|
4901
|
+
transferState: {
|
4902
|
+
title: string;
|
4903
|
+
type: string;
|
4904
|
+
enum: string[];
|
4905
|
+
description: string;
|
4906
|
+
example: string;
|
4907
|
+
};
|
4894
4908
|
lastError: {
|
4895
4909
|
type: string;
|
4896
4910
|
description: string;
|
@@ -5479,6 +5493,13 @@ export declare namespace Schemas {
|
|
5479
5493
|
};
|
5480
5494
|
required: string[];
|
5481
5495
|
};
|
5496
|
+
transferState: {
|
5497
|
+
title: string;
|
5498
|
+
type: string;
|
5499
|
+
enum: string[];
|
5500
|
+
description: string;
|
5501
|
+
example: string;
|
5502
|
+
};
|
5482
5503
|
lastError: {
|
5483
5504
|
type: string;
|
5484
5505
|
description: string;
|
@@ -6313,6 +6334,13 @@ export declare namespace Schemas {
|
|
6313
6334
|
};
|
6314
6335
|
required: string[];
|
6315
6336
|
};
|
6337
|
+
transferState: {
|
6338
|
+
title: string;
|
6339
|
+
type: string;
|
6340
|
+
enum: string[];
|
6341
|
+
description: string;
|
6342
|
+
example: string;
|
6343
|
+
};
|
6316
6344
|
lastError: {
|
6317
6345
|
type: string;
|
6318
6346
|
description: string;
|
@@ -108,6 +108,7 @@ var Schemas;
|
|
108
108
|
Schemas.quoteError = json_schemas_json_1.default.quoteError;
|
109
109
|
Schemas.individualQuoteResult = json_schemas_json_1.default.individualQuoteResult;
|
110
110
|
Schemas.IlpFulfilment = json_schemas_json_1.default.IlpFulfilment;
|
111
|
+
Schemas.TransferState = json_schemas_json_1.default.TransferState;
|
111
112
|
Schemas.transferError = json_schemas_json_1.default.transferError;
|
112
113
|
Schemas.individualTransferResult = json_schemas_json_1.default.individualTransferResult;
|
113
114
|
Schemas.bulkTransactionIndividualTransferResult = json_schemas_json_1.default.bulkTransactionIndividualTransferResult;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_0_0/backend/schemas.ts"],"names":[],"mappings":";AAAA,oDAAoD;;;;AAEpD,kEAAkE;AAElE,oFAA6C;AAE7C,IAAiB,OAAO,
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_0_0/backend/schemas.ts"],"names":[],"mappings":"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"}
|
@@ -102,6 +102,7 @@ export declare namespace Types {
|
|
102
102
|
type quoteError = components['schemas']['quoteError'];
|
103
103
|
type individualQuoteResult = components['schemas']['individualQuoteResult'];
|
104
104
|
type IlpFulfilment = components['schemas']['IlpFulfilment'];
|
105
|
+
type TransferState = components['schemas']['TransferState'];
|
105
106
|
type transferError = components['schemas']['transferError'];
|
106
107
|
type individualTransferResult = components['schemas']['individualTransferResult'];
|
107
108
|
type bulkTransactionIndividualTransferResult = components['schemas']['bulkTransactionIndividualTransferResult'];
|
@@ -9387,6 +9387,18 @@
|
|
9387
9387
|
"extension"
|
9388
9388
|
]
|
9389
9389
|
},
|
9390
|
+
"transferState": {
|
9391
|
+
"title": "TransferState",
|
9392
|
+
"type": "string",
|
9393
|
+
"enum": [
|
9394
|
+
"RECEIVED",
|
9395
|
+
"RESERVED",
|
9396
|
+
"COMMITTED",
|
9397
|
+
"ABORTED"
|
9398
|
+
],
|
9399
|
+
"description": "Below are the allowed values for the enumeration.\n- RECEIVED - Next ledger has received the transfer.\n- RESERVED - Next ledger has reserved the transfer.\n- COMMITTED - Next ledger has successfully performed the transfer.\n- ABORTED - Next ledger has aborted the transfer due to a rejection or failure to perform the transfer.",
|
9400
|
+
"example": "RESERVED"
|
9401
|
+
},
|
9390
9402
|
"lastError": {
|
9391
9403
|
"type": "object",
|
9392
9404
|
"description": "This object represents a Mojaloop API error received at any time during the transfer process",
|
@@ -9629,6 +9641,18 @@
|
|
9629
9641
|
"extension"
|
9630
9642
|
]
|
9631
9643
|
},
|
9644
|
+
"transferState": {
|
9645
|
+
"title": "TransferState",
|
9646
|
+
"type": "string",
|
9647
|
+
"enum": [
|
9648
|
+
"RECEIVED",
|
9649
|
+
"RESERVED",
|
9650
|
+
"COMMITTED",
|
9651
|
+
"ABORTED"
|
9652
|
+
],
|
9653
|
+
"description": "Below are the allowed values for the enumeration.\n- RECEIVED - Next ledger has received the transfer.\n- RESERVED - Next ledger has reserved the transfer.\n- COMMITTED - Next ledger has successfully performed the transfer.\n- ABORTED - Next ledger has aborted the transfer due to a rejection or failure to perform the transfer.",
|
9654
|
+
"example": "RESERVED"
|
9655
|
+
},
|
9632
9656
|
"lastError": {
|
9633
9657
|
"type": "object",
|
9634
9658
|
"description": "This object represents a Mojaloop API error received at any time during the transfer process",
|
@@ -9896,6 +9920,18 @@
|
|
9896
9920
|
"extension"
|
9897
9921
|
]
|
9898
9922
|
},
|
9923
|
+
"transferState": {
|
9924
|
+
"title": "TransferState",
|
9925
|
+
"type": "string",
|
9926
|
+
"enum": [
|
9927
|
+
"RECEIVED",
|
9928
|
+
"RESERVED",
|
9929
|
+
"COMMITTED",
|
9930
|
+
"ABORTED"
|
9931
|
+
],
|
9932
|
+
"description": "Below are the allowed values for the enumeration.\n- RECEIVED - Next ledger has received the transfer.\n- RESERVED - Next ledger has reserved the transfer.\n- COMMITTED - Next ledger has successfully performed the transfer.\n- ABORTED - Next ledger has aborted the transfer due to a rejection or failure to perform the transfer.",
|
9933
|
+
"example": "RESERVED"
|
9934
|
+
},
|
9899
9935
|
"lastError": {
|
9900
9936
|
"type": "object",
|
9901
9937
|
"description": "This object represents a Mojaloop API error received at any time during the transfer process",
|
@@ -832,6 +832,7 @@ export interface components {
|
|
832
832
|
fulfilment?: components["schemas"]["IlpFulfilment"];
|
833
833
|
/** @description Optional extension, specific to deployment. */
|
834
834
|
extensionList?: components["schemas"]["ExtensionList"];
|
835
|
+
transferState?: components["schemas"]["TransferState"];
|
835
836
|
lastError?: components["schemas"]["transferError"];
|
836
837
|
};
|
837
838
|
bulkTransferResponse: {
|
@@ -4397,6 +4397,13 @@ export declare namespace Schemas {
|
|
4397
4397
|
};
|
4398
4398
|
required: string[];
|
4399
4399
|
};
|
4400
|
+
transferState: {
|
4401
|
+
title: string;
|
4402
|
+
type: string;
|
4403
|
+
enum: string[];
|
4404
|
+
description: string;
|
4405
|
+
example: string;
|
4406
|
+
};
|
4400
4407
|
lastError: {
|
4401
4408
|
type: string;
|
4402
4409
|
description: string;
|
@@ -4607,6 +4614,13 @@ export declare namespace Schemas {
|
|
4607
4614
|
};
|
4608
4615
|
required: string[];
|
4609
4616
|
};
|
4617
|
+
transferState: {
|
4618
|
+
title: string;
|
4619
|
+
type: string;
|
4620
|
+
enum: string[];
|
4621
|
+
description: string;
|
4622
|
+
example: string;
|
4623
|
+
};
|
4610
4624
|
lastError: {
|
4611
4625
|
type: string;
|
4612
4626
|
description: string;
|
@@ -4840,6 +4854,13 @@ export declare namespace Schemas {
|
|
4840
4854
|
};
|
4841
4855
|
required: string[];
|
4842
4856
|
};
|
4857
|
+
transferState: {
|
4858
|
+
title: string;
|
4859
|
+
type: string;
|
4860
|
+
enum: string[];
|
4861
|
+
description: string;
|
4862
|
+
example: string;
|
4863
|
+
};
|
4843
4864
|
lastError: {
|
4844
4865
|
type: string;
|
4845
4866
|
description: string;
|
package/package.json
CHANGED