@faiber/faiber-crm 0.2.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -11
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +13 -9
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +209 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +412 -0
- package/dist/operations.js.map +1 -0
- package/dist/operations.types.d.ts +1439 -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-crm
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Leads, campaigns, sources, logs, touches, teams, workflows, reminders, escalations, webhooks, work logs, and statistics.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ Typed, framework-neutral TypeScript client for Faiber leads, teams, workflows, r
|
|
|
8
8
|
npm install @faiber/faiber-crm
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Configure
|
|
12
12
|
|
|
13
13
|
```ts
|
|
14
14
|
import { FaiberClient, MemoryTokenProvider } from "@faiber/sdk-core";
|
|
@@ -23,22 +23,51 @@ const client = new FaiberClient("crm", {
|
|
|
23
23
|
const api = new CrmApi(client);
|
|
24
24
|
|
|
25
25
|
const leads = await api.leads.list({ search: "Acme" });
|
|
26
|
+
await api.markLeadDone(leadId);
|
|
26
27
|
```
|
|
27
28
|
|
|
28
|
-
|
|
29
|
+
## Complete capability
|
|
29
30
|
|
|
30
|
-
|
|
31
|
+
This package exposes 102 registered operations from the crm 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
|
+
| `integration` | 2 | `GET` |
|
|
36
|
+
| `lead` | 23 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
37
|
+
| `lead-campaign` | 5 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
38
|
+
| `lead-source` | 5 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
39
|
+
| `reminder` | 6 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
40
|
+
| `router` | 4 | `GET` |
|
|
41
|
+
| `sos` | 17 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
42
|
+
| `stats` | 2 | `GET` |
|
|
43
|
+
| `team` | 5 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
44
|
+
| `team-user` | 6 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
45
|
+
| `webhook` | 5 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
46
|
+
| `workflow` | 6 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
47
|
+
| `workflow-member` | 6 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
48
|
+
| `workflow-node` | 5 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
49
|
+
| `worklog` | 5 | `DELETE`, `GET`, `POST`, `PUT` |
|
|
33
50
|
|
|
34
|
-
|
|
51
|
+
CRM resources update with `PUT`, not `PATCH`. Workflow nodes and members are created under parent-ID routes; those exact operations are available under `api.operations`.
|
|
52
|
+
|
|
53
|
+
## Authentication and authorization
|
|
54
|
+
|
|
55
|
+
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.
|
|
56
|
+
|
|
57
|
+
## Inputs, queries, responses, and transport
|
|
35
58
|
|
|
36
|
-
Axios
|
|
59
|
+
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.
|
|
60
|
+
|
|
61
|
+
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`.
|
|
62
|
+
|
|
63
|
+
## Errors and cancellation
|
|
37
64
|
|
|
38
65
|
```ts
|
|
39
|
-
|
|
66
|
+
try {
|
|
67
|
+
await api.client.get("/health", undefined, { signal: AbortSignal.timeout(5_000) });
|
|
68
|
+
} catch (error) {
|
|
69
|
+
// Axios errors retain response.status and the service error body.
|
|
70
|
+
}
|
|
40
71
|
```
|
|
41
72
|
|
|
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.
|
|
73
|
+
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":"138724776c2b7fdf331300e22dfdfb8890d0400164f4996c02062e4e5d117927","impliedFormat":99},{"version":"82065c5512d8d6f81b26cf13ea9ecd3e558be9560f7b5c62260858219ecd87f7","impliedFormat":99},{"version":"ed17ed1b2bcf384c88bc6cec6b427989b98db99fc7ad35a50605501a463bbc53","impliedFormat":99},{"version":"82bf4efcca8ab8764a91ac126c0af605ab6717ee94b2316461b5fa388b27e165","impliedFormat":99},{"version":"b060635c1b555ff21aa5bab5b038e15d67700d6bec6738323a443715931589f1","impliedFormat":99},{"version":"98cf7f2f15a4c87fca87c49b72e140b49ad079ff077d157ee81a9466173854ba","impliedFormat":99},{"version":"66a0cb4d019dd780c2fb5c2942778929ec55715bb5a0f3b80aac4c0b92e35d16","impliedFormat":99},{"version":"9ddd20da27d2051bc8dee6bda8a0a575ac8d3a01ed4fbfa50df24ead73edccf4","impliedFormat":99},{"version":"9854039558d50806774625a8710ed8b490dccee6359ceefb38f61da18138a5b2","signature":"59a7d1421765acee5623a11af34867a66ddfb28a03ef97db3154daa9c74aecae","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":"5b81964e79efc458d4927699a2c08c0953c55bff6441f34ea10a61046fef7dcc","impliedFormat":99},{"version":"82065c5512d8d6f81b26cf13ea9ecd3e558be9560f7b5c62260858219ecd87f7","impliedFormat":99},{"version":"ed17ed1b2bcf384c88bc6cec6b427989b98db99fc7ad35a50605501a463bbc53","impliedFormat":99},{"version":"82bf4efcca8ab8764a91ac126c0af605ab6717ee94b2316461b5fa388b27e165","impliedFormat":99},{"version":"82ffc9a1d95766c8f6f6bb4316b1d83e9d6a1d4ec41057d1a897cca70176bfc1","impliedFormat":99},{"version":"3f5eeb0a84713ccf640b9a6af4629e006f59d7629abc3fc95af2efb062fd0b83","impliedFormat":99},{"version":"66a0cb4d019dd780c2fb5c2942778929ec55715bb5a0f3b80aac4c0b92e35d16","impliedFormat":99},{"version":"9ddd20da27d2051bc8dee6bda8a0a575ac8d3a01ed4fbfa50df24ead73edccf4","impliedFormat":99},{"version":"67d861e807f9d1233a922a63e6af86ef8d04366e34ccb294f3571c5a1b55b7f8","signature":"a9412b9d5eccb73f973e966652e36fe38d2e569a58221c08e76728cb54a38464","impliedFormat":99},{"version":"0d2d85d674b335b1f6e69e94d78e05df0bed788d766c5849cb6b05f12dea98cc","signature":"11a690cb71fa1161ac6724ab9e1da45cd43b9db3ca89808e6b431209edb2d5b5","impliedFormat":99},{"version":"e16415bf35023a460abf371b95524d445b24ff36920dae63dff9c681d5482112","signature":"963bf25e26ee6be972a2d7ab9327e41887a44a6d395b42c088cf0e5f3eddf6b7","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,7 +1,9 @@
|
|
|
1
1
|
import { RestResource, ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
2
|
import type * as T from "./types.js";
|
|
3
3
|
type R<E extends T.CrmEntity, C, U, L, S> = RestResource<E, C, U, L, S>;
|
|
4
|
+
import { CrmOperations } from "./operations.js";
|
|
4
5
|
export declare class CrmApi extends ServiceApi {
|
|
6
|
+
readonly operations: CrmOperations;
|
|
5
7
|
readonly leads: R<T.Lead, T.CreateLeadInput, T.UpdateLeadInput, T.LeadListResponse, T.LeadResponse>;
|
|
6
8
|
readonly workflows: R<T.Workflow, T.CreateWorkflowInput, T.UpdateWorkflowInput, T.WorkflowListResponse, T.WorkflowResponse>;
|
|
7
9
|
readonly workflowNodes: R<T.WorkflowNode, T.CreateWorkflowNodeInput, T.UpdateWorkflowNodeInput, T.WorkflowNodeListResponse, T.WorkflowNodeResponse>;
|
|
@@ -19,4 +21,6 @@ export declare class CrmApi extends ServiceApi {
|
|
|
19
21
|
}
|
|
20
22
|
export * from "./types.js";
|
|
21
23
|
export * from "@faiber/sdk-core";
|
|
24
|
+
export * from "./operations.js";
|
|
25
|
+
export * from "./operations.types.js";
|
|
22
26
|
//# 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,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;AACxE,qBAAa,MAAO,SAAQ,UAAU;IAClC,QAAQ,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,eAAe,EAAE,CAAC,CAAC,eAAe,EAAE,CAAC,CAAC,gBAAgB,EAAE,CAAC,CAAC,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
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { RestResource, ServiceApi } from "@faiber/sdk-core";
|
|
2
|
+
import { CrmOperations } from "./operations.js";
|
|
2
3
|
export class CrmApi extends ServiceApi {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
4
|
+
operations = new CrmOperations(this.client);
|
|
5
|
+
leads = new RestResource(this.client, "/api/v1/lead", { supported: ["list", "show", "create", "update", "replace", "delete"], updateMethod: "PUT" });
|
|
6
|
+
workflows = new RestResource(this.client, "/api/v1/workflow", { supported: ["list", "show", "create", "update", "replace", "delete"], updateMethod: "PUT" });
|
|
7
|
+
workflowNodes = new RestResource(this.client, "/api/v1/workflow-node", { supported: ["list", "show", "update", "replace", "delete"], updateMethod: "PUT" });
|
|
8
|
+
workflowMembers = new RestResource(this.client, "/api/v1/workflow-members", { supported: ["list", "show", "update", "replace", "delete"], updateMethod: "PUT" });
|
|
9
|
+
teams = new RestResource(this.client, "/api/v1/team", { supported: ["list", "show", "create", "update", "replace", "delete"], updateMethod: "PUT" });
|
|
10
|
+
teamUsers = new RestResource(this.client, "/api/v1/team-users", { supported: ["list", "show", "create", "update", "replace", "delete"], updateMethod: "PUT" });
|
|
11
|
+
worklogs = new RestResource(this.client, "/api/v1/worklog", { supported: ["list", "show", "create", "update", "replace", "delete"], updateMethod: "PUT" });
|
|
12
|
+
reminders = new RestResource(this.client, "/api/v1/reminder", { supported: ["list", "create", "update", "replace", "delete"], updateMethod: "PUT" });
|
|
13
|
+
escalations = new RestResource(this.client, "/api/v1/sos", { supported: ["list", "show", "create", "update", "replace", "delete"], updateMethod: "PUT" });
|
|
12
14
|
leadStats(options) { return this.client.get("/api/v1/stats/lead", undefined, options); }
|
|
13
15
|
dailyStats(options) { return this.client.get("/api/v1/stats/daily", undefined, options); }
|
|
14
16
|
markLeadDone(id, options) { return this.client.put(`/api/v1/lead/${encodeURIComponent(id)}/move-to-done`, undefined, options); }
|
|
@@ -17,4 +19,6 @@ export class CrmApi extends ServiceApi {
|
|
|
17
19
|
}
|
|
18
20
|
export * from "./types.js";
|
|
19
21
|
export * from "@faiber/sdk-core";
|
|
22
|
+
export * from "./operations.js";
|
|
23
|
+
export * from "./operations.types.js";
|
|
20
24
|
//# 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;AAGlG,MAAM,OAAO,MAAO,SAAQ,UAAU;IACzB,KAAK,GAAwF,IAAI,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
|
+
import type * as T from "./operations.types.js";
|
|
3
|
+
export declare class CrmOperations extends ServiceApi {
|
|
4
|
+
/** GET /; permission: public/session-derived. */
|
|
5
|
+
routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
|
|
6
|
+
/** GET /api/openapi.json; permission: public/session-derived. */
|
|
7
|
+
routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
|
|
8
|
+
/** GET /api/v1/integration/docs; permission: admin:integration:read. */
|
|
9
|
+
integrationIntegrationDocsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationIntegrationDocsShowGetResponse, unknown, {}>>;
|
|
10
|
+
/** GET /api/v1/integration/flow; permission: public/session-derived. */
|
|
11
|
+
integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
|
|
12
|
+
/** GET /api/v1/lead; permission: lead:read, lead:read_all, lead:read_own. */
|
|
13
|
+
leadIndexGet(params?: T.LeadIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadIndexGetResponse, unknown, {}>>;
|
|
14
|
+
/** POST /api/v1/lead; permission: lead:create. */
|
|
15
|
+
leadCreatePost(data: T.LeadCreatePostInput, options?: RequestOptions<T.LeadCreatePostInput>): Promise<import("axios").AxiosResponse<T.LeadCreatePostResponse, T.LeadCreatePostInput, {}>>;
|
|
16
|
+
/** GET /api/v1/lead-campaign; permission: public/session-derived. */
|
|
17
|
+
leadCampaignIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadCampaignIndexGetResponse, unknown, {}>>;
|
|
18
|
+
/** POST /api/v1/lead-campaign; permission: public/session-derived. */
|
|
19
|
+
leadCampaignCreatePost(data: T.LeadCampaignCreatePostInput, options?: RequestOptions<T.LeadCampaignCreatePostInput>): Promise<import("axios").AxiosResponse<T.LeadCampaignCreatePostResponse, T.LeadCampaignCreatePostInput, {}>>;
|
|
20
|
+
/** DELETE /api/v1/lead-campaign/{id}; permission: public/session-derived. */
|
|
21
|
+
leadCampaignDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadCampaignDestroyDeleteResponse, unknown, {}>>;
|
|
22
|
+
/** GET /api/v1/lead-campaign/{id}; permission: public/session-derived. */
|
|
23
|
+
leadCampaignShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadCampaignShowGetResponse, unknown, {}>>;
|
|
24
|
+
/** PUT /api/v1/lead-campaign/{id}; permission: public/session-derived. */
|
|
25
|
+
leadCampaignUpdatePut(id: Identifier, data: T.LeadCampaignUpdatePutInput, options?: RequestOptions<T.LeadCampaignUpdatePutInput>): Promise<import("axios").AxiosResponse<T.LeadCampaignUpdatePutResponse, T.LeadCampaignUpdatePutInput, {}>>;
|
|
26
|
+
/** GET /api/v1/lead-source; permission: public/session-derived. */
|
|
27
|
+
leadSourceIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadSourceIndexGetResponse, unknown, {}>>;
|
|
28
|
+
/** POST /api/v1/lead-source; permission: public/session-derived. */
|
|
29
|
+
leadSourceCreatePost(data: T.LeadSourceCreatePostInput, options?: RequestOptions<T.LeadSourceCreatePostInput>): Promise<import("axios").AxiosResponse<T.LeadSourceCreatePostResponse, T.LeadSourceCreatePostInput, {}>>;
|
|
30
|
+
/** DELETE /api/v1/lead-source/{id}; permission: public/session-derived. */
|
|
31
|
+
leadSourceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadSourceDestroyDeleteResponse, unknown, {}>>;
|
|
32
|
+
/** GET /api/v1/lead-source/{id}; permission: public/session-derived. */
|
|
33
|
+
leadSourceShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadSourceShowGetResponse, unknown, {}>>;
|
|
34
|
+
/** PUT /api/v1/lead-source/{id}; permission: public/session-derived. */
|
|
35
|
+
leadSourceUpdatePut(id: Identifier, data: T.LeadSourceUpdatePutInput, options?: RequestOptions<T.LeadSourceUpdatePutInput>): Promise<import("axios").AxiosResponse<T.LeadSourceUpdatePutResponse, T.LeadSourceUpdatePutInput, {}>>;
|
|
36
|
+
/** DELETE /api/v1/lead/{id}; permission: lead:delete. */
|
|
37
|
+
leadDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadDestroyDeleteResponse, unknown, {}>>;
|
|
38
|
+
/** GET /api/v1/lead/{id}; permission: lead:read, lead:read_all, lead:read_own. */
|
|
39
|
+
leadShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadShowGetResponse, unknown, {}>>;
|
|
40
|
+
/** PUT /api/v1/lead/{id}; permission: lead:update. */
|
|
41
|
+
leadUpdatePut(id: Identifier, data: T.LeadUpdatePutInput, options?: RequestOptions<T.LeadUpdatePutInput>): Promise<import("axios").AxiosResponse<T.LeadUpdatePutResponse, T.LeadUpdatePutInput, {}>>;
|
|
42
|
+
/** GET /api/v1/lead/{id}/check-status; permission: lead:update. */
|
|
43
|
+
leadCheckStatusGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadCheckStatusGetResponse, unknown, {}>>;
|
|
44
|
+
/** GET /api/v1/lead/{id}/log; permission: lead_log:read. */
|
|
45
|
+
leadListLogsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadListLogsGetResponse, unknown, {}>>;
|
|
46
|
+
/** POST /api/v1/lead/{id}/log; permission: lead_log:create. */
|
|
47
|
+
leadCreateLogPost(id: Identifier, data: T.LeadCreateLogPostInput, options?: RequestOptions<T.LeadCreateLogPostInput>): Promise<import("axios").AxiosResponse<T.LeadCreateLogPostResponse, T.LeadCreateLogPostInput, {}>>;
|
|
48
|
+
/** DELETE /api/v1/lead/{id}/log/{log_id}; permission: lead_log:delete. */
|
|
49
|
+
leadDestroyLogDelete(id: Identifier, logId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadDestroyLogDeleteResponse, unknown, {}>>;
|
|
50
|
+
/** GET /api/v1/lead/{id}/log/{log_id}; permission: lead_log:read. */
|
|
51
|
+
leadShowLogGet(id: Identifier, logId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadShowLogGetResponse, unknown, {}>>;
|
|
52
|
+
/** PUT /api/v1/lead/{id}/log/{log_id}; permission: lead_log:update. */
|
|
53
|
+
leadUpdateLogPut(id: Identifier, logId: Identifier, data: T.LeadUpdateLogPutInput, options?: RequestOptions<T.LeadUpdateLogPutInput>): Promise<import("axios").AxiosResponse<T.LeadUpdateLogPutResponse, T.LeadUpdateLogPutInput, {}>>;
|
|
54
|
+
/** PUT /api/v1/lead/{id}/move-to-done; permission: lead:update. */
|
|
55
|
+
leadMoveToDonePut(id: Identifier, data: T.LeadMoveToDonePutInput, options?: RequestOptions<T.LeadMoveToDonePutInput>): Promise<import("axios").AxiosResponse<T.LeadMoveToDonePutResponse, T.LeadMoveToDonePutInput, {}>>;
|
|
56
|
+
/** GET /api/v1/lead/{id}/touch; permission: lead_touch:read. */
|
|
57
|
+
leadListTouchesGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadListTouchesGetResponse, unknown, {}>>;
|
|
58
|
+
/** POST /api/v1/lead/{id}/touch; permission: lead_touch:create. */
|
|
59
|
+
leadCreateTouchPost(id: Identifier, data: T.LeadCreateTouchPostInput, options?: RequestOptions<T.LeadCreateTouchPostInput>): Promise<import("axios").AxiosResponse<T.LeadCreateTouchPostResponse, T.LeadCreateTouchPostInput, {}>>;
|
|
60
|
+
/** DELETE /api/v1/lead/{id}/touch/{touch_id}; permission: lead_touch:delete. */
|
|
61
|
+
leadDestroyTouchDelete(id: Identifier, touchId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadDestroyTouchDeleteResponse, unknown, {}>>;
|
|
62
|
+
/** GET /api/v1/lead/{id}/touch/{touch_id}; permission: lead_touch:read. */
|
|
63
|
+
leadShowTouchGet(id: Identifier, touchId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadShowTouchGetResponse, unknown, {}>>;
|
|
64
|
+
/** PUT /api/v1/lead/{id}/touch/{touch_id}; permission: lead_touch:update. */
|
|
65
|
+
leadUpdateTouchPut(id: Identifier, touchId: Identifier, data: T.LeadUpdateTouchPutInput, options?: RequestOptions<T.LeadUpdateTouchPutInput>): Promise<import("axios").AxiosResponse<T.LeadUpdateTouchPutResponse, T.LeadUpdateTouchPutInput, {}>>;
|
|
66
|
+
/** POST /api/v1/lead/developer; permission: lead:create. */
|
|
67
|
+
leadCreateDeveloperPost(data: T.LeadCreateDeveloperPostInput, options?: RequestOptions<T.LeadCreateDeveloperPostInput>): Promise<import("axios").AxiosResponse<T.LeadCreateDeveloperPostResponse, T.LeadCreateDeveloperPostInput, {}>>;
|
|
68
|
+
/** GET /api/v1/lead/developer/ready; permission: lead:read, lead:read_all, lead:read_own. */
|
|
69
|
+
leadDeveloperReadyGet(params?: T.LeadDeveloperReadyGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadDeveloperReadyGetResponse, unknown, {}>>;
|
|
70
|
+
/** GET /api/v1/lead/foreign_key; permission: lead:read, lead:read_all, lead:read_own. */
|
|
71
|
+
leadByForeignKeyGet(params?: T.LeadByForeignKeyGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadByForeignKeyGetResponse, unknown, {}>>;
|
|
72
|
+
/** DELETE /api/v1/lead/foreign_key/{foreign_key}/profile_id/{profile_id}/flags/{flags}; permission: lead:delete. */
|
|
73
|
+
leadDestroyByForeignKeyDelete(foreignKey: Identifier, profileId: Identifier, flags: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadDestroyByForeignKeyDeleteResponse, unknown, {}>>;
|
|
74
|
+
/** PUT /api/v1/lead/foreign_key/{foreign_key}/profile_id/{profile_id}/flags/{flags}; permission: lead:update. */
|
|
75
|
+
leadUpdateByForeignKeyPut(foreignKey: Identifier, profileId: Identifier, flags: Identifier, data: T.LeadUpdateByForeignKeyPutInput, options?: RequestOptions<T.LeadUpdateByForeignKeyPutInput>): Promise<import("axios").AxiosResponse<T.LeadUpdateByForeignKeyPutResponse, T.LeadUpdateByForeignKeyPutInput, {}>>;
|
|
76
|
+
/** GET /api/v1/lead/light; permission: lead:read, lead:read_all, lead:read_own. */
|
|
77
|
+
leadLightGet(params?: T.LeadLightGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadLightGetResponse, unknown, {}>>;
|
|
78
|
+
/** GET /api/v1/reminder; permission: reminder:read. */
|
|
79
|
+
reminderIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReminderIndexGetResponse, unknown, {}>>;
|
|
80
|
+
/** POST /api/v1/reminder; permission: reminder:create. */
|
|
81
|
+
reminderCreatePost(data: T.ReminderCreatePostInput, options?: RequestOptions<T.ReminderCreatePostInput>): Promise<import("axios").AxiosResponse<T.ReminderCreatePostResponse, T.ReminderCreatePostInput, {}>>;
|
|
82
|
+
/** DELETE /api/v1/reminder/{id}; permission: reminder:delete. */
|
|
83
|
+
reminderDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReminderDestroyDeleteResponse, unknown, {}>>;
|
|
84
|
+
/** PUT /api/v1/reminder/{id}; permission: reminder:update. */
|
|
85
|
+
reminderUpdatePut(id: Identifier, data: T.ReminderUpdatePutInput, options?: RequestOptions<T.ReminderUpdatePutInput>): Promise<import("axios").AxiosResponse<T.ReminderUpdatePutResponse, T.ReminderUpdatePutInput, {}>>;
|
|
86
|
+
/** DELETE /api/v1/reminder/lead_id/{lead_id}; permission: reminder:delete. */
|
|
87
|
+
reminderDestroyByLeadDelete(leadId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReminderDestroyByLeadDeleteResponse, unknown, {}>>;
|
|
88
|
+
/** GET /api/v1/reminder/until-today; permission: reminder:read. */
|
|
89
|
+
reminderUntilTodayGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReminderUntilTodayGetResponse, unknown, {}>>;
|
|
90
|
+
/** GET /api/v1/sos; permission: sos:read, sos:read_all, sos:read_own. */
|
|
91
|
+
sosIndexGet(params?: T.SosIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosIndexGetResponse, unknown, {}>>;
|
|
92
|
+
/** POST /api/v1/sos; permission: sos:create. */
|
|
93
|
+
sosCreatePost(data: T.SosCreatePostInput, options?: RequestOptions<T.SosCreatePostInput>): Promise<import("axios").AxiosResponse<T.SosCreatePostResponse, T.SosCreatePostInput, {}>>;
|
|
94
|
+
/** DELETE /api/v1/sos/{id}; permission: sos:delete. */
|
|
95
|
+
sosDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosDestroyDeleteResponse, unknown, {}>>;
|
|
96
|
+
/** GET /api/v1/sos/{id}; permission: sos:read. */
|
|
97
|
+
sosShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosShowGetResponse, unknown, {}>>;
|
|
98
|
+
/** PUT /api/v1/sos/{id}; permission: sos:update. */
|
|
99
|
+
sosUpdatePut(id: Identifier, data: T.SosUpdatePutInput, options?: RequestOptions<T.SosUpdatePutInput>): Promise<import("axios").AxiosResponse<T.SosUpdatePutResponse, T.SosUpdatePutInput, {}>>;
|
|
100
|
+
/** GET /api/v1/sos/{id}/log; permission: sos_log:read. */
|
|
101
|
+
sosListLogsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosListLogsGetResponse, unknown, {}>>;
|
|
102
|
+
/** POST /api/v1/sos/{id}/log; permission: sos_log:create. */
|
|
103
|
+
sosCreateLogPost(id: Identifier, data: T.SosCreateLogPostInput, options?: RequestOptions<T.SosCreateLogPostInput>): Promise<import("axios").AxiosResponse<T.SosCreateLogPostResponse, T.SosCreateLogPostInput, {}>>;
|
|
104
|
+
/** DELETE /api/v1/sos/{id}/log/{log_id}; permission: sos_log:delete. */
|
|
105
|
+
sosDestroyLogDelete(id: Identifier, logId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosDestroyLogDeleteResponse, unknown, {}>>;
|
|
106
|
+
/** GET /api/v1/sos/{id}/log/{log_id}; permission: sos_log:read. */
|
|
107
|
+
sosShowLogGet(id: Identifier, logId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosShowLogGetResponse, unknown, {}>>;
|
|
108
|
+
/** PUT /api/v1/sos/{id}/log/{log_id}; permission: sos_log:update. */
|
|
109
|
+
sosUpdateLogPut(id: Identifier, logId: Identifier, data: T.SosUpdateLogPutInput, options?: RequestOptions<T.SosUpdateLogPutInput>): Promise<import("axios").AxiosResponse<T.SosUpdateLogPutResponse, T.SosUpdateLogPutInput, {}>>;
|
|
110
|
+
/** GET /api/v1/sos/{id}/touch; permission: sos_touch:read. */
|
|
111
|
+
sosListTouchesGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosListTouchesGetResponse, unknown, {}>>;
|
|
112
|
+
/** POST /api/v1/sos/{id}/touch; permission: sos_touch:create. */
|
|
113
|
+
sosCreateTouchPost(id: Identifier, data: T.SosCreateTouchPostInput, options?: RequestOptions<T.SosCreateTouchPostInput>): Promise<import("axios").AxiosResponse<T.SosCreateTouchPostResponse, T.SosCreateTouchPostInput, {}>>;
|
|
114
|
+
/** DELETE /api/v1/sos/{id}/touch/{touch_id}; permission: sos_touch:delete. */
|
|
115
|
+
sosDestroyTouchDelete(id: Identifier, touchId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosDestroyTouchDeleteResponse, unknown, {}>>;
|
|
116
|
+
/** GET /api/v1/sos/{id}/touch/{touch_id}; permission: sos_touch:read. */
|
|
117
|
+
sosShowTouchGet(id: Identifier, touchId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosShowTouchGetResponse, unknown, {}>>;
|
|
118
|
+
/** PUT /api/v1/sos/{id}/touch/{touch_id}; permission: sos_touch:update. */
|
|
119
|
+
sosUpdateTouchPut(id: Identifier, touchId: Identifier, data: T.SosUpdateTouchPutInput, options?: RequestOptions<T.SosUpdateTouchPutInput>): Promise<import("axios").AxiosResponse<T.SosUpdateTouchPutResponse, T.SosUpdateTouchPutInput, {}>>;
|
|
120
|
+
/** GET /api/v1/sos/all; permission: sos:read, sos:read_all, sos:read_own. */
|
|
121
|
+
sosAllGet(params?: T.SosAllGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosAllGetResponse, unknown, {}>>;
|
|
122
|
+
/** POST /api/v1/sos/exit_assignee/{profile_id}; permission: sos:update, sos:update_all, sos:update_own. */
|
|
123
|
+
sosExitAssigneeRoutePost(profileId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosExitAssigneeRoutePostResponse, unknown, {}>>;
|
|
124
|
+
/** GET /api/v1/stats/daily; permission: stats:read. */
|
|
125
|
+
statsDailyGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.StatsDailyGetResponse, unknown, {}>>;
|
|
126
|
+
/** GET /api/v1/stats/lead; permission: stats:read, stats:read_all, stats:read_own. */
|
|
127
|
+
statsLeadGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.StatsLeadGetResponse, unknown, {}>>;
|
|
128
|
+
/** GET /api/v1/team; permission: team:read. */
|
|
129
|
+
teamIndexGet(params?: T.TeamIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamIndexGetResponse, unknown, {}>>;
|
|
130
|
+
/** POST /api/v1/team; permission: team:create. */
|
|
131
|
+
teamCreatePost(data: T.TeamCreatePostInput, options?: RequestOptions<T.TeamCreatePostInput>): Promise<import("axios").AxiosResponse<T.TeamCreatePostResponse, T.TeamCreatePostInput, {}>>;
|
|
132
|
+
/** GET /api/v1/team-users; permission: team_user:read. */
|
|
133
|
+
teamUserIndexGet(params?: T.TeamUserIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamUserIndexGetResponse, unknown, {}>>;
|
|
134
|
+
/** POST /api/v1/team-users; permission: team_user:create. */
|
|
135
|
+
teamUserCreatePost(data: T.TeamUserCreatePostInput, options?: RequestOptions<T.TeamUserCreatePostInput>): Promise<import("axios").AxiosResponse<T.TeamUserCreatePostResponse, T.TeamUserCreatePostInput, {}>>;
|
|
136
|
+
/** DELETE /api/v1/team-users/{id}; permission: team_user:delete. */
|
|
137
|
+
teamUserDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamUserDestroyDeleteResponse, unknown, {}>>;
|
|
138
|
+
/** GET /api/v1/team-users/{id}; permission: team_user:read. */
|
|
139
|
+
teamUserShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamUserShowGetResponse, unknown, {}>>;
|
|
140
|
+
/** PUT /api/v1/team-users/{id}; permission: team_user:update. */
|
|
141
|
+
teamUserUpdatePut(id: Identifier, data: T.TeamUserUpdatePutInput, options?: RequestOptions<T.TeamUserUpdatePutInput>): Promise<import("axios").AxiosResponse<T.TeamUserUpdatePutResponse, T.TeamUserUpdatePutInput, {}>>;
|
|
142
|
+
/** POST /api/v1/team-users/multi-profiles; permission: team_user:create. */
|
|
143
|
+
teamUserMultiProfilesPost(data: T.TeamUserMultiProfilesPostInput, options?: RequestOptions<T.TeamUserMultiProfilesPostInput>): Promise<import("axios").AxiosResponse<T.TeamUserMultiProfilesPostResponse, T.TeamUserMultiProfilesPostInput, {}>>;
|
|
144
|
+
/** DELETE /api/v1/team/{id}; permission: team:delete. */
|
|
145
|
+
teamDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamDestroyDeleteResponse, unknown, {}>>;
|
|
146
|
+
/** GET /api/v1/team/{id}; permission: team:read. */
|
|
147
|
+
teamShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamShowGetResponse, unknown, {}>>;
|
|
148
|
+
/** PUT /api/v1/team/{id}; permission: team:update. */
|
|
149
|
+
teamUpdatePut(id: Identifier, data: T.TeamUpdatePutInput, options?: RequestOptions<T.TeamUpdatePutInput>): Promise<import("axios").AxiosResponse<T.TeamUpdatePutResponse, T.TeamUpdatePutInput, {}>>;
|
|
150
|
+
/** GET /api/v1/webhook; permission: public/session-derived. */
|
|
151
|
+
webhookIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WebhookIndexGetResponse, unknown, {}>>;
|
|
152
|
+
/** POST /api/v1/webhook; permission: public/session-derived. */
|
|
153
|
+
webhookCreatePost(data: T.WebhookCreatePostInput, options?: RequestOptions<T.WebhookCreatePostInput>): Promise<import("axios").AxiosResponse<T.WebhookCreatePostResponse, T.WebhookCreatePostInput, {}>>;
|
|
154
|
+
/** DELETE /api/v1/webhook/{id}; permission: public/session-derived. */
|
|
155
|
+
webhookDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WebhookDestroyDeleteResponse, unknown, {}>>;
|
|
156
|
+
/** GET /api/v1/webhook/{id}; permission: public/session-derived. */
|
|
157
|
+
webhookShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WebhookShowGetResponse, unknown, {}>>;
|
|
158
|
+
/** PUT /api/v1/webhook/{id}; permission: public/session-derived. */
|
|
159
|
+
webhookUpdatePut(id: Identifier, data: T.WebhookUpdatePutInput, options?: RequestOptions<T.WebhookUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WebhookUpdatePutResponse, T.WebhookUpdatePutInput, {}>>;
|
|
160
|
+
/** GET /api/v1/workflow; permission: workflow:read, workflow:read_all, workflow:read_own. */
|
|
161
|
+
workflowIndexGet(params?: T.WorkflowIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowIndexGetResponse, unknown, {}>>;
|
|
162
|
+
/** POST /api/v1/workflow; permission: workflow:create. */
|
|
163
|
+
workflowCreatePost(data: T.WorkflowCreatePostInput, options?: RequestOptions<T.WorkflowCreatePostInput>): Promise<import("axios").AxiosResponse<T.WorkflowCreatePostResponse, T.WorkflowCreatePostInput, {}>>;
|
|
164
|
+
/** GET /api/v1/workflow-members; permission: workflow_member:read. */
|
|
165
|
+
workflowMemberIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowMemberIndexGetResponse, unknown, {}>>;
|
|
166
|
+
/** DELETE /api/v1/workflow-members/{id}; permission: workflow_member:delete. */
|
|
167
|
+
workflowMemberDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowMemberDestroyDeleteResponse, unknown, {}>>;
|
|
168
|
+
/** GET /api/v1/workflow-members/{id}; permission: workflow_member:read. */
|
|
169
|
+
workflowMemberShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowMemberShowGetResponse, unknown, {}>>;
|
|
170
|
+
/** POST /api/v1/workflow-members/{id}; permission: workflow_member:create. */
|
|
171
|
+
workflowMemberCreatePost(id: Identifier, data: T.WorkflowMemberCreatePostInput, options?: RequestOptions<T.WorkflowMemberCreatePostInput>): Promise<import("axios").AxiosResponse<T.WorkflowMemberCreatePostResponse, T.WorkflowMemberCreatePostInput, {}>>;
|
|
172
|
+
/** PUT /api/v1/workflow-members/{id}; permission: workflow_member:update. */
|
|
173
|
+
workflowMemberUpdatePut(id: Identifier, data: T.WorkflowMemberUpdatePutInput, options?: RequestOptions<T.WorkflowMemberUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WorkflowMemberUpdatePutResponse, T.WorkflowMemberUpdatePutInput, {}>>;
|
|
174
|
+
/** GET /api/v1/workflow-members/workflow/{workflow_id}; permission: workflow_member:read. */
|
|
175
|
+
workflowMemberByWorkflowGet(workflowId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowMemberByWorkflowGetResponse, unknown, {}>>;
|
|
176
|
+
/** GET /api/v1/workflow-node; permission: workflow_node:read, workflow_node:read_all, workflow_node:read_own. */
|
|
177
|
+
workflowNodeIndexGet(params?: T.WorkflowNodeIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowNodeIndexGetResponse, unknown, {}>>;
|
|
178
|
+
/** DELETE /api/v1/workflow-node/{id}; permission: workflow_node:delete. */
|
|
179
|
+
workflowNodeDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowNodeDestroyDeleteResponse, unknown, {}>>;
|
|
180
|
+
/** GET /api/v1/workflow-node/{id}; permission: workflow_node:read. */
|
|
181
|
+
workflowNodeShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowNodeShowGetResponse, unknown, {}>>;
|
|
182
|
+
/** POST /api/v1/workflow-node/{id}; permission: workflow_node:create. */
|
|
183
|
+
workflowNodeCreatePost(id: Identifier, data: T.WorkflowNodeCreatePostInput, options?: RequestOptions<T.WorkflowNodeCreatePostInput>): Promise<import("axios").AxiosResponse<T.WorkflowNodeCreatePostResponse, T.WorkflowNodeCreatePostInput, {}>>;
|
|
184
|
+
/** PUT /api/v1/workflow-node/{id}; permission: workflow_node:update. */
|
|
185
|
+
workflowNodeUpdatePut(id: Identifier, data: T.WorkflowNodeUpdatePutInput, options?: RequestOptions<T.WorkflowNodeUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WorkflowNodeUpdatePutResponse, T.WorkflowNodeUpdatePutInput, {}>>;
|
|
186
|
+
/** DELETE /api/v1/workflow/{id}; permission: workflow:delete. */
|
|
187
|
+
workflowDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowDestroyDeleteResponse, unknown, {}>>;
|
|
188
|
+
/** GET /api/v1/workflow/{id}; permission: workflow:read, workflow:read_all, workflow:read_own. */
|
|
189
|
+
workflowShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowShowGetResponse, unknown, {}>>;
|
|
190
|
+
/** PUT /api/v1/workflow/{id}; permission: workflow:update. */
|
|
191
|
+
workflowUpdatePut(id: Identifier, data: T.WorkflowUpdatePutInput, options?: RequestOptions<T.WorkflowUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WorkflowUpdatePutResponse, T.WorkflowUpdatePutInput, {}>>;
|
|
192
|
+
/** GET /api/v1/workflow/member-based; permission: workflow:read, workflow:read_all, workflow:read_own. */
|
|
193
|
+
workflowMemberBasedGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowMemberBasedGetResponse, unknown, {}>>;
|
|
194
|
+
/** GET /api/v1/worklog; permission: worklog:read, worklog:read_all, worklog:read_own. */
|
|
195
|
+
worklogIndexGet(params?: T.WorklogIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorklogIndexGetResponse, unknown, {}>>;
|
|
196
|
+
/** POST /api/v1/worklog; permission: worklog:create. */
|
|
197
|
+
worklogCreatePost(data: T.WorklogCreatePostInput, options?: RequestOptions<T.WorklogCreatePostInput>): Promise<import("axios").AxiosResponse<T.WorklogCreatePostResponse, T.WorklogCreatePostInput, {}>>;
|
|
198
|
+
/** DELETE /api/v1/worklog/{id}; permission: worklog:delete. */
|
|
199
|
+
worklogDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorklogDestroyDeleteResponse, unknown, {}>>;
|
|
200
|
+
/** GET /api/v1/worklog/{id}; permission: worklog:read, worklog:read_all, worklog:read_own. */
|
|
201
|
+
worklogShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorklogShowGetResponse, unknown, {}>>;
|
|
202
|
+
/** PUT /api/v1/worklog/{id}; permission: worklog:update. */
|
|
203
|
+
worklogUpdatePut(id: Identifier, data: T.WorklogUpdatePutInput, options?: RequestOptions<T.WorklogUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WorklogUpdatePutResponse, T.WorklogUpdatePutInput, {}>>;
|
|
204
|
+
/** GET /health; permission: public/session-derived. */
|
|
205
|
+
routerStatusRouteGetHealth(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetHealthResponse, unknown, {}>>;
|
|
206
|
+
/** GET /up; permission: public/session-derived. */
|
|
207
|
+
routerStatusRouteGetUp(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetUpResponse, unknown, {}>>;
|
|
208
|
+
}
|
|
209
|
+
//# sourceMappingURL=operations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|