-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathledger-event-handlers.ts
360 lines (304 loc) · 8.06 KB
/
ledger-event-handlers.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import { isRequestOptions } from '../core';
import * as Core from '../core';
import { Page, type PageParams } from '../pagination';
export class LedgerEventHandlers extends APIResource {
/**
* create ledger_event_handler
*/
create(
params: LedgerEventHandlerCreateParams,
options?: Core.RequestOptions,
): Core.APIPromise<LedgerEventHandler> {
// @ts-expect-error idempotency key header isn't defined anymore but is included here for back-compat
const { 'Idempotency-Key': idempotencyKey, ...body } = params;
if (idempotencyKey) {
console.warn(
"The Idempotency-Key request param is deprecated, the 'idempotencyToken' option should be set instead",
);
}
return this._client.post('/api/ledger_event_handlers', {
body,
...options,
headers: { 'Idempotency-Key': idempotencyKey, ...options?.headers },
});
}
/**
* Get details on a single ledger event handler.
*/
retrieve(id: string, options?: Core.RequestOptions): Core.APIPromise<LedgerEventHandler> {
return this._client.get(`/api/ledger_event_handlers/${id}`, options);
}
/**
* Get a list of ledger event handlers.
*/
list(
query?: LedgerEventHandlerListParams,
options?: Core.RequestOptions,
): Core.PagePromise<LedgerEventHandlersPage, LedgerEventHandler>;
list(options?: Core.RequestOptions): Core.PagePromise<LedgerEventHandlersPage, LedgerEventHandler>;
list(
query: LedgerEventHandlerListParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.PagePromise<LedgerEventHandlersPage, LedgerEventHandler> {
if (isRequestOptions(query)) {
return this.list({}, query);
}
return this._client.getAPIList('/api/ledger_event_handlers', LedgerEventHandlersPage, {
query,
...options,
});
}
/**
* Archive a ledger event handler.
*/
del(id: string, options?: Core.RequestOptions): Core.APIPromise<LedgerEventHandler> {
return this._client.delete(`/api/ledger_event_handlers/${id}`, options);
}
}
export class LedgerEventHandlersPage extends Page<LedgerEventHandler> {}
/**
* @deprecated
*/
export interface LedgerEventHandler {
id: string;
/**
* @deprecated
*/
conditions: LedgerEventHandler.Conditions | null;
created_at: string;
/**
* An optional description.
*/
description: string | null;
discarded_at: string | null;
/**
* The id of the ledger that this event handler belongs to.
*/
ledger_id: string | null;
/**
* @deprecated
*/
ledger_transaction_template: LedgerEventHandler.LedgerTransactionTemplate;
/**
* This field will be true if this object exists in the live environment or false
* if it exists in the test environment.
*/
live_mode: boolean;
/**
* Additional data represented as key-value pairs. Both the key and value must be
* strings.
*/
metadata: Record<string, string> | null;
/**
* Name of the ledger event handler.
*/
name: string;
object: string;
updated_at: string;
/**
* @deprecated
*/
variables: Record<string, LedgerEventHandlerVariable> | null;
}
export namespace LedgerEventHandler {
/**
* @deprecated
*/
export interface Conditions {
/**
* The LHS of the conditional.
*/
field: string;
/**
* What the operator between the `field` and `value` is.
*/
operator: string;
/**
* The RHS of the conditional.
*/
value: string;
}
/**
* @deprecated
*/
export interface LedgerTransactionTemplate {
/**
* An optional description for internal use.
*/
description: string | null;
/**
* The timestamp (ISO8601 format) at which the ledger transaction happened for
* reporting purposes.
*/
effective_at: string | null;
/**
* An array of ledger entry objects.
*/
ledger_entries: Array<LedgerTransactionTemplate.LedgerEntry>;
/**
* To post a ledger transaction at creation, use `posted`.
*/
status: string | null;
}
export namespace LedgerTransactionTemplate {
/**
* @deprecated
*/
export interface LedgerEntry {
/**
* The LHS of the conditional.
*/
amount: string;
/**
* What the operator between the `field` and `value` is.
*/
direction: string;
/**
* The RHS of the conditional.
*/
ledger_account_id: string;
}
}
}
/**
* @deprecated
*/
export interface LedgerEventHandlerVariable {
/**
* @deprecated
*/
query: LedgerEventHandlerVariable.Query;
/**
* The type of object this variable is. Currently, only "ledger_account" is
* supported.
*/
type: string;
}
export namespace LedgerEventHandlerVariable {
/**
* @deprecated
*/
export interface Query {
/**
* The LHS of the conditional.
*/
field: string;
/**
* What the operator between the `field` and `value` is.
*/
operator: string;
/**
* The RHS of the conditional.
*/
value: string;
}
}
export interface LedgerEventHandlerCreateParams {
ledger_transaction_template: LedgerEventHandlerCreateParams.LedgerTransactionTemplate;
/**
* Name of the ledger event handler.
*/
name: string;
conditions?: LedgerEventHandlerCreateParams.Conditions | null;
/**
* An optional description.
*/
description?: string | null;
/**
* The id of the ledger that this account belongs to.
*/
ledger_id?: string;
/**
* Additional data represented as key-value pairs. Both the key and value must be
* strings.
*/
metadata?: Record<string, string> | null;
variables?: Record<string, LedgerEventHandlerVariable> | null;
}
export namespace LedgerEventHandlerCreateParams {
/**
* @deprecated
*/
export interface LedgerTransactionTemplate {
/**
* An optional description for internal use.
*/
description: string | null;
/**
* The timestamp (ISO8601 format) at which the ledger transaction happened for
* reporting purposes.
*/
effective_at: string | null;
/**
* An array of ledger entry objects.
*/
ledger_entries: Array<LedgerTransactionTemplate.LedgerEntry>;
/**
* To post a ledger transaction at creation, use `posted`.
*/
status: string | null;
}
export namespace LedgerTransactionTemplate {
/**
* @deprecated
*/
export interface LedgerEntry {
/**
* The LHS of the conditional.
*/
amount: string;
/**
* What the operator between the `field` and `value` is.
*/
direction: string;
/**
* The RHS of the conditional.
*/
ledger_account_id: string;
}
}
/**
* @deprecated
*/
export interface Conditions {
/**
* The LHS of the conditional.
*/
field: string;
/**
* What the operator between the `field` and `value` is.
*/
operator: string;
/**
* The RHS of the conditional.
*/
value: string;
}
}
export interface LedgerEventHandlerListParams extends PageParams {
/**
* Use `gt` (>), `gte` (>=), `lt` (<), `lte` (<=), or `eq` (=) to filter by the
* posted at timestamp. For example, for all times after Jan 1 2000 12:00 UTC, use
* created_at%5Bgt%5D=2000-01-01T12:00:00Z.
*/
created_at?: Record<string, string>;
/**
* For example, if you want to query for records with metadata key `Type` and value
* `Loan`, the query would be `metadata%5BType%5D=Loan`. This encodes the query
* parameters.
*/
metadata?: Record<string, string>;
name?: string;
}
LedgerEventHandlers.LedgerEventHandlersPage = LedgerEventHandlersPage;
export declare namespace LedgerEventHandlers {
export {
type LedgerEventHandler as LedgerEventHandler,
type LedgerEventHandlerVariable as LedgerEventHandlerVariable,
LedgerEventHandlersPage as LedgerEventHandlersPage,
type LedgerEventHandlerCreateParams as LedgerEventHandlerCreateParams,
type LedgerEventHandlerListParams as LedgerEventHandlerListParams,
};
}