increase 0.25.0 → 0.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +1 -1
  3. package/resources/declined-transactions.d.ts +2 -70
  4. package/resources/declined-transactions.d.ts.map +1 -1
  5. package/resources/declined-transactions.js.map +1 -1
  6. package/resources/declined-transactions.mjs.map +1 -1
  7. package/resources/inbound-wire-transfers.d.ts +0 -4
  8. package/resources/inbound-wire-transfers.d.ts.map +1 -1
  9. package/resources/inbound-wire-transfers.js.map +1 -1
  10. package/resources/inbound-wire-transfers.mjs.map +1 -1
  11. package/resources/simulations/ach-transfers.d.ts +8 -85
  12. package/resources/simulations/ach-transfers.d.ts.map +1 -1
  13. package/resources/simulations/ach-transfers.js.map +1 -1
  14. package/resources/simulations/ach-transfers.mjs.map +1 -1
  15. package/resources/simulations/cards.d.ts +2 -70
  16. package/resources/simulations/cards.d.ts.map +1 -1
  17. package/resources/simulations/cards.js.map +1 -1
  18. package/resources/simulations/cards.mjs.map +1 -1
  19. package/resources/simulations/interest-payments.d.ts +6 -15
  20. package/resources/simulations/interest-payments.d.ts.map +1 -1
  21. package/resources/simulations/interest-payments.js.map +1 -1
  22. package/resources/simulations/interest-payments.mjs.map +1 -1
  23. package/resources/simulations/real-time-payments-transfers.d.ts +8 -85
  24. package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
  25. package/resources/simulations/real-time-payments-transfers.js.map +1 -1
  26. package/resources/simulations/real-time-payments-transfers.mjs.map +1 -1
  27. package/resources/simulations/wire-transfers.d.ts +6 -15
  28. package/resources/simulations/wire-transfers.d.ts.map +1 -1
  29. package/resources/simulations/wire-transfers.js.map +1 -1
  30. package/resources/simulations/wire-transfers.mjs.map +1 -1
  31. package/resources/transactions.d.ts +6 -15
  32. package/resources/transactions.d.ts.map +1 -1
  33. package/resources/transactions.js.map +1 -1
  34. package/resources/transactions.mjs.map +1 -1
  35. package/src/resources/declined-transactions.ts +2 -86
  36. package/src/resources/inbound-wire-transfers.ts +0 -5
  37. package/src/resources/simulations/ach-transfers.ts +8 -103
  38. package/src/resources/simulations/cards.ts +2 -86
  39. package/src/resources/simulations/interest-payments.ts +6 -17
  40. package/src/resources/simulations/real-time-payments-transfers.ts +8 -103
  41. package/src/resources/simulations/wire-transfers.ts +6 -17
  42. package/src/resources/transactions.ts +6 -17
  43. package/src/version.ts +1 -1
  44. package/version.d.ts +1 -1
  45. package/version.js +1 -1
  46. package/version.mjs +1 -1
@@ -1142,93 +1142,9 @@ export namespace ACHTransferSimulation {
1142
1142
  */
1143
1143
  export interface WireDecline {
1144
1144
  /**
1145
- * The declined amount in the minor unit of the destination account currency. For
1146
- * dollars, for example, this is cents.
1147
- */
1148
- amount: number;
1149
-
1150
- /**
1151
- * A free-form address field set by the sender.
1152
- */
1153
- beneficiary_address_line1: string | null;
1154
-
1155
- /**
1156
- * A free-form address field set by the sender.
1145
+ * The identifier of the Inbound Wire Transfer that was declined.
1157
1146
  */
1158
- beneficiary_address_line2: string | null;
1159
-
1160
- /**
1161
- * A free-form address field set by the sender.
1162
- */
1163
- beneficiary_address_line3: string | null;
1164
-
1165
- /**
1166
- * A name set by the sender.
1167
- */
1168
- beneficiary_name: string | null;
1169
-
1170
- /**
1171
- * A free-form reference string set by the sender, to help identify the transfer.
1172
- */
1173
- beneficiary_reference: string | null;
1174
-
1175
- /**
1176
- * An Increase-constructed description of the declined transaction.
1177
- */
1178
- description: string;
1179
-
1180
- /**
1181
- * A unique identifier available to the originating and receiving banks, commonly
1182
- * abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
1183
- * service and is helpful when debugging wires with the originating bank.
1184
- */
1185
- input_message_accountability_data: string | null;
1186
-
1187
- /**
1188
- * The address of the wire originator, set by the sending bank.
1189
- */
1190
- originator_address_line1: string | null;
1191
-
1192
- /**
1193
- * The address of the wire originator, set by the sending bank.
1194
- */
1195
- originator_address_line2: string | null;
1196
-
1197
- /**
1198
- * The address of the wire originator, set by the sending bank.
1199
- */
1200
- originator_address_line3: string | null;
1201
-
1202
- /**
1203
- * The originator of the wire, set by the sending bank.
1204
- */
1205
- originator_name: string | null;
1206
-
1207
- /**
1208
- * The American Banking Association (ABA) routing number of the bank originating
1209
- * the transfer.
1210
- */
1211
- originator_routing_number: string | null;
1212
-
1213
- /**
1214
- * A free-form message set by the wire originator.
1215
- */
1216
- originator_to_beneficiary_information_line1: string | null;
1217
-
1218
- /**
1219
- * A free-form message set by the wire originator.
1220
- */
1221
- originator_to_beneficiary_information_line2: string | null;
1222
-
1223
- /**
1224
- * A free-form message set by the wire originator.
1225
- */
1226
- originator_to_beneficiary_information_line3: string | null;
1227
-
1228
- /**
1229
- * A free-form message set by the wire originator.
1230
- */
1231
- originator_to_beneficiary_information_line4: string | null;
1147
+ inbound_wire_transfer_id: string;
1232
1148
 
1233
1149
  /**
1234
1150
  * Why the wire transfer was declined.
@@ -1435,8 +1351,8 @@ export namespace ACHTransferSimulation {
1435
1351
  * be under the `inbound_wire_drawdown_payment` object.
1436
1352
  * - `inbound_wire_reversal` - Inbound Wire Reversal: details will be under the
1437
1353
  * `inbound_wire_reversal` object.
1438
- * - `inbound_wire_transfer` - Inbound Wire Transfer: details will be under the
1439
- * `inbound_wire_transfer` object.
1354
+ * - `inbound_wire_transfer` - Inbound Wire Transfer Intention: details will be
1355
+ * under the `inbound_wire_transfer` object.
1440
1356
  * - `interest_payment` - Interest Payment: details will be under the
1441
1357
  * `interest_payment` object.
1442
1358
  * - `internal_source` - Internal Source: details will be under the
@@ -1567,8 +1483,8 @@ export namespace ACHTransferSimulation {
1567
1483
  inbound_wire_reversal: Source.InboundWireReversal | null;
1568
1484
 
1569
1485
  /**
1570
- * An Inbound Wire Transfer object. This field will be present in the JSON response
1571
- * if and only if `category` is equal to `inbound_wire_transfer`.
1486
+ * An Inbound Wire Transfer Intention object. This field will be present in the
1487
+ * JSON response if and only if `category` is equal to `inbound_wire_transfer`.
1572
1488
  */
1573
1489
  inbound_wire_transfer: Source.InboundWireTransfer | null;
1574
1490
 
@@ -4394,15 +4310,10 @@ export namespace ACHTransferSimulation {
4394
4310
  }
4395
4311
 
4396
4312
  /**
4397
- * An Inbound Wire Transfer object. This field will be present in the JSON response
4398
- * if and only if `category` is equal to `inbound_wire_transfer`.
4313
+ * An Inbound Wire Transfer Intention object. This field will be present in the
4314
+ * JSON response if and only if `category` is equal to `inbound_wire_transfer`.
4399
4315
  */
4400
4316
  export interface InboundWireTransfer {
4401
- /**
4402
- * The inbound wire transfer's identifier.
4403
- */
4404
- id: string;
4405
-
4406
4317
  /**
4407
4318
  * The amount in USD cents.
4408
4319
  */
@@ -4500,12 +4411,6 @@ export namespace ACHTransferSimulation {
4500
4411
  * The ID of the Inbound Wire Transfer object that resulted in this Transaction.
4501
4412
  */
4502
4413
  transfer_id: string;
4503
-
4504
- /**
4505
- * A constant representing the object's type. For this resource it will always be
4506
- * `inbound_wire_transfer`.
4507
- */
4508
- type: 'inbound_wire_transfer';
4509
4414
  }
4510
4415
 
4511
4416
  /**
@@ -1123,93 +1123,9 @@ export namespace CardAuthorizationSimulation {
1123
1123
  */
1124
1124
  export interface WireDecline {
1125
1125
  /**
1126
- * The declined amount in the minor unit of the destination account currency. For
1127
- * dollars, for example, this is cents.
1128
- */
1129
- amount: number;
1130
-
1131
- /**
1132
- * A free-form address field set by the sender.
1133
- */
1134
- beneficiary_address_line1: string | null;
1135
-
1136
- /**
1137
- * A free-form address field set by the sender.
1138
- */
1139
- beneficiary_address_line2: string | null;
1140
-
1141
- /**
1142
- * A free-form address field set by the sender.
1143
- */
1144
- beneficiary_address_line3: string | null;
1145
-
1146
- /**
1147
- * A name set by the sender.
1148
- */
1149
- beneficiary_name: string | null;
1150
-
1151
- /**
1152
- * A free-form reference string set by the sender, to help identify the transfer.
1153
- */
1154
- beneficiary_reference: string | null;
1155
-
1156
- /**
1157
- * An Increase-constructed description of the declined transaction.
1158
- */
1159
- description: string;
1160
-
1161
- /**
1162
- * A unique identifier available to the originating and receiving banks, commonly
1163
- * abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
1164
- * service and is helpful when debugging wires with the originating bank.
1165
- */
1166
- input_message_accountability_data: string | null;
1167
-
1168
- /**
1169
- * The address of the wire originator, set by the sending bank.
1170
- */
1171
- originator_address_line1: string | null;
1172
-
1173
- /**
1174
- * The address of the wire originator, set by the sending bank.
1175
- */
1176
- originator_address_line2: string | null;
1177
-
1178
- /**
1179
- * The address of the wire originator, set by the sending bank.
1180
- */
1181
- originator_address_line3: string | null;
1182
-
1183
- /**
1184
- * The originator of the wire, set by the sending bank.
1185
- */
1186
- originator_name: string | null;
1187
-
1188
- /**
1189
- * The American Banking Association (ABA) routing number of the bank originating
1190
- * the transfer.
1191
- */
1192
- originator_routing_number: string | null;
1193
-
1194
- /**
1195
- * A free-form message set by the wire originator.
1196
- */
1197
- originator_to_beneficiary_information_line1: string | null;
1198
-
1199
- /**
1200
- * A free-form message set by the wire originator.
1201
- */
1202
- originator_to_beneficiary_information_line2: string | null;
1203
-
1204
- /**
1205
- * A free-form message set by the wire originator.
1206
- */
1207
- originator_to_beneficiary_information_line3: string | null;
1208
-
1209
- /**
1210
- * A free-form message set by the wire originator.
1126
+ * The identifier of the Inbound Wire Transfer that was declined.
1211
1127
  */
1212
- originator_to_beneficiary_information_line4: string | null;
1128
+ inbound_wire_transfer_id: string;
1213
1129
 
1214
1130
  /**
1215
1131
  * Why the wire transfer was declined.
@@ -217,8 +217,8 @@ export namespace InterestPaymentSimulationResult {
217
217
  * be under the `inbound_wire_drawdown_payment` object.
218
218
  * - `inbound_wire_reversal` - Inbound Wire Reversal: details will be under the
219
219
  * `inbound_wire_reversal` object.
220
- * - `inbound_wire_transfer` - Inbound Wire Transfer: details will be under the
221
- * `inbound_wire_transfer` object.
220
+ * - `inbound_wire_transfer` - Inbound Wire Transfer Intention: details will be
221
+ * under the `inbound_wire_transfer` object.
222
222
  * - `interest_payment` - Interest Payment: details will be under the
223
223
  * `interest_payment` object.
224
224
  * - `internal_source` - Internal Source: details will be under the
@@ -349,8 +349,8 @@ export namespace InterestPaymentSimulationResult {
349
349
  inbound_wire_reversal: Source.InboundWireReversal | null;
350
350
 
351
351
  /**
352
- * An Inbound Wire Transfer object. This field will be present in the JSON response
353
- * if and only if `category` is equal to `inbound_wire_transfer`.
352
+ * An Inbound Wire Transfer Intention object. This field will be present in the
353
+ * JSON response if and only if `category` is equal to `inbound_wire_transfer`.
354
354
  */
355
355
  inbound_wire_transfer: Source.InboundWireTransfer | null;
356
356
 
@@ -3176,15 +3176,10 @@ export namespace InterestPaymentSimulationResult {
3176
3176
  }
3177
3177
 
3178
3178
  /**
3179
- * An Inbound Wire Transfer object. This field will be present in the JSON response
3180
- * if and only if `category` is equal to `inbound_wire_transfer`.
3179
+ * An Inbound Wire Transfer Intention object. This field will be present in the
3180
+ * JSON response if and only if `category` is equal to `inbound_wire_transfer`.
3181
3181
  */
3182
3182
  export interface InboundWireTransfer {
3183
- /**
3184
- * The inbound wire transfer's identifier.
3185
- */
3186
- id: string;
3187
-
3188
3183
  /**
3189
3184
  * The amount in USD cents.
3190
3185
  */
@@ -3282,12 +3277,6 @@ export namespace InterestPaymentSimulationResult {
3282
3277
  * The ID of the Inbound Wire Transfer object that resulted in this Transaction.
3283
3278
  */
3284
3279
  transfer_id: string;
3285
-
3286
- /**
3287
- * A constant representing the object's type. For this resource it will always be
3288
- * `inbound_wire_transfer`.
3289
- */
3290
- type: 'inbound_wire_transfer';
3291
3280
  }
3292
3281
 
3293
3282
  /**
@@ -1122,93 +1122,9 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
1122
1122
  */
1123
1123
  export interface WireDecline {
1124
1124
  /**
1125
- * The declined amount in the minor unit of the destination account currency. For
1126
- * dollars, for example, this is cents.
1127
- */
1128
- amount: number;
1129
-
1130
- /**
1131
- * A free-form address field set by the sender.
1132
- */
1133
- beneficiary_address_line1: string | null;
1134
-
1135
- /**
1136
- * A free-form address field set by the sender.
1125
+ * The identifier of the Inbound Wire Transfer that was declined.
1137
1126
  */
1138
- beneficiary_address_line2: string | null;
1139
-
1140
- /**
1141
- * A free-form address field set by the sender.
1142
- */
1143
- beneficiary_address_line3: string | null;
1144
-
1145
- /**
1146
- * A name set by the sender.
1147
- */
1148
- beneficiary_name: string | null;
1149
-
1150
- /**
1151
- * A free-form reference string set by the sender, to help identify the transfer.
1152
- */
1153
- beneficiary_reference: string | null;
1154
-
1155
- /**
1156
- * An Increase-constructed description of the declined transaction.
1157
- */
1158
- description: string;
1159
-
1160
- /**
1161
- * A unique identifier available to the originating and receiving banks, commonly
1162
- * abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
1163
- * service and is helpful when debugging wires with the originating bank.
1164
- */
1165
- input_message_accountability_data: string | null;
1166
-
1167
- /**
1168
- * The address of the wire originator, set by the sending bank.
1169
- */
1170
- originator_address_line1: string | null;
1171
-
1172
- /**
1173
- * The address of the wire originator, set by the sending bank.
1174
- */
1175
- originator_address_line2: string | null;
1176
-
1177
- /**
1178
- * The address of the wire originator, set by the sending bank.
1179
- */
1180
- originator_address_line3: string | null;
1181
-
1182
- /**
1183
- * The originator of the wire, set by the sending bank.
1184
- */
1185
- originator_name: string | null;
1186
-
1187
- /**
1188
- * The American Banking Association (ABA) routing number of the bank originating
1189
- * the transfer.
1190
- */
1191
- originator_routing_number: string | null;
1192
-
1193
- /**
1194
- * A free-form message set by the wire originator.
1195
- */
1196
- originator_to_beneficiary_information_line1: string | null;
1197
-
1198
- /**
1199
- * A free-form message set by the wire originator.
1200
- */
1201
- originator_to_beneficiary_information_line2: string | null;
1202
-
1203
- /**
1204
- * A free-form message set by the wire originator.
1205
- */
1206
- originator_to_beneficiary_information_line3: string | null;
1207
-
1208
- /**
1209
- * A free-form message set by the wire originator.
1210
- */
1211
- originator_to_beneficiary_information_line4: string | null;
1127
+ inbound_wire_transfer_id: string;
1212
1128
 
1213
1129
  /**
1214
1130
  * Why the wire transfer was declined.
@@ -1415,8 +1331,8 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
1415
1331
  * be under the `inbound_wire_drawdown_payment` object.
1416
1332
  * - `inbound_wire_reversal` - Inbound Wire Reversal: details will be under the
1417
1333
  * `inbound_wire_reversal` object.
1418
- * - `inbound_wire_transfer` - Inbound Wire Transfer: details will be under the
1419
- * `inbound_wire_transfer` object.
1334
+ * - `inbound_wire_transfer` - Inbound Wire Transfer Intention: details will be
1335
+ * under the `inbound_wire_transfer` object.
1420
1336
  * - `interest_payment` - Interest Payment: details will be under the
1421
1337
  * `interest_payment` object.
1422
1338
  * - `internal_source` - Internal Source: details will be under the
@@ -1547,8 +1463,8 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
1547
1463
  inbound_wire_reversal: Source.InboundWireReversal | null;
1548
1464
 
1549
1465
  /**
1550
- * An Inbound Wire Transfer object. This field will be present in the JSON response
1551
- * if and only if `category` is equal to `inbound_wire_transfer`.
1466
+ * An Inbound Wire Transfer Intention object. This field will be present in the
1467
+ * JSON response if and only if `category` is equal to `inbound_wire_transfer`.
1552
1468
  */
1553
1469
  inbound_wire_transfer: Source.InboundWireTransfer | null;
1554
1470
 
@@ -4374,15 +4290,10 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
4374
4290
  }
4375
4291
 
4376
4292
  /**
4377
- * An Inbound Wire Transfer object. This field will be present in the JSON response
4378
- * if and only if `category` is equal to `inbound_wire_transfer`.
4293
+ * An Inbound Wire Transfer Intention object. This field will be present in the
4294
+ * JSON response if and only if `category` is equal to `inbound_wire_transfer`.
4379
4295
  */
4380
4296
  export interface InboundWireTransfer {
4381
- /**
4382
- * The inbound wire transfer's identifier.
4383
- */
4384
- id: string;
4385
-
4386
4297
  /**
4387
4298
  * The amount in USD cents.
4388
4299
  */
@@ -4480,12 +4391,6 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
4480
4391
  * The ID of the Inbound Wire Transfer object that resulted in this Transaction.
4481
4392
  */
4482
4393
  transfer_id: string;
4483
-
4484
- /**
4485
- * A constant representing the object's type. For this resource it will always be
4486
- * `inbound_wire_transfer`.
4487
- */
4488
- type: 'inbound_wire_transfer';
4489
4394
  }
4490
4395
 
4491
4396
  /**
@@ -218,8 +218,8 @@ export namespace WireTransferSimulation {
218
218
  * be under the `inbound_wire_drawdown_payment` object.
219
219
  * - `inbound_wire_reversal` - Inbound Wire Reversal: details will be under the
220
220
  * `inbound_wire_reversal` object.
221
- * - `inbound_wire_transfer` - Inbound Wire Transfer: details will be under the
222
- * `inbound_wire_transfer` object.
221
+ * - `inbound_wire_transfer` - Inbound Wire Transfer Intention: details will be
222
+ * under the `inbound_wire_transfer` object.
223
223
  * - `interest_payment` - Interest Payment: details will be under the
224
224
  * `interest_payment` object.
225
225
  * - `internal_source` - Internal Source: details will be under the
@@ -350,8 +350,8 @@ export namespace WireTransferSimulation {
350
350
  inbound_wire_reversal: Source.InboundWireReversal | null;
351
351
 
352
352
  /**
353
- * An Inbound Wire Transfer object. This field will be present in the JSON response
354
- * if and only if `category` is equal to `inbound_wire_transfer`.
353
+ * An Inbound Wire Transfer Intention object. This field will be present in the
354
+ * JSON response if and only if `category` is equal to `inbound_wire_transfer`.
355
355
  */
356
356
  inbound_wire_transfer: Source.InboundWireTransfer | null;
357
357
 
@@ -3177,15 +3177,10 @@ export namespace WireTransferSimulation {
3177
3177
  }
3178
3178
 
3179
3179
  /**
3180
- * An Inbound Wire Transfer object. This field will be present in the JSON response
3181
- * if and only if `category` is equal to `inbound_wire_transfer`.
3180
+ * An Inbound Wire Transfer Intention object. This field will be present in the
3181
+ * JSON response if and only if `category` is equal to `inbound_wire_transfer`.
3182
3182
  */
3183
3183
  export interface InboundWireTransfer {
3184
- /**
3185
- * The inbound wire transfer's identifier.
3186
- */
3187
- id: string;
3188
-
3189
3184
  /**
3190
3185
  * The amount in USD cents.
3191
3186
  */
@@ -3283,12 +3278,6 @@ export namespace WireTransferSimulation {
3283
3278
  * The ID of the Inbound Wire Transfer object that resulted in this Transaction.
3284
3279
  */
3285
3280
  transfer_id: string;
3286
-
3287
- /**
3288
- * A constant representing the object's type. For this resource it will always be
3289
- * `inbound_wire_transfer`.
3290
- */
3291
- type: 'inbound_wire_transfer';
3292
3281
  }
3293
3282
 
3294
3283
  /**
@@ -217,8 +217,8 @@ export namespace Transaction {
217
217
  * be under the `inbound_wire_drawdown_payment` object.
218
218
  * - `inbound_wire_reversal` - Inbound Wire Reversal: details will be under the
219
219
  * `inbound_wire_reversal` object.
220
- * - `inbound_wire_transfer` - Inbound Wire Transfer: details will be under the
221
- * `inbound_wire_transfer` object.
220
+ * - `inbound_wire_transfer` - Inbound Wire Transfer Intention: details will be
221
+ * under the `inbound_wire_transfer` object.
222
222
  * - `interest_payment` - Interest Payment: details will be under the
223
223
  * `interest_payment` object.
224
224
  * - `internal_source` - Internal Source: details will be under the
@@ -349,8 +349,8 @@ export namespace Transaction {
349
349
  inbound_wire_reversal: Source.InboundWireReversal | null;
350
350
 
351
351
  /**
352
- * An Inbound Wire Transfer object. This field will be present in the JSON response
353
- * if and only if `category` is equal to `inbound_wire_transfer`.
352
+ * An Inbound Wire Transfer Intention object. This field will be present in the
353
+ * JSON response if and only if `category` is equal to `inbound_wire_transfer`.
354
354
  */
355
355
  inbound_wire_transfer: Source.InboundWireTransfer | null;
356
356
 
@@ -3176,15 +3176,10 @@ export namespace Transaction {
3176
3176
  }
3177
3177
 
3178
3178
  /**
3179
- * An Inbound Wire Transfer object. This field will be present in the JSON response
3180
- * if and only if `category` is equal to `inbound_wire_transfer`.
3179
+ * An Inbound Wire Transfer Intention object. This field will be present in the
3180
+ * JSON response if and only if `category` is equal to `inbound_wire_transfer`.
3181
3181
  */
3182
3182
  export interface InboundWireTransfer {
3183
- /**
3184
- * The inbound wire transfer's identifier.
3185
- */
3186
- id: string;
3187
-
3188
3183
  /**
3189
3184
  * The amount in USD cents.
3190
3185
  */
@@ -3282,12 +3277,6 @@ export namespace Transaction {
3282
3277
  * The ID of the Inbound Wire Transfer object that resulted in this Transaction.
3283
3278
  */
3284
3279
  transfer_id: string;
3285
-
3286
- /**
3287
- * A constant representing the object's type. For this resource it will always be
3288
- * `inbound_wire_transfer`.
3289
- */
3290
- type: 'inbound_wire_transfer';
3291
3280
  }
3292
3281
 
3293
3282
  /**
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.25.0'; // x-release-please-version
1
+ export const VERSION = '0.26.0'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.25.0";
1
+ export declare const VERSION = "0.26.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.25.0'; // x-release-please-version
4
+ exports.VERSION = '0.26.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.25.0'; // x-release-please-version
1
+ export const VERSION = '0.26.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map