@mojaloop/api-snippets 17.0.0 → 17.0.2-snapshot.0
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/CHANGELOG.md +8 -0
- package/docs/sdk-scheme-adapter-backend-v2_0_0-openapi3-snippets.yaml +2744 -0
- package/docs/sdk-scheme-adapter-outbound-v2_0_0-openapi3-snippets.yaml +40 -8
- package/lib/example.d.ts +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/{inbound → backend}/index.d.ts +0 -0
- package/lib/sdk-scheme-adapter/v2_0_0/{inbound → backend}/index.js +0 -0
- package/lib/sdk-scheme-adapter/v2_0_0/{inbound → backend}/index.js.map +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/{inbound → backend}/json-schemas.json +9599 -9297
- package/lib/sdk-scheme-adapter/v2_0_0/backend/openapi.d.ts +4505 -0
- package/lib/sdk-scheme-adapter/v2_0_0/{inbound → backend}/openapi.js +0 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/openapi.js.map +1 -0
- package/lib/sdk-scheme-adapter/v2_0_0/{inbound → backend}/schemas.d.ts +3224 -3277
- package/lib/sdk-scheme-adapter/v2_0_0/{inbound → backend}/schemas.js +52 -58
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.js.map +1 -0
- package/lib/sdk-scheme-adapter/v2_0_0/{inbound → backend}/types.d.ts +52 -58
- package/lib/sdk-scheme-adapter/v2_0_0/{inbound → backend}/types.js +0 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/types.js.map +1 -0
- package/lib/sdk-scheme-adapter/v2_0_0/index.d.ts +2 -2
- package/lib/sdk-scheme-adapter/v2_0_0/index.js +3 -3
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/json-schemas.json +63 -7
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/openapi.d.ts +186 -6
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.d.ts +63 -7
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js.map +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/types.d.ts +1 -1
- package/package.json +23 -23
- package/sdk-scheme-adapter/v2_0_0/backend/openapi.yaml +1723 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/individualQuote.yaml +2 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/individualTransfer.yaml +2 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/transferRequest.yaml +2 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/transferResponse.yaml +2 -0
- package/docs/sdk-scheme-adapter-inbound-v2_0_0-openapi3-snippets.yaml +0 -2889
- package/lib/sdk-scheme-adapter/v2_0_0/inbound/openapi.d.ts +0 -4350
- package/lib/sdk-scheme-adapter/v2_0_0/inbound/openapi.js.map +0 -1
- package/lib/sdk-scheme-adapter/v2_0_0/inbound/schemas.js.map +0 -1
- package/lib/sdk-scheme-adapter/v2_0_0/inbound/types.js.map +0 -1
- package/sdk-scheme-adapter/v2_0_0/inbound/openapi.yaml +0 -1074
@@ -261,6 +261,12 @@ export interface paths {
|
|
261
261
|
* @enum {string}
|
262
262
|
*/
|
263
263
|
transactionType: "TRANSFER";
|
264
|
+
/**
|
265
|
+
* TransactionSubScenario
|
266
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
267
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
268
|
+
*/
|
269
|
+
subScenario?: string;
|
264
270
|
/**
|
265
271
|
* Note
|
266
272
|
* @description Memo assigned to transaction.
|
@@ -755,6 +761,12 @@ export interface paths {
|
|
755
761
|
* @enum {string}
|
756
762
|
*/
|
757
763
|
transactionType: "TRANSFER";
|
764
|
+
/**
|
765
|
+
* TransactionSubScenario
|
766
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
767
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
768
|
+
*/
|
769
|
+
subScenario?: string;
|
758
770
|
/**
|
759
771
|
* Note
|
760
772
|
* @description Memo assigned to transaction.
|
@@ -1250,6 +1262,12 @@ export interface paths {
|
|
1250
1262
|
* @enum {string}
|
1251
1263
|
*/
|
1252
1264
|
transactionType: "TRANSFER";
|
1265
|
+
/**
|
1266
|
+
* TransactionSubScenario
|
1267
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
1268
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
1269
|
+
*/
|
1270
|
+
subScenario?: string;
|
1253
1271
|
/**
|
1254
1272
|
* Note
|
1255
1273
|
* @description Memo assigned to transaction.
|
@@ -1745,6 +1763,12 @@ export interface paths {
|
|
1745
1763
|
* @enum {string}
|
1746
1764
|
*/
|
1747
1765
|
transactionType: "TRANSFER";
|
1766
|
+
/**
|
1767
|
+
* TransactionSubScenario
|
1768
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
1769
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
1770
|
+
*/
|
1771
|
+
subScenario?: string;
|
1748
1772
|
/**
|
1749
1773
|
* Note
|
1750
1774
|
* @description Memo assigned to transaction.
|
@@ -2229,6 +2253,12 @@ export interface paths {
|
|
2229
2253
|
* @enum {string}
|
2230
2254
|
*/
|
2231
2255
|
transactionType: "TRANSFER";
|
2256
|
+
/**
|
2257
|
+
* TransactionSubScenario
|
2258
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
2259
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
2260
|
+
*/
|
2261
|
+
subScenario?: string;
|
2232
2262
|
/**
|
2233
2263
|
* Note
|
2234
2264
|
* @description Memo assigned to transaction.
|
@@ -2597,6 +2627,12 @@ export interface paths {
|
|
2597
2627
|
* @enum {string}
|
2598
2628
|
*/
|
2599
2629
|
transactionType: "TRANSFER";
|
2630
|
+
/**
|
2631
|
+
* TransactionSubScenario
|
2632
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
2633
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
2634
|
+
*/
|
2635
|
+
subScenario?: string;
|
2600
2636
|
/**
|
2601
2637
|
* Note
|
2602
2638
|
* @description Memo assigned to transaction.
|
@@ -3091,6 +3127,12 @@ export interface paths {
|
|
3091
3127
|
* @enum {string}
|
3092
3128
|
*/
|
3093
3129
|
transactionType: "TRANSFER";
|
3130
|
+
/**
|
3131
|
+
* TransactionSubScenario
|
3132
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
3133
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
3134
|
+
*/
|
3135
|
+
subScenario?: string;
|
3094
3136
|
/**
|
3095
3137
|
* Note
|
3096
3138
|
* @description Memo assigned to transaction.
|
@@ -3586,6 +3628,12 @@ export interface paths {
|
|
3586
3628
|
* @enum {string}
|
3587
3629
|
*/
|
3588
3630
|
transactionType: "TRANSFER";
|
3631
|
+
/**
|
3632
|
+
* TransactionSubScenario
|
3633
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
3634
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
3635
|
+
*/
|
3636
|
+
subScenario?: string;
|
3589
3637
|
/**
|
3590
3638
|
* Note
|
3591
3639
|
* @description Memo assigned to transaction.
|
@@ -5155,6 +5203,12 @@ export interface paths {
|
|
5155
5203
|
* @enum {string}
|
5156
5204
|
*/
|
5157
5205
|
transactionType?: "TRANSFER";
|
5206
|
+
/**
|
5207
|
+
* TransactionSubScenario
|
5208
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
5209
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
5210
|
+
*/
|
5211
|
+
subScenario?: string;
|
5158
5212
|
/**
|
5159
5213
|
* IlpPacket
|
5160
5214
|
* @description Information for recipient (transport layer information).
|
@@ -6401,6 +6455,12 @@ export interface paths {
|
|
6401
6455
|
* @enum {string}
|
6402
6456
|
*/
|
6403
6457
|
transactionType: "TRANSFER";
|
6458
|
+
/**
|
6459
|
+
* TransactionSubScenario
|
6460
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
6461
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
6462
|
+
*/
|
6463
|
+
subScenario?: string;
|
6404
6464
|
/**
|
6405
6465
|
* Note
|
6406
6466
|
* @description Memo assigned to transaction.
|
@@ -6600,6 +6660,12 @@ export interface paths {
|
|
6600
6660
|
* @enum {string}
|
6601
6661
|
*/
|
6602
6662
|
transactionType: "TRANSFER";
|
6663
|
+
/**
|
6664
|
+
* TransactionSubScenario
|
6665
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
6666
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
6667
|
+
*/
|
6668
|
+
subScenario?: string;
|
6603
6669
|
/**
|
6604
6670
|
* Note
|
6605
6671
|
* @description Memo assigned to transaction.
|
@@ -8014,6 +8080,12 @@ export interface paths {
|
|
8014
8080
|
* @enum {string}
|
8015
8081
|
*/
|
8016
8082
|
transactionType: "TRANSFER";
|
8083
|
+
/**
|
8084
|
+
* TransactionSubScenario
|
8085
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
8086
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
8087
|
+
*/
|
8088
|
+
subScenario?: string;
|
8017
8089
|
/**
|
8018
8090
|
* Note
|
8019
8091
|
* @description Memo assigned to transaction.
|
@@ -8509,6 +8581,12 @@ export interface paths {
|
|
8509
8581
|
* @enum {string}
|
8510
8582
|
*/
|
8511
8583
|
transactionType: "TRANSFER";
|
8584
|
+
/**
|
8585
|
+
* TransactionSubScenario
|
8586
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
8587
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
8588
|
+
*/
|
8589
|
+
subScenario?: string;
|
8512
8590
|
/**
|
8513
8591
|
* Note
|
8514
8592
|
* @description Memo assigned to transaction.
|
@@ -9004,6 +9082,12 @@ export interface paths {
|
|
9004
9082
|
* @enum {string}
|
9005
9083
|
*/
|
9006
9084
|
transactionType: "TRANSFER";
|
9085
|
+
/**
|
9086
|
+
* TransactionSubScenario
|
9087
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
9088
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
9089
|
+
*/
|
9090
|
+
subScenario?: string;
|
9007
9091
|
/**
|
9008
9092
|
* Note
|
9009
9093
|
* @description Memo assigned to transaction.
|
@@ -9822,6 +9906,12 @@ export interface paths {
|
|
9822
9906
|
* @enum {string}
|
9823
9907
|
*/
|
9824
9908
|
transactionType: "TRANSFER";
|
9909
|
+
/**
|
9910
|
+
* TransactionSubScenario
|
9911
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
9912
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
9913
|
+
*/
|
9914
|
+
subScenario?: string;
|
9825
9915
|
/**
|
9826
9916
|
* Note
|
9827
9917
|
* @description Memo assigned to transaction.
|
@@ -10316,6 +10406,12 @@ export interface paths {
|
|
10316
10406
|
* @enum {string}
|
10317
10407
|
*/
|
10318
10408
|
transactionType: "TRANSFER";
|
10409
|
+
/**
|
10410
|
+
* TransactionSubScenario
|
10411
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
10412
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
10413
|
+
*/
|
10414
|
+
subScenario?: string;
|
10319
10415
|
/**
|
10320
10416
|
* Note
|
10321
10417
|
* @description Memo assigned to transaction.
|
@@ -10811,6 +10907,12 @@ export interface paths {
|
|
10811
10907
|
* @enum {string}
|
10812
10908
|
*/
|
10813
10909
|
transactionType: "TRANSFER";
|
10910
|
+
/**
|
10911
|
+
* TransactionSubScenario
|
10912
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
10913
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
10914
|
+
*/
|
10915
|
+
subScenario?: string;
|
10814
10916
|
/**
|
10815
10917
|
* Note
|
10816
10918
|
* @description Memo assigned to transaction.
|
@@ -11965,6 +12067,12 @@ export interface components {
|
|
11965
12067
|
* @enum {string}
|
11966
12068
|
*/
|
11967
12069
|
transferTransactionType: "TRANSFER";
|
12070
|
+
/**
|
12071
|
+
* TransactionSubScenario
|
12072
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
12073
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
12074
|
+
*/
|
12075
|
+
TransactionSubScenario: string;
|
11968
12076
|
/**
|
11969
12077
|
* Note
|
11970
12078
|
* @description Memo assigned to transaction.
|
@@ -12187,6 +12295,12 @@ export interface components {
|
|
12187
12295
|
* @enum {string}
|
12188
12296
|
*/
|
12189
12297
|
transactionType: "TRANSFER";
|
12298
|
+
/**
|
12299
|
+
* TransactionSubScenario
|
12300
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
12301
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
12302
|
+
*/
|
12303
|
+
subScenario?: string;
|
12190
12304
|
/**
|
12191
12305
|
* Note
|
12192
12306
|
* @description Memo assigned to transaction.
|
@@ -12860,6 +12974,12 @@ export interface components {
|
|
12860
12974
|
* @enum {string}
|
12861
12975
|
*/
|
12862
12976
|
transactionType: "TRANSFER";
|
12977
|
+
/**
|
12978
|
+
* TransactionSubScenario
|
12979
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
12980
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
12981
|
+
*/
|
12982
|
+
subScenario?: string;
|
12863
12983
|
/**
|
12864
12984
|
* Note
|
12865
12985
|
* @description Memo assigned to transaction.
|
@@ -13355,6 +13475,12 @@ export interface components {
|
|
13355
13475
|
* @enum {string}
|
13356
13476
|
*/
|
13357
13477
|
transactionType: "TRANSFER";
|
13478
|
+
/**
|
13479
|
+
* TransactionSubScenario
|
13480
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
13481
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
13482
|
+
*/
|
13483
|
+
subScenario?: string;
|
13358
13484
|
/**
|
13359
13485
|
* Note
|
13360
13486
|
* @description Memo assigned to transaction.
|
@@ -15346,6 +15472,12 @@ export interface components {
|
|
15346
15472
|
* @enum {string}
|
15347
15473
|
*/
|
15348
15474
|
transactionType?: "TRANSFER";
|
15475
|
+
/**
|
15476
|
+
* TransactionSubScenario
|
15477
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
15478
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
15479
|
+
*/
|
15480
|
+
subScenario?: string;
|
15349
15481
|
/**
|
15350
15482
|
* IlpPacket
|
15351
15483
|
* @description Information for recipient (transport layer information).
|
@@ -15619,6 +15751,12 @@ export interface components {
|
|
15619
15751
|
* @enum {string}
|
15620
15752
|
*/
|
15621
15753
|
transactionType?: "TRANSFER";
|
15754
|
+
/**
|
15755
|
+
* TransactionSubScenario
|
15756
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
15757
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
15758
|
+
*/
|
15759
|
+
subScenario?: string;
|
15622
15760
|
/**
|
15623
15761
|
* IlpPacket
|
15624
15762
|
* @description Information for recipient (transport layer information).
|
@@ -15872,6 +16010,12 @@ export interface components {
|
|
15872
16010
|
* @enum {string}
|
15873
16011
|
*/
|
15874
16012
|
transactionType: "TRANSFER";
|
16013
|
+
/**
|
16014
|
+
* TransactionSubScenario
|
16015
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
16016
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
16017
|
+
*/
|
16018
|
+
subScenario?: string;
|
15875
16019
|
/**
|
15876
16020
|
* Note
|
15877
16021
|
* @description Memo assigned to transaction.
|
@@ -16128,6 +16272,12 @@ export interface components {
|
|
16128
16272
|
* @enum {string}
|
16129
16273
|
*/
|
16130
16274
|
transactionType: "TRANSFER";
|
16275
|
+
/**
|
16276
|
+
* TransactionSubScenario
|
16277
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
16278
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
16279
|
+
*/
|
16280
|
+
subScenario?: string;
|
16131
16281
|
/**
|
16132
16282
|
* Note
|
16133
16283
|
* @description Memo assigned to transaction.
|
@@ -16911,6 +17061,12 @@ export interface components {
|
|
16911
17061
|
* @enum {string}
|
16912
17062
|
*/
|
16913
17063
|
transactionType: "TRANSFER";
|
17064
|
+
/**
|
17065
|
+
* TransactionSubScenario
|
17066
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
17067
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
17068
|
+
*/
|
17069
|
+
subScenario?: string;
|
16914
17070
|
/**
|
16915
17071
|
* Note
|
16916
17072
|
* @description Memo assigned to transaction.
|
@@ -16950,12 +17106,6 @@ export interface components {
|
|
16950
17106
|
* @enum {string}
|
16951
17107
|
*/
|
16952
17108
|
TransactionScenario: "DEPOSIT" | "WITHDRAWAL" | "TRANSFER" | "PAYMENT" | "REFUND";
|
16953
|
-
/**
|
16954
|
-
* TransactionSubScenario
|
16955
|
-
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
16956
|
-
* @example LOCALLY_DEFINED_SUBSCENARIO
|
16957
|
-
*/
|
16958
|
-
TransactionSubScenario: string;
|
16959
17109
|
/**
|
16960
17110
|
* TransactionInitiator
|
16961
17111
|
* @description Below are the allowed values for the enumeration.
|
@@ -20344,6 +20494,12 @@ export interface components {
|
|
20344
20494
|
* @enum {string}
|
20345
20495
|
*/
|
20346
20496
|
transactionType: "TRANSFER";
|
20497
|
+
/**
|
20498
|
+
* TransactionSubScenario
|
20499
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
20500
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
20501
|
+
*/
|
20502
|
+
subScenario?: string;
|
20347
20503
|
/**
|
20348
20504
|
* Note
|
20349
20505
|
* @description Memo assigned to transaction.
|
@@ -20838,6 +20994,12 @@ export interface components {
|
|
20838
20994
|
* @enum {string}
|
20839
20995
|
*/
|
20840
20996
|
transactionType: "TRANSFER";
|
20997
|
+
/**
|
20998
|
+
* TransactionSubScenario
|
20999
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
21000
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
21001
|
+
*/
|
21002
|
+
subScenario?: string;
|
20841
21003
|
/**
|
20842
21004
|
* Note
|
20843
21005
|
* @description Memo assigned to transaction.
|
@@ -21333,6 +21495,12 @@ export interface components {
|
|
21333
21495
|
* @enum {string}
|
21334
21496
|
*/
|
21335
21497
|
transactionType: "TRANSFER";
|
21498
|
+
/**
|
21499
|
+
* TransactionSubScenario
|
21500
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
21501
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
21502
|
+
*/
|
21503
|
+
subScenario?: string;
|
21336
21504
|
/**
|
21337
21505
|
* Note
|
21338
21506
|
* @description Memo assigned to transaction.
|
@@ -21828,6 +21996,12 @@ export interface components {
|
|
21828
21996
|
* @enum {string}
|
21829
21997
|
*/
|
21830
21998
|
transactionType: "TRANSFER";
|
21999
|
+
/**
|
22000
|
+
* TransactionSubScenario
|
22001
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
22002
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
22003
|
+
*/
|
22004
|
+
subScenario?: string;
|
21831
22005
|
/**
|
21832
22006
|
* Note
|
21833
22007
|
* @description Memo assigned to transaction.
|
@@ -24429,6 +24603,12 @@ export interface components {
|
|
24429
24603
|
* @enum {string}
|
24430
24604
|
*/
|
24431
24605
|
transactionType: "TRANSFER";
|
24606
|
+
/**
|
24607
|
+
* TransactionSubScenario
|
24608
|
+
* @description Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).
|
24609
|
+
* @example LOCALLY_DEFINED_SUBSCENARIO
|
24610
|
+
*/
|
24611
|
+
subScenario?: string;
|
24432
24612
|
/**
|
24433
24613
|
* Note
|
24434
24614
|
* @description Memo assigned to transaction.
|
@@ -285,6 +285,13 @@ export declare namespace Schemas {
|
|
285
285
|
enum: string[];
|
286
286
|
description: string;
|
287
287
|
};
|
288
|
+
const TransactionSubScenario: {
|
289
|
+
title: string;
|
290
|
+
type: string;
|
291
|
+
pattern: string;
|
292
|
+
description: string;
|
293
|
+
example: string;
|
294
|
+
};
|
288
295
|
const Note: {
|
289
296
|
title: string;
|
290
297
|
type: string;
|
@@ -557,6 +564,13 @@ export declare namespace Schemas {
|
|
557
564
|
enum: string[];
|
558
565
|
description: string;
|
559
566
|
};
|
567
|
+
subScenario: {
|
568
|
+
title: string;
|
569
|
+
type: string;
|
570
|
+
pattern: string;
|
571
|
+
description: string;
|
572
|
+
example: string;
|
573
|
+
};
|
560
574
|
note: {
|
561
575
|
title: string;
|
562
576
|
type: string;
|
@@ -1496,6 +1510,13 @@ export declare namespace Schemas {
|
|
1496
1510
|
enum: string[];
|
1497
1511
|
description: string;
|
1498
1512
|
};
|
1513
|
+
subScenario: {
|
1514
|
+
title: string;
|
1515
|
+
type: string;
|
1516
|
+
pattern: string;
|
1517
|
+
description: string;
|
1518
|
+
example: string;
|
1519
|
+
};
|
1499
1520
|
note: {
|
1500
1521
|
title: string;
|
1501
1522
|
type: string;
|
@@ -2179,6 +2200,13 @@ export declare namespace Schemas {
|
|
2179
2200
|
enum: string[];
|
2180
2201
|
description: string;
|
2181
2202
|
};
|
2203
|
+
subScenario: {
|
2204
|
+
title: string;
|
2205
|
+
type: string;
|
2206
|
+
pattern: string;
|
2207
|
+
description: string;
|
2208
|
+
example: string;
|
2209
|
+
};
|
2182
2210
|
note: {
|
2183
2211
|
title: string;
|
2184
2212
|
type: string;
|
@@ -5326,6 +5354,13 @@ export declare namespace Schemas {
|
|
5326
5354
|
enum: string[];
|
5327
5355
|
description: string;
|
5328
5356
|
};
|
5357
|
+
subScenario: {
|
5358
|
+
title: string;
|
5359
|
+
type: string;
|
5360
|
+
pattern: string;
|
5361
|
+
description: string;
|
5362
|
+
example: string;
|
5363
|
+
};
|
5329
5364
|
ilpPacket: {
|
5330
5365
|
title: string;
|
5331
5366
|
type: string;
|
@@ -5684,6 +5719,13 @@ export declare namespace Schemas {
|
|
5684
5719
|
enum: string[];
|
5685
5720
|
description: string;
|
5686
5721
|
};
|
5722
|
+
subScenario: {
|
5723
|
+
title: string;
|
5724
|
+
type: string;
|
5725
|
+
pattern: string;
|
5726
|
+
description: string;
|
5727
|
+
example: string;
|
5728
|
+
};
|
5687
5729
|
ilpPacket: {
|
5688
5730
|
title: string;
|
5689
5731
|
type: string;
|
@@ -6062,6 +6104,13 @@ export declare namespace Schemas {
|
|
6062
6104
|
enum: string[];
|
6063
6105
|
description: string;
|
6064
6106
|
};
|
6107
|
+
subScenario: {
|
6108
|
+
title: string;
|
6109
|
+
type: string;
|
6110
|
+
pattern: string;
|
6111
|
+
description: string;
|
6112
|
+
example: string;
|
6113
|
+
};
|
6065
6114
|
note: {
|
6066
6115
|
title: string;
|
6067
6116
|
type: string;
|
@@ -6397,6 +6446,13 @@ export declare namespace Schemas {
|
|
6397
6446
|
enum: string[];
|
6398
6447
|
description: string;
|
6399
6448
|
};
|
6449
|
+
subScenario: {
|
6450
|
+
title: string;
|
6451
|
+
type: string;
|
6452
|
+
pattern: string;
|
6453
|
+
description: string;
|
6454
|
+
example: string;
|
6455
|
+
};
|
6400
6456
|
note: {
|
6401
6457
|
title: string;
|
6402
6458
|
type: string;
|
@@ -7581,6 +7637,13 @@ export declare namespace Schemas {
|
|
7581
7637
|
enum: string[];
|
7582
7638
|
description: string;
|
7583
7639
|
};
|
7640
|
+
subScenario: {
|
7641
|
+
title: string;
|
7642
|
+
type: string;
|
7643
|
+
pattern: string;
|
7644
|
+
description: string;
|
7645
|
+
example: string;
|
7646
|
+
};
|
7584
7647
|
note: {
|
7585
7648
|
title: string;
|
7586
7649
|
type: string;
|
@@ -7638,13 +7701,6 @@ export declare namespace Schemas {
|
|
7638
7701
|
description: string;
|
7639
7702
|
example: string;
|
7640
7703
|
};
|
7641
|
-
const TransactionSubScenario: {
|
7642
|
-
title: string;
|
7643
|
-
type: string;
|
7644
|
-
pattern: string;
|
7645
|
-
description: string;
|
7646
|
-
example: string;
|
7647
|
-
};
|
7648
7704
|
const TransactionInitiator: {
|
7649
7705
|
title: string;
|
7650
7706
|
type: string;
|
@@ -27,6 +27,7 @@ var Schemas;
|
|
27
27
|
Schemas.Currency = json_schemas_json_1.default.Currency;
|
28
28
|
Schemas.Amount = json_schemas_json_1.default.Amount;
|
29
29
|
Schemas.transferTransactionType = json_schemas_json_1.default.transferTransactionType;
|
30
|
+
Schemas.TransactionSubScenario = json_schemas_json_1.default.TransactionSubScenario;
|
30
31
|
Schemas.Note = json_schemas_json_1.default.Note;
|
31
32
|
Schemas.transferRequest = json_schemas_json_1.default.transferRequest;
|
32
33
|
Schemas.CorrelationId = json_schemas_json_1.default.CorrelationId;
|
@@ -88,7 +89,6 @@ var Schemas;
|
|
88
89
|
Schemas.bulkQuoteStatus = json_schemas_json_1.default.bulkQuoteStatus;
|
89
90
|
Schemas.bulkQuoteStatusResponse = json_schemas_json_1.default.bulkQuoteStatusResponse;
|
90
91
|
Schemas.TransactionScenario = json_schemas_json_1.default.TransactionScenario;
|
91
|
-
Schemas.TransactionSubScenario = json_schemas_json_1.default.TransactionSubScenario;
|
92
92
|
Schemas.TransactionInitiator = json_schemas_json_1.default.TransactionInitiator;
|
93
93
|
Schemas.RefundReason = json_schemas_json_1.default.RefundReason;
|
94
94
|
Schemas.Refund = json_schemas_json_1.default.Refund;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_0_0/outbound/schemas.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_0_0/outbound/schemas.ts"],"names":[],"mappings":"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"}
|
@@ -21,6 +21,7 @@ export declare namespace Types {
|
|
21
21
|
type Currency = components['schemas']['Currency'];
|
22
22
|
type Amount = components['schemas']['Amount'];
|
23
23
|
type transferTransactionType = components['schemas']['transferTransactionType'];
|
24
|
+
type TransactionSubScenario = components['schemas']['TransactionSubScenario'];
|
24
25
|
type Note = components['schemas']['Note'];
|
25
26
|
type transferRequest = components['schemas']['transferRequest'];
|
26
27
|
type CorrelationId = components['schemas']['CorrelationId'];
|
@@ -82,7 +83,6 @@ export declare namespace Types {
|
|
82
83
|
type bulkQuoteStatus = components['schemas']['bulkQuoteStatus'];
|
83
84
|
type bulkQuoteStatusResponse = components['schemas']['bulkQuoteStatusResponse'];
|
84
85
|
type TransactionScenario = components['schemas']['TransactionScenario'];
|
85
|
-
type TransactionSubScenario = components['schemas']['TransactionSubScenario'];
|
86
86
|
type TransactionInitiator = components['schemas']['TransactionInitiator'];
|
87
87
|
type RefundReason = components['schemas']['RefundReason'];
|
88
88
|
type Refund = components['schemas']['Refund'];
|