@mojaloop/api-snippets 16.0.2 → 16.0.3

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 CHANGED
@@ -1,4 +1,11 @@
1
1
  # Changelog: [mojaloop/api-snippets](https://github.com/mojaloop/api-snippets)
2
+ ### [16.0.3](https://github.com/mojaloop/api-snippets/compare/v16.0.2...v16.0.3) (2022-09-23)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * updates to sdk-scheme-adapter individualTransfer ([#144](https://github.com/mojaloop/api-snippets/issues/144)) ([11285c4](https://github.com/mojaloop/api-snippets/commit/11285c4f9151219250873159171eefb2d9910efc))
8
+
2
9
  ### [16.0.2](https://github.com/mojaloop/api-snippets/compare/v16.0.1...v16.0.2) (2022-09-22)
3
10
 
4
11
 
@@ -16,8 +16,8 @@ info:
16
16
  **Note on terminology:** The term "Switch" is equal to the term "Hub", and
17
17
  the term "FSP" is equal to the term "DFSP".
18
18
  license:
19
- name: Apache License Version 2.0, January 2004
20
- url: https://github.com/mojaloop/documentation/blob/master/LICENSE.md
19
+ name: 'Apache License Version 2.0, January 2004'
20
+ url: 'https://github.com/mojaloop/documentation/blob/master/LICENSE.md'
21
21
  version: 1.0.0
22
22
  paths:
23
23
  /:
@@ -206,7 +206,7 @@ paths:
206
206
  displayName:
207
207
  title: Name
208
208
  type: string
209
- pattern: ^(?!\s*$)[\w .,'-]{1,128}$
209
+ pattern: '^(?!\s*$)[\w .,''-]{1,128}$'
210
210
  description: >-
211
211
  The API data type Name is a JSON String, restricted by a
212
212
  regular expression to avoid characters which are
@@ -265,7 +265,7 @@ paths:
265
265
  merchantClassificationCode:
266
266
  title: MerchantClassificationCode
267
267
  type: string
268
- pattern: ^[\d]{1,4}$
268
+ pattern: '^[\d]{1,4}$'
269
269
  description: >-
270
270
  A limited set of pre-defined numbers. This list would be
271
271
  a limited set of numbers identifying a set of popular
@@ -500,7 +500,7 @@ paths:
500
500
  amount:
501
501
  title: Amount
502
502
  type: string
503
- pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
503
+ pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
504
504
  description: >-
505
505
  The API data type Amount is a JSON String in a canonical
506
506
  format that is restricted by a regular expression for
@@ -614,7 +614,7 @@ paths:
614
614
  amount:
615
615
  title: Amount
616
616
  type: string
617
- pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
617
+ pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
618
618
  description: >-
619
619
  The API data type Amount is a JSON String in a canonical
620
620
  format that is restricted by a regular expression for
@@ -676,7 +676,7 @@ paths:
676
676
  body:
677
677
  title: QuotesIDPutResponse
678
678
  type: object
679
- description: The object sent in the PUT /quotes/{ID} callback.
679
+ description: 'The object sent in the PUT /quotes/{ID} callback.'
680
680
  properties: &ref_56
681
681
  transferAmount:
682
682
  title: Money
@@ -787,7 +787,7 @@ paths:
787
787
  ilpPacket:
788
788
  title: IlpPacket
789
789
  type: string
790
- pattern: ^[A-Za-z0-9-_]+[=]{0,2}$
790
+ pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
791
791
  minLength: 1
792
792
  maxLength: 32768
793
793
  description: >-
@@ -798,7 +798,7 @@ paths:
798
798
  condition:
799
799
  title: IlpCondition
800
800
  type: string
801
- pattern: ^[A-Za-z0-9-_]{43}$
801
+ pattern: '^[A-Za-z0-9-_]{43}$'
802
802
  maxLength: 48
803
803
  description: >-
804
804
  Condition that must be attached to the transfer by
@@ -846,12 +846,12 @@ paths:
846
846
  body:
847
847
  title: TransfersIDPutResponse
848
848
  type: object
849
- description: The object sent in the PUT /transfers/{ID} callback.
849
+ description: 'The object sent in the PUT /transfers/{ID} callback.'
850
850
  properties: &ref_20
851
851
  fulfilment:
852
852
  title: IlpFulfilment
853
853
  type: string
854
- pattern: ^[A-Za-z0-9-_]{43}$
854
+ pattern: '^[A-Za-z0-9-_]{43}$'
855
855
  maxLength: 48
856
856
  description: >-
857
857
  Fulfilment that must be attached to the transfer
@@ -940,7 +940,7 @@ paths:
940
940
  errorCode:
941
941
  title: ErrorCode
942
942
  type: string
943
- pattern: ^[1-9]\d{3}$
943
+ pattern: '^[1-9]\d{3}$'
944
944
  description: >-
945
945
  The API data type ErrorCode is a JSON String
946
946
  of four characters, consisting of digits only.
@@ -979,7 +979,7 @@ paths:
979
979
  previous party resolution has been performed.
980
980
  type: boolean
981
981
  '400':
982
- description: Malformed or missing required body, headers or parameters
982
+ description: 'Malformed or missing required body, headers or parameters'
983
983
  content: &ref_143
984
984
  application/json:
985
985
  schema:
@@ -1012,7 +1012,7 @@ paths:
1012
1012
  application/json:
1013
1013
  schema:
1014
1014
  allOf: *ref_14
1015
- /transfers/{transferId}:
1015
+ '/transfers/{transferId}':
1016
1016
  put:
1017
1017
  summary: >-
1018
1018
  Continues a transfer that has paused at the quote stage in order to
@@ -1141,7 +1141,7 @@ paths:
1141
1141
  body:
1142
1142
  title: TransfersIDPutResponse
1143
1143
  type: object
1144
- description: The object sent in the PUT /transfers/{ID} callback.
1144
+ description: 'The object sent in the PUT /transfers/{ID} callback.'
1145
1145
  properties: *ref_20
1146
1146
  required: *ref_21
1147
1147
  headers:
@@ -1414,7 +1414,7 @@ paths:
1414
1414
  merchantClassificationCode:
1415
1415
  title: MerchantClassificationCode
1416
1416
  type: string
1417
- pattern: ^[\d]{1,4}$
1417
+ pattern: '^[\d]{1,4}$'
1418
1418
  description: >-
1419
1419
  A limited set of pre-defined numbers. This list would be
1420
1420
  a limited set of numbers identifying a set of popular
@@ -1532,7 +1532,7 @@ paths:
1532
1532
  amount:
1533
1533
  title: Amount
1534
1534
  type: string
1535
- pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
1535
+ pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
1536
1536
  description: >-
1537
1537
  The API data type Amount is a JSON String in a
1538
1538
  canonical format that is restricted by a regular
@@ -1591,7 +1591,7 @@ paths:
1591
1591
  '202':
1592
1592
  description: Bulk transfer accepted successfully
1593
1593
  '400':
1594
- description: Malformed or missing required body, headers or parameters
1594
+ description: 'Malformed or missing required body, headers or parameters'
1595
1595
  content: &ref_41
1596
1596
  application/json:
1597
1597
  schema:
@@ -1730,7 +1730,7 @@ paths:
1730
1730
  transfer by the Payee.
1731
1731
  title: IlpFulfilment
1732
1732
  type: string
1733
- pattern: ^[A-Za-z0-9-_]{43}$
1733
+ pattern: '^[A-Za-z0-9-_]{43}$'
1734
1734
  maxLength: 48
1735
1735
  example: WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8
1736
1736
  extensionList:
@@ -1759,7 +1759,7 @@ paths:
1759
1759
  schema:
1760
1760
  type: object
1761
1761
  properties: *ref_22
1762
- /bulkTransactions/{bulkTransactionId}:
1762
+ '/bulkTransactions/{bulkTransactionId}':
1763
1763
  put:
1764
1764
  summary: Amends the bulk transaction request
1765
1765
  description: >-
@@ -1889,7 +1889,7 @@ paths:
1889
1889
  '202':
1890
1890
  description: Bulk transaction information successfully amended
1891
1891
  '400':
1892
- description: Malformed or missing required body, headers or parameters
1892
+ description: 'Malformed or missing required body, headers or parameters'
1893
1893
  content: &ref_144
1894
1894
  application/json:
1895
1895
  schema:
@@ -2090,7 +2090,7 @@ paths:
2090
2090
  amount:
2091
2091
  title: Amount
2092
2092
  type: string
2093
- pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
2093
+ pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
2094
2094
  description: >-
2095
2095
  The API data type Amount is a JSON String in a
2096
2096
  canonical format that is restricted by a regular
@@ -2106,6 +2106,25 @@ paths:
2106
2106
  type: string
2107
2107
  enum: *ref_5
2108
2108
  description: Type of transaction.
2109
+ ilpPacket:
2110
+ title: IlpPacket
2111
+ type: string
2112
+ pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
2113
+ minLength: 1
2114
+ maxLength: 32768
2115
+ description: >-
2116
+ Information for recipient (transport layer
2117
+ information).
2118
+ example: >-
2119
+ AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
2120
+ condition:
2121
+ title: IlpCondition
2122
+ type: string
2123
+ pattern: '^[A-Za-z0-9-_]{43}$'
2124
+ maxLength: 48
2125
+ description: >-
2126
+ Condition that must be attached to the transfer by the
2127
+ Payer.
2109
2128
  note:
2110
2129
  title: Note
2111
2130
  type: string
@@ -2127,6 +2146,8 @@ paths:
2127
2146
  - amountType
2128
2147
  - currency
2129
2148
  - amount
2149
+ - ilpPacket
2150
+ - condition
2130
2151
  extensions:
2131
2152
  title: ExtensionList
2132
2153
  type: object
@@ -2146,12 +2167,12 @@ paths:
2146
2167
  required: *ref_39
2147
2168
  properties: *ref_40
2148
2169
  '400':
2149
- description: Malformed or missing required body, headers or parameters
2170
+ description: 'Malformed or missing required body, headers or parameters'
2150
2171
  content: *ref_41
2151
2172
  '500':
2152
2173
  description: Internal Server Error
2153
2174
  content: *ref_42
2154
- /bulkTransfers/{bulkTransferId}:
2175
+ '/bulkTransfers/{bulkTransferId}':
2155
2176
  get:
2156
2177
  summary: Retrieves information for a specific bulk transfer
2157
2178
  description: >-
@@ -2228,7 +2249,7 @@ paths:
2228
2249
  the Payee.
2229
2250
  title: IlpFulfilment
2230
2251
  type: string
2231
- pattern: ^[A-Za-z0-9-_]{43}$
2252
+ pattern: '^[A-Za-z0-9-_]{43}$'
2232
2253
  maxLength: 48
2233
2254
  example: WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8
2234
2255
  extensionList:
@@ -2348,7 +2369,7 @@ paths:
2348
2369
  amount:
2349
2370
  title: Amount
2350
2371
  type: string
2351
- pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
2372
+ pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
2352
2373
  description: >-
2353
2374
  The API data type Amount is a JSON String in a
2354
2375
  canonical format that is restricted by a regular
@@ -2513,7 +2534,7 @@ paths:
2513
2534
  ilpPacket:
2514
2535
  title: IlpPacket
2515
2536
  type: string
2516
- pattern: ^[A-Za-z0-9-_]+[=]{0,2}$
2537
+ pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
2517
2538
  minLength: 1
2518
2539
  maxLength: 32768
2519
2540
  description: >-
@@ -2524,7 +2545,7 @@ paths:
2524
2545
  condition:
2525
2546
  title: IlpCondition
2526
2547
  type: string
2527
- pattern: ^[A-Za-z0-9-_]{43}$
2548
+ pattern: '^[A-Za-z0-9-_]{43}$'
2528
2549
  maxLength: 48
2529
2550
  description: >-
2530
2551
  Condition that must be attached to the transfer by
@@ -2552,7 +2573,7 @@ paths:
2552
2573
  List of individualQuoteResults in a bulk transfer
2553
2574
  response.
2554
2575
  '400':
2555
- description: Malformed or missing required body, headers or parameters
2576
+ description: 'Malformed or missing required body, headers or parameters'
2556
2577
  content: &ref_147
2557
2578
  application/json:
2558
2579
  schema:
@@ -2579,7 +2600,7 @@ paths:
2579
2600
  application/json:
2580
2601
  schema:
2581
2602
  allOf: *ref_49
2582
- /bulkQuotes/{bulkQuoteId}:
2603
+ '/bulkQuotes/{bulkQuoteId}':
2583
2604
  get:
2584
2605
  summary: Retrieves information for a specific bulk quote
2585
2606
  description: >-
@@ -2731,7 +2752,7 @@ paths:
2731
2752
  amount:
2732
2753
  title: Amount
2733
2754
  type: string
2734
- pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
2755
+ pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
2735
2756
  description: >-
2736
2757
  The API data type Amount is a JSON String in a canonical
2737
2758
  format that is restricted by a regular expression for
@@ -2786,7 +2807,7 @@ paths:
2786
2807
  subScenario:
2787
2808
  title: TransactionSubScenario
2788
2809
  type: string
2789
- pattern: ^[A-Z_]{1,32}$
2810
+ pattern: '^[A-Z_]{1,32}$'
2790
2811
  description: >-
2791
2812
  Possible sub-scenario, defined locally within the scheme
2792
2813
  (UndefinedEnum Type).
@@ -2860,7 +2881,7 @@ paths:
2860
2881
  balanceOfPayments:
2861
2882
  title: BalanceOfPayments
2862
2883
  type: string
2863
- pattern: ^[1-9]\d{2}$
2884
+ pattern: '^[1-9]\d{2}$'
2864
2885
  description: >-
2865
2886
  (BopCode) The API data type
2866
2887
  [BopCode](https://www.imf.org/external/np/sta/bopcode/)
@@ -2971,7 +2992,7 @@ paths:
2971
2992
  amount:
2972
2993
  title: Amount
2973
2994
  type: string
2974
- pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
2995
+ pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
2975
2996
  description: >-
2976
2997
  The API data type Amount is a JSON String in a canonical
2977
2998
  format that is restricted by a regular expression for
@@ -3156,7 +3177,7 @@ paths:
3156
3177
  amount:
3157
3178
  title: Amount
3158
3179
  type: string
3159
- pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
3180
+ pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
3160
3181
  description: >-
3161
3182
  The API data type Amount is a JSON String in a canonical
3162
3183
  format that is restricted by a regular expression for
@@ -3282,7 +3303,7 @@ paths:
3282
3303
  amount:
3283
3304
  title: Amount
3284
3305
  type: string
3285
- pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
3306
+ pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
3286
3307
  description: >-
3287
3308
  The API data type Amount is a JSON String in a canonical
3288
3309
  format that is restricted by a regular expression for
@@ -3326,7 +3347,7 @@ paths:
3326
3347
  quoteResponse:
3327
3348
  title: QuotesIDPutResponse
3328
3349
  type: object
3329
- description: The object sent in the PUT /quotes/{ID} callback.
3350
+ description: 'The object sent in the PUT /quotes/{ID} callback.'
3330
3351
  properties: *ref_56
3331
3352
  required: *ref_57
3332
3353
  quoteResponseSource:
@@ -3339,7 +3360,7 @@ paths:
3339
3360
  fulfil:
3340
3361
  title: TransfersIDPutResponse
3341
3362
  type: object
3342
- description: The object sent in the PUT /transfers/{ID} callback.
3363
+ description: 'The object sent in the PUT /transfers/{ID} callback.'
3343
3364
  properties: *ref_20
3344
3365
  required: *ref_21
3345
3366
  lastError:
@@ -3349,7 +3370,7 @@ paths:
3349
3370
  type: object
3350
3371
  properties: *ref_26
3351
3372
  '400':
3352
- description: Malformed or missing required body, headers or parameters
3373
+ description: 'Malformed or missing required body, headers or parameters'
3353
3374
  content: &ref_152
3354
3375
  application/json:
3355
3376
  schema:
@@ -3360,7 +3381,7 @@ paths:
3360
3381
  '504':
3361
3382
  description: Timeout occurred processing the transfer
3362
3383
  content: *ref_17
3363
- /requestToPayTransfer/{requestToPayTransactionId}:
3384
+ '/requestToPayTransfer/{requestToPayTransactionId}':
3364
3385
  put:
3365
3386
  summary: >-
3366
3387
  Continues a transfer that has paused at the otp stage in order to accept
@@ -3699,7 +3720,7 @@ paths:
3699
3720
  application/json:
3700
3721
  schema:
3701
3722
  allOf: *ref_62
3702
- /parties/{Type}/{ID}:
3723
+ '/parties/{Type}/{ID}':
3703
3724
  parameters:
3704
3725
  - name: Type
3705
3726
  in: path
@@ -3733,7 +3754,7 @@ paths:
3733
3754
  schema:
3734
3755
  title: partiesByIdResponse
3735
3756
  type: object
3736
- description: GET /parties/{Type}/{ID} response object
3757
+ description: 'GET /parties/{Type}/{ID} response object'
3737
3758
  properties: &ref_127
3738
3759
  party:
3739
3760
  properties:
@@ -3770,7 +3791,7 @@ paths:
3770
3791
  description: Data model for the complex type ErrorInformation.
3771
3792
  properties: *ref_63
3772
3793
  required: *ref_64
3773
- /parties/{Type}/{ID}/{SubId}:
3794
+ '/parties/{Type}/{ID}/{SubId}':
3774
3795
  parameters:
3775
3796
  - name: Type
3776
3797
  in: path
@@ -3992,7 +4013,7 @@ paths:
3992
4013
  quotes:
3993
4014
  title: QuotesIDPutResponse
3994
4015
  type: object
3995
- description: The object sent in the PUT /quotes/{ID} callback.
4016
+ description: 'The object sent in the PUT /quotes/{ID} callback.'
3996
4017
  properties:
3997
4018
  body:
3998
4019
  type: object
@@ -4040,7 +4061,7 @@ paths:
4040
4061
  ilpPacket:
4041
4062
  title: IlpPacket
4042
4063
  type: string
4043
- pattern: ^[A-Za-z0-9-_]+[=]{0,2}$
4064
+ pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
4044
4065
  minLength: 1
4045
4066
  maxLength: 32768
4046
4067
  description: >-
@@ -4051,7 +4072,7 @@ paths:
4051
4072
  condition:
4052
4073
  title: IlpCondition
4053
4074
  type: string
4054
- pattern: ^[A-Za-z0-9-_]{43}$
4075
+ pattern: '^[A-Za-z0-9-_]{43}$'
4055
4076
  maxLength: 48
4056
4077
  description: >-
4057
4078
  Condition that must be attached to the transfer by
@@ -4152,7 +4173,7 @@ paths:
4152
4173
  ilpPacket:
4153
4174
  title: IlpPacket
4154
4175
  type: string
4155
- pattern: ^[A-Za-z0-9-_]+[=]{0,2}$
4176
+ pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
4156
4177
  minLength: 1
4157
4178
  maxLength: 32768
4158
4179
  description: Information for recipient (transport layer information).
@@ -4161,7 +4182,7 @@ paths:
4161
4182
  condition:
4162
4183
  title: IlpCondition
4163
4184
  type: string
4164
- pattern: ^[A-Za-z0-9-_]{43}$
4185
+ pattern: '^[A-Za-z0-9-_]{43}$'
4165
4186
  maxLength: 48
4166
4187
  description: >-
4167
4188
  Condition that must be attached to the transfer by the
@@ -4218,7 +4239,7 @@ paths:
4218
4239
  body:
4219
4240
  title: TransfersIDPutResponse
4220
4241
  type: object
4221
- description: The object sent in the PUT /transfers/{ID} callback.
4242
+ description: 'The object sent in the PUT /transfers/{ID} callback.'
4222
4243
  properties: *ref_20
4223
4244
  required: *ref_21
4224
4245
  headers:
@@ -4322,7 +4343,7 @@ components:
4322
4343
  Name:
4323
4344
  title: Name
4324
4345
  type: string
4325
- pattern: ^(?!\s*$)[\w .,'-]{1,128}$
4346
+ pattern: '^(?!\s*$)[\w .,''-]{1,128}$'
4326
4347
  description: >-
4327
4348
  The API data type Name is a JSON String, restricted by a regular
4328
4349
  expression to avoid characters which are generally not used in a name.
@@ -4378,7 +4399,7 @@ components:
4378
4399
  MerchantClassificationCode:
4379
4400
  title: MerchantClassificationCode
4380
4401
  type: string
4381
- pattern: ^[\d]{1,4}$
4402
+ pattern: '^[\d]{1,4}$'
4382
4403
  description: >-
4383
4404
  A limited set of pre-defined numbers. This list would be a limited set
4384
4405
  of numbers identifying a set of popular merchant types like School Fees,
@@ -4443,7 +4464,7 @@ components:
4443
4464
  Amount:
4444
4465
  title: Amount
4445
4466
  type: string
4446
- pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
4467
+ pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
4447
4468
  description: >-
4448
4469
  The API data type Amount is a JSON String in a canonical format that is
4449
4470
  restricted by a regular expression for interoperability reasons. This
@@ -4534,7 +4555,7 @@ components:
4534
4555
  IlpPacket:
4535
4556
  title: IlpPacket
4536
4557
  type: string
4537
- pattern: ^[A-Za-z0-9-_]+[=]{0,2}$
4558
+ pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
4538
4559
  minLength: 1
4539
4560
  maxLength: 32768
4540
4561
  description: Information for recipient (transport layer information).
@@ -4543,7 +4564,7 @@ components:
4543
4564
  IlpCondition:
4544
4565
  title: IlpCondition
4545
4566
  type: string
4546
- pattern: ^[A-Za-z0-9-_]{43}$
4567
+ pattern: '^[A-Za-z0-9-_]{43}$'
4547
4568
  maxLength: 48
4548
4569
  description: Condition that must be attached to the transfer by the Payer.
4549
4570
  ExtensionList:
@@ -4557,13 +4578,13 @@ components:
4557
4578
  QuotesIDPutResponse:
4558
4579
  title: QuotesIDPutResponse
4559
4580
  type: object
4560
- description: The object sent in the PUT /quotes/{ID} callback.
4581
+ description: 'The object sent in the PUT /quotes/{ID} callback.'
4561
4582
  properties: *ref_56
4562
4583
  required: *ref_57
4563
4584
  IlpFulfilment:
4564
4585
  title: IlpFulfilment
4565
4586
  type: string
4566
- pattern: ^[A-Za-z0-9-_]{43}$
4587
+ pattern: '^[A-Za-z0-9-_]{43}$'
4567
4588
  maxLength: 48
4568
4589
  description: Fulfilment that must be attached to the transfer by the Payee.
4569
4590
  example: WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8
@@ -4586,13 +4607,13 @@ components:
4586
4607
  TransfersIDPutResponse:
4587
4608
  title: TransfersIDPutResponse
4588
4609
  type: object
4589
- description: The object sent in the PUT /transfers/{ID} callback.
4610
+ description: 'The object sent in the PUT /transfers/{ID} callback.'
4590
4611
  properties: *ref_20
4591
4612
  required: *ref_21
4592
4613
  ErrorCode:
4593
4614
  title: ErrorCode
4594
4615
  type: string
4595
- pattern: ^[1-9]\d{3}$
4616
+ pattern: '^[1-9]\d{3}$'
4596
4617
  description: >-
4597
4618
  The API data type ErrorCode is a JSON String of four characters,
4598
4619
  consisting of digits only. Negative numbers are not allowed. A leading
@@ -4748,6 +4769,21 @@ components:
4748
4769
  properties: *ref_46
4749
4770
  bulkTransactionAcceptQuoteErrorResponse:
4750
4771
  allOf: *ref_95
4772
+ ilpPacket:
4773
+ title: IlpPacket
4774
+ type: string
4775
+ pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
4776
+ minLength: 1
4777
+ maxLength: 32768
4778
+ description: Information for recipient (transport layer information).
4779
+ example: >-
4780
+ AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
4781
+ ilpCondition:
4782
+ title: IlpCondition
4783
+ type: string
4784
+ pattern: '^[A-Za-z0-9-_]{43}$'
4785
+ maxLength: 48
4786
+ description: Condition that must be attached to the transfer by the Payer.
4751
4787
  individualTransfer:
4752
4788
  title: IndividualTransfer
4753
4789
  type: object
@@ -4826,7 +4862,7 @@ components:
4826
4862
  TransactionSubScenario:
4827
4863
  title: TransactionSubScenario
4828
4864
  type: string
4829
- pattern: ^[A-Z_]{1,32}$
4865
+ pattern: '^[A-Z_]{1,32}$'
4830
4866
  description: >-
4831
4867
  Possible sub-scenario, defined locally within the scheme (UndefinedEnum
4832
4868
  Type).
@@ -4863,7 +4899,7 @@ components:
4863
4899
  BalanceOfPayments:
4864
4900
  title: BalanceOfPayments
4865
4901
  type: string
4866
- pattern: ^[1-9]\d{2}$
4902
+ pattern: '^[1-9]\d{2}$'
4867
4903
  description: >-
4868
4904
  (BopCode) The API data type
4869
4905
  [BopCode](https://www.imf.org/external/np/sta/bopcode/) is a JSON String
@@ -4938,7 +4974,7 @@ components:
4938
4974
  partiesByIdResponse:
4939
4975
  title: partiesByIdResponse
4940
4976
  type: object
4941
- description: GET /parties/{Type}/{ID} response object
4977
+ description: 'GET /parties/{Type}/{ID} response object'
4942
4978
  properties: *ref_127
4943
4979
  required: *ref_128
4944
4980
  QuotesPostRequest:
@@ -4982,7 +5018,7 @@ components:
4982
5018
  description: Transfer completed successfully
4983
5019
  content: *ref_15
4984
5020
  transferBadRequest:
4985
- description: Malformed or missing required body, headers or parameters
5021
+ description: 'Malformed or missing required body, headers or parameters'
4986
5022
  content: *ref_143
4987
5023
  transferServerError:
4988
5024
  description: An error occurred processing the transfer
@@ -4993,13 +5029,13 @@ components:
4993
5029
  bulkTransactionAccepted:
4994
5030
  description: Bulk transfer accepted successfully
4995
5031
  bulkTransferBadRequest:
4996
- description: Malformed or missing required body, headers or parameters
5032
+ description: 'Malformed or missing required body, headers or parameters'
4997
5033
  content: *ref_41
4998
5034
  errorResponse:
4999
5035
  description: Internal Server Error
5000
5036
  content: *ref_42
5001
5037
  bulkTransactionPutBadRequest:
5002
- description: Malformed or missing required body, headers or parameters
5038
+ description: 'Malformed or missing required body, headers or parameters'
5003
5039
  content: *ref_144
5004
5040
  bulkTransferSuccess:
5005
5041
  description: Bulk transfer completed successfully
@@ -5008,7 +5044,7 @@ components:
5008
5044
  description: Bulk quote completed successfully
5009
5045
  content: *ref_146
5010
5046
  bulkQuoteBadRequest:
5011
- description: Malformed or missing required body, headers or parameters
5047
+ description: 'Malformed or missing required body, headers or parameters'
5012
5048
  content: *ref_147
5013
5049
  bulkQuoteServerError:
5014
5050
  description: An error occurred processing the bulk quote
@@ -5023,7 +5059,7 @@ components:
5023
5059
  description: Transfer completed successfully
5024
5060
  content: *ref_151
5025
5061
  requestToPayTransferBadRequest:
5026
- description: Malformed or missing required body, headers or parameters
5062
+ description: 'Malformed or missing required body, headers or parameters'
5027
5063
  content: *ref_152
5028
5064
  accountsCreationCompleted:
5029
5065
  description: Accounts creation completed
@@ -5098,7 +5134,7 @@ components:
5098
5134
  in: path
5099
5135
  required: true
5100
5136
  schema: *ref_65
5101
- description: The type of the party identifier. For example, `MSISDN`, `PERSONAL_ID`.
5137
+ description: 'The type of the party identifier. For example, `MSISDN`, `PERSONAL_ID`.'
5102
5138
  ID:
5103
5139
  name: ID
5104
5140
  in: path
@@ -9820,6 +9820,22 @@
9820
9820
  }
9821
9821
  ]
9822
9822
  },
9823
+ "ilpPacket": {
9824
+ "title": "IlpPacket",
9825
+ "type": "string",
9826
+ "pattern": "^[A-Za-z0-9-_]+[=]{0,2}$",
9827
+ "minLength": 1,
9828
+ "maxLength": 32768,
9829
+ "description": "Information for recipient (transport layer information).",
9830
+ "example": "AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA"
9831
+ },
9832
+ "ilpCondition": {
9833
+ "title": "IlpCondition",
9834
+ "type": "string",
9835
+ "pattern": "^[A-Za-z0-9-_]{43}$",
9836
+ "maxLength": 48,
9837
+ "description": "Condition that must be attached to the transfer by the Payer."
9838
+ },
9823
9839
  "individualTransfer": {
9824
9840
  "title": "IndividualTransfer",
9825
9841
  "type": "object",
@@ -10164,6 +10180,22 @@
10164
10180
  ],
10165
10181
  "description": "Type of transaction."
10166
10182
  },
10183
+ "ilpPacket": {
10184
+ "title": "IlpPacket",
10185
+ "type": "string",
10186
+ "pattern": "^[A-Za-z0-9-_]+[=]{0,2}$",
10187
+ "minLength": 1,
10188
+ "maxLength": 32768,
10189
+ "description": "Information for recipient (transport layer information).",
10190
+ "example": "AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA"
10191
+ },
10192
+ "condition": {
10193
+ "title": "IlpCondition",
10194
+ "type": "string",
10195
+ "pattern": "^[A-Za-z0-9-_]{43}$",
10196
+ "maxLength": 48,
10197
+ "description": "Condition that must be attached to the transfer by the Payer."
10198
+ },
10167
10199
  "note": {
10168
10200
  "title": "Note",
10169
10201
  "type": "string",
@@ -10219,7 +10251,9 @@
10219
10251
  "to",
10220
10252
  "amountType",
10221
10253
  "currency",
10222
- "amount"
10254
+ "amount",
10255
+ "ilpPacket",
10256
+ "condition"
10223
10257
  ]
10224
10258
  },
10225
10259
  "bulkTransferRequest": {
@@ -10733,6 +10767,22 @@
10733
10767
  ],
10734
10768
  "description": "Type of transaction."
10735
10769
  },
10770
+ "ilpPacket": {
10771
+ "title": "IlpPacket",
10772
+ "type": "string",
10773
+ "pattern": "^[A-Za-z0-9-_]+[=]{0,2}$",
10774
+ "minLength": 1,
10775
+ "maxLength": 32768,
10776
+ "description": "Information for recipient (transport layer information).",
10777
+ "example": "AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA"
10778
+ },
10779
+ "condition": {
10780
+ "title": "IlpCondition",
10781
+ "type": "string",
10782
+ "pattern": "^[A-Za-z0-9-_]{43}$",
10783
+ "maxLength": 48,
10784
+ "description": "Condition that must be attached to the transfer by the Payer."
10785
+ },
10736
10786
  "note": {
10737
10787
  "title": "Note",
10738
10788
  "type": "string",
@@ -10788,7 +10838,9 @@
10788
10838
  "to",
10789
10839
  "amountType",
10790
10840
  "currency",
10791
- "amount"
10841
+ "amount",
10842
+ "ilpPacket",
10843
+ "condition"
10792
10844
  ]
10793
10845
  }
10794
10846
  },
@@ -5171,6 +5171,17 @@ export interface paths {
5171
5171
  * @enum {string}
5172
5172
  */
5173
5173
  transactionType?: "TRANSFER";
5174
+ /**
5175
+ * IlpPacket
5176
+ * @description Information for recipient (transport layer information).
5177
+ * @example AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
5178
+ */
5179
+ ilpPacket: string;
5180
+ /**
5181
+ * IlpCondition
5182
+ * @description Condition that must be attached to the transfer by the Payer.
5183
+ */
5184
+ condition: string;
5174
5185
  /**
5175
5186
  * Note
5176
5187
  * @description Memo assigned to transaction.
@@ -15244,6 +15255,17 @@ export interface components {
15244
15255
  } & {
15245
15256
  bulkTansferState: unknown;
15246
15257
  });
15258
+ /**
15259
+ * IlpPacket
15260
+ * @description Information for recipient (transport layer information).
15261
+ * @example AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
15262
+ */
15263
+ ilpPacket: string;
15264
+ /**
15265
+ * IlpCondition
15266
+ * @description Condition that must be attached to the transfer by the Payer.
15267
+ */
15268
+ ilpCondition: string;
15247
15269
  /**
15248
15270
  * IndividualTransfer
15249
15271
  * @description Data model for the complex type 'individualTransfer'.
@@ -15375,6 +15397,17 @@ export interface components {
15375
15397
  * @enum {string}
15376
15398
  */
15377
15399
  transactionType?: "TRANSFER";
15400
+ /**
15401
+ * IlpPacket
15402
+ * @description Information for recipient (transport layer information).
15403
+ * @example AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
15404
+ */
15405
+ ilpPacket: string;
15406
+ /**
15407
+ * IlpCondition
15408
+ * @description Condition that must be attached to the transfer by the Payer.
15409
+ */
15410
+ condition: string;
15378
15411
  /**
15379
15412
  * Note
15380
15413
  * @description Memo assigned to transaction.
@@ -15637,6 +15670,17 @@ export interface components {
15637
15670
  * @enum {string}
15638
15671
  */
15639
15672
  transactionType?: "TRANSFER";
15673
+ /**
15674
+ * IlpPacket
15675
+ * @description Information for recipient (transport layer information).
15676
+ * @example AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
15677
+ */
15678
+ ilpPacket: string;
15679
+ /**
15680
+ * IlpCondition
15681
+ * @description Condition that must be attached to the transfer by the Payer.
15682
+ */
15683
+ condition: string;
15640
15684
  /**
15641
15685
  * Note
15642
15686
  * @description Memo assigned to transaction.
@@ -5219,6 +5219,22 @@ export declare namespace Schemas {
5219
5219
  };
5220
5220
  })[];
5221
5221
  };
5222
+ const ilpPacket: {
5223
+ title: string;
5224
+ type: string;
5225
+ pattern: string;
5226
+ minLength: number;
5227
+ maxLength: number;
5228
+ description: string;
5229
+ example: string;
5230
+ };
5231
+ const ilpCondition: {
5232
+ title: string;
5233
+ type: string;
5234
+ pattern: string;
5235
+ maxLength: number;
5236
+ description: string;
5237
+ };
5222
5238
  const individualTransfer: {
5223
5239
  title: string;
5224
5240
  type: string;
@@ -5373,6 +5389,22 @@ export declare namespace Schemas {
5373
5389
  enum: string[];
5374
5390
  description: string;
5375
5391
  };
5392
+ ilpPacket: {
5393
+ title: string;
5394
+ type: string;
5395
+ pattern: string;
5396
+ minLength: number;
5397
+ maxLength: number;
5398
+ description: string;
5399
+ example: string;
5400
+ };
5401
+ condition: {
5402
+ title: string;
5403
+ type: string;
5404
+ pattern: string;
5405
+ maxLength: number;
5406
+ description: string;
5407
+ };
5376
5408
  note: {
5377
5409
  title: string;
5378
5410
  type: string;
@@ -5715,6 +5747,22 @@ export declare namespace Schemas {
5715
5747
  enum: string[];
5716
5748
  description: string;
5717
5749
  };
5750
+ ilpPacket: {
5751
+ title: string;
5752
+ type: string;
5753
+ pattern: string;
5754
+ minLength: number;
5755
+ maxLength: number;
5756
+ description: string;
5757
+ example: string;
5758
+ };
5759
+ condition: {
5760
+ title: string;
5761
+ type: string;
5762
+ pattern: string;
5763
+ maxLength: number;
5764
+ description: string;
5765
+ };
5718
5766
  note: {
5719
5767
  title: string;
5720
5768
  type: string;
@@ -76,6 +76,8 @@ var Schemas;
76
76
  Schemas.bulkTransactionAcceptPartyErrorResponse = json_schemas_json_1.default.bulkTransactionAcceptPartyErrorResponse;
77
77
  Schemas.quoteError = json_schemas_json_1.default.quoteError;
78
78
  Schemas.bulkTransactionAcceptQuoteErrorResponse = json_schemas_json_1.default.bulkTransactionAcceptQuoteErrorResponse;
79
+ Schemas.ilpPacket = json_schemas_json_1.default.ilpPacket;
80
+ Schemas.ilpCondition = json_schemas_json_1.default.ilpCondition;
79
81
  Schemas.individualTransfer = json_schemas_json_1.default.individualTransfer;
80
82
  Schemas.bulkTransferRequest = json_schemas_json_1.default.bulkTransferRequest;
81
83
  Schemas.individualTransferFulfilment = json_schemas_json_1.default.individualTransferFulfilment;
@@ -1 +1 @@
1
- {"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_0_0/outbound/schemas.ts"],"names":[],"mappings":";AAAA,oDAAoD;;;;AAEpD,kEAAkE;AAElE,oFAA6C;AAE7C,IAAiB,OAAO,CA8GvB;AA9GD,WAAiB,OAAO;IACT,gCAAwB,GAAG,2BAAW,CAAC,wBAAwB,CAAA;IAC/D,mBAAW,GAAG,2BAAW,CAAC,WAAW,CAAA;IACrC,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,YAAI,GAAG,2BAAW,CAAC,IAAI,CAAA;IACvB,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,kBAAU,GAAG,2BAAW,CAAC,UAAU,CAAA;IACnC,gBAAQ,GAAG,2BAAW,CAAC,QAAQ,CAAA;IAC/B,mBAAW,GAAG,2BAAW,CAAC,WAAW,CAAA;IACrC,kCAA0B,GAAG,2BAAW,CAAC,0BAA0B,CAAA;IACnE,aAAK,GAAG,2BAAW,CAAC,KAAK,CAAA;IACzB,oBAAY,GAAG,2BAAW,CAAC,YAAY,CAAA;IACvC,sBAAc,GAAG,2BAAW,CAAC,cAAc,CAAA;IAC3C,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,8BAAsB,GAAG,2BAAW,CAAC,sBAAsB,CAAA;IAC3D,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,kBAAU,GAAG,2BAAW,CAAC,UAAU,CAAA;IACnC,gBAAQ,GAAG,2BAAW,CAAC,QAAQ,CAAA;IAC/B,cAAM,GAAG,2BAAW,CAAC,MAAM,CAAA;IAC3B,+BAAuB,GAAG,2BAAW,CAAC,uBAAuB,CAAA;IAC7D,YAAI,GAAG,2BAAW,CAAC,IAAI,CAAA;IACvB,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,sBAAc,GAAG,2BAAW,CAAC,cAAc,CAAA;IAC3C,aAAK,GAAG,2BAAW,CAAC,KAAK,CAAA;IACzB,gBAAQ,GAAG,2BAAW,CAAC,QAAQ,CAAA;IAC/B,gBAAQ,GAAG,2BAAW,CAAC,QAAQ,CAAA;IAC/B,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,eAAO,GAAG,2BAAW,CAAC,OAAO,CAAA;IAC7B,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,oBAAY,GAAG,2BAAW,CAAC,YAAY,CAAA;IACvC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,2BAAmB,GAAG,2BAAW,CAAC,mBAAmB,CAAA;IACrD,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,8BAAsB,GAAG,2BAAW,CAAC,sBAAsB,CAAA;IAC3D,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,6BAAqB,GAAG,2BAAW,CAAC,qBAAqB,CAAA;IACzD,8BAAsB,GAAG,2BAAW,CAAC,sBAAsB,CAAA;IAC3D,uCAA+B,GAAG,2BAAW,CAAC,+BAA+B,CAAA;IAC7E,uCAA+B,GAAG,2BAAW,CAAC,+BAA+B,CAAA;IAC7E,6BAAqB,GAAG,2BAAW,CAAC,qBAAqB,CAAA;IACzD,+BAAuB,GAAG,2BAAW,CAAC,uBAAuB,CAAA;IAC7D,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,8BAAsB,GAAG,2BAAW,CAAC,sBAAsB,CAAA;IAC3D,mBAAW,GAAG,2BAAW,CAAC,WAAW,CAAA;IACrC,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,yBAAiB,GAAG,2BAAW,CAAC,iBAAiB,CAAA;IACjD,aAAK,GAAG,2BAAW,CAAC,KAAK,CAAA;IACzB,yCAAiC,GAAG,2BAAW,CAAC,iCAAiC,CAAA;IACjF,8BAAsB,GAAG,2BAAW,CAAC,sBAAsB,CAAA;IAC3D,0BAAkB,GAAG,2BAAW,CAAC,kBAAkB,CAAA;IACnD,gCAAwB,GAAG,2BAAW,CAAC,wBAAwB,CAAA;IAC/D,4BAAoB,GAAG,2BAAW,CAAC,oBAAoB,CAAA;IACvD,iCAAyB,GAAG,2BAAW,CAAC,yBAAyB,CAAA;IACjE,+CAAuC,GAAG,2BAAW,CAAC,uCAAuC,CAAA;IAC7F,8CAAsC,GAAG,2BAAW,CAAC,sCAAsC,CAAA;IAC3F,8CAAsC,GAAG,2BAAW,CAAC,sCAAsC,CAAA;IAC3F,kBAAU,GAAG,2BAAW,CAAC,UAAU,CAAA;IACnC,+CAAuC,GAAG,2BAAW,CAAC,uCAAuC,CAAA;IAC7F,kBAAU,GAAG,2BAAW,CAAC,UAAU,CAAA;IACnC,+CAAuC,GAAG,2BAAW,CAAC,uCAAuC,CAAA;IAC7F,0BAAkB,GAAG,2BAAW,CAAC,kBAAkB,CAAA;IACnD,2BAAmB,GAAG,2BAAW,CAAC,mBAAmB,CAAA;IACrD,oCAA4B,GAAG,2BAAW,CAAC,4BAA4B,CAAA;IACvE,kCAA0B,GAAG,2BAAW,CAAC,0BAA0B,CAAA;IACnE,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,6BAAqB,GAAG,2BAAW,CAAC,qBAAqB,CAAA;IACzD,yBAAiB,GAAG,2BAAW,CAAC,iBAAiB,CAAA;IACjD,8BAAsB,GAAG,2BAAW,CAAC,sBAAsB,CAAA;IAC3D,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,+BAAuB,GAAG,2BAAW,CAAC,uBAAuB,CAAA;IAC7D,2BAAmB,GAAG,2BAAW,CAAC,mBAAmB,CAAA;IACrD,8BAAsB,GAAG,2BAAW,CAAC,sBAAsB,CAAA;IAC3D,4BAAoB,GAAG,2BAAW,CAAC,oBAAoB,CAAA;IACvD,oBAAY,GAAG,2BAAW,CAAC,YAAY,CAAA;IACvC,cAAM,GAAG,2BAAW,CAAC,MAAM,CAAA;IAC3B,yBAAiB,GAAG,2BAAW,CAAC,iBAAiB,CAAA;IACjD,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,2BAAmB,GAAG,2BAAW,CAAC,mBAAmB,CAAA;IACrD,0BAAkB,GAAG,2BAAW,CAAC,kBAAkB,CAAA;IACnD,+BAAuB,GAAG,2BAAW,CAAC,uBAAuB,CAAA;IAC7D,4BAAoB,GAAG,2BAAW,CAAC,oBAAoB,CAAA;IACvD,mCAA2B,GAAG,2BAAW,CAAC,2BAA2B,CAAA;IACrE,oCAA4B,GAAG,2BAAW,CAAC,4BAA4B,CAAA;IACvE,qCAA6B,GAAG,2BAAW,CAAC,6BAA6B,CAAA;IACzE,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,6BAAqB,GAAG,2BAAW,CAAC,qBAAqB,CAAA;IACzD,6BAAqB,GAAG,2BAAW,CAAC,qBAAqB,CAAA;IACzD,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,6BAAqB,GAAG,2BAAW,CAAC,qBAAqB,CAAA;IACzD,8BAAsB,GAAG,2BAAW,CAAC,sBAAsB,CAAA;IAC3D,2BAAmB,GAAG,2BAAW,CAAC,mBAAmB,CAAA;IACrD,yBAAiB,GAAG,2BAAW,CAAC,iBAAiB,CAAA;IACjD,+BAAuB,GAAG,2BAAW,CAAC,uBAAuB,CAAA;IAC7D,0BAAkB,GAAG,2BAAW,CAAC,kBAAkB,CAAA;IACnD,2BAAmB,GAAG,2BAAW,CAAC,mBAAmB,CAAA;IACrD,4BAAoB,GAAG,2BAAW,CAAC,oBAAoB,CAAA;IACvD,kCAA0B,GAAG,2BAAW,CAAC,0BAA0B,CAAA;IACnE,mCAA2B,GAAG,2BAAW,CAAC,2BAA2B,CAAA;IACrE,oCAA4B,GAAG,2BAAW,CAAC,4BAA4B,CAAA;AACtF,CAAC,EA9GgB,OAAO,GAAP,eAAO,KAAP,eAAO,QA8GvB"}
1
+ {"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_0_0/outbound/schemas.ts"],"names":[],"mappings":"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"}
@@ -70,6 +70,8 @@ export declare namespace Types {
70
70
  type bulkTransactionAcceptPartyErrorResponse = components['schemas']['bulkTransactionAcceptPartyErrorResponse'];
71
71
  type quoteError = components['schemas']['quoteError'];
72
72
  type bulkTransactionAcceptQuoteErrorResponse = components['schemas']['bulkTransactionAcceptQuoteErrorResponse'];
73
+ type ilpPacket = components['schemas']['ilpPacket'];
74
+ type ilpCondition = components['schemas']['ilpCondition'];
73
75
  type individualTransfer = components['schemas']['individualTransfer'];
74
76
  type bulkTransferRequest = components['schemas']['bulkTransferRequest'];
75
77
  type individualTransferFulfilment = components['schemas']['individualTransferFulfilment'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mojaloop/api-snippets",
3
- "version": "16.0.2",
3
+ "version": "16.0.3",
4
4
  "description": "Mojaloop API specification reusable snippets",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -14,6 +14,10 @@ properties:
14
14
  $ref: ./Amount.yaml
15
15
  transactionType:
16
16
  $ref: ./transferTransactionType.yaml
17
+ ilpPacket:
18
+ $ref: ./ilpPacket.yaml
19
+ condition:
20
+ $ref: ./ilpCondition.yaml
17
21
  note:
18
22
  $ref: ./Note.yaml
19
23
  extensions:
@@ -24,3 +28,5 @@ required:
24
28
  - amountType
25
29
  - currency
26
30
  - amount
31
+ - ilpPacket
32
+ - condition