@faiber/faiber-modules 0.5.1 → 0.6.2
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 +23 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +35 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +88 -0
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +212 -0
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +258 -0
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +343 -0
- package/dist/operations.types.d.ts.map +1 -1
- package/dist/types.d.ts +175 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -29,9 +29,31 @@ const products = await api.products.list({
|
|
|
29
29
|
const posts = await api.posts.list();
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
Published CMS content and arbitrary-depth category trees are available through the
|
|
33
|
+
public-role methods:
|
|
34
|
+
|
|
35
|
+
```ts
|
|
36
|
+
const categories = await api.publicContentCategories("post", "fa");
|
|
37
|
+
const articles = await api.publicContentList("post", "fa", {
|
|
38
|
+
page_number: 1,
|
|
39
|
+
page_size: 12,
|
|
40
|
+
category: categories.data[0]?.slug,
|
|
41
|
+
});
|
|
42
|
+
const article = await api.publicContent(
|
|
43
|
+
"post",
|
|
44
|
+
"fa",
|
|
45
|
+
"Iran-Teen-AI-&-Coding-Elites-2025", // retained legacy SEO slug is supported
|
|
46
|
+
);
|
|
47
|
+
renderTrustedCmsHtml(article.data.sanitized_html);
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Trusted migration operators can use `importContentCategory` and
|
|
51
|
+
`importContentDocument` for deterministic, replay-safe imports. Those calls require
|
|
52
|
+
`content:write`; importing a published document also requires `content:publish`.
|
|
53
|
+
|
|
32
54
|
## Complete capability
|
|
33
55
|
|
|
34
|
-
This package exposes 138 registered operations from the content and commerce modules service. Common workflows have concise methods on `api`; every
|
|
56
|
+
This package exposes 138 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
57
|
|
|
36
58
|
| Area | Operations | HTTP methods |
|
|
37
59
|
|---|---:|---|
|
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":"c262219e7594567b3196c83550bdd6dc9382c8ba2afdaeb5d98c280754dc7ae8","signature":"2d9b2e04a981289ac372f9fd5397d40e2677b1eecdbe7dc156c710180b1384f6","impliedFormat":99},{"version":"1a86b2f155e0b68ae156fee1efc79c790cf5b22cad1949d765ba2af468273aca","signature":"9251aa6b5779c495f71293295f90339e8347da89f18d0f869407047f6730365c","impliedFormat":99},{"version":"61d9a059d4a584f40eda566144330e60541af7c2919927cfd49e6b544e91a58f","signature":"c6fe43a4e71ca3ce19f8d385595efc8bc712b77a680b8886377ad4f986683395","impliedFormat":99},{"version":"23643889a240cb0d5ee41ce96fea541477bb748c62a58330bc2ffaceca51943d","signature":"b5ebf1679748bbc4c0a54089c598ac147c7cf6792b399b9d169c1d6b2a821066","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, 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;
|
|
@@ -30,6 +31,40 @@ export declare class ModulesApi extends ServiceApi {
|
|
|
30
31
|
seoFor(host: string, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<SeoAttachmentListResponse, any, {}>>;
|
|
31
32
|
audit(host: string, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<AuditLogListResponse, any, {}>>;
|
|
32
33
|
stockMovements(params?: QueryParams, options?: RequestOptions): Promise<import("axios").AxiosResponse<StockMovementListResponse, any, {}>>;
|
|
34
|
+
authSelf(options?: RequestOptions): Promise<import("axios").AxiosResponse<ModulesAuthSelf, any, {}>>;
|
|
35
|
+
routeContracts(options?: RequestOptions): Promise<import("axios").AxiosResponse<{
|
|
36
|
+
service: string;
|
|
37
|
+
tenancy: string;
|
|
38
|
+
routes: ModulesRouteContract[];
|
|
39
|
+
}, any, {}>>;
|
|
40
|
+
settings(options?: RequestOptions): Promise<import("axios").AxiosResponse<ModulesSettings, any, {}>>;
|
|
41
|
+
updateSettings(etag: string, data: UpdateModulesSettingsInput, options?: RequestOptions<UpdateModulesSettingsInput>): Promise<import("axios").AxiosResponse<ModulesSettings, UpdateModulesSettingsInput, {}>>;
|
|
42
|
+
/**
|
|
43
|
+
* Loads one published document by its canonical slug or retained legacy slug.
|
|
44
|
+
* The service returns sanitized HTML safe for public rendering and preserves
|
|
45
|
+
* the complete Axios response, including ETag and request metadata.
|
|
46
|
+
*/
|
|
47
|
+
publicContent(kind: string, locale: string, slug: string, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentDocument, any, {}>>;
|
|
48
|
+
/** Lists published content. Public-role content:read access is sufficient. */
|
|
49
|
+
publicContentList(kind: string, locale: string, params?: PublicContentQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<PublicContentListResponse, any, {}>>;
|
|
50
|
+
/** Lists active public category nodes for a locale and scope. */
|
|
51
|
+
publicContentCategories(scope: "post" | "product", locale: string, options?: RequestOptions): Promise<import("axios").AxiosResponse<PublicContentCategory[], any, {}>>;
|
|
52
|
+
/** Replay-safe category import for trusted operators with content:write. */
|
|
53
|
+
importContentCategory(id: Identifier, data: ImportContentCategoryInput, options?: RequestOptions<ImportContentCategoryInput>): Promise<import("axios").AxiosResponse<PublicContentCategory, ImportContentCategoryInput, {}>>;
|
|
54
|
+
/** Replay-safe document import; published input additionally requires content:publish. */
|
|
55
|
+
importContentDocument(id: Identifier, data: ImportContentDocumentInput, options?: RequestOptions<ImportContentDocumentInput>): Promise<import("axios").AxiosResponse<ContentDocument, ImportContentDocumentInput, {}>>;
|
|
56
|
+
contentDocuments(params?: ContentDocumentQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentDocument[], any, {}>>;
|
|
57
|
+
createContentDocument(data: WriteContentDocumentInput, options?: RequestOptions<WriteContentDocumentInput>): Promise<import("axios").AxiosResponse<ContentDocument, WriteContentDocumentInput, {}>>;
|
|
58
|
+
contentDocument(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentDocument, any, {}>>;
|
|
59
|
+
updateContentDocument(id: Identifier, etag: string, data: WriteContentDocumentInput, options?: RequestOptions<WriteContentDocumentInput>): Promise<import("axios").AxiosResponse<ContentDocument, WriteContentDocumentInput, {}>>;
|
|
60
|
+
contentRevisions(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentRevision[], any, {}>>;
|
|
61
|
+
restoreContentRevision(id: Identifier, revision: number, etag: string, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentDocument, undefined, {}>>;
|
|
62
|
+
publishContent(id: Identifier, etag: string, options?: RequestOptions): Promise<import("axios").AxiosResponse<ContentDocument, undefined, {}>>;
|
|
63
|
+
agentProposals(options?: RequestOptions): Promise<import("axios").AxiosResponse<AgentProposal[], any, {}>>;
|
|
64
|
+
agentProposal(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<AgentProposal, any, {}>>;
|
|
65
|
+
approveAgentProposal(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<AgentProposal, undefined, {}>>;
|
|
66
|
+
rejectAgentProposal(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<AgentProposal, undefined, {}>>;
|
|
67
|
+
runAgent(data: RunModulesAgentInput, idempotencyKey: string, options?: RequestOptions<RunModulesAgentInput>): Promise<import("axios").AxiosResponse<string, RunModulesAgentInput, {}>>;
|
|
33
68
|
}
|
|
34
69
|
export * from "@faiber/sdk-core";
|
|
35
70
|
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
|
@@ -56,6 +56,94 @@ export class ModulesApi extends ServiceApi {
|
|
|
56
56
|
stockMovements(params, options) {
|
|
57
57
|
return this.client.get("/api/v1/inventory/stock-movements", params, options);
|
|
58
58
|
}
|
|
59
|
+
authSelf(options) {
|
|
60
|
+
return this.client.get("/api/v1/auth/self", undefined, options);
|
|
61
|
+
}
|
|
62
|
+
routeContracts(options) {
|
|
63
|
+
return this.client.get("/api/v1/public/routes", undefined, options);
|
|
64
|
+
}
|
|
65
|
+
settings(options) {
|
|
66
|
+
return this.client.get("/api/v1/manage/settings", undefined, options);
|
|
67
|
+
}
|
|
68
|
+
updateSettings(etag, data, options) {
|
|
69
|
+
return this.client.put("/api/v1/manage/settings", data, {
|
|
70
|
+
...options,
|
|
71
|
+
headers: { ...options?.headers, "If-Match": etag },
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Loads one published document by its canonical slug or retained legacy slug.
|
|
76
|
+
* The service returns sanitized HTML safe for public rendering and preserves
|
|
77
|
+
* the complete Axios response, including ETag and request metadata.
|
|
78
|
+
*/
|
|
79
|
+
publicContent(kind, locale, slug, options) {
|
|
80
|
+
return this.client.get(`/api/v1/public/content/${encodeURIComponent(kind)}/${encodeURIComponent(locale)}/${encodeURIComponent(slug)}`, undefined, options);
|
|
81
|
+
}
|
|
82
|
+
/** Lists published content. Public-role content:read access is sufficient. */
|
|
83
|
+
publicContentList(kind, locale, params, options) {
|
|
84
|
+
return this.client.get(`/api/v1/public/content/${encodeURIComponent(kind)}/${encodeURIComponent(locale)}`, params, options);
|
|
85
|
+
}
|
|
86
|
+
/** Lists active public category nodes for a locale and scope. */
|
|
87
|
+
publicContentCategories(scope, locale, options) {
|
|
88
|
+
return this.client.get(`/api/v1/public/categories/${encodeURIComponent(scope)}/${encodeURIComponent(locale)}`, undefined, options);
|
|
89
|
+
}
|
|
90
|
+
/** Replay-safe category import for trusted operators with content:write. */
|
|
91
|
+
importContentCategory(id, data, options) {
|
|
92
|
+
return this.client.put(`/api/v1/manage/import/categories/${encodeURIComponent(id)}`, data, options);
|
|
93
|
+
}
|
|
94
|
+
/** Replay-safe document import; published input additionally requires content:publish. */
|
|
95
|
+
importContentDocument(id, data, options) {
|
|
96
|
+
return this.client.put(`/api/v1/manage/import/content/${encodeURIComponent(id)}`, data, options);
|
|
97
|
+
}
|
|
98
|
+
contentDocuments(params, options) {
|
|
99
|
+
return this.client.get("/api/v1/manage/content", params, options);
|
|
100
|
+
}
|
|
101
|
+
createContentDocument(data, options) {
|
|
102
|
+
return this.client.post("/api/v1/manage/content", data, options);
|
|
103
|
+
}
|
|
104
|
+
contentDocument(id, options) {
|
|
105
|
+
return this.client.get(`/api/v1/manage/content/${encodeURIComponent(id)}`, undefined, options);
|
|
106
|
+
}
|
|
107
|
+
updateContentDocument(id, etag, data, options) {
|
|
108
|
+
return this.client.put(`/api/v1/manage/content/${encodeURIComponent(id)}`, data, {
|
|
109
|
+
...options,
|
|
110
|
+
headers: { ...options?.headers, "If-Match": etag },
|
|
111
|
+
});
|
|
112
|
+
}
|
|
113
|
+
contentRevisions(id, options) {
|
|
114
|
+
return this.client.get(`/api/v1/manage/content/${encodeURIComponent(id)}/revisions`, undefined, options);
|
|
115
|
+
}
|
|
116
|
+
restoreContentRevision(id, revision, etag, options) {
|
|
117
|
+
return this.client.post(`/api/v1/manage/content/${encodeURIComponent(id)}/revisions/${revision}/restore`, undefined, {
|
|
118
|
+
...options,
|
|
119
|
+
headers: { ...options?.headers, "If-Match": etag },
|
|
120
|
+
});
|
|
121
|
+
}
|
|
122
|
+
publishContent(id, etag, options) {
|
|
123
|
+
return this.client.post(`/api/v1/manage/content/${encodeURIComponent(id)}/publish`, undefined, {
|
|
124
|
+
...options,
|
|
125
|
+
headers: { ...options?.headers, "If-Match": etag },
|
|
126
|
+
});
|
|
127
|
+
}
|
|
128
|
+
agentProposals(options) {
|
|
129
|
+
return this.client.get("/api/v1/manage/agents/proposals", undefined, options);
|
|
130
|
+
}
|
|
131
|
+
agentProposal(id, options) {
|
|
132
|
+
return this.client.get(`/api/v1/manage/agents/proposals/${encodeURIComponent(id)}`, undefined, options);
|
|
133
|
+
}
|
|
134
|
+
approveAgentProposal(id, options) {
|
|
135
|
+
return this.client.post(`/api/v1/manage/agents/proposals/${encodeURIComponent(id)}/approve`, undefined, options);
|
|
136
|
+
}
|
|
137
|
+
rejectAgentProposal(id, options) {
|
|
138
|
+
return this.client.post(`/api/v1/manage/agents/proposals/${encodeURIComponent(id)}/reject`, undefined, options);
|
|
139
|
+
}
|
|
140
|
+
runAgent(data, idempotencyKey, options) {
|
|
141
|
+
return this.client.post("/api/v1/manage/agents/runs", data, {
|
|
142
|
+
...options,
|
|
143
|
+
headers: { ...options?.headers, "Idempotency-Key": idempotencyKey },
|
|
144
|
+
responseType: "text",
|
|
145
|
+
});
|
|
146
|
+
}
|
|
59
147
|
}
|
|
60
148
|
export * from "@faiber/sdk-core";
|
|
61
149
|
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,178 @@ 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 get file operation for the media capability.
|
|
751
|
+
* Calls `GET /api/v1/media/files/{*key}` through the shared IDP-aware Faiber client.
|
|
752
|
+
* @param key Backend path identifier `*key`.
|
|
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
|
+
mediaGetFileGet(key: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.MediaGetFileGetResponse, unknown, {}>>;
|
|
758
|
+
/**
|
|
759
|
+
* Performs the upload image operation for the media capability.
|
|
760
|
+
* Calls `POST /api/v1/media/images` through the shared IDP-aware Faiber client.
|
|
761
|
+
* @param data Typed multipart form.
|
|
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
|
+
mediaUploadImagePost(data: T.MediaUploadImagePostInput, options?: RequestOptions<T.MediaUploadImagePostInput>): Promise<import("axios").AxiosResponse<T.MediaUploadImagePostResponseData, FormData, {}>>;
|
|
595
767
|
/**
|
|
596
768
|
* Performs the list operation for the podcast capability.
|
|
597
769
|
* Calls `GET /api/v1/podcasts` through the shared IDP-aware Faiber client.
|
|
@@ -724,6 +896,46 @@ export declare class ModulesOperations extends ServiceApi {
|
|
|
724
896
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
725
897
|
*/
|
|
726
898
|
servicePricingUpdatePricingPut(id: Identifier, data: T.ServicePricingUpdatePricingPutInput, options?: RequestOptions<T.ServicePricingUpdatePricingPutInput>): Promise<import("axios").AxiosResponse<T.ServicePricingUpdatePricingPutResponse, T.ServicePricingUpdatePricingPutInput, {}>>;
|
|
899
|
+
/**
|
|
900
|
+
* Performs the list public categories operation for the content transfer capability.
|
|
901
|
+
* Calls `GET /api/v1/public/categories/{scope}/{locale}` through the shared IDP-aware Faiber client.
|
|
902
|
+
* @param scope Backend path identifier `scope`.
|
|
903
|
+
* @param locale Backend path identifier `locale`.
|
|
904
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
905
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
906
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
907
|
+
*/
|
|
908
|
+
contentTransferListPublicCategoriesGet(scope: Identifier, locale: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentTransferListPublicCategoriesGetResponse, unknown, {}>>;
|
|
909
|
+
/**
|
|
910
|
+
* Performs the list public content operation for the content transfer capability.
|
|
911
|
+
* Calls `GET /api/v1/public/content/{kind}/{locale}` through the shared IDP-aware Faiber client.
|
|
912
|
+
* @param kind Backend path identifier `kind`.
|
|
913
|
+
* @param locale Backend path identifier `locale`.
|
|
914
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
915
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
916
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
917
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
918
|
+
*/
|
|
919
|
+
contentTransferListPublicContentGet(kind: Identifier, locale: Identifier, params?: T.ContentTransferListPublicContentGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ContentTransferListPublicContentGetResponseData, unknown, {}>>;
|
|
920
|
+
/**
|
|
921
|
+
* Performs the public content operation for the management api capability.
|
|
922
|
+
* Calls `GET /api/v1/public/content/{kind}/{locale}/{slug}` through the shared IDP-aware Faiber client.
|
|
923
|
+
* @param kind Backend path identifier `kind`.
|
|
924
|
+
* @param locale Backend path identifier `locale`.
|
|
925
|
+
* @param slug Backend path identifier `slug`.
|
|
926
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
927
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
928
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
929
|
+
*/
|
|
930
|
+
managementApiPublicContentGet(kind: Identifier, locale: Identifier, slug: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ManagementApiPublicContentGetResponse, unknown, {}>>;
|
|
931
|
+
/**
|
|
932
|
+
* Performs the public routes operation for the management api capability.
|
|
933
|
+
* Calls `GET /api/v1/public/routes` through the shared IDP-aware Faiber client.
|
|
934
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
935
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
936
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
937
|
+
*/
|
|
938
|
+
managementApiPublicRoutesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
|
|
727
939
|
/**
|
|
728
940
|
* Performs the delete on target operation for the reaction capability.
|
|
729
941
|
* Calls `DELETE /api/v1/reactions/{host}/{target_id}` through the shared IDP-aware Faiber client.
|