increase 0.18.0 → 0.19.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 +8 -0
- package/index.d.mts +11 -0
- package/index.d.ts +11 -0
- package/index.d.ts.map +1 -1
- package/index.js +6 -0
- package/index.js.map +1 -1
- package/index.mjs +6 -0
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/check-deposits.d.ts +18 -1
- package/resources/check-deposits.d.ts.map +1 -1
- package/resources/check-deposits.js.map +1 -1
- package/resources/check-deposits.mjs.map +1 -1
- package/resources/event-subscriptions.d.ts +18 -2
- package/resources/event-subscriptions.d.ts.map +1 -1
- package/resources/event-subscriptions.js.map +1 -1
- package/resources/event-subscriptions.mjs.map +1 -1
- package/resources/events.d.ts +10 -2
- package/resources/events.d.ts.map +1 -1
- package/resources/events.js.map +1 -1
- package/resources/events.mjs.map +1 -1
- package/resources/index.d.ts +2 -0
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +7 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +2 -0
- package/resources/index.mjs.map +1 -1
- package/resources/proof-of-authorization-request-submissions.d.ts +129 -0
- package/resources/proof-of-authorization-request-submissions.d.ts.map +1 -0
- package/resources/proof-of-authorization-request-submissions.js +59 -0
- package/resources/proof-of-authorization-request-submissions.js.map +1 -0
- package/resources/proof-of-authorization-request-submissions.mjs +31 -0
- package/resources/proof-of-authorization-request-submissions.mjs.map +1 -0
- package/resources/proof-of-authorization-requests.d.ts +84 -0
- package/resources/proof-of-authorization-requests.d.ts.map +1 -0
- package/resources/proof-of-authorization-requests.js +56 -0
- package/resources/proof-of-authorization-requests.js.map +1 -0
- package/resources/proof-of-authorization-requests.mjs +28 -0
- package/resources/proof-of-authorization-requests.mjs.map +1 -0
- package/resources/simulations/ach-transfers.d.ts +19 -2
- package/resources/simulations/ach-transfers.d.ts.map +1 -1
- package/resources/simulations/ach-transfers.js.map +1 -1
- package/resources/simulations/ach-transfers.mjs.map +1 -1
- package/resources/simulations/interest-payments.d.ts +19 -2
- package/resources/simulations/interest-payments.d.ts.map +1 -1
- package/resources/simulations/interest-payments.js.map +1 -1
- package/resources/simulations/interest-payments.mjs.map +1 -1
- package/resources/simulations/real-time-payments-transfers.d.ts +19 -2
- package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
- package/resources/simulations/real-time-payments-transfers.js.map +1 -1
- package/resources/simulations/real-time-payments-transfers.mjs.map +1 -1
- package/resources/simulations/wire-transfers.d.ts +19 -2
- package/resources/simulations/wire-transfers.d.ts.map +1 -1
- package/resources/simulations/wire-transfers.js.map +1 -1
- package/resources/simulations/wire-transfers.mjs.map +1 -1
- package/resources/transactions.d.ts +19 -2
- package/resources/transactions.d.ts.map +1 -1
- package/resources/transactions.js.map +1 -1
- package/resources/transactions.mjs.map +1 -1
- package/src/index.ts +14 -0
- package/src/resources/check-deposits.ts +32 -1
- package/src/resources/event-subscriptions.ts +24 -0
- package/src/resources/events.ts +16 -0
- package/src/resources/index.ts +13 -0
- package/src/resources/proof-of-authorization-request-submissions.ts +186 -0
- package/src/resources/proof-of-authorization-requests.ts +122 -0
- package/src/resources/simulations/ach-transfers.ts +32 -1
- package/src/resources/simulations/interest-payments.ts +32 -1
- package/src/resources/simulations/real-time-payments-transfers.ts +32 -1
- package/src/resources/simulations/wire-transfers.ts +32 -1
- package/src/resources/transactions.ts +32 -1
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless.
|
|
2
|
+
|
|
3
|
+
import * as Core from "../core";
|
|
4
|
+
import { APIResource } from "../resource";
|
|
5
|
+
import { isRequestOptions } from "../core";
|
|
6
|
+
import * as ProofOfAuthorizationRequestSubmissionsAPI from "./proof-of-authorization-request-submissions";
|
|
7
|
+
import { Page, type PageParams } from "../pagination";
|
|
8
|
+
|
|
9
|
+
export class ProofOfAuthorizationRequestSubmissions extends APIResource {
|
|
10
|
+
/**
|
|
11
|
+
* Submit Proof of Authorization
|
|
12
|
+
*/
|
|
13
|
+
create(
|
|
14
|
+
body: ProofOfAuthorizationRequestSubmissionCreateParams,
|
|
15
|
+
options?: Core.RequestOptions,
|
|
16
|
+
): Core.APIPromise<ProofOfAuthorizationRequestSubmission> {
|
|
17
|
+
return this._client.post('/proof_of_authorization_request_submissions', { body, ...options });
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Retrieve a Proof of Authorization Request Submission
|
|
22
|
+
*/
|
|
23
|
+
retrieve(
|
|
24
|
+
proofOfAuthorizationRequestSubmissionId: string,
|
|
25
|
+
options?: Core.RequestOptions,
|
|
26
|
+
): Core.APIPromise<ProofOfAuthorizationRequestSubmission> {
|
|
27
|
+
return this._client.get(
|
|
28
|
+
`/proof_of_authorization_request_submissions/${proofOfAuthorizationRequestSubmissionId}`,
|
|
29
|
+
options,
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* List Proof of Authorization Request Submissions
|
|
35
|
+
*/
|
|
36
|
+
list(
|
|
37
|
+
query?: ProofOfAuthorizationRequestSubmissionListParams,
|
|
38
|
+
options?: Core.RequestOptions,
|
|
39
|
+
): Core.PagePromise<ProofOfAuthorizationRequestSubmissionsPage, ProofOfAuthorizationRequestSubmission>;
|
|
40
|
+
list(
|
|
41
|
+
options?: Core.RequestOptions,
|
|
42
|
+
): Core.PagePromise<ProofOfAuthorizationRequestSubmissionsPage, ProofOfAuthorizationRequestSubmission>;
|
|
43
|
+
list(
|
|
44
|
+
query: ProofOfAuthorizationRequestSubmissionListParams | Core.RequestOptions = {},
|
|
45
|
+
options?: Core.RequestOptions,
|
|
46
|
+
): Core.PagePromise<ProofOfAuthorizationRequestSubmissionsPage, ProofOfAuthorizationRequestSubmission> {
|
|
47
|
+
if (isRequestOptions(query)) {
|
|
48
|
+
return this.list({}, query);
|
|
49
|
+
}
|
|
50
|
+
return this._client.getAPIList(
|
|
51
|
+
'/proof_of_authorization_request_submissions',
|
|
52
|
+
ProofOfAuthorizationRequestSubmissionsPage,
|
|
53
|
+
{ query, ...options },
|
|
54
|
+
);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export class ProofOfAuthorizationRequestSubmissionsPage extends Page<ProofOfAuthorizationRequestSubmission> {}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Information submitted in response to a proof of authorization request. Per
|
|
62
|
+
* Nacha's guidance on proof of authorization, the originator must ensure that the
|
|
63
|
+
* authorization complies with applicable legal requirements, is readily
|
|
64
|
+
* identifiable as an authorization, and has clear and readily understandable
|
|
65
|
+
* terms.
|
|
66
|
+
*/
|
|
67
|
+
export interface ProofOfAuthorizationRequestSubmission {
|
|
68
|
+
/**
|
|
69
|
+
* The Proof of Authorization Request Submission identifier.
|
|
70
|
+
*/
|
|
71
|
+
id: string;
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Terms of authorization.
|
|
75
|
+
*/
|
|
76
|
+
authorization_terms: string;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Time of authorization.
|
|
80
|
+
*/
|
|
81
|
+
authorized_at: string;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Company of the authorizer.
|
|
85
|
+
*/
|
|
86
|
+
authorizer_company: string | null;
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Email of the authorizer.
|
|
90
|
+
*/
|
|
91
|
+
authorizer_email: string | null;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* IP address of the authorizer.
|
|
95
|
+
*/
|
|
96
|
+
authorizer_ip_address: string | null;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Name of the authorizer.
|
|
100
|
+
*/
|
|
101
|
+
authorizer_name: string | null;
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* The time the Proof of Authorization Request Submission was created.
|
|
105
|
+
*/
|
|
106
|
+
created_at: string;
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* ID of the proof of authorization request.
|
|
110
|
+
*/
|
|
111
|
+
proof_of_authorization_request_id: string;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Status of the proof of authorization request submission.
|
|
115
|
+
*
|
|
116
|
+
* - `pending_review` - The proof of authorization request submission is pending
|
|
117
|
+
* review.
|
|
118
|
+
* - `rejected` - The proof of authorization request submission was rejected.
|
|
119
|
+
* - `pending_sending` - The proof of authorization request submission is pending
|
|
120
|
+
* sending.
|
|
121
|
+
* - `sent` - The proof of authorization request submission was sent.
|
|
122
|
+
*/
|
|
123
|
+
status: 'pending_review' | 'rejected' | 'pending_sending' | 'sent';
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* A constant representing the object's type. For this resource it will always be
|
|
127
|
+
* `proof_of_authorization_request_submission`.
|
|
128
|
+
*/
|
|
129
|
+
type: 'proof_of_authorization_request_submission';
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* The time the Proof of Authorization Request Submission was last updated.
|
|
133
|
+
*/
|
|
134
|
+
updated_at: string;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export interface ProofOfAuthorizationRequestSubmissionCreateParams {
|
|
138
|
+
/**
|
|
139
|
+
* Terms of authorization.
|
|
140
|
+
*/
|
|
141
|
+
authorization_terms: string;
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Time of authorization.
|
|
145
|
+
*/
|
|
146
|
+
authorized_at: string;
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Email of the authorizer.
|
|
150
|
+
*/
|
|
151
|
+
authorizer_email: string;
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Name of the authorizer.
|
|
155
|
+
*/
|
|
156
|
+
authorizer_name: string;
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* ID of the proof of authorization request.
|
|
160
|
+
*/
|
|
161
|
+
proof_of_authorization_request_id: string;
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Company of the authorizer.
|
|
165
|
+
*/
|
|
166
|
+
authorizer_company?: string;
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* IP address of the authorizer.
|
|
170
|
+
*/
|
|
171
|
+
authorizer_ip_address?: string;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export interface ProofOfAuthorizationRequestSubmissionListParams extends PageParams {
|
|
175
|
+
/**
|
|
176
|
+
* ID of the proof of authorization request.
|
|
177
|
+
*/
|
|
178
|
+
proof_of_authorization_request_id?: string;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
export namespace ProofOfAuthorizationRequestSubmissions {
|
|
182
|
+
export import ProofOfAuthorizationRequestSubmission = ProofOfAuthorizationRequestSubmissionsAPI.ProofOfAuthorizationRequestSubmission;
|
|
183
|
+
export import ProofOfAuthorizationRequestSubmissionsPage = ProofOfAuthorizationRequestSubmissionsAPI.ProofOfAuthorizationRequestSubmissionsPage;
|
|
184
|
+
export import ProofOfAuthorizationRequestSubmissionCreateParams = ProofOfAuthorizationRequestSubmissionsAPI.ProofOfAuthorizationRequestSubmissionCreateParams;
|
|
185
|
+
export import ProofOfAuthorizationRequestSubmissionListParams = ProofOfAuthorizationRequestSubmissionsAPI.ProofOfAuthorizationRequestSubmissionListParams;
|
|
186
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless.
|
|
2
|
+
|
|
3
|
+
import * as Core from "../core";
|
|
4
|
+
import { APIResource } from "../resource";
|
|
5
|
+
import { isRequestOptions } from "../core";
|
|
6
|
+
import * as ProofOfAuthorizationRequestsAPI from "./proof-of-authorization-requests";
|
|
7
|
+
import { Page, type PageParams } from "../pagination";
|
|
8
|
+
|
|
9
|
+
export class ProofOfAuthorizationRequests extends APIResource {
|
|
10
|
+
/**
|
|
11
|
+
* Retrieve a Proof of Authorization Request
|
|
12
|
+
*/
|
|
13
|
+
retrieve(
|
|
14
|
+
proofOfAuthorizationRequestId: string,
|
|
15
|
+
options?: Core.RequestOptions,
|
|
16
|
+
): Core.APIPromise<ProofOfAuthorizationRequest> {
|
|
17
|
+
return this._client.get(`/proof_of_authorization_requests/${proofOfAuthorizationRequestId}`, options);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* List Proof of Authorization Requests
|
|
22
|
+
*/
|
|
23
|
+
list(
|
|
24
|
+
query?: ProofOfAuthorizationRequestListParams,
|
|
25
|
+
options?: Core.RequestOptions,
|
|
26
|
+
): Core.PagePromise<ProofOfAuthorizationRequestsPage, ProofOfAuthorizationRequest>;
|
|
27
|
+
list(
|
|
28
|
+
options?: Core.RequestOptions,
|
|
29
|
+
): Core.PagePromise<ProofOfAuthorizationRequestsPage, ProofOfAuthorizationRequest>;
|
|
30
|
+
list(
|
|
31
|
+
query: ProofOfAuthorizationRequestListParams | Core.RequestOptions = {},
|
|
32
|
+
options?: Core.RequestOptions,
|
|
33
|
+
): Core.PagePromise<ProofOfAuthorizationRequestsPage, ProofOfAuthorizationRequest> {
|
|
34
|
+
if (isRequestOptions(query)) {
|
|
35
|
+
return this.list({}, query);
|
|
36
|
+
}
|
|
37
|
+
return this._client.getAPIList('/proof_of_authorization_requests', ProofOfAuthorizationRequestsPage, {
|
|
38
|
+
query,
|
|
39
|
+
...options,
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export class ProofOfAuthorizationRequestsPage extends Page<ProofOfAuthorizationRequest> {}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* A request for proof of authorization for one or more ACH debit transfers.
|
|
48
|
+
*/
|
|
49
|
+
export interface ProofOfAuthorizationRequest {
|
|
50
|
+
/**
|
|
51
|
+
* The Proof of Authorization Request identifier.
|
|
52
|
+
*/
|
|
53
|
+
id: string;
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* The ACH Transfers associated with the request.
|
|
57
|
+
*/
|
|
58
|
+
ach_transfers: Array<ProofOfAuthorizationRequest.ACHTransfer>;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* The time the Proof of Authorization Request was created.
|
|
62
|
+
*/
|
|
63
|
+
created_at: string;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* A constant representing the object's type. For this resource it will always be
|
|
67
|
+
* `proof_of_authorization_request`.
|
|
68
|
+
*/
|
|
69
|
+
type: 'proof_of_authorization_request';
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* The time the Proof of Authorization Request was last updated.
|
|
73
|
+
*/
|
|
74
|
+
updated_at: string;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export namespace ProofOfAuthorizationRequest {
|
|
78
|
+
export interface ACHTransfer {
|
|
79
|
+
/**
|
|
80
|
+
* The ACH Transfer identifier.
|
|
81
|
+
*/
|
|
82
|
+
id: string;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export interface ProofOfAuthorizationRequestListParams extends PageParams {
|
|
87
|
+
created_at?: ProofOfAuthorizationRequestListParams.CreatedAt;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export namespace ProofOfAuthorizationRequestListParams {
|
|
91
|
+
export interface CreatedAt {
|
|
92
|
+
/**
|
|
93
|
+
* Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
94
|
+
* timestamp.
|
|
95
|
+
*/
|
|
96
|
+
after?: string;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
100
|
+
* timestamp.
|
|
101
|
+
*/
|
|
102
|
+
before?: string;
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Return results on or after this
|
|
106
|
+
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
107
|
+
*/
|
|
108
|
+
on_or_after?: string;
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Return results on or before this
|
|
112
|
+
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
113
|
+
*/
|
|
114
|
+
on_or_before?: string;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export namespace ProofOfAuthorizationRequests {
|
|
119
|
+
export import ProofOfAuthorizationRequest = ProofOfAuthorizationRequestsAPI.ProofOfAuthorizationRequest;
|
|
120
|
+
export import ProofOfAuthorizationRequestsPage = ProofOfAuthorizationRequestsAPI.ProofOfAuthorizationRequestsPage;
|
|
121
|
+
export import ProofOfAuthorizationRequestListParams = ProofOfAuthorizationRequestsAPI.ProofOfAuthorizationRequestListParams;
|
|
122
|
+
}
|
|
@@ -3411,6 +3411,23 @@ export namespace ACHTransferSimulation {
|
|
|
3411
3411
|
* - `unmatched_details` - The image doesn't match the details submitted.
|
|
3412
3412
|
* - `unreadable_image` - The image could not be read.
|
|
3413
3413
|
* - `endorsement_irregular` - The check endorsement was irregular.
|
|
3414
|
+
* - `altered_or_fictitious_item` - The check present was either altered or fake.
|
|
3415
|
+
* - `frozen_or_blocked_account` - The account this check is drawn on is frozen.
|
|
3416
|
+
* - `post_dated` - The check is post dated.
|
|
3417
|
+
* - `endorsement_missing` - The endorsement was missing.
|
|
3418
|
+
* - `signature_missing` - The check signature was missing.
|
|
3419
|
+
* - `stop_payment_suspect` - The bank suspects a stop payment will be placed.
|
|
3420
|
+
* - `unusable_image` - The bank cannot read the image.
|
|
3421
|
+
* - `image_fails_security_check` - The check image fails the bank's security
|
|
3422
|
+
* check.
|
|
3423
|
+
* - `cannot_determine_amount` - The bank cannot determine the amount.
|
|
3424
|
+
* - `signature_irregular` - The signature is inconsistent with prior signatures.
|
|
3425
|
+
* - `non_cash_item` - The check is a non-cash item and cannot be drawn against the
|
|
3426
|
+
* account.
|
|
3427
|
+
* - `unable_to_process` - The bank is unable to process this check.
|
|
3428
|
+
* - `item_exceeds_dollar_limit` - The check exceeds the bank or customer's limit.
|
|
3429
|
+
* - `branch_or_account_sold` - The bank sold this account and no longer services
|
|
3430
|
+
* this customer.
|
|
3414
3431
|
*/
|
|
3415
3432
|
return_reason:
|
|
3416
3433
|
| 'ach_conversion_not_supported'
|
|
@@ -3424,7 +3441,21 @@ export namespace ACHTransferSimulation {
|
|
|
3424
3441
|
| 'unknown_reason'
|
|
3425
3442
|
| 'unmatched_details'
|
|
3426
3443
|
| 'unreadable_image'
|
|
3427
|
-
| 'endorsement_irregular'
|
|
3444
|
+
| 'endorsement_irregular'
|
|
3445
|
+
| 'altered_or_fictitious_item'
|
|
3446
|
+
| 'frozen_or_blocked_account'
|
|
3447
|
+
| 'post_dated'
|
|
3448
|
+
| 'endorsement_missing'
|
|
3449
|
+
| 'signature_missing'
|
|
3450
|
+
| 'stop_payment_suspect'
|
|
3451
|
+
| 'unusable_image'
|
|
3452
|
+
| 'image_fails_security_check'
|
|
3453
|
+
| 'cannot_determine_amount'
|
|
3454
|
+
| 'signature_irregular'
|
|
3455
|
+
| 'non_cash_item'
|
|
3456
|
+
| 'unable_to_process'
|
|
3457
|
+
| 'item_exceeds_dollar_limit'
|
|
3458
|
+
| 'branch_or_account_sold';
|
|
3428
3459
|
|
|
3429
3460
|
/**
|
|
3430
3461
|
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
@@ -2193,6 +2193,23 @@ export namespace InterestPaymentSimulationResult {
|
|
|
2193
2193
|
* - `unmatched_details` - The image doesn't match the details submitted.
|
|
2194
2194
|
* - `unreadable_image` - The image could not be read.
|
|
2195
2195
|
* - `endorsement_irregular` - The check endorsement was irregular.
|
|
2196
|
+
* - `altered_or_fictitious_item` - The check present was either altered or fake.
|
|
2197
|
+
* - `frozen_or_blocked_account` - The account this check is drawn on is frozen.
|
|
2198
|
+
* - `post_dated` - The check is post dated.
|
|
2199
|
+
* - `endorsement_missing` - The endorsement was missing.
|
|
2200
|
+
* - `signature_missing` - The check signature was missing.
|
|
2201
|
+
* - `stop_payment_suspect` - The bank suspects a stop payment will be placed.
|
|
2202
|
+
* - `unusable_image` - The bank cannot read the image.
|
|
2203
|
+
* - `image_fails_security_check` - The check image fails the bank's security
|
|
2204
|
+
* check.
|
|
2205
|
+
* - `cannot_determine_amount` - The bank cannot determine the amount.
|
|
2206
|
+
* - `signature_irregular` - The signature is inconsistent with prior signatures.
|
|
2207
|
+
* - `non_cash_item` - The check is a non-cash item and cannot be drawn against the
|
|
2208
|
+
* account.
|
|
2209
|
+
* - `unable_to_process` - The bank is unable to process this check.
|
|
2210
|
+
* - `item_exceeds_dollar_limit` - The check exceeds the bank or customer's limit.
|
|
2211
|
+
* - `branch_or_account_sold` - The bank sold this account and no longer services
|
|
2212
|
+
* this customer.
|
|
2196
2213
|
*/
|
|
2197
2214
|
return_reason:
|
|
2198
2215
|
| 'ach_conversion_not_supported'
|
|
@@ -2206,7 +2223,21 @@ export namespace InterestPaymentSimulationResult {
|
|
|
2206
2223
|
| 'unknown_reason'
|
|
2207
2224
|
| 'unmatched_details'
|
|
2208
2225
|
| 'unreadable_image'
|
|
2209
|
-
| 'endorsement_irregular'
|
|
2226
|
+
| 'endorsement_irregular'
|
|
2227
|
+
| 'altered_or_fictitious_item'
|
|
2228
|
+
| 'frozen_or_blocked_account'
|
|
2229
|
+
| 'post_dated'
|
|
2230
|
+
| 'endorsement_missing'
|
|
2231
|
+
| 'signature_missing'
|
|
2232
|
+
| 'stop_payment_suspect'
|
|
2233
|
+
| 'unusable_image'
|
|
2234
|
+
| 'image_fails_security_check'
|
|
2235
|
+
| 'cannot_determine_amount'
|
|
2236
|
+
| 'signature_irregular'
|
|
2237
|
+
| 'non_cash_item'
|
|
2238
|
+
| 'unable_to_process'
|
|
2239
|
+
| 'item_exceeds_dollar_limit'
|
|
2240
|
+
| 'branch_or_account_sold';
|
|
2210
2241
|
|
|
2211
2242
|
/**
|
|
2212
2243
|
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
@@ -3391,6 +3391,23 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
3391
3391
|
* - `unmatched_details` - The image doesn't match the details submitted.
|
|
3392
3392
|
* - `unreadable_image` - The image could not be read.
|
|
3393
3393
|
* - `endorsement_irregular` - The check endorsement was irregular.
|
|
3394
|
+
* - `altered_or_fictitious_item` - The check present was either altered or fake.
|
|
3395
|
+
* - `frozen_or_blocked_account` - The account this check is drawn on is frozen.
|
|
3396
|
+
* - `post_dated` - The check is post dated.
|
|
3397
|
+
* - `endorsement_missing` - The endorsement was missing.
|
|
3398
|
+
* - `signature_missing` - The check signature was missing.
|
|
3399
|
+
* - `stop_payment_suspect` - The bank suspects a stop payment will be placed.
|
|
3400
|
+
* - `unusable_image` - The bank cannot read the image.
|
|
3401
|
+
* - `image_fails_security_check` - The check image fails the bank's security
|
|
3402
|
+
* check.
|
|
3403
|
+
* - `cannot_determine_amount` - The bank cannot determine the amount.
|
|
3404
|
+
* - `signature_irregular` - The signature is inconsistent with prior signatures.
|
|
3405
|
+
* - `non_cash_item` - The check is a non-cash item and cannot be drawn against the
|
|
3406
|
+
* account.
|
|
3407
|
+
* - `unable_to_process` - The bank is unable to process this check.
|
|
3408
|
+
* - `item_exceeds_dollar_limit` - The check exceeds the bank or customer's limit.
|
|
3409
|
+
* - `branch_or_account_sold` - The bank sold this account and no longer services
|
|
3410
|
+
* this customer.
|
|
3394
3411
|
*/
|
|
3395
3412
|
return_reason:
|
|
3396
3413
|
| 'ach_conversion_not_supported'
|
|
@@ -3404,7 +3421,21 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
3404
3421
|
| 'unknown_reason'
|
|
3405
3422
|
| 'unmatched_details'
|
|
3406
3423
|
| 'unreadable_image'
|
|
3407
|
-
| 'endorsement_irregular'
|
|
3424
|
+
| 'endorsement_irregular'
|
|
3425
|
+
| 'altered_or_fictitious_item'
|
|
3426
|
+
| 'frozen_or_blocked_account'
|
|
3427
|
+
| 'post_dated'
|
|
3428
|
+
| 'endorsement_missing'
|
|
3429
|
+
| 'signature_missing'
|
|
3430
|
+
| 'stop_payment_suspect'
|
|
3431
|
+
| 'unusable_image'
|
|
3432
|
+
| 'image_fails_security_check'
|
|
3433
|
+
| 'cannot_determine_amount'
|
|
3434
|
+
| 'signature_irregular'
|
|
3435
|
+
| 'non_cash_item'
|
|
3436
|
+
| 'unable_to_process'
|
|
3437
|
+
| 'item_exceeds_dollar_limit'
|
|
3438
|
+
| 'branch_or_account_sold';
|
|
3408
3439
|
|
|
3409
3440
|
/**
|
|
3410
3441
|
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
@@ -2194,6 +2194,23 @@ export namespace WireTransferSimulation {
|
|
|
2194
2194
|
* - `unmatched_details` - The image doesn't match the details submitted.
|
|
2195
2195
|
* - `unreadable_image` - The image could not be read.
|
|
2196
2196
|
* - `endorsement_irregular` - The check endorsement was irregular.
|
|
2197
|
+
* - `altered_or_fictitious_item` - The check present was either altered or fake.
|
|
2198
|
+
* - `frozen_or_blocked_account` - The account this check is drawn on is frozen.
|
|
2199
|
+
* - `post_dated` - The check is post dated.
|
|
2200
|
+
* - `endorsement_missing` - The endorsement was missing.
|
|
2201
|
+
* - `signature_missing` - The check signature was missing.
|
|
2202
|
+
* - `stop_payment_suspect` - The bank suspects a stop payment will be placed.
|
|
2203
|
+
* - `unusable_image` - The bank cannot read the image.
|
|
2204
|
+
* - `image_fails_security_check` - The check image fails the bank's security
|
|
2205
|
+
* check.
|
|
2206
|
+
* - `cannot_determine_amount` - The bank cannot determine the amount.
|
|
2207
|
+
* - `signature_irregular` - The signature is inconsistent with prior signatures.
|
|
2208
|
+
* - `non_cash_item` - The check is a non-cash item and cannot be drawn against the
|
|
2209
|
+
* account.
|
|
2210
|
+
* - `unable_to_process` - The bank is unable to process this check.
|
|
2211
|
+
* - `item_exceeds_dollar_limit` - The check exceeds the bank or customer's limit.
|
|
2212
|
+
* - `branch_or_account_sold` - The bank sold this account and no longer services
|
|
2213
|
+
* this customer.
|
|
2197
2214
|
*/
|
|
2198
2215
|
return_reason:
|
|
2199
2216
|
| 'ach_conversion_not_supported'
|
|
@@ -2207,7 +2224,21 @@ export namespace WireTransferSimulation {
|
|
|
2207
2224
|
| 'unknown_reason'
|
|
2208
2225
|
| 'unmatched_details'
|
|
2209
2226
|
| 'unreadable_image'
|
|
2210
|
-
| 'endorsement_irregular'
|
|
2227
|
+
| 'endorsement_irregular'
|
|
2228
|
+
| 'altered_or_fictitious_item'
|
|
2229
|
+
| 'frozen_or_blocked_account'
|
|
2230
|
+
| 'post_dated'
|
|
2231
|
+
| 'endorsement_missing'
|
|
2232
|
+
| 'signature_missing'
|
|
2233
|
+
| 'stop_payment_suspect'
|
|
2234
|
+
| 'unusable_image'
|
|
2235
|
+
| 'image_fails_security_check'
|
|
2236
|
+
| 'cannot_determine_amount'
|
|
2237
|
+
| 'signature_irregular'
|
|
2238
|
+
| 'non_cash_item'
|
|
2239
|
+
| 'unable_to_process'
|
|
2240
|
+
| 'item_exceeds_dollar_limit'
|
|
2241
|
+
| 'branch_or_account_sold';
|
|
2211
2242
|
|
|
2212
2243
|
/**
|
|
2213
2244
|
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
@@ -2193,6 +2193,23 @@ export namespace Transaction {
|
|
|
2193
2193
|
* - `unmatched_details` - The image doesn't match the details submitted.
|
|
2194
2194
|
* - `unreadable_image` - The image could not be read.
|
|
2195
2195
|
* - `endorsement_irregular` - The check endorsement was irregular.
|
|
2196
|
+
* - `altered_or_fictitious_item` - The check present was either altered or fake.
|
|
2197
|
+
* - `frozen_or_blocked_account` - The account this check is drawn on is frozen.
|
|
2198
|
+
* - `post_dated` - The check is post dated.
|
|
2199
|
+
* - `endorsement_missing` - The endorsement was missing.
|
|
2200
|
+
* - `signature_missing` - The check signature was missing.
|
|
2201
|
+
* - `stop_payment_suspect` - The bank suspects a stop payment will be placed.
|
|
2202
|
+
* - `unusable_image` - The bank cannot read the image.
|
|
2203
|
+
* - `image_fails_security_check` - The check image fails the bank's security
|
|
2204
|
+
* check.
|
|
2205
|
+
* - `cannot_determine_amount` - The bank cannot determine the amount.
|
|
2206
|
+
* - `signature_irregular` - The signature is inconsistent with prior signatures.
|
|
2207
|
+
* - `non_cash_item` - The check is a non-cash item and cannot be drawn against the
|
|
2208
|
+
* account.
|
|
2209
|
+
* - `unable_to_process` - The bank is unable to process this check.
|
|
2210
|
+
* - `item_exceeds_dollar_limit` - The check exceeds the bank or customer's limit.
|
|
2211
|
+
* - `branch_or_account_sold` - The bank sold this account and no longer services
|
|
2212
|
+
* this customer.
|
|
2196
2213
|
*/
|
|
2197
2214
|
return_reason:
|
|
2198
2215
|
| 'ach_conversion_not_supported'
|
|
@@ -2206,7 +2223,21 @@ export namespace Transaction {
|
|
|
2206
2223
|
| 'unknown_reason'
|
|
2207
2224
|
| 'unmatched_details'
|
|
2208
2225
|
| 'unreadable_image'
|
|
2209
|
-
| 'endorsement_irregular'
|
|
2226
|
+
| 'endorsement_irregular'
|
|
2227
|
+
| 'altered_or_fictitious_item'
|
|
2228
|
+
| 'frozen_or_blocked_account'
|
|
2229
|
+
| 'post_dated'
|
|
2230
|
+
| 'endorsement_missing'
|
|
2231
|
+
| 'signature_missing'
|
|
2232
|
+
| 'stop_payment_suspect'
|
|
2233
|
+
| 'unusable_image'
|
|
2234
|
+
| 'image_fails_security_check'
|
|
2235
|
+
| 'cannot_determine_amount'
|
|
2236
|
+
| 'signature_irregular'
|
|
2237
|
+
| 'non_cash_item'
|
|
2238
|
+
| 'unable_to_process'
|
|
2239
|
+
| 'item_exceeds_dollar_limit'
|
|
2240
|
+
| 'branch_or_account_sold';
|
|
2210
2241
|
|
|
2211
2242
|
/**
|
|
2212
2243
|
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.19.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.19.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.19.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|