@mojaloop/api-snippets 17.7.9 → 17.7.10
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 +7 -0
- package/docs/sdk-scheme-adapter-backend-v2_1_0-openapi3-snippets.yaml +50 -19
- package/docs/sdk-scheme-adapter-outbound-v2_1_0-openapi3-snippets.yaml +60 -29
- package/lib/sdk-scheme-adapter/v2_1_0/backend/json-schemas.json +177 -155
- package/lib/sdk-scheme-adapter/v2_1_0/backend/openapi.d.ts +39 -18
- package/lib/sdk-scheme-adapter/v2_1_0/backend/schemas.d.ts +68 -54
- package/lib/sdk-scheme-adapter/v2_1_0/backend/schemas.js +6 -3
- package/lib/sdk-scheme-adapter/v2_1_0/backend/schemas.js.map +1 -1
- package/lib/sdk-scheme-adapter/v2_1_0/backend/types.d.ts +6 -3
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/json-schemas.json +287 -320
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/openapi.d.ts +49 -28
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/schemas.d.ts +68 -109
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/schemas.js +6 -3
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/schemas.js.map +1 -1
- package/lib/sdk-scheme-adapter/v2_1_0/outbound/types.d.ts +6 -3
- package/package.json +11 -11
- package/sdk-scheme-adapter/v2_1_0/components/schemas/ErrorInformation.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/{ExtensionKey.yaml → ExtensionKey_v2_1_0.yaml} +1 -2
- package/sdk-scheme-adapter/v2_1_0/components/schemas/{ExtensionList.yaml → ExtensionList_v2_1_0.yaml} +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/{Extension.yaml → Extension_v2_1_0.yaml} +2 -2
- package/sdk-scheme-adapter/v2_1_0/components/schemas/PartyIdInfo.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/QuotesIDPutResponse.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/QuotesPostRequest.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/TransactionRequestResponse.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/TransfersIDPutResponse.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/TransfersPostRequest.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/bulkQuoteRequest.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/bulkQuoteResponse.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/bulkTransactionIndividualTransfer.yaml +2 -2
- package/sdk-scheme-adapter/v2_1_0/components/schemas/bulkTransactionIndividualTransferResult.yaml +2 -2
- package/sdk-scheme-adapter/v2_1_0/components/schemas/bulkTransactionRequest.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/bulkTransactionResponse.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/bulkTransferRequest.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/bulkTransferResponse.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/extensionListEmptiable.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/individualQuote.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/individualQuoteResult.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/individualTransfer.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/individualTransferFulfilment.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/individualTransferResult.yaml +1 -1
- package/sdk-scheme-adapter/v2_1_0/components/schemas/quotesPostResponse.yaml +1 -1
@@ -914,30 +914,30 @@ export interface components {
|
|
914
914
|
*/
|
915
915
|
PartySubIdOrType: string;
|
916
916
|
/**
|
917
|
-
*
|
917
|
+
* ExtensionKey_v2_1_0
|
918
918
|
* @description Extension key.
|
919
919
|
*/
|
920
|
-
|
920
|
+
ExtensionKey_v2_1_0: string;
|
921
921
|
/**
|
922
922
|
* ExtensionValue
|
923
923
|
* @description Extension value.
|
924
924
|
*/
|
925
925
|
ExtensionValue: string;
|
926
926
|
/**
|
927
|
-
*
|
927
|
+
* Extension_v2_1_0
|
928
928
|
* @description Data model for the complex type Extension.
|
929
929
|
*/
|
930
|
-
|
931
|
-
key: components["schemas"]["
|
930
|
+
Extension_v2_1_0: {
|
931
|
+
key: components["schemas"]["ExtensionKey_v2_1_0"];
|
932
932
|
value: components["schemas"]["ExtensionValue"];
|
933
933
|
};
|
934
934
|
/**
|
935
935
|
* ExtensionList
|
936
936
|
* @description Data model for the complex type ExtensionList. An optional list of extensions, specific to deployment.
|
937
937
|
*/
|
938
|
-
|
938
|
+
ExtensionList_v2_1_0: {
|
939
939
|
/** @description Number of Extension elements. */
|
940
|
-
extension: components["schemas"]["
|
940
|
+
extension: components["schemas"]["Extension_v2_1_0"][];
|
941
941
|
};
|
942
942
|
/**
|
943
943
|
* PartyIdInfo
|
@@ -948,7 +948,7 @@ export interface components {
|
|
948
948
|
partyIdentifier: components["schemas"]["PartyIdentifier"];
|
949
949
|
partySubIdOrType?: components["schemas"]["PartySubIdOrType"];
|
950
950
|
fspId?: components["schemas"]["FspId"];
|
951
|
-
extensionList?: components["schemas"]["
|
951
|
+
extensionList?: components["schemas"]["ExtensionList_v2_1_0"];
|
952
952
|
};
|
953
953
|
/**
|
954
954
|
* PartyName
|
@@ -1057,7 +1057,7 @@ export interface components {
|
|
1057
1057
|
ErrorInformation: {
|
1058
1058
|
errorCode: components["schemas"]["ErrorCode"];
|
1059
1059
|
errorDescription: components["schemas"]["ErrorDescription"];
|
1060
|
-
extensionList?: components["schemas"]["
|
1060
|
+
extensionList?: components["schemas"]["ExtensionList_v2_1_0"];
|
1061
1061
|
};
|
1062
1062
|
mojaloopError: {
|
1063
1063
|
errorInformation?: components["schemas"]["ErrorInformation"];
|
@@ -1077,7 +1077,7 @@ export interface components {
|
|
1077
1077
|
geoCode?: components["schemas"]["GeoCode"];
|
1078
1078
|
ilpPacket?: components["schemas"]["IlpPacket"];
|
1079
1079
|
condition?: components["schemas"]["IlpCondition"];
|
1080
|
-
extensionList?: components["schemas"]["
|
1080
|
+
extensionList?: components["schemas"]["ExtensionList_v2_1_0"];
|
1081
1081
|
lastError?: components["schemas"]["quoteError"];
|
1082
1082
|
};
|
1083
1083
|
/**
|
@@ -1106,7 +1106,7 @@ export interface components {
|
|
1106
1106
|
individualTransferResult: {
|
1107
1107
|
transferId: components["schemas"]["CorrelationId"];
|
1108
1108
|
fulfilment?: components["schemas"]["IlpFulfilment"];
|
1109
|
-
extensionList?: components["schemas"]["
|
1109
|
+
extensionList?: components["schemas"]["ExtensionList_v2_1_0"];
|
1110
1110
|
transferState?: components["schemas"]["TransferState"];
|
1111
1111
|
lastError?: components["schemas"]["transferError"];
|
1112
1112
|
};
|
@@ -1125,8 +1125,8 @@ export interface components {
|
|
1125
1125
|
quoteId?: components["schemas"]["CorrelationId"];
|
1126
1126
|
quoteResponse?: components["schemas"]["individualQuoteResult"];
|
1127
1127
|
fulfil?: components["schemas"]["individualTransferResult"];
|
1128
|
-
quoteExtensions?: components["schemas"]["
|
1129
|
-
transferExtensions?: components["schemas"]["
|
1128
|
+
quoteExtensions?: components["schemas"]["ExtensionList_v2_1_0"];
|
1129
|
+
transferExtensions?: components["schemas"]["ExtensionList_v2_1_0"];
|
1130
1130
|
lastError?: components["schemas"]["transferError"];
|
1131
1131
|
};
|
1132
1132
|
/** BulkTransactionResponse */
|
@@ -1138,7 +1138,7 @@ export interface components {
|
|
1138
1138
|
options?: components["schemas"]["bulkTransactionOptions"];
|
1139
1139
|
/** @description List of individual transfer result in a bulk transfer response. */
|
1140
1140
|
individualTransferResults: components["schemas"]["bulkTransactionIndividualTransferResult"][];
|
1141
|
-
extensions?: components["schemas"]["
|
1141
|
+
extensions?: components["schemas"]["ExtensionList_v2_1_0"];
|
1142
1142
|
};
|
1143
1143
|
/**
|
1144
1144
|
* CurrencyConverter
|
@@ -1172,7 +1172,7 @@ export interface components {
|
|
1172
1172
|
fulfilment?: components["schemas"]["IlpFulfilment"];
|
1173
1173
|
completedTimestamp?: components["schemas"]["DateTime"];
|
1174
1174
|
transferState: components["schemas"]["TransferState"];
|
1175
|
-
extensionList?: components["schemas"]["
|
1175
|
+
extensionList?: components["schemas"]["ExtensionList_v2_1_0"];
|
1176
1176
|
};
|
1177
1177
|
/**
|
1178
1178
|
* TransfersPostRequest
|
@@ -1186,7 +1186,7 @@ export interface components {
|
|
1186
1186
|
ilpPacket: components["schemas"]["IlpPacket"];
|
1187
1187
|
condition: components["schemas"]["IlpCondition"];
|
1188
1188
|
expiration: components["schemas"]["DateTime"];
|
1189
|
-
extensionList?: components["schemas"]["
|
1189
|
+
extensionList?: components["schemas"]["ExtensionList_v2_1_0"];
|
1190
1190
|
};
|
1191
1191
|
/**
|
1192
1192
|
* QuotesIDPutResponse
|
@@ -1201,7 +1201,7 @@ export interface components {
|
|
1201
1201
|
geoCode?: components["schemas"]["GeoCode"];
|
1202
1202
|
ilpPacket: components["schemas"]["IlpPacket"];
|
1203
1203
|
condition: components["schemas"]["IlpCondition"];
|
1204
|
-
extensionList?: components["schemas"]["
|
1204
|
+
extensionList?: components["schemas"]["ExtensionList_v2_1_0"];
|
1205
1205
|
};
|
1206
1206
|
/**
|
1207
1207
|
* TransactionScenario
|
@@ -1286,7 +1286,7 @@ export interface components {
|
|
1286
1286
|
geoCode?: components["schemas"]["GeoCode"];
|
1287
1287
|
note?: components["schemas"]["Note"];
|
1288
1288
|
expiration?: components["schemas"]["DateTime"];
|
1289
|
-
extensionList?: components["schemas"]["
|
1289
|
+
extensionList?: components["schemas"]["ExtensionList_v2_1_0"];
|
1290
1290
|
};
|
1291
1291
|
/**
|
1292
1292
|
* FxMoney
|
@@ -1306,6 +1306,27 @@ export interface components {
|
|
1306
1306
|
sourceAmount?: components["schemas"]["Money"] & unknown;
|
1307
1307
|
targetAmount?: components["schemas"]["Money"] & unknown;
|
1308
1308
|
};
|
1309
|
+
/**
|
1310
|
+
* ExtensionKey
|
1311
|
+
* @description Extension key.
|
1312
|
+
*/
|
1313
|
+
ExtensionKey: string;
|
1314
|
+
/**
|
1315
|
+
* Extension
|
1316
|
+
* @description Data model for the complex type Extension.
|
1317
|
+
*/
|
1318
|
+
Extension: {
|
1319
|
+
key: components["schemas"]["ExtensionKey"];
|
1320
|
+
value: components["schemas"]["ExtensionValue"];
|
1321
|
+
};
|
1322
|
+
/**
|
1323
|
+
* ExtensionList
|
1324
|
+
* @description Data model for the complex type ExtensionList. An optional list of extensions, specific to deployment.
|
1325
|
+
*/
|
1326
|
+
ExtensionList: {
|
1327
|
+
/** @description Number of Extension elements. */
|
1328
|
+
extension: components["schemas"]["Extension"][];
|
1329
|
+
};
|
1309
1330
|
/**
|
1310
1331
|
* FxConversion
|
1311
1332
|
* @description A DFSP will be able to request a currency conversion, and an FX provider will be able to describe its involvement in a proposed transfer, using a FxConversion object.
|
@@ -1579,7 +1579,6 @@ export declare namespace Schemas {
|
|
1579
1579
|
title: string;
|
1580
1580
|
type: string;
|
1581
1581
|
minLength: number;
|
1582
|
-
maxLength: number;
|
1583
1582
|
description: string;
|
1584
1583
|
};
|
1585
1584
|
value: {
|
@@ -1659,7 +1658,6 @@ export declare namespace Schemas {
|
|
1659
1658
|
title: string;
|
1660
1659
|
type: string;
|
1661
1660
|
minLength: number;
|
1662
|
-
maxLength: number;
|
1663
1661
|
description: string;
|
1664
1662
|
};
|
1665
1663
|
value: {
|
@@ -1776,7 +1774,6 @@ export declare namespace Schemas {
|
|
1776
1774
|
title: string;
|
1777
1775
|
type: string;
|
1778
1776
|
minLength: number;
|
1779
|
-
maxLength: number;
|
1780
1777
|
description: string;
|
1781
1778
|
};
|
1782
1779
|
value: {
|
@@ -2365,7 +2362,6 @@ export declare namespace Schemas {
|
|
2365
2362
|
title: string;
|
2366
2363
|
type: string;
|
2367
2364
|
minLength: number;
|
2368
|
-
maxLength: number;
|
2369
2365
|
description: string;
|
2370
2366
|
};
|
2371
2367
|
value: {
|
@@ -2468,7 +2464,6 @@ export declare namespace Schemas {
|
|
2468
2464
|
title: string;
|
2469
2465
|
type: string;
|
2470
2466
|
minLength: number;
|
2471
|
-
maxLength: number;
|
2472
2467
|
description: string;
|
2473
2468
|
};
|
2474
2469
|
value: {
|
@@ -2631,7 +2626,6 @@ export declare namespace Schemas {
|
|
2631
2626
|
title: string;
|
2632
2627
|
type: string;
|
2633
2628
|
minLength: number;
|
2634
|
-
maxLength: number;
|
2635
2629
|
description: string;
|
2636
2630
|
};
|
2637
2631
|
value: {
|
@@ -3003,7 +2997,6 @@ export declare namespace Schemas {
|
|
3003
2997
|
title: string;
|
3004
2998
|
type: string;
|
3005
2999
|
minLength: number;
|
3006
|
-
maxLength: number;
|
3007
3000
|
description: string;
|
3008
3001
|
};
|
3009
3002
|
value: {
|
@@ -3210,7 +3203,6 @@ export declare namespace Schemas {
|
|
3210
3203
|
title: string;
|
3211
3204
|
type: string;
|
3212
3205
|
minLength: number;
|
3213
|
-
maxLength: number;
|
3214
3206
|
description: string;
|
3215
3207
|
};
|
3216
3208
|
value: {
|
@@ -3373,7 +3365,6 @@ export declare namespace Schemas {
|
|
3373
3365
|
title: string;
|
3374
3366
|
type: string;
|
3375
3367
|
minLength: number;
|
3376
|
-
maxLength: number;
|
3377
3368
|
description: string;
|
3378
3369
|
};
|
3379
3370
|
value: {
|
@@ -3745,7 +3736,6 @@ export declare namespace Schemas {
|
|
3745
3736
|
title: string;
|
3746
3737
|
type: string;
|
3747
3738
|
minLength: number;
|
3748
|
-
maxLength: number;
|
3749
3739
|
description: string;
|
3750
3740
|
};
|
3751
3741
|
value: {
|
@@ -3934,7 +3924,6 @@ export declare namespace Schemas {
|
|
3934
3924
|
title: string;
|
3935
3925
|
type: string;
|
3936
3926
|
minLength: number;
|
3937
|
-
maxLength: number;
|
3938
3927
|
description: string;
|
3939
3928
|
};
|
3940
3929
|
value: {
|
@@ -4082,7 +4071,6 @@ export declare namespace Schemas {
|
|
4082
4071
|
title: string;
|
4083
4072
|
type: string;
|
4084
4073
|
minLength: number;
|
4085
|
-
maxLength: number;
|
4086
4074
|
description: string;
|
4087
4075
|
};
|
4088
4076
|
value: {
|
@@ -4245,7 +4233,6 @@ export declare namespace Schemas {
|
|
4245
4233
|
title: string;
|
4246
4234
|
type: string;
|
4247
4235
|
minLength: number;
|
4248
|
-
maxLength: number;
|
4249
4236
|
description: string;
|
4250
4237
|
};
|
4251
4238
|
value: {
|
@@ -5815,7 +5802,6 @@ export declare namespace Schemas {
|
|
5815
5802
|
title: string;
|
5816
5803
|
type: string;
|
5817
5804
|
minLength: number;
|
5818
|
-
maxLength: number;
|
5819
5805
|
description: string;
|
5820
5806
|
};
|
5821
5807
|
value: {
|
@@ -5978,7 +5964,6 @@ export declare namespace Schemas {
|
|
5978
5964
|
title: string;
|
5979
5965
|
type: string;
|
5980
5966
|
minLength: number;
|
5981
|
-
maxLength: number;
|
5982
5967
|
description: string;
|
5983
5968
|
};
|
5984
5969
|
value: {
|
@@ -6644,11 +6629,10 @@ export declare namespace Schemas {
|
|
6644
6629
|
maxLength: number;
|
6645
6630
|
description: string;
|
6646
6631
|
};
|
6647
|
-
const
|
6632
|
+
const ExtensionKey_v2_1_0: {
|
6648
6633
|
title: string;
|
6649
6634
|
type: string;
|
6650
6635
|
minLength: number;
|
6651
|
-
maxLength: number;
|
6652
6636
|
description: string;
|
6653
6637
|
};
|
6654
6638
|
const ExtensionValue: {
|
@@ -6658,7 +6642,7 @@ export declare namespace Schemas {
|
|
6658
6642
|
maxLength: number;
|
6659
6643
|
description: string;
|
6660
6644
|
};
|
6661
|
-
const
|
6645
|
+
const Extension_v2_1_0: {
|
6662
6646
|
title: string;
|
6663
6647
|
type: string;
|
6664
6648
|
description: string;
|
@@ -6667,7 +6651,6 @@ export declare namespace Schemas {
|
|
6667
6651
|
title: string;
|
6668
6652
|
type: string;
|
6669
6653
|
minLength: number;
|
6670
|
-
maxLength: number;
|
6671
6654
|
description: string;
|
6672
6655
|
};
|
6673
6656
|
value: {
|
@@ -6680,7 +6663,7 @@ export declare namespace Schemas {
|
|
6680
6663
|
};
|
6681
6664
|
required: string[];
|
6682
6665
|
};
|
6683
|
-
const
|
6666
|
+
const ExtensionList_v2_1_0: {
|
6684
6667
|
title: string;
|
6685
6668
|
type: string;
|
6686
6669
|
description: string;
|
@@ -6696,7 +6679,6 @@ export declare namespace Schemas {
|
|
6696
6679
|
title: string;
|
6697
6680
|
type: string;
|
6698
6681
|
minLength: number;
|
6699
|
-
maxLength: number;
|
6700
6682
|
description: string;
|
6701
6683
|
};
|
6702
6684
|
value: {
|
@@ -6765,7 +6747,6 @@ export declare namespace Schemas {
|
|
6765
6747
|
title: string;
|
6766
6748
|
type: string;
|
6767
6749
|
minLength: number;
|
6768
|
-
maxLength: number;
|
6769
6750
|
description: string;
|
6770
6751
|
};
|
6771
6752
|
value: {
|
@@ -6939,7 +6920,6 @@ export declare namespace Schemas {
|
|
6939
6920
|
title: string;
|
6940
6921
|
type: string;
|
6941
6922
|
minLength: number;
|
6942
|
-
maxLength: number;
|
6943
6923
|
description: string;
|
6944
6924
|
};
|
6945
6925
|
value: {
|
@@ -7187,7 +7167,6 @@ export declare namespace Schemas {
|
|
7187
7167
|
title: string;
|
7188
7168
|
type: string;
|
7189
7169
|
minLength: number;
|
7190
|
-
maxLength: number;
|
7191
7170
|
description: string;
|
7192
7171
|
};
|
7193
7172
|
value: {
|
@@ -7248,7 +7227,6 @@ export declare namespace Schemas {
|
|
7248
7227
|
title: string;
|
7249
7228
|
type: string;
|
7250
7229
|
minLength: number;
|
7251
|
-
maxLength: number;
|
7252
7230
|
description: string;
|
7253
7231
|
};
|
7254
7232
|
value: {
|
@@ -7319,7 +7297,6 @@ export declare namespace Schemas {
|
|
7319
7297
|
title: string;
|
7320
7298
|
type: string;
|
7321
7299
|
minLength: number;
|
7322
|
-
maxLength: number;
|
7323
7300
|
description: string;
|
7324
7301
|
};
|
7325
7302
|
value: {
|
@@ -7502,7 +7479,6 @@ export declare namespace Schemas {
|
|
7502
7479
|
title: string;
|
7503
7480
|
type: string;
|
7504
7481
|
minLength: number;
|
7505
|
-
maxLength: number;
|
7506
7482
|
description: string;
|
7507
7483
|
};
|
7508
7484
|
value: {
|
@@ -7568,7 +7544,6 @@ export declare namespace Schemas {
|
|
7568
7544
|
title: string;
|
7569
7545
|
type: string;
|
7570
7546
|
minLength: number;
|
7571
|
-
maxLength: number;
|
7572
7547
|
description: string;
|
7573
7548
|
};
|
7574
7549
|
value: {
|
@@ -7659,7 +7634,6 @@ export declare namespace Schemas {
|
|
7659
7634
|
title: string;
|
7660
7635
|
type: string;
|
7661
7636
|
minLength: number;
|
7662
|
-
maxLength: number;
|
7663
7637
|
description: string;
|
7664
7638
|
};
|
7665
7639
|
value: {
|
@@ -7721,7 +7695,6 @@ export declare namespace Schemas {
|
|
7721
7695
|
title: string;
|
7722
7696
|
type: string;
|
7723
7697
|
minLength: number;
|
7724
|
-
maxLength: number;
|
7725
7698
|
description: string;
|
7726
7699
|
};
|
7727
7700
|
value: {
|
@@ -7794,7 +7767,6 @@ export declare namespace Schemas {
|
|
7794
7767
|
title: string;
|
7795
7768
|
type: string;
|
7796
7769
|
minLength: number;
|
7797
|
-
maxLength: number;
|
7798
7770
|
description: string;
|
7799
7771
|
};
|
7800
7772
|
value: {
|
@@ -7899,7 +7871,6 @@ export declare namespace Schemas {
|
|
7899
7871
|
title: string;
|
7900
7872
|
type: string;
|
7901
7873
|
minLength: number;
|
7902
|
-
maxLength: number;
|
7903
7874
|
description: string;
|
7904
7875
|
};
|
7905
7876
|
value: {
|
@@ -8205,7 +8176,6 @@ export declare namespace Schemas {
|
|
8205
8176
|
title: string;
|
8206
8177
|
type: string;
|
8207
8178
|
minLength: number;
|
8208
|
-
maxLength: number;
|
8209
8179
|
description: string;
|
8210
8180
|
};
|
8211
8181
|
value: {
|
@@ -8271,7 +8241,6 @@ export declare namespace Schemas {
|
|
8271
8241
|
title: string;
|
8272
8242
|
type: string;
|
8273
8243
|
minLength: number;
|
8274
|
-
maxLength: number;
|
8275
8244
|
description: string;
|
8276
8245
|
};
|
8277
8246
|
value: {
|
@@ -8336,7 +8305,6 @@ export declare namespace Schemas {
|
|
8336
8305
|
title: string;
|
8337
8306
|
type: string;
|
8338
8307
|
minLength: number;
|
8339
|
-
maxLength: number;
|
8340
8308
|
description: string;
|
8341
8309
|
};
|
8342
8310
|
value: {
|
@@ -8409,7 +8377,6 @@ export declare namespace Schemas {
|
|
8409
8377
|
title: string;
|
8410
8378
|
type: string;
|
8411
8379
|
minLength: number;
|
8412
|
-
maxLength: number;
|
8413
8380
|
description: string;
|
8414
8381
|
};
|
8415
8382
|
value: {
|
@@ -8454,7 +8421,6 @@ export declare namespace Schemas {
|
|
8454
8421
|
title: string;
|
8455
8422
|
type: string;
|
8456
8423
|
minLength: number;
|
8457
|
-
maxLength: number;
|
8458
8424
|
description: string;
|
8459
8425
|
};
|
8460
8426
|
value: {
|
@@ -8490,7 +8456,6 @@ export declare namespace Schemas {
|
|
8490
8456
|
title: string;
|
8491
8457
|
type: string;
|
8492
8458
|
minLength: number;
|
8493
|
-
maxLength: number;
|
8494
8459
|
description: string;
|
8495
8460
|
};
|
8496
8461
|
value: {
|
@@ -8556,7 +8521,6 @@ export declare namespace Schemas {
|
|
8556
8521
|
title: string;
|
8557
8522
|
type: string;
|
8558
8523
|
minLength: number;
|
8559
|
-
maxLength: number;
|
8560
8524
|
description: string;
|
8561
8525
|
};
|
8562
8526
|
value: {
|
@@ -8759,7 +8723,6 @@ export declare namespace Schemas {
|
|
8759
8723
|
title: string;
|
8760
8724
|
type: string;
|
8761
8725
|
minLength: number;
|
8762
|
-
maxLength: number;
|
8763
8726
|
description: string;
|
8764
8727
|
};
|
8765
8728
|
value: {
|
@@ -9065,7 +9028,6 @@ export declare namespace Schemas {
|
|
9065
9028
|
title: string;
|
9066
9029
|
type: string;
|
9067
9030
|
minLength: number;
|
9068
|
-
maxLength: number;
|
9069
9031
|
description: string;
|
9070
9032
|
};
|
9071
9033
|
value: {
|
@@ -9131,7 +9093,6 @@ export declare namespace Schemas {
|
|
9131
9093
|
title: string;
|
9132
9094
|
type: string;
|
9133
9095
|
minLength: number;
|
9134
|
-
maxLength: number;
|
9135
9096
|
description: string;
|
9136
9097
|
};
|
9137
9098
|
value: {
|
@@ -9196,7 +9157,6 @@ export declare namespace Schemas {
|
|
9196
9157
|
title: string;
|
9197
9158
|
type: string;
|
9198
9159
|
minLength: number;
|
9199
|
-
maxLength: number;
|
9200
9160
|
description: string;
|
9201
9161
|
};
|
9202
9162
|
value: {
|
@@ -9269,7 +9229,6 @@ export declare namespace Schemas {
|
|
9269
9229
|
title: string;
|
9270
9230
|
type: string;
|
9271
9231
|
minLength: number;
|
9272
|
-
maxLength: number;
|
9273
9232
|
description: string;
|
9274
9233
|
};
|
9275
9234
|
value: {
|
@@ -9314,7 +9273,6 @@ export declare namespace Schemas {
|
|
9314
9273
|
title: string;
|
9315
9274
|
type: string;
|
9316
9275
|
minLength: number;
|
9317
|
-
maxLength: number;
|
9318
9276
|
description: string;
|
9319
9277
|
};
|
9320
9278
|
value: {
|
@@ -9350,7 +9308,6 @@ export declare namespace Schemas {
|
|
9350
9308
|
title: string;
|
9351
9309
|
type: string;
|
9352
9310
|
minLength: number;
|
9353
|
-
maxLength: number;
|
9354
9311
|
description: string;
|
9355
9312
|
};
|
9356
9313
|
value: {
|
@@ -9416,7 +9373,6 @@ export declare namespace Schemas {
|
|
9416
9373
|
title: string;
|
9417
9374
|
type: string;
|
9418
9375
|
minLength: number;
|
9419
|
-
maxLength: number;
|
9420
9376
|
description: string;
|
9421
9377
|
};
|
9422
9378
|
value: {
|
@@ -9462,7 +9418,6 @@ export declare namespace Schemas {
|
|
9462
9418
|
title: string;
|
9463
9419
|
type: string;
|
9464
9420
|
minLength: number;
|
9465
|
-
maxLength: number;
|
9466
9421
|
description: string;
|
9467
9422
|
};
|
9468
9423
|
value: {
|
@@ -9610,7 +9565,6 @@ export declare namespace Schemas {
|
|
9610
9565
|
title: string;
|
9611
9566
|
type: string;
|
9612
9567
|
minLength: number;
|
9613
|
-
maxLength: number;
|
9614
9568
|
description: string;
|
9615
9569
|
};
|
9616
9570
|
value: {
|
@@ -9721,7 +9675,6 @@ export declare namespace Schemas {
|
|
9721
9675
|
title: string;
|
9722
9676
|
type: string;
|
9723
9677
|
minLength: number;
|
9724
|
-
maxLength: number;
|
9725
9678
|
description: string;
|
9726
9679
|
};
|
9727
9680
|
value: {
|
@@ -9902,7 +9855,6 @@ export declare namespace Schemas {
|
|
9902
9855
|
title: string;
|
9903
9856
|
type: string;
|
9904
9857
|
minLength: number;
|
9905
|
-
maxLength: number;
|
9906
9858
|
description: string;
|
9907
9859
|
};
|
9908
9860
|
value: {
|
@@ -10130,7 +10082,6 @@ export declare namespace Schemas {
|
|
10130
10082
|
title: string;
|
10131
10083
|
type: string;
|
10132
10084
|
minLength: number;
|
10133
|
-
maxLength: number;
|
10134
10085
|
description: string;
|
10135
10086
|
};
|
10136
10087
|
value: {
|
@@ -10293,7 +10244,6 @@ export declare namespace Schemas {
|
|
10293
10244
|
title: string;
|
10294
10245
|
type: string;
|
10295
10246
|
minLength: number;
|
10296
|
-
maxLength: number;
|
10297
10247
|
description: string;
|
10298
10248
|
};
|
10299
10249
|
value: {
|
@@ -10665,7 +10615,6 @@ export declare namespace Schemas {
|
|
10665
10615
|
title: string;
|
10666
10616
|
type: string;
|
10667
10617
|
minLength: number;
|
10668
|
-
maxLength: number;
|
10669
10618
|
description: string;
|
10670
10619
|
};
|
10671
10620
|
value: {
|
@@ -10787,6 +10736,71 @@ export declare namespace Schemas {
|
|
10787
10736
|
};
|
10788
10737
|
required: string[];
|
10789
10738
|
};
|
10739
|
+
const ExtensionKey: {
|
10740
|
+
title: string;
|
10741
|
+
type: string;
|
10742
|
+
minLength: number;
|
10743
|
+
maxLength: number;
|
10744
|
+
description: string;
|
10745
|
+
};
|
10746
|
+
const Extension: {
|
10747
|
+
title: string;
|
10748
|
+
type: string;
|
10749
|
+
description: string;
|
10750
|
+
properties: {
|
10751
|
+
key: {
|
10752
|
+
title: string;
|
10753
|
+
type: string;
|
10754
|
+
minLength: number;
|
10755
|
+
maxLength: number;
|
10756
|
+
description: string;
|
10757
|
+
};
|
10758
|
+
value: {
|
10759
|
+
title: string;
|
10760
|
+
type: string;
|
10761
|
+
minLength: number;
|
10762
|
+
maxLength: number;
|
10763
|
+
description: string;
|
10764
|
+
};
|
10765
|
+
};
|
10766
|
+
required: string[];
|
10767
|
+
};
|
10768
|
+
const ExtensionList: {
|
10769
|
+
title: string;
|
10770
|
+
type: string;
|
10771
|
+
description: string;
|
10772
|
+
properties: {
|
10773
|
+
extension: {
|
10774
|
+
type: string;
|
10775
|
+
items: {
|
10776
|
+
title: string;
|
10777
|
+
type: string;
|
10778
|
+
description: string;
|
10779
|
+
properties: {
|
10780
|
+
key: {
|
10781
|
+
title: string;
|
10782
|
+
type: string;
|
10783
|
+
minLength: number;
|
10784
|
+
maxLength: number;
|
10785
|
+
description: string;
|
10786
|
+
};
|
10787
|
+
value: {
|
10788
|
+
title: string;
|
10789
|
+
type: string;
|
10790
|
+
minLength: number;
|
10791
|
+
maxLength: number;
|
10792
|
+
description: string;
|
10793
|
+
};
|
10794
|
+
};
|
10795
|
+
required: string[];
|
10796
|
+
};
|
10797
|
+
minItems: number;
|
10798
|
+
maxItems: number;
|
10799
|
+
description: string;
|
10800
|
+
};
|
10801
|
+
};
|
10802
|
+
required: string[];
|
10803
|
+
};
|
10790
10804
|
const FxConversion: {
|
10791
10805
|
title: string;
|
10792
10806
|
type: string;
|
@@ -86,10 +86,10 @@ var Schemas;
|
|
86
86
|
Schemas.PartyIdType = json_schemas_json_1.default.PartyIdType;
|
87
87
|
Schemas.PartyIdentifier = json_schemas_json_1.default.PartyIdentifier;
|
88
88
|
Schemas.PartySubIdOrType = json_schemas_json_1.default.PartySubIdOrType;
|
89
|
-
Schemas.
|
89
|
+
Schemas.ExtensionKey_v2_1_0 = json_schemas_json_1.default.ExtensionKey_v2_1_0;
|
90
90
|
Schemas.ExtensionValue = json_schemas_json_1.default.ExtensionValue;
|
91
|
-
Schemas.
|
92
|
-
Schemas.
|
91
|
+
Schemas.Extension_v2_1_0 = json_schemas_json_1.default.Extension_v2_1_0;
|
92
|
+
Schemas.ExtensionList_v2_1_0 = json_schemas_json_1.default.ExtensionList_v2_1_0;
|
93
93
|
Schemas.PartyIdInfo = json_schemas_json_1.default.PartyIdInfo;
|
94
94
|
Schemas.PartyName = json_schemas_json_1.default.PartyName;
|
95
95
|
Schemas.PartyComplexName = json_schemas_json_1.default.PartyComplexName;
|
@@ -131,6 +131,9 @@ var Schemas;
|
|
131
131
|
Schemas.QuotesPostRequest = json_schemas_json_1.default.QuotesPostRequest;
|
132
132
|
Schemas.FxMoney = json_schemas_json_1.default.FxMoney;
|
133
133
|
Schemas.FxCharge = json_schemas_json_1.default.FxCharge;
|
134
|
+
Schemas.ExtensionKey = json_schemas_json_1.default.ExtensionKey;
|
135
|
+
Schemas.Extension = json_schemas_json_1.default.Extension;
|
136
|
+
Schemas.ExtensionList = json_schemas_json_1.default.ExtensionList;
|
134
137
|
Schemas.FxConversion = json_schemas_json_1.default.FxConversion;
|
135
138
|
Schemas.FxQuotesPostBackendRequest = json_schemas_json_1.default.FxQuotesPostBackendRequest;
|
136
139
|
Schemas.FxQuotesPostBackendResponse = json_schemas_json_1.default.FxQuotesPostBackendResponse;
|