@faiber/faiber-asset 0.3.0 → 0.5.1

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.
@@ -1,137 +1,629 @@
1
1
  import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
2
2
  import type * as T from "./operations.types.js";
3
3
  export declare class AssetOperations extends ServiceApi {
4
- /** GET /; permission: public/session-derived. */
4
+ /**
5
+ * Performs the status route operation for the router capability.
6
+ * Calls `GET /` through the shared IDP-aware Faiber client.
7
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
8
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
9
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
10
+ */
5
11
  routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
6
- /** GET /api/openapi.json; permission: public/session-derived. */
12
+ /**
13
+ * Performs the openapi json operation for the router capability.
14
+ * Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
15
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
16
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
17
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
18
+ */
7
19
  routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
8
- /** GET /api/v1/actions; permission: admin:action:read. */
20
+ /**
21
+ * Performs the actions index operation for the action capability.
22
+ * Calls `GET /api/v1/actions` through the shared IDP-aware Faiber client.
23
+ * @param params Typed query parameters; omitted members retain backend defaults.
24
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
25
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
26
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:read.
27
+ */
9
28
  actionActionsIndexGet(params?: T.ActionActionsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ActionActionsIndexGetResponse, unknown, {}>>;
10
- /** POST /api/v1/actions; permission: admin:action:create. */
29
+ /**
30
+ * Performs the actions create operation for the action capability.
31
+ * Calls `POST /api/v1/actions` through the shared IDP-aware Faiber client.
32
+ * @param data Typed JSON request body.
33
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
34
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
35
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:create.
36
+ */
11
37
  actionActionsCreatePost(data: T.ActionActionsCreatePostInput, options?: RequestOptions<T.ActionActionsCreatePostInput>): Promise<import("axios").AxiosResponse<T.ActionActionsCreatePostResponse, T.ActionActionsCreatePostInput, {}>>;
12
- /** DELETE /api/v1/actions/{id}; permission: admin:action:delete. */
38
+ /**
39
+ * Performs the actions delete operation for the action capability.
40
+ * Calls `DELETE /api/v1/actions/{id}` through the shared IDP-aware Faiber client.
41
+ * @param id Backend path identifier `id`.
42
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
43
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
44
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:delete.
45
+ */
13
46
  actionActionsDeleteDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ActionActionsDeleteDeleteResponse, unknown, {}>>;
14
- /** GET /api/v1/actions/{id}; permission: admin:action:read. */
47
+ /**
48
+ * Performs the actions show operation for the action capability.
49
+ * Calls `GET /api/v1/actions/{id}` through the shared IDP-aware Faiber client.
50
+ * @param id Backend path identifier `id`.
51
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
52
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
53
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:read.
54
+ */
15
55
  actionActionsShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ActionActionsShowGetResponse, unknown, {}>>;
16
- /** PATCH /api/v1/actions/{id}; permission: admin:action:update. */
56
+ /**
57
+ * Performs the actions update operation for the action capability.
58
+ * Calls `PATCH /api/v1/actions/{id}` through the shared IDP-aware Faiber client.
59
+ * @param id Backend path identifier `id`.
60
+ * @param data Typed JSON request body.
61
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
62
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
63
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:update.
64
+ */
17
65
  actionActionsUpdatePatch(id: Identifier, data: T.ActionActionsUpdatePatchInput, options?: RequestOptions<T.ActionActionsUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.ActionActionsUpdatePatchResponse, T.ActionActionsUpdatePatchInput, {}>>;
18
- /** POST /api/v1/actions/complete; permission: admin:action:complete. */
66
+ /**
67
+ * Performs the actions complete operation for the action capability.
68
+ * Calls `POST /api/v1/actions/complete` through the shared IDP-aware Faiber client.
69
+ * @param data Typed JSON request body.
70
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
71
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
72
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:complete.
73
+ */
19
74
  actionActionsCompletePost(data: T.ActionActionsCompletePostInput, options?: RequestOptions<T.ActionActionsCompletePostInput>): Promise<import("axios").AxiosResponse<T.ActionActionsCompletePostResponse, T.ActionActionsCompletePostInput, {}>>;
20
- /** GET /api/v1/admin/plan-products; permission: admin:charge:read. */
75
+ /**
76
+ * Performs the admin plan products index operation for the wallet billing capability.
77
+ * Calls `GET /api/v1/admin/plan-products` through the shared IDP-aware Faiber client.
78
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
79
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
80
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
81
+ */
21
82
  walletBillingAdminPlanProductsIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminPlanProductsIndexGetResponse, unknown, {}>>;
22
- /** PUT /api/v1/admin/plan-products; permission: admin:charge:update. */
83
+ /**
84
+ * Performs the admin plan products update operation for the wallet billing capability.
85
+ * Calls `PUT /api/v1/admin/plan-products` through the shared IDP-aware Faiber client.
86
+ * @param data Typed JSON request body.
87
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
88
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
89
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
90
+ */
23
91
  walletBillingAdminPlanProductsUpdatePut(data: T.WalletBillingAdminPlanProductsUpdatePutInput, options?: RequestOptions<T.WalletBillingAdminPlanProductsUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WalletBillingAdminPlanProductsUpdatePutResponse, T.WalletBillingAdminPlanProductsUpdatePutInput, {}>>;
24
- /** GET /api/v1/admin/resource-unit-prices; permission: admin:charge:read. */
92
+ /**
93
+ * Performs the admin plan products delete operation for the wallet billing capability.
94
+ * Calls `DELETE /api/v1/admin/plan-products/{tier}` through the shared IDP-aware Faiber client.
95
+ * @param tier Backend path identifier `tier`.
96
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
97
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
98
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
99
+ */
100
+ walletBillingAdminPlanProductsDeleteDelete(tier: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminPlanProductsDeleteDeleteResponseData, unknown, {}>>;
101
+ /**
102
+ * Performs the admin prices operation for the sandbox billing capability.
103
+ * Calls `GET /api/v1/admin/resource-unit-prices` through the shared IDP-aware Faiber client.
104
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
105
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
106
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
107
+ */
25
108
  sandboxBillingAdminPricesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SandboxBillingAdminPricesGetResponse, unknown, {}>>;
26
- /** PUT /api/v1/admin/resource-unit-prices; permission: admin:charge:update. */
109
+ /**
110
+ * Performs the admin prices update operation for the sandbox billing capability.
111
+ * Calls `PUT /api/v1/admin/resource-unit-prices` through the shared IDP-aware Faiber client.
112
+ * @param data Typed JSON request body.
113
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
114
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
115
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
116
+ */
27
117
  sandboxBillingAdminPricesUpdatePut(data: T.SandboxBillingAdminPricesUpdatePutInput, options?: RequestOptions<T.SandboxBillingAdminPricesUpdatePutInput>): Promise<import("axios").AxiosResponse<T.SandboxBillingAdminPricesUpdatePutResponse, T.SandboxBillingAdminPricesUpdatePutInput, {}>>;
28
- /** GET /api/v1/admin/subscriptions; permission: admin:charge:read. */
118
+ /**
119
+ * Performs the admin subscriptions index operation for the wallet billing capability.
120
+ * Calls `GET /api/v1/admin/subscriptions` through the shared IDP-aware Faiber client.
121
+ * @param params Typed query parameters; omitted members retain backend defaults.
122
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
123
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
124
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
125
+ */
29
126
  walletBillingAdminSubscriptionsIndexGet(params?: T.WalletBillingAdminSubscriptionsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminSubscriptionsIndexGetResponse, unknown, {}>>;
30
- /** GET /api/v1/admin/user-plans; permission: admin:charge:read. */
127
+ /**
128
+ * Performs the admin user plans index operation for the wallet billing capability.
129
+ * Calls `GET /api/v1/admin/user-plans` through the shared IDP-aware Faiber client.
130
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
131
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
132
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
133
+ */
31
134
  walletBillingAdminUserPlansIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminUserPlansIndexGetResponse, unknown, {}>>;
32
- /** DELETE /api/v1/admin/user-plans/{profile_id}; permission: admin:charge:update. */
33
- walletBillingAdminUserPlanDeleteDelete(profileId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminUserPlanDeleteDeleteResponse, unknown, {}>>;
34
- /** PUT /api/v1/admin/user-plans/{profile_id}; permission: admin:charge:update. */
135
+ /**
136
+ * Performs the admin user plan delete operation for the wallet billing capability.
137
+ * Calls `DELETE /api/v1/admin/user-plans/{profile_id}` through the shared IDP-aware Faiber client.
138
+ * @param profileId Backend path identifier `profile_id`.
139
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
140
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
141
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
142
+ */
143
+ walletBillingAdminUserPlanDeleteDelete(profileId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminUserPlanDeleteDeleteResponseData, unknown, {}>>;
144
+ /**
145
+ * Performs the admin user plan update operation for the wallet billing capability.
146
+ * Calls `PUT /api/v1/admin/user-plans/{profile_id}` through the shared IDP-aware Faiber client.
147
+ * @param profileId Backend path identifier `profile_id`.
148
+ * @param data Typed JSON request body.
149
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
150
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
151
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
152
+ */
35
153
  walletBillingAdminUserPlanUpdatePut(profileId: Identifier, data: T.WalletBillingAdminUserPlanUpdatePutInput, options?: RequestOptions<T.WalletBillingAdminUserPlanUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WalletBillingAdminUserPlanUpdatePutResponse, T.WalletBillingAdminUserPlanUpdatePutInput, {}>>;
36
- /** PUT /api/v1/admin/user-plans/{profile_id}/disable; permission: admin:charge:update. */
154
+ /**
155
+ * Performs the admin user plan disable operation for the wallet billing capability.
156
+ * Calls `PUT /api/v1/admin/user-plans/{profile_id}/disable` through the shared IDP-aware Faiber client.
157
+ * @param profileId Backend path identifier `profile_id`.
158
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
159
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
160
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
161
+ */
37
162
  walletBillingAdminUserPlanDisablePut(profileId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminUserPlanDisablePutResponse, unknown, {}>>;
38
- /** GET /api/v1/assets; permission: admin:asset:read. */
163
+ /**
164
+ * Performs the assets index operation for the catalog capability.
165
+ * Calls `GET /api/v1/assets` through the shared IDP-aware Faiber client.
166
+ * @param params Typed query parameters; omitted members retain backend defaults.
167
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
168
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
169
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:asset:read.
170
+ */
39
171
  catalogAssetsIndexGet(params?: T.CatalogAssetsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CatalogAssetsIndexGetResponse, unknown, {}>>;
40
- /** POST /api/v1/assets; permission: admin:asset:create. */
172
+ /**
173
+ * Performs the assets create operation for the catalog capability.
174
+ * Calls `POST /api/v1/assets` through the shared IDP-aware Faiber client.
175
+ * @param data Typed JSON request body.
176
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
177
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
178
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:asset:create.
179
+ */
41
180
  catalogAssetsCreatePost(data: T.CatalogAssetsCreatePostInput, options?: RequestOptions<T.CatalogAssetsCreatePostInput>): Promise<import("axios").AxiosResponse<T.CatalogAssetsCreatePostResponse, T.CatalogAssetsCreatePostInput, {}>>;
42
- /** DELETE /api/v1/assets/{id}; permission: admin:asset:delete. */
181
+ /**
182
+ * Performs the assets delete operation for the catalog capability.
183
+ * Calls `DELETE /api/v1/assets/{id}` through the shared IDP-aware Faiber client.
184
+ * @param id Backend path identifier `id`.
185
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
186
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
187
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:asset:delete.
188
+ */
43
189
  catalogAssetsDeleteDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CatalogAssetsDeleteDeleteResponse, unknown, {}>>;
44
- /** GET /api/v1/assets/{id}; permission: admin:asset:read. */
190
+ /**
191
+ * Performs the assets show operation for the catalog capability.
192
+ * Calls `GET /api/v1/assets/{id}` through the shared IDP-aware Faiber client.
193
+ * @param id Backend path identifier `id`.
194
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
195
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
196
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:asset:read.
197
+ */
45
198
  catalogAssetsShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CatalogAssetsShowGetResponse, unknown, {}>>;
46
- /** PATCH /api/v1/assets/{id}; permission: admin:asset:update. */
199
+ /**
200
+ * Performs the assets update operation for the catalog capability.
201
+ * Calls `PATCH /api/v1/assets/{id}` through the shared IDP-aware Faiber client.
202
+ * @param id Backend path identifier `id`.
203
+ * @param data Typed JSON request body.
204
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
205
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
206
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:asset:update.
207
+ */
47
208
  catalogAssetsUpdatePatch(id: Identifier, data: T.CatalogAssetsUpdatePatchInput, options?: RequestOptions<T.CatalogAssetsUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.CatalogAssetsUpdatePatchResponse, T.CatalogAssetsUpdatePatchInput, {}>>;
48
- /** GET /api/v1/bank-summary; permission: admin:bank_transaction:read. */
209
+ /**
210
+ * Performs the bank summary show operation for the bank capability.
211
+ * Calls `GET /api/v1/bank-summary` through the shared IDP-aware Faiber client.
212
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
213
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
214
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:bank_transaction:read.
215
+ */
49
216
  bankBankSummaryShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BankBankSummaryShowGetResponse, unknown, {}>>;
50
- /** GET /api/v1/bank-transactions; permission: admin:bank_transaction:read. */
217
+ /**
218
+ * Performs the bank transactions index operation for the bank capability.
219
+ * Calls `GET /api/v1/bank-transactions` through the shared IDP-aware Faiber client.
220
+ * @param params Typed query parameters; omitted members retain backend defaults.
221
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
222
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
223
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:bank_transaction:read.
224
+ */
51
225
  bankBankTransactionsIndexGet(params?: T.BankBankTransactionsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BankBankTransactionsIndexGetResponse, unknown, {}>>;
52
- /** POST /api/v1/bank-transactions; permission: admin:bank_transaction:create. */
226
+ /**
227
+ * Performs the bank transactions create operation for the bank capability.
228
+ * Calls `POST /api/v1/bank-transactions` through the shared IDP-aware Faiber client.
229
+ * @param data Typed JSON request body.
230
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
231
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
232
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:bank_transaction:create.
233
+ */
53
234
  bankBankTransactionsCreatePost(data: T.BankBankTransactionsCreatePostInput, options?: RequestOptions<T.BankBankTransactionsCreatePostInput>): Promise<import("axios").AxiosResponse<T.BankBankTransactionsCreatePostResponse, T.BankBankTransactionsCreatePostInput, {}>>;
54
- /** GET /api/v1/charge/settings; permission: admin:charge:read. */
235
+ /**
236
+ * Performs the charge settings show operation for the charge capability.
237
+ * Calls `GET /api/v1/charge/settings` through the shared IDP-aware Faiber client.
238
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
239
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
240
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
241
+ */
55
242
  chargeChargeSettingsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ChargeChargeSettingsShowGetResponse, unknown, {}>>;
56
- /** PATCH /api/v1/charge/settings; permission: admin:charge:update. */
243
+ /**
244
+ * Performs the charge settings update operation for the charge capability.
245
+ * Calls `PATCH /api/v1/charge/settings` through the shared IDP-aware Faiber client.
246
+ * @param data Typed JSON request body.
247
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
248
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
249
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
250
+ */
57
251
  chargeChargeSettingsUpdatePatch(data: T.ChargeChargeSettingsUpdatePatchInput, options?: RequestOptions<T.ChargeChargeSettingsUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.ChargeChargeSettingsUpdatePatchResponse, T.ChargeChargeSettingsUpdatePatchInput, {}>>;
58
- /** GET /api/v1/coin-settings; permission: admin:coin_settings:read. */
252
+ /**
253
+ * Performs the coin settings show operation for the bank capability.
254
+ * Calls `GET /api/v1/coin-settings` through the shared IDP-aware Faiber client.
255
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
256
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
257
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:coin_settings:read.
258
+ */
59
259
  bankCoinSettingsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BankCoinSettingsShowGetResponse, unknown, {}>>;
60
- /** PATCH /api/v1/coin-settings; permission: admin:coin_settings:update. */
260
+ /**
261
+ * Performs the coin settings update operation for the bank capability.
262
+ * Calls `PATCH /api/v1/coin-settings` through the shared IDP-aware Faiber client.
263
+ * @param data Typed JSON request body.
264
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
265
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
266
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:coin_settings:update.
267
+ */
61
268
  bankCoinSettingsUpdatePatch(data: T.BankCoinSettingsUpdatePatchInput, options?: RequestOptions<T.BankCoinSettingsUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.BankCoinSettingsUpdatePatchResponse, T.BankCoinSettingsUpdatePatchInput, {}>>;
62
- /** GET /api/v1/dashboard; permission: admin:dashboard:read. */
269
+ /**
270
+ * Performs the dashboard show operation for the dashboard capability.
271
+ * Calls `GET /api/v1/dashboard` through the shared IDP-aware Faiber client.
272
+ * @param params Typed query parameters; omitted members retain backend defaults.
273
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
274
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
275
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:dashboard:read.
276
+ */
63
277
  dashboardDashboardShowGet(params?: T.DashboardDashboardShowGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.DashboardDashboardShowGetResponse, unknown, {}>>;
64
- /** GET /api/v1/integration/docs; permission: admin:integration:read. */
278
+ /**
279
+ * Performs the integration docs show operation for the integration capability.
280
+ * Calls `GET /api/v1/integration/docs` through the shared IDP-aware Faiber client.
281
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
282
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
283
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:integration:read.
284
+ */
65
285
  integrationIntegrationDocsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationIntegrationDocsShowGetResponse, unknown, {}>>;
66
- /** GET /api/v1/integration/flow; permission: public/session-derived. */
286
+ /**
287
+ * Performs the flow integration show operation for the integration capability.
288
+ * Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
289
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
290
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
291
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
292
+ */
67
293
  integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
68
- /** GET /api/v1/integration/rabbitmq; permission: admin:integration:read. */
294
+ /**
295
+ * Performs the rabbitmq integration show operation for the integration capability.
296
+ * Calls `GET /api/v1/integration/rabbitmq` through the shared IDP-aware Faiber client.
297
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
298
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
299
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:integration:read.
300
+ */
69
301
  integrationRabbitmqIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationRabbitmqIntegrationShowGetResponse, unknown, {}>>;
70
- /** GET /api/v1/llm-pricing/plans; permission: admin:charge:read. */
302
+ /**
303
+ * Performs the plans index operation for the llm usage capability.
304
+ * Calls `GET /api/v1/llm-pricing/plans` through the shared IDP-aware Faiber client.
305
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
306
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
307
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
308
+ */
71
309
  llmUsagePlansIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LlmUsagePlansIndexGetResponse, unknown, {}>>;
72
- /** GET /api/v1/llm-pricing/plans/{profile_id}; permission: admin:charge:read. */
310
+ /**
311
+ * Performs the plan show operation for the llm usage capability.
312
+ * Calls `GET /api/v1/llm-pricing/plans/{profile_id}` through the shared IDP-aware Faiber client.
313
+ * @param profileId Backend path identifier `profile_id`.
314
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
315
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
316
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
317
+ */
73
318
  llmUsagePlanShowGet(profileId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LlmUsagePlanShowGetResponse, unknown, {}>>;
74
- /** PUT /api/v1/llm-pricing/plans/{profile_id}; permission: admin:charge:update. */
319
+ /**
320
+ * Performs the plan set operation for the llm usage capability.
321
+ * Calls `PUT /api/v1/llm-pricing/plans/{profile_id}` through the shared IDP-aware Faiber client.
322
+ * @param profileId Backend path identifier `profile_id`.
323
+ * @param data Typed JSON request body.
324
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
325
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
326
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
327
+ */
75
328
  llmUsagePlanSetPut(profileId: Identifier, data: T.LlmUsagePlanSetPutInput, options?: RequestOptions<T.LlmUsagePlanSetPutInput>): Promise<import("axios").AxiosResponse<T.LlmUsagePlanSetPutResponse, T.LlmUsagePlanSetPutInput, {}>>;
76
- /** GET /api/v1/me/assets; permission: admin:wallet:read_own. */
329
+ /**
330
+ * Performs the me assets show operation for the wallet capability.
331
+ * Calls `GET /api/v1/me/assets` through the shared IDP-aware Faiber client.
332
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
333
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
334
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:wallet:read_own.
335
+ */
77
336
  walletMeAssetsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletMeAssetsShowGetResponse, unknown, {}>>;
78
- /** GET /api/v1/me/badges; permission: public/session-derived. */
337
+ /**
338
+ * Performs the me badges show operation for the wallet capability.
339
+ * Calls `GET /api/v1/me/badges` through the shared IDP-aware Faiber client.
340
+ * @param params Typed query parameters; omitted members retain backend defaults.
341
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
342
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
343
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
344
+ */
79
345
  walletMeBadgesShowGet(params?: T.WalletMeBadgesShowGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletMeBadgesShowGetResponse, unknown, {}>>;
80
- /** GET /api/v1/me/llm-usage; permission: admin:wallet:read_own. */
346
+ /**
347
+ * Performs the me llm usage operation for the wallet capability.
348
+ * Calls `GET /api/v1/me/llm-usage` through the shared IDP-aware Faiber client.
349
+ * @param params Typed query parameters; omitted members retain backend defaults.
350
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
351
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
352
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:wallet:read_own.
353
+ */
81
354
  walletMeLlmUsageGet(params?: T.WalletMeLlmUsageGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletMeLlmUsageGetResponse, unknown, {}>>;
82
- /** GET /api/v1/me/transactions; permission: admin:wallet:read_own. */
355
+ /**
356
+ * Performs the me transactions operation for the wallet capability.
357
+ * Calls `GET /api/v1/me/transactions` through the shared IDP-aware Faiber client.
358
+ * @param params Typed query parameters; omitted members retain backend defaults.
359
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
360
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
361
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:wallet:read_own.
362
+ */
83
363
  walletMeTransactionsGet(params?: T.WalletMeTransactionsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletMeTransactionsGetResponse, unknown, {}>>;
84
- /** GET /api/v1/plans; permission: public/session-derived. */
364
+ /**
365
+ * Performs the me transaction show operation for the wallet capability.
366
+ * Calls `GET /api/v1/me/transactions/{id}` through the shared IDP-aware Faiber client.
367
+ * @param id Backend path identifier `id`.
368
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
369
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
370
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:wallet:read_own.
371
+ */
372
+ walletMeTransactionShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletMeTransactionShowGetResponse, unknown, {}>>;
373
+ /**
374
+ * Performs the me transaction days operation for the wallet capability.
375
+ * Calls `GET /api/v1/me/transactions/days` through the shared IDP-aware Faiber client.
376
+ * @param params Typed query parameters; omitted members retain backend defaults.
377
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
378
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
379
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:wallet:read_own.
380
+ */
381
+ walletMeTransactionDaysGet(params?: T.WalletMeTransactionDaysGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletMeTransactionDaysGetResponse, unknown, {}>>;
382
+ /**
383
+ * Performs the me transaction day operation for the wallet capability.
384
+ * Calls `GET /api/v1/me/transactions/days/{day}` through the shared IDP-aware Faiber client.
385
+ * @param day Backend path identifier `day`.
386
+ * @param params Typed query parameters; omitted members retain backend defaults.
387
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
388
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
389
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:wallet:read_own.
390
+ */
391
+ walletMeTransactionDayGet(day: Identifier, params?: T.WalletMeTransactionDayGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletMeTransactionDayGetResponse, unknown, {}>>;
392
+ /**
393
+ * Performs the plans index operation for the wallet billing capability.
394
+ * Calls `GET /api/v1/plans` through the shared IDP-aware Faiber client.
395
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
396
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
397
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
398
+ */
85
399
  walletBillingPlansIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingPlansIndexGetResponse, unknown, {}>>;
86
- /** GET /api/v1/plans/current; permission: public/session-derived. */
400
+ /**
401
+ * Performs the current plan operation for the wallet billing capability.
402
+ * Calls `GET /api/v1/plans/current` through the shared IDP-aware Faiber client.
403
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
404
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
405
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
406
+ */
87
407
  walletBillingCurrentPlanGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingCurrentPlanGetResponse, unknown, {}>>;
88
- /** POST /api/v1/plans/purchase; permission: public/session-derived. */
408
+ /**
409
+ * Performs the plans purchase operation for the wallet billing capability.
410
+ * Calls `POST /api/v1/plans/purchase` through the shared IDP-aware Faiber client.
411
+ * @param data Typed JSON request body.
412
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
413
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
414
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
415
+ */
89
416
  walletBillingPlansPurchasePost(data: T.WalletBillingPlansPurchasePostInput, options?: RequestOptions<T.WalletBillingPlansPurchasePostInput>): Promise<import("axios").AxiosResponse<T.WalletBillingPlansPurchasePostResponse, T.WalletBillingPlansPurchasePostInput, {}>>;
90
- /** GET /api/v1/points-packs; permission: public/session-derived. */
417
+ /**
418
+ * Performs the points packs index operation for the wallet billing capability.
419
+ * Calls `GET /api/v1/points-packs` through the shared IDP-aware Faiber client.
420
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
421
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
422
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
423
+ */
91
424
  walletBillingPointsPacksIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingPointsPacksIndexGetResponse, unknown, {}>>;
92
- /** POST /api/v1/points-packs/purchase; permission: public/session-derived. */
425
+ /**
426
+ * Performs the points packs purchase operation for the wallet billing capability.
427
+ * Calls `POST /api/v1/points-packs/purchase` through the shared IDP-aware Faiber client.
428
+ * @param data Typed JSON request body.
429
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
430
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
431
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
432
+ */
93
433
  walletBillingPointsPacksPurchasePost(data: T.WalletBillingPointsPacksPurchasePostInput, options?: RequestOptions<T.WalletBillingPointsPacksPurchasePostInput>): Promise<import("axios").AxiosResponse<T.WalletBillingPointsPacksPurchasePostResponse, T.WalletBillingPointsPacksPurchasePostInput, {}>>;
94
- /** GET /api/v1/ranks; permission: admin:rank:read. */
434
+ /**
435
+ * Performs the ranks index operation for the rank capability.
436
+ * Calls `GET /api/v1/ranks` through the shared IDP-aware Faiber client.
437
+ * @param params Typed query parameters; omitted members retain backend defaults.
438
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
439
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
440
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:read.
441
+ */
95
442
  rankRanksIndexGet(params?: T.RankRanksIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RankRanksIndexGetResponse, unknown, {}>>;
96
- /** POST /api/v1/ranks; permission: admin:rank:create. */
443
+ /**
444
+ * Performs the ranks create operation for the rank capability.
445
+ * Calls `POST /api/v1/ranks` through the shared IDP-aware Faiber client.
446
+ * @param data Typed JSON request body.
447
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
448
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
449
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:create.
450
+ */
97
451
  rankRanksCreatePost(data: T.RankRanksCreatePostInput, options?: RequestOptions<T.RankRanksCreatePostInput>): Promise<import("axios").AxiosResponse<T.RankRanksCreatePostResponse, T.RankRanksCreatePostInput, {}>>;
98
- /** DELETE /api/v1/ranks/{id}; permission: admin:rank:delete. */
452
+ /**
453
+ * Performs the ranks delete operation for the rank capability.
454
+ * Calls `DELETE /api/v1/ranks/{id}` through the shared IDP-aware Faiber client.
455
+ * @param id Backend path identifier `id`.
456
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
457
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
458
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:delete.
459
+ */
99
460
  rankRanksDeleteDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RankRanksDeleteDeleteResponse, unknown, {}>>;
100
- /** GET /api/v1/ranks/{id}; permission: admin:rank:read. */
461
+ /**
462
+ * Performs the ranks show operation for the rank capability.
463
+ * Calls `GET /api/v1/ranks/{id}` through the shared IDP-aware Faiber client.
464
+ * @param id Backend path identifier `id`.
465
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
466
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
467
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:read.
468
+ */
101
469
  rankRanksShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RankRanksShowGetResponse, unknown, {}>>;
102
- /** PATCH /api/v1/ranks/{id}; permission: admin:rank:update. */
470
+ /**
471
+ * Performs the ranks update operation for the rank capability.
472
+ * Calls `PATCH /api/v1/ranks/{id}` through the shared IDP-aware Faiber client.
473
+ * @param id Backend path identifier `id`.
474
+ * @param data Typed JSON request body.
475
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
476
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
477
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:update.
478
+ */
103
479
  rankRanksUpdatePatch(id: Identifier, data: T.RankRanksUpdatePatchInput, options?: RequestOptions<T.RankRanksUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.RankRanksUpdatePatchResponse, T.RankRanksUpdatePatchInput, {}>>;
104
- /** DELETE /api/v1/sandbox-resources/{project}; permission: public/session-derived. */
105
- sandboxBillingPurgeDelete(project: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SandboxBillingPurgeDeleteResponse, unknown, {}>>;
106
- /** GET /api/v1/sandbox-resources/{project}; permission: public/session-derived. */
480
+ /**
481
+ * Performs the purge operation for the sandbox billing capability.
482
+ * Calls `DELETE /api/v1/sandbox-resources/{project}` through the shared IDP-aware Faiber client.
483
+ * @param project Backend path identifier `project`.
484
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
485
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
486
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
487
+ */
488
+ sandboxBillingPurgeDelete(project: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SandboxBillingPurgeDeleteResponseData, unknown, {}>>;
489
+ /**
490
+ * Performs the show operation for the sandbox billing capability.
491
+ * Calls `GET /api/v1/sandbox-resources/{project}` through the shared IDP-aware Faiber client.
492
+ * @param project Backend path identifier `project`.
493
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
494
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
495
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
496
+ */
107
497
  sandboxBillingShowGet(project: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SandboxBillingShowGetResponse, unknown, {}>>;
108
- /** PUT /api/v1/sandbox-resources/{project}; permission: public/session-derived. */
498
+ /**
499
+ * Performs the update operation for the sandbox billing capability.
500
+ * Calls `PUT /api/v1/sandbox-resources/{project}` through the shared IDP-aware Faiber client.
501
+ * @param project Backend path identifier `project`.
502
+ * @param data Typed JSON request body.
503
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
504
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
505
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
506
+ */
109
507
  sandboxBillingUpdatePut(project: Identifier, data: T.SandboxBillingUpdatePutInput, options?: RequestOptions<T.SandboxBillingUpdatePutInput>): Promise<import("axios").AxiosResponse<T.SandboxBillingUpdatePutResponse, T.SandboxBillingUpdatePutInput, {}>>;
110
- /** POST /api/v1/sandbox-resources/{project}/pause; permission: public/session-derived. */
508
+ /**
509
+ * Performs the pause operation for the sandbox billing capability.
510
+ * Calls `POST /api/v1/sandbox-resources/{project}/pause` through the shared IDP-aware Faiber client.
511
+ * @param project Backend path identifier `project`.
512
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
513
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
514
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
515
+ */
111
516
  sandboxBillingPausePost(project: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SandboxBillingPausePostResponse, unknown, {}>>;
112
- /** POST /api/v1/sandbox-resources/{project}/resume; permission: public/session-derived. */
517
+ /**
518
+ * Performs the resume operation for the sandbox billing capability.
519
+ * Calls `POST /api/v1/sandbox-resources/{project}/resume` through the shared IDP-aware Faiber client.
520
+ * @param project Backend path identifier `project`.
521
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
522
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
523
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
524
+ */
113
525
  sandboxBillingResumePost(project: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SandboxBillingResumePostResponse, unknown, {}>>;
114
- /** GET /api/v1/subscriptions; permission: public/session-derived. */
526
+ /**
527
+ * Performs the subscriptions index operation for the wallet billing capability.
528
+ * Calls `GET /api/v1/subscriptions` through the shared IDP-aware Faiber client.
529
+ * @param params Typed query parameters; omitted members retain backend defaults.
530
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
531
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
532
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
533
+ */
115
534
  walletBillingSubscriptionsIndexGet(params?: T.WalletBillingSubscriptionsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingSubscriptionsIndexGetResponse, unknown, {}>>;
116
- /** POST /api/v1/subscriptions/{id}/cancel; permission: public/session-derived. */
117
- walletBillingSubscriptionsCancelPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingSubscriptionsCancelPostResponse, unknown, {}>>;
118
- /** DELETE /api/v1/subscriptions/{project}/{service}/data; permission: public/session-derived. */
119
- serviceLifecycleDeletePermanentlyDelete(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecycleDeletePermanentlyDeleteResponse, unknown, {}>>;
120
- /** POST /api/v1/subscriptions/{project}/{service}/pause; permission: public/session-derived. */
121
- serviceLifecyclePausePost(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecyclePausePostResponse, unknown, {}>>;
122
- /** POST /api/v1/subscriptions/{project}/{service}/remove; permission: public/session-derived. */
123
- serviceLifecycleRemovePost(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecycleRemovePostResponse, unknown, {}>>;
124
- /** POST /api/v1/subscriptions/{project}/{service}/resume; permission: public/session-derived. */
125
- serviceLifecycleResumePost(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecycleResumePostResponse, unknown, {}>>;
126
- /** POST /api/v1/subscriptions/purchase; permission: public/session-derived. */
535
+ /**
536
+ * Performs the subscriptions cancel operation for the wallet billing capability.
537
+ * Calls `POST /api/v1/subscriptions/{id}/cancel` through the shared IDP-aware Faiber client.
538
+ * @param id Backend path identifier `id`.
539
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
540
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
541
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
542
+ */
543
+ walletBillingSubscriptionsCancelPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingSubscriptionsCancelPostResponseData, unknown, {}>>;
544
+ /**
545
+ * Performs the delete permanently operation for the service lifecycle capability.
546
+ * Calls `DELETE /api/v1/subscriptions/{project}/{service}/data` through the shared IDP-aware Faiber client.
547
+ * @param project Backend path identifier `project`.
548
+ * @param service Backend path identifier `service`.
549
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
550
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
551
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
552
+ */
553
+ serviceLifecycleDeletePermanentlyDelete(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecycleDeletePermanentlyDeleteResponseData, unknown, {}>>;
554
+ /**
555
+ * Performs the pause operation for the service lifecycle capability.
556
+ * Calls `POST /api/v1/subscriptions/{project}/{service}/pause` through the shared IDP-aware Faiber client.
557
+ * @param project Backend path identifier `project`.
558
+ * @param service Backend path identifier `service`.
559
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
560
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
561
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
562
+ */
563
+ serviceLifecyclePausePost(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecyclePausePostResponseData, unknown, {}>>;
564
+ /**
565
+ * Performs the remove operation for the service lifecycle capability.
566
+ * Calls `POST /api/v1/subscriptions/{project}/{service}/remove` through the shared IDP-aware Faiber client.
567
+ * @param project Backend path identifier `project`.
568
+ * @param service Backend path identifier `service`.
569
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
570
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
571
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
572
+ */
573
+ serviceLifecycleRemovePost(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecycleRemovePostResponseData, unknown, {}>>;
574
+ /**
575
+ * Performs the resume operation for the service lifecycle capability.
576
+ * Calls `POST /api/v1/subscriptions/{project}/{service}/resume` through the shared IDP-aware Faiber client.
577
+ * @param project Backend path identifier `project`.
578
+ * @param service Backend path identifier `service`.
579
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
580
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
581
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
582
+ */
583
+ serviceLifecycleResumePost(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecycleResumePostResponseData, unknown, {}>>;
584
+ /**
585
+ * Performs the subscriptions purchase operation for the wallet billing capability.
586
+ * Calls `POST /api/v1/subscriptions/purchase` through the shared IDP-aware Faiber client.
587
+ * @param data Typed JSON request body.
588
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
589
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
590
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
591
+ */
127
592
  walletBillingSubscriptionsPurchasePost(data: T.WalletBillingSubscriptionsPurchasePostInput, options?: RequestOptions<T.WalletBillingSubscriptionsPurchasePostInput>): Promise<import("axios").AxiosResponse<T.WalletBillingSubscriptionsPurchasePostResponse, T.WalletBillingSubscriptionsPurchasePostInput, {}>>;
128
- /** GET /api/v1/user-action-logs; permission: admin:user_action_log:read. */
593
+ /**
594
+ * Performs the user action logs index operation for the logs capability.
595
+ * Calls `GET /api/v1/user-action-logs` through the shared IDP-aware Faiber client.
596
+ * @param params Typed query parameters; omitted members retain backend defaults.
597
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
598
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
599
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:user_action_log:read.
600
+ */
129
601
  logsUserActionLogsIndexGet(params?: T.LogsUserActionLogsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LogsUserActionLogsIndexGetResponse, unknown, {}>>;
130
- /** GET /api/v1/user-asset-logs; permission: admin:user_asset_log:read. */
602
+ /**
603
+ * Performs the user asset logs index operation for the logs capability.
604
+ * Calls `GET /api/v1/user-asset-logs` through the shared IDP-aware Faiber client.
605
+ * @param params Typed query parameters; omitted members retain backend defaults.
606
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
607
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
608
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:user_asset_log:read.
609
+ */
131
610
  logsUserAssetLogsIndexGet(params?: T.LogsUserAssetLogsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LogsUserAssetLogsIndexGetResponse, unknown, {}>>;
132
- /** GET /api/v1/wallet; permission: public/session-derived. */
611
+ /**
612
+ * Performs the wallet show operation for the wallet billing capability.
613
+ * Calls `GET /api/v1/wallet` through the shared IDP-aware Faiber client.
614
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
615
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
616
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
617
+ */
133
618
  walletBillingWalletShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingWalletShowGetResponse, unknown, {}>>;
134
- /** POST /api/v1/wallet/topup; permission: public/session-derived. */
619
+ /**
620
+ * Performs the wallet topup operation for the wallet billing capability.
621
+ * Calls `POST /api/v1/wallet/topup` through the shared IDP-aware Faiber client.
622
+ * @param data Typed JSON request body.
623
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
624
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
625
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
626
+ */
135
627
  walletBillingWalletTopupPost(data: T.WalletBillingWalletTopupPostInput, options?: RequestOptions<T.WalletBillingWalletTopupPostInput>): Promise<import("axios").AxiosResponse<T.WalletBillingWalletTopupPostResponse, T.WalletBillingWalletTopupPostInput, {}>>;
136
628
  }
137
629
  //# sourceMappingURL=operations.d.ts.map