@firela/api-types 0.0.0-canary.012b1cb9

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/dist/index.mjs ADDED
@@ -0,0 +1,1263 @@
1
+ // src/generated/core/OpenAPI.ts
2
+ var Interceptors = class {
3
+ constructor() {
4
+ this._fns = [];
5
+ }
6
+ eject(fn) {
7
+ const index = this._fns.indexOf(fn);
8
+ if (index !== -1) {
9
+ this._fns = [...this._fns.slice(0, index), ...this._fns.slice(index + 1)];
10
+ }
11
+ }
12
+ use(fn) {
13
+ this._fns = [...this._fns, fn];
14
+ }
15
+ };
16
+ var OpenAPI = {
17
+ BASE: "",
18
+ CREDENTIALS: "include",
19
+ ENCODE_PATH: void 0,
20
+ HEADERS: void 0,
21
+ PASSWORD: void 0,
22
+ TOKEN: void 0,
23
+ USERNAME: void 0,
24
+ VERSION: "dev",
25
+ WITH_CREDENTIALS: false,
26
+ interceptors: {
27
+ request: new Interceptors(),
28
+ response: new Interceptors()
29
+ }
30
+ };
31
+
32
+ // src/generated/core/ApiError.ts
33
+ var ApiError = class extends Error {
34
+ constructor(request2, response, message) {
35
+ super(message);
36
+ this.name = "ApiError";
37
+ this.url = response.url;
38
+ this.status = response.status;
39
+ this.statusText = response.statusText;
40
+ this.body = response.body;
41
+ this.request = request2;
42
+ }
43
+ };
44
+
45
+ // src/generated/core/CancelablePromise.ts
46
+ var CancelError = class extends Error {
47
+ constructor(message) {
48
+ super(message);
49
+ this.name = "CancelError";
50
+ }
51
+ get isCancelled() {
52
+ return true;
53
+ }
54
+ };
55
+ var CancelablePromise = class {
56
+ constructor(executor) {
57
+ this._isResolved = false;
58
+ this._isRejected = false;
59
+ this._isCancelled = false;
60
+ this.cancelHandlers = [];
61
+ this.promise = new Promise((resolve2, reject) => {
62
+ this._resolve = resolve2;
63
+ this._reject = reject;
64
+ const onResolve = (value) => {
65
+ if (this._isResolved || this._isRejected || this._isCancelled) {
66
+ return;
67
+ }
68
+ this._isResolved = true;
69
+ if (this._resolve) this._resolve(value);
70
+ };
71
+ const onReject = (reason) => {
72
+ if (this._isResolved || this._isRejected || this._isCancelled) {
73
+ return;
74
+ }
75
+ this._isRejected = true;
76
+ if (this._reject) this._reject(reason);
77
+ };
78
+ const onCancel = (cancelHandler) => {
79
+ if (this._isResolved || this._isRejected || this._isCancelled) {
80
+ return;
81
+ }
82
+ this.cancelHandlers.push(cancelHandler);
83
+ };
84
+ Object.defineProperty(onCancel, "isResolved", {
85
+ get: () => this._isResolved
86
+ });
87
+ Object.defineProperty(onCancel, "isRejected", {
88
+ get: () => this._isRejected
89
+ });
90
+ Object.defineProperty(onCancel, "isCancelled", {
91
+ get: () => this._isCancelled
92
+ });
93
+ return executor(onResolve, onReject, onCancel);
94
+ });
95
+ }
96
+ get [Symbol.toStringTag]() {
97
+ return "Cancellable Promise";
98
+ }
99
+ then(onFulfilled, onRejected) {
100
+ return this.promise.then(onFulfilled, onRejected);
101
+ }
102
+ catch(onRejected) {
103
+ return this.promise.catch(onRejected);
104
+ }
105
+ finally(onFinally) {
106
+ return this.promise.finally(onFinally);
107
+ }
108
+ cancel() {
109
+ if (this._isResolved || this._isRejected || this._isCancelled) {
110
+ return;
111
+ }
112
+ this._isCancelled = true;
113
+ if (this.cancelHandlers.length) {
114
+ try {
115
+ for (const cancelHandler of this.cancelHandlers) {
116
+ cancelHandler();
117
+ }
118
+ } catch (error) {
119
+ console.warn("Cancellation threw an error", error);
120
+ return;
121
+ }
122
+ }
123
+ this.cancelHandlers.length = 0;
124
+ if (this._reject) this._reject(new CancelError("Request aborted"));
125
+ }
126
+ get isCancelled() {
127
+ return this._isCancelled;
128
+ }
129
+ };
130
+
131
+ // src/generated/core/request.ts
132
+ var isString = (value) => {
133
+ return typeof value === "string";
134
+ };
135
+ var isStringWithValue = (value) => {
136
+ return isString(value) && value !== "";
137
+ };
138
+ var isBlob = (value) => {
139
+ return value instanceof Blob;
140
+ };
141
+ var isFormData = (value) => {
142
+ return value instanceof FormData;
143
+ };
144
+ var base64 = (str) => {
145
+ try {
146
+ return btoa(str);
147
+ } catch (err) {
148
+ return Buffer.from(str).toString("base64");
149
+ }
150
+ };
151
+ var getQueryString = (params) => {
152
+ const qs = [];
153
+ const append = (key, value) => {
154
+ qs.push(`${encodeURIComponent(key)}=${encodeURIComponent(String(value))}`);
155
+ };
156
+ const encodePair = (key, value) => {
157
+ if (value === void 0 || value === null) {
158
+ return;
159
+ }
160
+ if (value instanceof Date) {
161
+ append(key, value.toISOString());
162
+ } else if (Array.isArray(value)) {
163
+ value.forEach((v) => encodePair(key, v));
164
+ } else if (typeof value === "object") {
165
+ Object.entries(value).forEach(([k, v]) => encodePair(`${key}[${k}]`, v));
166
+ } else {
167
+ append(key, value);
168
+ }
169
+ };
170
+ Object.entries(params).forEach(([key, value]) => encodePair(key, value));
171
+ return qs.length ? `?${qs.join("&")}` : "";
172
+ };
173
+ var getUrl = (config, options) => {
174
+ const encoder = config.ENCODE_PATH || encodeURI;
175
+ const path = options.url.replace("{api-version}", config.VERSION).replace(/{(.*?)}/g, (substring, group) => {
176
+ if (options.path?.hasOwnProperty(group)) {
177
+ return encoder(String(options.path[group]));
178
+ }
179
+ return substring;
180
+ });
181
+ const url = config.BASE + path;
182
+ return options.query ? url + getQueryString(options.query) : url;
183
+ };
184
+ var getFormData = (options) => {
185
+ if (options.formData) {
186
+ const formData = new FormData();
187
+ const process = (key, value) => {
188
+ if (isString(value) || isBlob(value)) {
189
+ formData.append(key, value);
190
+ } else {
191
+ formData.append(key, JSON.stringify(value));
192
+ }
193
+ };
194
+ Object.entries(options.formData).filter(([, value]) => value !== void 0 && value !== null).forEach(([key, value]) => {
195
+ if (Array.isArray(value)) {
196
+ value.forEach((v) => process(key, v));
197
+ } else {
198
+ process(key, value);
199
+ }
200
+ });
201
+ return formData;
202
+ }
203
+ return void 0;
204
+ };
205
+ var resolve = async (options, resolver) => {
206
+ if (typeof resolver === "function") {
207
+ return resolver(options);
208
+ }
209
+ return resolver;
210
+ };
211
+ var getHeaders = async (config, options) => {
212
+ const [token, username, password, additionalHeaders] = await Promise.all([
213
+ resolve(options, config.TOKEN),
214
+ resolve(options, config.USERNAME),
215
+ resolve(options, config.PASSWORD),
216
+ resolve(options, config.HEADERS)
217
+ ]);
218
+ const headers = Object.entries({
219
+ Accept: "application/json",
220
+ ...additionalHeaders,
221
+ ...options.headers
222
+ }).filter(([, value]) => value !== void 0 && value !== null).reduce(
223
+ (headers2, [key, value]) => ({
224
+ ...headers2,
225
+ [key]: String(value)
226
+ }),
227
+ {}
228
+ );
229
+ if (isStringWithValue(token)) {
230
+ headers["Authorization"] = `Bearer ${token}`;
231
+ }
232
+ if (isStringWithValue(username) && isStringWithValue(password)) {
233
+ const credentials = base64(`${username}:${password}`);
234
+ headers["Authorization"] = `Basic ${credentials}`;
235
+ }
236
+ if (options.body !== void 0) {
237
+ if (options.mediaType) {
238
+ headers["Content-Type"] = options.mediaType;
239
+ } else if (isBlob(options.body)) {
240
+ headers["Content-Type"] = options.body.type || "application/octet-stream";
241
+ } else if (isString(options.body)) {
242
+ headers["Content-Type"] = "text/plain";
243
+ } else if (!isFormData(options.body)) {
244
+ headers["Content-Type"] = "application/json";
245
+ }
246
+ }
247
+ return new Headers(headers);
248
+ };
249
+ var getRequestBody = (options) => {
250
+ if (options.body !== void 0) {
251
+ if (options.mediaType?.includes("application/json") || options.mediaType?.includes("+json")) {
252
+ return JSON.stringify(options.body);
253
+ } else if (isString(options.body) || isBlob(options.body) || isFormData(options.body)) {
254
+ return options.body;
255
+ } else {
256
+ return JSON.stringify(options.body);
257
+ }
258
+ }
259
+ return void 0;
260
+ };
261
+ var sendRequest = async (config, options, url, body, formData, headers, onCancel) => {
262
+ const controller = new AbortController();
263
+ let request2 = {
264
+ headers,
265
+ body: body ?? formData,
266
+ method: options.method,
267
+ signal: controller.signal
268
+ };
269
+ if (config.WITH_CREDENTIALS) {
270
+ request2.credentials = config.CREDENTIALS;
271
+ }
272
+ for (const fn of config.interceptors.request._fns) {
273
+ request2 = await fn(request2);
274
+ }
275
+ onCancel(() => controller.abort());
276
+ return await fetch(url, request2);
277
+ };
278
+ var getResponseHeader = (response, responseHeader) => {
279
+ if (responseHeader) {
280
+ const content = response.headers.get(responseHeader);
281
+ if (isString(content)) {
282
+ return content;
283
+ }
284
+ }
285
+ return void 0;
286
+ };
287
+ var getResponseBody = async (response) => {
288
+ if (response.status !== 204) {
289
+ try {
290
+ const contentType = response.headers.get("Content-Type");
291
+ if (contentType) {
292
+ const binaryTypes = [
293
+ "application/octet-stream",
294
+ "application/pdf",
295
+ "application/zip",
296
+ "audio/",
297
+ "image/",
298
+ "video/"
299
+ ];
300
+ if (contentType.includes("application/json") || contentType.includes("+json")) {
301
+ return await response.json();
302
+ } else if (binaryTypes.some((type) => contentType.includes(type))) {
303
+ return await response.blob();
304
+ } else if (contentType.includes("multipart/form-data")) {
305
+ return await response.formData();
306
+ } else if (contentType.includes("text/")) {
307
+ return await response.text();
308
+ }
309
+ }
310
+ } catch (error) {
311
+ console.error(error);
312
+ }
313
+ }
314
+ return void 0;
315
+ };
316
+ var catchErrorCodes = (options, result) => {
317
+ const errors = {
318
+ 400: "Bad Request",
319
+ 401: "Unauthorized",
320
+ 402: "Payment Required",
321
+ 403: "Forbidden",
322
+ 404: "Not Found",
323
+ 405: "Method Not Allowed",
324
+ 406: "Not Acceptable",
325
+ 407: "Proxy Authentication Required",
326
+ 408: "Request Timeout",
327
+ 409: "Conflict",
328
+ 410: "Gone",
329
+ 411: "Length Required",
330
+ 412: "Precondition Failed",
331
+ 413: "Payload Too Large",
332
+ 414: "URI Too Long",
333
+ 415: "Unsupported Media Type",
334
+ 416: "Range Not Satisfiable",
335
+ 417: "Expectation Failed",
336
+ 418: "Im a teapot",
337
+ 421: "Misdirected Request",
338
+ 422: "Unprocessable Content",
339
+ 423: "Locked",
340
+ 424: "Failed Dependency",
341
+ 425: "Too Early",
342
+ 426: "Upgrade Required",
343
+ 428: "Precondition Required",
344
+ 429: "Too Many Requests",
345
+ 431: "Request Header Fields Too Large",
346
+ 451: "Unavailable For Legal Reasons",
347
+ 500: "Internal Server Error",
348
+ 501: "Not Implemented",
349
+ 502: "Bad Gateway",
350
+ 503: "Service Unavailable",
351
+ 504: "Gateway Timeout",
352
+ 505: "HTTP Version Not Supported",
353
+ 506: "Variant Also Negotiates",
354
+ 507: "Insufficient Storage",
355
+ 508: "Loop Detected",
356
+ 510: "Not Extended",
357
+ 511: "Network Authentication Required",
358
+ ...options.errors
359
+ };
360
+ const error = errors[result.status];
361
+ if (error) {
362
+ throw new ApiError(options, result, error);
363
+ }
364
+ if (!result.ok) {
365
+ const errorStatus = result.status ?? "unknown";
366
+ const errorStatusText = result.statusText ?? "unknown";
367
+ const errorBody = (() => {
368
+ try {
369
+ return JSON.stringify(result.body, null, 2);
370
+ } catch (e) {
371
+ return void 0;
372
+ }
373
+ })();
374
+ throw new ApiError(
375
+ options,
376
+ result,
377
+ `Generic Error: status: ${errorStatus}; status text: ${errorStatusText}; body: ${errorBody}`
378
+ );
379
+ }
380
+ };
381
+ var request = (config, options) => {
382
+ return new CancelablePromise(async (resolve2, reject, onCancel) => {
383
+ try {
384
+ const url = getUrl(config, options);
385
+ const formData = getFormData(options);
386
+ const body = getRequestBody(options);
387
+ const headers = await getHeaders(config, options);
388
+ if (!onCancel.isCancelled) {
389
+ let response = await sendRequest(
390
+ config,
391
+ options,
392
+ url,
393
+ body,
394
+ formData,
395
+ headers,
396
+ onCancel
397
+ );
398
+ for (const fn of config.interceptors.response._fns) {
399
+ response = await fn(response);
400
+ }
401
+ const responseBody = await getResponseBody(response);
402
+ const responseHeader = getResponseHeader(
403
+ response,
404
+ options.responseHeader
405
+ );
406
+ const result = {
407
+ url,
408
+ ok: response.ok,
409
+ status: response.status,
410
+ statusText: response.statusText,
411
+ body: responseHeader ?? responseBody
412
+ };
413
+ catchErrorCodes(options, result);
414
+ resolve2(result.body);
415
+ }
416
+ } catch (error) {
417
+ reject(error);
418
+ }
419
+ });
420
+ };
421
+
422
+ // src/generated/services.gen.ts
423
+ var BeanAccountsService = class {
424
+ /**
425
+ * Create a new account
426
+ * Creates a new account (Beancount Open directive)
427
+ * @param data The data for the request.
428
+ * @param data.region Region code for tenant context
429
+ * @param data.requestBody
430
+ * @returns AccountResponseDto Account created successfully
431
+ * @throws ApiError
432
+ */
433
+ static accountControllerCreate(data) {
434
+ return request(OpenAPI, {
435
+ method: "POST",
436
+ url: "/api/v1/{region}/bean/accounts",
437
+ path: {
438
+ region: data.region
439
+ },
440
+ body: data.requestBody,
441
+ mediaType: "application/json",
442
+ errors: {
443
+ 409: "Account already exists"
444
+ }
445
+ });
446
+ }
447
+ /**
448
+ * List accounts
449
+ * Returns all accounts with optional filtering
450
+ * @param data The data for the request.
451
+ * @param data.region Region code for tenant context
452
+ * @param data.type Filter by account type
453
+ * @param data.status Filter by status
454
+ * @param data.isCustom Filter by custom (user-created) accounts only
455
+ * @param data.search Search term for account path
456
+ * @param data.limit Maximum number of results
457
+ * @param data.offset Number of results to skip
458
+ * @returns AccountListResponseDto Accounts retrieved successfully
459
+ * @throws ApiError
460
+ */
461
+ static accountControllerFindAll(data) {
462
+ return request(OpenAPI, {
463
+ method: "GET",
464
+ url: "/api/v1/{region}/bean/accounts",
465
+ path: {
466
+ region: data.region
467
+ },
468
+ query: {
469
+ type: data.type,
470
+ status: data.status,
471
+ isCustom: data.isCustom,
472
+ search: data.search,
473
+ limit: data.limit,
474
+ offset: data.offset
475
+ }
476
+ });
477
+ }
478
+ /**
479
+ * Get account by ID
480
+ * Returns a specific account
481
+ * @param data The data for the request.
482
+ * @param data.id Account UUID
483
+ * @param data.region Region code for tenant context
484
+ * @returns AccountResponseDto Account retrieved successfully
485
+ * @throws ApiError
486
+ */
487
+ static accountControllerFindOne(data) {
488
+ return request(OpenAPI, {
489
+ method: "GET",
490
+ url: "/api/v1/{region}/bean/accounts/{id}",
491
+ path: {
492
+ id: data.id,
493
+ region: data.region
494
+ },
495
+ errors: {
496
+ 404: "Account not found"
497
+ }
498
+ });
499
+ }
500
+ /**
501
+ * Update account
502
+ * Updates account metadata (path cannot be changed)
503
+ * @param data The data for the request.
504
+ * @param data.id Account UUID
505
+ * @param data.region Region code for tenant context
506
+ * @param data.requestBody
507
+ * @returns AccountResponseDto Account updated successfully
508
+ * @throws ApiError
509
+ */
510
+ static accountControllerUpdate(data) {
511
+ return request(OpenAPI, {
512
+ method: "PUT",
513
+ url: "/api/v1/{region}/bean/accounts/{id}",
514
+ path: {
515
+ id: data.id,
516
+ region: data.region
517
+ },
518
+ body: data.requestBody,
519
+ mediaType: "application/json",
520
+ errors: {
521
+ 404: "Account not found"
522
+ }
523
+ });
524
+ }
525
+ /**
526
+ * Delete account
527
+ * Deletes an account (only if no active transactions; voided/superseded residual postings are cleaned up)
528
+ * @param data The data for the request.
529
+ * @param data.id Account UUID
530
+ * @param data.region Region code for tenant context
531
+ * @returns void Account deleted successfully
532
+ * @throws ApiError
533
+ */
534
+ static accountControllerDelete(data) {
535
+ return request(OpenAPI, {
536
+ method: "DELETE",
537
+ url: "/api/v1/{region}/bean/accounts/{id}",
538
+ path: {
539
+ id: data.id,
540
+ region: data.region
541
+ },
542
+ errors: {
543
+ 404: "Account not found",
544
+ 409: "Account has active transactions and cannot be deleted"
545
+ }
546
+ });
547
+ }
548
+ /**
549
+ * Close account
550
+ * Closes an account (Beancount Close directive)
551
+ * @param data The data for the request.
552
+ * @param data.id Account UUID
553
+ * @param data.region Region code for tenant context
554
+ * @param data.requestBody
555
+ * @returns AccountResponseDto Account closed successfully
556
+ * @throws ApiError
557
+ */
558
+ static accountControllerClose(data) {
559
+ return request(OpenAPI, {
560
+ method: "POST",
561
+ url: "/api/v1/{region}/bean/accounts/{id}/close",
562
+ path: {
563
+ id: data.id,
564
+ region: data.region
565
+ },
566
+ body: data.requestBody,
567
+ mediaType: "application/json",
568
+ errors: {
569
+ 400: "Account is already closed",
570
+ 404: "Account not found"
571
+ }
572
+ });
573
+ }
574
+ /**
575
+ * Reopen account
576
+ * Reopens a previously closed account
577
+ * @param data The data for the request.
578
+ * @param data.id Account UUID
579
+ * @param data.region Region code for tenant context
580
+ * @param data.requestBody
581
+ * @returns AccountResponseDto Account reopened successfully
582
+ * @throws ApiError
583
+ */
584
+ static accountControllerReopen(data) {
585
+ return request(OpenAPI, {
586
+ method: "POST",
587
+ url: "/api/v1/{region}/bean/accounts/{id}/reopen",
588
+ path: {
589
+ id: data.id,
590
+ region: data.region
591
+ },
592
+ body: data.requestBody,
593
+ mediaType: "application/json",
594
+ errors: {
595
+ 400: "Account is not closed",
596
+ 404: "Account not found"
597
+ }
598
+ });
599
+ }
600
+ /**
601
+ * Post an opening-balance transaction
602
+ * Posts a double-entry opening-balance transaction against Equity:Opening-Balances for an existing Assets/Liabilities account. At most one active opening balance per account.
603
+ * @param data The data for the request.
604
+ * @param data.id Account UUID
605
+ * @param data.region Region code for tenant context
606
+ * @param data.requestBody
607
+ * @returns OpeningBalanceResultDto Opening-balance transaction created
608
+ * @throws ApiError
609
+ */
610
+ static accountControllerAddOpeningBalance(data) {
611
+ return request(OpenAPI, {
612
+ method: "POST",
613
+ url: "/api/v1/{region}/bean/accounts/{id}/opening-balance",
614
+ path: {
615
+ id: data.id,
616
+ region: data.region
617
+ },
618
+ body: data.requestBody,
619
+ mediaType: "application/json",
620
+ errors: {
621
+ 404: "Account not found",
622
+ 409: "An opening balance already exists for this account"
623
+ }
624
+ });
625
+ }
626
+ };
627
+ var BeanTransactionsService = class {
628
+ /**
629
+ * @deprecated
630
+ * Create transaction (DEPRECATED)
631
+ * DEPRECATED: Use POST /:region/bean/import/provider/:name/sync instead. This endpoint skips dedup, rule matching, and review branching.
632
+ * @param data The data for the request.
633
+ * @param data.region Region code for tenant context
634
+ * @param data.requestBody Transaction data with postings
635
+ * @returns TransactionResponseDto Transaction created successfully
636
+ * @throws ApiError
637
+ */
638
+ static transactionControllerCreate(data) {
639
+ return request(OpenAPI, {
640
+ method: "POST",
641
+ url: "/api/v1/{region}/bean/transactions",
642
+ path: {
643
+ region: data.region
644
+ },
645
+ body: data.requestBody,
646
+ mediaType: "application/json",
647
+ errors: {
648
+ 400: "Validation failed",
649
+ 401: "Authentication required",
650
+ 422: "Semantic validation failed (transaction does not balance, invalid accounts)",
651
+ 500: "Unexpected server error"
652
+ }
653
+ });
654
+ }
655
+ /**
656
+ * List transactions
657
+ * Returns a paginated list of transactions with optional filters
658
+ * @param data The data for the request.
659
+ * @param data.region Region code for tenant context
660
+ * @param data.limit Number of items per page (1-100, default: 20)
661
+ * @param data.offset Number of items to skip (default: 0)
662
+ * @param data.dateFrom Filter by start date (inclusive), format: YYYY-MM-DD
663
+ * @param data.dateTo Filter by end date (inclusive), format: YYYY-MM-DD
664
+ * @param data.status Filter by transaction status
665
+ * @param data.search Search in narration and payee fields (max 200 chars)
666
+ * @param data.accountId Filter by account ID (transactions with postings to this account)
667
+ * @param data.category Filter by ADR-0075 functional category (Group segment); matches any posting to an Expenses/Income account whose derived Group segment equals this value
668
+ * @returns TransactionListResponseDto Transaction list
669
+ * @throws ApiError
670
+ */
671
+ static transactionControllerList(data) {
672
+ return request(OpenAPI, {
673
+ method: "GET",
674
+ url: "/api/v1/{region}/bean/transactions",
675
+ path: {
676
+ region: data.region
677
+ },
678
+ query: {
679
+ limit: data.limit,
680
+ offset: data.offset,
681
+ dateFrom: data.dateFrom,
682
+ dateTo: data.dateTo,
683
+ status: data.status,
684
+ search: data.search,
685
+ accountId: data.accountId,
686
+ category: data.category
687
+ },
688
+ errors: {
689
+ 400: "Validation failed",
690
+ 401: "Authentication required"
691
+ }
692
+ });
693
+ }
694
+ /**
695
+ * @deprecated
696
+ * Batch create transactions (DEPRECATED)
697
+ * DEPRECATED: Use POST /:region/bean/import/provider/:name/sync instead. This endpoint skips dedup, rule matching, and review branching.
698
+ * @param data The data for the request.
699
+ * @param data.region Region code for tenant context
700
+ * @param data.requestBody
701
+ * @returns BatchTransactionResponseDto Transactions processed
702
+ * @throws ApiError
703
+ */
704
+ static transactionControllerCreateBatch(data) {
705
+ return request(OpenAPI, {
706
+ method: "POST",
707
+ url: "/api/v1/{region}/bean/transactions/batch",
708
+ path: {
709
+ region: data.region
710
+ },
711
+ body: data.requestBody,
712
+ mediaType: "application/json",
713
+ errors: {
714
+ 400: "Invalid input",
715
+ 401: "Authentication required"
716
+ }
717
+ });
718
+ }
719
+ /**
720
+ * Correct (supersede) a transaction
721
+ * Atomically voids the original (SUPERSEDED) and creates a replacement through the full validation pipeline.
722
+ * @param data The data for the request.
723
+ * @param data.id Original transaction ID to correct
724
+ * @param data.region Region code for tenant context
725
+ * @param data.requestBody
726
+ * @returns TransactionDetailDto Corrected transaction created
727
+ * @throws ApiError
728
+ */
729
+ static transactionControllerCorrect(data) {
730
+ return request(OpenAPI, {
731
+ method: "POST",
732
+ url: "/api/v1/{region}/bean/transactions/{id}/correct",
733
+ path: {
734
+ id: data.id,
735
+ region: data.region
736
+ },
737
+ body: data.requestBody,
738
+ mediaType: "application/json",
739
+ errors: {
740
+ 404: "Original transaction not found",
741
+ 409: "Original no longer ACTIVE (concurrent modification)",
742
+ 422: "Pipeline validation failed (does not balance, invalid accounts)"
743
+ }
744
+ });
745
+ }
746
+ /**
747
+ * Suggest transaction tags
748
+ * Returns distinct tags from the user ACTIVE transactions, sorted by usage, for autocomplete. Optional q performs a case-insensitive prefix match.
749
+ * @param data The data for the request.
750
+ * @param data.region Region code for tenant context
751
+ * @param data.q Prefix match, case-insensitive (max 50 chars)
752
+ * @param data.sort usage (default) or name
753
+ * @param data.limit Max suggestions (1-100, default 10)
754
+ * @returns TagSuggestionsResponseDto Tag suggestions
755
+ * @throws ApiError
756
+ */
757
+ static transactionControllerSuggestTags(data) {
758
+ return request(OpenAPI, {
759
+ method: "GET",
760
+ url: "/api/v1/{region}/bean/transactions/tags",
761
+ path: {
762
+ region: data.region
763
+ },
764
+ query: {
765
+ q: data.q,
766
+ sort: data.sort,
767
+ limit: data.limit
768
+ },
769
+ errors: {
770
+ 400: "Validation failed",
771
+ 401: "Authentication required"
772
+ }
773
+ });
774
+ }
775
+ /**
776
+ * Get transaction detail
777
+ * Returns transaction details including all postings
778
+ * @param data The data for the request.
779
+ * @param data.id Transaction ID
780
+ * @param data.region Region code for tenant context
781
+ * @returns TransactionDetailDto Transaction detail
782
+ * @throws ApiError
783
+ */
784
+ static transactionControllerGetDetail(data) {
785
+ return request(OpenAPI, {
786
+ method: "GET",
787
+ url: "/api/v1/{region}/bean/transactions/{id}",
788
+ path: {
789
+ id: data.id,
790
+ region: data.region
791
+ },
792
+ errors: {
793
+ 401: "Authentication required",
794
+ 404: "Transaction not found"
795
+ }
796
+ });
797
+ }
798
+ /**
799
+ * Update transaction metadata
800
+ * Updates transaction metadata (flag, payee, narration, tags, links, meta). Postings cannot be modified.
801
+ * @param data The data for the request.
802
+ * @param data.id Transaction ID
803
+ * @param data.region Region code for tenant context
804
+ * @param data.requestBody Fields to update (all optional)
805
+ * @returns TransactionDetailDto Transaction updated successfully
806
+ * @throws ApiError
807
+ */
808
+ static transactionControllerUpdate(data) {
809
+ return request(OpenAPI, {
810
+ method: "PATCH",
811
+ url: "/api/v1/{region}/bean/transactions/{id}",
812
+ path: {
813
+ id: data.id,
814
+ region: data.region
815
+ },
816
+ body: data.requestBody,
817
+ mediaType: "application/json",
818
+ errors: {
819
+ 400: "Cannot update voided transaction",
820
+ 401: "Authentication required",
821
+ 404: "Transaction not found"
822
+ }
823
+ });
824
+ }
825
+ /**
826
+ * Void transaction
827
+ * Soft-deletes a transaction by marking it as VOIDED
828
+ * @param data The data for the request.
829
+ * @param data.id Transaction ID
830
+ * @param data.region Region code for tenant context
831
+ * @returns void Transaction voided successfully
832
+ * @throws ApiError
833
+ */
834
+ static transactionControllerDelete(data) {
835
+ return request(OpenAPI, {
836
+ method: "DELETE",
837
+ url: "/api/v1/{region}/bean/transactions/{id}",
838
+ path: {
839
+ id: data.id,
840
+ region: data.region
841
+ },
842
+ errors: {
843
+ 400: "Transaction already voided",
844
+ 401: "Authentication required",
845
+ 404: "Transaction not found"
846
+ }
847
+ });
848
+ }
849
+ };
850
+ var BeanBalancesService = class {
851
+ /**
852
+ * Query account balance
853
+ * Calculate account balance at a specific date for a single currency
854
+ * @param data The data for the request.
855
+ * @param data.account Account name (e.g., "Assets:Checking")
856
+ * @param data.region Region code for tenant context
857
+ * @param data.date Date to calculate balance at (ISO 8601 format)
858
+ * @param data.currency Currency to query (e.g., "USD", "CNY")
859
+ * @returns BalanceResponseDto Balance calculated successfully
860
+ * @throws ApiError
861
+ */
862
+ static balanceControllerGetBalance(data) {
863
+ return request(OpenAPI, {
864
+ method: "GET",
865
+ url: "/api/v1/{region}/bean/balances",
866
+ path: {
867
+ region: data.region
868
+ },
869
+ query: {
870
+ account: data.account,
871
+ date: data.date,
872
+ currency: data.currency
873
+ },
874
+ errors: {
875
+ 400: "Invalid query parameters",
876
+ 401: "User not authenticated"
877
+ }
878
+ });
879
+ }
880
+ /**
881
+ * Query multi-currency account balance
882
+ * Calculate account balances for all currencies at a specific date
883
+ * @param data The data for the request.
884
+ * @param data.region Region code for tenant context
885
+ * @returns MultiCurrencyBalanceResponseDto Balances calculated successfully
886
+ * @throws ApiError
887
+ */
888
+ static balanceControllerGetMultiCurrencyBalance(data) {
889
+ return request(OpenAPI, {
890
+ method: "GET",
891
+ url: "/api/v1/{region}/bean/balances/multi-currency",
892
+ path: {
893
+ region: data.region
894
+ },
895
+ errors: {
896
+ 400: "Invalid query parameters",
897
+ 401: "User not authenticated"
898
+ }
899
+ });
900
+ }
901
+ };
902
+ var BeanCommoditiesService = class {
903
+ /**
904
+ * Create a new commodity
905
+ * Creates a new commodity definition for the authenticated user
906
+ * @param data The data for the request.
907
+ * @param data.region Region code for tenant context
908
+ * @param data.requestBody
909
+ * @returns CommodityResponseDto Commodity created successfully
910
+ * @throws ApiError
911
+ */
912
+ static commodityControllerCreate(data) {
913
+ return request(OpenAPI, {
914
+ method: "POST",
915
+ url: "/api/v1/{region}/bean/commodities",
916
+ path: {
917
+ region: data.region
918
+ },
919
+ body: data.requestBody,
920
+ mediaType: "application/json",
921
+ errors: {
922
+ 400: "Invalid input data",
923
+ 409: "Commodity already exists"
924
+ }
925
+ });
926
+ }
927
+ /**
928
+ * List user commodities
929
+ * Returns all commodity definitions for the authenticated user with optional filtering
930
+ * @param data The data for the request.
931
+ * @param data.region Region code for tenant context
932
+ * @param data.search Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
933
+ * @param data.symbol Filter by exact symbol match
934
+ * @returns CommodityListResponseDto Commodities retrieved successfully
935
+ * @throws ApiError
936
+ */
937
+ static commodityControllerFindAll(data) {
938
+ return request(OpenAPI, {
939
+ method: "GET",
940
+ url: "/api/v1/{region}/bean/commodities",
941
+ path: {
942
+ region: data.region
943
+ },
944
+ query: {
945
+ search: data.search,
946
+ symbol: data.symbol
947
+ }
948
+ });
949
+ }
950
+ /**
951
+ * Get commodity by symbol
952
+ * Returns a specific commodity definition by its symbol
953
+ * @param data The data for the request.
954
+ * @param data.symbol Commodity symbol
955
+ * @param data.region Region code for tenant context
956
+ * @returns CommodityResponseDto Commodity retrieved successfully
957
+ * @throws ApiError
958
+ */
959
+ static commodityControllerFindOne(data) {
960
+ return request(OpenAPI, {
961
+ method: "GET",
962
+ url: "/api/v1/{region}/bean/commodities/{symbol}",
963
+ path: {
964
+ symbol: data.symbol,
965
+ region: data.region
966
+ },
967
+ errors: {
968
+ 404: "Commodity not found"
969
+ }
970
+ });
971
+ }
972
+ /**
973
+ * Update commodity
974
+ * Updates an existing commodity definition. Symbol cannot be changed.
975
+ * @param data The data for the request.
976
+ * @param data.symbol Commodity symbol
977
+ * @param data.region Region code for tenant context
978
+ * @param data.requestBody
979
+ * @returns CommodityResponseDto Commodity updated successfully
980
+ * @throws ApiError
981
+ */
982
+ static commodityControllerUpdate(data) {
983
+ return request(OpenAPI, {
984
+ method: "PUT",
985
+ url: "/api/v1/{region}/bean/commodities/{symbol}",
986
+ path: {
987
+ symbol: data.symbol,
988
+ region: data.region
989
+ },
990
+ body: data.requestBody,
991
+ mediaType: "application/json",
992
+ errors: {
993
+ 400: "Invalid input data",
994
+ 404: "Commodity not found"
995
+ }
996
+ });
997
+ }
998
+ /**
999
+ * Delete commodity
1000
+ * Deletes a commodity definition
1001
+ * @param data The data for the request.
1002
+ * @param data.symbol Commodity symbol
1003
+ * @param data.region Region code for tenant context
1004
+ * @returns void Commodity deleted successfully
1005
+ * @throws ApiError
1006
+ */
1007
+ static commodityControllerDelete(data) {
1008
+ return request(OpenAPI, {
1009
+ method: "DELETE",
1010
+ url: "/api/v1/{region}/bean/commodities/{symbol}",
1011
+ path: {
1012
+ symbol: data.symbol,
1013
+ region: data.region
1014
+ },
1015
+ errors: {
1016
+ 404: "Commodity not found"
1017
+ }
1018
+ });
1019
+ }
1020
+ /**
1021
+ * Ensure commodity exists
1022
+ * Gets existing commodity or creates it with automatic initialization from OpenBB
1023
+ * @param data The data for the request.
1024
+ * @param data.symbol Commodity symbol
1025
+ * @param data.region Region code for tenant context
1026
+ * @returns CommodityResponseDto Commodity retrieved or created
1027
+ * @throws ApiError
1028
+ */
1029
+ static commodityControllerGetOrCreate(data) {
1030
+ return request(OpenAPI, {
1031
+ method: "POST",
1032
+ url: "/api/v1/{region}/bean/commodities/{symbol}/ensure",
1033
+ path: {
1034
+ symbol: data.symbol,
1035
+ region: data.region
1036
+ }
1037
+ });
1038
+ }
1039
+ /**
1040
+ * Bulk create commodities
1041
+ * Creates multiple commodities from a list of symbols, useful for initialization
1042
+ * @param data The data for the request.
1043
+ * @param data.region Region code for tenant context
1044
+ * @returns CommodityResponseDto Commodities created successfully
1045
+ * @throws ApiError
1046
+ */
1047
+ static commodityControllerBulkCreate(data) {
1048
+ return request(OpenAPI, {
1049
+ method: "POST",
1050
+ url: "/api/v1/{region}/bean/commodities/bulk",
1051
+ path: {
1052
+ region: data.region
1053
+ }
1054
+ });
1055
+ }
1056
+ };
1057
+ var ProviderSyncService = class {
1058
+ /**
1059
+ * Sync transactions from financial data provider
1060
+ *
1061
+ * Accepts raw transactions from external financial data providers, transforms them to Beancount format, and processes them through the ingestion pipeline.
1062
+ *
1063
+ * **Supported Providers:**
1064
+ * - **plaid**: Plaid API (US, Canada, Europe)
1065
+ * - **teller**: Teller API (US)
1066
+ * - **truelayer**: TrueLayer Open Banking (UK, Europe)
1067
+ * - **gocardless**: GoCardless Bank Account Data (Europe)
1068
+ * - **simplefin**: SimpleFIN (Self-hosted)
1069
+ * - **yodlee**: Yodlee (Global)
1070
+ * - **beancount-direct**: Beancount format transactions
1071
+ * - **parsed-bill**: Client-side parsed bill transactions
1072
+ *
1073
+ * **Processing Flow:**
1074
+ * 1. Transform raw data via provider adapter
1075
+ * 2. Validate transaction format
1076
+ * 3. Deduplicate using originalId
1077
+ * 4. Classify using rule engine
1078
+ * 5. Route low-confidence to Review Center
1079
+ * 6. Persist validated transactions
1080
+ *
1081
+ * @param data The data for the request.
1082
+ * @param data.providerName Provider name
1083
+ * @param data.region Region code for tenant context
1084
+ * @param data.requestBody
1085
+ * @returns ProviderSyncResponseDto Sync completed successfully
1086
+ * @throws ApiError
1087
+ */
1088
+ static providerSyncControllerSync(data) {
1089
+ return request(OpenAPI, {
1090
+ method: "POST",
1091
+ url: "/api/v1/{region}/bean/import/provider/{providerName}/sync",
1092
+ path: {
1093
+ providerName: data.providerName,
1094
+ region: data.region
1095
+ },
1096
+ body: data.requestBody,
1097
+ mediaType: "application/json",
1098
+ errors: {
1099
+ 400: "Invalid request data",
1100
+ 401: "Missing or invalid authentication",
1101
+ 404: "Provider not supported"
1102
+ }
1103
+ });
1104
+ }
1105
+ /**
1106
+ * Get supported providers
1107
+ * Returns a list of all providers supported by the sync endpoint.
1108
+ * @param data The data for the request.
1109
+ * @param data.region Region code for tenant context
1110
+ * @returns SupportedProvidersResponseDto List of supported providers
1111
+ * @throws ApiError
1112
+ */
1113
+ static providerSyncControllerGetSupportedProviders(data) {
1114
+ return request(OpenAPI, {
1115
+ method: "GET",
1116
+ url: "/api/v1/{region}/bean/import/provider/supported",
1117
+ path: {
1118
+ region: data.region
1119
+ },
1120
+ errors: {
1121
+ 401: "Missing or invalid authentication"
1122
+ }
1123
+ });
1124
+ }
1125
+ /**
1126
+ * Check if provider is supported
1127
+ * Returns whether a specific provider is supported.
1128
+ * @param data The data for the request.
1129
+ * @param data.providerName Provider name to check
1130
+ * @param data.region Region code for tenant context
1131
+ * @returns unknown Provider support status
1132
+ * @throws ApiError
1133
+ */
1134
+ static providerSyncControllerIsProviderSupported(data) {
1135
+ return request(OpenAPI, {
1136
+ method: "GET",
1137
+ url: "/api/v1/{region}/bean/import/provider/{providerName}/supported",
1138
+ path: {
1139
+ providerName: data.providerName,
1140
+ region: data.region
1141
+ },
1142
+ errors: {
1143
+ 401: "Missing or invalid authentication"
1144
+ }
1145
+ });
1146
+ }
1147
+ };
1148
+ var HealthService = class {
1149
+ /**
1150
+ * Basic health check for K8s/load balancer probes
1151
+ * @returns unknown Service is healthy
1152
+ * @throws ApiError
1153
+ */
1154
+ static healthControllerGetHealth() {
1155
+ return request(OpenAPI, {
1156
+ method: "GET",
1157
+ url: "/api/v1/health",
1158
+ errors: {
1159
+ 503: "Service unavailable"
1160
+ }
1161
+ });
1162
+ }
1163
+ /**
1164
+ * Check database connection health
1165
+ * @returns unknown Database is healthy
1166
+ * @throws ApiError
1167
+ */
1168
+ static healthControllerCheckDatabase() {
1169
+ return request(OpenAPI, {
1170
+ method: "GET",
1171
+ url: "/api/v1/health/database",
1172
+ errors: {
1173
+ 503: "Database unavailable"
1174
+ }
1175
+ });
1176
+ }
1177
+ /**
1178
+ * Check OpenBB schema status
1179
+ * @returns unknown OpenBB status
1180
+ * @throws ApiError
1181
+ */
1182
+ static healthControllerCheckOpenBb() {
1183
+ return request(OpenAPI, {
1184
+ method: "GET",
1185
+ url: "/api/v1/health/openbb",
1186
+ errors: {
1187
+ 503: "OpenBB unavailable"
1188
+ }
1189
+ });
1190
+ }
1191
+ /**
1192
+ * Check Redis connection health
1193
+ * @returns unknown Redis is healthy
1194
+ * @throws ApiError
1195
+ */
1196
+ static healthControllerCheckRedis() {
1197
+ return request(OpenAPI, {
1198
+ method: "GET",
1199
+ url: "/api/v1/health/redis",
1200
+ errors: {
1201
+ 503: "Redis unavailable"
1202
+ }
1203
+ });
1204
+ }
1205
+ /**
1206
+ * Get status of all circuit breakers
1207
+ * @returns unknown Circuit breaker status
1208
+ * @throws ApiError
1209
+ */
1210
+ static healthControllerGetCircuitBreakersHealth() {
1211
+ return request(OpenAPI, {
1212
+ method: "GET",
1213
+ url: "/api/v1/health/circuit-breakers",
1214
+ errors: {
1215
+ 401: "Unauthorized",
1216
+ 500: "Internal error"
1217
+ }
1218
+ });
1219
+ }
1220
+ /**
1221
+ * Reset a circuit breaker to CLOSED state
1222
+ * @param data The data for the request.
1223
+ * @param data.name Circuit breaker name to reset
1224
+ * @returns unknown Circuit breaker reset successfully
1225
+ * @throws ApiError
1226
+ */
1227
+ static healthControllerResetCircuitBreaker(data) {
1228
+ return request(OpenAPI, {
1229
+ method: "POST",
1230
+ url: "/api/v1/health/circuit-breakers/{name}/reset",
1231
+ path: {
1232
+ name: data.name
1233
+ },
1234
+ errors: {
1235
+ 401: "Unauthorized",
1236
+ 404: "Circuit breaker not found"
1237
+ }
1238
+ });
1239
+ }
1240
+ /**
1241
+ * Get health check metrics and statistics
1242
+ * @returns unknown Health metrics
1243
+ * @throws ApiError
1244
+ */
1245
+ static healthControllerGetMetrics() {
1246
+ return request(OpenAPI, {
1247
+ method: "GET",
1248
+ url: "/api/v1/health/metrics",
1249
+ errors: {
1250
+ 401: "Unauthorized"
1251
+ }
1252
+ });
1253
+ }
1254
+ };
1255
+ export {
1256
+ BeanAccountsService,
1257
+ BeanBalancesService,
1258
+ BeanCommoditiesService,
1259
+ BeanTransactionsService,
1260
+ HealthService,
1261
+ OpenAPI,
1262
+ ProviderSyncService
1263
+ };