@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,266 +1,766 @@
1
1
  import { ServiceApi, urlEncoded } from "@faiber/sdk-core";
2
2
  export class AssetOperations extends ServiceApi {
3
- /** GET /; permission: public/session-derived. */
3
+ /**
4
+ * Performs the status route operation for the router capability.
5
+ * Calls `GET /` through the shared IDP-aware Faiber client.
6
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
7
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
8
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
9
+ */
4
10
  routerStatusRouteGet(options) {
5
11
  return this.client.request({ ...options, method: "GET", url: `/` });
6
12
  }
7
- /** GET /api/openapi.json; permission: public/session-derived. */
13
+ /**
14
+ * Performs the openapi json operation for the router capability.
15
+ * Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
16
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
17
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
18
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
19
+ */
8
20
  routerOpenapiJsonGet(options) {
9
21
  return this.client.request({ ...options, method: "GET", url: `/api/openapi.json` });
10
22
  }
11
- /** GET /api/v1/actions; permission: admin:action:read. */
23
+ /**
24
+ * Performs the actions index operation for the action capability.
25
+ * Calls `GET /api/v1/actions` through the shared IDP-aware Faiber client.
26
+ * @param params Typed query parameters; omitted members retain backend defaults.
27
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
28
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
29
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:read.
30
+ */
12
31
  actionActionsIndexGet(params, options) {
13
32
  return this.client.request({ ...options, method: "GET", url: `/api/v1/actions`, params });
14
33
  }
15
- /** POST /api/v1/actions; permission: admin:action:create. */
34
+ /**
35
+ * Performs the actions create operation for the action capability.
36
+ * Calls `POST /api/v1/actions` through the shared IDP-aware Faiber client.
37
+ * @param data Typed JSON request body.
38
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
39
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
40
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:create.
41
+ */
16
42
  actionActionsCreatePost(data, options) {
17
43
  return this.client.request({ ...options, method: "POST", url: `/api/v1/actions`, data: data });
18
44
  }
19
- /** DELETE /api/v1/actions/{id}; permission: admin:action:delete. */
45
+ /**
46
+ * Performs the actions delete operation for the action capability.
47
+ * Calls `DELETE /api/v1/actions/{id}` through the shared IDP-aware Faiber client.
48
+ * @param id Backend path identifier `id`.
49
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
50
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
51
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:delete.
52
+ */
20
53
  actionActionsDeleteDelete(id, options) {
21
54
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/actions/${encodeURIComponent(id)}` });
22
55
  }
23
- /** GET /api/v1/actions/{id}; permission: admin:action:read. */
56
+ /**
57
+ * Performs the actions show operation for the action capability.
58
+ * Calls `GET /api/v1/actions/{id}` through the shared IDP-aware Faiber client.
59
+ * @param id Backend path identifier `id`.
60
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
61
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
62
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:read.
63
+ */
24
64
  actionActionsShowGet(id, options) {
25
65
  return this.client.request({ ...options, method: "GET", url: `/api/v1/actions/${encodeURIComponent(id)}` });
26
66
  }
27
- /** PATCH /api/v1/actions/{id}; permission: admin:action:update. */
67
+ /**
68
+ * Performs the actions update operation for the action capability.
69
+ * Calls `PATCH /api/v1/actions/{id}` through the shared IDP-aware Faiber client.
70
+ * @param id Backend path identifier `id`.
71
+ * @param data Typed JSON request body.
72
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
73
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
74
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:update.
75
+ */
28
76
  actionActionsUpdatePatch(id, data, options) {
29
77
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/actions/${encodeURIComponent(id)}`, data: data });
30
78
  }
31
- /** POST /api/v1/actions/complete; permission: admin:action:complete. */
79
+ /**
80
+ * Performs the actions complete operation for the action capability.
81
+ * Calls `POST /api/v1/actions/complete` through the shared IDP-aware Faiber client.
82
+ * @param data Typed JSON request body.
83
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
84
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
85
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:action:complete.
86
+ */
32
87
  actionActionsCompletePost(data, options) {
33
88
  return this.client.request({ ...options, method: "POST", url: `/api/v1/actions/complete`, data: data });
34
89
  }
35
- /** GET /api/v1/admin/plan-products; permission: admin:charge:read. */
90
+ /**
91
+ * Performs the admin plan products index operation for the wallet billing capability.
92
+ * Calls `GET /api/v1/admin/plan-products` through the shared IDP-aware Faiber client.
93
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
94
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
95
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
96
+ */
36
97
  walletBillingAdminPlanProductsIndexGet(options) {
37
98
  return this.client.request({ ...options, method: "GET", url: `/api/v1/admin/plan-products` });
38
99
  }
39
- /** PUT /api/v1/admin/plan-products; permission: admin:charge:update. */
100
+ /**
101
+ * Performs the admin plan products update operation for the wallet billing capability.
102
+ * Calls `PUT /api/v1/admin/plan-products` through the shared IDP-aware Faiber client.
103
+ * @param data Typed JSON request body.
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:update.
107
+ */
40
108
  walletBillingAdminPlanProductsUpdatePut(data, options) {
41
109
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/admin/plan-products`, data: data });
42
110
  }
43
- /** GET /api/v1/admin/resource-unit-prices; permission: admin:charge:read. */
111
+ /**
112
+ * Performs the admin plan products delete operation for the wallet billing capability.
113
+ * Calls `DELETE /api/v1/admin/plan-products/{tier}` through the shared IDP-aware Faiber client.
114
+ * @param tier Backend path identifier `tier`.
115
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
116
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
117
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
118
+ */
119
+ walletBillingAdminPlanProductsDeleteDelete(tier, options) {
120
+ return this.client.request({ ...options, method: "DELETE", url: `/api/v1/admin/plan-products/${encodeURIComponent(tier)}` });
121
+ }
122
+ /**
123
+ * Performs the admin prices operation for the sandbox billing capability.
124
+ * Calls `GET /api/v1/admin/resource-unit-prices` through the shared IDP-aware Faiber client.
125
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
126
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
127
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
128
+ */
44
129
  sandboxBillingAdminPricesGet(options) {
45
130
  return this.client.request({ ...options, method: "GET", url: `/api/v1/admin/resource-unit-prices` });
46
131
  }
47
- /** PUT /api/v1/admin/resource-unit-prices; permission: admin:charge:update. */
132
+ /**
133
+ * Performs the admin prices update operation for the sandbox billing capability.
134
+ * Calls `PUT /api/v1/admin/resource-unit-prices` through the shared IDP-aware Faiber client.
135
+ * @param data Typed JSON request body.
136
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
137
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
138
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
139
+ */
48
140
  sandboxBillingAdminPricesUpdatePut(data, options) {
49
141
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/admin/resource-unit-prices`, data: data });
50
142
  }
51
- /** GET /api/v1/admin/subscriptions; permission: admin:charge:read. */
143
+ /**
144
+ * Performs the admin subscriptions index operation for the wallet billing capability.
145
+ * Calls `GET /api/v1/admin/subscriptions` through the shared IDP-aware Faiber client.
146
+ * @param params Typed query parameters; omitted members retain backend defaults.
147
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
148
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
149
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
150
+ */
52
151
  walletBillingAdminSubscriptionsIndexGet(params, options) {
53
152
  return this.client.request({ ...options, method: "GET", url: `/api/v1/admin/subscriptions`, params });
54
153
  }
55
- /** GET /api/v1/admin/user-plans; permission: admin:charge:read. */
154
+ /**
155
+ * Performs the admin user plans index operation for the wallet billing capability.
156
+ * Calls `GET /api/v1/admin/user-plans` through the shared IDP-aware Faiber client.
157
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
158
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
159
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
160
+ */
56
161
  walletBillingAdminUserPlansIndexGet(options) {
57
162
  return this.client.request({ ...options, method: "GET", url: `/api/v1/admin/user-plans` });
58
163
  }
59
- /** DELETE /api/v1/admin/user-plans/{profile_id}; permission: admin:charge:update. */
164
+ /**
165
+ * Performs the admin user plan delete operation for the wallet billing capability.
166
+ * Calls `DELETE /api/v1/admin/user-plans/{profile_id}` through the shared IDP-aware Faiber client.
167
+ * @param profileId Backend path identifier `profile_id`.
168
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
169
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
170
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
171
+ */
60
172
  walletBillingAdminUserPlanDeleteDelete(profileId, options) {
61
173
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/admin/user-plans/${encodeURIComponent(profileId)}` });
62
174
  }
63
- /** PUT /api/v1/admin/user-plans/{profile_id}; permission: admin:charge:update. */
175
+ /**
176
+ * Performs the admin user plan update operation for the wallet billing capability.
177
+ * Calls `PUT /api/v1/admin/user-plans/{profile_id}` through the shared IDP-aware Faiber client.
178
+ * @param profileId Backend path identifier `profile_id`.
179
+ * @param data Typed JSON request body.
180
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
181
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
182
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
183
+ */
64
184
  walletBillingAdminUserPlanUpdatePut(profileId, data, options) {
65
185
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/admin/user-plans/${encodeURIComponent(profileId)}`, data: data });
66
186
  }
67
- /** PUT /api/v1/admin/user-plans/{profile_id}/disable; permission: admin:charge:update. */
187
+ /**
188
+ * Performs the admin user plan disable operation for the wallet billing capability.
189
+ * Calls `PUT /api/v1/admin/user-plans/{profile_id}/disable` through the shared IDP-aware Faiber client.
190
+ * @param profileId Backend path identifier `profile_id`.
191
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
192
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
193
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
194
+ */
68
195
  walletBillingAdminUserPlanDisablePut(profileId, options) {
69
196
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/admin/user-plans/${encodeURIComponent(profileId)}/disable` });
70
197
  }
71
- /** GET /api/v1/assets; permission: admin:asset:read. */
198
+ /**
199
+ * Performs the assets index operation for the catalog capability.
200
+ * Calls `GET /api/v1/assets` through the shared IDP-aware Faiber client.
201
+ * @param params Typed query parameters; omitted members retain backend defaults.
202
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
203
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
204
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:asset:read.
205
+ */
72
206
  catalogAssetsIndexGet(params, options) {
73
207
  return this.client.request({ ...options, method: "GET", url: `/api/v1/assets`, params });
74
208
  }
75
- /** POST /api/v1/assets; permission: admin:asset:create. */
209
+ /**
210
+ * Performs the assets create operation for the catalog capability.
211
+ * Calls `POST /api/v1/assets` through the shared IDP-aware Faiber client.
212
+ * @param data Typed JSON request body.
213
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
214
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
215
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:asset:create.
216
+ */
76
217
  catalogAssetsCreatePost(data, options) {
77
218
  return this.client.request({ ...options, method: "POST", url: `/api/v1/assets`, data: data });
78
219
  }
79
- /** DELETE /api/v1/assets/{id}; permission: admin:asset:delete. */
220
+ /**
221
+ * Performs the assets delete operation for the catalog capability.
222
+ * Calls `DELETE /api/v1/assets/{id}` through the shared IDP-aware Faiber client.
223
+ * @param id Backend path identifier `id`.
224
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
225
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
226
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:asset:delete.
227
+ */
80
228
  catalogAssetsDeleteDelete(id, options) {
81
229
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/assets/${encodeURIComponent(id)}` });
82
230
  }
83
- /** GET /api/v1/assets/{id}; permission: admin:asset:read. */
231
+ /**
232
+ * Performs the assets show operation for the catalog capability.
233
+ * Calls `GET /api/v1/assets/{id}` through the shared IDP-aware Faiber client.
234
+ * @param id Backend path identifier `id`.
235
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
236
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
237
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:asset:read.
238
+ */
84
239
  catalogAssetsShowGet(id, options) {
85
240
  return this.client.request({ ...options, method: "GET", url: `/api/v1/assets/${encodeURIComponent(id)}` });
86
241
  }
87
- /** PATCH /api/v1/assets/{id}; permission: admin:asset:update. */
242
+ /**
243
+ * Performs the assets update operation for the catalog capability.
244
+ * Calls `PATCH /api/v1/assets/{id}` through the shared IDP-aware Faiber client.
245
+ * @param id Backend path identifier `id`.
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:asset:update.
250
+ */
88
251
  catalogAssetsUpdatePatch(id, data, options) {
89
252
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/assets/${encodeURIComponent(id)}`, data: data });
90
253
  }
91
- /** GET /api/v1/bank-summary; permission: admin:bank_transaction:read. */
254
+ /**
255
+ * Performs the bank summary show operation for the bank capability.
256
+ * Calls `GET /api/v1/bank-summary` through the shared IDP-aware Faiber client.
257
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
258
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
259
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:bank_transaction:read.
260
+ */
92
261
  bankBankSummaryShowGet(options) {
93
262
  return this.client.request({ ...options, method: "GET", url: `/api/v1/bank-summary` });
94
263
  }
95
- /** GET /api/v1/bank-transactions; permission: admin:bank_transaction:read. */
264
+ /**
265
+ * Performs the bank transactions index operation for the bank capability.
266
+ * Calls `GET /api/v1/bank-transactions` through the shared IDP-aware Faiber client.
267
+ * @param params Typed query parameters; omitted members retain backend defaults.
268
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
269
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
270
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:bank_transaction:read.
271
+ */
96
272
  bankBankTransactionsIndexGet(params, options) {
97
273
  return this.client.request({ ...options, method: "GET", url: `/api/v1/bank-transactions`, params });
98
274
  }
99
- /** POST /api/v1/bank-transactions; permission: admin:bank_transaction:create. */
275
+ /**
276
+ * Performs the bank transactions create operation for the bank capability.
277
+ * Calls `POST /api/v1/bank-transactions` through the shared IDP-aware Faiber client.
278
+ * @param data Typed JSON request body.
279
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
280
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
281
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:bank_transaction:create.
282
+ */
100
283
  bankBankTransactionsCreatePost(data, options) {
101
284
  return this.client.request({ ...options, method: "POST", url: `/api/v1/bank-transactions`, data: data });
102
285
  }
103
- /** GET /api/v1/charge/settings; permission: admin:charge:read. */
286
+ /**
287
+ * Performs the charge settings show operation for the charge capability.
288
+ * Calls `GET /api/v1/charge/settings` 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: admin:charge:read.
292
+ */
104
293
  chargeChargeSettingsShowGet(options) {
105
294
  return this.client.request({ ...options, method: "GET", url: `/api/v1/charge/settings` });
106
295
  }
107
- /** PATCH /api/v1/charge/settings; permission: admin:charge:update. */
296
+ /**
297
+ * Performs the charge settings update operation for the charge capability.
298
+ * Calls `PATCH /api/v1/charge/settings` through the shared IDP-aware Faiber client.
299
+ * @param data Typed JSON request body.
300
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
301
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
302
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:update.
303
+ */
108
304
  chargeChargeSettingsUpdatePatch(data, options) {
109
305
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/charge/settings`, data: data });
110
306
  }
111
- /** GET /api/v1/coin-settings; permission: admin:coin_settings:read. */
307
+ /**
308
+ * Performs the coin settings show operation for the bank capability.
309
+ * Calls `GET /api/v1/coin-settings` through the shared IDP-aware Faiber client.
310
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
311
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
312
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:coin_settings:read.
313
+ */
112
314
  bankCoinSettingsShowGet(options) {
113
315
  return this.client.request({ ...options, method: "GET", url: `/api/v1/coin-settings` });
114
316
  }
115
- /** PATCH /api/v1/coin-settings; permission: admin:coin_settings:update. */
317
+ /**
318
+ * Performs the coin settings update operation for the bank capability.
319
+ * Calls `PATCH /api/v1/coin-settings` through the shared IDP-aware Faiber client.
320
+ * @param data Typed JSON request body.
321
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
322
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
323
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:coin_settings:update.
324
+ */
116
325
  bankCoinSettingsUpdatePatch(data, options) {
117
326
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/coin-settings`, data: data });
118
327
  }
119
- /** GET /api/v1/dashboard; permission: admin:dashboard:read. */
328
+ /**
329
+ * Performs the dashboard show operation for the dashboard capability.
330
+ * Calls `GET /api/v1/dashboard` through the shared IDP-aware Faiber client.
331
+ * @param params Typed query parameters; omitted members retain backend defaults.
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:dashboard:read.
335
+ */
120
336
  dashboardDashboardShowGet(params, options) {
121
337
  return this.client.request({ ...options, method: "GET", url: `/api/v1/dashboard`, params });
122
338
  }
123
- /** GET /api/v1/integration/docs; permission: admin:integration:read. */
339
+ /**
340
+ * Performs the integration docs show operation for the integration capability.
341
+ * Calls `GET /api/v1/integration/docs` through the shared IDP-aware Faiber client.
342
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
343
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
344
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:integration:read.
345
+ */
124
346
  integrationIntegrationDocsShowGet(options) {
125
347
  return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/docs` });
126
348
  }
127
- /** GET /api/v1/integration/flow; permission: public/session-derived. */
349
+ /**
350
+ * Performs the flow integration show operation for the integration capability.
351
+ * Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
352
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
353
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
354
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
355
+ */
128
356
  integrationFlowIntegrationShowGet(options) {
129
357
  return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/flow` });
130
358
  }
131
- /** GET /api/v1/integration/rabbitmq; permission: admin:integration:read. */
359
+ /**
360
+ * Performs the rabbitmq integration show operation for the integration capability.
361
+ * Calls `GET /api/v1/integration/rabbitmq` through the shared IDP-aware Faiber client.
362
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
363
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
364
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:integration:read.
365
+ */
132
366
  integrationRabbitmqIntegrationShowGet(options) {
133
367
  return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/rabbitmq` });
134
368
  }
135
- /** GET /api/v1/llm-pricing/plans; permission: admin:charge:read. */
369
+ /**
370
+ * Performs the plans index operation for the llm usage capability.
371
+ * Calls `GET /api/v1/llm-pricing/plans` through the shared IDP-aware Faiber client.
372
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
373
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
374
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
375
+ */
136
376
  llmUsagePlansIndexGet(options) {
137
377
  return this.client.request({ ...options, method: "GET", url: `/api/v1/llm-pricing/plans` });
138
378
  }
139
- /** GET /api/v1/llm-pricing/plans/{profile_id}; permission: admin:charge:read. */
379
+ /**
380
+ * Performs the plan show operation for the llm usage capability.
381
+ * Calls `GET /api/v1/llm-pricing/plans/{profile_id}` through the shared IDP-aware Faiber client.
382
+ * @param profileId Backend path identifier `profile_id`.
383
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
384
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
385
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:charge:read.
386
+ */
140
387
  llmUsagePlanShowGet(profileId, options) {
141
388
  return this.client.request({ ...options, method: "GET", url: `/api/v1/llm-pricing/plans/${encodeURIComponent(profileId)}` });
142
389
  }
143
- /** PUT /api/v1/llm-pricing/plans/{profile_id}; permission: admin:charge:update. */
390
+ /**
391
+ * Performs the plan set operation for the llm usage capability.
392
+ * Calls `PUT /api/v1/llm-pricing/plans/{profile_id}` through the shared IDP-aware Faiber client.
393
+ * @param profileId Backend path identifier `profile_id`.
394
+ * @param data Typed JSON request body.
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: admin:charge:update.
398
+ */
144
399
  llmUsagePlanSetPut(profileId, data, options) {
145
400
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/llm-pricing/plans/${encodeURIComponent(profileId)}`, data: data });
146
401
  }
147
- /** GET /api/v1/me/assets; permission: admin:wallet:read_own. */
402
+ /**
403
+ * Performs the me assets show operation for the wallet capability.
404
+ * Calls `GET /api/v1/me/assets` through the shared IDP-aware Faiber client.
405
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
406
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
407
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:wallet:read_own.
408
+ */
148
409
  walletMeAssetsShowGet(options) {
149
410
  return this.client.request({ ...options, method: "GET", url: `/api/v1/me/assets` });
150
411
  }
151
- /** GET /api/v1/me/badges; permission: public/session-derived. */
412
+ /**
413
+ * Performs the me badges show operation for the wallet capability.
414
+ * Calls `GET /api/v1/me/badges` through the shared IDP-aware Faiber client.
415
+ * @param params Typed query parameters; omitted members retain backend defaults.
416
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
417
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
418
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
419
+ */
152
420
  walletMeBadgesShowGet(params, options) {
153
421
  return this.client.request({ ...options, method: "GET", url: `/api/v1/me/badges`, params });
154
422
  }
155
- /** GET /api/v1/me/llm-usage; permission: admin:wallet:read_own. */
423
+ /**
424
+ * Performs the me llm usage operation for the wallet capability.
425
+ * Calls `GET /api/v1/me/llm-usage` through the shared IDP-aware Faiber client.
426
+ * @param params Typed query parameters; omitted members retain backend defaults.
427
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
428
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
429
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:wallet:read_own.
430
+ */
156
431
  walletMeLlmUsageGet(params, options) {
157
432
  return this.client.request({ ...options, method: "GET", url: `/api/v1/me/llm-usage`, params });
158
433
  }
159
- /** GET /api/v1/me/transactions; permission: admin:wallet:read_own. */
434
+ /**
435
+ * Performs the me transactions operation for the wallet capability.
436
+ * Calls `GET /api/v1/me/transactions` 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:wallet:read_own.
441
+ */
160
442
  walletMeTransactionsGet(params, options) {
161
443
  return this.client.request({ ...options, method: "GET", url: `/api/v1/me/transactions`, params });
162
444
  }
163
- /** GET /api/v1/plans; permission: public/session-derived. */
445
+ /**
446
+ * Performs the me transaction show operation for the wallet capability.
447
+ * Calls `GET /api/v1/me/transactions/{id}` through the shared IDP-aware Faiber client.
448
+ * @param id Backend path identifier `id`.
449
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
450
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
451
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:wallet:read_own.
452
+ */
453
+ walletMeTransactionShowGet(id, options) {
454
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/me/transactions/${encodeURIComponent(id)}` });
455
+ }
456
+ /**
457
+ * Performs the me transaction days operation for the wallet capability.
458
+ * Calls `GET /api/v1/me/transactions/days` through the shared IDP-aware Faiber client.
459
+ * @param params Typed query parameters; omitted members retain backend defaults.
460
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
461
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
462
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:wallet:read_own.
463
+ */
464
+ walletMeTransactionDaysGet(params, options) {
465
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/me/transactions/days`, params });
466
+ }
467
+ /**
468
+ * Performs the me transaction day operation for the wallet capability.
469
+ * Calls `GET /api/v1/me/transactions/days/{day}` through the shared IDP-aware Faiber client.
470
+ * @param day Backend path identifier `day`.
471
+ * @param params Typed query parameters; omitted members retain backend defaults.
472
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
473
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
474
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:wallet:read_own.
475
+ */
476
+ walletMeTransactionDayGet(day, params, options) {
477
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/me/transactions/days/${encodeURIComponent(day)}`, params });
478
+ }
479
+ /**
480
+ * Performs the plans index operation for the wallet billing capability.
481
+ * Calls `GET /api/v1/plans` through the shared IDP-aware Faiber client.
482
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
483
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
484
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
485
+ */
164
486
  walletBillingPlansIndexGet(options) {
165
487
  return this.client.request({ ...options, method: "GET", url: `/api/v1/plans` });
166
488
  }
167
- /** GET /api/v1/plans/current; permission: public/session-derived. */
489
+ /**
490
+ * Performs the current plan operation for the wallet billing capability.
491
+ * Calls `GET /api/v1/plans/current` through the shared IDP-aware Faiber client.
492
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
493
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
494
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
495
+ */
168
496
  walletBillingCurrentPlanGet(options) {
169
497
  return this.client.request({ ...options, method: "GET", url: `/api/v1/plans/current` });
170
498
  }
171
- /** POST /api/v1/plans/purchase; permission: public/session-derived. */
499
+ /**
500
+ * Performs the plans purchase operation for the wallet billing capability.
501
+ * Calls `POST /api/v1/plans/purchase` through the shared IDP-aware Faiber client.
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
+ */
172
507
  walletBillingPlansPurchasePost(data, options) {
173
508
  return this.client.request({ ...options, method: "POST", url: `/api/v1/plans/purchase`, data: data });
174
509
  }
175
- /** GET /api/v1/points-packs; permission: public/session-derived. */
510
+ /**
511
+ * Performs the points packs index operation for the wallet billing capability.
512
+ * Calls `GET /api/v1/points-packs` through the shared IDP-aware Faiber client.
513
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
514
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
515
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
516
+ */
176
517
  walletBillingPointsPacksIndexGet(options) {
177
518
  return this.client.request({ ...options, method: "GET", url: `/api/v1/points-packs` });
178
519
  }
179
- /** POST /api/v1/points-packs/purchase; permission: public/session-derived. */
520
+ /**
521
+ * Performs the points packs purchase operation for the wallet billing capability.
522
+ * Calls `POST /api/v1/points-packs/purchase` through the shared IDP-aware Faiber client.
523
+ * @param data Typed JSON request body.
524
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
525
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
526
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
527
+ */
180
528
  walletBillingPointsPacksPurchasePost(data, options) {
181
529
  return this.client.request({ ...options, method: "POST", url: `/api/v1/points-packs/purchase`, data: data });
182
530
  }
183
- /** GET /api/v1/ranks; permission: admin:rank:read. */
531
+ /**
532
+ * Performs the ranks index operation for the rank capability.
533
+ * Calls `GET /api/v1/ranks` through the shared IDP-aware Faiber client.
534
+ * @param params Typed query parameters; omitted members retain backend defaults.
535
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
536
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
537
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:read.
538
+ */
184
539
  rankRanksIndexGet(params, options) {
185
540
  return this.client.request({ ...options, method: "GET", url: `/api/v1/ranks`, params });
186
541
  }
187
- /** POST /api/v1/ranks; permission: admin:rank:create. */
542
+ /**
543
+ * Performs the ranks create operation for the rank capability.
544
+ * Calls `POST /api/v1/ranks` through the shared IDP-aware Faiber client.
545
+ * @param data Typed JSON request body.
546
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
547
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
548
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:create.
549
+ */
188
550
  rankRanksCreatePost(data, options) {
189
551
  return this.client.request({ ...options, method: "POST", url: `/api/v1/ranks`, data: data });
190
552
  }
191
- /** DELETE /api/v1/ranks/{id}; permission: admin:rank:delete. */
553
+ /**
554
+ * Performs the ranks delete operation for the rank capability.
555
+ * Calls `DELETE /api/v1/ranks/{id}` through the shared IDP-aware Faiber client.
556
+ * @param id Backend path identifier `id`.
557
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
558
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
559
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:delete.
560
+ */
192
561
  rankRanksDeleteDelete(id, options) {
193
562
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/ranks/${encodeURIComponent(id)}` });
194
563
  }
195
- /** GET /api/v1/ranks/{id}; permission: admin:rank:read. */
564
+ /**
565
+ * Performs the ranks show operation for the rank capability.
566
+ * Calls `GET /api/v1/ranks/{id}` through the shared IDP-aware Faiber client.
567
+ * @param id Backend path identifier `id`.
568
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
569
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
570
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:read.
571
+ */
196
572
  rankRanksShowGet(id, options) {
197
573
  return this.client.request({ ...options, method: "GET", url: `/api/v1/ranks/${encodeURIComponent(id)}` });
198
574
  }
199
- /** PATCH /api/v1/ranks/{id}; permission: admin:rank:update. */
575
+ /**
576
+ * Performs the ranks update operation for the rank capability.
577
+ * Calls `PATCH /api/v1/ranks/{id}` through the shared IDP-aware Faiber client.
578
+ * @param id Backend path identifier `id`.
579
+ * @param data Typed JSON request body.
580
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
581
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
582
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:update.
583
+ */
200
584
  rankRanksUpdatePatch(id, data, options) {
201
585
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/ranks/${encodeURIComponent(id)}`, data: data });
202
586
  }
203
- /** DELETE /api/v1/sandbox-resources/{project}; permission: public/session-derived. */
587
+ /**
588
+ * Performs the purge operation for the sandbox billing capability.
589
+ * Calls `DELETE /api/v1/sandbox-resources/{project}` through the shared IDP-aware Faiber client.
590
+ * @param project Backend path identifier `project`.
591
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
592
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
593
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
594
+ */
204
595
  sandboxBillingPurgeDelete(project, options) {
205
596
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/sandbox-resources/${encodeURIComponent(project)}` });
206
597
  }
207
- /** GET /api/v1/sandbox-resources/{project}; permission: public/session-derived. */
598
+ /**
599
+ * Performs the show operation for the sandbox billing capability.
600
+ * Calls `GET /api/v1/sandbox-resources/{project}` through the shared IDP-aware Faiber client.
601
+ * @param project Backend path identifier `project`.
602
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
603
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
604
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
605
+ */
208
606
  sandboxBillingShowGet(project, options) {
209
607
  return this.client.request({ ...options, method: "GET", url: `/api/v1/sandbox-resources/${encodeURIComponent(project)}` });
210
608
  }
211
- /** PUT /api/v1/sandbox-resources/{project}; permission: public/session-derived. */
609
+ /**
610
+ * Performs the update operation for the sandbox billing capability.
611
+ * Calls `PUT /api/v1/sandbox-resources/{project}` through the shared IDP-aware Faiber client.
612
+ * @param project Backend path identifier `project`.
613
+ * @param data Typed JSON request body.
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
+ */
212
618
  sandboxBillingUpdatePut(project, data, options) {
213
619
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/sandbox-resources/${encodeURIComponent(project)}`, data: data });
214
620
  }
215
- /** POST /api/v1/sandbox-resources/{project}/pause; permission: public/session-derived. */
621
+ /**
622
+ * Performs the pause operation for the sandbox billing capability.
623
+ * Calls `POST /api/v1/sandbox-resources/{project}/pause` through the shared IDP-aware Faiber client.
624
+ * @param project Backend path identifier `project`.
625
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
626
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
627
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
628
+ */
216
629
  sandboxBillingPausePost(project, options) {
217
630
  return this.client.request({ ...options, method: "POST", url: `/api/v1/sandbox-resources/${encodeURIComponent(project)}/pause` });
218
631
  }
219
- /** POST /api/v1/sandbox-resources/{project}/resume; permission: public/session-derived. */
632
+ /**
633
+ * Performs the resume operation for the sandbox billing capability.
634
+ * Calls `POST /api/v1/sandbox-resources/{project}/resume` through the shared IDP-aware Faiber client.
635
+ * @param project Backend path identifier `project`.
636
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
637
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
638
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
639
+ */
220
640
  sandboxBillingResumePost(project, options) {
221
641
  return this.client.request({ ...options, method: "POST", url: `/api/v1/sandbox-resources/${encodeURIComponent(project)}/resume` });
222
642
  }
223
- /** GET /api/v1/subscriptions; permission: public/session-derived. */
643
+ /**
644
+ * Performs the subscriptions index operation for the wallet billing capability.
645
+ * Calls `GET /api/v1/subscriptions` through the shared IDP-aware Faiber client.
646
+ * @param params Typed query parameters; omitted members retain backend defaults.
647
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
648
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
649
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
650
+ */
224
651
  walletBillingSubscriptionsIndexGet(params, options) {
225
652
  return this.client.request({ ...options, method: "GET", url: `/api/v1/subscriptions`, params });
226
653
  }
227
- /** POST /api/v1/subscriptions/{id}/cancel; permission: public/session-derived. */
654
+ /**
655
+ * Performs the subscriptions cancel operation for the wallet billing capability.
656
+ * Calls `POST /api/v1/subscriptions/{id}/cancel` through the shared IDP-aware Faiber client.
657
+ * @param id Backend path identifier `id`.
658
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
659
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
660
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
661
+ */
228
662
  walletBillingSubscriptionsCancelPost(id, options) {
229
663
  return this.client.request({ ...options, method: "POST", url: `/api/v1/subscriptions/${encodeURIComponent(id)}/cancel` });
230
664
  }
231
- /** DELETE /api/v1/subscriptions/{project}/{service}/data; permission: public/session-derived. */
665
+ /**
666
+ * Performs the delete permanently operation for the service lifecycle capability.
667
+ * Calls `DELETE /api/v1/subscriptions/{project}/{service}/data` through the shared IDP-aware Faiber client.
668
+ * @param project Backend path identifier `project`.
669
+ * @param service Backend path identifier `service`.
670
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
671
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
672
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
673
+ */
232
674
  serviceLifecycleDeletePermanentlyDelete(project, service, options) {
233
675
  return this.client.request({ ...options, method: "DELETE", url: `/api/v1/subscriptions/${encodeURIComponent(project)}/${encodeURIComponent(service)}/data` });
234
676
  }
235
- /** POST /api/v1/subscriptions/{project}/{service}/pause; permission: public/session-derived. */
677
+ /**
678
+ * Performs the pause operation for the service lifecycle capability.
679
+ * Calls `POST /api/v1/subscriptions/{project}/{service}/pause` through the shared IDP-aware Faiber client.
680
+ * @param project Backend path identifier `project`.
681
+ * @param service Backend path identifier `service`.
682
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
683
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
684
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
685
+ */
236
686
  serviceLifecyclePausePost(project, service, options) {
237
687
  return this.client.request({ ...options, method: "POST", url: `/api/v1/subscriptions/${encodeURIComponent(project)}/${encodeURIComponent(service)}/pause` });
238
688
  }
239
- /** POST /api/v1/subscriptions/{project}/{service}/remove; permission: public/session-derived. */
689
+ /**
690
+ * Performs the remove operation for the service lifecycle capability.
691
+ * Calls `POST /api/v1/subscriptions/{project}/{service}/remove` through the shared IDP-aware Faiber client.
692
+ * @param project Backend path identifier `project`.
693
+ * @param service Backend path identifier `service`.
694
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
695
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
696
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
697
+ */
240
698
  serviceLifecycleRemovePost(project, service, options) {
241
699
  return this.client.request({ ...options, method: "POST", url: `/api/v1/subscriptions/${encodeURIComponent(project)}/${encodeURIComponent(service)}/remove` });
242
700
  }
243
- /** POST /api/v1/subscriptions/{project}/{service}/resume; permission: public/session-derived. */
701
+ /**
702
+ * Performs the resume operation for the service lifecycle capability.
703
+ * Calls `POST /api/v1/subscriptions/{project}/{service}/resume` through the shared IDP-aware Faiber client.
704
+ * @param project Backend path identifier `project`.
705
+ * @param service Backend path identifier `service`.
706
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
707
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
708
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
709
+ */
244
710
  serviceLifecycleResumePost(project, service, options) {
245
711
  return this.client.request({ ...options, method: "POST", url: `/api/v1/subscriptions/${encodeURIComponent(project)}/${encodeURIComponent(service)}/resume` });
246
712
  }
247
- /** POST /api/v1/subscriptions/purchase; permission: public/session-derived. */
713
+ /**
714
+ * Performs the subscriptions purchase operation for the wallet billing capability.
715
+ * Calls `POST /api/v1/subscriptions/purchase` through the shared IDP-aware Faiber client.
716
+ * @param data Typed JSON request body.
717
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
718
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
719
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
720
+ */
248
721
  walletBillingSubscriptionsPurchasePost(data, options) {
249
722
  return this.client.request({ ...options, method: "POST", url: `/api/v1/subscriptions/purchase`, data: data });
250
723
  }
251
- /** GET /api/v1/user-action-logs; permission: admin:user_action_log:read. */
724
+ /**
725
+ * Performs the user action logs index operation for the logs capability.
726
+ * Calls `GET /api/v1/user-action-logs` through the shared IDP-aware Faiber client.
727
+ * @param params Typed query parameters; omitted members retain backend defaults.
728
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
729
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
730
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:user_action_log:read.
731
+ */
252
732
  logsUserActionLogsIndexGet(params, options) {
253
733
  return this.client.request({ ...options, method: "GET", url: `/api/v1/user-action-logs`, params });
254
734
  }
255
- /** GET /api/v1/user-asset-logs; permission: admin:user_asset_log:read. */
735
+ /**
736
+ * Performs the user asset logs index operation for the logs capability.
737
+ * Calls `GET /api/v1/user-asset-logs` through the shared IDP-aware Faiber client.
738
+ * @param params Typed query parameters; omitted members retain backend defaults.
739
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
740
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
741
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:user_asset_log:read.
742
+ */
256
743
  logsUserAssetLogsIndexGet(params, options) {
257
744
  return this.client.request({ ...options, method: "GET", url: `/api/v1/user-asset-logs`, params });
258
745
  }
259
- /** GET /api/v1/wallet; permission: public/session-derived. */
746
+ /**
747
+ * Performs the wallet show operation for the wallet billing capability.
748
+ * Calls `GET /api/v1/wallet` through the shared IDP-aware Faiber client.
749
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
750
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
751
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
752
+ */
260
753
  walletBillingWalletShowGet(options) {
261
754
  return this.client.request({ ...options, method: "GET", url: `/api/v1/wallet` });
262
755
  }
263
- /** POST /api/v1/wallet/topup; permission: public/session-derived. */
756
+ /**
757
+ * Performs the wallet topup operation for the wallet billing capability.
758
+ * Calls `POST /api/v1/wallet/topup` through the shared IDP-aware Faiber client.
759
+ * @param data Typed JSON request body.
760
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
761
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
762
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
763
+ */
264
764
  walletBillingWalletTopupPost(data, options) {
265
765
  return this.client.request({ ...options, method: "POST", url: `/api/v1/wallet/topup`, data: data });
266
766
  }