@faiber/faiber-crm 0.3.0 → 0.5.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/dist/.tsbuildinfo +1 -1
- package/dist/operations.d.ts +841 -102
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +841 -102
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +1263 -388
- package/dist/operations.types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/operations.d.ts
CHANGED
|
@@ -1,209 +1,948 @@
|
|
|
1
1
|
import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
2
|
import type * as T from "./operations.types.js";
|
|
3
3
|
export declare class CrmOperations extends ServiceApi {
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* Performs the status route operation for the router capability.
|
|
6
|
+
* Calls `GET /` through the shared IDP-aware Faiber client.
|
|
7
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
8
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
9
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
10
|
+
*/
|
|
5
11
|
routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
|
|
6
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* Performs the openapi json operation for the router capability.
|
|
14
|
+
* Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
|
|
15
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
16
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
17
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
18
|
+
*/
|
|
7
19
|
routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
|
|
8
|
-
/**
|
|
20
|
+
/**
|
|
21
|
+
* Performs the integration docs show operation for the integration capability.
|
|
22
|
+
* Calls `GET /api/v1/integration/docs` through the shared IDP-aware Faiber client.
|
|
23
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
24
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
25
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:integration:read.
|
|
26
|
+
*/
|
|
9
27
|
integrationIntegrationDocsShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationIntegrationDocsShowGetResponse, unknown, {}>>;
|
|
10
|
-
/**
|
|
28
|
+
/**
|
|
29
|
+
* Performs the flow integration show operation for the integration capability.
|
|
30
|
+
* Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
|
|
31
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
32
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
33
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
34
|
+
*/
|
|
11
35
|
integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
|
|
12
|
-
/**
|
|
36
|
+
/**
|
|
37
|
+
* Performs the index operation for the lead capability.
|
|
38
|
+
* Calls `GET /api/v1/lead` through the shared IDP-aware Faiber client.
|
|
39
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
40
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
41
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
42
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:read, lead:read_all, lead:read_own.
|
|
43
|
+
*/
|
|
13
44
|
leadIndexGet(params?: T.LeadIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadIndexGetResponse, unknown, {}>>;
|
|
14
|
-
/**
|
|
45
|
+
/**
|
|
46
|
+
* Performs the create operation for the lead capability.
|
|
47
|
+
* Calls `POST /api/v1/lead` through the shared IDP-aware Faiber client.
|
|
48
|
+
* @param data Typed JSON request body.
|
|
49
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
50
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
51
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:create.
|
|
52
|
+
*/
|
|
15
53
|
leadCreatePost(data: T.LeadCreatePostInput, options?: RequestOptions<T.LeadCreatePostInput>): Promise<import("axios").AxiosResponse<T.LeadCreatePostResponse, T.LeadCreatePostInput, {}>>;
|
|
16
|
-
/**
|
|
54
|
+
/**
|
|
55
|
+
* Performs the index operation for the lead campaign capability.
|
|
56
|
+
* Calls `GET /api/v1/lead-campaign` through the shared IDP-aware Faiber client.
|
|
57
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
58
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
59
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
60
|
+
*/
|
|
17
61
|
leadCampaignIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadCampaignIndexGetResponse, unknown, {}>>;
|
|
18
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* Performs the create operation for the lead campaign capability.
|
|
64
|
+
* Calls `POST /api/v1/lead-campaign` through the shared IDP-aware Faiber client.
|
|
65
|
+
* @param data Typed JSON request body.
|
|
66
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
67
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
68
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
69
|
+
*/
|
|
19
70
|
leadCampaignCreatePost(data: T.LeadCampaignCreatePostInput, options?: RequestOptions<T.LeadCampaignCreatePostInput>): Promise<import("axios").AxiosResponse<T.LeadCampaignCreatePostResponse, T.LeadCampaignCreatePostInput, {}>>;
|
|
20
|
-
/**
|
|
71
|
+
/**
|
|
72
|
+
* Performs the destroy operation for the lead campaign capability.
|
|
73
|
+
* Calls `DELETE /api/v1/lead-campaign/{id}` through the shared IDP-aware Faiber client.
|
|
74
|
+
* @param id Backend path identifier `id`.
|
|
75
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
76
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
77
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
78
|
+
*/
|
|
21
79
|
leadCampaignDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadCampaignDestroyDeleteResponse, unknown, {}>>;
|
|
22
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* Performs the show operation for the lead campaign capability.
|
|
82
|
+
* Calls `GET /api/v1/lead-campaign/{id}` through the shared IDP-aware Faiber client.
|
|
83
|
+
* @param id Backend path identifier `id`.
|
|
84
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
85
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
86
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
87
|
+
*/
|
|
23
88
|
leadCampaignShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadCampaignShowGetResponse, unknown, {}>>;
|
|
24
|
-
/**
|
|
89
|
+
/**
|
|
90
|
+
* Performs the update operation for the lead campaign capability.
|
|
91
|
+
* Calls `PUT /api/v1/lead-campaign/{id}` through the shared IDP-aware Faiber client.
|
|
92
|
+
* @param id Backend path identifier `id`.
|
|
93
|
+
* @param data Typed JSON request body.
|
|
94
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
95
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
96
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
97
|
+
*/
|
|
25
98
|
leadCampaignUpdatePut(id: Identifier, data: T.LeadCampaignUpdatePutInput, options?: RequestOptions<T.LeadCampaignUpdatePutInput>): Promise<import("axios").AxiosResponse<T.LeadCampaignUpdatePutResponse, T.LeadCampaignUpdatePutInput, {}>>;
|
|
26
|
-
/**
|
|
99
|
+
/**
|
|
100
|
+
* Performs the index operation for the lead source capability.
|
|
101
|
+
* Calls `GET /api/v1/lead-source` through the shared IDP-aware Faiber client.
|
|
102
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
103
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
104
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
105
|
+
*/
|
|
27
106
|
leadSourceIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadSourceIndexGetResponse, unknown, {}>>;
|
|
28
|
-
/**
|
|
107
|
+
/**
|
|
108
|
+
* Performs the create operation for the lead source capability.
|
|
109
|
+
* Calls `POST /api/v1/lead-source` through the shared IDP-aware Faiber client.
|
|
110
|
+
* @param data Typed JSON request body.
|
|
111
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
112
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
113
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
114
|
+
*/
|
|
29
115
|
leadSourceCreatePost(data: T.LeadSourceCreatePostInput, options?: RequestOptions<T.LeadSourceCreatePostInput>): Promise<import("axios").AxiosResponse<T.LeadSourceCreatePostResponse, T.LeadSourceCreatePostInput, {}>>;
|
|
30
|
-
/**
|
|
116
|
+
/**
|
|
117
|
+
* Performs the destroy operation for the lead source capability.
|
|
118
|
+
* Calls `DELETE /api/v1/lead-source/{id}` through the shared IDP-aware Faiber client.
|
|
119
|
+
* @param id Backend path identifier `id`.
|
|
120
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
121
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
122
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
123
|
+
*/
|
|
31
124
|
leadSourceDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadSourceDestroyDeleteResponse, unknown, {}>>;
|
|
32
|
-
/**
|
|
125
|
+
/**
|
|
126
|
+
* Performs the show operation for the lead source capability.
|
|
127
|
+
* Calls `GET /api/v1/lead-source/{id}` through the shared IDP-aware Faiber client.
|
|
128
|
+
* @param id Backend path identifier `id`.
|
|
129
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
130
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
131
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
132
|
+
*/
|
|
33
133
|
leadSourceShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadSourceShowGetResponse, unknown, {}>>;
|
|
34
|
-
/**
|
|
134
|
+
/**
|
|
135
|
+
* Performs the update operation for the lead source capability.
|
|
136
|
+
* Calls `PUT /api/v1/lead-source/{id}` through the shared IDP-aware Faiber client.
|
|
137
|
+
* @param id Backend path identifier `id`.
|
|
138
|
+
* @param data Typed JSON request body.
|
|
139
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
140
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
141
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
142
|
+
*/
|
|
35
143
|
leadSourceUpdatePut(id: Identifier, data: T.LeadSourceUpdatePutInput, options?: RequestOptions<T.LeadSourceUpdatePutInput>): Promise<import("axios").AxiosResponse<T.LeadSourceUpdatePutResponse, T.LeadSourceUpdatePutInput, {}>>;
|
|
36
|
-
/**
|
|
144
|
+
/**
|
|
145
|
+
* Performs the destroy operation for the lead capability.
|
|
146
|
+
* Calls `DELETE /api/v1/lead/{id}` through the shared IDP-aware Faiber client.
|
|
147
|
+
* @param id Backend path identifier `id`.
|
|
148
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
149
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
150
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:delete.
|
|
151
|
+
*/
|
|
37
152
|
leadDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadDestroyDeleteResponse, unknown, {}>>;
|
|
38
|
-
/**
|
|
153
|
+
/**
|
|
154
|
+
* Performs the show operation for the lead capability.
|
|
155
|
+
* Calls `GET /api/v1/lead/{id}` through the shared IDP-aware Faiber client.
|
|
156
|
+
* @param id Backend path identifier `id`.
|
|
157
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
158
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
159
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:read, lead:read_all, lead:read_own.
|
|
160
|
+
*/
|
|
39
161
|
leadShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadShowGetResponse, unknown, {}>>;
|
|
40
|
-
/**
|
|
162
|
+
/**
|
|
163
|
+
* Performs the update operation for the lead capability.
|
|
164
|
+
* Calls `PUT /api/v1/lead/{id}` through the shared IDP-aware Faiber client.
|
|
165
|
+
* @param id Backend path identifier `id`.
|
|
166
|
+
* @param data Typed JSON request body.
|
|
167
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
168
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
169
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:update.
|
|
170
|
+
*/
|
|
41
171
|
leadUpdatePut(id: Identifier, data: T.LeadUpdatePutInput, options?: RequestOptions<T.LeadUpdatePutInput>): Promise<import("axios").AxiosResponse<T.LeadUpdatePutResponse, T.LeadUpdatePutInput, {}>>;
|
|
42
|
-
/**
|
|
172
|
+
/**
|
|
173
|
+
* Performs the check status operation for the lead capability.
|
|
174
|
+
* Calls `GET /api/v1/lead/{id}/check-status` through the shared IDP-aware Faiber client.
|
|
175
|
+
* @param id Backend path identifier `id`.
|
|
176
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
177
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
178
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:update.
|
|
179
|
+
*/
|
|
43
180
|
leadCheckStatusGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadCheckStatusGetResponse, unknown, {}>>;
|
|
44
|
-
/**
|
|
181
|
+
/**
|
|
182
|
+
* Performs the list logs operation for the lead capability.
|
|
183
|
+
* Calls `GET /api/v1/lead/{id}/log` through the shared IDP-aware Faiber client.
|
|
184
|
+
* @param id Backend path identifier `id`.
|
|
185
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
186
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
187
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_log:read.
|
|
188
|
+
*/
|
|
45
189
|
leadListLogsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadListLogsGetResponse, unknown, {}>>;
|
|
46
|
-
/**
|
|
190
|
+
/**
|
|
191
|
+
* Performs the create log operation for the lead capability.
|
|
192
|
+
* Calls `POST /api/v1/lead/{id}/log` through the shared IDP-aware Faiber client.
|
|
193
|
+
* @param id Backend path identifier `id`.
|
|
194
|
+
* @param data Typed JSON request body.
|
|
195
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
196
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
197
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_log:create.
|
|
198
|
+
*/
|
|
47
199
|
leadCreateLogPost(id: Identifier, data: T.LeadCreateLogPostInput, options?: RequestOptions<T.LeadCreateLogPostInput>): Promise<import("axios").AxiosResponse<T.LeadCreateLogPostResponse, T.LeadCreateLogPostInput, {}>>;
|
|
48
|
-
/**
|
|
200
|
+
/**
|
|
201
|
+
* Performs the destroy log operation for the lead capability.
|
|
202
|
+
* Calls `DELETE /api/v1/lead/{id}/log/{log_id}` through the shared IDP-aware Faiber client.
|
|
203
|
+
* @param id Backend path identifier `id`.
|
|
204
|
+
* @param logId Backend path identifier `log_id`.
|
|
205
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
206
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
207
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_log:delete.
|
|
208
|
+
*/
|
|
49
209
|
leadDestroyLogDelete(id: Identifier, logId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadDestroyLogDeleteResponse, unknown, {}>>;
|
|
50
|
-
/**
|
|
210
|
+
/**
|
|
211
|
+
* Performs the show log operation for the lead capability.
|
|
212
|
+
* Calls `GET /api/v1/lead/{id}/log/{log_id}` through the shared IDP-aware Faiber client.
|
|
213
|
+
* @param id Backend path identifier `id`.
|
|
214
|
+
* @param logId Backend path identifier `log_id`.
|
|
215
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
216
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
217
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_log:read.
|
|
218
|
+
*/
|
|
51
219
|
leadShowLogGet(id: Identifier, logId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadShowLogGetResponse, unknown, {}>>;
|
|
52
|
-
/**
|
|
220
|
+
/**
|
|
221
|
+
* Performs the update log operation for the lead capability.
|
|
222
|
+
* Calls `PUT /api/v1/lead/{id}/log/{log_id}` through the shared IDP-aware Faiber client.
|
|
223
|
+
* @param id Backend path identifier `id`.
|
|
224
|
+
* @param logId Backend path identifier `log_id`.
|
|
225
|
+
* @param data Typed JSON request body.
|
|
226
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
227
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
228
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_log:update.
|
|
229
|
+
*/
|
|
53
230
|
leadUpdateLogPut(id: Identifier, logId: Identifier, data: T.LeadUpdateLogPutInput, options?: RequestOptions<T.LeadUpdateLogPutInput>): Promise<import("axios").AxiosResponse<T.LeadUpdateLogPutResponse, T.LeadUpdateLogPutInput, {}>>;
|
|
54
|
-
/**
|
|
231
|
+
/**
|
|
232
|
+
* Performs the move to done operation for the lead capability.
|
|
233
|
+
* Calls `PUT /api/v1/lead/{id}/move-to-done` through the shared IDP-aware Faiber client.
|
|
234
|
+
* @param id Backend path identifier `id`.
|
|
235
|
+
* @param data Typed JSON request body.
|
|
236
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
237
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
238
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:update.
|
|
239
|
+
*/
|
|
55
240
|
leadMoveToDonePut(id: Identifier, data: T.LeadMoveToDonePutInput, options?: RequestOptions<T.LeadMoveToDonePutInput>): Promise<import("axios").AxiosResponse<T.LeadMoveToDonePutResponse, T.LeadMoveToDonePutInput, {}>>;
|
|
56
|
-
/**
|
|
241
|
+
/**
|
|
242
|
+
* Performs the list touches operation for the lead capability.
|
|
243
|
+
* Calls `GET /api/v1/lead/{id}/touch` through the shared IDP-aware Faiber client.
|
|
244
|
+
* @param id Backend path identifier `id`.
|
|
245
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
246
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
247
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_touch:read.
|
|
248
|
+
*/
|
|
57
249
|
leadListTouchesGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadListTouchesGetResponse, unknown, {}>>;
|
|
58
|
-
/**
|
|
250
|
+
/**
|
|
251
|
+
* Performs the create touch operation for the lead capability.
|
|
252
|
+
* Calls `POST /api/v1/lead/{id}/touch` through the shared IDP-aware Faiber client.
|
|
253
|
+
* @param id Backend path identifier `id`.
|
|
254
|
+
* @param data Typed JSON request body.
|
|
255
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
256
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
257
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_touch:create.
|
|
258
|
+
*/
|
|
59
259
|
leadCreateTouchPost(id: Identifier, data: T.LeadCreateTouchPostInput, options?: RequestOptions<T.LeadCreateTouchPostInput>): Promise<import("axios").AxiosResponse<T.LeadCreateTouchPostResponse, T.LeadCreateTouchPostInput, {}>>;
|
|
60
|
-
/**
|
|
260
|
+
/**
|
|
261
|
+
* Performs the destroy touch operation for the lead capability.
|
|
262
|
+
* Calls `DELETE /api/v1/lead/{id}/touch/{touch_id}` through the shared IDP-aware Faiber client.
|
|
263
|
+
* @param id Backend path identifier `id`.
|
|
264
|
+
* @param touchId Backend path identifier `touch_id`.
|
|
265
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
266
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
267
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_touch:delete.
|
|
268
|
+
*/
|
|
61
269
|
leadDestroyTouchDelete(id: Identifier, touchId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadDestroyTouchDeleteResponse, unknown, {}>>;
|
|
62
|
-
/**
|
|
270
|
+
/**
|
|
271
|
+
* Performs the show touch operation for the lead capability.
|
|
272
|
+
* Calls `GET /api/v1/lead/{id}/touch/{touch_id}` through the shared IDP-aware Faiber client.
|
|
273
|
+
* @param id Backend path identifier `id`.
|
|
274
|
+
* @param touchId Backend path identifier `touch_id`.
|
|
275
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
276
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
277
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_touch:read.
|
|
278
|
+
*/
|
|
63
279
|
leadShowTouchGet(id: Identifier, touchId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadShowTouchGetResponse, unknown, {}>>;
|
|
64
|
-
/**
|
|
280
|
+
/**
|
|
281
|
+
* Performs the update touch operation for the lead capability.
|
|
282
|
+
* Calls `PUT /api/v1/lead/{id}/touch/{touch_id}` through the shared IDP-aware Faiber client.
|
|
283
|
+
* @param id Backend path identifier `id`.
|
|
284
|
+
* @param touchId Backend path identifier `touch_id`.
|
|
285
|
+
* @param data Typed JSON request body.
|
|
286
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
287
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
288
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_touch:update.
|
|
289
|
+
*/
|
|
65
290
|
leadUpdateTouchPut(id: Identifier, touchId: Identifier, data: T.LeadUpdateTouchPutInput, options?: RequestOptions<T.LeadUpdateTouchPutInput>): Promise<import("axios").AxiosResponse<T.LeadUpdateTouchPutResponse, T.LeadUpdateTouchPutInput, {}>>;
|
|
66
|
-
/**
|
|
291
|
+
/**
|
|
292
|
+
* Performs the create developer operation for the lead capability.
|
|
293
|
+
* Calls `POST /api/v1/lead/developer` through the shared IDP-aware Faiber client.
|
|
294
|
+
* @param data Typed JSON request body.
|
|
295
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
296
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
297
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:create.
|
|
298
|
+
*/
|
|
67
299
|
leadCreateDeveloperPost(data: T.LeadCreateDeveloperPostInput, options?: RequestOptions<T.LeadCreateDeveloperPostInput>): Promise<import("axios").AxiosResponse<T.LeadCreateDeveloperPostResponse, T.LeadCreateDeveloperPostInput, {}>>;
|
|
68
|
-
/**
|
|
300
|
+
/**
|
|
301
|
+
* Performs the developer ready operation for the lead capability.
|
|
302
|
+
* Calls `GET /api/v1/lead/developer/ready` through the shared IDP-aware Faiber client.
|
|
303
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
304
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
305
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
306
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:read, lead:read_all, lead:read_own.
|
|
307
|
+
*/
|
|
69
308
|
leadDeveloperReadyGet(params?: T.LeadDeveloperReadyGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadDeveloperReadyGetResponse, unknown, {}>>;
|
|
70
|
-
/**
|
|
309
|
+
/**
|
|
310
|
+
* Performs the by foreign key operation for the lead capability.
|
|
311
|
+
* Calls `GET /api/v1/lead/foreign_key` through the shared IDP-aware Faiber client.
|
|
312
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
313
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
314
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
315
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:read, lead:read_all, lead:read_own.
|
|
316
|
+
*/
|
|
71
317
|
leadByForeignKeyGet(params?: T.LeadByForeignKeyGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadByForeignKeyGetResponse, unknown, {}>>;
|
|
72
|
-
/**
|
|
318
|
+
/**
|
|
319
|
+
* Performs the destroy by foreign key operation for the lead capability.
|
|
320
|
+
* Calls `DELETE /api/v1/lead/foreign_key/{foreign_key}/profile_id/{profile_id}/flags/{flags}` through the shared IDP-aware Faiber client.
|
|
321
|
+
* @param foreignKey Backend path identifier `foreign_key`.
|
|
322
|
+
* @param profileId Backend path identifier `profile_id`.
|
|
323
|
+
* @param flags Backend path identifier `flags`.
|
|
324
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
325
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
326
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:delete.
|
|
327
|
+
*/
|
|
73
328
|
leadDestroyByForeignKeyDelete(foreignKey: Identifier, profileId: Identifier, flags: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadDestroyByForeignKeyDeleteResponse, unknown, {}>>;
|
|
74
|
-
/**
|
|
329
|
+
/**
|
|
330
|
+
* Performs the update by foreign key operation for the lead capability.
|
|
331
|
+
* Calls `PUT /api/v1/lead/foreign_key/{foreign_key}/profile_id/{profile_id}/flags/{flags}` through the shared IDP-aware Faiber client.
|
|
332
|
+
* @param foreignKey Backend path identifier `foreign_key`.
|
|
333
|
+
* @param profileId Backend path identifier `profile_id`.
|
|
334
|
+
* @param flags Backend path identifier `flags`.
|
|
335
|
+
* @param data Typed JSON request body.
|
|
336
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
337
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
338
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:update.
|
|
339
|
+
*/
|
|
75
340
|
leadUpdateByForeignKeyPut(foreignKey: Identifier, profileId: Identifier, flags: Identifier, data: T.LeadUpdateByForeignKeyPutInput, options?: RequestOptions<T.LeadUpdateByForeignKeyPutInput>): Promise<import("axios").AxiosResponse<T.LeadUpdateByForeignKeyPutResponse, T.LeadUpdateByForeignKeyPutInput, {}>>;
|
|
76
|
-
/**
|
|
341
|
+
/**
|
|
342
|
+
* Performs the light operation for the lead capability.
|
|
343
|
+
* Calls `GET /api/v1/lead/light` through the shared IDP-aware Faiber client.
|
|
344
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
345
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
346
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
347
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:read, lead:read_all, lead:read_own.
|
|
348
|
+
*/
|
|
77
349
|
leadLightGet(params?: T.LeadLightGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.LeadLightGetResponse, unknown, {}>>;
|
|
78
|
-
/**
|
|
350
|
+
/**
|
|
351
|
+
* Performs the index operation for the reminder capability.
|
|
352
|
+
* Calls `GET /api/v1/reminder` through the shared IDP-aware Faiber client.
|
|
353
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
354
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
355
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: reminder:read.
|
|
356
|
+
*/
|
|
79
357
|
reminderIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReminderIndexGetResponse, unknown, {}>>;
|
|
80
|
-
/**
|
|
358
|
+
/**
|
|
359
|
+
* Performs the create operation for the reminder capability.
|
|
360
|
+
* Calls `POST /api/v1/reminder` through the shared IDP-aware Faiber client.
|
|
361
|
+
* @param data Typed JSON request body.
|
|
362
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
363
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
364
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: reminder:create.
|
|
365
|
+
*/
|
|
81
366
|
reminderCreatePost(data: T.ReminderCreatePostInput, options?: RequestOptions<T.ReminderCreatePostInput>): Promise<import("axios").AxiosResponse<T.ReminderCreatePostResponse, T.ReminderCreatePostInput, {}>>;
|
|
82
|
-
/**
|
|
367
|
+
/**
|
|
368
|
+
* Performs the destroy operation for the reminder capability.
|
|
369
|
+
* Calls `DELETE /api/v1/reminder/{id}` through the shared IDP-aware Faiber client.
|
|
370
|
+
* @param id Backend path identifier `id`.
|
|
371
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
372
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
373
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: reminder:delete.
|
|
374
|
+
*/
|
|
83
375
|
reminderDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReminderDestroyDeleteResponse, unknown, {}>>;
|
|
84
|
-
/**
|
|
376
|
+
/**
|
|
377
|
+
* Performs the update operation for the reminder capability.
|
|
378
|
+
* Calls `PUT /api/v1/reminder/{id}` through the shared IDP-aware Faiber client.
|
|
379
|
+
* @param id Backend path identifier `id`.
|
|
380
|
+
* @param data Typed JSON request body.
|
|
381
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
382
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
383
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: reminder:update.
|
|
384
|
+
*/
|
|
85
385
|
reminderUpdatePut(id: Identifier, data: T.ReminderUpdatePutInput, options?: RequestOptions<T.ReminderUpdatePutInput>): Promise<import("axios").AxiosResponse<T.ReminderUpdatePutResponse, T.ReminderUpdatePutInput, {}>>;
|
|
86
|
-
/**
|
|
386
|
+
/**
|
|
387
|
+
* Performs the destroy by lead operation for the reminder capability.
|
|
388
|
+
* Calls `DELETE /api/v1/reminder/lead_id/{lead_id}` through the shared IDP-aware Faiber client.
|
|
389
|
+
* @param leadId Backend path identifier `lead_id`.
|
|
390
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
391
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
392
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: reminder:delete.
|
|
393
|
+
*/
|
|
87
394
|
reminderDestroyByLeadDelete(leadId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReminderDestroyByLeadDeleteResponse, unknown, {}>>;
|
|
88
|
-
/**
|
|
395
|
+
/**
|
|
396
|
+
* Performs the until today operation for the reminder capability.
|
|
397
|
+
* Calls `GET /api/v1/reminder/until-today` through the shared IDP-aware Faiber client.
|
|
398
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
399
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
400
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: reminder:read.
|
|
401
|
+
*/
|
|
89
402
|
reminderUntilTodayGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReminderUntilTodayGetResponse, unknown, {}>>;
|
|
90
|
-
/**
|
|
403
|
+
/**
|
|
404
|
+
* Performs the index operation for the sos capability.
|
|
405
|
+
* Calls `GET /api/v1/sos` through the shared IDP-aware Faiber client.
|
|
406
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
407
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
408
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
409
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos:read, sos:read_all, sos:read_own.
|
|
410
|
+
*/
|
|
91
411
|
sosIndexGet(params?: T.SosIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosIndexGetResponse, unknown, {}>>;
|
|
92
|
-
/**
|
|
412
|
+
/**
|
|
413
|
+
* Performs the create operation for the sos capability.
|
|
414
|
+
* Calls `POST /api/v1/sos` through the shared IDP-aware Faiber client.
|
|
415
|
+
* @param data Typed JSON request body.
|
|
416
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
417
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
418
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos:create.
|
|
419
|
+
*/
|
|
93
420
|
sosCreatePost(data: T.SosCreatePostInput, options?: RequestOptions<T.SosCreatePostInput>): Promise<import("axios").AxiosResponse<T.SosCreatePostResponse, T.SosCreatePostInput, {}>>;
|
|
94
|
-
/**
|
|
421
|
+
/**
|
|
422
|
+
* Performs the destroy operation for the sos capability.
|
|
423
|
+
* Calls `DELETE /api/v1/sos/{id}` through the shared IDP-aware Faiber client.
|
|
424
|
+
* @param id Backend path identifier `id`.
|
|
425
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
426
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
427
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos:delete.
|
|
428
|
+
*/
|
|
95
429
|
sosDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosDestroyDeleteResponse, unknown, {}>>;
|
|
96
|
-
/**
|
|
430
|
+
/**
|
|
431
|
+
* Performs the show operation for the sos capability.
|
|
432
|
+
* Calls `GET /api/v1/sos/{id}` through the shared IDP-aware Faiber client.
|
|
433
|
+
* @param id Backend path identifier `id`.
|
|
434
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
435
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
436
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos:read.
|
|
437
|
+
*/
|
|
97
438
|
sosShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosShowGetResponse, unknown, {}>>;
|
|
98
|
-
/**
|
|
439
|
+
/**
|
|
440
|
+
* Performs the update operation for the sos capability.
|
|
441
|
+
* Calls `PUT /api/v1/sos/{id}` through the shared IDP-aware Faiber client.
|
|
442
|
+
* @param id Backend path identifier `id`.
|
|
443
|
+
* @param data Typed JSON request body.
|
|
444
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
445
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
446
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos:update.
|
|
447
|
+
*/
|
|
99
448
|
sosUpdatePut(id: Identifier, data: T.SosUpdatePutInput, options?: RequestOptions<T.SosUpdatePutInput>): Promise<import("axios").AxiosResponse<T.SosUpdatePutResponse, T.SosUpdatePutInput, {}>>;
|
|
100
|
-
/**
|
|
449
|
+
/**
|
|
450
|
+
* Performs the list logs operation for the sos capability.
|
|
451
|
+
* Calls `GET /api/v1/sos/{id}/log` through the shared IDP-aware Faiber client.
|
|
452
|
+
* @param id Backend path identifier `id`.
|
|
453
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
454
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
455
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_log:read.
|
|
456
|
+
*/
|
|
101
457
|
sosListLogsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosListLogsGetResponse, unknown, {}>>;
|
|
102
|
-
/**
|
|
458
|
+
/**
|
|
459
|
+
* Performs the create log operation for the sos capability.
|
|
460
|
+
* Calls `POST /api/v1/sos/{id}/log` through the shared IDP-aware Faiber client.
|
|
461
|
+
* @param id Backend path identifier `id`.
|
|
462
|
+
* @param data Typed JSON request body.
|
|
463
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
464
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
465
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_log:create.
|
|
466
|
+
*/
|
|
103
467
|
sosCreateLogPost(id: Identifier, data: T.SosCreateLogPostInput, options?: RequestOptions<T.SosCreateLogPostInput>): Promise<import("axios").AxiosResponse<T.SosCreateLogPostResponse, T.SosCreateLogPostInput, {}>>;
|
|
104
|
-
/**
|
|
468
|
+
/**
|
|
469
|
+
* Performs the destroy log operation for the sos capability.
|
|
470
|
+
* Calls `DELETE /api/v1/sos/{id}/log/{log_id}` through the shared IDP-aware Faiber client.
|
|
471
|
+
* @param id Backend path identifier `id`.
|
|
472
|
+
* @param logId Backend path identifier `log_id`.
|
|
473
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
474
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
475
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_log:delete.
|
|
476
|
+
*/
|
|
105
477
|
sosDestroyLogDelete(id: Identifier, logId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosDestroyLogDeleteResponse, unknown, {}>>;
|
|
106
|
-
/**
|
|
478
|
+
/**
|
|
479
|
+
* Performs the show log operation for the sos capability.
|
|
480
|
+
* Calls `GET /api/v1/sos/{id}/log/{log_id}` through the shared IDP-aware Faiber client.
|
|
481
|
+
* @param id Backend path identifier `id`.
|
|
482
|
+
* @param logId Backend path identifier `log_id`.
|
|
483
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
484
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
485
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_log:read.
|
|
486
|
+
*/
|
|
107
487
|
sosShowLogGet(id: Identifier, logId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosShowLogGetResponse, unknown, {}>>;
|
|
108
|
-
/**
|
|
488
|
+
/**
|
|
489
|
+
* Performs the update log operation for the sos capability.
|
|
490
|
+
* Calls `PUT /api/v1/sos/{id}/log/{log_id}` through the shared IDP-aware Faiber client.
|
|
491
|
+
* @param id Backend path identifier `id`.
|
|
492
|
+
* @param logId Backend path identifier `log_id`.
|
|
493
|
+
* @param data Typed JSON request body.
|
|
494
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
495
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
496
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_log:update.
|
|
497
|
+
*/
|
|
109
498
|
sosUpdateLogPut(id: Identifier, logId: Identifier, data: T.SosUpdateLogPutInput, options?: RequestOptions<T.SosUpdateLogPutInput>): Promise<import("axios").AxiosResponse<T.SosUpdateLogPutResponse, T.SosUpdateLogPutInput, {}>>;
|
|
110
|
-
/**
|
|
499
|
+
/**
|
|
500
|
+
* Performs the list touches operation for the sos capability.
|
|
501
|
+
* Calls `GET /api/v1/sos/{id}/touch` through the shared IDP-aware Faiber client.
|
|
502
|
+
* @param id Backend path identifier `id`.
|
|
503
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
504
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
505
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_touch:read.
|
|
506
|
+
*/
|
|
111
507
|
sosListTouchesGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosListTouchesGetResponse, unknown, {}>>;
|
|
112
|
-
/**
|
|
508
|
+
/**
|
|
509
|
+
* Performs the create touch operation for the sos capability.
|
|
510
|
+
* Calls `POST /api/v1/sos/{id}/touch` through the shared IDP-aware Faiber client.
|
|
511
|
+
* @param id Backend path identifier `id`.
|
|
512
|
+
* @param data Typed JSON request body.
|
|
513
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
514
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
515
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_touch:create.
|
|
516
|
+
*/
|
|
113
517
|
sosCreateTouchPost(id: Identifier, data: T.SosCreateTouchPostInput, options?: RequestOptions<T.SosCreateTouchPostInput>): Promise<import("axios").AxiosResponse<T.SosCreateTouchPostResponse, T.SosCreateTouchPostInput, {}>>;
|
|
114
|
-
/**
|
|
518
|
+
/**
|
|
519
|
+
* Performs the destroy touch operation for the sos capability.
|
|
520
|
+
* Calls `DELETE /api/v1/sos/{id}/touch/{touch_id}` through the shared IDP-aware Faiber client.
|
|
521
|
+
* @param id Backend path identifier `id`.
|
|
522
|
+
* @param touchId Backend path identifier `touch_id`.
|
|
523
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
524
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
525
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_touch:delete.
|
|
526
|
+
*/
|
|
115
527
|
sosDestroyTouchDelete(id: Identifier, touchId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosDestroyTouchDeleteResponse, unknown, {}>>;
|
|
116
|
-
/**
|
|
528
|
+
/**
|
|
529
|
+
* Performs the show touch operation for the sos capability.
|
|
530
|
+
* Calls `GET /api/v1/sos/{id}/touch/{touch_id}` through the shared IDP-aware Faiber client.
|
|
531
|
+
* @param id Backend path identifier `id`.
|
|
532
|
+
* @param touchId Backend path identifier `touch_id`.
|
|
533
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
534
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
535
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_touch:read.
|
|
536
|
+
*/
|
|
117
537
|
sosShowTouchGet(id: Identifier, touchId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosShowTouchGetResponse, unknown, {}>>;
|
|
118
|
-
/**
|
|
538
|
+
/**
|
|
539
|
+
* Performs the update touch operation for the sos capability.
|
|
540
|
+
* Calls `PUT /api/v1/sos/{id}/touch/{touch_id}` through the shared IDP-aware Faiber client.
|
|
541
|
+
* @param id Backend path identifier `id`.
|
|
542
|
+
* @param touchId Backend path identifier `touch_id`.
|
|
543
|
+
* @param data Typed JSON request body.
|
|
544
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
545
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
546
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_touch:update.
|
|
547
|
+
*/
|
|
119
548
|
sosUpdateTouchPut(id: Identifier, touchId: Identifier, data: T.SosUpdateTouchPutInput, options?: RequestOptions<T.SosUpdateTouchPutInput>): Promise<import("axios").AxiosResponse<T.SosUpdateTouchPutResponse, T.SosUpdateTouchPutInput, {}>>;
|
|
120
|
-
/**
|
|
549
|
+
/**
|
|
550
|
+
* Performs the all operation for the sos capability.
|
|
551
|
+
* Calls `GET /api/v1/sos/all` through the shared IDP-aware Faiber client.
|
|
552
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
553
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
554
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
555
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos:read, sos:read_all, sos:read_own.
|
|
556
|
+
*/
|
|
121
557
|
sosAllGet(params?: T.SosAllGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosAllGetResponse, unknown, {}>>;
|
|
122
|
-
/**
|
|
558
|
+
/**
|
|
559
|
+
* Performs the exit assignee route operation for the sos capability.
|
|
560
|
+
* Calls `POST /api/v1/sos/exit_assignee/{profile_id}` through the shared IDP-aware Faiber client.
|
|
561
|
+
* @param profileId Backend path identifier `profile_id`.
|
|
562
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
563
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
564
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos:update, sos:update_all, sos:update_own.
|
|
565
|
+
*/
|
|
123
566
|
sosExitAssigneeRoutePost(profileId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SosExitAssigneeRoutePostResponse, unknown, {}>>;
|
|
124
|
-
/**
|
|
567
|
+
/**
|
|
568
|
+
* Performs the daily operation for the stats capability.
|
|
569
|
+
* Calls `GET /api/v1/stats/daily` through the shared IDP-aware Faiber client.
|
|
570
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
571
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
572
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: stats:read.
|
|
573
|
+
*/
|
|
125
574
|
statsDailyGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.StatsDailyGetResponse, unknown, {}>>;
|
|
126
|
-
/**
|
|
575
|
+
/**
|
|
576
|
+
* Performs the lead operation for the stats capability.
|
|
577
|
+
* Calls `GET /api/v1/stats/lead` through the shared IDP-aware Faiber client.
|
|
578
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
579
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
580
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: stats:read, stats:read_all, stats:read_own.
|
|
581
|
+
*/
|
|
127
582
|
statsLeadGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.StatsLeadGetResponse, unknown, {}>>;
|
|
128
|
-
/**
|
|
583
|
+
/**
|
|
584
|
+
* Performs the index operation for the team capability.
|
|
585
|
+
* Calls `GET /api/v1/team` through the shared IDP-aware Faiber client.
|
|
586
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
587
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
588
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
589
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team:read.
|
|
590
|
+
*/
|
|
129
591
|
teamIndexGet(params?: T.TeamIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamIndexGetResponse, unknown, {}>>;
|
|
130
|
-
/**
|
|
592
|
+
/**
|
|
593
|
+
* Performs the create operation for the team capability.
|
|
594
|
+
* Calls `POST /api/v1/team` through the shared IDP-aware Faiber client.
|
|
595
|
+
* @param data Typed JSON request body.
|
|
596
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
597
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
598
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team:create.
|
|
599
|
+
*/
|
|
131
600
|
teamCreatePost(data: T.TeamCreatePostInput, options?: RequestOptions<T.TeamCreatePostInput>): Promise<import("axios").AxiosResponse<T.TeamCreatePostResponse, T.TeamCreatePostInput, {}>>;
|
|
132
|
-
/**
|
|
601
|
+
/**
|
|
602
|
+
* Performs the index operation for the team user capability.
|
|
603
|
+
* Calls `GET /api/v1/team-users` through the shared IDP-aware Faiber client.
|
|
604
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
605
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
606
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
607
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team_user:read.
|
|
608
|
+
*/
|
|
133
609
|
teamUserIndexGet(params?: T.TeamUserIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamUserIndexGetResponse, unknown, {}>>;
|
|
134
|
-
/**
|
|
610
|
+
/**
|
|
611
|
+
* Performs the create operation for the team user capability.
|
|
612
|
+
* Calls `POST /api/v1/team-users` through the shared IDP-aware Faiber client.
|
|
613
|
+
* @param data Typed JSON request body.
|
|
614
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
615
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
616
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team_user:create.
|
|
617
|
+
*/
|
|
135
618
|
teamUserCreatePost(data: T.TeamUserCreatePostInput, options?: RequestOptions<T.TeamUserCreatePostInput>): Promise<import("axios").AxiosResponse<T.TeamUserCreatePostResponse, T.TeamUserCreatePostInput, {}>>;
|
|
136
|
-
/**
|
|
619
|
+
/**
|
|
620
|
+
* Performs the destroy operation for the team user capability.
|
|
621
|
+
* Calls `DELETE /api/v1/team-users/{id}` through the shared IDP-aware Faiber client.
|
|
622
|
+
* @param id Backend path identifier `id`.
|
|
623
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
624
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
625
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team_user:delete.
|
|
626
|
+
*/
|
|
137
627
|
teamUserDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamUserDestroyDeleteResponse, unknown, {}>>;
|
|
138
|
-
/**
|
|
628
|
+
/**
|
|
629
|
+
* Performs the show operation for the team user capability.
|
|
630
|
+
* Calls `GET /api/v1/team-users/{id}` through the shared IDP-aware Faiber client.
|
|
631
|
+
* @param id Backend path identifier `id`.
|
|
632
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
633
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
634
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team_user:read.
|
|
635
|
+
*/
|
|
139
636
|
teamUserShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamUserShowGetResponse, unknown, {}>>;
|
|
140
|
-
/**
|
|
637
|
+
/**
|
|
638
|
+
* Performs the update operation for the team user capability.
|
|
639
|
+
* Calls `PUT /api/v1/team-users/{id}` through the shared IDP-aware Faiber client.
|
|
640
|
+
* @param id Backend path identifier `id`.
|
|
641
|
+
* @param data Typed JSON request body.
|
|
642
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
643
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
644
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team_user:update.
|
|
645
|
+
*/
|
|
141
646
|
teamUserUpdatePut(id: Identifier, data: T.TeamUserUpdatePutInput, options?: RequestOptions<T.TeamUserUpdatePutInput>): Promise<import("axios").AxiosResponse<T.TeamUserUpdatePutResponse, T.TeamUserUpdatePutInput, {}>>;
|
|
142
|
-
/**
|
|
647
|
+
/**
|
|
648
|
+
* Performs the multi profiles operation for the team user capability.
|
|
649
|
+
* Calls `POST /api/v1/team-users/multi-profiles` through the shared IDP-aware Faiber client.
|
|
650
|
+
* @param data Typed JSON request body.
|
|
651
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
652
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
653
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team_user:create.
|
|
654
|
+
*/
|
|
143
655
|
teamUserMultiProfilesPost(data: T.TeamUserMultiProfilesPostInput, options?: RequestOptions<T.TeamUserMultiProfilesPostInput>): Promise<import("axios").AxiosResponse<T.TeamUserMultiProfilesPostResponse, T.TeamUserMultiProfilesPostInput, {}>>;
|
|
144
|
-
/**
|
|
656
|
+
/**
|
|
657
|
+
* Performs the destroy operation for the team capability.
|
|
658
|
+
* Calls `DELETE /api/v1/team/{id}` through the shared IDP-aware Faiber client.
|
|
659
|
+
* @param id Backend path identifier `id`.
|
|
660
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
661
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
662
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team:delete.
|
|
663
|
+
*/
|
|
145
664
|
teamDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamDestroyDeleteResponse, unknown, {}>>;
|
|
146
|
-
/**
|
|
665
|
+
/**
|
|
666
|
+
* Performs the show operation for the team capability.
|
|
667
|
+
* Calls `GET /api/v1/team/{id}` through the shared IDP-aware Faiber client.
|
|
668
|
+
* @param id Backend path identifier `id`.
|
|
669
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
670
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
671
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team:read.
|
|
672
|
+
*/
|
|
147
673
|
teamShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.TeamShowGetResponse, unknown, {}>>;
|
|
148
|
-
/**
|
|
674
|
+
/**
|
|
675
|
+
* Performs the update operation for the team capability.
|
|
676
|
+
* Calls `PUT /api/v1/team/{id}` through the shared IDP-aware Faiber client.
|
|
677
|
+
* @param id Backend path identifier `id`.
|
|
678
|
+
* @param data Typed JSON request body.
|
|
679
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
680
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
681
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team:update.
|
|
682
|
+
*/
|
|
149
683
|
teamUpdatePut(id: Identifier, data: T.TeamUpdatePutInput, options?: RequestOptions<T.TeamUpdatePutInput>): Promise<import("axios").AxiosResponse<T.TeamUpdatePutResponse, T.TeamUpdatePutInput, {}>>;
|
|
150
|
-
/**
|
|
684
|
+
/**
|
|
685
|
+
* Performs the index operation for the webhook capability.
|
|
686
|
+
* Calls `GET /api/v1/webhook` through the shared IDP-aware Faiber client.
|
|
687
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
688
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
689
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
690
|
+
*/
|
|
151
691
|
webhookIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WebhookIndexGetResponse, unknown, {}>>;
|
|
152
|
-
/**
|
|
692
|
+
/**
|
|
693
|
+
* Performs the create operation for the webhook capability.
|
|
694
|
+
* Calls `POST /api/v1/webhook` through the shared IDP-aware Faiber client.
|
|
695
|
+
* @param data Typed JSON request body.
|
|
696
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
697
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
698
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
699
|
+
*/
|
|
153
700
|
webhookCreatePost(data: T.WebhookCreatePostInput, options?: RequestOptions<T.WebhookCreatePostInput>): Promise<import("axios").AxiosResponse<T.WebhookCreatePostResponse, T.WebhookCreatePostInput, {}>>;
|
|
154
|
-
/**
|
|
701
|
+
/**
|
|
702
|
+
* Performs the destroy operation for the webhook capability.
|
|
703
|
+
* Calls `DELETE /api/v1/webhook/{id}` through the shared IDP-aware Faiber client.
|
|
704
|
+
* @param id Backend path identifier `id`.
|
|
705
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
706
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
707
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
708
|
+
*/
|
|
155
709
|
webhookDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WebhookDestroyDeleteResponse, unknown, {}>>;
|
|
156
|
-
/**
|
|
710
|
+
/**
|
|
711
|
+
* Performs the show operation for the webhook capability.
|
|
712
|
+
* Calls `GET /api/v1/webhook/{id}` through the shared IDP-aware Faiber client.
|
|
713
|
+
* @param id Backend path identifier `id`.
|
|
714
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
715
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
716
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
717
|
+
*/
|
|
157
718
|
webhookShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WebhookShowGetResponse, unknown, {}>>;
|
|
158
|
-
/**
|
|
719
|
+
/**
|
|
720
|
+
* Performs the update operation for the webhook capability.
|
|
721
|
+
* Calls `PUT /api/v1/webhook/{id}` through the shared IDP-aware Faiber client.
|
|
722
|
+
* @param id Backend path identifier `id`.
|
|
723
|
+
* @param data Typed JSON request body.
|
|
724
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
725
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
726
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
727
|
+
*/
|
|
159
728
|
webhookUpdatePut(id: Identifier, data: T.WebhookUpdatePutInput, options?: RequestOptions<T.WebhookUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WebhookUpdatePutResponse, T.WebhookUpdatePutInput, {}>>;
|
|
160
|
-
/**
|
|
729
|
+
/**
|
|
730
|
+
* Performs the index operation for the workflow capability.
|
|
731
|
+
* Calls `GET /api/v1/workflow` through the shared IDP-aware Faiber client.
|
|
732
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
733
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
734
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
735
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow:read, workflow:read_all, workflow:read_own.
|
|
736
|
+
*/
|
|
161
737
|
workflowIndexGet(params?: T.WorkflowIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowIndexGetResponse, unknown, {}>>;
|
|
162
|
-
/**
|
|
738
|
+
/**
|
|
739
|
+
* Performs the create operation for the workflow capability.
|
|
740
|
+
* Calls `POST /api/v1/workflow` through the shared IDP-aware Faiber client.
|
|
741
|
+
* @param data Typed JSON request body.
|
|
742
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
743
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
744
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow:create.
|
|
745
|
+
*/
|
|
163
746
|
workflowCreatePost(data: T.WorkflowCreatePostInput, options?: RequestOptions<T.WorkflowCreatePostInput>): Promise<import("axios").AxiosResponse<T.WorkflowCreatePostResponse, T.WorkflowCreatePostInput, {}>>;
|
|
164
|
-
/**
|
|
747
|
+
/**
|
|
748
|
+
* Performs the index operation for the workflow member capability.
|
|
749
|
+
* Calls `GET /api/v1/workflow-members` through the shared IDP-aware Faiber client.
|
|
750
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
751
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
752
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_member:read.
|
|
753
|
+
*/
|
|
165
754
|
workflowMemberIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowMemberIndexGetResponse, unknown, {}>>;
|
|
166
|
-
/**
|
|
755
|
+
/**
|
|
756
|
+
* Performs the destroy operation for the workflow member capability.
|
|
757
|
+
* Calls `DELETE /api/v1/workflow-members/{id}` through the shared IDP-aware Faiber client.
|
|
758
|
+
* @param id Backend path identifier `id`.
|
|
759
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
760
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
761
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_member:delete.
|
|
762
|
+
*/
|
|
167
763
|
workflowMemberDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowMemberDestroyDeleteResponse, unknown, {}>>;
|
|
168
|
-
/**
|
|
764
|
+
/**
|
|
765
|
+
* Performs the show operation for the workflow member capability.
|
|
766
|
+
* Calls `GET /api/v1/workflow-members/{id}` through the shared IDP-aware Faiber client.
|
|
767
|
+
* @param id Backend path identifier `id`.
|
|
768
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
769
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
770
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_member:read.
|
|
771
|
+
*/
|
|
169
772
|
workflowMemberShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowMemberShowGetResponse, unknown, {}>>;
|
|
170
|
-
/**
|
|
773
|
+
/**
|
|
774
|
+
* Performs the create operation for the workflow member capability.
|
|
775
|
+
* Calls `POST /api/v1/workflow-members/{id}` through the shared IDP-aware Faiber client.
|
|
776
|
+
* @param id Backend path identifier `id`.
|
|
777
|
+
* @param data Typed JSON request body.
|
|
778
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
779
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
780
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_member:create.
|
|
781
|
+
*/
|
|
171
782
|
workflowMemberCreatePost(id: Identifier, data: T.WorkflowMemberCreatePostInput, options?: RequestOptions<T.WorkflowMemberCreatePostInput>): Promise<import("axios").AxiosResponse<T.WorkflowMemberCreatePostResponse, T.WorkflowMemberCreatePostInput, {}>>;
|
|
172
|
-
/**
|
|
783
|
+
/**
|
|
784
|
+
* Performs the update operation for the workflow member capability.
|
|
785
|
+
* Calls `PUT /api/v1/workflow-members/{id}` through the shared IDP-aware Faiber client.
|
|
786
|
+
* @param id Backend path identifier `id`.
|
|
787
|
+
* @param data Typed JSON request body.
|
|
788
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
789
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
790
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_member:update.
|
|
791
|
+
*/
|
|
173
792
|
workflowMemberUpdatePut(id: Identifier, data: T.WorkflowMemberUpdatePutInput, options?: RequestOptions<T.WorkflowMemberUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WorkflowMemberUpdatePutResponse, T.WorkflowMemberUpdatePutInput, {}>>;
|
|
174
|
-
/**
|
|
793
|
+
/**
|
|
794
|
+
* Performs the by workflow operation for the workflow member capability.
|
|
795
|
+
* Calls `GET /api/v1/workflow-members/workflow/{workflow_id}` through the shared IDP-aware Faiber client.
|
|
796
|
+
* @param workflowId Backend path identifier `workflow_id`.
|
|
797
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
798
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
799
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_member:read.
|
|
800
|
+
*/
|
|
175
801
|
workflowMemberByWorkflowGet(workflowId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowMemberByWorkflowGetResponse, unknown, {}>>;
|
|
176
|
-
/**
|
|
802
|
+
/**
|
|
803
|
+
* Performs the index operation for the workflow node capability.
|
|
804
|
+
* Calls `GET /api/v1/workflow-node` through the shared IDP-aware Faiber client.
|
|
805
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
806
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
807
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
808
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_node:read, workflow_node:read_all, workflow_node:read_own.
|
|
809
|
+
*/
|
|
177
810
|
workflowNodeIndexGet(params?: T.WorkflowNodeIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowNodeIndexGetResponse, unknown, {}>>;
|
|
178
|
-
/**
|
|
811
|
+
/**
|
|
812
|
+
* Performs the destroy operation for the workflow node capability.
|
|
813
|
+
* Calls `DELETE /api/v1/workflow-node/{id}` through the shared IDP-aware Faiber client.
|
|
814
|
+
* @param id Backend path identifier `id`.
|
|
815
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
816
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
817
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_node:delete.
|
|
818
|
+
*/
|
|
179
819
|
workflowNodeDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowNodeDestroyDeleteResponse, unknown, {}>>;
|
|
180
|
-
/**
|
|
820
|
+
/**
|
|
821
|
+
* Performs the show operation for the workflow node capability.
|
|
822
|
+
* Calls `GET /api/v1/workflow-node/{id}` through the shared IDP-aware Faiber client.
|
|
823
|
+
* @param id Backend path identifier `id`.
|
|
824
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
825
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
826
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_node:read.
|
|
827
|
+
*/
|
|
181
828
|
workflowNodeShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowNodeShowGetResponse, unknown, {}>>;
|
|
182
|
-
/**
|
|
829
|
+
/**
|
|
830
|
+
* Performs the create operation for the workflow node capability.
|
|
831
|
+
* Calls `POST /api/v1/workflow-node/{id}` through the shared IDP-aware Faiber client.
|
|
832
|
+
* @param id Backend path identifier `id`.
|
|
833
|
+
* @param data Typed JSON request body.
|
|
834
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
835
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
836
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_node:create.
|
|
837
|
+
*/
|
|
183
838
|
workflowNodeCreatePost(id: Identifier, data: T.WorkflowNodeCreatePostInput, options?: RequestOptions<T.WorkflowNodeCreatePostInput>): Promise<import("axios").AxiosResponse<T.WorkflowNodeCreatePostResponse, T.WorkflowNodeCreatePostInput, {}>>;
|
|
184
|
-
/**
|
|
839
|
+
/**
|
|
840
|
+
* Performs the update operation for the workflow node capability.
|
|
841
|
+
* Calls `PUT /api/v1/workflow-node/{id}` through the shared IDP-aware Faiber client.
|
|
842
|
+
* @param id Backend path identifier `id`.
|
|
843
|
+
* @param data Typed JSON request body.
|
|
844
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
845
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
846
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_node:update.
|
|
847
|
+
*/
|
|
185
848
|
workflowNodeUpdatePut(id: Identifier, data: T.WorkflowNodeUpdatePutInput, options?: RequestOptions<T.WorkflowNodeUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WorkflowNodeUpdatePutResponse, T.WorkflowNodeUpdatePutInput, {}>>;
|
|
186
|
-
/**
|
|
849
|
+
/**
|
|
850
|
+
* Performs the destroy operation for the workflow capability.
|
|
851
|
+
* Calls `DELETE /api/v1/workflow/{id}` through the shared IDP-aware Faiber client.
|
|
852
|
+
* @param id Backend path identifier `id`.
|
|
853
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
854
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
855
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow:delete.
|
|
856
|
+
*/
|
|
187
857
|
workflowDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowDestroyDeleteResponse, unknown, {}>>;
|
|
188
|
-
/**
|
|
858
|
+
/**
|
|
859
|
+
* Performs the show operation for the workflow capability.
|
|
860
|
+
* Calls `GET /api/v1/workflow/{id}` through the shared IDP-aware Faiber client.
|
|
861
|
+
* @param id Backend path identifier `id`.
|
|
862
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
863
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
864
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow:read, workflow:read_all, workflow:read_own.
|
|
865
|
+
*/
|
|
189
866
|
workflowShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowShowGetResponse, unknown, {}>>;
|
|
190
|
-
/**
|
|
867
|
+
/**
|
|
868
|
+
* Performs the update operation for the workflow capability.
|
|
869
|
+
* Calls `PUT /api/v1/workflow/{id}` through the shared IDP-aware Faiber client.
|
|
870
|
+
* @param id Backend path identifier `id`.
|
|
871
|
+
* @param data Typed JSON request body.
|
|
872
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
873
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
874
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow:update.
|
|
875
|
+
*/
|
|
191
876
|
workflowUpdatePut(id: Identifier, data: T.WorkflowUpdatePutInput, options?: RequestOptions<T.WorkflowUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WorkflowUpdatePutResponse, T.WorkflowUpdatePutInput, {}>>;
|
|
192
|
-
/**
|
|
877
|
+
/**
|
|
878
|
+
* Performs the member based operation for the workflow capability.
|
|
879
|
+
* Calls `GET /api/v1/workflow/member-based` through the shared IDP-aware Faiber client.
|
|
880
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
881
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
882
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow:read, workflow:read_all, workflow:read_own.
|
|
883
|
+
*/
|
|
193
884
|
workflowMemberBasedGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorkflowMemberBasedGetResponse, unknown, {}>>;
|
|
194
|
-
/**
|
|
885
|
+
/**
|
|
886
|
+
* Performs the index operation for the worklog capability.
|
|
887
|
+
* Calls `GET /api/v1/worklog` through the shared IDP-aware Faiber client.
|
|
888
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
889
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
890
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
891
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: worklog:read, worklog:read_all, worklog:read_own.
|
|
892
|
+
*/
|
|
195
893
|
worklogIndexGet(params?: T.WorklogIndexGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorklogIndexGetResponse, unknown, {}>>;
|
|
196
|
-
/**
|
|
894
|
+
/**
|
|
895
|
+
* Performs the create operation for the worklog capability.
|
|
896
|
+
* Calls `POST /api/v1/worklog` through the shared IDP-aware Faiber client.
|
|
897
|
+
* @param data Typed JSON request body.
|
|
898
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
899
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
900
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: worklog:create.
|
|
901
|
+
*/
|
|
197
902
|
worklogCreatePost(data: T.WorklogCreatePostInput, options?: RequestOptions<T.WorklogCreatePostInput>): Promise<import("axios").AxiosResponse<T.WorklogCreatePostResponse, T.WorklogCreatePostInput, {}>>;
|
|
198
|
-
/**
|
|
903
|
+
/**
|
|
904
|
+
* Performs the destroy operation for the worklog capability.
|
|
905
|
+
* Calls `DELETE /api/v1/worklog/{id}` through the shared IDP-aware Faiber client.
|
|
906
|
+
* @param id Backend path identifier `id`.
|
|
907
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
908
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
909
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: worklog:delete.
|
|
910
|
+
*/
|
|
199
911
|
worklogDestroyDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorklogDestroyDeleteResponse, unknown, {}>>;
|
|
200
|
-
/**
|
|
912
|
+
/**
|
|
913
|
+
* Performs the show operation for the worklog capability.
|
|
914
|
+
* Calls `GET /api/v1/worklog/{id}` through the shared IDP-aware Faiber client.
|
|
915
|
+
* @param id Backend path identifier `id`.
|
|
916
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
917
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
918
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: worklog:read, worklog:read_all, worklog:read_own.
|
|
919
|
+
*/
|
|
201
920
|
worklogShowGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.WorklogShowGetResponse, unknown, {}>>;
|
|
202
|
-
/**
|
|
921
|
+
/**
|
|
922
|
+
* Performs the update operation for the worklog capability.
|
|
923
|
+
* Calls `PUT /api/v1/worklog/{id}` through the shared IDP-aware Faiber client.
|
|
924
|
+
* @param id Backend path identifier `id`.
|
|
925
|
+
* @param data Typed JSON request body.
|
|
926
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
927
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
928
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: worklog:update.
|
|
929
|
+
*/
|
|
203
930
|
worklogUpdatePut(id: Identifier, data: T.WorklogUpdatePutInput, options?: RequestOptions<T.WorklogUpdatePutInput>): Promise<import("axios").AxiosResponse<T.WorklogUpdatePutResponse, T.WorklogUpdatePutInput, {}>>;
|
|
204
|
-
/**
|
|
931
|
+
/**
|
|
932
|
+
* Performs the status route operation for the router capability.
|
|
933
|
+
* Calls `GET /health` through the shared IDP-aware Faiber client.
|
|
934
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
935
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
936
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
937
|
+
*/
|
|
205
938
|
routerStatusRouteGetHealth(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetHealthResponse, unknown, {}>>;
|
|
206
|
-
/**
|
|
939
|
+
/**
|
|
940
|
+
* Performs the status route operation for the router capability.
|
|
941
|
+
* Calls `GET /up` through the shared IDP-aware Faiber client.
|
|
942
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
943
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
944
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
945
|
+
*/
|
|
207
946
|
routerStatusRouteGetUp(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetUpResponse, unknown, {}>>;
|
|
208
947
|
}
|
|
209
948
|
//# sourceMappingURL=operations.d.ts.map
|