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