@firela/api-types 0.0.0-canary.1917579c

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,1179 @@
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 path or i18nKey
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 transactions)
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 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
+ var BeanTransactionsService = class {
602
+ /**
603
+ * @deprecated
604
+ * Create transaction (DEPRECATED)
605
+ * DEPRECATED: Use POST /:region/bean/import/provider/:name/sync instead. This endpoint skips dedup, rule matching, and review branching.
606
+ * @param data The data for the request.
607
+ * @param data.region Region code for tenant context
608
+ * @param data.requestBody Transaction data with postings
609
+ * @returns TransactionResponseDto Transaction created successfully
610
+ * @throws ApiError
611
+ */
612
+ static transactionControllerCreate(data) {
613
+ return request(OpenAPI, {
614
+ method: "POST",
615
+ url: "/api/v1/{region}/bean/transactions",
616
+ path: {
617
+ region: data.region
618
+ },
619
+ body: data.requestBody,
620
+ mediaType: "application/json",
621
+ errors: {
622
+ 400: "Validation failed",
623
+ 401: "Authentication required",
624
+ 422: "Semantic validation failed (transaction does not balance, invalid accounts)",
625
+ 500: "Unexpected server error"
626
+ }
627
+ });
628
+ }
629
+ /**
630
+ * List transactions
631
+ * Returns a paginated list of transactions with optional filters
632
+ * @param data The data for the request.
633
+ * @param data.region Region code for tenant context
634
+ * @param data.limit Number of items per page (1-100, default: 20)
635
+ * @param data.offset Number of items to skip (default: 0)
636
+ * @param data.dateFrom Filter by start date (inclusive), format: YYYY-MM-DD
637
+ * @param data.dateTo Filter by end date (inclusive), format: YYYY-MM-DD
638
+ * @param data.status Filter by transaction status
639
+ * @param data.search Search in narration and payee fields (max 200 chars)
640
+ * @param data.accountId Filter by account ID (transactions with postings to this account)
641
+ * @returns TransactionListResponseDto Transaction list
642
+ * @throws ApiError
643
+ */
644
+ static transactionControllerList(data) {
645
+ return request(OpenAPI, {
646
+ method: "GET",
647
+ url: "/api/v1/{region}/bean/transactions",
648
+ path: {
649
+ region: data.region
650
+ },
651
+ query: {
652
+ limit: data.limit,
653
+ offset: data.offset,
654
+ dateFrom: data.dateFrom,
655
+ dateTo: data.dateTo,
656
+ status: data.status,
657
+ search: data.search,
658
+ accountId: data.accountId
659
+ },
660
+ errors: {
661
+ 400: "Validation failed",
662
+ 401: "Authentication required"
663
+ }
664
+ });
665
+ }
666
+ /**
667
+ * @deprecated
668
+ * Batch create transactions (DEPRECATED)
669
+ * DEPRECATED: Use POST /:region/bean/import/provider/:name/sync instead. This endpoint skips dedup, rule matching, and review branching.
670
+ * @param data The data for the request.
671
+ * @param data.region Region code for tenant context
672
+ * @param data.requestBody
673
+ * @returns BatchTransactionResponseDto Transactions processed
674
+ * @throws ApiError
675
+ */
676
+ static transactionControllerCreateBatch(data) {
677
+ return request(OpenAPI, {
678
+ method: "POST",
679
+ url: "/api/v1/{region}/bean/transactions/batch",
680
+ path: {
681
+ region: data.region
682
+ },
683
+ body: data.requestBody,
684
+ mediaType: "application/json",
685
+ errors: {
686
+ 400: "Invalid input",
687
+ 401: "Authentication required"
688
+ }
689
+ });
690
+ }
691
+ /**
692
+ * Get transaction detail
693
+ * Returns transaction details including all postings
694
+ * @param data The data for the request.
695
+ * @param data.id Transaction ID
696
+ * @param data.region Region code for tenant context
697
+ * @returns TransactionDetailDto Transaction detail
698
+ * @throws ApiError
699
+ */
700
+ static transactionControllerGetDetail(data) {
701
+ return request(OpenAPI, {
702
+ method: "GET",
703
+ url: "/api/v1/{region}/bean/transactions/{id}",
704
+ path: {
705
+ id: data.id,
706
+ region: data.region
707
+ },
708
+ errors: {
709
+ 401: "Authentication required",
710
+ 404: "Transaction not found"
711
+ }
712
+ });
713
+ }
714
+ /**
715
+ * Update transaction metadata
716
+ * Updates transaction metadata (flag, payee, narration, tags, links, meta). Postings cannot be modified.
717
+ * @param data The data for the request.
718
+ * @param data.id Transaction ID
719
+ * @param data.region Region code for tenant context
720
+ * @param data.requestBody Fields to update (all optional)
721
+ * @returns TransactionDetailDto Transaction updated successfully
722
+ * @throws ApiError
723
+ */
724
+ static transactionControllerUpdate(data) {
725
+ return request(OpenAPI, {
726
+ method: "PATCH",
727
+ url: "/api/v1/{region}/bean/transactions/{id}",
728
+ path: {
729
+ id: data.id,
730
+ region: data.region
731
+ },
732
+ body: data.requestBody,
733
+ mediaType: "application/json",
734
+ errors: {
735
+ 400: "Cannot update voided transaction",
736
+ 401: "Authentication required",
737
+ 404: "Transaction not found"
738
+ }
739
+ });
740
+ }
741
+ /**
742
+ * Void transaction
743
+ * Soft-deletes a transaction by marking it as VOIDED
744
+ * @param data The data for the request.
745
+ * @param data.id Transaction ID
746
+ * @param data.region Region code for tenant context
747
+ * @returns void Transaction voided successfully
748
+ * @throws ApiError
749
+ */
750
+ static transactionControllerDelete(data) {
751
+ return request(OpenAPI, {
752
+ method: "DELETE",
753
+ url: "/api/v1/{region}/bean/transactions/{id}",
754
+ path: {
755
+ id: data.id,
756
+ region: data.region
757
+ },
758
+ errors: {
759
+ 400: "Transaction already voided",
760
+ 401: "Authentication required",
761
+ 404: "Transaction not found"
762
+ }
763
+ });
764
+ }
765
+ };
766
+ var BeanBalancesService = class {
767
+ /**
768
+ * Query account balance
769
+ * Calculate account balance at a specific date for a single currency
770
+ * @param data The data for the request.
771
+ * @param data.account Account name (e.g., "Assets:Bank:Checking")
772
+ * @param data.region Region code for tenant context
773
+ * @param data.date Date to calculate balance at (ISO 8601 format)
774
+ * @param data.currency Currency to query (e.g., "USD", "CNY")
775
+ * @returns BalanceResponseDto Balance calculated successfully
776
+ * @throws ApiError
777
+ */
778
+ static balanceControllerGetBalance(data) {
779
+ return request(OpenAPI, {
780
+ method: "GET",
781
+ url: "/api/v1/{region}/bean/balances",
782
+ path: {
783
+ region: data.region
784
+ },
785
+ query: {
786
+ account: data.account,
787
+ date: data.date,
788
+ currency: data.currency
789
+ },
790
+ errors: {
791
+ 400: "Invalid query parameters",
792
+ 401: "User not authenticated"
793
+ }
794
+ });
795
+ }
796
+ /**
797
+ * Query multi-currency account balance
798
+ * Calculate account balances for all currencies at a specific date
799
+ * @param data The data for the request.
800
+ * @param data.region Region code for tenant context
801
+ * @returns MultiCurrencyBalanceResponseDto Balances calculated successfully
802
+ * @throws ApiError
803
+ */
804
+ static balanceControllerGetMultiCurrencyBalance(data) {
805
+ return request(OpenAPI, {
806
+ method: "GET",
807
+ url: "/api/v1/{region}/bean/balances/multi-currency",
808
+ path: {
809
+ region: data.region
810
+ },
811
+ errors: {
812
+ 400: "Invalid query parameters",
813
+ 401: "User not authenticated"
814
+ }
815
+ });
816
+ }
817
+ };
818
+ var BeanCommoditiesService = class {
819
+ /**
820
+ * Create a new commodity
821
+ * Creates a new commodity definition for the authenticated user
822
+ * @param data The data for the request.
823
+ * @param data.region Region code for tenant context
824
+ * @param data.requestBody
825
+ * @returns CommodityResponseDto Commodity created successfully
826
+ * @throws ApiError
827
+ */
828
+ static commodityControllerCreate(data) {
829
+ return request(OpenAPI, {
830
+ method: "POST",
831
+ url: "/api/v1/{region}/bean/commodities",
832
+ path: {
833
+ region: data.region
834
+ },
835
+ body: data.requestBody,
836
+ mediaType: "application/json",
837
+ errors: {
838
+ 400: "Invalid input data",
839
+ 409: "Commodity already exists"
840
+ }
841
+ });
842
+ }
843
+ /**
844
+ * List user commodities
845
+ * Returns all commodity definitions for the authenticated user with optional filtering
846
+ * @param data The data for the request.
847
+ * @param data.region Region code for tenant context
848
+ * @param data.search Search term for symbol or metadata fields (partial match). Searches symbol and metadata.name.
849
+ * @param data.symbol Filter by exact symbol match
850
+ * @returns CommodityListResponseDto Commodities retrieved successfully
851
+ * @throws ApiError
852
+ */
853
+ static commodityControllerFindAll(data) {
854
+ return request(OpenAPI, {
855
+ method: "GET",
856
+ url: "/api/v1/{region}/bean/commodities",
857
+ path: {
858
+ region: data.region
859
+ },
860
+ query: {
861
+ search: data.search,
862
+ symbol: data.symbol
863
+ }
864
+ });
865
+ }
866
+ /**
867
+ * Get commodity by symbol
868
+ * Returns a specific commodity definition by its symbol
869
+ * @param data The data for the request.
870
+ * @param data.symbol Commodity symbol
871
+ * @param data.region Region code for tenant context
872
+ * @returns CommodityResponseDto Commodity retrieved successfully
873
+ * @throws ApiError
874
+ */
875
+ static commodityControllerFindOne(data) {
876
+ return request(OpenAPI, {
877
+ method: "GET",
878
+ url: "/api/v1/{region}/bean/commodities/{symbol}",
879
+ path: {
880
+ symbol: data.symbol,
881
+ region: data.region
882
+ },
883
+ errors: {
884
+ 404: "Commodity not found"
885
+ }
886
+ });
887
+ }
888
+ /**
889
+ * Update commodity
890
+ * Updates an existing commodity definition. Symbol cannot be changed.
891
+ * @param data The data for the request.
892
+ * @param data.symbol Commodity symbol
893
+ * @param data.region Region code for tenant context
894
+ * @param data.requestBody
895
+ * @returns CommodityResponseDto Commodity updated successfully
896
+ * @throws ApiError
897
+ */
898
+ static commodityControllerUpdate(data) {
899
+ return request(OpenAPI, {
900
+ method: "PUT",
901
+ url: "/api/v1/{region}/bean/commodities/{symbol}",
902
+ path: {
903
+ symbol: data.symbol,
904
+ region: data.region
905
+ },
906
+ body: data.requestBody,
907
+ mediaType: "application/json",
908
+ errors: {
909
+ 400: "Invalid input data",
910
+ 404: "Commodity not found"
911
+ }
912
+ });
913
+ }
914
+ /**
915
+ * Delete commodity
916
+ * Deletes a commodity definition
917
+ * @param data The data for the request.
918
+ * @param data.symbol Commodity symbol
919
+ * @param data.region Region code for tenant context
920
+ * @returns void Commodity deleted successfully
921
+ * @throws ApiError
922
+ */
923
+ static commodityControllerDelete(data) {
924
+ return request(OpenAPI, {
925
+ method: "DELETE",
926
+ url: "/api/v1/{region}/bean/commodities/{symbol}",
927
+ path: {
928
+ symbol: data.symbol,
929
+ region: data.region
930
+ },
931
+ errors: {
932
+ 404: "Commodity not found"
933
+ }
934
+ });
935
+ }
936
+ /**
937
+ * Ensure commodity exists
938
+ * Gets existing commodity or creates it with automatic initialization from OpenBB
939
+ * @param data The data for the request.
940
+ * @param data.symbol Commodity symbol
941
+ * @param data.region Region code for tenant context
942
+ * @returns CommodityResponseDto Commodity retrieved or created
943
+ * @throws ApiError
944
+ */
945
+ static commodityControllerGetOrCreate(data) {
946
+ return request(OpenAPI, {
947
+ method: "POST",
948
+ url: "/api/v1/{region}/bean/commodities/{symbol}/ensure",
949
+ path: {
950
+ symbol: data.symbol,
951
+ region: data.region
952
+ }
953
+ });
954
+ }
955
+ /**
956
+ * Bulk create commodities
957
+ * Creates multiple commodities from a list of symbols, useful for initialization
958
+ * @param data The data for the request.
959
+ * @param data.region Region code for tenant context
960
+ * @returns CommodityResponseDto Commodities created successfully
961
+ * @throws ApiError
962
+ */
963
+ static commodityControllerBulkCreate(data) {
964
+ return request(OpenAPI, {
965
+ method: "POST",
966
+ url: "/api/v1/{region}/bean/commodities/bulk",
967
+ path: {
968
+ region: data.region
969
+ }
970
+ });
971
+ }
972
+ };
973
+ var ProviderSyncService = class {
974
+ /**
975
+ * Sync transactions from financial data provider
976
+ *
977
+ * Accepts raw transactions from external financial data providers, transforms them to Beancount format, and processes them through the ingestion pipeline.
978
+ *
979
+ * **Supported Providers:**
980
+ * - **plaid**: Plaid API (US, Canada, Europe)
981
+ * - **teller**: Teller API (US)
982
+ * - **truelayer**: TrueLayer Open Banking (UK, Europe)
983
+ * - **gocardless**: GoCardless Bank Account Data (Europe)
984
+ * - **simplefin**: SimpleFIN (Self-hosted)
985
+ * - **yodlee**: Yodlee (Global)
986
+ * - **beancount-direct**: Beancount format transactions
987
+ * - **parsed-bill**: Client-side parsed bill transactions
988
+ *
989
+ * **Processing Flow:**
990
+ * 1. Transform raw data via provider adapter
991
+ * 2. Validate transaction format
992
+ * 3. Deduplicate using originalId
993
+ * 4. Classify using rule engine
994
+ * 5. Route low-confidence to Review Center
995
+ * 6. Persist validated transactions
996
+ *
997
+ * @param data The data for the request.
998
+ * @param data.providerName Provider name
999
+ * @param data.region Region code
1000
+ * @param data.requestBody
1001
+ * @returns ProviderSyncResponseDto Sync completed successfully
1002
+ * @throws ApiError
1003
+ */
1004
+ static providerSyncControllerSync(data) {
1005
+ return request(OpenAPI, {
1006
+ method: "POST",
1007
+ url: "/api/v1/{region}/bean/import/provider/{providerName}/sync",
1008
+ path: {
1009
+ providerName: data.providerName,
1010
+ region: data.region
1011
+ },
1012
+ body: data.requestBody,
1013
+ mediaType: "application/json",
1014
+ errors: {
1015
+ 400: "Invalid request data",
1016
+ 401: "Missing or invalid authentication",
1017
+ 404: "Provider not supported"
1018
+ }
1019
+ });
1020
+ }
1021
+ /**
1022
+ * Get supported providers
1023
+ * Returns a list of all providers supported by the sync endpoint.
1024
+ * @param data The data for the request.
1025
+ * @param data.region Region code for tenant context
1026
+ * @returns SupportedProvidersResponseDto List of supported providers
1027
+ * @throws ApiError
1028
+ */
1029
+ static providerSyncControllerGetSupportedProviders(data) {
1030
+ return request(OpenAPI, {
1031
+ method: "GET",
1032
+ url: "/api/v1/{region}/bean/import/provider/supported",
1033
+ path: {
1034
+ region: data.region
1035
+ },
1036
+ errors: {
1037
+ 401: "Missing or invalid authentication"
1038
+ }
1039
+ });
1040
+ }
1041
+ /**
1042
+ * Check if provider is supported
1043
+ * Returns whether a specific provider is supported.
1044
+ * @param data The data for the request.
1045
+ * @param data.providerName Provider name to check
1046
+ * @param data.region Region code for tenant context
1047
+ * @returns unknown Provider support status
1048
+ * @throws ApiError
1049
+ */
1050
+ static providerSyncControllerIsProviderSupported(data) {
1051
+ return request(OpenAPI, {
1052
+ method: "GET",
1053
+ url: "/api/v1/{region}/bean/import/provider/{providerName}/supported",
1054
+ path: {
1055
+ providerName: data.providerName,
1056
+ region: data.region
1057
+ },
1058
+ errors: {
1059
+ 401: "Missing or invalid authentication"
1060
+ }
1061
+ });
1062
+ }
1063
+ };
1064
+ var HealthService = class {
1065
+ /**
1066
+ * Basic health check for K8s/load balancer probes
1067
+ * @returns unknown Service is healthy
1068
+ * @throws ApiError
1069
+ */
1070
+ static healthControllerGetHealth() {
1071
+ return request(OpenAPI, {
1072
+ method: "GET",
1073
+ url: "/api/v1/health",
1074
+ errors: {
1075
+ 503: "Service unavailable"
1076
+ }
1077
+ });
1078
+ }
1079
+ /**
1080
+ * Check database connection health
1081
+ * @returns unknown Database is healthy
1082
+ * @throws ApiError
1083
+ */
1084
+ static healthControllerCheckDatabase() {
1085
+ return request(OpenAPI, {
1086
+ method: "GET",
1087
+ url: "/api/v1/health/database",
1088
+ errors: {
1089
+ 503: "Database unavailable"
1090
+ }
1091
+ });
1092
+ }
1093
+ /**
1094
+ * Check OpenBB schema status
1095
+ * @returns unknown OpenBB status
1096
+ * @throws ApiError
1097
+ */
1098
+ static healthControllerCheckOpenBb() {
1099
+ return request(OpenAPI, {
1100
+ method: "GET",
1101
+ url: "/api/v1/health/openbb",
1102
+ errors: {
1103
+ 503: "OpenBB unavailable"
1104
+ }
1105
+ });
1106
+ }
1107
+ /**
1108
+ * Check Redis connection health
1109
+ * @returns unknown Redis is healthy
1110
+ * @throws ApiError
1111
+ */
1112
+ static healthControllerCheckRedis() {
1113
+ return request(OpenAPI, {
1114
+ method: "GET",
1115
+ url: "/api/v1/health/redis",
1116
+ errors: {
1117
+ 503: "Redis unavailable"
1118
+ }
1119
+ });
1120
+ }
1121
+ /**
1122
+ * Get status of all circuit breakers
1123
+ * @returns unknown Circuit breaker status
1124
+ * @throws ApiError
1125
+ */
1126
+ static healthControllerGetCircuitBreakersHealth() {
1127
+ return request(OpenAPI, {
1128
+ method: "GET",
1129
+ url: "/api/v1/health/circuit-breakers",
1130
+ errors: {
1131
+ 401: "Unauthorized",
1132
+ 500: "Internal error"
1133
+ }
1134
+ });
1135
+ }
1136
+ /**
1137
+ * Reset a circuit breaker to CLOSED state
1138
+ * @param data The data for the request.
1139
+ * @param data.name Circuit breaker name to reset
1140
+ * @returns unknown Circuit breaker reset successfully
1141
+ * @throws ApiError
1142
+ */
1143
+ static healthControllerResetCircuitBreaker(data) {
1144
+ return request(OpenAPI, {
1145
+ method: "POST",
1146
+ url: "/api/v1/health/circuit-breakers/{name}/reset",
1147
+ path: {
1148
+ name: data.name
1149
+ },
1150
+ errors: {
1151
+ 401: "Unauthorized",
1152
+ 404: "Circuit breaker not found"
1153
+ }
1154
+ });
1155
+ }
1156
+ /**
1157
+ * Get health check metrics and statistics
1158
+ * @returns unknown Health metrics
1159
+ * @throws ApiError
1160
+ */
1161
+ static healthControllerGetMetrics() {
1162
+ return request(OpenAPI, {
1163
+ method: "GET",
1164
+ url: "/api/v1/health/metrics",
1165
+ errors: {
1166
+ 401: "Unauthorized"
1167
+ }
1168
+ });
1169
+ }
1170
+ };
1171
+ export {
1172
+ BeanAccountsService,
1173
+ BeanBalancesService,
1174
+ BeanCommoditiesService,
1175
+ BeanTransactionsService,
1176
+ HealthService,
1177
+ OpenAPI,
1178
+ ProviderSyncService
1179
+ };