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