@faiber/faiber-modules 0.5.2 → 0.7.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 +36 -3
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +37 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +95 -0
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +221 -0
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +269 -0
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +353 -0
- package/dist/operations.types.d.ts.map +1 -1
- package/dist/types.d.ts +197 -3
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -23,15 +23,48 @@ const client = new FaiberClient("modules", {
|
|
|
23
23
|
const api = new ModulesApi(client);
|
|
24
24
|
|
|
25
25
|
const products = await api.products.list({
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
page_number: 1,
|
|
27
|
+
page_size: 24,
|
|
28
|
+
scope: "public-shop",
|
|
28
29
|
});
|
|
29
30
|
const posts = await api.posts.list();
|
|
30
31
|
```
|
|
31
32
|
|
|
33
|
+
Images and videos can be persisted in Modules-managed object storage with the
|
|
34
|
+
typed media helper. The service returns the object URL, key, MIME type, and size.
|
|
35
|
+
|
|
36
|
+
```ts
|
|
37
|
+
const uploaded = await api.uploadMediaAsset(videoFile, "student-project", {
|
|
38
|
+
signal: AbortSignal.timeout(120_000),
|
|
39
|
+
});
|
|
40
|
+
console.log(uploaded.data.url);
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Published CMS content and arbitrary-depth category trees are available through the
|
|
44
|
+
public-role methods:
|
|
45
|
+
|
|
46
|
+
```ts
|
|
47
|
+
const categories = await api.publicContentCategories("post", "fa");
|
|
48
|
+
const articles = await api.publicContentList("post", "fa", {
|
|
49
|
+
page_number: 1,
|
|
50
|
+
page_size: 12,
|
|
51
|
+
category: categories.data[0]?.slug,
|
|
52
|
+
});
|
|
53
|
+
const article = await api.publicContent(
|
|
54
|
+
"post",
|
|
55
|
+
"fa",
|
|
56
|
+
"Iran-Teen-AI-&-Coding-Elites-2025", // retained legacy SEO slug is supported
|
|
57
|
+
);
|
|
58
|
+
renderTrustedCmsHtml(article.data.sanitized_html);
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Trusted migration operators can use `importContentCategory` and
|
|
62
|
+
`importContentDocument` for deterministic, replay-safe imports. Those calls require
|
|
63
|
+
`content:write`; importing a published document also requires `content:publish`.
|
|
64
|
+
|
|
32
65
|
## Complete capability
|
|
33
66
|
|
|
34
|
-
This package exposes
|
|
67
|
+
This package exposes 170 generated registered operations plus curated public-content and migration methods from the content and commerce modules service. Common workflows have concise methods on `api`; every generated 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`.
|
|
35
68
|
|
|
36
69
|
| Area | Operations | HTTP methods |
|
|
37
70
|
|---|---:|---|
|
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/operations.types.ts","../src/operations.ts","../src/index.ts"],"fileIdsList":[[61],[60,61],[60,61,62,63,64,65,66],[60,61,64],[60],[67,68,69,70],[67,69],[67]],"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":"26f987e0668743de897c1f91f5f23d4cbe168995a1c299a40560bc7ac41a93cf","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":"05a4aabd1b4186a9c034f0776d295a085877667022b7ea77b563ea3162d3e270","signature":"7861130f6a2648591d0a50213bc9eae14898fdb9b6fb927ed47cd3871cff137a","impliedFormat":99},{"version":"f039482b1c7e9b1c288dcffd21fa250a1724c55d01811ef86278dc3a2f729654","signature":"d34ce1d7a28a4cfc107a61e5cff722414a778fefc5f64e5f4699eb52a17d5232","impliedFormat":99},{"version":"929ed5fdbb9f092533d1274c37de1a4951a5faddd8a6d218160ee9db58b8a600","signature":"90bf393839cb729f1970fd3deea67e72b2ed5dd6e3610241b1902336130cae9a","impliedFormat":99},{"version":"7fa81ee0c6f0c5b23f7dbd75049083ee78b9841dac9ee8c5ede0a366d4f756aa","signature":"2439d945be16c34941961a0e567b0a41b61c30998099d7299630aacba0aa6878","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":[[63,1],[64,2],[62,1],[67,3],[66,4],[65,4],[61,5],[71,6],[70,7],[69,8],[68,8]],"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":[[61],[60,61],[60,61,62,63,64,65,66],[60,61,64],[60],[67,68,69,70],[67,69],[67]],"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":"6cc1f17dc5454eb1112cfb4a2e2ddc93de8c3f9016c8db7bdf0328caac374ffa","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":"92b02548c83fbcd0fab376df40695f974b580bda11c15659c50412d25bca1545","signature":"7a6936d5f423d3fb80607afcee3077966135ed41b0e2b8f608fbd0b92678f5ac","impliedFormat":99},{"version":"a4660f7089be0439029020f81835c3083a471012fa6fc90490da2cf7efa6b04d","signature":"0635098da51aabf31ab1481d048dad92146f452046d1c11d91b434a6dac3f043","impliedFormat":99},{"version":"af09e6765cc0c4da08ad1b31b18729fa4666b585eca4e868a4d3161920da2f05","signature":"18a4cd2b9dd369a97e83c635e3ef02e1950bb10ea2d150b98e0103756fbd3f28","impliedFormat":99},{"version":"f2093048a23fe34e0b8fee6f0a89ccde332a6c18d2cf731704f0867a3205bff3","signature":"bc473ee06182b4ae00db20338dec117a1b989b9f677f0d1630a0cfdfdbc2b59e","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":[[63,1],[64,2],[62,1],[67,3],[66,4],[65,4],[61,5],[71,6],[70,7],[69,8],[68,8]],"latestChangedDtsFile":"./operations.d.ts","version":"5.9.3"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { RestResource, ServiceApi, type Identifier, type QueryParams, type RequestOptions } from "@faiber/sdk-core";
|
|
2
2
|
import type { AttachCategoryInput, AttachTagInput, AuditLogListResponse, Author, BlogPost, CartResponse, Category, CategoryAttachmentListResponse, CategoryAttachmentResponse, Comment, Content, ContentAttachmentListResponse, CreateAuthorInput, CreateBlogPostInput, CreateCategoryInput, CreateCommentInput, CreateContentInput, CreateInventoryInput, CreateModuleRequestInput, CreateOrderInput, CreatePricingInput, CreateProductInput, CreateProductVariantInput, CreateSampleInput, CreateSeoContentInput, CreateTagInput, CreateWarehouseInput, Inventory, ModuleRequest, Order, Pricing, Product, ProductListResponse, ProductResponse, ProductVariant, ProductVariantListResponse, ProductVariantQuery, ProductVariantResponse, ReplaceCartInput, Sample, SeoAttachmentListResponse, SeoContent, StockMovementListResponse, Tag, TagAttachmentListResponse, TagAttachmentResponse, UpdateAuthorInput, UpdateBlogPostInput, UpdateCategoryInput, UpdateCommentInput, UpdateContentInput, UpdateInventoryInput, UpdateModuleRequestInput, UpdateOrderInput, UpdatePricingInput, UpdateProductInput, UpdateProductVariantInput, UpdateSampleInput, UpdateSeoContentInput, UpdateTagInput, UpdateWarehouseInput, Warehouse } from "./types.js";
|
|
3
|
+
import type { AgentProposal, ContentDocument, ContentDocumentQuery, ContentRevision, ImportContentCategoryInput, ImportContentDocumentInput, ModulesAuthSelf, ModulesMediaPurpose, ModulesMediaUploadResponse, ModulesRouteContract, ModulesSettings, PublicContentCategory, PublicContentListResponse, PublicContentQuery, RunModulesAgentInput, UpdateModulesSettingsInput, WriteContentDocumentInput } from "./types.js";
|
|
3
4
|
import { ModulesOperations } from "./operations.js";
|
|
4
5
|
export declare class ModulesApi extends ServiceApi {
|
|
5
6
|
readonly operations: ModulesOperations;
|
|
@@ -22,6 +23,8 @@ export declare class ModulesApi extends ServiceApi {
|
|
|
22
23
|
createVariant(productId: Identifier, data: CreateProductVariantInput, options?: RequestOptions<CreateProductVariantInput>): Promise<import("axios").AxiosResponse<ProductVariantResponse, CreateProductVariantInput, {}>>;
|
|
23
24
|
cart(options?: RequestOptions): Promise<import("axios").AxiosResponse<CartResponse, any, {}>>;
|
|
24
25
|
replaceCart(data: ReplaceCartInput, options?: RequestOptions<ReplaceCartInput>): Promise<import("axios").AxiosResponse<CartResponse, ReplaceCartInput, {}>>;
|
|
26
|
+
/** Uploads an image or video asset into Modules-managed object storage. */
|
|
27
|
+
uploadMediaAsset(file: Blob, purpose: ModulesMediaPurpose, options?: RequestOptions<FormData>): Promise<import("axios").AxiosResponse<ModulesMediaUploadResponse, FormData, {}>>;
|
|
25
28
|
categoriesFor(host: string, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<CategoryAttachmentListResponse, any, {}>>;
|
|
26
29
|
attachCategory(host: string, id: Identifier, data: AttachCategoryInput, options?: RequestOptions<AttachCategoryInput>): Promise<import("axios").AxiosResponse<CategoryAttachmentResponse, AttachCategoryInput, {}>>;
|
|
27
30
|
tagsFor(host: string, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<TagAttachmentListResponse, any, {}>>;
|
|
@@ -30,6 +33,40 @@ export declare class ModulesApi extends ServiceApi {
|
|
|
30
33
|
seoFor(host: string, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<SeoAttachmentListResponse, any, {}>>;
|
|
31
34
|
audit(host: string, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<AuditLogListResponse, any, {}>>;
|
|
32
35
|
stockMovements(params?: QueryParams, options?: RequestOptions): Promise<import("axios").AxiosResponse<StockMovementListResponse, any, {}>>;
|
|
36
|
+
authSelf(options?: RequestOptions): Promise<import("axios").AxiosResponse<ModulesAuthSelf, any, {}>>;
|
|
37
|
+
routeContracts(options?: RequestOptions): Promise<import("axios").AxiosResponse<{
|
|
38
|
+
service: string;
|
|
39
|
+
tenancy: string;
|
|
40
|
+
routes: ModulesRouteContract[];
|
|
41
|
+
}, any, {}>>;
|
|
42
|
+
settings(options?: RequestOptions): Promise<import("axios").AxiosResponse<ModulesSettings, any, {}>>;
|
|
43
|
+
updateSettings(etag: string, data: UpdateModulesSettingsInput, options?: RequestOptions<UpdateModulesSettingsInput>): Promise<import("axios").AxiosResponse<ModulesSettings, UpdateModulesSettingsInput, {}>>;
|
|
44
|
+
/**
|
|
45
|
+
* Loads one published document by its canonical slug or retained legacy slug.
|
|
46
|
+
* The service returns sanitized HTML safe for public rendering and preserves
|
|
47
|
+
* the complete Axios response, including ETag and request metadata.
|
|
48
|
+
*/
|
|
49
|
+
publicContent(kind: string, locale: string, slug: string, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentDocument, any, {}>>;
|
|
50
|
+
/** Lists published content. Public-role content:read access is sufficient. */
|
|
51
|
+
publicContentList(kind: string, locale: string, params?: PublicContentQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<PublicContentListResponse, any, {}>>;
|
|
52
|
+
/** Lists active public category nodes for a locale and scope. */
|
|
53
|
+
publicContentCategories(scope: "post" | "product", locale: string, options?: RequestOptions): Promise<import("axios").AxiosResponse<PublicContentCategory[], any, {}>>;
|
|
54
|
+
/** Replay-safe category import for trusted operators with content:write. */
|
|
55
|
+
importContentCategory(id: Identifier, data: ImportContentCategoryInput, options?: RequestOptions<ImportContentCategoryInput>): Promise<import("axios").AxiosResponse<PublicContentCategory, ImportContentCategoryInput, {}>>;
|
|
56
|
+
/** Replay-safe document import; published input additionally requires content:publish. */
|
|
57
|
+
importContentDocument(id: Identifier, data: ImportContentDocumentInput, options?: RequestOptions<ImportContentDocumentInput>): Promise<import("axios").AxiosResponse<ContentDocument, ImportContentDocumentInput, {}>>;
|
|
58
|
+
contentDocuments(params?: ContentDocumentQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentDocument[], any, {}>>;
|
|
59
|
+
createContentDocument(data: WriteContentDocumentInput, options?: RequestOptions<WriteContentDocumentInput>): Promise<import("axios").AxiosResponse<ContentDocument, WriteContentDocumentInput, {}>>;
|
|
60
|
+
contentDocument(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentDocument, any, {}>>;
|
|
61
|
+
updateContentDocument(id: Identifier, etag: string, data: WriteContentDocumentInput, options?: RequestOptions<WriteContentDocumentInput>): Promise<import("axios").AxiosResponse<ContentDocument, WriteContentDocumentInput, {}>>;
|
|
62
|
+
contentRevisions(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentRevision[], any, {}>>;
|
|
63
|
+
restoreContentRevision(id: Identifier, revision: number, etag: string, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentDocument, undefined, {}>>;
|
|
64
|
+
publishContent(id: Identifier, etag: string, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentDocument, undefined, {}>>;
|
|
65
|
+
agentProposals(options?: RequestOptions): Promise<import("axios").AxiosResponse<AgentProposal[], any, {}>>;
|
|
66
|
+
agentProposal(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<AgentProposal, any, {}>>;
|
|
67
|
+
approveAgentProposal(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<AgentProposal, undefined, {}>>;
|
|
68
|
+
rejectAgentProposal(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<AgentProposal, undefined, {}>>;
|
|
69
|
+
runAgent(data: RunModulesAgentInput, idempotencyKey: string, options?: RequestOptions<RunModulesAgentInput>): Promise<import("axios").AxiosResponse<string, RunModulesAgentInput, {}>>;
|
|
33
70
|
}
|
|
34
71
|
export * from "@faiber/sdk-core";
|
|
35
72
|
export * from "./types.js";
|
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,EAAE,mBAAmB,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,EAAE,QAAQ,EAAE,YAAY,EAAE,QAAQ,EAAE,8BAA8B,EAAE,0BAA0B,EAAE,OAAO,EAAE,OAAO,EAAE,6BAA6B,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,wBAAwB,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,yBAAyB,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,cAAc,EAAE,oBAAoB,EAAE,SAAS,EAAE,aAAa,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,mBAAmB,EAAE,eAAe,EAAE,cAAc,EAAE,0BAA0B,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,gBAAgB,EAAE,MAAM,EAAE,yBAAyB,EAAE,UAAU,EAAE,yBAAyB,EAAE,GAAG,EAAE,yBAAyB,EAAE,qBAAqB,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,wBAAwB,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,yBAAyB,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,cAAc,EAAE,oBAAoB,EAAE,SAAS,EAAG,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -32,6 +32,13 @@ export class ModulesApi extends ServiceApi {
|
|
|
32
32
|
replaceCart(data, options) {
|
|
33
33
|
return this.client.put("/api/v1/shop/cart", data, options);
|
|
34
34
|
}
|
|
35
|
+
/** Uploads an image or video asset into Modules-managed object storage. */
|
|
36
|
+
uploadMediaAsset(file, purpose, options) {
|
|
37
|
+
const data = new FormData();
|
|
38
|
+
data.append("kind", purpose);
|
|
39
|
+
data.append("file", file);
|
|
40
|
+
return this.client.post("/api/v1/media/assets", data, options);
|
|
41
|
+
}
|
|
35
42
|
categoriesFor(host, id, options) {
|
|
36
43
|
return this.client.get(targetPath("/api/v1/categories", host, id), undefined, options);
|
|
37
44
|
}
|
|
@@ -56,6 +63,94 @@ export class ModulesApi extends ServiceApi {
|
|
|
56
63
|
stockMovements(params, options) {
|
|
57
64
|
return this.client.get("/api/v1/inventory/stock-movements", params, options);
|
|
58
65
|
}
|
|
66
|
+
authSelf(options) {
|
|
67
|
+
return this.client.get("/api/v1/auth/self", undefined, options);
|
|
68
|
+
}
|
|
69
|
+
routeContracts(options) {
|
|
70
|
+
return this.client.get("/api/v1/public/routes", undefined, options);
|
|
71
|
+
}
|
|
72
|
+
settings(options) {
|
|
73
|
+
return this.client.get("/api/v1/manage/settings", undefined, options);
|
|
74
|
+
}
|
|
75
|
+
updateSettings(etag, data, options) {
|
|
76
|
+
return this.client.put("/api/v1/manage/settings", data, {
|
|
77
|
+
...options,
|
|
78
|
+
headers: { ...options?.headers, "If-Match": etag },
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Loads one published document by its canonical slug or retained legacy slug.
|
|
83
|
+
* The service returns sanitized HTML safe for public rendering and preserves
|
|
84
|
+
* the complete Axios response, including ETag and request metadata.
|
|
85
|
+
*/
|
|
86
|
+
publicContent(kind, locale, slug, options) {
|
|
87
|
+
return this.client.get(`/api/v1/public/content/${encodeURIComponent(kind)}/${encodeURIComponent(locale)}/${encodeURIComponent(slug)}`, undefined, options);
|
|
88
|
+
}
|
|
89
|
+
/** Lists published content. Public-role content:read access is sufficient. */
|
|
90
|
+
publicContentList(kind, locale, params, options) {
|
|
91
|
+
return this.client.get(`/api/v1/public/content/${encodeURIComponent(kind)}/${encodeURIComponent(locale)}`, params, options);
|
|
92
|
+
}
|
|
93
|
+
/** Lists active public category nodes for a locale and scope. */
|
|
94
|
+
publicContentCategories(scope, locale, options) {
|
|
95
|
+
return this.client.get(`/api/v1/public/categories/${encodeURIComponent(scope)}/${encodeURIComponent(locale)}`, undefined, options);
|
|
96
|
+
}
|
|
97
|
+
/** Replay-safe category import for trusted operators with content:write. */
|
|
98
|
+
importContentCategory(id, data, options) {
|
|
99
|
+
return this.client.put(`/api/v1/manage/import/categories/${encodeURIComponent(id)}`, data, options);
|
|
100
|
+
}
|
|
101
|
+
/** Replay-safe document import; published input additionally requires content:publish. */
|
|
102
|
+
importContentDocument(id, data, options) {
|
|
103
|
+
return this.client.put(`/api/v1/manage/import/content/${encodeURIComponent(id)}`, data, options);
|
|
104
|
+
}
|
|
105
|
+
contentDocuments(params, options) {
|
|
106
|
+
return this.client.get("/api/v1/manage/content", params, options);
|
|
107
|
+
}
|
|
108
|
+
createContentDocument(data, options) {
|
|
109
|
+
return this.client.post("/api/v1/manage/content", data, options);
|
|
110
|
+
}
|
|
111
|
+
contentDocument(id, options) {
|
|
112
|
+
return this.client.get(`/api/v1/manage/content/${encodeURIComponent(id)}`, undefined, options);
|
|
113
|
+
}
|
|
114
|
+
updateContentDocument(id, etag, data, options) {
|
|
115
|
+
return this.client.put(`/api/v1/manage/content/${encodeURIComponent(id)}`, data, {
|
|
116
|
+
...options,
|
|
117
|
+
headers: { ...options?.headers, "If-Match": etag },
|
|
118
|
+
});
|
|
119
|
+
}
|
|
120
|
+
contentRevisions(id, options) {
|
|
121
|
+
return this.client.get(`/api/v1/manage/content/${encodeURIComponent(id)}/revisions`, undefined, options);
|
|
122
|
+
}
|
|
123
|
+
restoreContentRevision(id, revision, etag, options) {
|
|
124
|
+
return this.client.post(`/api/v1/manage/content/${encodeURIComponent(id)}/revisions/${revision}/restore`, undefined, {
|
|
125
|
+
...options,
|
|
126
|
+
headers: { ...options?.headers, "If-Match": etag },
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
publishContent(id, etag, options) {
|
|
130
|
+
return this.client.post(`/api/v1/manage/content/${encodeURIComponent(id)}/publish`, undefined, {
|
|
131
|
+
...options,
|
|
132
|
+
headers: { ...options?.headers, "If-Match": etag },
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
agentProposals(options) {
|
|
136
|
+
return this.client.get("/api/v1/manage/agents/proposals", undefined, options);
|
|
137
|
+
}
|
|
138
|
+
agentProposal(id, options) {
|
|
139
|
+
return this.client.get(`/api/v1/manage/agents/proposals/${encodeURIComponent(id)}`, undefined, options);
|
|
140
|
+
}
|
|
141
|
+
approveAgentProposal(id, options) {
|
|
142
|
+
return this.client.post(`/api/v1/manage/agents/proposals/${encodeURIComponent(id)}/approve`, undefined, options);
|
|
143
|
+
}
|
|
144
|
+
rejectAgentProposal(id, options) {
|
|
145
|
+
return this.client.post(`/api/v1/manage/agents/proposals/${encodeURIComponent(id)}/reject`, undefined, options);
|
|
146
|
+
}
|
|
147
|
+
runAgent(data, idempotencyKey, options) {
|
|
148
|
+
return this.client.post("/api/v1/manage/agents/runs", data, {
|
|
149
|
+
...options,
|
|
150
|
+
headers: { ...options?.headers, "Idempotency-Key": idempotencyKey },
|
|
151
|
+
responseType: "text",
|
|
152
|
+
});
|
|
153
|
+
}
|
|
59
154
|
}
|
|
60
155
|
export * from "@faiber/sdk-core";
|
|
61
156
|
export * from "./types.js";
|
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;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/operations.d.ts
CHANGED
|
@@ -592,6 +592,187 @@ export declare class ModulesOperations extends ServiceApi {
|
|
|
592
592
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
593
593
|
*/
|
|
594
594
|
inventoryUpdateWarehousePut(id: Identifier, data: T.InventoryUpdateWarehousePutInput, options?: RequestOptions<T.InventoryUpdateWarehousePutInput>): Promise<import("axios").AxiosResponse<T.InventoryUpdateWarehousePutResponse, T.InventoryUpdateWarehousePutInput, {}>>;
|
|
595
|
+
/**
|
|
596
|
+
* Performs the agent models operation for the management api capability.
|
|
597
|
+
* Calls `GET /api/v1/manage/agents/models` through the shared IDP-aware Faiber client.
|
|
598
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
599
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
600
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
601
|
+
*/
|
|
602
|
+
managementApiAgentModelsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
|
|
603
|
+
/**
|
|
604
|
+
* Performs the list proposals operation for the management api capability.
|
|
605
|
+
* Calls `GET /api/v1/manage/agents/proposals` through the shared IDP-aware Faiber client.
|
|
606
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
607
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
608
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
609
|
+
*/
|
|
610
|
+
managementApiListProposalsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiListProposalsGetResponse, unknown, {}>>;
|
|
611
|
+
/**
|
|
612
|
+
* Performs the get proposal operation for the management api capability.
|
|
613
|
+
* Calls `GET /api/v1/manage/agents/proposals/{id}` through the shared IDP-aware Faiber client.
|
|
614
|
+
* @param id Backend path identifier `id`.
|
|
615
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
616
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
617
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
618
|
+
*/
|
|
619
|
+
managementApiGetProposalGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiGetProposalGetResponseData, unknown, {}>>;
|
|
620
|
+
/**
|
|
621
|
+
* Performs the approve proposal operation for the management api capability.
|
|
622
|
+
* Calls `POST /api/v1/manage/agents/proposals/{id}/approve` through the shared IDP-aware Faiber client.
|
|
623
|
+
* @param id Backend path identifier `id`.
|
|
624
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
625
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
626
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
627
|
+
*/
|
|
628
|
+
managementApiApproveProposalPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiApproveProposalPostResponseData, unknown, {}>>;
|
|
629
|
+
/**
|
|
630
|
+
* Performs the reject proposal operation for the management api capability.
|
|
631
|
+
* Calls `POST /api/v1/manage/agents/proposals/{id}/reject` through the shared IDP-aware Faiber client.
|
|
632
|
+
* @param id Backend path identifier `id`.
|
|
633
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
634
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
635
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
636
|
+
*/
|
|
637
|
+
managementApiRejectProposalPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiRejectProposalPostResponseData, unknown, {}>>;
|
|
638
|
+
/**
|
|
639
|
+
* Performs the run agent operation for the management api capability.
|
|
640
|
+
* Calls `POST /api/v1/manage/agents/runs` through the shared IDP-aware Faiber client.
|
|
641
|
+
* @param data Typed JSON request body.
|
|
642
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
643
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
644
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
645
|
+
*/
|
|
646
|
+
managementApiRunAgentPost(data: T.ManagementApiRunAgentPostInput, options?: RequestOptions<T.ManagementApiRunAgentPostInput>): Promise<import("axios").AxiosResponse<T.ManagementApiRunAgentPostResponse, T.ManagementApiRunAgentPostInput, {}>>;
|
|
647
|
+
/**
|
|
648
|
+
* Performs the list content operation for the management api capability.
|
|
649
|
+
* Calls `GET /api/v1/manage/content` through the shared IDP-aware Faiber client.
|
|
650
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
651
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
652
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
653
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
654
|
+
*/
|
|
655
|
+
managementApiListContentGet(params?: T.ManagementApiListContentGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiListContentGetResponse, unknown, {}>>;
|
|
656
|
+
/**
|
|
657
|
+
* Performs the create content operation for the management api capability.
|
|
658
|
+
* Calls `POST /api/v1/manage/content` through the shared IDP-aware Faiber client.
|
|
659
|
+
* @param data Typed JSON request body.
|
|
660
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
661
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
662
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
663
|
+
*/
|
|
664
|
+
managementApiCreateContentPost(data: T.ManagementApiCreateContentPostInput, options?: RequestOptions<T.ManagementApiCreateContentPostInput>): Promise<import("axios").AxiosResponse<T.ManagementApiCreateContentPostResponse, T.ManagementApiCreateContentPostInput, {}>>;
|
|
665
|
+
/**
|
|
666
|
+
* Performs the get content operation for the management api capability.
|
|
667
|
+
* Calls `GET /api/v1/manage/content/{id}` through the shared IDP-aware Faiber client.
|
|
668
|
+
* @param id Backend path identifier `id`.
|
|
669
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
670
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
671
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
672
|
+
*/
|
|
673
|
+
managementApiGetContentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiGetContentGetResponse, unknown, {}>>;
|
|
674
|
+
/**
|
|
675
|
+
* Performs the update content operation for the management api capability.
|
|
676
|
+
* Calls `PUT /api/v1/manage/content/{id}` through the shared IDP-aware Faiber client.
|
|
677
|
+
* @param id Backend path identifier `id`.
|
|
678
|
+
* @param data Typed JSON request body.
|
|
679
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
680
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
681
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
682
|
+
*/
|
|
683
|
+
managementApiUpdateContentPut(id: Identifier, data: T.ManagementApiUpdateContentPutInput, options?: RequestOptions<T.ManagementApiUpdateContentPutInput>): Promise<import("axios").AxiosResponse<T.ManagementApiUpdateContentPutResponse, T.ManagementApiUpdateContentPutInput, {}>>;
|
|
684
|
+
/**
|
|
685
|
+
* Performs the publish content operation for the management api capability.
|
|
686
|
+
* Calls `POST /api/v1/manage/content/{id}/publish` through the shared IDP-aware Faiber client.
|
|
687
|
+
* @param id Backend path identifier `id`.
|
|
688
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
689
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
690
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
691
|
+
*/
|
|
692
|
+
managementApiPublishContentPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiPublishContentPostResponse, unknown, {}>>;
|
|
693
|
+
/**
|
|
694
|
+
* Performs the list content revisions operation for the management api capability.
|
|
695
|
+
* Calls `GET /api/v1/manage/content/{id}/revisions` through the shared IDP-aware Faiber client.
|
|
696
|
+
* @param id Backend path identifier `id`.
|
|
697
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
698
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
699
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
700
|
+
*/
|
|
701
|
+
managementApiListContentRevisionsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiListContentRevisionsGetResponse, unknown, {}>>;
|
|
702
|
+
/**
|
|
703
|
+
* Performs the restore content revision operation for the management api capability.
|
|
704
|
+
* Calls `POST /api/v1/manage/content/{id}/revisions/{revision}/restore` through the shared IDP-aware Faiber client.
|
|
705
|
+
* @param id Backend path identifier `id`.
|
|
706
|
+
* @param revision Backend path identifier `revision`.
|
|
707
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
708
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
709
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
710
|
+
*/
|
|
711
|
+
managementApiRestoreContentRevisionPost(id: Identifier, revision: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiRestoreContentRevisionPostResponse, unknown, {}>>;
|
|
712
|
+
/**
|
|
713
|
+
* Performs the upsert category operation for the content transfer capability.
|
|
714
|
+
* Calls `PUT /api/v1/manage/import/categories/{id}` through the shared IDP-aware Faiber client.
|
|
715
|
+
* @param id Backend path identifier `id`.
|
|
716
|
+
* @param data Typed JSON request body.
|
|
717
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
718
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
719
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
720
|
+
*/
|
|
721
|
+
contentTransferUpsertCategoryPut(id: Identifier, data: T.ContentTransferUpsertCategoryPutInput, options?: RequestOptions<T.ContentTransferUpsertCategoryPutInput>): Promise<import("axios").AxiosResponse<T.ContentTransferUpsertCategoryPutResponseData, T.ContentTransferUpsertCategoryPutInput, {}>>;
|
|
722
|
+
/**
|
|
723
|
+
* Performs the upsert content operation for the content transfer capability.
|
|
724
|
+
* Calls `PUT /api/v1/manage/import/content/{id}` through the shared IDP-aware Faiber client.
|
|
725
|
+
* @param id Backend path identifier `id`.
|
|
726
|
+
* @param data Typed JSON request body.
|
|
727
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
728
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
729
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
730
|
+
*/
|
|
731
|
+
contentTransferUpsertContentPut(id: Identifier, data: T.ContentTransferUpsertContentPutInput, options?: RequestOptions<T.ContentTransferUpsertContentPutInput>): Promise<import("axios").AxiosResponse<T.ContentTransferUpsertContentPutResponseData, T.ContentTransferUpsertContentPutInput, {}>>;
|
|
732
|
+
/**
|
|
733
|
+
* Performs the get settings operation for the management api capability.
|
|
734
|
+
* Calls `GET /api/v1/manage/settings` through the shared IDP-aware Faiber client.
|
|
735
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
736
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
737
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
738
|
+
*/
|
|
739
|
+
managementApiGetSettingsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiGetSettingsGetResponse, unknown, {}>>;
|
|
740
|
+
/**
|
|
741
|
+
* Performs the update settings operation for the management api capability.
|
|
742
|
+
* Calls `PUT /api/v1/manage/settings` through the shared IDP-aware Faiber client.
|
|
743
|
+
* @param data Typed JSON request body.
|
|
744
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
745
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
746
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
747
|
+
*/
|
|
748
|
+
managementApiUpdateSettingsPut(data: T.ManagementApiUpdateSettingsPutInput, options?: RequestOptions<T.ManagementApiUpdateSettingsPutInput>): Promise<import("axios").AxiosResponse<T.ManagementApiUpdateSettingsPutResponse, T.ManagementApiUpdateSettingsPutInput, {}>>;
|
|
749
|
+
/**
|
|
750
|
+
* Performs the upload asset operation for the media capability.
|
|
751
|
+
* Calls `POST /api/v1/media/assets` through the shared IDP-aware Faiber client.
|
|
752
|
+
* @param data Typed multipart form.
|
|
753
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
754
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
755
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
756
|
+
*/
|
|
757
|
+
mediaUploadAssetPost(data: T.MediaUploadAssetPostInput, options?: RequestOptions<T.MediaUploadAssetPostInput>): Promise<import("axios").AxiosResponse<T.MediaUploadAssetPostResponseData, FormData, {}>>;
|
|
758
|
+
/**
|
|
759
|
+
* Performs the get file operation for the media capability.
|
|
760
|
+
* Calls `GET /api/v1/media/files/{*key}` through the shared IDP-aware Faiber client.
|
|
761
|
+
* @param key Backend path identifier `*key`.
|
|
762
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
763
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
764
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
765
|
+
*/
|
|
766
|
+
mediaGetFileGet(key: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.MediaGetFileGetResponse, unknown, {}>>;
|
|
767
|
+
/**
|
|
768
|
+
* Performs the upload image operation for the media capability.
|
|
769
|
+
* Calls `POST /api/v1/media/images` through the shared IDP-aware Faiber client.
|
|
770
|
+
* @param data Typed multipart form.
|
|
771
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
772
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
773
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
774
|
+
*/
|
|
775
|
+
mediaUploadImagePost(data: T.MediaUploadImagePostInput, options?: RequestOptions<T.MediaUploadImagePostInput>): Promise<import("axios").AxiosResponse<T.MediaUploadImagePostResponseData, FormData, {}>>;
|
|
595
776
|
/**
|
|
596
777
|
* Performs the list operation for the podcast capability.
|
|
597
778
|
* Calls `GET /api/v1/podcasts` through the shared IDP-aware Faiber client.
|
|
@@ -724,6 +905,46 @@ export declare class ModulesOperations extends ServiceApi {
|
|
|
724
905
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
725
906
|
*/
|
|
726
907
|
servicePricingUpdatePricingPut(id: Identifier, data: T.ServicePricingUpdatePricingPutInput, options?: RequestOptions<T.ServicePricingUpdatePricingPutInput>): Promise<import("axios").AxiosResponse<T.ServicePricingUpdatePricingPutResponse, T.ServicePricingUpdatePricingPutInput, {}>>;
|
|
908
|
+
/**
|
|
909
|
+
* Performs the list public categories operation for the content transfer capability.
|
|
910
|
+
* Calls `GET /api/v1/public/categories/{scope}/{locale}` through the shared IDP-aware Faiber client.
|
|
911
|
+
* @param scope Backend path identifier `scope`.
|
|
912
|
+
* @param locale Backend path identifier `locale`.
|
|
913
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
914
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
915
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
916
|
+
*/
|
|
917
|
+
contentTransferListPublicCategoriesGet(scope: Identifier, locale: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentTransferListPublicCategoriesGetResponse, unknown, {}>>;
|
|
918
|
+
/**
|
|
919
|
+
* Performs the list public content operation for the content transfer capability.
|
|
920
|
+
* Calls `GET /api/v1/public/content/{kind}/{locale}` through the shared IDP-aware Faiber client.
|
|
921
|
+
* @param kind Backend path identifier `kind`.
|
|
922
|
+
* @param locale Backend path identifier `locale`.
|
|
923
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
924
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
925
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
926
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
927
|
+
*/
|
|
928
|
+
contentTransferListPublicContentGet(kind: Identifier, locale: Identifier, params?: T.ContentTransferListPublicContentGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentTransferListPublicContentGetResponseData, unknown, {}>>;
|
|
929
|
+
/**
|
|
930
|
+
* Performs the public content operation for the management api capability.
|
|
931
|
+
* Calls `GET /api/v1/public/content/{kind}/{locale}/{slug}` through the shared IDP-aware Faiber client.
|
|
932
|
+
* @param kind Backend path identifier `kind`.
|
|
933
|
+
* @param locale Backend path identifier `locale`.
|
|
934
|
+
* @param slug Backend path identifier `slug`.
|
|
935
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
936
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
937
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
938
|
+
*/
|
|
939
|
+
managementApiPublicContentGet(kind: Identifier, locale: Identifier, slug: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiPublicContentGetResponse, unknown, {}>>;
|
|
940
|
+
/**
|
|
941
|
+
* Performs the public routes operation for the management api capability.
|
|
942
|
+
* Calls `GET /api/v1/public/routes` through the shared IDP-aware Faiber client.
|
|
943
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
944
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
945
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
946
|
+
*/
|
|
947
|
+
managementApiPublicRoutesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
|
|
727
948
|
/**
|
|
728
949
|
* Performs the delete on target operation for the reaction capability.
|
|
729
950
|
* Calls `DELETE /api/v1/reactions/{host}/{target_id}` through the shared IDP-aware Faiber client.
|