@faiber/faiber-crm 0.10.1 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -6
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +18 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +128 -44
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +146 -44
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +83 -0
- package/dist/operations.types.d.ts.map +1 -1
- package/dist/types.d.ts +5 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/operations.js
CHANGED
|
@@ -16,7 +16,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
16
16
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
17
17
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
18
18
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
19
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
19
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:activity:read.
|
|
20
20
|
*/
|
|
21
21
|
apiActivitiesGet(params, options) {
|
|
22
22
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/activities`, params });
|
|
@@ -27,7 +27,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
27
27
|
* @param data Typed JSON request body.
|
|
28
28
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
29
29
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
30
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
30
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:activity:create.
|
|
31
31
|
*/
|
|
32
32
|
apiCreateActivityPost(data, options) {
|
|
33
33
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/activities`, data: data });
|
|
@@ -38,7 +38,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
38
38
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
39
39
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
40
40
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
41
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
41
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:automation:read.
|
|
42
42
|
*/
|
|
43
43
|
apiAutomationJobsGet(params, options) {
|
|
44
44
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/automation/jobs`, params });
|
|
@@ -48,7 +48,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
48
48
|
* Calls `GET /api/v1/automation/webhooks` through the shared IDP-aware Faiber client.
|
|
49
49
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
50
50
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
51
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
51
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:automation:read.
|
|
52
52
|
*/
|
|
53
53
|
apiAutomationWebhooksGet(options) {
|
|
54
54
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/automation/webhooks` });
|
|
@@ -60,7 +60,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
60
60
|
* @param pipelineId Backend path identifier `pipeline_id`.
|
|
61
61
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
62
62
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
63
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
63
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:board:read.
|
|
64
64
|
*/
|
|
65
65
|
apiBoardGet(entityType, pipelineId, options) {
|
|
66
66
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/boards/${encodeURIComponent(entityType)}/${encodeURIComponent(pipelineId)}` });
|
|
@@ -70,7 +70,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
70
70
|
* Calls `GET /api/v1/campaigns` through the shared IDP-aware Faiber client.
|
|
71
71
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
72
72
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
73
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
73
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:marketing:read.
|
|
74
74
|
*/
|
|
75
75
|
apiCampaignsGet(options) {
|
|
76
76
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/campaigns` });
|
|
@@ -81,7 +81,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
81
81
|
* @param data Typed JSON request body.
|
|
82
82
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
83
83
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
84
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
84
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:marketing:manage.
|
|
85
85
|
*/
|
|
86
86
|
apiCreateCampaignPost(data, options) {
|
|
87
87
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/campaigns`, data: data });
|
|
@@ -92,7 +92,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
92
92
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
93
93
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
94
94
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
95
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
95
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:company:read, crm:company:read_all.
|
|
96
96
|
*/
|
|
97
97
|
apiCompaniesGet(params, options) {
|
|
98
98
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/companies`, params });
|
|
@@ -103,7 +103,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
103
103
|
* @param data Typed JSON request body.
|
|
104
104
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
105
105
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
106
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
106
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:company:create.
|
|
107
107
|
*/
|
|
108
108
|
apiCreateCompanyPost(data, options) {
|
|
109
109
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/companies`, data: data });
|
|
@@ -114,7 +114,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
114
114
|
* @param id Backend path identifier `id`.
|
|
115
115
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
116
116
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
117
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
117
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:company:read, crm:company:read_all.
|
|
118
118
|
*/
|
|
119
119
|
apiCompanyGet(id, options) {
|
|
120
120
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/companies/${encodeURIComponent(id)}` });
|
|
@@ -126,7 +126,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
126
126
|
* @param data Typed JSON request body.
|
|
127
127
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
128
128
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
129
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
129
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:company:update.
|
|
130
130
|
*/
|
|
131
131
|
apiUpdateCompanyPatch(id, data, options) {
|
|
132
132
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/companies/${encodeURIComponent(id)}`, data: data });
|
|
@@ -137,7 +137,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
137
137
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
138
138
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
139
139
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
140
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
140
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:contact:read, crm:contact:read_all.
|
|
141
141
|
*/
|
|
142
142
|
apiContactsGet(params, options) {
|
|
143
143
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/contacts`, params });
|
|
@@ -148,7 +148,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
148
148
|
* @param data Typed JSON request body.
|
|
149
149
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
150
150
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
151
|
-
* @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: crm:contact:create.
|
|
152
152
|
*/
|
|
153
153
|
apiCreateContactPost(data, options) {
|
|
154
154
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/contacts`, data: data });
|
|
@@ -159,7 +159,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
159
159
|
* @param id Backend path identifier `id`.
|
|
160
160
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
161
161
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
162
|
-
* @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: crm:contact:read, crm:contact:read_all.
|
|
163
163
|
*/
|
|
164
164
|
apiContactGet(id, options) {
|
|
165
165
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/contacts/${encodeURIComponent(id)}` });
|
|
@@ -171,7 +171,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
171
171
|
* @param data Typed JSON request body.
|
|
172
172
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
173
173
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
174
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
174
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:contact:update.
|
|
175
175
|
*/
|
|
176
176
|
apiUpdateContactPatch(id, data, options) {
|
|
177
177
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/contacts/${encodeURIComponent(id)}`, data: data });
|
|
@@ -181,7 +181,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
181
181
|
* Calls `GET /api/v1/context` through the shared IDP-aware Faiber client.
|
|
182
182
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
183
183
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
184
|
-
* @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: crm:workspace:read.
|
|
185
185
|
*/
|
|
186
186
|
apiContextGet(options) {
|
|
187
187
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/context` });
|
|
@@ -192,7 +192,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
192
192
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
193
193
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
194
194
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
195
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
195
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:deal:read, crm:deal:read_all, crm:deal:read_own.
|
|
196
196
|
*/
|
|
197
197
|
apiDealsGet(params, options) {
|
|
198
198
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/deals`, params });
|
|
@@ -203,7 +203,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
203
203
|
* @param data Typed JSON request body.
|
|
204
204
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
205
205
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
206
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
206
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:deal:create.
|
|
207
207
|
*/
|
|
208
208
|
apiCreateDealPost(data, options) {
|
|
209
209
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/deals`, data: data });
|
|
@@ -214,7 +214,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
214
214
|
* @param id Backend path identifier `id`.
|
|
215
215
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
216
216
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
217
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
217
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:deal:read, crm:deal:read_all, crm:deal:read_own.
|
|
218
218
|
*/
|
|
219
219
|
apiDealGet(id, options) {
|
|
220
220
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/deals/${encodeURIComponent(id)}` });
|
|
@@ -226,7 +226,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
226
226
|
* @param data Typed JSON request body.
|
|
227
227
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
228
228
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
229
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
229
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:deal:update.
|
|
230
230
|
*/
|
|
231
231
|
apiUpdateDealPatch(id, data, options) {
|
|
232
232
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/deals/${encodeURIComponent(id)}`, data: data });
|
|
@@ -238,7 +238,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
238
238
|
* @param data Typed JSON request body.
|
|
239
239
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
240
240
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
241
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
241
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:deal:assign.
|
|
242
242
|
*/
|
|
243
243
|
apiAssignDealPatch(id, data, options) {
|
|
244
244
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/deals/${encodeURIComponent(id)}/assignment`, data: data });
|
|
@@ -250,18 +250,29 @@ export class CrmOperations extends ServiceApi {
|
|
|
250
250
|
* @param data Typed JSON request body.
|
|
251
251
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
252
252
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
253
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
253
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:deal:move.
|
|
254
254
|
*/
|
|
255
255
|
apiMoveDealStagePatch(id, data, options) {
|
|
256
256
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/deals/${encodeURIComponent(id)}/stage`, data: data });
|
|
257
257
|
}
|
|
258
|
+
/**
|
|
259
|
+
* Performs the find office lead operation for the api capability.
|
|
260
|
+
* Calls `GET /api/v1/integration/office/leads/find` through the shared IDP-aware Faiber client.
|
|
261
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
262
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
263
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
264
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
265
|
+
*/
|
|
266
|
+
apiFindOfficeLeadGet(params, options) {
|
|
267
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/office/leads/find`, params });
|
|
268
|
+
}
|
|
258
269
|
/**
|
|
259
270
|
* Performs the leads operation for the api capability.
|
|
260
271
|
* Calls `GET /api/v1/leads` through the shared IDP-aware Faiber client.
|
|
261
272
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
262
273
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
263
274
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
264
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
275
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:lead:read, crm:lead:read_all, crm:lead:read_own.
|
|
265
276
|
*/
|
|
266
277
|
apiLeadsGet(params, options) {
|
|
267
278
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/leads`, params });
|
|
@@ -272,7 +283,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
272
283
|
* @param data Typed JSON request body.
|
|
273
284
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
274
285
|
* @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:
|
|
286
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:lead:create.
|
|
276
287
|
*/
|
|
277
288
|
apiCreateLeadPost(data, options) {
|
|
278
289
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/leads`, data: data });
|
|
@@ -283,7 +294,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
283
294
|
* @param id Backend path identifier `id`.
|
|
284
295
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
285
296
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
286
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
297
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:lead:read, crm:lead:read_all, crm:lead:read_own.
|
|
287
298
|
*/
|
|
288
299
|
apiLeadGet(id, options) {
|
|
289
300
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/leads/${encodeURIComponent(id)}` });
|
|
@@ -295,7 +306,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
295
306
|
* @param data Typed JSON request body.
|
|
296
307
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
297
308
|
* @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:
|
|
309
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:lead:update.
|
|
299
310
|
*/
|
|
300
311
|
apiUpdateLeadPatch(id, data, options) {
|
|
301
312
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/leads/${encodeURIComponent(id)}`, data: data });
|
|
@@ -307,11 +318,33 @@ export class CrmOperations extends ServiceApi {
|
|
|
307
318
|
* @param data Typed JSON request body.
|
|
308
319
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
309
320
|
* @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:
|
|
321
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:lead:assign.
|
|
311
322
|
*/
|
|
312
323
|
apiAssignLeadPatch(id, data, options) {
|
|
313
324
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/leads/${encodeURIComponent(id)}/assignment`, data: data });
|
|
314
325
|
}
|
|
326
|
+
/**
|
|
327
|
+
* Performs the remove lead from sos operation for the api capability.
|
|
328
|
+
* Calls `DELETE /api/v1/leads/{id}/sos` through the shared IDP-aware Faiber client.
|
|
329
|
+
* @param id Backend path identifier `id`.
|
|
330
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
331
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
332
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:sos:delete.
|
|
333
|
+
*/
|
|
334
|
+
apiRemoveLeadFromSosDelete(id, options) {
|
|
335
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/leads/${encodeURIComponent(id)}/sos` });
|
|
336
|
+
}
|
|
337
|
+
/**
|
|
338
|
+
* Performs the add lead to sos operation for the api capability.
|
|
339
|
+
* Calls `POST /api/v1/leads/{id}/sos` through the shared IDP-aware Faiber client.
|
|
340
|
+
* @param id Backend path identifier `id`.
|
|
341
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
342
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
343
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:sos:create.
|
|
344
|
+
*/
|
|
345
|
+
apiAddLeadToSosPost(id, options) {
|
|
346
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/leads/${encodeURIComponent(id)}/sos` });
|
|
347
|
+
}
|
|
315
348
|
/**
|
|
316
349
|
* Performs the move lead stage operation for the api capability.
|
|
317
350
|
* Calls `PATCH /api/v1/leads/{id}/stage` through the shared IDP-aware Faiber client.
|
|
@@ -319,7 +352,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
319
352
|
* @param data Typed JSON request body.
|
|
320
353
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
321
354
|
* @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:
|
|
355
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:lead:move.
|
|
323
356
|
*/
|
|
324
357
|
apiMoveLeadStagePatch(id, data, options) {
|
|
325
358
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/leads/${encodeURIComponent(id)}/stage`, data: data });
|
|
@@ -329,7 +362,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
329
362
|
* Calls `GET /api/v1/pipelines` through the shared IDP-aware Faiber client.
|
|
330
363
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
331
364
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
332
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
365
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:pipeline:read.
|
|
333
366
|
*/
|
|
334
367
|
apiPipelinesGet(options) {
|
|
335
368
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/pipelines` });
|
|
@@ -340,7 +373,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
340
373
|
* @param id Backend path identifier `id`.
|
|
341
374
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
342
375
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
343
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
376
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:report:read.
|
|
344
377
|
*/
|
|
345
378
|
apiReportRunGet(id, options) {
|
|
346
379
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/${encodeURIComponent(id)}` });
|
|
@@ -351,7 +384,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
351
384
|
* @param id Backend path identifier `id`.
|
|
352
385
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
353
386
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
354
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
387
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:agent:run.
|
|
355
388
|
*/
|
|
356
389
|
apiRequestAgenticInsightPost(id, options) {
|
|
357
390
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/reports/${encodeURIComponent(id)}/agentic` });
|
|
@@ -361,7 +394,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
361
394
|
* Calls `GET /api/v1/reports/catalog` through the shared IDP-aware Faiber client.
|
|
362
395
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
363
396
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
364
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
397
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:report:read.
|
|
365
398
|
*/
|
|
366
399
|
apiReportCatalogGet(options) {
|
|
367
400
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/catalog` });
|
|
@@ -372,7 +405,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
372
405
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
373
406
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
374
407
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
375
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
408
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:report:read.
|
|
376
409
|
*/
|
|
377
410
|
apiOverviewGet(params, options) {
|
|
378
411
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/overview`, params });
|
|
@@ -383,17 +416,27 @@ export class CrmOperations extends ServiceApi {
|
|
|
383
416
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
384
417
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
385
418
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
386
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
419
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:report:refresh.
|
|
387
420
|
*/
|
|
388
421
|
apiRefreshReportsPost(params, options) {
|
|
389
422
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/reports/refresh`, params });
|
|
390
423
|
}
|
|
424
|
+
/**
|
|
425
|
+
* Performs the list sos leads operation for the api capability.
|
|
426
|
+
* Calls `GET /api/v1/sos` through the shared IDP-aware Faiber client.
|
|
427
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
428
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
429
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:sos:read.
|
|
430
|
+
*/
|
|
431
|
+
apiListSosLeadsGet(options) {
|
|
432
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/sos` });
|
|
433
|
+
}
|
|
391
434
|
/**
|
|
392
435
|
* Performs the sources operation for the api capability.
|
|
393
436
|
* Calls `GET /api/v1/sources` through the shared IDP-aware Faiber client.
|
|
394
437
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
395
438
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
396
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
439
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:marketing:read.
|
|
397
440
|
*/
|
|
398
441
|
apiSourcesGet(options) {
|
|
399
442
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/sources` });
|
|
@@ -404,7 +447,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
404
447
|
* @param data Typed JSON request body.
|
|
405
448
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
406
449
|
* @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:
|
|
450
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:marketing:manage.
|
|
408
451
|
*/
|
|
409
452
|
apiCreateSourcePost(data, options) {
|
|
410
453
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/sources`, data: data });
|
|
@@ -415,7 +458,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
415
458
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
416
459
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
417
460
|
* @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:
|
|
461
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:task:read, crm:task:read_all, crm:task:read_own.
|
|
419
462
|
*/
|
|
420
463
|
apiTasksGet(params, options) {
|
|
421
464
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/tasks`, params });
|
|
@@ -426,7 +469,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
426
469
|
* @param data Typed JSON request body.
|
|
427
470
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
428
471
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
429
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
472
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:task:create.
|
|
430
473
|
*/
|
|
431
474
|
apiCreateTaskPost(data, options) {
|
|
432
475
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/tasks`, data: data });
|
|
@@ -438,7 +481,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
438
481
|
* @param data Typed JSON request body.
|
|
439
482
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
440
483
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
441
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
484
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:task:update.
|
|
442
485
|
*/
|
|
443
486
|
apiUpdateTaskStatusPatch(id, data, options) {
|
|
444
487
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/tasks/${encodeURIComponent(id)}/status`, data: data });
|
|
@@ -448,7 +491,7 @@ export class CrmOperations extends ServiceApi {
|
|
|
448
491
|
* Calls `GET /api/v1/teams` through the shared IDP-aware Faiber client.
|
|
449
492
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
450
493
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
451
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
494
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:team:read.
|
|
452
495
|
*/
|
|
453
496
|
apiTeamsGet(options) {
|
|
454
497
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/teams` });
|
|
@@ -459,18 +502,30 @@ export class CrmOperations extends ServiceApi {
|
|
|
459
502
|
* @param data Typed JSON request body.
|
|
460
503
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
461
504
|
* @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:
|
|
505
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:team:create.
|
|
463
506
|
*/
|
|
464
507
|
apiCreateTeamPost(data, options) {
|
|
465
508
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/teams`, data: data });
|
|
466
509
|
}
|
|
510
|
+
/**
|
|
511
|
+
* Performs the delete team operation for the api capability.
|
|
512
|
+
* Calls `DELETE /api/v1/teams/{id}` through the shared IDP-aware Faiber client.
|
|
513
|
+
* @param id Backend path identifier `id`.
|
|
514
|
+
* @param data Typed JSON request body.
|
|
515
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
516
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
517
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:team:delete.
|
|
518
|
+
*/
|
|
519
|
+
apiDeleteTeamDelete(id, data, options) {
|
|
520
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/teams/${encodeURIComponent(id)}`, data: data });
|
|
521
|
+
}
|
|
467
522
|
/**
|
|
468
523
|
* Performs the team operation for the api capability.
|
|
469
524
|
* Calls `GET /api/v1/teams/{id}` through the shared IDP-aware Faiber client.
|
|
470
525
|
* @param id Backend path identifier `id`.
|
|
471
526
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
472
527
|
* @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:
|
|
528
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:team:read.
|
|
474
529
|
*/
|
|
475
530
|
apiTeamGet(id, options) {
|
|
476
531
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/teams/${encodeURIComponent(id)}` });
|
|
@@ -482,18 +537,65 @@ export class CrmOperations extends ServiceApi {
|
|
|
482
537
|
* @param data Typed JSON request body.
|
|
483
538
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
484
539
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
485
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
540
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:team:manage_members.
|
|
486
541
|
*/
|
|
487
542
|
apiAddTeamMemberPost(id, data, options) {
|
|
488
543
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/teams/${encodeURIComponent(id)}/members`, data: data });
|
|
489
544
|
}
|
|
545
|
+
/**
|
|
546
|
+
* Performs the remove team member operation for the api capability.
|
|
547
|
+
* Calls `DELETE /api/v1/teams/{team_id}/members/{member_id}` through the shared IDP-aware Faiber client.
|
|
548
|
+
* @param teamId Backend path identifier `team_id`.
|
|
549
|
+
* @param memberId Backend path identifier `member_id`.
|
|
550
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
551
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
552
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:team:manage_members.
|
|
553
|
+
*/
|
|
554
|
+
apiRemoveTeamMemberDelete(teamId, memberId, options) {
|
|
555
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/teams/${encodeURIComponent(teamId)}/members/${encodeURIComponent(memberId)}` });
|
|
556
|
+
}
|
|
557
|
+
/**
|
|
558
|
+
* Performs the list workflow assignments operation for the api capability.
|
|
559
|
+
* Calls `GET /api/v1/workflows/{id}/assignments` through the shared IDP-aware Faiber client.
|
|
560
|
+
* @param id Backend path identifier `id`.
|
|
561
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
562
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
563
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:workflow_assignment:read.
|
|
564
|
+
*/
|
|
565
|
+
apiListWorkflowAssignmentsGet(id, options) {
|
|
566
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/workflows/${encodeURIComponent(id)}/assignments` });
|
|
567
|
+
}
|
|
568
|
+
/**
|
|
569
|
+
* Performs the create workflow assignment operation for the api capability.
|
|
570
|
+
* Calls `POST /api/v1/workflows/{id}/assignments` through the shared IDP-aware Faiber client.
|
|
571
|
+
* @param id Backend path identifier `id`.
|
|
572
|
+
* @param data Typed JSON request body.
|
|
573
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
574
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
575
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:workflow_assignment:manage.
|
|
576
|
+
*/
|
|
577
|
+
apiCreateWorkflowAssignmentPost(id, data, options) {
|
|
578
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/workflows/${encodeURIComponent(id)}/assignments`, data: data });
|
|
579
|
+
}
|
|
580
|
+
/**
|
|
581
|
+
* Performs the delete workflow assignment operation for the api capability.
|
|
582
|
+
* Calls `DELETE /api/v1/workflows/{workflow_id}/assignments/{assignment_id}` through the shared IDP-aware Faiber client.
|
|
583
|
+
* @param workflowId Backend path identifier `workflow_id`.
|
|
584
|
+
* @param assignmentId Backend path identifier `assignment_id`.
|
|
585
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
586
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
587
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:workflow_assignment:manage.
|
|
588
|
+
*/
|
|
589
|
+
apiDeleteWorkflowAssignmentDelete(workflowId, assignmentId, options) {
|
|
590
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/workflows/${encodeURIComponent(workflowId)}/assignments/${encodeURIComponent(assignmentId)}` });
|
|
591
|
+
}
|
|
490
592
|
/**
|
|
491
593
|
* Performs the update workspace operation for the api capability.
|
|
492
594
|
* Calls `PATCH /api/v1/workspace/settings` through the shared IDP-aware Faiber client.
|
|
493
595
|
* @param data Typed JSON request body.
|
|
494
596
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
495
597
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
496
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
598
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:settings:update.
|
|
497
599
|
*/
|
|
498
600
|
apiUpdateWorkspacePatch(data, options) {
|
|
499
601
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/workspace/settings`, data: data });
|
package/dist/operations.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.js","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"operations.js","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|