@mojaloop/api-snippets 17.0.0-snapshot.0 → 17.0.0-snapshot.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1299,7 +1299,6 @@ paths:
1299
1299
  title: BulkTransactionResponse
1300
1300
  type: object
1301
1301
  required: &ref_78
1302
- - bulkHomeTransactionID
1303
1302
  - bulkTransactionId
1304
1303
  - currentState
1305
1304
  - individualTransferResults
@@ -1613,7 +1612,7 @@ paths:
1613
1612
  items:
1614
1613
  type: object
1615
1614
  required: &ref_76
1616
- - homeTransactionId
1615
+ - transferId
1617
1616
  - to
1618
1617
  - amountType
1619
1618
  - currency
@@ -1169,7 +1169,6 @@ paths:
1169
1169
  type: object
1170
1170
  required: &ref_88
1171
1171
  - bulkTransactionId
1172
- - bulkHomeTransactionID
1173
1172
  - options
1174
1173
  - from
1175
1174
  - individualTransfers
@@ -1572,7 +1571,6 @@ paths:
1572
1571
  at any time during the transfer process
1573
1572
  properties: *ref_26
1574
1573
  required: &ref_87
1575
- - homeTransactionId
1576
1574
  - to
1577
1575
  - amountType
1578
1576
  - currency
@@ -1802,7 +1800,6 @@ paths:
1802
1800
  autoAcceptParty is false.
1803
1801
  type: object
1804
1802
  required: &ref_34
1805
- - bulkHomeTransactionID
1806
1803
  - individualTransfers
1807
1804
  properties: &ref_35
1808
1805
  bulkHomeTransactionID:
@@ -1863,7 +1860,6 @@ paths:
1863
1860
  dashes (‘-‘).
1864
1861
  example: b51ec534-ee48-4575-b6a9-ead2955b8069
1865
1862
  required: &ref_31
1866
- - homeTransactionId
1867
1863
  - transferId
1868
1864
  - type: object
1869
1865
  required: *ref_28
@@ -1873,7 +1869,6 @@ paths:
1873
1869
  autoAcceptQuotes is false.
1874
1870
  type: object
1875
1871
  required: &ref_37
1876
- - bulkHomeTransactionID
1877
1872
  - individualTransfers
1878
1873
  properties: &ref_38
1879
1874
  bulkHomeTransactionID:
@@ -7683,7 +7683,7 @@
7683
7683
  "bulkTransactionIndividualTransferResult": {
7684
7684
  "type": "object",
7685
7685
  "required": [
7686
- "homeTransactionId",
7686
+ "transferId",
7687
7687
  "to",
7688
7688
  "amountType",
7689
7689
  "currency",
@@ -9191,7 +9191,6 @@
9191
9191
  "title": "BulkTransactionResponse",
9192
9192
  "type": "object",
9193
9193
  "required": [
9194
- "bulkHomeTransactionID",
9195
9194
  "bulkTransactionId",
9196
9195
  "currentState",
9197
9196
  "individualTransferResults"
@@ -9482,7 +9481,7 @@
9482
9481
  "items": {
9483
9482
  "type": "object",
9484
9483
  "required": [
9485
- "homeTransactionId",
9484
+ "transferId",
9486
9485
  "to",
9487
9486
  "amountType",
9488
9487
  "currency",
@@ -1109,7 +1109,7 @@ export interface paths {
1109
1109
  content: {
1110
1110
  "application/json": {
1111
1111
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
1112
- bulkHomeTransactionID: string;
1112
+ bulkHomeTransactionID?: string;
1113
1113
  /**
1114
1114
  * CorrelationId
1115
1115
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -1162,9 +1162,9 @@ export interface paths {
1162
1162
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
1163
1163
  * @example b51ec534-ee48-4575-b6a9-ead2955b8069
1164
1164
  */
1165
- transferId?: string;
1165
+ transferId: string;
1166
1166
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
1167
- homeTransactionId: string;
1167
+ homeTransactionId?: string;
1168
1168
  /**
1169
1169
  * CorrelationId
1170
1170
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -3395,9 +3395,9 @@ export interface components {
3395
3395
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
3396
3396
  * @example b51ec534-ee48-4575-b6a9-ead2955b8069
3397
3397
  */
3398
- transferId?: string;
3398
+ transferId: string;
3399
3399
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
3400
- homeTransactionId: string;
3400
+ homeTransactionId?: string;
3401
3401
  /**
3402
3402
  * CorrelationId
3403
3403
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -3812,7 +3812,7 @@ export interface components {
3812
3812
  /** BulkTransactionResponse */
3813
3813
  bulkTransactionResponse: {
3814
3814
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
3815
- bulkHomeTransactionID: string;
3815
+ bulkHomeTransactionID?: string;
3816
3816
  /**
3817
3817
  * CorrelationId
3818
3818
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -3865,9 +3865,9 @@ export interface components {
3865
3865
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
3866
3866
  * @example b51ec534-ee48-4575-b6a9-ead2955b8069
3867
3867
  */
3868
- transferId?: string;
3868
+ transferId: string;
3869
3869
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
3870
- homeTransactionId: string;
3870
+ homeTransactionId?: string;
3871
3871
  /**
3872
3872
  * CorrelationId
3873
3873
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -7464,7 +7464,6 @@
7464
7464
  }
7465
7465
  },
7466
7466
  "required": [
7467
- "homeTransactionId",
7468
7467
  "to",
7469
7468
  "amountType",
7470
7469
  "currency",
@@ -7475,7 +7474,6 @@
7475
7474
  "type": "object",
7476
7475
  "required": [
7477
7476
  "bulkTransactionId",
7478
- "bulkHomeTransactionID",
7479
7477
  "options",
7480
7478
  "from",
7481
7479
  "individualTransfers"
@@ -8451,7 +8449,6 @@
8451
8449
  }
8452
8450
  },
8453
8451
  "required": [
8454
- "homeTransactionId",
8455
8452
  "to",
8456
8453
  "amountType",
8457
8454
  "currency",
@@ -9196,7 +9193,6 @@
9196
9193
  }
9197
9194
  },
9198
9195
  "required": [
9199
- "homeTransactionId",
9200
9196
  "transferId"
9201
9197
  ]
9202
9198
  },
@@ -9204,7 +9200,6 @@
9204
9200
  "description": "The object sent back as confirmation of payee parties when autoAcceptParty is false.",
9205
9201
  "type": "object",
9206
9202
  "required": [
9207
- "bulkHomeTransactionID",
9208
9203
  "individualTransfers"
9209
9204
  ],
9210
9205
  "properties": {
@@ -9242,7 +9237,6 @@
9242
9237
  }
9243
9238
  },
9244
9239
  "required": [
9245
- "homeTransactionId",
9246
9240
  "transferId"
9247
9241
  ]
9248
9242
  },
@@ -9270,7 +9264,6 @@
9270
9264
  "description": "The object sent back as confirmation of quotes when autoAcceptQuotes is false.",
9271
9265
  "type": "object",
9272
9266
  "required": [
9273
- "bulkHomeTransactionID",
9274
9267
  "individualTransfers"
9275
9268
  ],
9276
9269
  "properties": {
@@ -9308,7 +9301,6 @@
9308
9301
  }
9309
9302
  },
9310
9303
  "required": [
9311
- "homeTransactionId",
9312
9304
  "transferId"
9313
9305
  ]
9314
9306
  },
@@ -9441,7 +9433,6 @@
9441
9433
  "description": "The object sent back as confirmation of payee parties when autoAcceptParty is false.",
9442
9434
  "type": "object",
9443
9435
  "required": [
9444
- "bulkHomeTransactionID",
9445
9436
  "individualTransfers"
9446
9437
  ],
9447
9438
  "properties": {
@@ -9479,7 +9470,6 @@
9479
9470
  }
9480
9471
  },
9481
9472
  "required": [
9482
- "homeTransactionId",
9483
9473
  "transferId"
9484
9474
  ]
9485
9475
  },
@@ -9700,7 +9690,6 @@
9700
9690
  "description": "The object sent back as confirmation of quotes when autoAcceptQuotes is false.",
9701
9691
  "type": "object",
9702
9692
  "required": [
9703
- "bulkHomeTransactionID",
9704
9693
  "individualTransfers"
9705
9694
  ],
9706
9695
  "properties": {
@@ -9738,7 +9727,6 @@
9738
9727
  }
9739
9728
  },
9740
9729
  "required": [
9741
- "homeTransactionId",
9742
9730
  "transferId"
9743
9731
  ]
9744
9732
  },
@@ -4031,7 +4031,7 @@ export interface paths {
4031
4031
  content: {
4032
4032
  "application/json": {
4033
4033
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
4034
- bulkHomeTransactionID: string;
4034
+ bulkHomeTransactionID?: string;
4035
4035
  /**
4036
4036
  * CorrelationId
4037
4037
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -4185,7 +4185,7 @@ export interface paths {
4185
4185
  /** @description List of individual transfers in a bulk transfer. */
4186
4186
  individualTransfers: {
4187
4187
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
4188
- homeTransactionId: string;
4188
+ homeTransactionId?: string;
4189
4189
  /**
4190
4190
  * Party
4191
4191
  * @description Data model for the complex type Party.
@@ -4452,11 +4452,11 @@ export interface paths {
4452
4452
  } & {
4453
4453
  bulkTransferState: {
4454
4454
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
4455
- bulkHomeTransactionID: string;
4455
+ bulkHomeTransactionID?: string;
4456
4456
  /** @description List of individual transfers in a bulk transfer with accept party information. */
4457
4457
  individualTransfers: ({
4458
4458
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
4459
- homeTransactionId: string;
4459
+ homeTransactionId?: string;
4460
4460
  /**
4461
4461
  * CorrelationId
4462
4462
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -4524,11 +4524,11 @@ export interface paths {
4524
4524
  } & ({
4525
4525
  bulkTransferState?: {
4526
4526
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
4527
- bulkHomeTransactionID: string;
4527
+ bulkHomeTransactionID?: string;
4528
4528
  /** @description List of individual transfers in a bulk transfer. */
4529
4529
  individualTransfers: ({
4530
4530
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
4531
- homeTransactionId: string;
4531
+ homeTransactionId?: string;
4532
4532
  /**
4533
4533
  * CorrelationId
4534
4534
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -4610,11 +4610,11 @@ export interface paths {
4610
4610
  content: {
4611
4611
  "application/json": {
4612
4612
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
4613
- bulkHomeTransactionID: string;
4613
+ bulkHomeTransactionID?: string;
4614
4614
  /** @description List of individual transfers in a bulk transfer with accept party information. */
4615
4615
  individualTransfers: ({
4616
4616
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
4617
- homeTransactionId: string;
4617
+ homeTransactionId?: string;
4618
4618
  /**
4619
4619
  * CorrelationId
4620
4620
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -4633,11 +4633,11 @@ export interface paths {
4633
4633
  })[];
4634
4634
  } | {
4635
4635
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
4636
- bulkHomeTransactionID: string;
4636
+ bulkHomeTransactionID?: string;
4637
4637
  /** @description List of individual transfers in a bulk transfer. */
4638
4638
  individualTransfers: ({
4639
4639
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
4640
- homeTransactionId: string;
4640
+ homeTransactionId?: string;
4641
4641
  /**
4642
4642
  * CorrelationId
4643
4643
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -14034,7 +14034,7 @@ export interface components {
14034
14034
  */
14035
14035
  bulkTransactionIndividualTransfer: {
14036
14036
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
14037
- homeTransactionId: string;
14037
+ homeTransactionId?: string;
14038
14038
  /**
14039
14039
  * Party
14040
14040
  * @description Data model for the complex type Party.
@@ -14256,7 +14256,7 @@ export interface components {
14256
14256
  };
14257
14257
  bulkTransactionRequest: {
14258
14258
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
14259
- bulkHomeTransactionID: string;
14259
+ bulkHomeTransactionID?: string;
14260
14260
  /**
14261
14261
  * CorrelationId
14262
14262
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -14410,7 +14410,7 @@ export interface components {
14410
14410
  /** @description List of individual transfers in a bulk transfer. */
14411
14411
  individualTransfers: {
14412
14412
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
14413
- homeTransactionId: string;
14413
+ homeTransactionId?: string;
14414
14414
  /**
14415
14415
  * Party
14416
14416
  * @description Data model for the complex type Party.
@@ -15003,7 +15003,7 @@ export interface components {
15003
15003
  /** @description Data model for the 'individualTransfer' while accepting party or quote. */
15004
15004
  bulkTransactionIndividualTransferAccept: {
15005
15005
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
15006
- homeTransactionId: string;
15006
+ homeTransactionId?: string;
15007
15007
  /**
15008
15008
  * CorrelationId
15009
15009
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -15020,11 +15020,11 @@ export interface components {
15020
15020
  /** @description The object sent back as confirmation of payee parties when autoAcceptParty is false. */
15021
15021
  bulkTransactionContinuationAcceptParty: {
15022
15022
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
15023
- bulkHomeTransactionID: string;
15023
+ bulkHomeTransactionID?: string;
15024
15024
  /** @description List of individual transfers in a bulk transfer with accept party information. */
15025
15025
  individualTransfers: ({
15026
15026
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
15027
- homeTransactionId: string;
15027
+ homeTransactionId?: string;
15028
15028
  /**
15029
15029
  * CorrelationId
15030
15030
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -15045,11 +15045,11 @@ export interface components {
15045
15045
  /** @description The object sent back as confirmation of quotes when autoAcceptQuotes is false. */
15046
15046
  bulkTransactionContinuationAcceptQuote: {
15047
15047
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
15048
- bulkHomeTransactionID: string;
15048
+ bulkHomeTransactionID?: string;
15049
15049
  /** @description List of individual transfers in a bulk transfer. */
15050
15050
  individualTransfers: ({
15051
15051
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
15052
- homeTransactionId: string;
15052
+ homeTransactionId?: string;
15053
15053
  /**
15054
15054
  * CorrelationId
15055
15055
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -15119,11 +15119,11 @@ export interface components {
15119
15119
  } & {
15120
15120
  bulkTransferState: {
15121
15121
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
15122
- bulkHomeTransactionID: string;
15122
+ bulkHomeTransactionID?: string;
15123
15123
  /** @description List of individual transfers in a bulk transfer with accept party information. */
15124
15124
  individualTransfers: ({
15125
15125
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
15126
- homeTransactionId: string;
15126
+ homeTransactionId?: string;
15127
15127
  /**
15128
15128
  * CorrelationId
15129
15129
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -15236,11 +15236,11 @@ export interface components {
15236
15236
  } & ({
15237
15237
  bulkTransferState?: {
15238
15238
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
15239
- bulkHomeTransactionID: string;
15239
+ bulkHomeTransactionID?: string;
15240
15240
  /** @description List of individual transfers in a bulk transfer. */
15241
15241
  individualTransfers: ({
15242
15242
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
15243
- homeTransactionId: string;
15243
+ homeTransactionId?: string;
15244
15244
  /**
15245
15245
  * CorrelationId
15246
15246
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -22348,11 +22348,11 @@ export interface components {
22348
22348
  } & {
22349
22349
  bulkTransferState: {
22350
22350
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
22351
- bulkHomeTransactionID: string;
22351
+ bulkHomeTransactionID?: string;
22352
22352
  /** @description List of individual transfers in a bulk transfer with accept party information. */
22353
22353
  individualTransfers: ({
22354
22354
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
22355
- homeTransactionId: string;
22355
+ homeTransactionId?: string;
22356
22356
  /**
22357
22357
  * CorrelationId
22358
22358
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
@@ -22420,11 +22420,11 @@ export interface components {
22420
22420
  } & ({
22421
22421
  bulkTransferState?: {
22422
22422
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
22423
- bulkHomeTransactionID: string;
22423
+ bulkHomeTransactionID?: string;
22424
22424
  /** @description List of individual transfers in a bulk transfer. */
22425
22425
  individualTransfers: ({
22426
22426
  /** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
22427
- homeTransactionId: string;
22427
+ homeTransactionId?: string;
22428
22428
  /**
22429
22429
  * CorrelationId
22430
22430
  * @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mojaloop/api-snippets",
3
- "version": "17.0.0-snapshot.0",
3
+ "version": "17.0.0-snapshot.1",
4
4
  "description": "Mojaloop API specification reusable snippets",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -3,7 +3,6 @@ description: >-
3
3
  false.
4
4
  type: object
5
5
  required:
6
- - bulkHomeTransactionID
7
6
  - individualTransfers
8
7
  properties:
9
8
  bulkHomeTransactionID:
@@ -1,7 +1,6 @@
1
1
  description: The object sent back as confirmation of quotes when autoAcceptQuotes is false.
2
2
  type: object
3
3
  required:
4
- - bulkHomeTransactionID
5
4
  - individualTransfers
6
5
  properties:
7
6
  bulkHomeTransactionID:
@@ -27,7 +27,6 @@ properties:
27
27
  lastError:
28
28
  $ref: ./transferError.yaml
29
29
  required:
30
- - homeTransactionId
31
30
  - to
32
31
  - amountType
33
32
  - currency
@@ -11,5 +11,4 @@ properties:
11
11
  transferId:
12
12
  $ref: ./CorrelationId.yaml
13
13
  required:
14
- - homeTransactionId
15
14
  - transferId
@@ -1,6 +1,6 @@
1
1
  type: object
2
2
  required:
3
- - homeTransactionId
3
+ - transferId
4
4
  - to
5
5
  - amountType
6
6
  - currency
@@ -1,7 +1,6 @@
1
1
  type: object
2
2
  required:
3
3
  - bulkTransactionId
4
- - bulkHomeTransactionID
5
4
  - options
6
5
  - from
7
6
  - individualTransfers
@@ -1,7 +1,6 @@
1
1
  title: BulkTransactionResponse
2
2
  type: object
3
3
  required:
4
- - bulkHomeTransactionID
5
4
  - bulkTransactionId
6
5
  - currentState
7
6
  - individualTransferResults