@faiber/faiber-asset 0.2.2 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/operations.d.ts +530 -66
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +532 -66
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +545 -199
- package/dist/operations.types.d.ts.map +1 -1
- package/dist/types.d.ts +32 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/operations.js
CHANGED
|
@@ -1,266 +1,732 @@
|
|
|
1
1
|
import { ServiceApi, urlEncoded } from "@faiber/sdk-core";
|
|
2
2
|
export class AssetOperations extends ServiceApi {
|
|
3
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
445
|
+
/**
|
|
446
|
+
* Performs the plans index operation for the wallet billing capability.
|
|
447
|
+
* Calls `GET /api/v1/plans` through the shared IDP-aware Faiber client.
|
|
448
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
449
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
450
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
451
|
+
*/
|
|
164
452
|
walletBillingPlansIndexGet(options) {
|
|
165
453
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/plans` });
|
|
166
454
|
}
|
|
167
|
-
/**
|
|
455
|
+
/**
|
|
456
|
+
* Performs the current plan operation for the wallet billing capability.
|
|
457
|
+
* Calls `GET /api/v1/plans/current` through the shared IDP-aware Faiber client.
|
|
458
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
459
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
460
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
461
|
+
*/
|
|
168
462
|
walletBillingCurrentPlanGet(options) {
|
|
169
463
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/plans/current` });
|
|
170
464
|
}
|
|
171
|
-
/**
|
|
465
|
+
/**
|
|
466
|
+
* Performs the plans purchase operation for the wallet billing capability.
|
|
467
|
+
* Calls `POST /api/v1/plans/purchase` through the shared IDP-aware Faiber client.
|
|
468
|
+
* @param data Typed JSON request body.
|
|
469
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
470
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
471
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
472
|
+
*/
|
|
172
473
|
walletBillingPlansPurchasePost(data, options) {
|
|
173
474
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/plans/purchase`, data: data });
|
|
174
475
|
}
|
|
175
|
-
/**
|
|
476
|
+
/**
|
|
477
|
+
* Performs the points packs index operation for the wallet billing capability.
|
|
478
|
+
* Calls `GET /api/v1/points-packs` through the shared IDP-aware Faiber client.
|
|
479
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
480
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
481
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
482
|
+
*/
|
|
176
483
|
walletBillingPointsPacksIndexGet(options) {
|
|
177
484
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/points-packs` });
|
|
178
485
|
}
|
|
179
|
-
/**
|
|
486
|
+
/**
|
|
487
|
+
* Performs the points packs purchase operation for the wallet billing capability.
|
|
488
|
+
* Calls `POST /api/v1/points-packs/purchase` through the shared IDP-aware Faiber client.
|
|
489
|
+
* @param data Typed JSON request body.
|
|
490
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
491
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
492
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
493
|
+
*/
|
|
180
494
|
walletBillingPointsPacksPurchasePost(data, options) {
|
|
181
495
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/points-packs/purchase`, data: data });
|
|
182
496
|
}
|
|
183
|
-
/**
|
|
497
|
+
/**
|
|
498
|
+
* Performs the ranks index operation for the rank capability.
|
|
499
|
+
* Calls `GET /api/v1/ranks` through the shared IDP-aware Faiber client.
|
|
500
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
501
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
502
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
503
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:read.
|
|
504
|
+
*/
|
|
184
505
|
rankRanksIndexGet(params, options) {
|
|
185
506
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/ranks`, params });
|
|
186
507
|
}
|
|
187
|
-
/**
|
|
508
|
+
/**
|
|
509
|
+
* Performs the ranks create operation for the rank capability.
|
|
510
|
+
* Calls `POST /api/v1/ranks` through the shared IDP-aware Faiber client.
|
|
511
|
+
* @param data Typed JSON request body.
|
|
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: admin:rank:create.
|
|
515
|
+
*/
|
|
188
516
|
rankRanksCreatePost(data, options) {
|
|
189
517
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/ranks`, data: data });
|
|
190
518
|
}
|
|
191
|
-
/**
|
|
519
|
+
/**
|
|
520
|
+
* Performs the ranks delete operation for the rank capability.
|
|
521
|
+
* Calls `DELETE /api/v1/ranks/{id}` through the shared IDP-aware Faiber client.
|
|
522
|
+
* @param id Backend path identifier `id`.
|
|
523
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
524
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
525
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:delete.
|
|
526
|
+
*/
|
|
192
527
|
rankRanksDeleteDelete(id, options) {
|
|
193
528
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/ranks/${encodeURIComponent(id)}` });
|
|
194
529
|
}
|
|
195
|
-
/**
|
|
530
|
+
/**
|
|
531
|
+
* Performs the ranks show operation for the rank capability.
|
|
532
|
+
* Calls `GET /api/v1/ranks/{id}` through the shared IDP-aware Faiber client.
|
|
533
|
+
* @param id Backend path identifier `id`.
|
|
534
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
535
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
536
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:rank:read.
|
|
537
|
+
*/
|
|
196
538
|
rankRanksShowGet(id, options) {
|
|
197
539
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/ranks/${encodeURIComponent(id)}` });
|
|
198
540
|
}
|
|
199
|
-
/**
|
|
541
|
+
/**
|
|
542
|
+
* Performs the ranks update operation for the rank capability.
|
|
543
|
+
* Calls `PATCH /api/v1/ranks/{id}` through the shared IDP-aware Faiber client.
|
|
544
|
+
* @param id Backend path identifier `id`.
|
|
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:update.
|
|
549
|
+
*/
|
|
200
550
|
rankRanksUpdatePatch(id, data, options) {
|
|
201
551
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/ranks/${encodeURIComponent(id)}`, data: data });
|
|
202
552
|
}
|
|
203
|
-
/**
|
|
553
|
+
/**
|
|
554
|
+
* Performs the purge operation for the sandbox billing capability.
|
|
555
|
+
* Calls `DELETE /api/v1/sandbox-resources/{project}` through the shared IDP-aware Faiber client.
|
|
556
|
+
* @param project Backend path identifier `project`.
|
|
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: session-derived or public bootstrap route.
|
|
560
|
+
*/
|
|
204
561
|
sandboxBillingPurgeDelete(project, options) {
|
|
205
562
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/sandbox-resources/${encodeURIComponent(project)}` });
|
|
206
563
|
}
|
|
207
|
-
/**
|
|
564
|
+
/**
|
|
565
|
+
* Performs the show operation for the sandbox billing capability.
|
|
566
|
+
* Calls `GET /api/v1/sandbox-resources/{project}` through the shared IDP-aware Faiber client.
|
|
567
|
+
* @param project Backend path identifier `project`.
|
|
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: session-derived or public bootstrap route.
|
|
571
|
+
*/
|
|
208
572
|
sandboxBillingShowGet(project, options) {
|
|
209
573
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/sandbox-resources/${encodeURIComponent(project)}` });
|
|
210
574
|
}
|
|
211
|
-
/**
|
|
575
|
+
/**
|
|
576
|
+
* Performs the update operation for the sandbox billing capability.
|
|
577
|
+
* Calls `PUT /api/v1/sandbox-resources/{project}` through the shared IDP-aware Faiber client.
|
|
578
|
+
* @param project Backend path identifier `project`.
|
|
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: session-derived or public bootstrap route.
|
|
583
|
+
*/
|
|
212
584
|
sandboxBillingUpdatePut(project, data, options) {
|
|
213
585
|
return this.client.request({ ...options, method: "PUT", url: `/api/v1/sandbox-resources/${encodeURIComponent(project)}`, data: data });
|
|
214
586
|
}
|
|
215
|
-
/**
|
|
587
|
+
/**
|
|
588
|
+
* Performs the pause operation for the sandbox billing capability.
|
|
589
|
+
* Calls `POST /api/v1/sandbox-resources/{project}/pause` 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
|
+
*/
|
|
216
595
|
sandboxBillingPausePost(project, options) {
|
|
217
596
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/sandbox-resources/${encodeURIComponent(project)}/pause` });
|
|
218
597
|
}
|
|
219
|
-
/**
|
|
598
|
+
/**
|
|
599
|
+
* Performs the resume operation for the sandbox billing capability.
|
|
600
|
+
* Calls `POST /api/v1/sandbox-resources/{project}/resume` 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
|
+
*/
|
|
220
606
|
sandboxBillingResumePost(project, options) {
|
|
221
607
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/sandbox-resources/${encodeURIComponent(project)}/resume` });
|
|
222
608
|
}
|
|
223
|
-
/**
|
|
609
|
+
/**
|
|
610
|
+
* Performs the subscriptions index operation for the wallet billing capability.
|
|
611
|
+
* Calls `GET /api/v1/subscriptions` through the shared IDP-aware Faiber client.
|
|
612
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
613
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
614
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
615
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
616
|
+
*/
|
|
224
617
|
walletBillingSubscriptionsIndexGet(params, options) {
|
|
225
618
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/subscriptions`, params });
|
|
226
619
|
}
|
|
227
|
-
/**
|
|
620
|
+
/**
|
|
621
|
+
* Performs the subscriptions cancel operation for the wallet billing capability.
|
|
622
|
+
* Calls `POST /api/v1/subscriptions/{id}/cancel` through the shared IDP-aware Faiber client.
|
|
623
|
+
* @param id Backend path identifier `id`.
|
|
624
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
625
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
626
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
627
|
+
*/
|
|
228
628
|
walletBillingSubscriptionsCancelPost(id, options) {
|
|
229
629
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/subscriptions/${encodeURIComponent(id)}/cancel` });
|
|
230
630
|
}
|
|
231
|
-
/**
|
|
631
|
+
/**
|
|
632
|
+
* Performs the delete permanently operation for the service lifecycle capability.
|
|
633
|
+
* Calls `DELETE /api/v1/subscriptions/{project}/{service}/data` through the shared IDP-aware Faiber client.
|
|
634
|
+
* @param project Backend path identifier `project`.
|
|
635
|
+
* @param service Backend path identifier `service`.
|
|
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
|
+
*/
|
|
232
640
|
serviceLifecycleDeletePermanentlyDelete(project, service, options) {
|
|
233
641
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/subscriptions/${encodeURIComponent(project)}/${encodeURIComponent(service)}/data` });
|
|
234
642
|
}
|
|
235
|
-
/**
|
|
643
|
+
/**
|
|
644
|
+
* Performs the pause operation for the service lifecycle capability.
|
|
645
|
+
* Calls `POST /api/v1/subscriptions/{project}/{service}/pause` through the shared IDP-aware Faiber client.
|
|
646
|
+
* @param project Backend path identifier `project`.
|
|
647
|
+
* @param service Backend path identifier `service`.
|
|
648
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
649
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
650
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
651
|
+
*/
|
|
236
652
|
serviceLifecyclePausePost(project, service, options) {
|
|
237
653
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/subscriptions/${encodeURIComponent(project)}/${encodeURIComponent(service)}/pause` });
|
|
238
654
|
}
|
|
239
|
-
/**
|
|
655
|
+
/**
|
|
656
|
+
* Performs the remove operation for the service lifecycle capability.
|
|
657
|
+
* Calls `POST /api/v1/subscriptions/{project}/{service}/remove` through the shared IDP-aware Faiber client.
|
|
658
|
+
* @param project Backend path identifier `project`.
|
|
659
|
+
* @param service Backend path identifier `service`.
|
|
660
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
661
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
662
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
663
|
+
*/
|
|
240
664
|
serviceLifecycleRemovePost(project, service, options) {
|
|
241
665
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/subscriptions/${encodeURIComponent(project)}/${encodeURIComponent(service)}/remove` });
|
|
242
666
|
}
|
|
243
|
-
/**
|
|
667
|
+
/**
|
|
668
|
+
* Performs the resume operation for the service lifecycle capability.
|
|
669
|
+
* Calls `POST /api/v1/subscriptions/{project}/{service}/resume` through the shared IDP-aware Faiber client.
|
|
670
|
+
* @param project Backend path identifier `project`.
|
|
671
|
+
* @param service Backend path identifier `service`.
|
|
672
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
673
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
674
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
675
|
+
*/
|
|
244
676
|
serviceLifecycleResumePost(project, service, options) {
|
|
245
677
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/subscriptions/${encodeURIComponent(project)}/${encodeURIComponent(service)}/resume` });
|
|
246
678
|
}
|
|
247
|
-
/**
|
|
679
|
+
/**
|
|
680
|
+
* Performs the subscriptions purchase operation for the wallet billing capability.
|
|
681
|
+
* Calls `POST /api/v1/subscriptions/purchase` through the shared IDP-aware Faiber client.
|
|
682
|
+
* @param data Typed JSON request body.
|
|
683
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
684
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
685
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
686
|
+
*/
|
|
248
687
|
walletBillingSubscriptionsPurchasePost(data, options) {
|
|
249
688
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/subscriptions/purchase`, data: data });
|
|
250
689
|
}
|
|
251
|
-
/**
|
|
690
|
+
/**
|
|
691
|
+
* Performs the user action logs index operation for the logs capability.
|
|
692
|
+
* Calls `GET /api/v1/user-action-logs` through the shared IDP-aware Faiber client.
|
|
693
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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: admin:user_action_log:read.
|
|
697
|
+
*/
|
|
252
698
|
logsUserActionLogsIndexGet(params, options) {
|
|
253
699
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/user-action-logs`, params });
|
|
254
700
|
}
|
|
255
|
-
/**
|
|
701
|
+
/**
|
|
702
|
+
* Performs the user asset logs index operation for the logs capability.
|
|
703
|
+
* Calls `GET /api/v1/user-asset-logs` through the shared IDP-aware Faiber client.
|
|
704
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
705
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
706
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
707
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:user_asset_log:read.
|
|
708
|
+
*/
|
|
256
709
|
logsUserAssetLogsIndexGet(params, options) {
|
|
257
710
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/user-asset-logs`, params });
|
|
258
711
|
}
|
|
259
|
-
/**
|
|
712
|
+
/**
|
|
713
|
+
* Performs the wallet show operation for the wallet billing capability.
|
|
714
|
+
* Calls `GET /api/v1/wallet` through the shared IDP-aware Faiber client.
|
|
715
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
716
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
717
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
718
|
+
*/
|
|
260
719
|
walletBillingWalletShowGet(options) {
|
|
261
720
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/wallet` });
|
|
262
721
|
}
|
|
263
|
-
/**
|
|
722
|
+
/**
|
|
723
|
+
* Performs the wallet topup operation for the wallet billing capability.
|
|
724
|
+
* Calls `POST /api/v1/wallet/topup` through the shared IDP-aware Faiber client.
|
|
725
|
+
* @param data Typed JSON request body.
|
|
726
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
727
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
728
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
729
|
+
*/
|
|
264
730
|
walletBillingWalletTopupPost(data, options) {
|
|
265
731
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/wallet/topup`, data: data });
|
|
266
732
|
}
|