@faiber/faiber-flow 0.2.0 → 0.2.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 +31 -12
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +35 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +64 -0
- package/dist/operations.js.map +1 -0
- package/dist/operations.types.d.ts +154 -0
- package/dist/operations.types.d.ts.map +1 -0
- package/dist/operations.types.js +2 -0
- package/dist/operations.types.js.map +1 -0
- package/package.json +20 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @faiber/faiber-flow
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Flow definitions, graph validation, action and trigger catalogs, active trigger registry, execution runs, and integration metadata.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ Typed, framework-neutral TypeScript client for Faiber automations, triggers, act
|
|
|
8
8
|
npm install @faiber/faiber-flow
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Configure
|
|
12
12
|
|
|
13
13
|
```ts
|
|
14
14
|
import { FaiberClient, MemoryTokenProvider } from "@faiber/sdk-core";
|
|
@@ -22,23 +22,42 @@ const client = new FaiberClient("flow", {
|
|
|
22
22
|
});
|
|
23
23
|
const api = new FlowApi(client);
|
|
24
24
|
|
|
25
|
-
const flows = await api.flows.list(
|
|
25
|
+
const flows = await api.flows.list();
|
|
26
|
+
const validation = await api.validate(flowId);
|
|
26
27
|
```
|
|
27
28
|
|
|
28
|
-
|
|
29
|
+
## Complete capability
|
|
29
30
|
|
|
30
|
-
|
|
31
|
+
This package exposes 15 registered operations from the automation flows service. Common workflows have concise methods on `api`; every registered backend route is also available as a named function on `api.operations`. Generated operation input, query, response, path, verb, and permission contracts are exported from `operations.types`.
|
|
31
32
|
|
|
32
|
-
|
|
33
|
+
| Area | Operations | HTTP methods |
|
|
34
|
+
|---|---:|---|
|
|
35
|
+
| `catalog` | 3 | `GET`, `POST` |
|
|
36
|
+
| `flow` | 6 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
37
|
+
| `registry` | 1 | `GET` |
|
|
38
|
+
| `router` | 4 | `GET` |
|
|
39
|
+
| `run` | 1 | `GET` |
|
|
33
40
|
|
|
34
|
-
|
|
41
|
+
Flow updates use `PUT`. Runs are read-only in the current service contract; unsupported generic run mutations fail locally before a network request.
|
|
42
|
+
|
|
43
|
+
## Authentication and authorization
|
|
44
|
+
|
|
45
|
+
Use a `TokenProvider` to forward the signed-in user's Bearer token, or enable `withCredentials` for secure HttpOnly cookie sessions. Permission requirements copied from service route guards are included in each operation's JSDoc. The SDK does not embed API keys, credentials, localhost URLs, sandbox hosts, or production hosts.
|
|
46
|
+
|
|
47
|
+
## Inputs, queries, responses, and transport
|
|
35
48
|
|
|
36
|
-
Axios
|
|
49
|
+
All methods return the complete Axios response, including status, headers, and request IDs. Request bodies and query objects are named exported interfaces. Nested pagination uses keys such as `page[number]` and `page[size]` where required by the service. Standard Axios request options, headers, timeouts, adapters, interceptors, and `AbortSignal` cancellation are supported as the final argument.
|
|
50
|
+
|
|
51
|
+
Generic REST resources are capability-guarded. Calling a legacy method that the service does not register throws `UnsupportedOperationError` before sending a request instead of producing a backend `405`.
|
|
52
|
+
|
|
53
|
+
## Errors and cancellation
|
|
37
54
|
|
|
38
55
|
```ts
|
|
39
|
-
|
|
56
|
+
try {
|
|
57
|
+
await api.client.get("/health", undefined, { signal: AbortSignal.timeout(5_000) });
|
|
58
|
+
} catch (error) {
|
|
59
|
+
// Axios errors retain response.status and the service error body.
|
|
60
|
+
}
|
|
40
61
|
```
|
|
41
62
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
Install `@faiber/faiber-ts-sdk` when an application uses multiple Faiber services. The complete package provides shared configuration, authentication, uploads, and error handling across services.
|
|
63
|
+
Use `@faiber/faiber-ts-sdk` when one application needs multiple Faiber services with one configuration.
|
package/dist/.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/axios/index.d.ts","../../core/dist/types.d.ts","../../core/dist/env.d.ts","../../core/dist/auth.d.ts","../../core/dist/client.d.ts","../../core/dist/resource.d.ts","../../core/dist/openapi.d.ts","../../core/dist/index.d.ts","../src/types.ts","../src/index.ts"],"fileIdsList":[[61],[60,61],[60,61,62,63,64,65,66],[60,61,64],[60],[67,68],[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":"8cb9e8d47cc3a150fe2b7eabc95375a7e69a50774be9b8e4107d1d436af9b593","impliedFormat":99},{"version":"82065c5512d8d6f81b26cf13ea9ecd3e558be9560f7b5c62260858219ecd87f7","impliedFormat":99},{"version":"ed17ed1b2bcf384c88bc6cec6b427989b98db99fc7ad35a50605501a463bbc53","impliedFormat":99},{"version":"82bf4efcca8ab8764a91ac126c0af605ab6717ee94b2316461b5fa388b27e165","impliedFormat":99},{"version":"b060635c1b555ff21aa5bab5b038e15d67700d6bec6738323a443715931589f1","impliedFormat":99},{"version":"98cf7f2f15a4c87fca87c49b72e140b49ad079ff077d157ee81a9466173854ba","impliedFormat":99},{"version":"66a0cb4d019dd780c2fb5c2942778929ec55715bb5a0f3b80aac4c0b92e35d16","impliedFormat":99},{"version":"90934b30b3b195da89826e549cccfbf67111b9825fc1857f39507faaeb458270","impliedFormat":99},{"version":"d2addc14481fd40cc2467d9f56416e2ef570e31c8bd8bb749c07876983e43b82","signature":"99803feabfd7e14e3e734d9da79c65a2caba962357acf50b8e6b6dbbd0501e50","impliedFormat":99}],"root":[68,69],"options":{"composite":true,"declaration":true,"declarationMap":true,"exactOptionalPropertyTypes":true,"module":199,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[63,1],[64,2],[62,1],[67,3],[66,4],[65,4],[61,5],[69,6],[68,7]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/axios/index.d.ts","../../core/dist/types.d.ts","../../core/dist/env.d.ts","../../core/dist/auth.d.ts","../../core/dist/client.d.ts","../../core/dist/resource.d.ts","../../core/dist/openapi.d.ts","../../core/dist/index.d.ts","../src/types.ts","../src/operations.types.ts","../src/operations.ts","../src/index.ts"],"fileIdsList":[[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":"138724776c2b7fdf331300e22dfdfb8890d0400164f4996c02062e4e5d117927","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":"90934b30b3b195da89826e549cccfbf67111b9825fc1857f39507faaeb458270","impliedFormat":99},{"version":"67988a7192c582a7e727d7a0170fb8d5c3032d313eb295c4a5ee57b4d42635a9","signature":"a87eb5213596862972300643a2092895e0837bd8555824a71a90fe2fd2dcd170","impliedFormat":99},{"version":"3d2347dead950108c17784017b0c9b54820a309465b7ae032d90d1c7ecab91bd","signature":"15a55fd8a93526669cc4e1a6ccc4f095a41fdef8f82ae372f755ba0d3370f357","impliedFormat":99},{"version":"f9aeaed2da29614fbf3ec3b23f6a8c697326e7a368c74eb1bdeb0858d5d441d0","signature":"4b65b58b8d69baefdd43f2e07cd54c4ebd1940c85db82992bc04ca4a740aa2b7","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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { RestResource, ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
2
|
import type * as T from "./types.js";
|
|
3
|
+
import { FlowOperations } from "./operations.js";
|
|
3
4
|
export declare class FlowApi extends ServiceApi {
|
|
5
|
+
readonly operations: FlowOperations;
|
|
4
6
|
readonly flows: RestResource<T.Flow, T.CreateFlowInput, T.UpdateFlowInput, T.FlowListResponse, T.FlowResponse>;
|
|
5
7
|
readonly runs: RestResource<T.FlowRun, never, never, T.FlowRunListResponse, T.FlowRunResponse>;
|
|
6
8
|
validate(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.FlowValidationResponse, import("@faiber/sdk-core").JsonObject, {}>>;
|
|
@@ -11,4 +13,6 @@ export declare class FlowApi extends ServiceApi {
|
|
|
11
13
|
}
|
|
12
14
|
export * from "./types.js";
|
|
13
15
|
export * from "@faiber/sdk-core";
|
|
16
|
+
export * from "./operations.js";
|
|
17
|
+
export * from "./operations.types.js";
|
|
14
18
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,KAAK,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClG,OAAO,KAAK,KAAK,CAAC,MAAM,YAAY,CAAC;AACrC,qBAAa,OAAQ,SAAQ,UAAU;IACnC,QAAQ,CAAC,KAAK,
|
|
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,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClG,OAAO,KAAK,KAAK,CAAC,MAAM,YAAY,CAAC;AACrC,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,qBAAa,OAAQ,SAAQ,UAAU;IACnC,QAAQ,CAAC,UAAU,iBAAmC;IACtD,QAAQ,CAAC,KAAK,iGAAmO;IACjP,QAAQ,CAAC,IAAI,kFAA6I;IAC1J,QAAQ,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IACjD,QAAQ,CAAC,OAAO,CAAC,EAAE,cAAc;IACjC,OAAO,CAAC,OAAO,CAAC,EAAE,cAAc;IAChC,cAAc,CAAC,OAAO,CAAC,EAAE,cAAc;IACvC,WAAW,CAAC,OAAO,CAAC,EAAE,cAAc;CACvC;AACD,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { RestResource, ServiceApi } from "@faiber/sdk-core";
|
|
2
|
+
import { FlowOperations } from "./operations.js";
|
|
2
3
|
export class FlowApi extends ServiceApi {
|
|
3
|
-
|
|
4
|
-
|
|
4
|
+
operations = new FlowOperations(this.client);
|
|
5
|
+
flows = new RestResource(this.client, "/api/v1/flows", { supported: ["list", "show", "create", "update", "replace", "delete"], updateMethod: "PUT" });
|
|
6
|
+
runs = new RestResource(this.client, "/api/v1/runs", { supported: ["list"] });
|
|
5
7
|
validate(id, options) { return this.client.post(`/api/v1/flows/${encodeURIComponent(id)}/validate`, undefined, options); }
|
|
6
8
|
triggers(options) { return this.client.get("/api/v1/catalog/triggers", undefined, options); }
|
|
7
9
|
actions(options) { return this.client.get("/api/v1/catalog/actions", undefined, options); }
|
|
@@ -10,4 +12,6 @@ export class FlowApi extends ServiceApi {
|
|
|
10
12
|
}
|
|
11
13
|
export * from "./types.js";
|
|
12
14
|
export * from "@faiber/sdk-core";
|
|
15
|
+
export * from "./operations.js";
|
|
16
|
+
export * from "./operations.types.js";
|
|
13
17
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,EAAwC,MAAM,kBAAkB,CAAC;AAElG,MAAM,OAAO,OAAQ,SAAQ,UAAU;IAC1B,KAAK,GAAG,IAAI,YAAY,CAAmF,IAAI,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,EAAwC,MAAM,kBAAkB,CAAC;AAElG,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,MAAM,OAAO,OAAQ,SAAQ,UAAU;IAC1B,UAAU,GAAG,IAAI,cAAc,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IAC7C,KAAK,GAAG,IAAI,YAAY,CAAmF,IAAI,CAAC,MAAM,EAAE,eAAe,EAAE,EAAE,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,CAAC,EAAE,YAAY,EAAE,KAAK,EAAE,CAAC,CAAC;IACxO,IAAI,GAAG,IAAI,YAAY,CAAoE,IAAI,CAAC,MAAM,EAAE,cAAc,EAAE,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAC1J,QAAQ,CAAC,EAAc,EAAE,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAA2B,iBAAiB,kBAAkB,CAAC,EAAE,CAAC,WAAW,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACjL,QAAQ,CAAC,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA2B,0BAA0B,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACxI,OAAO,CAAC,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA0B,yBAAyB,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACrI,cAAc,CAAC,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA2B,kCAAkC,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACtJ,WAAW,CAAC,OAAwB,IAAI,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAwB,sBAAsB,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;CACxI;AACD,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
|
+
import type * as T from "./operations.types.js";
|
|
3
|
+
export declare class FlowOperations extends ServiceApi {
|
|
4
|
+
/** GET /; permission: public/session-derived. */
|
|
5
|
+
routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
|
|
6
|
+
/** GET /api/v1/catalog/actions; permission: flow:read. */
|
|
7
|
+
catalogActionsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CatalogActionsGetResponse, unknown, {}>>;
|
|
8
|
+
/** POST /api/v1/catalog/sync; permission: catalog:sync. */
|
|
9
|
+
catalogSyncPost(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CatalogSyncPostResponse, unknown, {}>>;
|
|
10
|
+
/** GET /api/v1/catalog/triggers; permission: flow:read. */
|
|
11
|
+
catalogTriggersGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CatalogTriggersGetResponse, unknown, {}>>;
|
|
12
|
+
/** GET /api/v1/flows; permission: flow:read. */
|
|
13
|
+
flowIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.FlowIndexGetResponse, unknown, {}>>;
|
|
14
|
+
/** POST /api/v1/flows; permission: flow:create. */
|
|
15
|
+
flowStorePost(data: T.FlowStorePostInput, options?: RequestOptions<T.FlowStorePostInput>): Promise<import("axios").AxiosResponse<T.FlowStorePostResponse, T.FlowStorePostInput, {}>>;
|
|
16
|
+
/** DELETE /api/v1/flows/{id}; permission: flow:delete. */
|
|
17
|
+
flowDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.FlowDestroyDeleteResponse, unknown, {}>>;
|
|
18
|
+
/** GET /api/v1/flows/{id}; permission: flow:read. */
|
|
19
|
+
flowShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.FlowShowGetResponse, unknown, {}>>;
|
|
20
|
+
/** PUT /api/v1/flows/{id}; permission: flow:update. */
|
|
21
|
+
flowUpdatePut(id: Identifier, data: T.FlowUpdatePutInput, options?: RequestOptions<T.FlowUpdatePutInput>): Promise<import("axios").AxiosResponse<T.FlowUpdatePutResponse, T.FlowUpdatePutInput, {}>>;
|
|
22
|
+
/** POST /api/v1/flows/{id}/validate; permission: flow:update. */
|
|
23
|
+
flowValidatePost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.FlowValidatePostResponse, unknown, {}>>;
|
|
24
|
+
/** GET /api/v1/integration/flow; permission: public/session-derived. */
|
|
25
|
+
routerIntegrationFlowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterIntegrationFlowGetResponse, unknown, {}>>;
|
|
26
|
+
/** GET /api/v1/registry/active-triggers; permission: public/session-derived. */
|
|
27
|
+
registryActiveTriggersGet(params?: T.RegistryActiveTriggersGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RegistryActiveTriggersGetResponse, unknown, {}>>;
|
|
28
|
+
/** GET /api/v1/runs; permission: flow_run:read. */
|
|
29
|
+
runIndexGet(params?: T.RunIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RunIndexGetResponse, unknown, {}>>;
|
|
30
|
+
/** GET /health; permission: public/session-derived. */
|
|
31
|
+
routerStatusRouteGetHealth(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetHealthResponse, unknown, {}>>;
|
|
32
|
+
/** GET /up; permission: public/session-derived. */
|
|
33
|
+
routerStatusRouteGetUp(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetUpResponse, unknown, {}>>;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=operations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAc,KAAK,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAChG,OAAO,KAAK,KAAK,CAAC,MAAM,uBAAuB,CAAC;AAEhD,qBAAa,cAAe,SAAQ,UAAU;IAC5C,iDAAiD;IACjD,oBAAoB,CAAC,OAAO,CAAC,EAAE,cAAc;IAG7C,0DAA0D;IAC1D,iBAAiB,CAAC,OAAO,CAAC,EAAE,cAAc;IAG1C,2DAA2D;IAC3D,eAAe,CAAC,OAAO,CAAC,EAAE,cAAc;IAGxC,2DAA2D;IAC3D,kBAAkB,CAAC,OAAO,CAAC,EAAE,cAAc;IAG3C,gDAAgD;IAChD,YAAY,CAAC,OAAO,CAAC,EAAE,cAAc;IAGrC,mDAAmD;IACnD,aAAa,CAAC,IAAI,EAAE,CAAC,CAAC,kBAAkB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,kBAAkB,CAAC;IAGxF,0DAA0D;IAC1D,iBAAiB,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAG1D,qDAAqD;IACrD,WAAW,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAGpD,uDAAuD;IACvD,aAAa,CAAC,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC,kBAAkB,EAAE,OAAO,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,kBAAkB,CAAC;IAGxG,iEAAiE;IACjE,gBAAgB,CAAC,EAAE,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,cAAc;IAGzD,wEAAwE;IACxE,wBAAwB,CAAC,OAAO,CAAC,EAAE,cAAc;IAGjD,gFAAgF;IAChF,yBAAyB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,8BAA8B,EAAE,OAAO,CAAC,EAAE,cAAc;IAG7F,mDAAmD;IACnD,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,gBAAgB,EAAE,OAAO,CAAC,EAAE,cAAc;IAGjE,uDAAuD;IACvD,0BAA0B,CAAC,OAAO,CAAC,EAAE,cAAc;IAGnD,mDAAmD;IACnD,sBAAsB,CAAC,OAAO,CAAC,EAAE,cAAc;CAGhD"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { ServiceApi, urlEncoded } from "@faiber/sdk-core";
|
|
2
|
+
export class FlowOperations extends ServiceApi {
|
|
3
|
+
/** GET /; permission: public/session-derived. */
|
|
4
|
+
routerStatusRouteGet(options) {
|
|
5
|
+
return this.client.request({ ...options, method: "GET", url: `/` });
|
|
6
|
+
}
|
|
7
|
+
/** GET /api/v1/catalog/actions; permission: flow:read. */
|
|
8
|
+
catalogActionsGet(options) {
|
|
9
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/catalog/actions` });
|
|
10
|
+
}
|
|
11
|
+
/** POST /api/v1/catalog/sync; permission: catalog:sync. */
|
|
12
|
+
catalogSyncPost(options) {
|
|
13
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/catalog/sync` });
|
|
14
|
+
}
|
|
15
|
+
/** GET /api/v1/catalog/triggers; permission: flow:read. */
|
|
16
|
+
catalogTriggersGet(options) {
|
|
17
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/catalog/triggers` });
|
|
18
|
+
}
|
|
19
|
+
/** GET /api/v1/flows; permission: flow:read. */
|
|
20
|
+
flowIndexGet(options) {
|
|
21
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/flows` });
|
|
22
|
+
}
|
|
23
|
+
/** POST /api/v1/flows; permission: flow:create. */
|
|
24
|
+
flowStorePost(data, options) {
|
|
25
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/flows`, data: data });
|
|
26
|
+
}
|
|
27
|
+
/** DELETE /api/v1/flows/{id}; permission: flow:delete. */
|
|
28
|
+
flowDestroyDelete(id, options) {
|
|
29
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/flows/${encodeURIComponent(id)}` });
|
|
30
|
+
}
|
|
31
|
+
/** GET /api/v1/flows/{id}; permission: flow:read. */
|
|
32
|
+
flowShowGet(id, options) {
|
|
33
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/flows/${encodeURIComponent(id)}` });
|
|
34
|
+
}
|
|
35
|
+
/** PUT /api/v1/flows/{id}; permission: flow:update. */
|
|
36
|
+
flowUpdatePut(id, data, options) {
|
|
37
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/flows/${encodeURIComponent(id)}`, data: data });
|
|
38
|
+
}
|
|
39
|
+
/** POST /api/v1/flows/{id}/validate; permission: flow:update. */
|
|
40
|
+
flowValidatePost(id, options) {
|
|
41
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/flows/${encodeURIComponent(id)}/validate` });
|
|
42
|
+
}
|
|
43
|
+
/** GET /api/v1/integration/flow; permission: public/session-derived. */
|
|
44
|
+
routerIntegrationFlowGet(options) {
|
|
45
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/flow` });
|
|
46
|
+
}
|
|
47
|
+
/** GET /api/v1/registry/active-triggers; permission: public/session-derived. */
|
|
48
|
+
registryActiveTriggersGet(params, options) {
|
|
49
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/registry/active-triggers`, params });
|
|
50
|
+
}
|
|
51
|
+
/** GET /api/v1/runs; permission: flow_run:read. */
|
|
52
|
+
runIndexGet(params, options) {
|
|
53
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/runs`, params });
|
|
54
|
+
}
|
|
55
|
+
/** GET /health; permission: public/session-derived. */
|
|
56
|
+
routerStatusRouteGetHealth(options) {
|
|
57
|
+
return this.client.request({ ...options, method: "GET", url: `/health` });
|
|
58
|
+
}
|
|
59
|
+
/** GET /up; permission: public/session-derived. */
|
|
60
|
+
routerStatusRouteGetUp(options) {
|
|
61
|
+
return this.client.request({ ...options, method: "GET", url: `/up` });
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
//# sourceMappingURL=operations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.js","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import type { ApiEnvelope, JsonObject, JsonValue, QueryParams } from "@faiber/sdk-core";
|
|
2
|
+
/** Generated route contracts. Dynamic payload members remain JSON-safe and are documented with their Rust source type. */
|
|
3
|
+
/** Backend response type: HealthResponse. */
|
|
4
|
+
export interface RouterStatusRouteGetResponseData extends JsonObject {
|
|
5
|
+
"version": string;
|
|
6
|
+
}
|
|
7
|
+
export interface RouterStatusRouteGetResponse extends ApiEnvelope<RouterStatusRouteGetResponseData> {
|
|
8
|
+
}
|
|
9
|
+
/** Backend response type: Vec<crate::catalog::methods::CatalogActionView>. */
|
|
10
|
+
export interface CatalogActionsGetResponseItem extends JsonObject {
|
|
11
|
+
"service": string;
|
|
12
|
+
"event_name": string;
|
|
13
|
+
"queue": string;
|
|
14
|
+
"payload_fields": JsonValue;
|
|
15
|
+
}
|
|
16
|
+
export interface CatalogActionsGetResponse extends ApiEnvelope<CatalogActionsGetResponseItem[]> {
|
|
17
|
+
}
|
|
18
|
+
/** Backend response type: serde_json::Value. */
|
|
19
|
+
export interface CatalogSyncPostResponse extends ApiEnvelope<JsonValue> {
|
|
20
|
+
}
|
|
21
|
+
/** Backend response type: Vec<crate::catalog::methods::CatalogTriggerView>. */
|
|
22
|
+
export interface CatalogTriggersGetResponseItem extends JsonObject {
|
|
23
|
+
"service": string;
|
|
24
|
+
"method": string;
|
|
25
|
+
"path": string;
|
|
26
|
+
"trigger_key": string;
|
|
27
|
+
}
|
|
28
|
+
export interface CatalogTriggersGetResponse extends ApiEnvelope<CatalogTriggersGetResponseItem[]> {
|
|
29
|
+
}
|
|
30
|
+
/** Backend response type: Vec<FlowResponse>. */
|
|
31
|
+
export interface FlowIndexGetResponseItem extends JsonObject {
|
|
32
|
+
"id": string;
|
|
33
|
+
"name": string;
|
|
34
|
+
"slug": string;
|
|
35
|
+
"enabled": boolean;
|
|
36
|
+
"trigger_key": string;
|
|
37
|
+
"capture_fields": string[];
|
|
38
|
+
"graph": JsonValue;
|
|
39
|
+
"version": number;
|
|
40
|
+
"created_at": string;
|
|
41
|
+
"updated_at": string;
|
|
42
|
+
}
|
|
43
|
+
export interface FlowIndexGetResponse extends ApiEnvelope<FlowIndexGetResponseItem[]> {
|
|
44
|
+
}
|
|
45
|
+
/** Backend request type: CreateFlowRequest. */
|
|
46
|
+
export interface FlowStorePostInput extends JsonObject {
|
|
47
|
+
"name": string;
|
|
48
|
+
"slug"?: string;
|
|
49
|
+
"trigger_key": string;
|
|
50
|
+
"enabled"?: boolean;
|
|
51
|
+
"graph"?: JsonValue;
|
|
52
|
+
}
|
|
53
|
+
/** Backend response type: FlowResponse. */
|
|
54
|
+
export interface FlowStorePostResponseData extends JsonObject {
|
|
55
|
+
"id": string;
|
|
56
|
+
"name": string;
|
|
57
|
+
"slug": string;
|
|
58
|
+
"enabled": boolean;
|
|
59
|
+
"trigger_key": string;
|
|
60
|
+
"capture_fields": string[];
|
|
61
|
+
"graph": JsonValue;
|
|
62
|
+
"version": number;
|
|
63
|
+
"created_at": string;
|
|
64
|
+
"updated_at": string;
|
|
65
|
+
}
|
|
66
|
+
export interface FlowStorePostResponse extends ApiEnvelope<FlowStorePostResponseData> {
|
|
67
|
+
}
|
|
68
|
+
/** Backend response type: serde_json::Value. */
|
|
69
|
+
export interface FlowDestroyDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
70
|
+
}
|
|
71
|
+
/** Backend response type: FlowResponse. */
|
|
72
|
+
export interface FlowShowGetResponseData extends JsonObject {
|
|
73
|
+
"id": string;
|
|
74
|
+
"name": string;
|
|
75
|
+
"slug": string;
|
|
76
|
+
"enabled": boolean;
|
|
77
|
+
"trigger_key": string;
|
|
78
|
+
"capture_fields": string[];
|
|
79
|
+
"graph": JsonValue;
|
|
80
|
+
"version": number;
|
|
81
|
+
"created_at": string;
|
|
82
|
+
"updated_at": string;
|
|
83
|
+
}
|
|
84
|
+
export interface FlowShowGetResponse extends ApiEnvelope<FlowShowGetResponseData> {
|
|
85
|
+
}
|
|
86
|
+
/** Backend request type: UpdateFlowRequest. */
|
|
87
|
+
export interface FlowUpdatePutInput extends JsonObject {
|
|
88
|
+
"name"?: string;
|
|
89
|
+
"slug"?: string;
|
|
90
|
+
"trigger_key"?: string;
|
|
91
|
+
"enabled"?: boolean;
|
|
92
|
+
"graph"?: JsonValue;
|
|
93
|
+
}
|
|
94
|
+
/** Backend response type: FlowResponse. */
|
|
95
|
+
export interface FlowUpdatePutResponseData extends JsonObject {
|
|
96
|
+
"id": string;
|
|
97
|
+
"name": string;
|
|
98
|
+
"slug": string;
|
|
99
|
+
"enabled": boolean;
|
|
100
|
+
"trigger_key": string;
|
|
101
|
+
"capture_fields": string[];
|
|
102
|
+
"graph": JsonValue;
|
|
103
|
+
"version": number;
|
|
104
|
+
"created_at": string;
|
|
105
|
+
"updated_at": string;
|
|
106
|
+
}
|
|
107
|
+
export interface FlowUpdatePutResponse extends ApiEnvelope<FlowUpdatePutResponseData> {
|
|
108
|
+
}
|
|
109
|
+
/** Backend response type: serde_json::Value. */
|
|
110
|
+
export interface FlowValidatePostResponse extends ApiEnvelope<JsonValue> {
|
|
111
|
+
}
|
|
112
|
+
/** Backend response type: infera_flow_sdk::FlowIntegrationResponse. */
|
|
113
|
+
export interface RouterIntegrationFlowGetResponse extends ApiEnvelope<JsonValue> {
|
|
114
|
+
}
|
|
115
|
+
/** Backend query type: RegistryQuery. */
|
|
116
|
+
export interface RegistryActiveTriggersGetQuery extends QueryParams {
|
|
117
|
+
"service"?: string;
|
|
118
|
+
}
|
|
119
|
+
/** Backend response type: ActiveTriggersResponse. */
|
|
120
|
+
export interface RegistryActiveTriggersGetResponseData extends JsonObject {
|
|
121
|
+
"version": number;
|
|
122
|
+
"triggers": JsonValue[];
|
|
123
|
+
}
|
|
124
|
+
export interface RegistryActiveTriggersGetResponse extends ApiEnvelope<RegistryActiveTriggersGetResponseData> {
|
|
125
|
+
}
|
|
126
|
+
/** Backend query type: RunsQuery. */
|
|
127
|
+
export interface RunIndexGetQuery extends QueryParams {
|
|
128
|
+
"limit"?: number;
|
|
129
|
+
}
|
|
130
|
+
/** Backend response type: Vec<crate::run::methods::FlowRunView>. */
|
|
131
|
+
export interface RunIndexGetResponseItem extends JsonObject {
|
|
132
|
+
"id": string;
|
|
133
|
+
"flow_id": string;
|
|
134
|
+
"trigger_event_id": string;
|
|
135
|
+
"status": string;
|
|
136
|
+
"error"?: string;
|
|
137
|
+
"started_at": string;
|
|
138
|
+
"finished_at"?: string;
|
|
139
|
+
}
|
|
140
|
+
export interface RunIndexGetResponse extends ApiEnvelope<RunIndexGetResponseItem[]> {
|
|
141
|
+
}
|
|
142
|
+
/** Backend response type: HealthResponse. */
|
|
143
|
+
export interface RouterStatusRouteGetHealthResponseData extends JsonObject {
|
|
144
|
+
"version": string;
|
|
145
|
+
}
|
|
146
|
+
export interface RouterStatusRouteGetHealthResponse extends ApiEnvelope<RouterStatusRouteGetHealthResponseData> {
|
|
147
|
+
}
|
|
148
|
+
/** Backend response type: HealthResponse. */
|
|
149
|
+
export interface RouterStatusRouteGetUpResponseData extends JsonObject {
|
|
150
|
+
"version": string;
|
|
151
|
+
}
|
|
152
|
+
export interface RouterStatusRouteGetUpResponse extends ApiEnvelope<RouterStatusRouteGetUpResponseData> {
|
|
153
|
+
}
|
|
154
|
+
//# sourceMappingURL=operations.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.types.d.ts","sourceRoot":"","sources":["../src/operations.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.types.js","sourceRoot":"","sources":["../src/operations.types.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1 +1,20 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "@faiber/faiber-flow",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@faiber/sdk-core": "0.2.2"
|
|
19
|
+
}
|
|
20
|
+
}
|