@faiber/faiber-asset 0.2.1 → 0.3.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 +40 -12
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +137 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +268 -0
- package/dist/operations.js.map +1 -0
- package/dist/operations.types.d.ts +893 -0
- package/dist/operations.types.d.ts.map +1 -0
- package/dist/operations.types.js +2 -0
- package/dist/operations.types.js.map +1 -0
- package/package.json +20 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @faiber/faiber-asset
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Wallets, balances, plans, subscriptions, purchases, ranks, rewards, usage, bank transactions, sandbox billing, and service lifecycle operations.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ Typed, framework-neutral TypeScript client for Faiber wallets, billing, subscrip
|
|
|
8
8
|
npm install @faiber/faiber-asset
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Configure
|
|
12
12
|
|
|
13
13
|
```ts
|
|
14
14
|
import { FaiberClient, MemoryTokenProvider } from "@faiber/sdk-core";
|
|
@@ -22,23 +22,51 @@ const client = new FaiberClient("asset", {
|
|
|
22
22
|
});
|
|
23
23
|
const api = new AssetApi(client);
|
|
24
24
|
|
|
25
|
-
const
|
|
25
|
+
const assets = await api.assets.list({ "page[number]": 1 });
|
|
26
|
+
const wallet = await api.operations.walletBillingWalletShowGet();
|
|
26
27
|
```
|
|
27
28
|
|
|
28
|
-
|
|
29
|
+
## Complete capability
|
|
29
30
|
|
|
30
|
-
|
|
31
|
+
This package exposes 66 registered operations from the assets and billing service. Common workflows have concise methods on `api`; every registered backend route is also available as a named function on `api.operations`. Generated operation input, query, response, path, verb, and permission contracts are exported from `operations.types`.
|
|
31
32
|
|
|
32
|
-
|
|
33
|
+
| Area | Operations | HTTP methods |
|
|
34
|
+
|---|---:|---|
|
|
35
|
+
| `action` | 6 | `DELETE`, `GET`, `PATCH`, `POST` |
|
|
36
|
+
| `bank` | 5 | `GET`, `PATCH`, `POST` |
|
|
37
|
+
| `catalog` | 5 | `DELETE`, `GET`, `PATCH`, `POST` |
|
|
38
|
+
| `charge` | 2 | `GET`, `PATCH` |
|
|
39
|
+
| `dashboard` | 1 | `GET` |
|
|
40
|
+
| `integration` | 3 | `GET` |
|
|
41
|
+
| `llm-usage` | 3 | `GET`, `PUT` |
|
|
42
|
+
| `logs` | 2 | `GET` |
|
|
43
|
+
| `rank` | 5 | `DELETE`, `GET`, `PATCH`, `POST` |
|
|
44
|
+
| `router` | 2 | `GET` |
|
|
45
|
+
| `sandbox-billing` | 7 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
46
|
+
| `service-lifecycle` | 4 | `DELETE`, `POST` |
|
|
47
|
+
| `wallet` | 4 | `GET` |
|
|
48
|
+
| `wallet-billing` | 17 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
33
49
|
|
|
34
|
-
|
|
50
|
+
Administrative and self-service billing routes are distinct operations. Purchase, top-up, pause, resume, removal, and permanent-data deletion methods preserve the backend verbs and permission annotations.
|
|
51
|
+
|
|
52
|
+
## Authentication and authorization
|
|
53
|
+
|
|
54
|
+
Use a `TokenProvider` to forward the signed-in user's Bearer token, or enable `withCredentials` for secure HttpOnly cookie sessions. Permission requirements copied from service route guards are included in each operation's JSDoc. The SDK does not embed API keys, credentials, localhost URLs, sandbox hosts, or production hosts.
|
|
55
|
+
|
|
56
|
+
## Inputs, queries, responses, and transport
|
|
35
57
|
|
|
36
|
-
Axios
|
|
58
|
+
All methods return the complete Axios response, including status, headers, and request IDs. Request bodies and query objects are named exported interfaces. Nested pagination uses keys such as `page[number]` and `page[size]` where required by the service. Standard Axios request options, headers, timeouts, adapters, interceptors, and `AbortSignal` cancellation are supported as the final argument.
|
|
59
|
+
|
|
60
|
+
Generic REST resources are capability-guarded. Calling a legacy method that the service does not register throws `UnsupportedOperationError` before sending a request instead of producing a backend `405`.
|
|
61
|
+
|
|
62
|
+
## Errors and cancellation
|
|
37
63
|
|
|
38
64
|
```ts
|
|
39
|
-
|
|
65
|
+
try {
|
|
66
|
+
await api.client.get("/health", undefined, { signal: AbortSignal.timeout(5_000) });
|
|
67
|
+
} catch (error) {
|
|
68
|
+
// Axios errors retain response.status and the service error body.
|
|
69
|
+
}
|
|
40
70
|
```
|
|
41
71
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
Install `@faiber/faiber-ts-sdk` when an application uses multiple Faiber services. The complete package provides shared configuration, authentication, uploads, and error handling across services.
|
|
72
|
+
Use `@faiber/faiber-ts-sdk` when one application needs multiple Faiber services with one configuration.
|
package/dist/.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/axios/index.d.ts","../../core/dist/types.d.ts","../../core/dist/env.d.ts","../../core/dist/auth.d.ts","../../core/dist/client.d.ts","../../core/dist/resource.d.ts","../../core/dist/openapi.d.ts","../../core/dist/index.d.ts","../src/types.ts","../src/index.ts"],"fileIdsList":[[67,68],[67],[61],[60,61],[60,61,62,63,64,65,66],[60,61,64],[60]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2343ec253c90c370449755739733f5f429f58cffdb51a50977bb4a042012fa8f","impliedFormat":99},{"version":"138724776c2b7fdf331300e22dfdfb8890d0400164f4996c02062e4e5d117927","impliedFormat":99},{"version":"82065c5512d8d6f81b26cf13ea9ecd3e558be9560f7b5c62260858219ecd87f7","impliedFormat":99},{"version":"ed17ed1b2bcf384c88bc6cec6b427989b98db99fc7ad35a50605501a463bbc53","impliedFormat":99},{"version":"82bf4efcca8ab8764a91ac126c0af605ab6717ee94b2316461b5fa388b27e165","impliedFormat":99},{"version":"b060635c1b555ff21aa5bab5b038e15d67700d6bec6738323a443715931589f1","impliedFormat":99},{"version":"98cf7f2f15a4c87fca87c49b72e140b49ad079ff077d157ee81a9466173854ba","impliedFormat":99},{"version":"66a0cb4d019dd780c2fb5c2942778929ec55715bb5a0f3b80aac4c0b92e35d16","impliedFormat":99},{"version":"fbfc32509b95c648640dab862e71a64b913fd0f2f617b2f2dfae19cc20d72bbf","signature":"1428e3bbc5d561900bd216fb105b525f1f5a7f59827cbd51b6929615b0dd35c4","impliedFormat":99},{"version":"96860ae02adaa8c5bf51c5dd9c3ae04c1c157b791f35a6479599e3dfdd2789e4","signature":"9e50bc529ecea6e12ab9ce3017a5e5da6ac080f2a14b5815dbbea60badee62a0","impliedFormat":99}],"root":[68,69],"options":{"composite":true,"declaration":true,"declarationMap":true,"exactOptionalPropertyTypes":true,"module":199,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[69,1],[68,2],[63,3],[64,4],[62,3],[67,5],[66,6],[65,6],[61,7]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/axios/index.d.ts","../../core/dist/types.d.ts","../../core/dist/env.d.ts","../../core/dist/auth.d.ts","../../core/dist/client.d.ts","../../core/dist/resource.d.ts","../../core/dist/openapi.d.ts","../../core/dist/index.d.ts","../src/types.ts","../src/operations.types.ts","../src/operations.ts","../src/index.ts"],"fileIdsList":[[67,68,69,70],[67,69],[67],[61],[60,61],[60,61,62,63,64,65,66],[60,61,64],[60]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2343ec253c90c370449755739733f5f429f58cffdb51a50977bb4a042012fa8f","impliedFormat":99},{"version":"5b81964e79efc458d4927699a2c08c0953c55bff6441f34ea10a61046fef7dcc","impliedFormat":99},{"version":"82065c5512d8d6f81b26cf13ea9ecd3e558be9560f7b5c62260858219ecd87f7","impliedFormat":99},{"version":"ed17ed1b2bcf384c88bc6cec6b427989b98db99fc7ad35a50605501a463bbc53","impliedFormat":99},{"version":"82bf4efcca8ab8764a91ac126c0af605ab6717ee94b2316461b5fa388b27e165","impliedFormat":99},{"version":"82ffc9a1d95766c8f6f6bb4316b1d83e9d6a1d4ec41057d1a897cca70176bfc1","impliedFormat":99},{"version":"3f5eeb0a84713ccf640b9a6af4629e006f59d7629abc3fc95af2efb062fd0b83","impliedFormat":99},{"version":"66a0cb4d019dd780c2fb5c2942778929ec55715bb5a0f3b80aac4c0b92e35d16","impliedFormat":99},{"version":"fbfc32509b95c648640dab862e71a64b913fd0f2f617b2f2dfae19cc20d72bbf","signature":"1428e3bbc5d561900bd216fb105b525f1f5a7f59827cbd51b6929615b0dd35c4","impliedFormat":99},{"version":"71e11e3e59144823c691e057640a06a3c3cfed3d993d285958a62ea0d120e700","signature":"8d39fceb1893b6a1e85c88246db97217dc6ba8c8ef0c2a5199dff917e913427c","impliedFormat":99},{"version":"34cc15c781ff9e71633762532a23ef724e9b4f140b986b095d5558cec4fa4660","signature":"060599e8d856d89d57901a647b3f9bb6aca8702ffaacc6fbfac9f7f162b7065e","impliedFormat":99},{"version":"26119c1d2d9992f52a0a779ec8d931e17ea559812e8b6e30e8e5f6b292c7a461","signature":"4e89090c073985f946dfe35e200971c8857df59fd9ce847763f2f3d05b944452","impliedFormat":99}],"root":[[68,71]],"options":{"composite":true,"declaration":true,"declarationMap":true,"exactOptionalPropertyTypes":true,"module":199,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[71,1],[70,2],[69,3],[68,3],[63,4],[64,5],[62,4],[67,6],[66,7],[65,7],[61,8]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { RestResource, ServiceApi, type Identifier, type QueryParams, type RequestOptions } from "@faiber/sdk-core";
|
|
2
2
|
import type * as T from "./types.js";
|
|
3
|
+
import { AssetOperations } from "./operations.js";
|
|
3
4
|
export declare class AssetApi extends ServiceApi {
|
|
5
|
+
readonly operations: AssetOperations;
|
|
4
6
|
readonly assets: RestResource<T.Asset, T.CreateAssetInput, T.UpdateAssetInput, T.AssetListResponse, T.AssetResponse>;
|
|
5
7
|
readonly ranks: RestResource<T.Rank, T.CreateRankInput, T.UpdateRankInput, T.RankListResponse, T.RankResponse>;
|
|
6
8
|
readonly actions: RestResource<T.AssetAction, T.CreateAssetActionInput, T.UpdateAssetActionInput, T.AssetActionListResponse, T.AssetActionResponse>;
|
|
@@ -14,4 +16,6 @@ export declare class AssetApi extends ServiceApi {
|
|
|
14
16
|
}
|
|
15
17
|
export * from "@faiber/sdk-core";
|
|
16
18
|
export * from "./types.js";
|
|
19
|
+
export * from "./operations.js";
|
|
20
|
+
export * from "./operations.types.js";
|
|
17
21
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,KAAK,UAAU,EAAE,KAAK,WAAW,EAAE,KAAK,cAAc,EAAG,MAAM,kBAAkB,CAAC;AACrH,OAAO,KAAK,KAAK,CAAC,MAAM,YAAY,CAAC;AACrC,qBAAa,QAAS,SAAQ,UAAU;IACpC,QAAQ,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,KAAK,UAAU,EAAE,KAAK,WAAW,EAAE,KAAK,cAAc,EAAG,MAAM,kBAAkB,CAAC;AACrH,OAAO,KAAK,KAAK,CAAC,MAAM,YAAY,CAAC;AACrC,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,qBAAa,QAAS,SAAQ,UAAU;IACpC,QAAQ,CAAC,UAAU,kBAAoC;IACvD,QAAQ,CAAC,MAAM,sGAAyM;IACxN,QAAQ,CAAC,KAAK,iGAAmM;IACjN,QAAQ,CAAC,OAAO,oIAAwO;IACxP,SAAS,CAAC,OAAO,CAAC,EAAE,cAAc;IAGlC,MAAM,CAAC,OAAO,CAAC,EAAE,cAAc;IAG/B,aAAa,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,cAAc;IAG5D,KAAK,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,cAAc;IAGpD,WAAW,CAAC,OAAO,CAAC,EAAE,cAAc;IAGpC,gBAAgB,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,cAAc;IAG/D,SAAS,CAAC,SAAS,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,cAAc,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC;CAGtG;AACD,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { RestResource, ServiceApi, } from "@faiber/sdk-core";
|
|
2
|
+
import { AssetOperations } from "./operations.js";
|
|
2
3
|
export class AssetApi extends ServiceApi {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
operations = new AssetOperations(this.client);
|
|
5
|
+
assets = new RestResource(this.client, "/api/v1/assets", { supported: ["list", "show", "create", "update", "delete"] });
|
|
6
|
+
ranks = new RestResource(this.client, "/api/v1/ranks", { supported: ["list", "show", "create", "update", "delete"] });
|
|
7
|
+
actions = new RestResource(this.client, "/api/v1/actions", { supported: ["list", "show", "create", "update", "delete"] });
|
|
6
8
|
dashboard(options) {
|
|
7
9
|
return this.client.get("/api/v1/dashboard", undefined, options);
|
|
8
10
|
}
|
|
@@ -27,4 +29,6 @@ export class AssetApi extends ServiceApi {
|
|
|
27
29
|
}
|
|
28
30
|
export * from "@faiber/sdk-core";
|
|
29
31
|
export * from "./types.js";
|
|
32
|
+
export * from "./operations.js";
|
|
33
|
+
export * from "./operations.types.js";
|
|
30
34
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,GAA2D,MAAM,kBAAkB,CAAC;AAErH,MAAM,OAAO,QAAS,SAAQ,UAAU;IAC3B,MAAM,GAAG,IAAI,YAAY,CAAwF,IAAI,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,GAA2D,MAAM,kBAAkB,CAAC;AAErH,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,MAAM,OAAO,QAAS,SAAQ,UAAU;IAC3B,UAAU,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IAC9C,MAAM,GAAG,IAAI,YAAY,CAAwF,IAAI,CAAC,MAAM,EAAE,gBAAgB,EAAE,EAAE,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,CAAC,EAAE,CAAC,CAAC;IAC/M,KAAK,GAAG,IAAI,YAAY,CAAmF,IAAI,CAAC,MAAM,EAAE,eAAe,EAAE,EAAE,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,CAAC,EAAE,CAAC,CAAC;IACxM,OAAO,GAAG,IAAI,YAAY,CAAsH,IAAI,CAAC,MAAM,EAAE,iBAAiB,EAAE,EAAE,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,CAAC,EAAE,CAAC,CAAC;IACxP,SAAS,CAAC,OAAwB;QAC9B,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA2B,mBAAmB,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;IAC9F,CAAC;IACD,MAAM,CAAC,OAAwB;QAC3B,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAmB,gBAAgB,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;IACnF,CAAC;IACD,aAAa,CAAC,MAAoB,EAAE,OAAwB;QACxD,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA6B,uBAAuB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC;IACjG,CAAC;IACD,KAAK,CAAC,MAAoB,EAAE,OAAwB;QAChD,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA4B,eAAe,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC;IACxF,CAAC;IACD,WAAW,CAAC,OAAwB;QAChC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAwB,sBAAsB,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;IAC9F,CAAC;IACD,gBAAgB,CAAC,MAAoB,EAAE,OAAwB;QAC3D,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAgC,2BAA2B,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC;IACxG,CAAC;IACD,SAAS,CAAC,SAAqB,EAAE,IAAsB,EAAE,OAA0C;QAC/F,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA0C,6BAA6B,kBAAkB,CAAC,SAAS,CAAC,EAAE,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;IACjJ,CAAC;CACJ;AACD,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
|
+
import type * as T from "./operations.types.js";
|
|
3
|
+
export declare class AssetOperations extends ServiceApi {
|
|
4
|
+
/** GET /; permission: public/session-derived. */
|
|
5
|
+
routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
|
|
6
|
+
/** GET /api/openapi.json; permission: public/session-derived. */
|
|
7
|
+
routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
|
|
8
|
+
/** GET /api/v1/actions; permission: admin:action:read. */
|
|
9
|
+
actionActionsIndexGet(params?: T.ActionActionsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ActionActionsIndexGetResponse, unknown, {}>>;
|
|
10
|
+
/** POST /api/v1/actions; permission: admin:action:create. */
|
|
11
|
+
actionActionsCreatePost(data: T.ActionActionsCreatePostInput, options?: RequestOptions<T.ActionActionsCreatePostInput>): Promise<import("axios").AxiosResponse<T.ActionActionsCreatePostResponse, T.ActionActionsCreatePostInput, {}>>;
|
|
12
|
+
/** DELETE /api/v1/actions/{id}; permission: admin:action:delete. */
|
|
13
|
+
actionActionsDeleteDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ActionActionsDeleteDeleteResponse, unknown, {}>>;
|
|
14
|
+
/** GET /api/v1/actions/{id}; permission: admin:action:read. */
|
|
15
|
+
actionActionsShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ActionActionsShowGetResponse, unknown, {}>>;
|
|
16
|
+
/** PATCH /api/v1/actions/{id}; permission: admin:action:update. */
|
|
17
|
+
actionActionsUpdatePatch(id: Identifier, data: T.ActionActionsUpdatePatchInput, options?: RequestOptions<T.ActionActionsUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.ActionActionsUpdatePatchResponse, T.ActionActionsUpdatePatchInput, {}>>;
|
|
18
|
+
/** POST /api/v1/actions/complete; permission: admin:action:complete. */
|
|
19
|
+
actionActionsCompletePost(data: T.ActionActionsCompletePostInput, options?: RequestOptions<T.ActionActionsCompletePostInput>): Promise<import("axios").AxiosResponse<T.ActionActionsCompletePostResponse, T.ActionActionsCompletePostInput, {}>>;
|
|
20
|
+
/** GET /api/v1/admin/plan-products; permission: admin:charge:read. */
|
|
21
|
+
walletBillingAdminPlanProductsIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminPlanProductsIndexGetResponse, unknown, {}>>;
|
|
22
|
+
/** PUT /api/v1/admin/plan-products; permission: admin:charge:update. */
|
|
23
|
+
walletBillingAdminPlanProductsUpdatePut(data: T.WalletBillingAdminPlanProductsUpdatePutInput, options?: RequestOptions<T.WalletBillingAdminPlanProductsUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WalletBillingAdminPlanProductsUpdatePutResponse, T.WalletBillingAdminPlanProductsUpdatePutInput, {}>>;
|
|
24
|
+
/** GET /api/v1/admin/resource-unit-prices; permission: admin:charge:read. */
|
|
25
|
+
sandboxBillingAdminPricesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SandboxBillingAdminPricesGetResponse, unknown, {}>>;
|
|
26
|
+
/** PUT /api/v1/admin/resource-unit-prices; permission: admin:charge:update. */
|
|
27
|
+
sandboxBillingAdminPricesUpdatePut(data: T.SandboxBillingAdminPricesUpdatePutInput, options?: RequestOptions<T.SandboxBillingAdminPricesUpdatePutInput>): Promise<import("axios").AxiosResponse<T.SandboxBillingAdminPricesUpdatePutResponse, T.SandboxBillingAdminPricesUpdatePutInput, {}>>;
|
|
28
|
+
/** GET /api/v1/admin/subscriptions; permission: admin:charge:read. */
|
|
29
|
+
walletBillingAdminSubscriptionsIndexGet(params?: T.WalletBillingAdminSubscriptionsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminSubscriptionsIndexGetResponse, unknown, {}>>;
|
|
30
|
+
/** GET /api/v1/admin/user-plans; permission: admin:charge:read. */
|
|
31
|
+
walletBillingAdminUserPlansIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminUserPlansIndexGetResponse, unknown, {}>>;
|
|
32
|
+
/** DELETE /api/v1/admin/user-plans/{profile_id}; permission: admin:charge:update. */
|
|
33
|
+
walletBillingAdminUserPlanDeleteDelete(profileId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminUserPlanDeleteDeleteResponse, unknown, {}>>;
|
|
34
|
+
/** PUT /api/v1/admin/user-plans/{profile_id}; permission: admin:charge:update. */
|
|
35
|
+
walletBillingAdminUserPlanUpdatePut(profileId: Identifier, data: T.WalletBillingAdminUserPlanUpdatePutInput, options?: RequestOptions<T.WalletBillingAdminUserPlanUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WalletBillingAdminUserPlanUpdatePutResponse, T.WalletBillingAdminUserPlanUpdatePutInput, {}>>;
|
|
36
|
+
/** PUT /api/v1/admin/user-plans/{profile_id}/disable; permission: admin:charge:update. */
|
|
37
|
+
walletBillingAdminUserPlanDisablePut(profileId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingAdminUserPlanDisablePutResponse, unknown, {}>>;
|
|
38
|
+
/** GET /api/v1/assets; permission: admin:asset:read. */
|
|
39
|
+
catalogAssetsIndexGet(params?: T.CatalogAssetsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CatalogAssetsIndexGetResponse, unknown, {}>>;
|
|
40
|
+
/** POST /api/v1/assets; permission: admin:asset:create. */
|
|
41
|
+
catalogAssetsCreatePost(data: T.CatalogAssetsCreatePostInput, options?: RequestOptions<T.CatalogAssetsCreatePostInput>): Promise<import("axios").AxiosResponse<T.CatalogAssetsCreatePostResponse, T.CatalogAssetsCreatePostInput, {}>>;
|
|
42
|
+
/** DELETE /api/v1/assets/{id}; permission: admin:asset:delete. */
|
|
43
|
+
catalogAssetsDeleteDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CatalogAssetsDeleteDeleteResponse, unknown, {}>>;
|
|
44
|
+
/** GET /api/v1/assets/{id}; permission: admin:asset:read. */
|
|
45
|
+
catalogAssetsShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CatalogAssetsShowGetResponse, unknown, {}>>;
|
|
46
|
+
/** PATCH /api/v1/assets/{id}; permission: admin:asset:update. */
|
|
47
|
+
catalogAssetsUpdatePatch(id: Identifier, data: T.CatalogAssetsUpdatePatchInput, options?: RequestOptions<T.CatalogAssetsUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.CatalogAssetsUpdatePatchResponse, T.CatalogAssetsUpdatePatchInput, {}>>;
|
|
48
|
+
/** GET /api/v1/bank-summary; permission: admin:bank_transaction:read. */
|
|
49
|
+
bankBankSummaryShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BankBankSummaryShowGetResponse, unknown, {}>>;
|
|
50
|
+
/** GET /api/v1/bank-transactions; permission: admin:bank_transaction:read. */
|
|
51
|
+
bankBankTransactionsIndexGet(params?: T.BankBankTransactionsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BankBankTransactionsIndexGetResponse, unknown, {}>>;
|
|
52
|
+
/** POST /api/v1/bank-transactions; permission: admin:bank_transaction:create. */
|
|
53
|
+
bankBankTransactionsCreatePost(data: T.BankBankTransactionsCreatePostInput, options?: RequestOptions<T.BankBankTransactionsCreatePostInput>): Promise<import("axios").AxiosResponse<T.BankBankTransactionsCreatePostResponse, T.BankBankTransactionsCreatePostInput, {}>>;
|
|
54
|
+
/** GET /api/v1/charge/settings; permission: admin:charge:read. */
|
|
55
|
+
chargeChargeSettingsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ChargeChargeSettingsShowGetResponse, unknown, {}>>;
|
|
56
|
+
/** PATCH /api/v1/charge/settings; permission: admin:charge:update. */
|
|
57
|
+
chargeChargeSettingsUpdatePatch(data: T.ChargeChargeSettingsUpdatePatchInput, options?: RequestOptions<T.ChargeChargeSettingsUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.ChargeChargeSettingsUpdatePatchResponse, T.ChargeChargeSettingsUpdatePatchInput, {}>>;
|
|
58
|
+
/** GET /api/v1/coin-settings; permission: admin:coin_settings:read. */
|
|
59
|
+
bankCoinSettingsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BankCoinSettingsShowGetResponse, unknown, {}>>;
|
|
60
|
+
/** PATCH /api/v1/coin-settings; permission: admin:coin_settings:update. */
|
|
61
|
+
bankCoinSettingsUpdatePatch(data: T.BankCoinSettingsUpdatePatchInput, options?: RequestOptions<T.BankCoinSettingsUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.BankCoinSettingsUpdatePatchResponse, T.BankCoinSettingsUpdatePatchInput, {}>>;
|
|
62
|
+
/** GET /api/v1/dashboard; permission: admin:dashboard:read. */
|
|
63
|
+
dashboardDashboardShowGet(params?: T.DashboardDashboardShowGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.DashboardDashboardShowGetResponse, unknown, {}>>;
|
|
64
|
+
/** GET /api/v1/integration/docs; permission: admin:integration:read. */
|
|
65
|
+
integrationIntegrationDocsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationIntegrationDocsShowGetResponse, unknown, {}>>;
|
|
66
|
+
/** GET /api/v1/integration/flow; permission: public/session-derived. */
|
|
67
|
+
integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
|
|
68
|
+
/** GET /api/v1/integration/rabbitmq; permission: admin:integration:read. */
|
|
69
|
+
integrationRabbitmqIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationRabbitmqIntegrationShowGetResponse, unknown, {}>>;
|
|
70
|
+
/** GET /api/v1/llm-pricing/plans; permission: admin:charge:read. */
|
|
71
|
+
llmUsagePlansIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LlmUsagePlansIndexGetResponse, unknown, {}>>;
|
|
72
|
+
/** GET /api/v1/llm-pricing/plans/{profile_id}; permission: admin:charge:read. */
|
|
73
|
+
llmUsagePlanShowGet(profileId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LlmUsagePlanShowGetResponse, unknown, {}>>;
|
|
74
|
+
/** PUT /api/v1/llm-pricing/plans/{profile_id}; permission: admin:charge:update. */
|
|
75
|
+
llmUsagePlanSetPut(profileId: Identifier, data: T.LlmUsagePlanSetPutInput, options?: RequestOptions<T.LlmUsagePlanSetPutInput>): Promise<import("axios").AxiosResponse<T.LlmUsagePlanSetPutResponse, T.LlmUsagePlanSetPutInput, {}>>;
|
|
76
|
+
/** GET /api/v1/me/assets; permission: admin:wallet:read_own. */
|
|
77
|
+
walletMeAssetsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletMeAssetsShowGetResponse, unknown, {}>>;
|
|
78
|
+
/** GET /api/v1/me/badges; permission: public/session-derived. */
|
|
79
|
+
walletMeBadgesShowGet(params?: T.WalletMeBadgesShowGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletMeBadgesShowGetResponse, unknown, {}>>;
|
|
80
|
+
/** GET /api/v1/me/llm-usage; permission: admin:wallet:read_own. */
|
|
81
|
+
walletMeLlmUsageGet(params?: T.WalletMeLlmUsageGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletMeLlmUsageGetResponse, unknown, {}>>;
|
|
82
|
+
/** GET /api/v1/me/transactions; permission: admin:wallet:read_own. */
|
|
83
|
+
walletMeTransactionsGet(params?: T.WalletMeTransactionsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletMeTransactionsGetResponse, unknown, {}>>;
|
|
84
|
+
/** GET /api/v1/plans; permission: public/session-derived. */
|
|
85
|
+
walletBillingPlansIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingPlansIndexGetResponse, unknown, {}>>;
|
|
86
|
+
/** GET /api/v1/plans/current; permission: public/session-derived. */
|
|
87
|
+
walletBillingCurrentPlanGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingCurrentPlanGetResponse, unknown, {}>>;
|
|
88
|
+
/** POST /api/v1/plans/purchase; permission: public/session-derived. */
|
|
89
|
+
walletBillingPlansPurchasePost(data: T.WalletBillingPlansPurchasePostInput, options?: RequestOptions<T.WalletBillingPlansPurchasePostInput>): Promise<import("axios").AxiosResponse<T.WalletBillingPlansPurchasePostResponse, T.WalletBillingPlansPurchasePostInput, {}>>;
|
|
90
|
+
/** GET /api/v1/points-packs; permission: public/session-derived. */
|
|
91
|
+
walletBillingPointsPacksIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingPointsPacksIndexGetResponse, unknown, {}>>;
|
|
92
|
+
/** POST /api/v1/points-packs/purchase; permission: public/session-derived. */
|
|
93
|
+
walletBillingPointsPacksPurchasePost(data: T.WalletBillingPointsPacksPurchasePostInput, options?: RequestOptions<T.WalletBillingPointsPacksPurchasePostInput>): Promise<import("axios").AxiosResponse<T.WalletBillingPointsPacksPurchasePostResponse, T.WalletBillingPointsPacksPurchasePostInput, {}>>;
|
|
94
|
+
/** GET /api/v1/ranks; permission: admin:rank:read. */
|
|
95
|
+
rankRanksIndexGet(params?: T.RankRanksIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RankRanksIndexGetResponse, unknown, {}>>;
|
|
96
|
+
/** POST /api/v1/ranks; permission: admin:rank:create. */
|
|
97
|
+
rankRanksCreatePost(data: T.RankRanksCreatePostInput, options?: RequestOptions<T.RankRanksCreatePostInput>): Promise<import("axios").AxiosResponse<T.RankRanksCreatePostResponse, T.RankRanksCreatePostInput, {}>>;
|
|
98
|
+
/** DELETE /api/v1/ranks/{id}; permission: admin:rank:delete. */
|
|
99
|
+
rankRanksDeleteDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RankRanksDeleteDeleteResponse, unknown, {}>>;
|
|
100
|
+
/** GET /api/v1/ranks/{id}; permission: admin:rank:read. */
|
|
101
|
+
rankRanksShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RankRanksShowGetResponse, unknown, {}>>;
|
|
102
|
+
/** PATCH /api/v1/ranks/{id}; permission: admin:rank:update. */
|
|
103
|
+
rankRanksUpdatePatch(id: Identifier, data: T.RankRanksUpdatePatchInput, options?: RequestOptions<T.RankRanksUpdatePatchInput>): Promise<import("axios").AxiosResponse<T.RankRanksUpdatePatchResponse, T.RankRanksUpdatePatchInput, {}>>;
|
|
104
|
+
/** DELETE /api/v1/sandbox-resources/{project}; permission: public/session-derived. */
|
|
105
|
+
sandboxBillingPurgeDelete(project: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SandboxBillingPurgeDeleteResponse, unknown, {}>>;
|
|
106
|
+
/** GET /api/v1/sandbox-resources/{project}; permission: public/session-derived. */
|
|
107
|
+
sandboxBillingShowGet(project: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SandboxBillingShowGetResponse, unknown, {}>>;
|
|
108
|
+
/** PUT /api/v1/sandbox-resources/{project}; permission: public/session-derived. */
|
|
109
|
+
sandboxBillingUpdatePut(project: Identifier, data: T.SandboxBillingUpdatePutInput, options?: RequestOptions<T.SandboxBillingUpdatePutInput>): Promise<import("axios").AxiosResponse<T.SandboxBillingUpdatePutResponse, T.SandboxBillingUpdatePutInput, {}>>;
|
|
110
|
+
/** POST /api/v1/sandbox-resources/{project}/pause; permission: public/session-derived. */
|
|
111
|
+
sandboxBillingPausePost(project: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SandboxBillingPausePostResponse, unknown, {}>>;
|
|
112
|
+
/** POST /api/v1/sandbox-resources/{project}/resume; permission: public/session-derived. */
|
|
113
|
+
sandboxBillingResumePost(project: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SandboxBillingResumePostResponse, unknown, {}>>;
|
|
114
|
+
/** GET /api/v1/subscriptions; permission: public/session-derived. */
|
|
115
|
+
walletBillingSubscriptionsIndexGet(params?: T.WalletBillingSubscriptionsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingSubscriptionsIndexGetResponse, unknown, {}>>;
|
|
116
|
+
/** POST /api/v1/subscriptions/{id}/cancel; permission: public/session-derived. */
|
|
117
|
+
walletBillingSubscriptionsCancelPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingSubscriptionsCancelPostResponse, unknown, {}>>;
|
|
118
|
+
/** DELETE /api/v1/subscriptions/{project}/{service}/data; permission: public/session-derived. */
|
|
119
|
+
serviceLifecycleDeletePermanentlyDelete(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecycleDeletePermanentlyDeleteResponse, unknown, {}>>;
|
|
120
|
+
/** POST /api/v1/subscriptions/{project}/{service}/pause; permission: public/session-derived. */
|
|
121
|
+
serviceLifecyclePausePost(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecyclePausePostResponse, unknown, {}>>;
|
|
122
|
+
/** POST /api/v1/subscriptions/{project}/{service}/remove; permission: public/session-derived. */
|
|
123
|
+
serviceLifecycleRemovePost(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecycleRemovePostResponse, unknown, {}>>;
|
|
124
|
+
/** POST /api/v1/subscriptions/{project}/{service}/resume; permission: public/session-derived. */
|
|
125
|
+
serviceLifecycleResumePost(project: Identifier, service: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceLifecycleResumePostResponse, unknown, {}>>;
|
|
126
|
+
/** POST /api/v1/subscriptions/purchase; permission: public/session-derived. */
|
|
127
|
+
walletBillingSubscriptionsPurchasePost(data: T.WalletBillingSubscriptionsPurchasePostInput, options?: RequestOptions<T.WalletBillingSubscriptionsPurchasePostInput>): Promise<import("axios").AxiosResponse<T.WalletBillingSubscriptionsPurchasePostResponse, T.WalletBillingSubscriptionsPurchasePostInput, {}>>;
|
|
128
|
+
/** GET /api/v1/user-action-logs; permission: admin:user_action_log:read. */
|
|
129
|
+
logsUserActionLogsIndexGet(params?: T.LogsUserActionLogsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LogsUserActionLogsIndexGetResponse, unknown, {}>>;
|
|
130
|
+
/** GET /api/v1/user-asset-logs; permission: admin:user_asset_log:read. */
|
|
131
|
+
logsUserAssetLogsIndexGet(params?: T.LogsUserAssetLogsIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LogsUserAssetLogsIndexGetResponse, unknown, {}>>;
|
|
132
|
+
/** GET /api/v1/wallet; permission: public/session-derived. */
|
|
133
|
+
walletBillingWalletShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WalletBillingWalletShowGetResponse, unknown, {}>>;
|
|
134
|
+
/** POST /api/v1/wallet/topup; permission: public/session-derived. */
|
|
135
|
+
walletBillingWalletTopupPost(data: T.WalletBillingWalletTopupPostInput, options?: RequestOptions<T.WalletBillingWalletTopupPostInput>): Promise<import("axios").AxiosResponse<T.WalletBillingWalletTopupPostResponse, T.WalletBillingWalletTopupPostInput, {}>>;
|
|
136
|
+
}
|
|
137
|
+
//# sourceMappingURL=operations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|