@firela/api-types 0.0.0-canary.a7bda42

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.
Files changed (35) hide show
  1. package/README.md +40 -0
  2. package/dist/generated/core/ApiError.d.ts +11 -0
  3. package/dist/generated/core/ApiError.d.ts.map +1 -0
  4. package/dist/generated/core/ApiError.js +11 -0
  5. package/dist/generated/core/ApiRequestOptions.d.ts +14 -0
  6. package/dist/generated/core/ApiRequestOptions.d.ts.map +1 -0
  7. package/dist/generated/core/ApiRequestOptions.js +1 -0
  8. package/dist/generated/core/ApiResult.d.ts +8 -0
  9. package/dist/generated/core/ApiResult.d.ts.map +1 -0
  10. package/dist/generated/core/ApiResult.js +1 -0
  11. package/dist/generated/core/CancelablePromise.d.ts +27 -0
  12. package/dist/generated/core/CancelablePromise.d.ts.map +1 -0
  13. package/dist/generated/core/CancelablePromise.js +88 -0
  14. package/dist/generated/core/OpenAPI.d.ts +28 -0
  15. package/dist/generated/core/OpenAPI.d.ts.map +1 -0
  16. package/dist/generated/core/OpenAPI.js +29 -0
  17. package/dist/generated/core/request.d.ts +30 -0
  18. package/dist/generated/core/request.d.ts.map +1 -0
  19. package/dist/generated/core/request.js +297 -0
  20. package/dist/generated/index.d.ts +7 -0
  21. package/dist/generated/index.d.ts.map +1 -0
  22. package/dist/generated/index.js +7 -0
  23. package/dist/generated/schemas.gen.d.ts +771 -0
  24. package/dist/generated/schemas.gen.d.ts.map +1 -0
  25. package/dist/generated/schemas.gen.js +771 -0
  26. package/dist/generated/services.gen.d.ts +313 -0
  27. package/dist/generated/services.gen.d.ts.map +1 -0
  28. package/dist/generated/services.gen.js +705 -0
  29. package/dist/generated/types.gen.d.ts +1159 -0
  30. package/dist/generated/types.gen.d.ts.map +1 -0
  31. package/dist/generated/types.gen.js +2 -0
  32. package/dist/index.d.ts +2 -0
  33. package/dist/index.d.ts.map +1 -0
  34. package/dist/index.js +3 -0
  35. package/package.json +31 -0
@@ -0,0 +1,771 @@
1
+ export declare const $AccountType: {
2
+ readonly type: "string";
3
+ readonly enum: readonly ["Assets", "Liabilities", "Income", "Expenses", "Equity"];
4
+ readonly description: "Beancount account type";
5
+ };
6
+ export declare const $AccountStatus: {
7
+ readonly type: "string";
8
+ readonly enum: readonly ["OPEN", "CLOSED", "SUSPENDED"];
9
+ readonly description: "Account lifecycle status";
10
+ };
11
+ export declare const $BookingMethod: {
12
+ readonly type: "string";
13
+ readonly enum: readonly ["FIFO", "LIFO", "HIFO", "AVERAGE", "STRICT", "STRICT_WITH_SIZE", "NONE"];
14
+ readonly description: "Inventory booking method for cost tracking";
15
+ };
16
+ export declare const $TxnStatus: {
17
+ readonly type: "string";
18
+ readonly enum: readonly ["ACTIVE", "VOIDED", "SUPERSEDED"];
19
+ readonly description: "Transaction lifecycle status";
20
+ };
21
+ export declare const $TransactionFlag: {
22
+ readonly type: "string";
23
+ readonly enum: readonly ["*", "!"];
24
+ readonly description: "Transaction flag: '*' = complete, '!' = incomplete";
25
+ };
26
+ export declare const $HealthResponse: {
27
+ readonly type: "object";
28
+ readonly required: readonly ["status"];
29
+ readonly properties: {
30
+ readonly status: {
31
+ readonly type: "string";
32
+ readonly enum: readonly ["ok", "degraded"];
33
+ };
34
+ readonly version: {
35
+ readonly type: "string";
36
+ };
37
+ };
38
+ };
39
+ export declare const $Posting: {
40
+ readonly type: "object";
41
+ readonly required: readonly ["account"];
42
+ readonly properties: {
43
+ readonly id: {
44
+ readonly type: "string";
45
+ };
46
+ readonly accountId: {
47
+ readonly type: "string";
48
+ };
49
+ readonly accountName: {
50
+ readonly type: "string";
51
+ readonly description: "Full Beancount account path";
52
+ };
53
+ readonly units: {
54
+ readonly type: "string";
55
+ readonly description: "Decimal string for precision";
56
+ };
57
+ readonly currency: {
58
+ readonly type: "string";
59
+ readonly maxLength: 20;
60
+ };
61
+ readonly costAmount: {
62
+ readonly type: "string";
63
+ };
64
+ readonly costCurrency: {
65
+ readonly type: "string";
66
+ };
67
+ readonly costDate: {
68
+ readonly type: "string";
69
+ readonly format: "date";
70
+ };
71
+ readonly priceAmount: {
72
+ readonly type: "string";
73
+ };
74
+ readonly priceCurrency: {
75
+ readonly type: "string";
76
+ };
77
+ readonly flag: {
78
+ readonly type: "string";
79
+ };
80
+ readonly meta: {
81
+ readonly type: "object";
82
+ readonly additionalProperties: true;
83
+ };
84
+ };
85
+ };
86
+ export declare const $CreatePostingRequest: {
87
+ readonly type: "object";
88
+ readonly required: readonly ["account"];
89
+ readonly properties: {
90
+ readonly account: {
91
+ readonly type: "string";
92
+ readonly description: "Full Beancount account path (e.g., \"Assets:Bank:Checking\")";
93
+ };
94
+ readonly units: {
95
+ readonly type: "string";
96
+ readonly description: "Decimal string for precision (e.g., \"100.50\")";
97
+ };
98
+ readonly currency: {
99
+ readonly type: "string";
100
+ readonly maxLength: 20;
101
+ readonly description: "Currency code if units provided";
102
+ };
103
+ readonly meta: {
104
+ readonly type: "object";
105
+ readonly additionalProperties: true;
106
+ };
107
+ };
108
+ };
109
+ export declare const $CreateTransactionRequest: {
110
+ readonly type: "object";
111
+ readonly required: readonly ["date", "narration", "postings"];
112
+ readonly properties: {
113
+ readonly date: {
114
+ readonly type: "string";
115
+ readonly format: "date";
116
+ };
117
+ readonly flag: {
118
+ readonly $ref: "#/components/schemas/TransactionFlag";
119
+ readonly default: "*";
120
+ };
121
+ readonly payee: {
122
+ readonly type: "string";
123
+ };
124
+ readonly narration: {
125
+ readonly type: "string";
126
+ };
127
+ readonly tags: {
128
+ readonly type: "array";
129
+ readonly items: {
130
+ readonly type: "string";
131
+ };
132
+ };
133
+ readonly links: {
134
+ readonly type: "array";
135
+ readonly items: {
136
+ readonly type: "string";
137
+ };
138
+ };
139
+ readonly postings: {
140
+ readonly type: "array";
141
+ readonly items: {
142
+ readonly $ref: "#/components/schemas/CreatePostingRequest";
143
+ };
144
+ readonly minItems: 1;
145
+ };
146
+ readonly meta: {
147
+ readonly type: "object";
148
+ readonly additionalProperties: true;
149
+ };
150
+ readonly idempotencyKey: {
151
+ readonly type: "string";
152
+ readonly maxLength: 128;
153
+ };
154
+ };
155
+ };
156
+ export declare const $UpdateTransactionRequest: {
157
+ readonly type: "object";
158
+ readonly properties: {
159
+ readonly payee: {
160
+ readonly type: "string";
161
+ };
162
+ readonly narration: {
163
+ readonly type: "string";
164
+ };
165
+ readonly tags: {
166
+ readonly type: "array";
167
+ readonly items: {
168
+ readonly type: "string";
169
+ };
170
+ };
171
+ readonly links: {
172
+ readonly type: "array";
173
+ readonly items: {
174
+ readonly type: "string";
175
+ };
176
+ };
177
+ readonly meta: {
178
+ readonly type: "object";
179
+ readonly additionalProperties: true;
180
+ };
181
+ };
182
+ };
183
+ export declare const $TransactionDetail: {
184
+ readonly type: "object";
185
+ readonly required: readonly ["id", "date", "narration", "status", "postings"];
186
+ readonly properties: {
187
+ readonly id: {
188
+ readonly type: "string";
189
+ };
190
+ readonly date: {
191
+ readonly type: "string";
192
+ readonly format: "date";
193
+ };
194
+ readonly flag: {
195
+ readonly $ref: "#/components/schemas/TransactionFlag";
196
+ };
197
+ readonly customFlag: {
198
+ readonly type: "string";
199
+ };
200
+ readonly payee: {
201
+ readonly type: "string";
202
+ };
203
+ readonly narration: {
204
+ readonly type: "string";
205
+ };
206
+ readonly tags: {
207
+ readonly type: "array";
208
+ readonly items: {
209
+ readonly type: "string";
210
+ };
211
+ };
212
+ readonly links: {
213
+ readonly type: "array";
214
+ readonly items: {
215
+ readonly type: "string";
216
+ };
217
+ };
218
+ readonly meta: {
219
+ readonly type: "object";
220
+ readonly additionalProperties: true;
221
+ };
222
+ readonly status: {
223
+ readonly $ref: "#/components/schemas/TxnStatus";
224
+ };
225
+ readonly sourceType: {
226
+ readonly type: "string";
227
+ };
228
+ readonly sourcePlatform: {
229
+ readonly type: "string";
230
+ };
231
+ readonly postings: {
232
+ readonly type: "array";
233
+ readonly items: {
234
+ readonly $ref: "#/components/schemas/Posting";
235
+ };
236
+ };
237
+ readonly createdAt: {
238
+ readonly type: "string";
239
+ readonly format: "date-time";
240
+ };
241
+ readonly voidedAt: {
242
+ readonly type: "string";
243
+ readonly format: "date-time";
244
+ };
245
+ readonly voidedBy: {
246
+ readonly type: "string";
247
+ };
248
+ readonly correctionReason: {
249
+ readonly type: "string";
250
+ };
251
+ };
252
+ };
253
+ export declare const $TransactionResponse: {
254
+ readonly type: "object";
255
+ readonly required: readonly ["transactionId", "date", "narration", "postings"];
256
+ readonly properties: {
257
+ readonly transactionId: {
258
+ readonly type: "string";
259
+ };
260
+ readonly idempotencyKey: {
261
+ readonly type: "string";
262
+ };
263
+ readonly date: {
264
+ readonly type: "string";
265
+ readonly format: "date";
266
+ };
267
+ readonly flag: {
268
+ readonly $ref: "#/components/schemas/TransactionFlag";
269
+ };
270
+ readonly payee: {
271
+ readonly type: "string";
272
+ };
273
+ readonly narration: {
274
+ readonly type: "string";
275
+ };
276
+ readonly postings: {
277
+ readonly type: "array";
278
+ readonly items: {
279
+ readonly $ref: "#/components/schemas/Posting";
280
+ };
281
+ };
282
+ readonly interpolated: {
283
+ readonly type: "boolean";
284
+ };
285
+ readonly booked: {
286
+ readonly type: "boolean";
287
+ };
288
+ readonly warnings: {
289
+ readonly type: "array";
290
+ readonly items: {
291
+ readonly type: "string";
292
+ };
293
+ };
294
+ readonly createdAccountIds: {
295
+ readonly type: "array";
296
+ readonly items: {
297
+ readonly type: "string";
298
+ };
299
+ };
300
+ readonly recurringSuggestion: {
301
+ readonly type: "object";
302
+ readonly additionalProperties: true;
303
+ };
304
+ };
305
+ };
306
+ export declare const $TransactionListResponse: {
307
+ readonly type: "object";
308
+ readonly required: readonly ["data", "total"];
309
+ readonly properties: {
310
+ readonly data: {
311
+ readonly type: "array";
312
+ readonly items: {
313
+ readonly $ref: "#/components/schemas/TransactionDetail";
314
+ };
315
+ };
316
+ readonly total: {
317
+ readonly type: "integer";
318
+ };
319
+ readonly limit: {
320
+ readonly type: "integer";
321
+ };
322
+ readonly offset: {
323
+ readonly type: "integer";
324
+ };
325
+ };
326
+ };
327
+ export declare const $PlatformInfo: {
328
+ readonly type: "object";
329
+ readonly properties: {
330
+ readonly id: {
331
+ readonly type: "string";
332
+ };
333
+ readonly name: {
334
+ readonly type: "string";
335
+ };
336
+ readonly canonical: {
337
+ readonly type: "string";
338
+ };
339
+ readonly logoUrl: {
340
+ readonly type: "string";
341
+ };
342
+ readonly type: {
343
+ readonly type: "string";
344
+ };
345
+ };
346
+ };
347
+ export declare const $AccountResponse: {
348
+ readonly type: "object";
349
+ readonly required: readonly ["id", "path", "type", "status", "openDate", "bookingMethod", "isCustom"];
350
+ readonly properties: {
351
+ readonly id: {
352
+ readonly type: "string";
353
+ readonly format: "uuid";
354
+ };
355
+ readonly path: {
356
+ readonly type: "string";
357
+ readonly description: "Full Beancount account path";
358
+ };
359
+ readonly type: {
360
+ readonly $ref: "#/components/schemas/AccountType";
361
+ };
362
+ readonly status: {
363
+ readonly $ref: "#/components/schemas/AccountStatus";
364
+ };
365
+ readonly openDate: {
366
+ readonly type: "string";
367
+ readonly format: "date";
368
+ };
369
+ readonly closeDate: {
370
+ readonly type: "string";
371
+ readonly format: "date";
372
+ };
373
+ readonly currencies: {
374
+ readonly type: "array";
375
+ readonly items: {
376
+ readonly type: "string";
377
+ };
378
+ readonly nullable: true;
379
+ };
380
+ readonly bookingMethod: {
381
+ readonly $ref: "#/components/schemas/BookingMethod";
382
+ };
383
+ readonly templatePath: {
384
+ readonly type: "string";
385
+ };
386
+ readonly isCustom: {
387
+ readonly type: "boolean";
388
+ };
389
+ readonly i18nKey: {
390
+ readonly type: "string";
391
+ readonly maxLength: 100;
392
+ };
393
+ readonly icon: {
394
+ readonly type: "string";
395
+ readonly maxLength: 50;
396
+ };
397
+ readonly openMeta: {
398
+ readonly type: "object";
399
+ readonly additionalProperties: true;
400
+ };
401
+ readonly platformId: {
402
+ readonly type: "string";
403
+ readonly format: "uuid";
404
+ readonly nullable: true;
405
+ };
406
+ readonly platform: {
407
+ readonly $ref: "#/components/schemas/PlatformInfo";
408
+ };
409
+ readonly createdAt: {
410
+ readonly type: "string";
411
+ readonly format: "date-time";
412
+ };
413
+ readonly updatedAt: {
414
+ readonly type: "string";
415
+ readonly format: "date-time";
416
+ };
417
+ };
418
+ };
419
+ export declare const $CreateAccountRequest: {
420
+ readonly type: "object";
421
+ readonly required: readonly ["path", "openDate"];
422
+ readonly properties: {
423
+ readonly path: {
424
+ readonly type: "string";
425
+ readonly pattern: "^(Assets|Liabilities|Income|Expenses|Equity)(:[A-Za-z0-9]+)+$";
426
+ readonly description: "Full Beancount account path";
427
+ };
428
+ readonly openDate: {
429
+ readonly type: "string";
430
+ readonly format: "date";
431
+ };
432
+ readonly currencies: {
433
+ readonly type: "array";
434
+ readonly items: {
435
+ readonly type: "string";
436
+ };
437
+ readonly nullable: true;
438
+ };
439
+ readonly bookingMethod: {
440
+ readonly $ref: "#/components/schemas/BookingMethod";
441
+ };
442
+ readonly templatePath: {
443
+ readonly type: "string";
444
+ };
445
+ readonly isCustom: {
446
+ readonly type: "boolean";
447
+ readonly default: false;
448
+ };
449
+ readonly i18nKey: {
450
+ readonly type: "string";
451
+ readonly maxLength: 100;
452
+ };
453
+ readonly icon: {
454
+ readonly type: "string";
455
+ readonly maxLength: 50;
456
+ };
457
+ readonly openMeta: {
458
+ readonly type: "object";
459
+ readonly additionalProperties: true;
460
+ };
461
+ readonly platformId: {
462
+ readonly type: "string";
463
+ readonly format: "uuid";
464
+ };
465
+ };
466
+ };
467
+ export declare const $UpdateAccountRequest: {
468
+ readonly type: "object";
469
+ readonly properties: {
470
+ readonly currencies: {
471
+ readonly type: "array";
472
+ readonly items: {
473
+ readonly type: "string";
474
+ };
475
+ readonly nullable: true;
476
+ };
477
+ readonly bookingMethod: {
478
+ readonly $ref: "#/components/schemas/BookingMethod";
479
+ };
480
+ readonly i18nKey: {
481
+ readonly type: "string";
482
+ readonly maxLength: 100;
483
+ };
484
+ readonly icon: {
485
+ readonly type: "string";
486
+ readonly maxLength: 50;
487
+ };
488
+ };
489
+ };
490
+ export declare const $AccountListResponse: {
491
+ readonly type: "object";
492
+ readonly required: readonly ["items", "total"];
493
+ readonly properties: {
494
+ readonly items: {
495
+ readonly type: "array";
496
+ readonly items: {
497
+ readonly $ref: "#/components/schemas/AccountResponse";
498
+ };
499
+ };
500
+ readonly total: {
501
+ readonly type: "integer";
502
+ };
503
+ };
504
+ };
505
+ export declare const $CommodityResponse: {
506
+ readonly type: "object";
507
+ readonly required: readonly ["id", "symbol", "date"];
508
+ readonly properties: {
509
+ readonly id: {
510
+ readonly type: "string";
511
+ };
512
+ readonly userId: {
513
+ readonly type: "string";
514
+ readonly nullable: true;
515
+ };
516
+ readonly symbol: {
517
+ readonly type: "string";
518
+ readonly maxLength: 50;
519
+ };
520
+ readonly date: {
521
+ readonly type: "string";
522
+ readonly format: "date";
523
+ };
524
+ readonly metadata: {
525
+ readonly type: "object";
526
+ readonly additionalProperties: true;
527
+ };
528
+ readonly symbolProfileId: {
529
+ readonly type: "string";
530
+ readonly format: "uuid";
531
+ readonly nullable: true;
532
+ };
533
+ readonly createdAt: {
534
+ readonly type: "string";
535
+ readonly format: "date-time";
536
+ };
537
+ readonly updatedAt: {
538
+ readonly type: "string";
539
+ readonly format: "date-time";
540
+ };
541
+ };
542
+ };
543
+ export declare const $CreateCommodityRequest: {
544
+ readonly type: "object";
545
+ readonly required: readonly ["symbol", "date"];
546
+ readonly properties: {
547
+ readonly symbol: {
548
+ readonly type: "string";
549
+ readonly maxLength: 50;
550
+ readonly pattern: "^[A-Z0-9_\\-\\.]+$";
551
+ };
552
+ readonly date: {
553
+ readonly type: "string";
554
+ readonly format: "date";
555
+ };
556
+ readonly metadata: {
557
+ readonly type: "object";
558
+ readonly additionalProperties: true;
559
+ };
560
+ readonly symbolProfileId: {
561
+ readonly type: "string";
562
+ readonly format: "uuid";
563
+ };
564
+ };
565
+ };
566
+ export declare const $UpdateCommodityRequest: {
567
+ readonly type: "object";
568
+ readonly properties: {
569
+ readonly metadata: {
570
+ readonly type: "object";
571
+ readonly additionalProperties: true;
572
+ };
573
+ readonly symbolProfileId: {
574
+ readonly type: "string";
575
+ readonly format: "uuid";
576
+ };
577
+ };
578
+ };
579
+ export declare const $EnsureCommodityRequest: {
580
+ readonly type: "object";
581
+ readonly required: readonly ["date"];
582
+ readonly properties: {
583
+ readonly date: {
584
+ readonly type: "string";
585
+ readonly format: "date";
586
+ };
587
+ readonly metadata: {
588
+ readonly type: "object";
589
+ readonly additionalProperties: true;
590
+ };
591
+ readonly symbolProfileId: {
592
+ readonly type: "string";
593
+ readonly format: "uuid";
594
+ };
595
+ };
596
+ };
597
+ export declare const $CommodityListResponse: {
598
+ readonly type: "object";
599
+ readonly required: readonly ["items", "total"];
600
+ readonly properties: {
601
+ readonly items: {
602
+ readonly type: "array";
603
+ readonly items: {
604
+ readonly $ref: "#/components/schemas/CommodityResponse";
605
+ };
606
+ };
607
+ readonly total: {
608
+ readonly type: "integer";
609
+ };
610
+ };
611
+ };
612
+ export declare const $PriceResponse: {
613
+ readonly type: "object";
614
+ readonly required: readonly ["id", "userId", "currency", "quoteCurrency", "amount", "date"];
615
+ readonly properties: {
616
+ readonly id: {
617
+ readonly type: "string";
618
+ };
619
+ readonly userId: {
620
+ readonly type: "string";
621
+ };
622
+ readonly currency: {
623
+ readonly type: "string";
624
+ };
625
+ readonly quoteCurrency: {
626
+ readonly type: "string";
627
+ };
628
+ readonly amount: {
629
+ readonly type: "number";
630
+ readonly minimum: 0;
631
+ };
632
+ readonly date: {
633
+ readonly type: "string";
634
+ readonly format: "date";
635
+ };
636
+ readonly meta: {
637
+ readonly type: "object";
638
+ readonly additionalProperties: true;
639
+ };
640
+ readonly createdAt: {
641
+ readonly type: "string";
642
+ readonly format: "date-time";
643
+ };
644
+ readonly updatedAt: {
645
+ readonly type: "string";
646
+ readonly format: "date-time";
647
+ };
648
+ };
649
+ };
650
+ export declare const $CreatePriceRequest: {
651
+ readonly type: "object";
652
+ readonly required: readonly ["currency", "quoteCurrency", "amount", "date"];
653
+ readonly properties: {
654
+ readonly currency: {
655
+ readonly type: "string";
656
+ readonly description: "Base currency (e.g., \"USD\")";
657
+ };
658
+ readonly quoteCurrency: {
659
+ readonly type: "string";
660
+ readonly description: "Quote currency (e.g., \"CNY\")";
661
+ };
662
+ readonly amount: {
663
+ readonly type: "number";
664
+ readonly minimum: 0;
665
+ readonly description: "Exchange rate";
666
+ };
667
+ readonly date: {
668
+ readonly type: "string";
669
+ readonly format: "date";
670
+ };
671
+ readonly metadata: {
672
+ readonly type: "object";
673
+ readonly additionalProperties: true;
674
+ };
675
+ };
676
+ };
677
+ export declare const $UpdatePriceRequest: {
678
+ readonly type: "object";
679
+ readonly properties: {
680
+ readonly amount: {
681
+ readonly type: "number";
682
+ readonly minimum: 0;
683
+ };
684
+ readonly metadata: {
685
+ readonly type: "object";
686
+ readonly additionalProperties: true;
687
+ };
688
+ };
689
+ };
690
+ export declare const $PriceListResponse: {
691
+ readonly type: "object";
692
+ readonly required: readonly ["items", "total"];
693
+ readonly properties: {
694
+ readonly items: {
695
+ readonly type: "array";
696
+ readonly items: {
697
+ readonly $ref: "#/components/schemas/PriceResponse";
698
+ };
699
+ };
700
+ readonly total: {
701
+ readonly type: "integer";
702
+ };
703
+ };
704
+ };
705
+ export declare const $BalanceResponse: {
706
+ readonly type: "object";
707
+ readonly required: readonly ["account", "balance", "currency", "date"];
708
+ readonly properties: {
709
+ readonly account: {
710
+ readonly type: "string";
711
+ };
712
+ readonly balance: {
713
+ readonly type: "string";
714
+ readonly description: "Decimal string for precision";
715
+ };
716
+ readonly currency: {
717
+ readonly type: "string";
718
+ };
719
+ readonly date: {
720
+ readonly type: "string";
721
+ readonly format: "date";
722
+ };
723
+ };
724
+ };
725
+ export declare const $MultiCurrencyBalanceResponse: {
726
+ readonly type: "object";
727
+ readonly required: readonly ["account", "balances", "date"];
728
+ readonly properties: {
729
+ readonly account: {
730
+ readonly type: "string";
731
+ };
732
+ readonly balances: {
733
+ readonly type: "object";
734
+ readonly additionalProperties: {
735
+ readonly type: "string";
736
+ };
737
+ readonly description: "Map of currency to balance (decimal strings)";
738
+ };
739
+ readonly date: {
740
+ readonly type: "string";
741
+ readonly format: "date";
742
+ };
743
+ };
744
+ };
745
+ export declare const $ApiError: {
746
+ readonly type: "object";
747
+ readonly required: readonly ["type", "title", "status"];
748
+ readonly properties: {
749
+ readonly type: {
750
+ readonly type: "string";
751
+ readonly description: "Error type URI";
752
+ };
753
+ readonly title: {
754
+ readonly type: "string";
755
+ readonly description: "Short error title";
756
+ };
757
+ readonly status: {
758
+ readonly type: "integer";
759
+ readonly description: "HTTP status code";
760
+ };
761
+ readonly detail: {
762
+ readonly type: "string";
763
+ readonly description: "Detailed error message";
764
+ };
765
+ readonly instance: {
766
+ readonly type: "string";
767
+ readonly description: "Request path";
768
+ };
769
+ };
770
+ };
771
+ //# sourceMappingURL=schemas.gen.d.ts.map