@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.
- package/README.md +40 -0
- package/dist/generated/core/ApiError.d.ts +11 -0
- package/dist/generated/core/ApiError.d.ts.map +1 -0
- package/dist/generated/core/ApiError.js +11 -0
- package/dist/generated/core/ApiRequestOptions.d.ts +14 -0
- package/dist/generated/core/ApiRequestOptions.d.ts.map +1 -0
- package/dist/generated/core/ApiRequestOptions.js +1 -0
- package/dist/generated/core/ApiResult.d.ts +8 -0
- package/dist/generated/core/ApiResult.d.ts.map +1 -0
- package/dist/generated/core/ApiResult.js +1 -0
- package/dist/generated/core/CancelablePromise.d.ts +27 -0
- package/dist/generated/core/CancelablePromise.d.ts.map +1 -0
- package/dist/generated/core/CancelablePromise.js +88 -0
- package/dist/generated/core/OpenAPI.d.ts +28 -0
- package/dist/generated/core/OpenAPI.d.ts.map +1 -0
- package/dist/generated/core/OpenAPI.js +29 -0
- package/dist/generated/core/request.d.ts +30 -0
- package/dist/generated/core/request.d.ts.map +1 -0
- package/dist/generated/core/request.js +297 -0
- package/dist/generated/index.d.ts +7 -0
- package/dist/generated/index.d.ts.map +1 -0
- package/dist/generated/index.js +7 -0
- package/dist/generated/schemas.gen.d.ts +771 -0
- package/dist/generated/schemas.gen.d.ts.map +1 -0
- package/dist/generated/schemas.gen.js +771 -0
- package/dist/generated/services.gen.d.ts +313 -0
- package/dist/generated/services.gen.d.ts.map +1 -0
- package/dist/generated/services.gen.js +705 -0
- package/dist/generated/types.gen.d.ts +1159 -0
- package/dist/generated/types.gen.d.ts.map +1 -0
- package/dist/generated/types.gen.js +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/package.json +31 -0
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
import type { CancelablePromise } from './core/CancelablePromise';
|
|
2
|
+
import type { GetHealthResponse, ListTransactionsData, ListTransactionsResponse, CreateTransactionData, CreateTransactionResponse, GetTransactionData, GetTransactionResponse, UpdateTransactionData, UpdateTransactionResponse, VoidTransactionData, VoidTransactionResponse, ListAccountsData, ListAccountsResponse, CreateAccountData, CreateAccountResponse, GetAccountData, GetAccountResponse, UpdateAccountData, UpdateAccountResponse, DeleteAccountData, DeleteAccountResponse, CloseAccountData, CloseAccountResponse, ReopenAccountData, ReopenAccountResponse, ListCommoditiesData, ListCommoditiesResponse, CreateCommodityData, CreateCommodityResponse, GetCommodityData, GetCommodityResponse, UpdateCommodityData, UpdateCommodityResponse, DeleteCommodityData, DeleteCommodityResponse, EnsureCommodityData, EnsureCommodityResponse, BulkCreateCommoditiesData, BulkCreateCommoditiesResponse, ListPricesData, ListPricesResponse, CreatePriceData, CreatePriceResponse, GetPriceData, GetPriceResponse, UpdatePriceData, UpdatePriceResponse, DeletePriceData, DeletePriceResponse, BulkCreatePricesData, BulkCreatePricesResponse, GetBalanceData, GetBalanceResponse, GetMultiCurrencyBalanceData, GetMultiCurrencyBalanceResponse } from './types.gen';
|
|
3
|
+
export declare class HealthService {
|
|
4
|
+
/**
|
|
5
|
+
* Health check
|
|
6
|
+
* Returns the health status of the API service
|
|
7
|
+
* @returns HealthResponse Service is healthy
|
|
8
|
+
* @throws ApiError
|
|
9
|
+
*/
|
|
10
|
+
static getHealth(): CancelablePromise<GetHealthResponse>;
|
|
11
|
+
}
|
|
12
|
+
export declare class TransactionService {
|
|
13
|
+
/**
|
|
14
|
+
* List transactions
|
|
15
|
+
* Retrieve a paginated list of transactions for the specified region
|
|
16
|
+
* @param data The data for the request.
|
|
17
|
+
* @param data.region Region code for tenant context
|
|
18
|
+
* @param data.limit Maximum number of results (1-100)
|
|
19
|
+
* @param data.offset Number of items to skip
|
|
20
|
+
* @param data.dateFrom Filter from date (inclusive, ISO 8601)
|
|
21
|
+
* @param data.dateTo Filter to date (inclusive, ISO 8601)
|
|
22
|
+
* @param data.status Filter by transaction status
|
|
23
|
+
* @param data.search Search in narration and payee fields
|
|
24
|
+
* @param data.accountId Filter by account ID
|
|
25
|
+
* @returns TransactionListResponse List of transactions
|
|
26
|
+
* @throws ApiError
|
|
27
|
+
*/
|
|
28
|
+
static listTransactions(data: ListTransactionsData): CancelablePromise<ListTransactionsResponse>;
|
|
29
|
+
/**
|
|
30
|
+
* Create transaction
|
|
31
|
+
* Create a new double-entry transaction.
|
|
32
|
+
*
|
|
33
|
+
* A transaction must have at least 2 postings that balance (debits = credits).
|
|
34
|
+
* The system will automatically interpolate missing amounts if possible.
|
|
35
|
+
*
|
|
36
|
+
* @param data The data for the request.
|
|
37
|
+
* @param data.region Region code for tenant context
|
|
38
|
+
* @param data.requestBody
|
|
39
|
+
* @returns TransactionResponse Transaction created successfully
|
|
40
|
+
* @throws ApiError
|
|
41
|
+
*/
|
|
42
|
+
static createTransaction(data: CreateTransactionData): CancelablePromise<CreateTransactionResponse>;
|
|
43
|
+
/**
|
|
44
|
+
* Get transaction
|
|
45
|
+
* Retrieve a specific transaction by ID with full details
|
|
46
|
+
* @param data The data for the request.
|
|
47
|
+
* @param data.region Region code for tenant context
|
|
48
|
+
* @param data.id Transaction ID (CUID format)
|
|
49
|
+
* @returns TransactionDetail Transaction details
|
|
50
|
+
* @throws ApiError
|
|
51
|
+
*/
|
|
52
|
+
static getTransaction(data: GetTransactionData): CancelablePromise<GetTransactionResponse>;
|
|
53
|
+
/**
|
|
54
|
+
* Update transaction metadata
|
|
55
|
+
* Update transaction metadata fields (does not change postings)
|
|
56
|
+
* @param data The data for the request.
|
|
57
|
+
* @param data.region Region code for tenant context
|
|
58
|
+
* @param data.id Transaction ID (CUID format)
|
|
59
|
+
* @param data.requestBody
|
|
60
|
+
* @returns TransactionDetail Transaction updated
|
|
61
|
+
* @throws ApiError
|
|
62
|
+
*/
|
|
63
|
+
static updateTransaction(data: UpdateTransactionData): CancelablePromise<UpdateTransactionResponse>;
|
|
64
|
+
/**
|
|
65
|
+
* Void transaction
|
|
66
|
+
* Mark a transaction as voided (soft delete)
|
|
67
|
+
* @param data The data for the request.
|
|
68
|
+
* @param data.region Region code for tenant context
|
|
69
|
+
* @param data.id Transaction ID (CUID format)
|
|
70
|
+
* @returns void Transaction voided
|
|
71
|
+
* @throws ApiError
|
|
72
|
+
*/
|
|
73
|
+
static voidTransaction(data: VoidTransactionData): CancelablePromise<VoidTransactionResponse>;
|
|
74
|
+
}
|
|
75
|
+
export declare class AccountService {
|
|
76
|
+
/**
|
|
77
|
+
* List accounts
|
|
78
|
+
* Retrieve all accounts for the specified region with optional filters
|
|
79
|
+
* @param data The data for the request.
|
|
80
|
+
* @param data.region Region code for tenant context
|
|
81
|
+
* @param data.type Filter by account type
|
|
82
|
+
* @param data.status Filter by account status
|
|
83
|
+
* @param data.isCustom Filter custom accounts only
|
|
84
|
+
* @param data.search Search in path and i18nKey
|
|
85
|
+
* @param data.limit
|
|
86
|
+
* @param data.offset
|
|
87
|
+
* @returns AccountListResponse List of accounts
|
|
88
|
+
* @throws ApiError
|
|
89
|
+
*/
|
|
90
|
+
static listAccounts(data: ListAccountsData): CancelablePromise<ListAccountsResponse>;
|
|
91
|
+
/**
|
|
92
|
+
* Create account
|
|
93
|
+
* Create a new Beancount account
|
|
94
|
+
* @param data The data for the request.
|
|
95
|
+
* @param data.region Region code for tenant context
|
|
96
|
+
* @param data.requestBody
|
|
97
|
+
* @returns AccountResponse Account created
|
|
98
|
+
* @throws ApiError
|
|
99
|
+
*/
|
|
100
|
+
static createAccount(data: CreateAccountData): CancelablePromise<CreateAccountResponse>;
|
|
101
|
+
/**
|
|
102
|
+
* Get account
|
|
103
|
+
* Retrieve a specific account by ID
|
|
104
|
+
* @param data The data for the request.
|
|
105
|
+
* @param data.region Region code for tenant context
|
|
106
|
+
* @param data.id Account ID (UUID format)
|
|
107
|
+
* @returns AccountResponse Account details
|
|
108
|
+
* @throws ApiError
|
|
109
|
+
*/
|
|
110
|
+
static getAccount(data: GetAccountData): CancelablePromise<GetAccountResponse>;
|
|
111
|
+
/**
|
|
112
|
+
* Update account
|
|
113
|
+
* Update account properties
|
|
114
|
+
* @param data The data for the request.
|
|
115
|
+
* @param data.region Region code for tenant context
|
|
116
|
+
* @param data.id Account ID (UUID format)
|
|
117
|
+
* @param data.requestBody
|
|
118
|
+
* @returns AccountResponse Account updated
|
|
119
|
+
* @throws ApiError
|
|
120
|
+
*/
|
|
121
|
+
static updateAccount(data: UpdateAccountData): CancelablePromise<UpdateAccountResponse>;
|
|
122
|
+
/**
|
|
123
|
+
* Delete account
|
|
124
|
+
* Delete an account (only if no postings reference it)
|
|
125
|
+
* @param data The data for the request.
|
|
126
|
+
* @param data.region Region code for tenant context
|
|
127
|
+
* @param data.id Account ID (UUID format)
|
|
128
|
+
* @returns void Account deleted
|
|
129
|
+
* @throws ApiError
|
|
130
|
+
*/
|
|
131
|
+
static deleteAccount(data: DeleteAccountData): CancelablePromise<DeleteAccountResponse>;
|
|
132
|
+
/**
|
|
133
|
+
* Close account
|
|
134
|
+
* Mark an account as closed
|
|
135
|
+
* @param data The data for the request.
|
|
136
|
+
* @param data.region Region code for tenant context
|
|
137
|
+
* @param data.id Account ID (UUID format)
|
|
138
|
+
* @returns AccountResponse Account closed
|
|
139
|
+
* @throws ApiError
|
|
140
|
+
*/
|
|
141
|
+
static closeAccount(data: CloseAccountData): CancelablePromise<CloseAccountResponse>;
|
|
142
|
+
/**
|
|
143
|
+
* Reopen account
|
|
144
|
+
* Reopen a previously closed account
|
|
145
|
+
* @param data The data for the request.
|
|
146
|
+
* @param data.region Region code for tenant context
|
|
147
|
+
* @param data.id Account ID (UUID format)
|
|
148
|
+
* @returns AccountResponse Account reopened
|
|
149
|
+
* @throws ApiError
|
|
150
|
+
*/
|
|
151
|
+
static reopenAccount(data: ReopenAccountData): CancelablePromise<ReopenAccountResponse>;
|
|
152
|
+
}
|
|
153
|
+
export declare class CommodityService {
|
|
154
|
+
/**
|
|
155
|
+
* List commodities
|
|
156
|
+
* Retrieve all commodity definitions for the region
|
|
157
|
+
* @param data The data for the request.
|
|
158
|
+
* @param data.region Region code for tenant context
|
|
159
|
+
* @returns CommodityListResponse List of commodities
|
|
160
|
+
* @throws ApiError
|
|
161
|
+
*/
|
|
162
|
+
static listCommodities(data: ListCommoditiesData): CancelablePromise<ListCommoditiesResponse>;
|
|
163
|
+
/**
|
|
164
|
+
* Create commodity
|
|
165
|
+
* Create a new commodity/currency definition
|
|
166
|
+
* @param data The data for the request.
|
|
167
|
+
* @param data.region Region code for tenant context
|
|
168
|
+
* @param data.requestBody
|
|
169
|
+
* @returns CommodityResponse Commodity created
|
|
170
|
+
* @throws ApiError
|
|
171
|
+
*/
|
|
172
|
+
static createCommodity(data: CreateCommodityData): CancelablePromise<CreateCommodityResponse>;
|
|
173
|
+
/**
|
|
174
|
+
* Get commodity
|
|
175
|
+
* Retrieve a specific commodity by symbol
|
|
176
|
+
* @param data The data for the request.
|
|
177
|
+
* @param data.region Region code for tenant context
|
|
178
|
+
* @param data.symbol Commodity symbol (e.g., "USD", "AAPL")
|
|
179
|
+
* @returns CommodityResponse Commodity details
|
|
180
|
+
* @throws ApiError
|
|
181
|
+
*/
|
|
182
|
+
static getCommodity(data: GetCommodityData): CancelablePromise<GetCommodityResponse>;
|
|
183
|
+
/**
|
|
184
|
+
* Update commodity
|
|
185
|
+
* Update commodity properties
|
|
186
|
+
* @param data The data for the request.
|
|
187
|
+
* @param data.region Region code for tenant context
|
|
188
|
+
* @param data.symbol Commodity symbol (e.g., "USD", "AAPL")
|
|
189
|
+
* @param data.requestBody
|
|
190
|
+
* @returns CommodityResponse Commodity updated
|
|
191
|
+
* @throws ApiError
|
|
192
|
+
*/
|
|
193
|
+
static updateCommodity(data: UpdateCommodityData): CancelablePromise<UpdateCommodityResponse>;
|
|
194
|
+
/**
|
|
195
|
+
* Delete commodity
|
|
196
|
+
* Delete a commodity definition
|
|
197
|
+
* @param data The data for the request.
|
|
198
|
+
* @param data.region Region code for tenant context
|
|
199
|
+
* @param data.symbol Commodity symbol (e.g., "USD", "AAPL")
|
|
200
|
+
* @returns void Commodity deleted
|
|
201
|
+
* @throws ApiError
|
|
202
|
+
*/
|
|
203
|
+
static deleteCommodity(data: DeleteCommodityData): CancelablePromise<DeleteCommodityResponse>;
|
|
204
|
+
/**
|
|
205
|
+
* Get or create commodity
|
|
206
|
+
* Get existing commodity or create if not exists
|
|
207
|
+
* @param data The data for the request.
|
|
208
|
+
* @param data.region Region code for tenant context
|
|
209
|
+
* @param data.symbol Commodity symbol (e.g., "USD", "AAPL")
|
|
210
|
+
* @param data.requestBody
|
|
211
|
+
* @returns CommodityResponse Commodity found or created
|
|
212
|
+
* @throws ApiError
|
|
213
|
+
*/
|
|
214
|
+
static ensureCommodity(data: EnsureCommodityData): CancelablePromise<EnsureCommodityResponse>;
|
|
215
|
+
/**
|
|
216
|
+
* Bulk create commodities
|
|
217
|
+
* Create multiple commodities at once
|
|
218
|
+
* @param data The data for the request.
|
|
219
|
+
* @param data.region Region code for tenant context
|
|
220
|
+
* @param data.requestBody
|
|
221
|
+
* @returns CommodityListResponse Commodities created
|
|
222
|
+
* @throws ApiError
|
|
223
|
+
*/
|
|
224
|
+
static bulkCreateCommodities(data: BulkCreateCommoditiesData): CancelablePromise<BulkCreateCommoditiesResponse>;
|
|
225
|
+
}
|
|
226
|
+
export declare class PriceService {
|
|
227
|
+
/**
|
|
228
|
+
* List prices
|
|
229
|
+
* Retrieve all price quotes for the region
|
|
230
|
+
* @param data The data for the request.
|
|
231
|
+
* @param data.region Region code for tenant context
|
|
232
|
+
* @returns PriceListResponse List of prices
|
|
233
|
+
* @throws ApiError
|
|
234
|
+
*/
|
|
235
|
+
static listPrices(data: ListPricesData): CancelablePromise<ListPricesResponse>;
|
|
236
|
+
/**
|
|
237
|
+
* Create price
|
|
238
|
+
* Create a new price quote
|
|
239
|
+
* @param data The data for the request.
|
|
240
|
+
* @param data.region Region code for tenant context
|
|
241
|
+
* @param data.requestBody
|
|
242
|
+
* @returns PriceResponse Price created
|
|
243
|
+
* @throws ApiError
|
|
244
|
+
*/
|
|
245
|
+
static createPrice(data: CreatePriceData): CancelablePromise<CreatePriceResponse>;
|
|
246
|
+
/**
|
|
247
|
+
* Get price
|
|
248
|
+
* Retrieve a specific price quote by ID
|
|
249
|
+
* @param data The data for the request.
|
|
250
|
+
* @param data.region Region code for tenant context
|
|
251
|
+
* @param data.id Price ID (UUID format)
|
|
252
|
+
* @returns PriceResponse Price details
|
|
253
|
+
* @throws ApiError
|
|
254
|
+
*/
|
|
255
|
+
static getPrice(data: GetPriceData): CancelablePromise<GetPriceResponse>;
|
|
256
|
+
/**
|
|
257
|
+
* Update price
|
|
258
|
+
* Update a price quote
|
|
259
|
+
* @param data The data for the request.
|
|
260
|
+
* @param data.region Region code for tenant context
|
|
261
|
+
* @param data.id Price ID (UUID format)
|
|
262
|
+
* @param data.requestBody
|
|
263
|
+
* @returns PriceResponse Price updated
|
|
264
|
+
* @throws ApiError
|
|
265
|
+
*/
|
|
266
|
+
static updatePrice(data: UpdatePriceData): CancelablePromise<UpdatePriceResponse>;
|
|
267
|
+
/**
|
|
268
|
+
* Delete price
|
|
269
|
+
* Delete a price quote
|
|
270
|
+
* @param data The data for the request.
|
|
271
|
+
* @param data.region Region code for tenant context
|
|
272
|
+
* @param data.id Price ID (UUID format)
|
|
273
|
+
* @returns void Price deleted
|
|
274
|
+
* @throws ApiError
|
|
275
|
+
*/
|
|
276
|
+
static deletePrice(data: DeletePriceData): CancelablePromise<DeletePriceResponse>;
|
|
277
|
+
/**
|
|
278
|
+
* Bulk create prices
|
|
279
|
+
* Create multiple price quotes at once
|
|
280
|
+
* @param data The data for the request.
|
|
281
|
+
* @param data.region Region code for tenant context
|
|
282
|
+
* @param data.requestBody
|
|
283
|
+
* @returns PriceListResponse Prices created
|
|
284
|
+
* @throws ApiError
|
|
285
|
+
*/
|
|
286
|
+
static bulkCreatePrices(data: BulkCreatePricesData): CancelablePromise<BulkCreatePricesResponse>;
|
|
287
|
+
}
|
|
288
|
+
export declare class BalanceService {
|
|
289
|
+
/**
|
|
290
|
+
* Query balance
|
|
291
|
+
* Get the balance of an account in a specific currency
|
|
292
|
+
* @param data The data for the request.
|
|
293
|
+
* @param data.region Region code for tenant context
|
|
294
|
+
* @param data.account Account path (e.g., "Assets:Bank:Checking")
|
|
295
|
+
* @param data.currency Currency code (e.g., "USD")
|
|
296
|
+
* @param data.date Query date (defaults to today)
|
|
297
|
+
* @returns BalanceResponse Balance result
|
|
298
|
+
* @throws ApiError
|
|
299
|
+
*/
|
|
300
|
+
static getBalance(data: GetBalanceData): CancelablePromise<GetBalanceResponse>;
|
|
301
|
+
/**
|
|
302
|
+
* Query multi-currency balance
|
|
303
|
+
* Get the balance of an account across all currencies
|
|
304
|
+
* @param data The data for the request.
|
|
305
|
+
* @param data.region Region code for tenant context
|
|
306
|
+
* @param data.account Account path (e.g., "Assets:Bank:Checking")
|
|
307
|
+
* @param data.date Query date (defaults to today)
|
|
308
|
+
* @returns MultiCurrencyBalanceResponse Multi-currency balance result
|
|
309
|
+
* @throws ApiError
|
|
310
|
+
*/
|
|
311
|
+
static getMultiCurrencyBalance(data: GetMultiCurrencyBalanceData): CancelablePromise<GetMultiCurrencyBalanceResponse>;
|
|
312
|
+
}
|
|
313
|
+
//# sourceMappingURL=services.gen.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"services.gen.d.ts","sourceRoot":"","sources":["../../src/generated/services.gen.ts"],"names":[],"mappings":"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"}
|