increase 0.276.0 → 0.277.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.277.0 (2025-08-25)
4
+
5
+ Full Changelog: [v0.276.0...v0.277.0](https://github.com/Increase/increase-node/compare/v0.276.0...v0.277.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([8289add](https://github.com/Increase/increase-node/commit/8289add0292bc347ce60f448fbd9aed3327a10bb))
10
+
3
11
  ## 0.276.0 (2025-08-25)
4
12
 
5
13
  Full Changelog: [v0.275.0...v0.276.0](https://github.com/Increase/increase-node/compare/v0.275.0...v0.276.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "increase",
3
- "version": "0.276.0",
3
+ "version": "0.277.0",
4
4
  "description": "The official TypeScript library for the Increase API",
5
5
  "author": "Increase <dev-feedback@increase.com>",
6
6
  "types": "./index.d.ts",
@@ -45,87 +45,70 @@ export interface InboundWireDrawdownRequest {
45
45
  */
46
46
  amount: number;
47
47
  /**
48
- * The drawdown request's beneficiary's account number.
48
+ * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
49
+ * the inbound wire drawdown requested was created.
49
50
  */
50
- beneficiary_account_number: string;
51
+ created_at: string;
51
52
  /**
52
- * Line 1 of the drawdown request's beneficiary's address.
53
+ * The creditor's account number.
53
54
  */
54
- beneficiary_address_line1: string | null;
55
+ creditor_account_number: string;
55
56
  /**
56
- * Line 2 of the drawdown request's beneficiary's address.
57
+ * A free-form address field set by the sender.
57
58
  */
58
- beneficiary_address_line2: string | null;
59
+ creditor_address_line1: string | null;
59
60
  /**
60
- * Line 3 of the drawdown request's beneficiary's address.
61
+ * A free-form address field set by the sender.
61
62
  */
62
- beneficiary_address_line3: string | null;
63
+ creditor_address_line2: string | null;
63
64
  /**
64
- * The drawdown request's beneficiary's name.
65
+ * A free-form address field set by the sender.
65
66
  */
66
- beneficiary_name: string | null;
67
+ creditor_address_line3: string | null;
67
68
  /**
68
- * The drawdown request's beneficiary's routing number.
69
+ * A name set by the sender.
69
70
  */
70
- beneficiary_routing_number: string;
71
+ creditor_name: string | null;
71
72
  /**
72
- * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
73
- * the inbound wire drawdown requested was created.
73
+ * The creditor's routing number.
74
74
  */
75
- created_at: string;
75
+ creditor_routing_number: string;
76
76
  /**
77
77
  * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
78
78
  * requested. Will always be "USD".
79
79
  */
80
80
  currency: string;
81
81
  /**
82
- * A message from the drawdown request's originator.
83
- */
84
- message_to_recipient: string | null;
85
- /**
86
- * The drawdown request's originator's account number.
87
- */
88
- originator_account_number: string | null;
89
- /**
90
- * Line 1 of the drawdown request's originator's address.
91
- */
92
- originator_address_line1: string | null;
93
- /**
94
- * Line 2 of the drawdown request's originator's address.
95
- */
96
- originator_address_line2: string | null;
97
- /**
98
- * Line 3 of the drawdown request's originator's address.
82
+ * A free-form address field set by the sender.
99
83
  */
100
- originator_address_line3: string | null;
84
+ debtor_address_line1: string | null;
101
85
  /**
102
- * The drawdown request's originator's name.
86
+ * A free-form address field set by the sender.
103
87
  */
104
- originator_name: string | null;
88
+ debtor_address_line2: string | null;
105
89
  /**
106
- * The drawdown request's originator's routing number.
90
+ * A free-form address field set by the sender.
107
91
  */
108
- originator_routing_number: string;
92
+ debtor_address_line3: string | null;
109
93
  /**
110
- * Line 1 of the information conveyed from the originator of the message to the
111
- * beneficiary.
94
+ * A name set by the sender.
112
95
  */
113
- originator_to_beneficiary_information_line1: string | null;
96
+ debtor_name: string | null;
114
97
  /**
115
- * Line 2 of the information conveyed from the originator of the message to the
116
- * beneficiary.
98
+ * A free-form reference string set by the sender, to help identify the drawdown
99
+ * request.
117
100
  */
118
- originator_to_beneficiary_information_line2: string | null;
101
+ end_to_end_identification: string | null;
119
102
  /**
120
- * Line 3 of the information conveyed from the originator of the message to the
121
- * beneficiary.
103
+ * A unique identifier available to the originating and receiving banks, commonly
104
+ * abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
105
+ * service and is helpful when debugging wires with the originating bank.
122
106
  */
123
- originator_to_beneficiary_information_line3: string | null;
107
+ input_message_accountability_data: string | null;
124
108
  /**
125
- * Line 4 of the information conveyed from the originator of the message to the
126
- * beneficiary.
109
+ * The sending bank's identifier for the drawdown request.
127
110
  */
128
- originator_to_beneficiary_information_line4: string | null;
111
+ instruction_identification: string | null;
129
112
  /**
130
113
  * The Account Number from which the recipient of this request is being requested
131
114
  * to send funds.
@@ -136,6 +119,16 @@ export interface InboundWireDrawdownRequest {
136
119
  * `inbound_wire_drawdown_request`.
137
120
  */
138
121
  type: 'inbound_wire_drawdown_request';
122
+ /**
123
+ * The Unique End-to-end Transaction Reference
124
+ * ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
125
+ * of the drawdown request.
126
+ */
127
+ unique_end_to_end_transaction_reference: string | null;
128
+ /**
129
+ * A free-form message set by the sender.
130
+ */
131
+ unstructured_remittance_information: string | null;
139
132
  }
140
133
  export interface InboundWireDrawdownRequestListParams extends PageParams {
141
134
  }
@@ -1 +1 @@
1
- {"version":3,"file":"inbound-wire-drawdown-requests.d.ts","sourceRoot":"","sources":["../src/resources/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE1C,OAAO,KAAK,IAAI,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,IAAI,EAAE,KAAK,UAAU,EAAE,MAAM,eAAe,CAAC;AAEtD,qBAAa,2BAA4B,SAAQ,WAAW;IAC1D;;;;;;;;;;OAUG;IACH,QAAQ,CACN,4BAA4B,EAAE,MAAM,EACpC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,0BAA0B,CAAC;IAI9C;;;;;;;;;;OAUG;IACH,IAAI,CACF,KAAK,CAAC,EAAE,oCAAoC,EAC5C,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,WAAW,CAAC,+BAA+B,EAAE,0BAA0B,CAAC;IAChF,IAAI,CACF,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,WAAW,CAAC,+BAA+B,EAAE,0BAA0B,CAAC;CAajF;AAED,qBAAa,+BAAgC,SAAQ,IAAI,CAAC,0BAA0B,CAAC;CAAG;AAExF;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACzC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,0BAA0B,EAAE,MAAM,CAAC;IAEnC;;OAEG;IACH,yBAAyB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEzC;;OAEG;IACH,yBAAyB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEzC;;OAEG;IACH,yBAAyB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEzC;;OAEG;IACH,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEhC;;OAEG;IACH,0BAA0B,EAAE,MAAM,CAAC;IAEnC;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEpC;;OAEG;IACH,yBAAyB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEzC;;OAEG;IACH,wBAAwB,EAAE,MAAM,GAAG,IAAI,CAAC;IAExC;;OAEG;IACH,wBAAwB,EAAE,MAAM,GAAG,IAAI,CAAC;IAExC;;OAEG;IACH,wBAAwB,EAAE,MAAM,GAAG,IAAI,CAAC;IAExC;;OAEG;IACH,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAE/B;;OAEG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAElC;;;OAGG;IACH,2CAA2C,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3D;;;OAGG;IACH,2CAA2C,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3D;;;OAGG;IACH,2CAA2C,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3D;;;OAGG;IACH,2CAA2C,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3D;;;OAGG;IACH,2BAA2B,EAAE,MAAM,CAAC;IAEpC;;;OAGG;IACH,IAAI,EAAE,+BAA+B,CAAC;CACvC;AAED,MAAM,WAAW,oCAAqC,SAAQ,UAAU;CAAG;AAI3E,MAAM,CAAC,OAAO,WAAW,2BAA2B,CAAC;IACnD,OAAO,EACL,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,+BAA+B,IAAI,+BAA+B,EAClE,KAAK,oCAAoC,IAAI,oCAAoC,GAClF,CAAC;CACH"}
1
+ {"version":3,"file":"inbound-wire-drawdown-requests.d.ts","sourceRoot":"","sources":["../src/resources/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE1C,OAAO,KAAK,IAAI,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,IAAI,EAAE,KAAK,UAAU,EAAE,MAAM,eAAe,CAAC;AAEtD,qBAAa,2BAA4B,SAAQ,WAAW;IAC1D;;;;;;;;;;OAUG;IACH,QAAQ,CACN,4BAA4B,EAAE,MAAM,EACpC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,0BAA0B,CAAC;IAI9C;;;;;;;;;;OAUG;IACH,IAAI,CACF,KAAK,CAAC,EAAE,oCAAoC,EAC5C,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,WAAW,CAAC,+BAA+B,EAAE,0BAA0B,CAAC;IAChF,IAAI,CACF,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,WAAW,CAAC,+BAA+B,EAAE,0BAA0B,CAAC;CAajF;AAED,qBAAa,+BAAgC,SAAQ,IAAI,CAAC,0BAA0B,CAAC;CAAG;AAExF;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACzC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACH,sBAAsB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEtC;;OAEG;IACH,sBAAsB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEtC;;OAEG;IACH,sBAAsB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEtC;;OAEG;IACH,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAE7B;;OAEG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAEhC;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEpC;;OAEG;IACH,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEpC;;OAEG;IACH,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEpC;;OAEG;IACH,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3B;;;OAGG;IACH,yBAAyB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEzC;;;;OAIG;IACH,iCAAiC,EAAE,MAAM,GAAG,IAAI,CAAC;IAEjD;;OAEG;IACH,0BAA0B,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1C;;;OAGG;IACH,2BAA2B,EAAE,MAAM,CAAC;IAEpC;;;OAGG;IACH,IAAI,EAAE,+BAA+B,CAAC;IAEtC;;;;OAIG;IACH,uCAAuC,EAAE,MAAM,GAAG,IAAI,CAAC;IAEvD;;OAEG;IACH,mCAAmC,EAAE,MAAM,GAAG,IAAI,CAAC;CACpD;AAED,MAAM,WAAW,oCAAqC,SAAQ,UAAU;CAAG;AAI3E,MAAM,CAAC,OAAO,WAAW,2BAA2B,CAAC;IACnD,OAAO,EACL,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,+BAA+B,IAAI,+BAA+B,EAClE,KAAK,oCAAoC,IAAI,oCAAoC,GAClF,CAAC;CACH"}
@@ -1 +1 @@
1
- {"version":3,"file":"inbound-wire-drawdown-requests.js","sourceRoot":"","sources":["../src/resources/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,6CAA0C;AAC1C,qCAA2C;AAE3C,iDAAsD;AAEtD,MAAa,2BAA4B,SAAQ,sBAAW;IAC1D;;;;;;;;;;OAUG;IACH,QAAQ,CACN,4BAAoC,EACpC,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,mCAAmC,4BAA4B,EAAE,EAAE,OAAO,CAAC,CAAC;IACtG,CAAC;IAoBD,IAAI,CACF,QAAoE,EAAE,EACtE,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,iCAAiC,EAAE,+BAA+B,EAAE;YACjG,KAAK;YACL,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;CACF;AAjDD,kEAiDC;AAED,MAAa,+BAAgC,SAAQ,iBAAgC;CAAG;AAAxF,0EAAwF;AAsIxF,2BAA2B,CAAC,+BAA+B,GAAG,+BAA+B,CAAC"}
1
+ {"version":3,"file":"inbound-wire-drawdown-requests.js","sourceRoot":"","sources":["../src/resources/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,6CAA0C;AAC1C,qCAA2C;AAE3C,iDAAsD;AAEtD,MAAa,2BAA4B,SAAQ,sBAAW;IAC1D;;;;;;;;;;OAUG;IACH,QAAQ,CACN,4BAAoC,EACpC,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,mCAAmC,4BAA4B,EAAE,EAAE,OAAO,CAAC,CAAC;IACtG,CAAC;IAoBD,IAAI,CACF,QAAoE,EAAE,EACtE,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,iCAAiC,EAAE,+BAA+B,EAAE;YACjG,KAAK;YACL,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;CACF;AAjDD,kEAiDC;AAED,MAAa,+BAAgC,SAAQ,iBAAgC;CAAG;AAAxF,0EAAwF;AA6HxF,2BAA2B,CAAC,+BAA+B,GAAG,+BAA+B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"inbound-wire-drawdown-requests.mjs","sourceRoot":"","sources":["../src/resources/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OACf,EAAE,gBAAgB,EAAE;OAEpB,EAAE,IAAI,EAAmB;AAEhC,MAAM,OAAO,2BAA4B,SAAQ,WAAW;IAC1D;;;;;;;;;;OAUG;IACH,QAAQ,CACN,4BAAoC,EACpC,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,mCAAmC,4BAA4B,EAAE,EAAE,OAAO,CAAC,CAAC;IACtG,CAAC;IAoBD,IAAI,CACF,QAAoE,EAAE,EACtE,OAA6B;QAE7B,IAAI,gBAAgB,CAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,iCAAiC,EAAE,+BAA+B,EAAE;YACjG,KAAK;YACL,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;CACF;AAED,MAAM,OAAO,+BAAgC,SAAQ,IAAgC;CAAG;AAsIxF,2BAA2B,CAAC,+BAA+B,GAAG,+BAA+B,CAAC"}
1
+ {"version":3,"file":"inbound-wire-drawdown-requests.mjs","sourceRoot":"","sources":["../src/resources/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OACf,EAAE,gBAAgB,EAAE;OAEpB,EAAE,IAAI,EAAmB;AAEhC,MAAM,OAAO,2BAA4B,SAAQ,WAAW;IAC1D;;;;;;;;;;OAUG;IACH,QAAQ,CACN,4BAAoC,EACpC,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,mCAAmC,4BAA4B,EAAE,EAAE,OAAO,CAAC,CAAC;IACtG,CAAC;IAoBD,IAAI,CACF,QAAoE,EAAE,EACtE,OAA6B;QAE7B,IAAI,gBAAgB,CAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,iCAAiC,EAAE,+BAA+B,EAAE;YACjG,KAAK;YACL,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;CACF;AAED,MAAM,OAAO,+BAAgC,SAAQ,IAAgC;CAAG;AA6HxF,2BAA2B,CAAC,+BAA+B,GAAG,+BAA+B,CAAC"}
@@ -12,12 +12,9 @@ export declare class InboundWireDrawdownRequests extends APIResource {
12
12
  * await client.simulations.inboundWireDrawdownRequests.create(
13
13
  * {
14
14
  * amount: 10000,
15
- * beneficiary_account_number: '987654321',
16
- * beneficiary_routing_number: '101050001',
15
+ * creditor_account_number: '987654321',
16
+ * creditor_routing_number: '101050001',
17
17
  * currency: 'USD',
18
- * message_to_recipient: 'Invoice 29582',
19
- * originator_account_number: '987654321',
20
- * originator_routing_number: '101050001',
21
18
  * recipient_account_number_id:
22
19
  * 'account_number_v18nkfqm6afpsrvy82b2',
23
20
  * },
@@ -32,87 +29,86 @@ export interface InboundWireDrawdownRequestCreateParams {
32
29
  */
33
30
  amount: number;
34
31
  /**
35
- * The drawdown request's beneficiary's account number.
32
+ * The creditor's account number.
36
33
  */
37
- beneficiary_account_number: string;
34
+ creditor_account_number: string;
38
35
  /**
39
- * The drawdown request's beneficiary's routing number.
36
+ * The creditor's routing number.
40
37
  */
41
- beneficiary_routing_number: string;
38
+ creditor_routing_number: string;
42
39
  /**
43
40
  * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
44
41
  * requested. Will always be "USD".
45
42
  */
46
43
  currency: string;
47
44
  /**
48
- * A message from the drawdown request's originator.
49
- */
50
- message_to_recipient: string;
51
- /**
52
- * The drawdown request's originator's account number.
45
+ * The Account Number to which the recipient of this request is being requested to
46
+ * send funds from.
53
47
  */
54
- originator_account_number: string;
48
+ recipient_account_number_id: string;
55
49
  /**
56
- * The drawdown request's originator's routing number.
50
+ * A free-form address field set by the sender representing the first line of the
51
+ * creditor's address.
57
52
  */
58
- originator_routing_number: string;
53
+ creditor_address_line1?: string;
59
54
  /**
60
- * The Account Number to which the recipient of this request is being requested to
61
- * send funds from.
55
+ * A free-form address field set by the sender representing the second line of the
56
+ * creditor's address.
62
57
  */
63
- recipient_account_number_id: string;
58
+ creditor_address_line2?: string;
64
59
  /**
65
- * Line 1 of the drawdown request's beneficiary's address.
60
+ * A free-form address field set by the sender representing the third line of the
61
+ * creditor's address.
66
62
  */
67
- beneficiary_address_line1?: string;
63
+ creditor_address_line3?: string;
68
64
  /**
69
- * Line 2 of the drawdown request's beneficiary's address.
65
+ * A free-form name field set by the sender representing the creditor's name.
70
66
  */
71
- beneficiary_address_line2?: string;
67
+ creditor_name?: string;
72
68
  /**
73
- * Line 3 of the drawdown request's beneficiary's address.
69
+ * The debtor's account number.
74
70
  */
75
- beneficiary_address_line3?: string;
71
+ debtor_account_number?: string;
76
72
  /**
77
- * The drawdown request's beneficiary's name.
73
+ * A free-form address field set by the sender representing the first line of the
74
+ * debtor's address.
78
75
  */
79
- beneficiary_name?: string;
76
+ debtor_address_line1?: string;
80
77
  /**
81
- * Line 1 of the drawdown request's originator's address.
78
+ * A free-form address field set by the sender representing the second line of the
79
+ * debtor's address.
82
80
  */
83
- originator_address_line1?: string;
81
+ debtor_address_line2?: string;
84
82
  /**
85
- * Line 2 of the drawdown request's originator's address.
83
+ * A free-form address field set by the sender.
86
84
  */
87
- originator_address_line2?: string;
85
+ debtor_address_line3?: string;
88
86
  /**
89
- * Line 3 of the drawdown request's originator's address.
87
+ * A free-form name field set by the sender representing the debtor's name.
90
88
  */
91
- originator_address_line3?: string;
89
+ debtor_name?: string;
92
90
  /**
93
- * The drawdown request's originator's name.
91
+ * The debtor's routing number.
94
92
  */
95
- originator_name?: string;
93
+ debtor_routing_number?: string;
96
94
  /**
97
- * Line 1 of the information conveyed from the originator of the message to the
98
- * beneficiary.
95
+ * A free-form reference string set by the sender, to help identify the transfer.
99
96
  */
100
- originator_to_beneficiary_information_line1?: string;
97
+ end_to_end_identification?: string;
101
98
  /**
102
- * Line 2 of the information conveyed from the originator of the message to the
103
- * beneficiary.
99
+ * The sending bank's identifier for the wire transfer.
104
100
  */
105
- originator_to_beneficiary_information_line2?: string;
101
+ instruction_identification?: string;
106
102
  /**
107
- * Line 3 of the information conveyed from the originator of the message to the
108
- * beneficiary.
103
+ * The Unique End-to-end Transaction Reference
104
+ * ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
105
+ * of the transfer.
109
106
  */
110
- originator_to_beneficiary_information_line3?: string;
107
+ unique_end_to_end_transaction_reference?: string;
111
108
  /**
112
- * Line 4 of the information conveyed from the originator of the message to the
113
- * beneficiary.
109
+ * A free-form message set by the sender.
114
110
  */
115
- originator_to_beneficiary_information_line4?: string;
111
+ unstructured_remittance_information?: string;
116
112
  }
117
113
  export declare namespace InboundWireDrawdownRequests {
118
114
  export { type InboundWireDrawdownRequestCreateParams as InboundWireDrawdownRequestCreateParams };
@@ -1 +1 @@
1
- {"version":3,"file":"inbound-wire-drawdown-requests.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,8BAA8B,MAAM,mCAAmC,CAAC;AAEpF,qBAAa,2BAA4B,SAAQ,WAAW;IAC1D;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,MAAM,CACJ,IAAI,EAAE,sCAAsC,EAC5C,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,8BAA8B,CAAC,0BAA0B,CAAC;CAG9E;AAED,MAAM,WAAW,sCAAsC;IACrD;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,0BAA0B,EAAE,MAAM,CAAC;IAEnC;;OAEG;IACH,0BAA0B,EAAE,MAAM,CAAC;IAEnC;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAE7B;;OAEG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAElC;;OAEG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAElC;;;OAGG;IACH,2BAA2B,EAAE,MAAM,CAAC;IAEpC;;OAEG;IACH,yBAAyB,CAAC,EAAE,MAAM,CAAC;IAEnC;;OAEG;IACH,yBAAyB,CAAC,EAAE,MAAM,CAAC;IAEnC;;OAEG;IACH,yBAAyB,CAAC,EAAE,MAAM,CAAC;IAEnC;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAElC;;OAEG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAElC;;OAEG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAElC;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;;OAGG;IACH,2CAA2C,CAAC,EAAE,MAAM,CAAC;IAErD;;;OAGG;IACH,2CAA2C,CAAC,EAAE,MAAM,CAAC;IAErD;;;OAGG;IACH,2CAA2C,CAAC,EAAE,MAAM,CAAC;IAErD;;;OAGG;IACH,2CAA2C,CAAC,EAAE,MAAM,CAAC;CACtD;AAED,MAAM,CAAC,OAAO,WAAW,2BAA2B,CAAC;IACnD,OAAO,EAAE,KAAK,sCAAsC,IAAI,sCAAsC,EAAE,CAAC;CAClG"}
1
+ {"version":3,"file":"inbound-wire-drawdown-requests.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,8BAA8B,MAAM,mCAAmC,CAAC;AAEpF,qBAAa,2BAA4B,SAAQ,WAAW;IAC1D;;;;;;;;;;;;;;;;;;OAkBG;IACH,MAAM,CACJ,IAAI,EAAE,sCAAsC,EAC5C,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,8BAA8B,CAAC,0BAA0B,CAAC;CAG9E;AAED,MAAM,WAAW,sCAAsC;IACrD;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAEhC;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,2BAA2B,EAAE,MAAM,CAAC;IAEpC;;;OAGG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAEhC;;;OAGG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAEhC;;;OAGG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAE9B;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAE9B;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAE9B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;OAEG;IACH,yBAAyB,CAAC,EAAE,MAAM,CAAC;IAEnC;;OAEG;IACH,0BAA0B,CAAC,EAAE,MAAM,CAAC;IAEpC;;;;OAIG;IACH,uCAAuC,CAAC,EAAE,MAAM,CAAC;IAEjD;;OAEG;IACH,mCAAmC,CAAC,EAAE,MAAM,CAAC;CAC9C;AAED,MAAM,CAAC,OAAO,WAAW,2BAA2B,CAAC;IACnD,OAAO,EAAE,KAAK,sCAAsC,IAAI,sCAAsC,EAAE,CAAC;CAClG"}
@@ -14,12 +14,9 @@ class InboundWireDrawdownRequests extends resource_1.APIResource {
14
14
  * await client.simulations.inboundWireDrawdownRequests.create(
15
15
  * {
16
16
  * amount: 10000,
17
- * beneficiary_account_number: '987654321',
18
- * beneficiary_routing_number: '101050001',
17
+ * creditor_account_number: '987654321',
18
+ * creditor_routing_number: '101050001',
19
19
  * currency: 'USD',
20
- * message_to_recipient: 'Invoice 29582',
21
- * originator_account_number: '987654321',
22
- * originator_routing_number: '101050001',
23
20
  * recipient_account_number_id:
24
21
  * 'account_number_v18nkfqm6afpsrvy82b2',
25
22
  * },
@@ -1 +1 @@
1
- {"version":3,"file":"inbound-wire-drawdown-requests.js","sourceRoot":"","sources":["../../src/resources/simulations/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAI7C,MAAa,2BAA4B,SAAQ,sBAAW;IAC1D;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,MAAM,CACJ,IAA4C,EAC5C,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,6CAA6C,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAChG,CAAC;CACF;AA7BD,kEA6BC"}
1
+ {"version":3,"file":"inbound-wire-drawdown-requests.js","sourceRoot":"","sources":["../../src/resources/simulations/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAI7C,MAAa,2BAA4B,SAAQ,sBAAW;IAC1D;;;;;;;;;;;;;;;;;;OAkBG;IACH,MAAM,CACJ,IAA4C,EAC5C,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,6CAA6C,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAChG,CAAC;CACF;AA1BD,kEA0BC"}
@@ -11,12 +11,9 @@ export class InboundWireDrawdownRequests extends APIResource {
11
11
  * await client.simulations.inboundWireDrawdownRequests.create(
12
12
  * {
13
13
  * amount: 10000,
14
- * beneficiary_account_number: '987654321',
15
- * beneficiary_routing_number: '101050001',
14
+ * creditor_account_number: '987654321',
15
+ * creditor_routing_number: '101050001',
16
16
  * currency: 'USD',
17
- * message_to_recipient: 'Invoice 29582',
18
- * originator_account_number: '987654321',
19
- * originator_routing_number: '101050001',
20
17
  * recipient_account_number_id:
21
18
  * 'account_number_v18nkfqm6afpsrvy82b2',
22
19
  * },
@@ -1 +1 @@
1
- {"version":3,"file":"inbound-wire-drawdown-requests.mjs","sourceRoot":"","sources":["../../src/resources/simulations/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAItB,MAAM,OAAO,2BAA4B,SAAQ,WAAW;IAC1D;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,MAAM,CACJ,IAA4C,EAC5C,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,6CAA6C,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAChG,CAAC;CACF"}
1
+ {"version":3,"file":"inbound-wire-drawdown-requests.mjs","sourceRoot":"","sources":["../../src/resources/simulations/inbound-wire-drawdown-requests.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAItB,MAAM,OAAO,2BAA4B,SAAQ,WAAW;IAC1D;;;;;;;;;;;;;;;;;;OAkBG;IACH,MAAM,CACJ,IAA4C,EAC5C,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,6CAA6C,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAChG,CAAC;CACF"}
@@ -75,40 +75,40 @@ export interface InboundWireDrawdownRequest {
75
75
  amount: number;
76
76
 
77
77
  /**
78
- * The drawdown request's beneficiary's account number.
78
+ * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
79
+ * the inbound wire drawdown requested was created.
79
80
  */
80
- beneficiary_account_number: string;
81
+ created_at: string;
81
82
 
82
83
  /**
83
- * Line 1 of the drawdown request's beneficiary's address.
84
+ * The creditor's account number.
84
85
  */
85
- beneficiary_address_line1: string | null;
86
+ creditor_account_number: string;
86
87
 
87
88
  /**
88
- * Line 2 of the drawdown request's beneficiary's address.
89
+ * A free-form address field set by the sender.
89
90
  */
90
- beneficiary_address_line2: string | null;
91
+ creditor_address_line1: string | null;
91
92
 
92
93
  /**
93
- * Line 3 of the drawdown request's beneficiary's address.
94
+ * A free-form address field set by the sender.
94
95
  */
95
- beneficiary_address_line3: string | null;
96
+ creditor_address_line2: string | null;
96
97
 
97
98
  /**
98
- * The drawdown request's beneficiary's name.
99
+ * A free-form address field set by the sender.
99
100
  */
100
- beneficiary_name: string | null;
101
+ creditor_address_line3: string | null;
101
102
 
102
103
  /**
103
- * The drawdown request's beneficiary's routing number.
104
+ * A name set by the sender.
104
105
  */
105
- beneficiary_routing_number: string;
106
+ creditor_name: string | null;
106
107
 
107
108
  /**
108
- * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
109
- * the inbound wire drawdown requested was created.
109
+ * The creditor's routing number.
110
110
  */
111
- created_at: string;
111
+ creditor_routing_number: string;
112
112
 
113
113
  /**
114
114
  * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
@@ -117,63 +117,42 @@ export interface InboundWireDrawdownRequest {
117
117
  currency: string;
118
118
 
119
119
  /**
120
- * A message from the drawdown request's originator.
121
- */
122
- message_to_recipient: string | null;
123
-
124
- /**
125
- * The drawdown request's originator's account number.
126
- */
127
- originator_account_number: string | null;
128
-
129
- /**
130
- * Line 1 of the drawdown request's originator's address.
120
+ * A free-form address field set by the sender.
131
121
  */
132
- originator_address_line1: string | null;
122
+ debtor_address_line1: string | null;
133
123
 
134
124
  /**
135
- * Line 2 of the drawdown request's originator's address.
125
+ * A free-form address field set by the sender.
136
126
  */
137
- originator_address_line2: string | null;
127
+ debtor_address_line2: string | null;
138
128
 
139
129
  /**
140
- * Line 3 of the drawdown request's originator's address.
130
+ * A free-form address field set by the sender.
141
131
  */
142
- originator_address_line3: string | null;
132
+ debtor_address_line3: string | null;
143
133
 
144
134
  /**
145
- * The drawdown request's originator's name.
135
+ * A name set by the sender.
146
136
  */
147
- originator_name: string | null;
137
+ debtor_name: string | null;
148
138
 
149
139
  /**
150
- * The drawdown request's originator's routing number.
140
+ * A free-form reference string set by the sender, to help identify the drawdown
141
+ * request.
151
142
  */
152
- originator_routing_number: string;
143
+ end_to_end_identification: string | null;
153
144
 
154
145
  /**
155
- * Line 1 of the information conveyed from the originator of the message to the
156
- * beneficiary.
146
+ * A unique identifier available to the originating and receiving banks, commonly
147
+ * abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
148
+ * service and is helpful when debugging wires with the originating bank.
157
149
  */
158
- originator_to_beneficiary_information_line1: string | null;
150
+ input_message_accountability_data: string | null;
159
151
 
160
152
  /**
161
- * Line 2 of the information conveyed from the originator of the message to the
162
- * beneficiary.
153
+ * The sending bank's identifier for the drawdown request.
163
154
  */
164
- originator_to_beneficiary_information_line2: string | null;
165
-
166
- /**
167
- * Line 3 of the information conveyed from the originator of the message to the
168
- * beneficiary.
169
- */
170
- originator_to_beneficiary_information_line3: string | null;
171
-
172
- /**
173
- * Line 4 of the information conveyed from the originator of the message to the
174
- * beneficiary.
175
- */
176
- originator_to_beneficiary_information_line4: string | null;
155
+ instruction_identification: string | null;
177
156
 
178
157
  /**
179
158
  * The Account Number from which the recipient of this request is being requested
@@ -186,6 +165,18 @@ export interface InboundWireDrawdownRequest {
186
165
  * `inbound_wire_drawdown_request`.
187
166
  */
188
167
  type: 'inbound_wire_drawdown_request';
168
+
169
+ /**
170
+ * The Unique End-to-end Transaction Reference
171
+ * ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
172
+ * of the drawdown request.
173
+ */
174
+ unique_end_to_end_transaction_reference: string | null;
175
+
176
+ /**
177
+ * A free-form message set by the sender.
178
+ */
179
+ unstructured_remittance_information: string | null;
189
180
  }
190
181
 
191
182
  export interface InboundWireDrawdownRequestListParams extends PageParams {}
@@ -15,12 +15,9 @@ export class InboundWireDrawdownRequests extends APIResource {
15
15
  * await client.simulations.inboundWireDrawdownRequests.create(
16
16
  * {
17
17
  * amount: 10000,
18
- * beneficiary_account_number: '987654321',
19
- * beneficiary_routing_number: '101050001',
18
+ * creditor_account_number: '987654321',
19
+ * creditor_routing_number: '101050001',
20
20
  * currency: 'USD',
21
- * message_to_recipient: 'Invoice 29582',
22
- * originator_account_number: '987654321',
23
- * originator_routing_number: '101050001',
24
21
  * recipient_account_number_id:
25
22
  * 'account_number_v18nkfqm6afpsrvy82b2',
26
23
  * },
@@ -42,14 +39,14 @@ export interface InboundWireDrawdownRequestCreateParams {
42
39
  amount: number;
43
40
 
44
41
  /**
45
- * The drawdown request's beneficiary's account number.
42
+ * The creditor's account number.
46
43
  */
47
- beneficiary_account_number: string;
44
+ creditor_account_number: string;
48
45
 
49
46
  /**
50
- * The drawdown request's beneficiary's routing number.
47
+ * The creditor's routing number.
51
48
  */
52
- beneficiary_routing_number: string;
49
+ creditor_routing_number: string;
53
50
 
54
51
  /**
55
52
  * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
@@ -58,89 +55,87 @@ export interface InboundWireDrawdownRequestCreateParams {
58
55
  currency: string;
59
56
 
60
57
  /**
61
- * A message from the drawdown request's originator.
62
- */
63
- message_to_recipient: string;
64
-
65
- /**
66
- * The drawdown request's originator's account number.
58
+ * The Account Number to which the recipient of this request is being requested to
59
+ * send funds from.
67
60
  */
68
- originator_account_number: string;
61
+ recipient_account_number_id: string;
69
62
 
70
63
  /**
71
- * The drawdown request's originator's routing number.
64
+ * A free-form address field set by the sender representing the first line of the
65
+ * creditor's address.
72
66
  */
73
- originator_routing_number: string;
67
+ creditor_address_line1?: string;
74
68
 
75
69
  /**
76
- * The Account Number to which the recipient of this request is being requested to
77
- * send funds from.
70
+ * A free-form address field set by the sender representing the second line of the
71
+ * creditor's address.
78
72
  */
79
- recipient_account_number_id: string;
73
+ creditor_address_line2?: string;
80
74
 
81
75
  /**
82
- * Line 1 of the drawdown request's beneficiary's address.
76
+ * A free-form address field set by the sender representing the third line of the
77
+ * creditor's address.
83
78
  */
84
- beneficiary_address_line1?: string;
79
+ creditor_address_line3?: string;
85
80
 
86
81
  /**
87
- * Line 2 of the drawdown request's beneficiary's address.
82
+ * A free-form name field set by the sender representing the creditor's name.
88
83
  */
89
- beneficiary_address_line2?: string;
84
+ creditor_name?: string;
90
85
 
91
86
  /**
92
- * Line 3 of the drawdown request's beneficiary's address.
87
+ * The debtor's account number.
93
88
  */
94
- beneficiary_address_line3?: string;
89
+ debtor_account_number?: string;
95
90
 
96
91
  /**
97
- * The drawdown request's beneficiary's name.
92
+ * A free-form address field set by the sender representing the first line of the
93
+ * debtor's address.
98
94
  */
99
- beneficiary_name?: string;
95
+ debtor_address_line1?: string;
100
96
 
101
97
  /**
102
- * Line 1 of the drawdown request's originator's address.
98
+ * A free-form address field set by the sender representing the second line of the
99
+ * debtor's address.
103
100
  */
104
- originator_address_line1?: string;
101
+ debtor_address_line2?: string;
105
102
 
106
103
  /**
107
- * Line 2 of the drawdown request's originator's address.
104
+ * A free-form address field set by the sender.
108
105
  */
109
- originator_address_line2?: string;
106
+ debtor_address_line3?: string;
110
107
 
111
108
  /**
112
- * Line 3 of the drawdown request's originator's address.
109
+ * A free-form name field set by the sender representing the debtor's name.
113
110
  */
114
- originator_address_line3?: string;
111
+ debtor_name?: string;
115
112
 
116
113
  /**
117
- * The drawdown request's originator's name.
114
+ * The debtor's routing number.
118
115
  */
119
- originator_name?: string;
116
+ debtor_routing_number?: string;
120
117
 
121
118
  /**
122
- * Line 1 of the information conveyed from the originator of the message to the
123
- * beneficiary.
119
+ * A free-form reference string set by the sender, to help identify the transfer.
124
120
  */
125
- originator_to_beneficiary_information_line1?: string;
121
+ end_to_end_identification?: string;
126
122
 
127
123
  /**
128
- * Line 2 of the information conveyed from the originator of the message to the
129
- * beneficiary.
124
+ * The sending bank's identifier for the wire transfer.
130
125
  */
131
- originator_to_beneficiary_information_line2?: string;
126
+ instruction_identification?: string;
132
127
 
133
128
  /**
134
- * Line 3 of the information conveyed from the originator of the message to the
135
- * beneficiary.
129
+ * The Unique End-to-end Transaction Reference
130
+ * ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
131
+ * of the transfer.
136
132
  */
137
- originator_to_beneficiary_information_line3?: string;
133
+ unique_end_to_end_transaction_reference?: string;
138
134
 
139
135
  /**
140
- * Line 4 of the information conveyed from the originator of the message to the
141
- * beneficiary.
136
+ * A free-form message set by the sender.
142
137
  */
143
- originator_to_beneficiary_information_line4?: string;
138
+ unstructured_remittance_information?: string;
144
139
  }
145
140
 
146
141
  export declare namespace InboundWireDrawdownRequests {
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.276.0'; // x-release-please-version
1
+ export const VERSION = '0.277.0'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.276.0";
1
+ export declare const VERSION = "0.277.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.276.0'; // x-release-please-version
4
+ exports.VERSION = '0.277.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.276.0'; // x-release-please-version
1
+ export const VERSION = '0.277.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map