@faiber/faiber-crm 0.5.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -58
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +48 -18
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +47 -16
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +182 -685
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +227 -836
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +893 -1327
- package/dist/operations.types.d.ts.map +1 -1
- package/dist/types.d.ts +144 -166
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/operations.js
CHANGED
|
@@ -11,1131 +11,522 @@ export class CrmOperations extends ServiceApi {
|
|
|
11
11
|
return this.client.request({ ...options, method: "GET", url: `/` });
|
|
12
12
|
}
|
|
13
13
|
/**
|
|
14
|
-
* Performs the
|
|
15
|
-
* Calls `GET /api/
|
|
14
|
+
* Performs the activities operation for the api capability.
|
|
15
|
+
* Calls `GET /api/v1/activities` through the shared IDP-aware Faiber client.
|
|
16
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
16
17
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
17
18
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
18
19
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
19
20
|
*/
|
|
20
|
-
|
|
21
|
-
return this.client.request({ ...options, method: "GET", url: `/api/
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* Performs the integration docs show operation for the integration capability.
|
|
25
|
-
* Calls `GET /api/v1/integration/docs` through the shared IDP-aware Faiber client.
|
|
26
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
27
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
28
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: admin:integration:read.
|
|
29
|
-
*/
|
|
30
|
-
integrationIntegrationDocsShowGet(options) {
|
|
31
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/docs` });
|
|
21
|
+
apiActivitiesGet(params, options) {
|
|
22
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/activities`, params });
|
|
32
23
|
}
|
|
33
24
|
/**
|
|
34
|
-
* Performs the
|
|
35
|
-
* Calls `
|
|
25
|
+
* Performs the create activity operation for the api capability.
|
|
26
|
+
* Calls `POST /api/v1/activities` through the shared IDP-aware Faiber client.
|
|
27
|
+
* @param data Typed JSON request body.
|
|
36
28
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
37
29
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
38
30
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
39
31
|
*/
|
|
40
|
-
|
|
41
|
-
return this.client.request({ ...options, method: "
|
|
32
|
+
apiCreateActivityPost(data, options) {
|
|
33
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/activities`, data: data });
|
|
42
34
|
}
|
|
43
35
|
/**
|
|
44
|
-
* Performs the
|
|
45
|
-
* Calls `GET /api/v1/
|
|
36
|
+
* Performs the automation jobs operation for the api capability.
|
|
37
|
+
* Calls `GET /api/v1/automation/jobs` through the shared IDP-aware Faiber client.
|
|
46
38
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
47
39
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
48
40
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
49
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:read, lead:read_all, lead:read_own.
|
|
50
|
-
*/
|
|
51
|
-
leadIndexGet(params, options) {
|
|
52
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/lead`, params });
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* Performs the create operation for the lead capability.
|
|
56
|
-
* Calls `POST /api/v1/lead` through the shared IDP-aware Faiber client.
|
|
57
|
-
* @param data Typed JSON request body.
|
|
58
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
59
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
60
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:create.
|
|
61
|
-
*/
|
|
62
|
-
leadCreatePost(data, options) {
|
|
63
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/lead`, data: data });
|
|
64
|
-
}
|
|
65
|
-
/**
|
|
66
|
-
* Performs the index operation for the lead campaign capability.
|
|
67
|
-
* Calls `GET /api/v1/lead-campaign` through the shared IDP-aware Faiber client.
|
|
68
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
69
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
70
41
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
71
42
|
*/
|
|
72
|
-
|
|
73
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/
|
|
43
|
+
apiAutomationJobsGet(params, options) {
|
|
44
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/automation/jobs`, params });
|
|
74
45
|
}
|
|
75
46
|
/**
|
|
76
|
-
* Performs the
|
|
77
|
-
* Calls `
|
|
78
|
-
* @param data Typed JSON request body.
|
|
47
|
+
* Performs the automation webhooks operation for the api capability.
|
|
48
|
+
* Calls `GET /api/v1/automation/webhooks` through the shared IDP-aware Faiber client.
|
|
79
49
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
80
50
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
81
51
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
82
52
|
*/
|
|
83
|
-
|
|
84
|
-
return this.client.request({ ...options, method: "
|
|
53
|
+
apiAutomationWebhooksGet(options) {
|
|
54
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/automation/webhooks` });
|
|
85
55
|
}
|
|
86
56
|
/**
|
|
87
|
-
* Performs the
|
|
88
|
-
* Calls `
|
|
89
|
-
* @param
|
|
57
|
+
* Performs the board operation for the api capability.
|
|
58
|
+
* Calls `GET /api/v1/boards/{entity_type}/{pipeline_id}` through the shared IDP-aware Faiber client.
|
|
59
|
+
* @param entityType Backend path identifier `entity_type`.
|
|
60
|
+
* @param pipelineId Backend path identifier `pipeline_id`.
|
|
90
61
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
91
62
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
92
63
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
93
64
|
*/
|
|
94
|
-
|
|
95
|
-
return this.client.request({ ...options, method: "
|
|
65
|
+
apiBoardGet(entityType, pipelineId, options) {
|
|
66
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/boards/${encodeURIComponent(entityType)}/${encodeURIComponent(pipelineId)}` });
|
|
96
67
|
}
|
|
97
68
|
/**
|
|
98
|
-
* Performs the
|
|
99
|
-
* Calls `GET /api/v1/
|
|
100
|
-
* @param id Backend path identifier `id`.
|
|
69
|
+
* Performs the campaigns operation for the api capability.
|
|
70
|
+
* Calls `GET /api/v1/campaigns` through the shared IDP-aware Faiber client.
|
|
101
71
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
102
72
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
103
73
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
104
74
|
*/
|
|
105
|
-
|
|
106
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/
|
|
75
|
+
apiCampaignsGet(options) {
|
|
76
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/campaigns` });
|
|
107
77
|
}
|
|
108
78
|
/**
|
|
109
|
-
* Performs the
|
|
110
|
-
* Calls `
|
|
111
|
-
* @param id Backend path identifier `id`.
|
|
79
|
+
* Performs the create campaign operation for the api capability.
|
|
80
|
+
* Calls `POST /api/v1/campaigns` through the shared IDP-aware Faiber client.
|
|
112
81
|
* @param data Typed JSON request body.
|
|
113
82
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
114
83
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
115
84
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
116
85
|
*/
|
|
117
|
-
|
|
118
|
-
return this.client.request({ ...options, method: "
|
|
86
|
+
apiCreateCampaignPost(data, options) {
|
|
87
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/campaigns`, data: data });
|
|
119
88
|
}
|
|
120
89
|
/**
|
|
121
|
-
* Performs the
|
|
122
|
-
* Calls `GET /api/v1/
|
|
90
|
+
* Performs the companies operation for the api capability.
|
|
91
|
+
* Calls `GET /api/v1/companies` through the shared IDP-aware Faiber client.
|
|
92
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
123
93
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
124
94
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
125
95
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
126
96
|
*/
|
|
127
|
-
|
|
128
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/
|
|
97
|
+
apiCompaniesGet(params, options) {
|
|
98
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/companies`, params });
|
|
129
99
|
}
|
|
130
100
|
/**
|
|
131
|
-
* Performs the create operation for the
|
|
132
|
-
* Calls `POST /api/v1/
|
|
101
|
+
* Performs the create company operation for the api capability.
|
|
102
|
+
* Calls `POST /api/v1/companies` through the shared IDP-aware Faiber client.
|
|
133
103
|
* @param data Typed JSON request body.
|
|
134
104
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
135
105
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
136
106
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
137
107
|
*/
|
|
138
|
-
|
|
139
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/
|
|
140
|
-
}
|
|
141
|
-
/**
|
|
142
|
-
* Performs the destroy operation for the lead source capability.
|
|
143
|
-
* Calls `DELETE /api/v1/lead-source/{id}` through the shared IDP-aware Faiber client.
|
|
144
|
-
* @param id Backend path identifier `id`.
|
|
145
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
146
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
147
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
148
|
-
*/
|
|
149
|
-
leadSourceDestroyDelete(id, options) {
|
|
150
|
-
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/lead-source/${encodeURIComponent(id)}` });
|
|
108
|
+
apiCreateCompanyPost(data, options) {
|
|
109
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/companies`, data: data });
|
|
151
110
|
}
|
|
152
111
|
/**
|
|
153
|
-
* Performs the
|
|
154
|
-
* Calls `GET /api/v1/
|
|
112
|
+
* Performs the company operation for the api capability.
|
|
113
|
+
* Calls `GET /api/v1/companies/{id}` through the shared IDP-aware Faiber client.
|
|
155
114
|
* @param id Backend path identifier `id`.
|
|
156
115
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
157
116
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
158
117
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
159
118
|
*/
|
|
160
|
-
|
|
161
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/
|
|
119
|
+
apiCompanyGet(id, options) {
|
|
120
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/companies/${encodeURIComponent(id)}` });
|
|
162
121
|
}
|
|
163
122
|
/**
|
|
164
|
-
* Performs the update operation for the
|
|
165
|
-
* Calls `
|
|
123
|
+
* Performs the update company operation for the api capability.
|
|
124
|
+
* Calls `PATCH /api/v1/companies/{id}` through the shared IDP-aware Faiber client.
|
|
166
125
|
* @param id Backend path identifier `id`.
|
|
167
126
|
* @param data Typed JSON request body.
|
|
168
127
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
169
128
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
170
129
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
171
130
|
*/
|
|
172
|
-
|
|
173
|
-
return this.client.request({ ...options, method: "
|
|
174
|
-
}
|
|
175
|
-
/**
|
|
176
|
-
* Performs the destroy operation for the lead capability.
|
|
177
|
-
* Calls `DELETE /api/v1/lead/{id}` through the shared IDP-aware Faiber client.
|
|
178
|
-
* @param id Backend path identifier `id`.
|
|
179
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
180
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
181
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:delete.
|
|
182
|
-
*/
|
|
183
|
-
leadDestroyDelete(id, options) {
|
|
184
|
-
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/lead/${encodeURIComponent(id)}` });
|
|
185
|
-
}
|
|
186
|
-
/**
|
|
187
|
-
* Performs the show operation for the lead capability.
|
|
188
|
-
* Calls `GET /api/v1/lead/{id}` through the shared IDP-aware Faiber client.
|
|
189
|
-
* @param id Backend path identifier `id`.
|
|
190
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
191
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
192
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:read, lead:read_all, lead:read_own.
|
|
193
|
-
*/
|
|
194
|
-
leadShowGet(id, options) {
|
|
195
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/lead/${encodeURIComponent(id)}` });
|
|
196
|
-
}
|
|
197
|
-
/**
|
|
198
|
-
* Performs the update operation for the lead capability.
|
|
199
|
-
* Calls `PUT /api/v1/lead/{id}` through the shared IDP-aware Faiber client.
|
|
200
|
-
* @param id Backend path identifier `id`.
|
|
201
|
-
* @param data Typed JSON request body.
|
|
202
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
203
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
204
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:update.
|
|
205
|
-
*/
|
|
206
|
-
leadUpdatePut(id, data, options) {
|
|
207
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/lead/${encodeURIComponent(id)}`, data: data });
|
|
208
|
-
}
|
|
209
|
-
/**
|
|
210
|
-
* Performs the check status operation for the lead capability.
|
|
211
|
-
* Calls `GET /api/v1/lead/{id}/check-status` through the shared IDP-aware Faiber client.
|
|
212
|
-
* @param id Backend path identifier `id`.
|
|
213
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
214
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
215
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:update.
|
|
216
|
-
*/
|
|
217
|
-
leadCheckStatusGet(id, options) {
|
|
218
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/lead/${encodeURIComponent(id)}/check-status` });
|
|
219
|
-
}
|
|
220
|
-
/**
|
|
221
|
-
* Performs the list logs operation for the lead capability.
|
|
222
|
-
* Calls `GET /api/v1/lead/{id}/log` through the shared IDP-aware Faiber client.
|
|
223
|
-
* @param id Backend path identifier `id`.
|
|
224
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
225
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
226
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_log:read.
|
|
227
|
-
*/
|
|
228
|
-
leadListLogsGet(id, options) {
|
|
229
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/lead/${encodeURIComponent(id)}/log` });
|
|
230
|
-
}
|
|
231
|
-
/**
|
|
232
|
-
* Performs the create log operation for the lead capability.
|
|
233
|
-
* Calls `POST /api/v1/lead/{id}/log` 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_log:create.
|
|
239
|
-
*/
|
|
240
|
-
leadCreateLogPost(id, data, options) {
|
|
241
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/lead/${encodeURIComponent(id)}/log`, data: data });
|
|
242
|
-
}
|
|
243
|
-
/**
|
|
244
|
-
* Performs the destroy log operation for the lead capability.
|
|
245
|
-
* Calls `DELETE /api/v1/lead/{id}/log/{log_id}` through the shared IDP-aware Faiber client.
|
|
246
|
-
* @param id Backend path identifier `id`.
|
|
247
|
-
* @param logId Backend path identifier `log_id`.
|
|
248
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
249
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
250
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_log:delete.
|
|
251
|
-
*/
|
|
252
|
-
leadDestroyLogDelete(id, logId, options) {
|
|
253
|
-
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/lead/${encodeURIComponent(id)}/log/${encodeURIComponent(logId)}` });
|
|
254
|
-
}
|
|
255
|
-
/**
|
|
256
|
-
* Performs the show log operation for the lead capability.
|
|
257
|
-
* Calls `GET /api/v1/lead/{id}/log/{log_id}` through the shared IDP-aware Faiber client.
|
|
258
|
-
* @param id Backend path identifier `id`.
|
|
259
|
-
* @param logId Backend path identifier `log_id`.
|
|
260
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
261
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
262
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_log:read.
|
|
263
|
-
*/
|
|
264
|
-
leadShowLogGet(id, logId, options) {
|
|
265
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/lead/${encodeURIComponent(id)}/log/${encodeURIComponent(logId)}` });
|
|
266
|
-
}
|
|
267
|
-
/**
|
|
268
|
-
* Performs the update log operation for the lead capability.
|
|
269
|
-
* Calls `PUT /api/v1/lead/{id}/log/{log_id}` through the shared IDP-aware Faiber client.
|
|
270
|
-
* @param id Backend path identifier `id`.
|
|
271
|
-
* @param logId Backend path identifier `log_id`.
|
|
272
|
-
* @param data Typed JSON request body.
|
|
273
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
274
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
275
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_log:update.
|
|
276
|
-
*/
|
|
277
|
-
leadUpdateLogPut(id, logId, data, options) {
|
|
278
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/lead/${encodeURIComponent(id)}/log/${encodeURIComponent(logId)}`, data: data });
|
|
279
|
-
}
|
|
280
|
-
/**
|
|
281
|
-
* Performs the move to done operation for the lead capability.
|
|
282
|
-
* Calls `PUT /api/v1/lead/{id}/move-to-done` through the shared IDP-aware Faiber client.
|
|
283
|
-
* @param id Backend path identifier `id`.
|
|
284
|
-
* @param data Typed JSON request body.
|
|
285
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
286
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
287
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:update.
|
|
288
|
-
*/
|
|
289
|
-
leadMoveToDonePut(id, data, options) {
|
|
290
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/lead/${encodeURIComponent(id)}/move-to-done`, data: data });
|
|
291
|
-
}
|
|
292
|
-
/**
|
|
293
|
-
* Performs the list touches operation for the lead capability.
|
|
294
|
-
* Calls `GET /api/v1/lead/{id}/touch` through the shared IDP-aware Faiber client.
|
|
295
|
-
* @param id Backend path identifier `id`.
|
|
296
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
297
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
298
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_touch:read.
|
|
299
|
-
*/
|
|
300
|
-
leadListTouchesGet(id, options) {
|
|
301
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/lead/${encodeURIComponent(id)}/touch` });
|
|
302
|
-
}
|
|
303
|
-
/**
|
|
304
|
-
* Performs the create touch operation for the lead capability.
|
|
305
|
-
* Calls `POST /api/v1/lead/{id}/touch` through the shared IDP-aware Faiber client.
|
|
306
|
-
* @param id Backend path identifier `id`.
|
|
307
|
-
* @param data Typed JSON request body.
|
|
308
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
309
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
310
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_touch:create.
|
|
311
|
-
*/
|
|
312
|
-
leadCreateTouchPost(id, data, options) {
|
|
313
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/lead/${encodeURIComponent(id)}/touch`, data: data });
|
|
314
|
-
}
|
|
315
|
-
/**
|
|
316
|
-
* Performs the destroy touch operation for the lead capability.
|
|
317
|
-
* Calls `DELETE /api/v1/lead/{id}/touch/{touch_id}` through the shared IDP-aware Faiber client.
|
|
318
|
-
* @param id Backend path identifier `id`.
|
|
319
|
-
* @param touchId Backend path identifier `touch_id`.
|
|
320
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
321
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
322
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_touch:delete.
|
|
323
|
-
*/
|
|
324
|
-
leadDestroyTouchDelete(id, touchId, options) {
|
|
325
|
-
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/lead/${encodeURIComponent(id)}/touch/${encodeURIComponent(touchId)}` });
|
|
326
|
-
}
|
|
327
|
-
/**
|
|
328
|
-
* Performs the show touch operation for the lead capability.
|
|
329
|
-
* Calls `GET /api/v1/lead/{id}/touch/{touch_id}` through the shared IDP-aware Faiber client.
|
|
330
|
-
* @param id Backend path identifier `id`.
|
|
331
|
-
* @param touchId Backend path identifier `touch_id`.
|
|
332
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
333
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
334
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead_touch:read.
|
|
335
|
-
*/
|
|
336
|
-
leadShowTouchGet(id, touchId, options) {
|
|
337
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/lead/${encodeURIComponent(id)}/touch/${encodeURIComponent(touchId)}` });
|
|
131
|
+
apiUpdateCompanyPatch(id, data, options) {
|
|
132
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/companies/${encodeURIComponent(id)}`, data: data });
|
|
338
133
|
}
|
|
339
134
|
/**
|
|
340
|
-
* Performs the
|
|
341
|
-
* Calls `
|
|
342
|
-
* @param id Backend path identifier `id`.
|
|
343
|
-
* @param touchId Backend path identifier `touch_id`.
|
|
344
|
-
* @param data Typed JSON request body.
|
|
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_touch:update.
|
|
348
|
-
*/
|
|
349
|
-
leadUpdateTouchPut(id, touchId, data, options) {
|
|
350
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/lead/${encodeURIComponent(id)}/touch/${encodeURIComponent(touchId)}`, data: data });
|
|
351
|
-
}
|
|
352
|
-
/**
|
|
353
|
-
* Performs the create developer operation for the lead capability.
|
|
354
|
-
* Calls `POST /api/v1/lead/developer` through the shared IDP-aware Faiber client.
|
|
355
|
-
* @param data Typed JSON request body.
|
|
356
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
357
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
358
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:create.
|
|
359
|
-
*/
|
|
360
|
-
leadCreateDeveloperPost(data, options) {
|
|
361
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/lead/developer`, data: data });
|
|
362
|
-
}
|
|
363
|
-
/**
|
|
364
|
-
* Performs the developer ready operation for the lead capability.
|
|
365
|
-
* Calls `GET /api/v1/lead/developer/ready` through the shared IDP-aware Faiber client.
|
|
366
|
-
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
367
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
368
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
369
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:read, lead:read_all, lead:read_own.
|
|
370
|
-
*/
|
|
371
|
-
leadDeveloperReadyGet(params, options) {
|
|
372
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/lead/developer/ready`, params });
|
|
373
|
-
}
|
|
374
|
-
/**
|
|
375
|
-
* Performs the by foreign key operation for the lead capability.
|
|
376
|
-
* Calls `GET /api/v1/lead/foreign_key` through the shared IDP-aware Faiber client.
|
|
135
|
+
* Performs the contacts operation for the api capability.
|
|
136
|
+
* Calls `GET /api/v1/contacts` through the shared IDP-aware Faiber client.
|
|
377
137
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
378
138
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
379
139
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
380
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
381
|
-
*/
|
|
382
|
-
leadByForeignKeyGet(params, options) {
|
|
383
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/lead/foreign_key`, params });
|
|
384
|
-
}
|
|
385
|
-
/**
|
|
386
|
-
* Performs the destroy by foreign key operation for the lead capability.
|
|
387
|
-
* Calls `DELETE /api/v1/lead/foreign_key/{foreign_key}/profile_id/{profile_id}/flags/{flags}` through the shared IDP-aware Faiber client.
|
|
388
|
-
* @param foreignKey Backend path identifier `foreign_key`.
|
|
389
|
-
* @param profileId Backend path identifier `profile_id`.
|
|
390
|
-
* @param flags Backend path identifier `flags`.
|
|
391
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
392
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
393
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:delete.
|
|
394
|
-
*/
|
|
395
|
-
leadDestroyByForeignKeyDelete(foreignKey, profileId, flags, options) {
|
|
396
|
-
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/lead/foreign_key/${encodeURIComponent(foreignKey)}/profile_id/${encodeURIComponent(profileId)}/flags/${encodeURIComponent(flags)}` });
|
|
397
|
-
}
|
|
398
|
-
/**
|
|
399
|
-
* Performs the update by foreign key operation for the lead capability.
|
|
400
|
-
* Calls `PUT /api/v1/lead/foreign_key/{foreign_key}/profile_id/{profile_id}/flags/{flags}` through the shared IDP-aware Faiber client.
|
|
401
|
-
* @param foreignKey Backend path identifier `foreign_key`.
|
|
402
|
-
* @param profileId Backend path identifier `profile_id`.
|
|
403
|
-
* @param flags Backend path identifier `flags`.
|
|
404
|
-
* @param data Typed JSON request body.
|
|
405
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
406
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
407
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lead:update.
|
|
408
|
-
*/
|
|
409
|
-
leadUpdateByForeignKeyPut(foreignKey, profileId, flags, data, options) {
|
|
410
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/lead/foreign_key/${encodeURIComponent(foreignKey)}/profile_id/${encodeURIComponent(profileId)}/flags/${encodeURIComponent(flags)}`, data: data });
|
|
411
|
-
}
|
|
412
|
-
/**
|
|
413
|
-
* Performs the light operation for the lead capability.
|
|
414
|
-
* Calls `GET /api/v1/lead/light` through the shared IDP-aware Faiber client.
|
|
415
|
-
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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: lead:read, lead:read_all, lead:read_own.
|
|
419
|
-
*/
|
|
420
|
-
leadLightGet(params, options) {
|
|
421
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/lead/light`, params });
|
|
422
|
-
}
|
|
423
|
-
/**
|
|
424
|
-
* Performs the index operation for the reminder capability.
|
|
425
|
-
* Calls `GET /api/v1/reminder` through the shared IDP-aware Faiber client.
|
|
426
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
427
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
428
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: reminder:read.
|
|
140
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
429
141
|
*/
|
|
430
|
-
|
|
431
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/
|
|
142
|
+
apiContactsGet(params, options) {
|
|
143
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/contacts`, params });
|
|
432
144
|
}
|
|
433
145
|
/**
|
|
434
|
-
* Performs the create operation for the
|
|
435
|
-
* Calls `POST /api/v1/
|
|
146
|
+
* Performs the create contact operation for the api capability.
|
|
147
|
+
* Calls `POST /api/v1/contacts` through the shared IDP-aware Faiber client.
|
|
436
148
|
* @param data Typed JSON request body.
|
|
437
149
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
438
150
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
439
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
151
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
440
152
|
*/
|
|
441
|
-
|
|
442
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/
|
|
153
|
+
apiCreateContactPost(data, options) {
|
|
154
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/contacts`, data: data });
|
|
443
155
|
}
|
|
444
156
|
/**
|
|
445
|
-
* Performs the
|
|
446
|
-
* Calls `
|
|
157
|
+
* Performs the contact operation for the api capability.
|
|
158
|
+
* Calls `GET /api/v1/contacts/{id}` through the shared IDP-aware Faiber client.
|
|
447
159
|
* @param id Backend path identifier `id`.
|
|
448
160
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
449
161
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
450
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
162
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
451
163
|
*/
|
|
452
|
-
|
|
453
|
-
return this.client.request({ ...options, method: "
|
|
164
|
+
apiContactGet(id, options) {
|
|
165
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/contacts/${encodeURIComponent(id)}` });
|
|
454
166
|
}
|
|
455
167
|
/**
|
|
456
|
-
* Performs the update operation for the
|
|
457
|
-
* Calls `
|
|
168
|
+
* Performs the update contact operation for the api capability.
|
|
169
|
+
* Calls `PATCH /api/v1/contacts/{id}` through the shared IDP-aware Faiber client.
|
|
458
170
|
* @param id Backend path identifier `id`.
|
|
459
171
|
* @param data Typed JSON request body.
|
|
460
172
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
461
173
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
462
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
463
|
-
*/
|
|
464
|
-
reminderUpdatePut(id, data, options) {
|
|
465
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/reminder/${encodeURIComponent(id)}`, data: data });
|
|
466
|
-
}
|
|
467
|
-
/**
|
|
468
|
-
* Performs the destroy by lead operation for the reminder capability.
|
|
469
|
-
* Calls `DELETE /api/v1/reminder/lead_id/{lead_id}` through the shared IDP-aware Faiber client.
|
|
470
|
-
* @param leadId Backend path identifier `lead_id`.
|
|
471
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
472
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
473
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: reminder:delete.
|
|
174
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
474
175
|
*/
|
|
475
|
-
|
|
476
|
-
return this.client.request({ ...options, method: "
|
|
176
|
+
apiUpdateContactPatch(id, data, options) {
|
|
177
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/contacts/${encodeURIComponent(id)}`, data: data });
|
|
477
178
|
}
|
|
478
179
|
/**
|
|
479
|
-
* Performs the
|
|
480
|
-
* Calls `GET /api/v1/
|
|
180
|
+
* Performs the context operation for the api capability.
|
|
181
|
+
* Calls `GET /api/v1/context` through the shared IDP-aware Faiber client.
|
|
481
182
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
482
183
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
483
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
184
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
484
185
|
*/
|
|
485
|
-
|
|
486
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/
|
|
186
|
+
apiContextGet(options) {
|
|
187
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/context` });
|
|
487
188
|
}
|
|
488
189
|
/**
|
|
489
|
-
* Performs the
|
|
490
|
-
* Calls `GET /api/v1/
|
|
190
|
+
* Performs the deals operation for the api capability.
|
|
191
|
+
* Calls `GET /api/v1/deals` through the shared IDP-aware Faiber client.
|
|
491
192
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
492
193
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
493
194
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
494
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
495
|
-
*/
|
|
496
|
-
sosIndexGet(params, options) {
|
|
497
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/sos`, params });
|
|
498
|
-
}
|
|
499
|
-
/**
|
|
500
|
-
* Performs the create operation for the sos capability.
|
|
501
|
-
* Calls `POST /api/v1/sos` through the shared IDP-aware Faiber client.
|
|
502
|
-
* @param data Typed JSON request body.
|
|
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:create.
|
|
506
|
-
*/
|
|
507
|
-
sosCreatePost(data, options) {
|
|
508
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/sos`, data: data });
|
|
509
|
-
}
|
|
510
|
-
/**
|
|
511
|
-
* Performs the destroy operation for the sos capability.
|
|
512
|
-
* Calls `DELETE /api/v1/sos/{id}` through the shared IDP-aware Faiber client.
|
|
513
|
-
* @param id Backend path identifier `id`.
|
|
514
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
515
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
516
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos:delete.
|
|
517
|
-
*/
|
|
518
|
-
sosDestroyDelete(id, options) {
|
|
519
|
-
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/sos/${encodeURIComponent(id)}` });
|
|
520
|
-
}
|
|
521
|
-
/**
|
|
522
|
-
* Performs the show operation for the sos capability.
|
|
523
|
-
* Calls `GET /api/v1/sos/{id}` through the shared IDP-aware Faiber client.
|
|
524
|
-
* @param id Backend path identifier `id`.
|
|
525
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
526
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
527
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos:read.
|
|
528
|
-
*/
|
|
529
|
-
sosShowGet(id, options) {
|
|
530
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/sos/${encodeURIComponent(id)}` });
|
|
531
|
-
}
|
|
532
|
-
/**
|
|
533
|
-
* Performs the update operation for the sos capability.
|
|
534
|
-
* Calls `PUT /api/v1/sos/{id}` through the shared IDP-aware Faiber client.
|
|
535
|
-
* @param id Backend path identifier `id`.
|
|
536
|
-
* @param data Typed JSON request body.
|
|
537
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
538
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
539
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos:update.
|
|
540
|
-
*/
|
|
541
|
-
sosUpdatePut(id, data, options) {
|
|
542
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/sos/${encodeURIComponent(id)}`, data: data });
|
|
543
|
-
}
|
|
544
|
-
/**
|
|
545
|
-
* Performs the list logs operation for the sos capability.
|
|
546
|
-
* Calls `GET /api/v1/sos/{id}/log` through the shared IDP-aware Faiber client.
|
|
547
|
-
* @param id Backend path identifier `id`.
|
|
548
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
549
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
550
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_log:read.
|
|
195
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
551
196
|
*/
|
|
552
|
-
|
|
553
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/
|
|
197
|
+
apiDealsGet(params, options) {
|
|
198
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/deals`, params });
|
|
554
199
|
}
|
|
555
200
|
/**
|
|
556
|
-
* Performs the create
|
|
557
|
-
* Calls `POST /api/v1/
|
|
558
|
-
* @param id Backend path identifier `id`.
|
|
201
|
+
* Performs the create deal operation for the api capability.
|
|
202
|
+
* Calls `POST /api/v1/deals` through the shared IDP-aware Faiber client.
|
|
559
203
|
* @param data Typed JSON request body.
|
|
560
204
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
561
205
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
562
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
563
|
-
*/
|
|
564
|
-
sosCreateLogPost(id, data, options) {
|
|
565
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/sos/${encodeURIComponent(id)}/log`, data: data });
|
|
566
|
-
}
|
|
567
|
-
/**
|
|
568
|
-
* Performs the destroy log operation for the sos capability.
|
|
569
|
-
* Calls `DELETE /api/v1/sos/{id}/log/{log_id}` through the shared IDP-aware Faiber client.
|
|
570
|
-
* @param id Backend path identifier `id`.
|
|
571
|
-
* @param logId Backend path identifier `log_id`.
|
|
572
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
573
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
574
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_log:delete.
|
|
206
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
575
207
|
*/
|
|
576
|
-
|
|
577
|
-
return this.client.request({ ...options, method: "
|
|
208
|
+
apiCreateDealPost(data, options) {
|
|
209
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/deals`, data: data });
|
|
578
210
|
}
|
|
579
211
|
/**
|
|
580
|
-
* Performs the
|
|
581
|
-
* Calls `GET /api/v1/
|
|
212
|
+
* Performs the deal operation for the api capability.
|
|
213
|
+
* Calls `GET /api/v1/deals/{id}` through the shared IDP-aware Faiber client.
|
|
582
214
|
* @param id Backend path identifier `id`.
|
|
583
|
-
* @param logId Backend path identifier `log_id`.
|
|
584
215
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
585
216
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
586
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
217
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
587
218
|
*/
|
|
588
|
-
|
|
589
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/
|
|
219
|
+
apiDealGet(id, options) {
|
|
220
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/deals/${encodeURIComponent(id)}` });
|
|
590
221
|
}
|
|
591
222
|
/**
|
|
592
|
-
* Performs the update
|
|
593
|
-
* Calls `
|
|
223
|
+
* Performs the update deal operation for the api capability.
|
|
224
|
+
* Calls `PATCH /api/v1/deals/{id}` through the shared IDP-aware Faiber client.
|
|
594
225
|
* @param id Backend path identifier `id`.
|
|
595
|
-
* @param logId Backend path identifier `log_id`.
|
|
596
226
|
* @param data Typed JSON request body.
|
|
597
227
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
598
228
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
599
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
600
|
-
*/
|
|
601
|
-
sosUpdateLogPut(id, logId, data, options) {
|
|
602
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/sos/${encodeURIComponent(id)}/log/${encodeURIComponent(logId)}`, data: data });
|
|
603
|
-
}
|
|
604
|
-
/**
|
|
605
|
-
* Performs the list touches operation for the sos capability.
|
|
606
|
-
* Calls `GET /api/v1/sos/{id}/touch` through the shared IDP-aware Faiber client.
|
|
607
|
-
* @param id Backend path identifier `id`.
|
|
608
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
609
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
610
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_touch:read.
|
|
229
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
611
230
|
*/
|
|
612
|
-
|
|
613
|
-
return this.client.request({ ...options, method: "
|
|
231
|
+
apiUpdateDealPatch(id, data, options) {
|
|
232
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/deals/${encodeURIComponent(id)}`, data: data });
|
|
614
233
|
}
|
|
615
234
|
/**
|
|
616
|
-
* Performs the
|
|
617
|
-
* Calls `
|
|
235
|
+
* Performs the assign deal operation for the api capability.
|
|
236
|
+
* Calls `PATCH /api/v1/deals/{id}/assignment` through the shared IDP-aware Faiber client.
|
|
618
237
|
* @param id Backend path identifier `id`.
|
|
619
238
|
* @param data Typed JSON request body.
|
|
620
239
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
621
240
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
622
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
623
|
-
*/
|
|
624
|
-
sosCreateTouchPost(id, data, options) {
|
|
625
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/sos/${encodeURIComponent(id)}/touch`, data: data });
|
|
626
|
-
}
|
|
627
|
-
/**
|
|
628
|
-
* Performs the destroy touch operation for the sos capability.
|
|
629
|
-
* Calls `DELETE /api/v1/sos/{id}/touch/{touch_id}` through the shared IDP-aware Faiber client.
|
|
630
|
-
* @param id Backend path identifier `id`.
|
|
631
|
-
* @param touchId Backend path identifier `touch_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: sos_touch:delete.
|
|
635
|
-
*/
|
|
636
|
-
sosDestroyTouchDelete(id, touchId, options) {
|
|
637
|
-
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/sos/${encodeURIComponent(id)}/touch/${encodeURIComponent(touchId)}` });
|
|
638
|
-
}
|
|
639
|
-
/**
|
|
640
|
-
* Performs the show touch operation for the sos capability.
|
|
641
|
-
* Calls `GET /api/v1/sos/{id}/touch/{touch_id}` through the shared IDP-aware Faiber client.
|
|
642
|
-
* @param id Backend path identifier `id`.
|
|
643
|
-
* @param touchId Backend path identifier `touch_id`.
|
|
644
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
645
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
646
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos_touch:read.
|
|
241
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
647
242
|
*/
|
|
648
|
-
|
|
649
|
-
return this.client.request({ ...options, method: "
|
|
243
|
+
apiAssignDealPatch(id, data, options) {
|
|
244
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/deals/${encodeURIComponent(id)}/assignment`, data: data });
|
|
650
245
|
}
|
|
651
246
|
/**
|
|
652
|
-
* Performs the
|
|
653
|
-
* Calls `
|
|
247
|
+
* Performs the move deal stage operation for the api capability.
|
|
248
|
+
* Calls `PATCH /api/v1/deals/{id}/stage` through the shared IDP-aware Faiber client.
|
|
654
249
|
* @param id Backend path identifier `id`.
|
|
655
|
-
* @param touchId Backend path identifier `touch_id`.
|
|
656
250
|
* @param data Typed JSON request body.
|
|
657
251
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
658
252
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
659
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
660
|
-
*/
|
|
661
|
-
sosUpdateTouchPut(id, touchId, data, options) {
|
|
662
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/sos/${encodeURIComponent(id)}/touch/${encodeURIComponent(touchId)}`, data: data });
|
|
663
|
-
}
|
|
664
|
-
/**
|
|
665
|
-
* Performs the all operation for the sos capability.
|
|
666
|
-
* Calls `GET /api/v1/sos/all` through the shared IDP-aware Faiber client.
|
|
667
|
-
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
668
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
669
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
670
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: sos:read, sos:read_all, sos:read_own.
|
|
671
|
-
*/
|
|
672
|
-
sosAllGet(params, options) {
|
|
673
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/sos/all`, params });
|
|
674
|
-
}
|
|
675
|
-
/**
|
|
676
|
-
* Performs the exit assignee route operation for the sos capability.
|
|
677
|
-
* Calls `POST /api/v1/sos/exit_assignee/{profile_id}` through the shared IDP-aware Faiber client.
|
|
678
|
-
* @param profileId Backend path identifier `profile_id`.
|
|
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: sos:update, sos:update_all, sos:update_own.
|
|
682
|
-
*/
|
|
683
|
-
sosExitAssigneeRoutePost(profileId, options) {
|
|
684
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/sos/exit_assignee/${encodeURIComponent(profileId)}` });
|
|
685
|
-
}
|
|
686
|
-
/**
|
|
687
|
-
* Performs the daily operation for the stats capability.
|
|
688
|
-
* Calls `GET /api/v1/stats/daily` through the shared IDP-aware Faiber client.
|
|
689
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
690
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
691
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: stats:read.
|
|
692
|
-
*/
|
|
693
|
-
statsDailyGet(options) {
|
|
694
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/stats/daily` });
|
|
695
|
-
}
|
|
696
|
-
/**
|
|
697
|
-
* Performs the lead operation for the stats capability.
|
|
698
|
-
* Calls `GET /api/v1/stats/lead` through the shared IDP-aware Faiber client.
|
|
699
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
700
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
701
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: stats:read, stats:read_all, stats:read_own.
|
|
702
|
-
*/
|
|
703
|
-
statsLeadGet(options) {
|
|
704
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/stats/lead` });
|
|
705
|
-
}
|
|
706
|
-
/**
|
|
707
|
-
* Performs the index operation for the team capability.
|
|
708
|
-
* Calls `GET /api/v1/team` through the shared IDP-aware Faiber client.
|
|
709
|
-
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
710
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
711
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
712
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team:read.
|
|
713
|
-
*/
|
|
714
|
-
teamIndexGet(params, options) {
|
|
715
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/team`, params });
|
|
716
|
-
}
|
|
717
|
-
/**
|
|
718
|
-
* Performs the create operation for the team capability.
|
|
719
|
-
* Calls `POST /api/v1/team` through the shared IDP-aware Faiber client.
|
|
720
|
-
* @param data Typed JSON request body.
|
|
721
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
722
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
723
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team:create.
|
|
253
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
724
254
|
*/
|
|
725
|
-
|
|
726
|
-
return this.client.request({ ...options, method: "
|
|
255
|
+
apiMoveDealStagePatch(id, data, options) {
|
|
256
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/deals/${encodeURIComponent(id)}/stage`, data: data });
|
|
727
257
|
}
|
|
728
258
|
/**
|
|
729
|
-
* Performs the
|
|
730
|
-
* Calls `GET /api/v1/
|
|
259
|
+
* Performs the leads operation for the api capability.
|
|
260
|
+
* Calls `GET /api/v1/leads` through the shared IDP-aware Faiber client.
|
|
731
261
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
732
262
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
733
263
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
734
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
264
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
735
265
|
*/
|
|
736
|
-
|
|
737
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/
|
|
266
|
+
apiLeadsGet(params, options) {
|
|
267
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/leads`, params });
|
|
738
268
|
}
|
|
739
269
|
/**
|
|
740
|
-
* Performs the create operation for the
|
|
741
|
-
* Calls `POST /api/v1/
|
|
270
|
+
* Performs the create lead operation for the api capability.
|
|
271
|
+
* Calls `POST /api/v1/leads` through the shared IDP-aware Faiber client.
|
|
742
272
|
* @param data Typed JSON request body.
|
|
743
273
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
744
274
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
745
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
746
|
-
*/
|
|
747
|
-
teamUserCreatePost(data, options) {
|
|
748
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/team-users`, data: data });
|
|
749
|
-
}
|
|
750
|
-
/**
|
|
751
|
-
* Performs the destroy operation for the team user capability.
|
|
752
|
-
* Calls `DELETE /api/v1/team-users/{id}` through the shared IDP-aware Faiber client.
|
|
753
|
-
* @param id Backend path identifier `id`.
|
|
754
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
755
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
756
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team_user:delete.
|
|
275
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
757
276
|
*/
|
|
758
|
-
|
|
759
|
-
return this.client.request({ ...options, method: "
|
|
277
|
+
apiCreateLeadPost(data, options) {
|
|
278
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/leads`, data: data });
|
|
760
279
|
}
|
|
761
280
|
/**
|
|
762
|
-
* Performs the
|
|
763
|
-
* Calls `GET /api/v1/
|
|
281
|
+
* Performs the lead operation for the api capability.
|
|
282
|
+
* Calls `GET /api/v1/leads/{id}` through the shared IDP-aware Faiber client.
|
|
764
283
|
* @param id Backend path identifier `id`.
|
|
765
284
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
766
285
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
767
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
286
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
768
287
|
*/
|
|
769
|
-
|
|
770
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/
|
|
288
|
+
apiLeadGet(id, options) {
|
|
289
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/leads/${encodeURIComponent(id)}` });
|
|
771
290
|
}
|
|
772
291
|
/**
|
|
773
|
-
* Performs the update operation for the
|
|
774
|
-
* Calls `
|
|
292
|
+
* Performs the update lead operation for the api capability.
|
|
293
|
+
* Calls `PATCH /api/v1/leads/{id}` through the shared IDP-aware Faiber client.
|
|
775
294
|
* @param id Backend path identifier `id`.
|
|
776
295
|
* @param data Typed JSON request body.
|
|
777
296
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
778
297
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
779
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
780
|
-
*/
|
|
781
|
-
teamUserUpdatePut(id, data, options) {
|
|
782
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/team-users/${encodeURIComponent(id)}`, data: data });
|
|
783
|
-
}
|
|
784
|
-
/**
|
|
785
|
-
* Performs the multi profiles operation for the team user capability.
|
|
786
|
-
* Calls `POST /api/v1/team-users/multi-profiles` through the shared IDP-aware Faiber client.
|
|
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: team_user:create.
|
|
791
|
-
*/
|
|
792
|
-
teamUserMultiProfilesPost(data, options) {
|
|
793
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/team-users/multi-profiles`, data: data });
|
|
794
|
-
}
|
|
795
|
-
/**
|
|
796
|
-
* Performs the destroy operation for the team capability.
|
|
797
|
-
* Calls `DELETE /api/v1/team/{id}` through the shared IDP-aware Faiber client.
|
|
798
|
-
* @param id Backend path identifier `id`.
|
|
799
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
800
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
801
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team:delete.
|
|
298
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
802
299
|
*/
|
|
803
|
-
|
|
804
|
-
return this.client.request({ ...options, method: "
|
|
300
|
+
apiUpdateLeadPatch(id, data, options) {
|
|
301
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/leads/${encodeURIComponent(id)}`, data: data });
|
|
805
302
|
}
|
|
806
303
|
/**
|
|
807
|
-
* Performs the
|
|
808
|
-
* Calls `
|
|
304
|
+
* Performs the assign lead operation for the api capability.
|
|
305
|
+
* Calls `PATCH /api/v1/leads/{id}/assignment` through the shared IDP-aware Faiber client.
|
|
809
306
|
* @param id Backend path identifier `id`.
|
|
307
|
+
* @param data Typed JSON request body.
|
|
810
308
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
811
309
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
812
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
310
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
813
311
|
*/
|
|
814
|
-
|
|
815
|
-
return this.client.request({ ...options, method: "
|
|
312
|
+
apiAssignLeadPatch(id, data, options) {
|
|
313
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/leads/${encodeURIComponent(id)}/assignment`, data: data });
|
|
816
314
|
}
|
|
817
315
|
/**
|
|
818
|
-
* Performs the
|
|
819
|
-
* Calls `
|
|
316
|
+
* Performs the move lead stage operation for the api capability.
|
|
317
|
+
* Calls `PATCH /api/v1/leads/{id}/stage` through the shared IDP-aware Faiber client.
|
|
820
318
|
* @param id Backend path identifier `id`.
|
|
821
319
|
* @param data Typed JSON request body.
|
|
822
320
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
823
321
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
824
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: team:update.
|
|
825
|
-
*/
|
|
826
|
-
teamUpdatePut(id, data, options) {
|
|
827
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/team/${encodeURIComponent(id)}`, data: data });
|
|
828
|
-
}
|
|
829
|
-
/**
|
|
830
|
-
* Performs the index operation for the webhook capability.
|
|
831
|
-
* Calls `GET /api/v1/webhook` through the shared IDP-aware Faiber client.
|
|
832
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
833
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
834
322
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
835
323
|
*/
|
|
836
|
-
|
|
837
|
-
return this.client.request({ ...options, method: "
|
|
324
|
+
apiMoveLeadStagePatch(id, data, options) {
|
|
325
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/leads/${encodeURIComponent(id)}/stage`, data: data });
|
|
838
326
|
}
|
|
839
327
|
/**
|
|
840
|
-
* Performs the
|
|
841
|
-
* Calls `
|
|
842
|
-
* @param data Typed JSON request body.
|
|
328
|
+
* Performs the pipelines operation for the api capability.
|
|
329
|
+
* Calls `GET /api/v1/pipelines` through the shared IDP-aware Faiber client.
|
|
843
330
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
844
331
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
845
332
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
846
333
|
*/
|
|
847
|
-
|
|
848
|
-
return this.client.request({ ...options, method: "
|
|
334
|
+
apiPipelinesGet(options) {
|
|
335
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/pipelines` });
|
|
849
336
|
}
|
|
850
337
|
/**
|
|
851
|
-
* Performs the
|
|
852
|
-
* Calls `
|
|
338
|
+
* Performs the report run operation for the api capability.
|
|
339
|
+
* Calls `GET /api/v1/reports/{id}` through the shared IDP-aware Faiber client.
|
|
853
340
|
* @param id Backend path identifier `id`.
|
|
854
341
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
855
342
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
856
343
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
857
344
|
*/
|
|
858
|
-
|
|
859
|
-
return this.client.request({ ...options, method: "
|
|
345
|
+
apiReportRunGet(id, options) {
|
|
346
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/${encodeURIComponent(id)}` });
|
|
860
347
|
}
|
|
861
348
|
/**
|
|
862
|
-
* Performs the
|
|
863
|
-
* Calls `
|
|
349
|
+
* Performs the request agentic insight operation for the api capability.
|
|
350
|
+
* Calls `POST /api/v1/reports/{id}/agentic` through the shared IDP-aware Faiber client.
|
|
864
351
|
* @param id Backend path identifier `id`.
|
|
865
352
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
866
353
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
867
354
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
868
355
|
*/
|
|
869
|
-
|
|
870
|
-
return this.client.request({ ...options, method: "
|
|
356
|
+
apiRequestAgenticInsightPost(id, options) {
|
|
357
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/reports/${encodeURIComponent(id)}/agentic` });
|
|
871
358
|
}
|
|
872
359
|
/**
|
|
873
|
-
* Performs the
|
|
874
|
-
* Calls `
|
|
875
|
-
* @param id Backend path identifier `id`.
|
|
876
|
-
* @param data Typed JSON request body.
|
|
360
|
+
* Performs the report catalog operation for the api capability.
|
|
361
|
+
* Calls `GET /api/v1/reports/catalog` through the shared IDP-aware Faiber client.
|
|
877
362
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
878
363
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
879
364
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
880
365
|
*/
|
|
881
|
-
|
|
882
|
-
return this.client.request({ ...options, method: "
|
|
366
|
+
apiReportCatalogGet(options) {
|
|
367
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/catalog` });
|
|
883
368
|
}
|
|
884
369
|
/**
|
|
885
|
-
* Performs the
|
|
886
|
-
* Calls `GET /api/v1/
|
|
370
|
+
* Performs the overview operation for the api capability.
|
|
371
|
+
* Calls `GET /api/v1/reports/overview` through the shared IDP-aware Faiber client.
|
|
887
372
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
888
373
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
889
374
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
890
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
891
|
-
*/
|
|
892
|
-
workflowIndexGet(params, options) {
|
|
893
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/workflow`, params });
|
|
894
|
-
}
|
|
895
|
-
/**
|
|
896
|
-
* Performs the create operation for the workflow capability.
|
|
897
|
-
* Calls `POST /api/v1/workflow` through the shared IDP-aware Faiber client.
|
|
898
|
-
* @param data Typed JSON request body.
|
|
899
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
900
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
901
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow:create.
|
|
902
|
-
*/
|
|
903
|
-
workflowCreatePost(data, options) {
|
|
904
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/workflow`, data: data });
|
|
905
|
-
}
|
|
906
|
-
/**
|
|
907
|
-
* Performs the index operation for the workflow member capability.
|
|
908
|
-
* Calls `GET /api/v1/workflow-members` through the shared IDP-aware Faiber client.
|
|
909
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
910
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
911
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_member:read.
|
|
912
|
-
*/
|
|
913
|
-
workflowMemberIndexGet(options) {
|
|
914
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/workflow-members` });
|
|
915
|
-
}
|
|
916
|
-
/**
|
|
917
|
-
* Performs the destroy operation for the workflow member capability.
|
|
918
|
-
* Calls `DELETE /api/v1/workflow-members/{id}` through the shared IDP-aware Faiber client.
|
|
919
|
-
* @param id Backend path identifier `id`.
|
|
920
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
921
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
922
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_member:delete.
|
|
375
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
923
376
|
*/
|
|
924
|
-
|
|
925
|
-
return this.client.request({ ...options, method: "
|
|
377
|
+
apiOverviewGet(params, options) {
|
|
378
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/overview`, params });
|
|
926
379
|
}
|
|
927
380
|
/**
|
|
928
|
-
* Performs the
|
|
929
|
-
* Calls `
|
|
930
|
-
* @param
|
|
381
|
+
* Performs the refresh reports operation for the api capability.
|
|
382
|
+
* Calls `POST /api/v1/reports/refresh` through the shared IDP-aware Faiber client.
|
|
383
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
931
384
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
932
385
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
933
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
386
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
934
387
|
*/
|
|
935
|
-
|
|
936
|
-
return this.client.request({ ...options, method: "
|
|
388
|
+
apiRefreshReportsPost(params, options) {
|
|
389
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/reports/refresh`, params });
|
|
937
390
|
}
|
|
938
391
|
/**
|
|
939
|
-
* Performs the
|
|
940
|
-
* Calls `
|
|
941
|
-
* @param id Backend path identifier `id`.
|
|
942
|
-
* @param data Typed JSON request body.
|
|
392
|
+
* Performs the sources operation for the api capability.
|
|
393
|
+
* Calls `GET /api/v1/sources` through the shared IDP-aware Faiber client.
|
|
943
394
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
944
395
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
945
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
396
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
946
397
|
*/
|
|
947
|
-
|
|
948
|
-
return this.client.request({ ...options, method: "
|
|
398
|
+
apiSourcesGet(options) {
|
|
399
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/sources` });
|
|
949
400
|
}
|
|
950
401
|
/**
|
|
951
|
-
* Performs the
|
|
952
|
-
* Calls `
|
|
953
|
-
* @param id Backend path identifier `id`.
|
|
402
|
+
* Performs the create source operation for the api capability.
|
|
403
|
+
* Calls `POST /api/v1/sources` through the shared IDP-aware Faiber client.
|
|
954
404
|
* @param data Typed JSON request body.
|
|
955
405
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
956
406
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
957
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
958
|
-
*/
|
|
959
|
-
workflowMemberUpdatePut(id, data, options) {
|
|
960
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/workflow-members/${encodeURIComponent(id)}`, data: data });
|
|
961
|
-
}
|
|
962
|
-
/**
|
|
963
|
-
* Performs the by workflow operation for the workflow member capability.
|
|
964
|
-
* Calls `GET /api/v1/workflow-members/workflow/{workflow_id}` through the shared IDP-aware Faiber client.
|
|
965
|
-
* @param workflowId Backend path identifier `workflow_id`.
|
|
966
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
967
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
968
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_member:read.
|
|
407
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
969
408
|
*/
|
|
970
|
-
|
|
971
|
-
return this.client.request({ ...options, method: "
|
|
409
|
+
apiCreateSourcePost(data, options) {
|
|
410
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/sources`, data: data });
|
|
972
411
|
}
|
|
973
412
|
/**
|
|
974
|
-
* Performs the
|
|
975
|
-
* Calls `GET /api/v1/
|
|
413
|
+
* Performs the tasks operation for the api capability.
|
|
414
|
+
* Calls `GET /api/v1/tasks` through the shared IDP-aware Faiber client.
|
|
976
415
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
977
416
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
978
417
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
979
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
980
|
-
*/
|
|
981
|
-
workflowNodeIndexGet(params, options) {
|
|
982
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/workflow-node`, params });
|
|
983
|
-
}
|
|
984
|
-
/**
|
|
985
|
-
* Performs the destroy operation for the workflow node capability.
|
|
986
|
-
* Calls `DELETE /api/v1/workflow-node/{id}` through the shared IDP-aware Faiber client.
|
|
987
|
-
* @param id Backend path identifier `id`.
|
|
988
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
989
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
990
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow_node:delete.
|
|
418
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
991
419
|
*/
|
|
992
|
-
|
|
993
|
-
return this.client.request({ ...options, method: "
|
|
420
|
+
apiTasksGet(params, options) {
|
|
421
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/tasks`, params });
|
|
994
422
|
}
|
|
995
423
|
/**
|
|
996
|
-
* Performs the
|
|
997
|
-
* Calls `
|
|
998
|
-
* @param
|
|
424
|
+
* Performs the create task operation for the api capability.
|
|
425
|
+
* Calls `POST /api/v1/tasks` through the shared IDP-aware Faiber client.
|
|
426
|
+
* @param data Typed JSON request body.
|
|
999
427
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1000
428
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1001
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
429
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1002
430
|
*/
|
|
1003
|
-
|
|
1004
|
-
return this.client.request({ ...options, method: "
|
|
431
|
+
apiCreateTaskPost(data, options) {
|
|
432
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/tasks`, data: data });
|
|
1005
433
|
}
|
|
1006
434
|
/**
|
|
1007
|
-
* Performs the
|
|
1008
|
-
* Calls `
|
|
435
|
+
* Performs the update task status operation for the api capability.
|
|
436
|
+
* Calls `PATCH /api/v1/tasks/{id}/status` through the shared IDP-aware Faiber client.
|
|
1009
437
|
* @param id Backend path identifier `id`.
|
|
1010
438
|
* @param data Typed JSON request body.
|
|
1011
439
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1012
440
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1013
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
441
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1014
442
|
*/
|
|
1015
|
-
|
|
1016
|
-
return this.client.request({ ...options, method: "
|
|
443
|
+
apiUpdateTaskStatusPatch(id, data, options) {
|
|
444
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/tasks/${encodeURIComponent(id)}/status`, data: data });
|
|
1017
445
|
}
|
|
1018
446
|
/**
|
|
1019
|
-
* Performs the
|
|
1020
|
-
* Calls `
|
|
1021
|
-
* @param id Backend path identifier `id`.
|
|
1022
|
-
* @param data Typed JSON request body.
|
|
447
|
+
* Performs the teams operation for the api capability.
|
|
448
|
+
* Calls `GET /api/v1/teams` through the shared IDP-aware Faiber client.
|
|
1023
449
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1024
450
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1025
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
451
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1026
452
|
*/
|
|
1027
|
-
|
|
1028
|
-
return this.client.request({ ...options, method: "
|
|
453
|
+
apiTeamsGet(options) {
|
|
454
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/teams` });
|
|
1029
455
|
}
|
|
1030
456
|
/**
|
|
1031
|
-
* Performs the
|
|
1032
|
-
* Calls `
|
|
1033
|
-
* @param
|
|
457
|
+
* Performs the create team operation for the api capability.
|
|
458
|
+
* Calls `POST /api/v1/teams` through the shared IDP-aware Faiber client.
|
|
459
|
+
* @param data Typed JSON request body.
|
|
1034
460
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1035
461
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1036
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
462
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1037
463
|
*/
|
|
1038
|
-
|
|
1039
|
-
return this.client.request({ ...options, method: "
|
|
464
|
+
apiCreateTeamPost(data, options) {
|
|
465
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/teams`, data: data });
|
|
1040
466
|
}
|
|
1041
467
|
/**
|
|
1042
|
-
* Performs the
|
|
1043
|
-
* Calls `GET /api/v1/
|
|
468
|
+
* Performs the team operation for the api capability.
|
|
469
|
+
* Calls `GET /api/v1/teams/{id}` through the shared IDP-aware Faiber client.
|
|
1044
470
|
* @param id Backend path identifier `id`.
|
|
1045
471
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1046
472
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1047
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
473
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1048
474
|
*/
|
|
1049
|
-
|
|
1050
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/
|
|
475
|
+
apiTeamGet(id, options) {
|
|
476
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/teams/${encodeURIComponent(id)}` });
|
|
1051
477
|
}
|
|
1052
478
|
/**
|
|
1053
|
-
* Performs the
|
|
1054
|
-
* Calls `
|
|
479
|
+
* Performs the add team member operation for the api capability.
|
|
480
|
+
* Calls `POST /api/v1/teams/{id}/members` through the shared IDP-aware Faiber client.
|
|
1055
481
|
* @param id Backend path identifier `id`.
|
|
1056
482
|
* @param data Typed JSON request body.
|
|
1057
483
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1058
484
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1059
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
1060
|
-
*/
|
|
1061
|
-
workflowUpdatePut(id, data, options) {
|
|
1062
|
-
return this.client.request({ ...options, method: "PUT", url: `/api/v1/workflow/${encodeURIComponent(id)}`, data: data });
|
|
1063
|
-
}
|
|
1064
|
-
/**
|
|
1065
|
-
* Performs the member based operation for the workflow capability.
|
|
1066
|
-
* Calls `GET /api/v1/workflow/member-based` through the shared IDP-aware Faiber client.
|
|
1067
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1068
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1069
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: workflow:read, workflow:read_all, workflow:read_own.
|
|
1070
|
-
*/
|
|
1071
|
-
workflowMemberBasedGet(options) {
|
|
1072
|
-
return this.client.request({ ...options, method: "GET", url: `/api/v1/workflow/member-based` });
|
|
1073
|
-
}
|
|
1074
|
-
/**
|
|
1075
|
-
* Performs the index operation for the worklog capability.
|
|
1076
|
-
* Calls `GET /api/v1/worklog` through the shared IDP-aware Faiber client.
|
|
1077
|
-
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1078
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1079
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1080
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: worklog:read, worklog:read_all, worklog:read_own.
|
|
485
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1081
486
|
*/
|
|
1082
|
-
|
|
1083
|
-
return this.client.request({ ...options, method: "
|
|
487
|
+
apiAddTeamMemberPost(id, data, options) {
|
|
488
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/teams/${encodeURIComponent(id)}/members`, data: data });
|
|
1084
489
|
}
|
|
1085
490
|
/**
|
|
1086
|
-
* Performs the
|
|
1087
|
-
* Calls `
|
|
491
|
+
* Performs the update workspace operation for the api capability.
|
|
492
|
+
* Calls `PATCH /api/v1/workspace/settings` through the shared IDP-aware Faiber client.
|
|
1088
493
|
* @param data Typed JSON request body.
|
|
1089
494
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1090
495
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1091
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
1092
|
-
*/
|
|
1093
|
-
worklogCreatePost(data, options) {
|
|
1094
|
-
return this.client.request({ ...options, method: "POST", url: `/api/v1/worklog`, data: data });
|
|
1095
|
-
}
|
|
1096
|
-
/**
|
|
1097
|
-
* Performs the destroy operation for the worklog capability.
|
|
1098
|
-
* Calls `DELETE /api/v1/worklog/{id}` through the shared IDP-aware Faiber client.
|
|
1099
|
-
* @param id Backend path identifier `id`.
|
|
1100
|
-
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1101
|
-
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1102
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: worklog:delete.
|
|
496
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1103
497
|
*/
|
|
1104
|
-
|
|
1105
|
-
return this.client.request({ ...options, method: "
|
|
498
|
+
apiUpdateWorkspacePatch(data, options) {
|
|
499
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/workspace/settings`, data: data });
|
|
1106
500
|
}
|
|
1107
501
|
/**
|
|
1108
|
-
* Performs the
|
|
1109
|
-
* Calls `GET /
|
|
1110
|
-
* @param id Backend path identifier `id`.
|
|
502
|
+
* Performs the status route operation for the router capability.
|
|
503
|
+
* Calls `GET /health` through the shared IDP-aware Faiber client.
|
|
1111
504
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1112
505
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1113
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
506
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1114
507
|
*/
|
|
1115
|
-
|
|
1116
|
-
return this.client.request({ ...options, method: "GET", url: `/
|
|
508
|
+
routerStatusRouteGetHealth(options) {
|
|
509
|
+
return this.client.request({ ...options, method: "GET", url: `/health` });
|
|
1117
510
|
}
|
|
1118
511
|
/**
|
|
1119
|
-
* Performs the
|
|
1120
|
-
* Calls `
|
|
1121
|
-
* @param id Backend path identifier `id`.
|
|
1122
|
-
* @param data Typed JSON request body.
|
|
512
|
+
* Performs the status route operation for the router capability.
|
|
513
|
+
* Calls `GET /livez` through the shared IDP-aware Faiber client.
|
|
1123
514
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1124
515
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1125
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
516
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1126
517
|
*/
|
|
1127
|
-
|
|
1128
|
-
return this.client.request({ ...options, method: "
|
|
518
|
+
routerStatusRouteGetLivez(options) {
|
|
519
|
+
return this.client.request({ ...options, method: "GET", url: `/livez` });
|
|
1129
520
|
}
|
|
1130
521
|
/**
|
|
1131
|
-
* Performs the
|
|
1132
|
-
* Calls `GET /
|
|
522
|
+
* Performs the readiness route operation for the router capability.
|
|
523
|
+
* Calls `GET /readyz` through the shared IDP-aware Faiber client.
|
|
1133
524
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1134
525
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1135
526
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1136
527
|
*/
|
|
1137
|
-
|
|
1138
|
-
return this.client.request({ ...options, method: "GET", url: `/
|
|
528
|
+
routerReadinessRouteGet(options) {
|
|
529
|
+
return this.client.request({ ...options, method: "GET", url: `/readyz` });
|
|
1139
530
|
}
|
|
1140
531
|
/**
|
|
1141
532
|
* Performs the status route operation for the router capability.
|