@faiber/faiber-crm 0.10.2 → 0.11.1
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 +23 -7
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +35 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +35 -0
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +207 -44
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +243 -44
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +322 -0
- package/dist/operations.types.d.ts.map +1 -1
- package/dist/types.d.ts +12 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/operations.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
15
15
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
16
16
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
17
17
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
18
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
18
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:activity:read.
|
|
19
19
|
*/
|
|
20
20
|
apiActivitiesGet(params?: T.ApiActivitiesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmActivityListResponse, unknown, {}>>;
|
|
21
21
|
/**
|
|
@@ -24,16 +24,25 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
24
24
|
* @param data Typed JSON request body.
|
|
25
25
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
26
26
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
27
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
27
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:activity:create.
|
|
28
28
|
*/
|
|
29
29
|
apiCreateActivityPost(data: T.ApiCreateActivityPostInput, options?: RequestOptions<T.ApiCreateActivityPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCreateActivityPostResponseData>, T.ApiCreateActivityPostInput, {}>>;
|
|
30
|
+
/**
|
|
31
|
+
* Performs the create activity with reminder operation for the api capability.
|
|
32
|
+
* Calls `POST /api/v1/activities/with-reminder` through the shared IDP-aware Faiber client.
|
|
33
|
+
* @param data Typed JSON request body.
|
|
34
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
35
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
36
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:activity:create, crm:task:create.
|
|
37
|
+
*/
|
|
38
|
+
apiCreateActivityWithReminderPost(data: T.ApiCreateActivityWithReminderPostInput, options?: RequestOptions<T.ApiCreateActivityWithReminderPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCreateActivityWithReminderPostResponseData>, T.ApiCreateActivityWithReminderPostInput, {}>>;
|
|
30
39
|
/**
|
|
31
40
|
* Performs the automation jobs operation for the api capability.
|
|
32
41
|
* Calls `GET /api/v1/automation/jobs` through the shared IDP-aware Faiber client.
|
|
33
42
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
34
43
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
35
44
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
36
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
45
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:automation:read.
|
|
37
46
|
*/
|
|
38
47
|
apiAutomationJobsGet(params?: T.ApiAutomationJobsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmAutomationJobListResponse, unknown, {}>>;
|
|
39
48
|
/**
|
|
@@ -41,7 +50,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
41
50
|
* Calls `GET /api/v1/automation/webhooks` through the shared IDP-aware Faiber client.
|
|
42
51
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
43
52
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
44
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
53
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:automation:read.
|
|
45
54
|
*/
|
|
46
55
|
apiAutomationWebhooksGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiAutomationWebhooksGetResponseItem[]>, unknown, {}>>;
|
|
47
56
|
/**
|
|
@@ -51,7 +60,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
51
60
|
* @param pipelineId Backend path identifier `pipeline_id`.
|
|
52
61
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
53
62
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
54
|
-
* @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.
|
|
55
64
|
*/
|
|
56
65
|
apiBoardGet(entityType: Identifier, pipelineId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmBoardResponse, unknown, {}>>;
|
|
57
66
|
/**
|
|
@@ -59,7 +68,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
59
68
|
* Calls `GET /api/v1/campaigns` through the shared IDP-aware Faiber client.
|
|
60
69
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
61
70
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
62
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
71
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:marketing:read.
|
|
63
72
|
*/
|
|
64
73
|
apiCampaignsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCampaignsGetResponseItem[]>, unknown, {}>>;
|
|
65
74
|
/**
|
|
@@ -68,7 +77,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
68
77
|
* @param data Typed JSON request body.
|
|
69
78
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
70
79
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
71
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
80
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:marketing:manage.
|
|
72
81
|
*/
|
|
73
82
|
apiCreateCampaignPost(data: T.ApiCreateCampaignPostInput, options?: RequestOptions<T.ApiCreateCampaignPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCreateCampaignPostResponseData>, T.ApiCreateCampaignPostInput, {}>>;
|
|
74
83
|
/**
|
|
@@ -77,7 +86,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
77
86
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
78
87
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
79
88
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
80
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
89
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:company:read, crm:company:read_all.
|
|
81
90
|
*/
|
|
82
91
|
apiCompaniesGet(params?: T.ApiCompaniesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmCompanyListResponse, unknown, {}>>;
|
|
83
92
|
/**
|
|
@@ -86,7 +95,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
86
95
|
* @param data Typed JSON request body.
|
|
87
96
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
88
97
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
89
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
98
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:company:create.
|
|
90
99
|
*/
|
|
91
100
|
apiCreateCompanyPost(data: T.ApiCreateCompanyPostInput, options?: RequestOptions<T.ApiCreateCompanyPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCreateCompanyPostResponseData>, T.ApiCreateCompanyPostInput, {}>>;
|
|
92
101
|
/**
|
|
@@ -95,7 +104,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
95
104
|
* @param id Backend path identifier `id`.
|
|
96
105
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
97
106
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
98
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
107
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:company:read, crm:company:read_all.
|
|
99
108
|
*/
|
|
100
109
|
apiCompanyGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCompanyGetResponseData>, unknown, {}>>;
|
|
101
110
|
/**
|
|
@@ -105,7 +114,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
105
114
|
* @param data Typed JSON request body.
|
|
106
115
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
107
116
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
108
|
-
* @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:update.
|
|
109
118
|
*/
|
|
110
119
|
apiUpdateCompanyPatch(id: Identifier, data: T.ApiUpdateCompanyPatchInput, options?: RequestOptions<T.ApiUpdateCompanyPatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiUpdateCompanyPatchResponseData>, T.ApiUpdateCompanyPatchInput, {}>>;
|
|
111
120
|
/**
|
|
@@ -114,7 +123,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
114
123
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
115
124
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
116
125
|
* @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:
|
|
126
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:contact:read, crm:contact:read_all.
|
|
118
127
|
*/
|
|
119
128
|
apiContactsGet(params?: T.ApiContactsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmContactListResponse, unknown, {}>>;
|
|
120
129
|
/**
|
|
@@ -123,7 +132,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
123
132
|
* @param data Typed JSON request body.
|
|
124
133
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
125
134
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
126
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
135
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:contact:create.
|
|
127
136
|
*/
|
|
128
137
|
apiCreateContactPost(data: T.ApiCreateContactPostInput, options?: RequestOptions<T.ApiCreateContactPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCreateContactPostResponseData>, T.ApiCreateContactPostInput, {}>>;
|
|
129
138
|
/**
|
|
@@ -132,7 +141,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
132
141
|
* @param id Backend path identifier `id`.
|
|
133
142
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
134
143
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
135
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
144
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:contact:read, crm:contact:read_all.
|
|
136
145
|
*/
|
|
137
146
|
apiContactGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiContactGetResponseData>, unknown, {}>>;
|
|
138
147
|
/**
|
|
@@ -142,7 +151,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
142
151
|
* @param data Typed JSON request body.
|
|
143
152
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
144
153
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
145
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
154
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:contact:update.
|
|
146
155
|
*/
|
|
147
156
|
apiUpdateContactPatch(id: Identifier, data: T.ApiUpdateContactPatchInput, options?: RequestOptions<T.ApiUpdateContactPatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiUpdateContactPatchResponseData>, T.ApiUpdateContactPatchInput, {}>>;
|
|
148
157
|
/**
|
|
@@ -150,7 +159,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
150
159
|
* Calls `GET /api/v1/context` through the shared IDP-aware Faiber client.
|
|
151
160
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
152
161
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
153
|
-
* @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:workspace:read.
|
|
154
163
|
*/
|
|
155
164
|
apiContextGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiContextGetResponseData>, unknown, {}>>;
|
|
156
165
|
/**
|
|
@@ -159,7 +168,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
159
168
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
160
169
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
161
170
|
* @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:
|
|
171
|
+
* @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.
|
|
163
172
|
*/
|
|
164
173
|
apiDealsGet(params?: T.ApiDealsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmDealListResponse, unknown, {}>>;
|
|
165
174
|
/**
|
|
@@ -168,7 +177,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
168
177
|
* @param data Typed JSON request body.
|
|
169
178
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
170
179
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
171
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
180
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:deal:create.
|
|
172
181
|
*/
|
|
173
182
|
apiCreateDealPost(data: T.ApiCreateDealPostInput, options?: RequestOptions<T.ApiCreateDealPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCreateDealPostResponseData>, T.ApiCreateDealPostInput, {}>>;
|
|
174
183
|
/**
|
|
@@ -177,7 +186,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
177
186
|
* @param id Backend path identifier `id`.
|
|
178
187
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
179
188
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
180
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
189
|
+
* @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.
|
|
181
190
|
*/
|
|
182
191
|
apiDealGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiDealGetResponseData>, unknown, {}>>;
|
|
183
192
|
/**
|
|
@@ -187,7 +196,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
187
196
|
* @param data Typed JSON request body.
|
|
188
197
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
189
198
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
190
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
199
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:deal:update.
|
|
191
200
|
*/
|
|
192
201
|
apiUpdateDealPatch(id: Identifier, data: T.ApiUpdateDealPatchInput, options?: RequestOptions<T.ApiUpdateDealPatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiUpdateDealPatchResponseData>, T.ApiUpdateDealPatchInput, {}>>;
|
|
193
202
|
/**
|
|
@@ -197,7 +206,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
197
206
|
* @param data Typed JSON request body.
|
|
198
207
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
199
208
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
200
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
209
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:deal:assign.
|
|
201
210
|
*/
|
|
202
211
|
apiAssignDealPatch(id: Identifier, data: T.ApiAssignDealPatchInput, options?: RequestOptions<T.ApiAssignDealPatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiAssignDealPatchResponseData>, T.ApiAssignDealPatchInput, {}>>;
|
|
203
212
|
/**
|
|
@@ -207,16 +216,25 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
207
216
|
* @param data Typed JSON request body.
|
|
208
217
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
209
218
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
210
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
219
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:deal:move.
|
|
211
220
|
*/
|
|
212
221
|
apiMoveDealStagePatch(id: Identifier, data: T.ApiMoveDealStagePatchInput, options?: RequestOptions<T.ApiMoveDealStagePatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiMoveDealStagePatchResponseData>, T.ApiMoveDealStagePatchInput, {}>>;
|
|
222
|
+
/**
|
|
223
|
+
* Performs the find office lead operation for the api capability.
|
|
224
|
+
* Calls `GET /api/v1/integration/office/leads/find` through the shared IDP-aware Faiber client.
|
|
225
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
226
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
227
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
228
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
229
|
+
*/
|
|
230
|
+
apiFindOfficeLeadGet(params?: T.ApiFindOfficeLeadGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<import("@faiber/sdk-core").BackendJson<"entity::lead::Model"> | null>, unknown, {}>>;
|
|
213
231
|
/**
|
|
214
232
|
* Performs the leads operation for the api capability.
|
|
215
233
|
* Calls `GET /api/v1/leads` through the shared IDP-aware Faiber client.
|
|
216
234
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
217
235
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
218
236
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
219
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
237
|
+
* @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.
|
|
220
238
|
*/
|
|
221
239
|
apiLeadsGet(params?: T.ApiLeadsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmLeadListResponse, unknown, {}>>;
|
|
222
240
|
/**
|
|
@@ -225,7 +243,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
225
243
|
* @param data Typed JSON request body.
|
|
226
244
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
227
245
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
228
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
246
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:lead:create.
|
|
229
247
|
*/
|
|
230
248
|
apiCreateLeadPost(data: T.ApiCreateLeadPostInput, options?: RequestOptions<T.ApiCreateLeadPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCreateLeadPostResponseData>, T.ApiCreateLeadPostInput, {}>>;
|
|
231
249
|
/**
|
|
@@ -234,7 +252,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
234
252
|
* @param id Backend path identifier `id`.
|
|
235
253
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
236
254
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
237
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
255
|
+
* @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.
|
|
238
256
|
*/
|
|
239
257
|
apiLeadGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiLeadGetResponseData>, unknown, {}>>;
|
|
240
258
|
/**
|
|
@@ -244,7 +262,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
244
262
|
* @param data Typed JSON request body.
|
|
245
263
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
246
264
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
247
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
265
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:lead:update.
|
|
248
266
|
*/
|
|
249
267
|
apiUpdateLeadPatch(id: Identifier, data: T.ApiUpdateLeadPatchInput, options?: RequestOptions<T.ApiUpdateLeadPatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiUpdateLeadPatchResponseData>, T.ApiUpdateLeadPatchInput, {}>>;
|
|
250
268
|
/**
|
|
@@ -254,9 +272,45 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
254
272
|
* @param data Typed JSON request body.
|
|
255
273
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
256
274
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
257
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
275
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:lead:assign.
|
|
258
276
|
*/
|
|
259
277
|
apiAssignLeadPatch(id: Identifier, data: T.ApiAssignLeadPatchInput, options?: RequestOptions<T.ApiAssignLeadPatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiAssignLeadPatchResponseData>, T.ApiAssignLeadPatchInput, {}>>;
|
|
278
|
+
/**
|
|
279
|
+
* Performs the lead history operation for the api capability.
|
|
280
|
+
* Calls `GET /api/v1/leads/{id}/history` through the shared IDP-aware Faiber client.
|
|
281
|
+
* @param id Backend path identifier `id`.
|
|
282
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
283
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
284
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:lead:read, crm:activity:read.
|
|
285
|
+
*/
|
|
286
|
+
apiLeadHistoryGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiLeadHistoryGetResponseItem[]>, unknown, {}>>;
|
|
287
|
+
/**
|
|
288
|
+
* Performs the delete lead reminders operation for the api capability.
|
|
289
|
+
* Calls `DELETE /api/v1/leads/{id}/reminders` through the shared IDP-aware Faiber client.
|
|
290
|
+
* @param id Backend path identifier `id`.
|
|
291
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
292
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
293
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:task:delete.
|
|
294
|
+
*/
|
|
295
|
+
apiDeleteLeadRemindersDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<import("@faiber/sdk-core").JsonValue>, unknown, {}>>;
|
|
296
|
+
/**
|
|
297
|
+
* Performs the remove lead from sos operation for the api capability.
|
|
298
|
+
* Calls `DELETE /api/v1/leads/{id}/sos` through the shared IDP-aware Faiber client.
|
|
299
|
+
* @param id Backend path identifier `id`.
|
|
300
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
301
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
302
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:sos:delete.
|
|
303
|
+
*/
|
|
304
|
+
apiRemoveLeadFromSosDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiRemoveLeadFromSosDeleteResponseData>, unknown, {}>>;
|
|
305
|
+
/**
|
|
306
|
+
* Performs the add lead to sos operation for the api capability.
|
|
307
|
+
* Calls `POST /api/v1/leads/{id}/sos` through the shared IDP-aware Faiber client.
|
|
308
|
+
* @param id Backend path identifier `id`.
|
|
309
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
310
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
311
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:sos:create.
|
|
312
|
+
*/
|
|
313
|
+
apiAddLeadToSosPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiAddLeadToSosPostResponseData>, unknown, {}>>;
|
|
260
314
|
/**
|
|
261
315
|
* Performs the move lead stage operation for the api capability.
|
|
262
316
|
* Calls `PATCH /api/v1/leads/{id}/stage` through the shared IDP-aware Faiber client.
|
|
@@ -264,24 +318,43 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
264
318
|
* @param data Typed JSON request body.
|
|
265
319
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
266
320
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
267
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
321
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:lead:move.
|
|
268
322
|
*/
|
|
269
323
|
apiMoveLeadStagePatch(id: Identifier, data: T.ApiMoveLeadStagePatchInput, options?: RequestOptions<T.ApiMoveLeadStagePatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiMoveLeadStagePatchResponseData>, T.ApiMoveLeadStagePatchInput, {}>>;
|
|
324
|
+
/**
|
|
325
|
+
* Performs the light leads operation for the api capability.
|
|
326
|
+
* Calls `GET /api/v1/leads/light` through the shared IDP-aware Faiber client.
|
|
327
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
328
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
329
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
330
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
331
|
+
*/
|
|
332
|
+
apiLightLeadsGet(params?: T.ApiLightLeadsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmLeadListResponse, unknown, {}>>;
|
|
270
333
|
/**
|
|
271
334
|
* Performs the pipelines operation for the api capability.
|
|
272
335
|
* Calls `GET /api/v1/pipelines` through the shared IDP-aware Faiber client.
|
|
273
336
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
274
337
|
* @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:
|
|
338
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:pipeline:read.
|
|
276
339
|
*/
|
|
277
340
|
apiPipelinesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmPipelinesResponse, unknown, {}>>;
|
|
341
|
+
/**
|
|
342
|
+
* Performs the update pipeline operation for the api capability.
|
|
343
|
+
* Calls `PATCH /api/v1/pipelines/{id}` through the shared IDP-aware Faiber client.
|
|
344
|
+
* @param id Backend path identifier `id`.
|
|
345
|
+
* @param data Typed JSON request body.
|
|
346
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
347
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
348
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:pipeline:update.
|
|
349
|
+
*/
|
|
350
|
+
apiUpdatePipelinePatch(id: Identifier, data: T.ApiUpdatePipelinePatchInput, options?: RequestOptions<T.ApiUpdatePipelinePatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiUpdatePipelinePatchResponseData>, T.ApiUpdatePipelinePatchInput, {}>>;
|
|
278
351
|
/**
|
|
279
352
|
* Performs the report run operation for the api capability.
|
|
280
353
|
* Calls `GET /api/v1/reports/{id}` through the shared IDP-aware Faiber client.
|
|
281
354
|
* @param id Backend path identifier `id`.
|
|
282
355
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
283
356
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
284
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
357
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:report:read.
|
|
285
358
|
*/
|
|
286
359
|
apiReportRunGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiReportRunGetResponseData>, unknown, {}>>;
|
|
287
360
|
/**
|
|
@@ -290,7 +363,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
290
363
|
* @param id Backend path identifier `id`.
|
|
291
364
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
292
365
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
293
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
366
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:agent:run.
|
|
294
367
|
*/
|
|
295
368
|
apiRequestAgenticInsightPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmAgenticInsightResponse, unknown, {}>>;
|
|
296
369
|
/**
|
|
@@ -298,7 +371,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
298
371
|
* Calls `GET /api/v1/reports/catalog` through the shared IDP-aware Faiber client.
|
|
299
372
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
300
373
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
301
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
374
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:report:read.
|
|
302
375
|
*/
|
|
303
376
|
apiReportCatalogGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmReportCatalogResponse, unknown, {}>>;
|
|
304
377
|
/**
|
|
@@ -307,7 +380,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
307
380
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
308
381
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
309
382
|
* @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:
|
|
383
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:report:read.
|
|
311
384
|
*/
|
|
312
385
|
apiOverviewGet(params?: T.ApiOverviewGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmOverviewResponse, unknown, {}>>;
|
|
313
386
|
/**
|
|
@@ -316,15 +389,23 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
316
389
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
317
390
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
318
391
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
319
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
392
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:report:refresh.
|
|
320
393
|
*/
|
|
321
394
|
apiRefreshReportsPost(params?: T.ApiRefreshReportsPostQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmReportRefreshResponse, unknown, {}>>;
|
|
395
|
+
/**
|
|
396
|
+
* Performs the list sos leads operation for the api capability.
|
|
397
|
+
* Calls `GET /api/v1/sos` through the shared IDP-aware Faiber client.
|
|
398
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
399
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
400
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:sos:read.
|
|
401
|
+
*/
|
|
402
|
+
apiListSosLeadsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiListSosLeadsGetResponseItem[]>, unknown, {}>>;
|
|
322
403
|
/**
|
|
323
404
|
* Performs the sources operation for the api capability.
|
|
324
405
|
* Calls `GET /api/v1/sources` through the shared IDP-aware Faiber client.
|
|
325
406
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
326
407
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
327
|
-
* @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:marketing:read.
|
|
328
409
|
*/
|
|
329
410
|
apiSourcesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiSourcesGetResponseItem[]>, unknown, {}>>;
|
|
330
411
|
/**
|
|
@@ -333,16 +414,32 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
333
414
|
* @param data Typed JSON request body.
|
|
334
415
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
335
416
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
336
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
417
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:marketing:manage.
|
|
337
418
|
*/
|
|
338
419
|
apiCreateSourcePost(data: T.ApiCreateSourcePostInput, options?: RequestOptions<T.ApiCreateSourcePostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCreateSourcePostResponseData>, T.ApiCreateSourcePostInput, {}>>;
|
|
420
|
+
/**
|
|
421
|
+
* Performs the daily stats operation for the api capability.
|
|
422
|
+
* Calls `GET /api/v1/stats/daily` through the shared IDP-aware Faiber client.
|
|
423
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
424
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
425
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:stats:read, crm:stats:read_own.
|
|
426
|
+
*/
|
|
427
|
+
apiDailyStatsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiDailyStatsGetResponseData>, unknown, {}>>;
|
|
428
|
+
/**
|
|
429
|
+
* Performs the lead stats operation for the api capability.
|
|
430
|
+
* Calls `GET /api/v1/stats/lead` through the shared IDP-aware Faiber client.
|
|
431
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
432
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
433
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:stats:read, crm:stats:read_all.
|
|
434
|
+
*/
|
|
435
|
+
apiLeadStatsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiLeadStatsGetResponseData>, unknown, {}>>;
|
|
339
436
|
/**
|
|
340
437
|
* Performs the tasks operation for the api capability.
|
|
341
438
|
* Calls `GET /api/v1/tasks` through the shared IDP-aware Faiber client.
|
|
342
439
|
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
343
440
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
344
441
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
345
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
442
|
+
* @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.
|
|
346
443
|
*/
|
|
347
444
|
apiTasksGet(params?: T.ApiTasksGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmTaskListResponse, unknown, {}>>;
|
|
348
445
|
/**
|
|
@@ -351,9 +448,18 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
351
448
|
* @param data Typed JSON request body.
|
|
352
449
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
353
450
|
* @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:
|
|
451
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:task:create.
|
|
355
452
|
*/
|
|
356
453
|
apiCreateTaskPost(data: T.ApiCreateTaskPostInput, options?: RequestOptions<T.ApiCreateTaskPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCreateTaskPostResponseData>, T.ApiCreateTaskPostInput, {}>>;
|
|
454
|
+
/**
|
|
455
|
+
* Performs the delete task operation for the api capability.
|
|
456
|
+
* Calls `DELETE /api/v1/tasks/{id}` through the shared IDP-aware Faiber client.
|
|
457
|
+
* @param id Backend path identifier `id`.
|
|
458
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
459
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
460
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:task:delete.
|
|
461
|
+
*/
|
|
462
|
+
apiDeleteTaskDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiDeleteTaskDeleteResponseData>, unknown, {}>>;
|
|
357
463
|
/**
|
|
358
464
|
* Performs the update task status operation for the api capability.
|
|
359
465
|
* Calls `PATCH /api/v1/tasks/{id}/status` through the shared IDP-aware Faiber client.
|
|
@@ -361,7 +467,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
361
467
|
* @param data Typed JSON request body.
|
|
362
468
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
363
469
|
* @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:
|
|
470
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:task:update.
|
|
365
471
|
*/
|
|
366
472
|
apiUpdateTaskStatusPatch(id: Identifier, data: T.ApiUpdateTaskStatusPatchInput, options?: RequestOptions<T.ApiUpdateTaskStatusPatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiUpdateTaskStatusPatchResponseData>, T.ApiUpdateTaskStatusPatchInput, {}>>;
|
|
367
473
|
/**
|
|
@@ -369,7 +475,7 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
369
475
|
* Calls `GET /api/v1/teams` through the shared IDP-aware Faiber client.
|
|
370
476
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
371
477
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
372
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
478
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:team:read.
|
|
373
479
|
*/
|
|
374
480
|
apiTeamsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiTeamsGetResponseItem[]>, unknown, {}>>;
|
|
375
481
|
/**
|
|
@@ -378,16 +484,26 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
378
484
|
* @param data Typed JSON request body.
|
|
379
485
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
380
486
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
381
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
487
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:team:create.
|
|
382
488
|
*/
|
|
383
489
|
apiCreateTeamPost(data: T.ApiCreateTeamPostInput, options?: RequestOptions<T.ApiCreateTeamPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCreateTeamPostResponseData>, T.ApiCreateTeamPostInput, {}>>;
|
|
490
|
+
/**
|
|
491
|
+
* Performs the delete team operation for the api capability.
|
|
492
|
+
* Calls `DELETE /api/v1/teams/{id}` through the shared IDP-aware Faiber client.
|
|
493
|
+
* @param id Backend path identifier `id`.
|
|
494
|
+
* @param data Typed JSON request body.
|
|
495
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
496
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
497
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:team:delete.
|
|
498
|
+
*/
|
|
499
|
+
apiDeleteTeamDelete(id: Identifier, data: T.ApiDeleteTeamDeleteInput, options?: RequestOptions<T.ApiDeleteTeamDeleteInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiDeleteTeamDeleteResponseData>, T.ApiDeleteTeamDeleteInput, {}>>;
|
|
384
500
|
/**
|
|
385
501
|
* Performs the team operation for the api capability.
|
|
386
502
|
* Calls `GET /api/v1/teams/{id}` through the shared IDP-aware Faiber client.
|
|
387
503
|
* @param id Backend path identifier `id`.
|
|
388
504
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
389
505
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
390
|
-
* @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: crm:team:read.
|
|
391
507
|
*/
|
|
392
508
|
apiTeamGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmTeamDetailResponse, unknown, {}>>;
|
|
393
509
|
/**
|
|
@@ -397,16 +513,63 @@ export declare class CrmOperations extends ServiceApi {
|
|
|
397
513
|
* @param data Typed JSON request body.
|
|
398
514
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
399
515
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
400
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
516
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:team:manage_members.
|
|
401
517
|
*/
|
|
402
518
|
apiAddTeamMemberPost(id: Identifier, data: T.ApiAddTeamMemberPostInput, options?: RequestOptions<T.ApiAddTeamMemberPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiAddTeamMemberPostResponseData>, T.ApiAddTeamMemberPostInput, {}>>;
|
|
519
|
+
/**
|
|
520
|
+
* Performs the remove team member operation for the api capability.
|
|
521
|
+
* Calls `DELETE /api/v1/teams/{team_id}/members/{member_id}` through the shared IDP-aware Faiber client.
|
|
522
|
+
* @param teamId Backend path identifier `team_id`.
|
|
523
|
+
* @param memberId Backend path identifier `member_id`.
|
|
524
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
525
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
526
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:team:manage_members.
|
|
527
|
+
*/
|
|
528
|
+
apiRemoveTeamMemberDelete(teamId: Identifier, memberId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiRemoveTeamMemberDeleteResponseData>, unknown, {}>>;
|
|
529
|
+
/**
|
|
530
|
+
* Performs the list workflow assignments operation for the api capability.
|
|
531
|
+
* Calls `GET /api/v1/workflows/{id}/assignments` through the shared IDP-aware Faiber client.
|
|
532
|
+
* @param id Backend path identifier `id`.
|
|
533
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
534
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
535
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:workflow_assignment:read.
|
|
536
|
+
*/
|
|
537
|
+
apiListWorkflowAssignmentsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiListWorkflowAssignmentsGetResponseItem[]>, unknown, {}>>;
|
|
538
|
+
/**
|
|
539
|
+
* Performs the create workflow assignment operation for the api capability.
|
|
540
|
+
* Calls `POST /api/v1/workflows/{id}/assignments` through the shared IDP-aware Faiber client.
|
|
541
|
+
* @param id Backend path identifier `id`.
|
|
542
|
+
* @param data Typed JSON request body.
|
|
543
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
544
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
545
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:workflow_assignment:manage.
|
|
546
|
+
*/
|
|
547
|
+
apiCreateWorkflowAssignmentPost(id: Identifier, data: T.ApiCreateWorkflowAssignmentPostInput, options?: RequestOptions<T.ApiCreateWorkflowAssignmentPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiCreateWorkflowAssignmentPostResponseData>, T.ApiCreateWorkflowAssignmentPostInput, {}>>;
|
|
548
|
+
/**
|
|
549
|
+
* Performs the delete workflow assignment operation for the api capability.
|
|
550
|
+
* Calls `DELETE /api/v1/workflows/{workflow_id}/assignments/{assignment_id}` through the shared IDP-aware Faiber client.
|
|
551
|
+
* @param workflowId Backend path identifier `workflow_id`.
|
|
552
|
+
* @param assignmentId Backend path identifier `assignment_id`.
|
|
553
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
554
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
555
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:workflow_assignment:manage.
|
|
556
|
+
*/
|
|
557
|
+
apiDeleteWorkflowAssignmentDelete(workflowId: Identifier, assignmentId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiDeleteWorkflowAssignmentDeleteResponseData>, unknown, {}>>;
|
|
558
|
+
/**
|
|
559
|
+
* Performs the member workflows operation for the api capability.
|
|
560
|
+
* Calls `GET /api/v1/workflows/member-based` through the shared IDP-aware Faiber client.
|
|
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:pipeline:read.
|
|
564
|
+
*/
|
|
565
|
+
apiMemberWorkflowsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiMemberWorkflowsGetResponseItem[]>, unknown, {}>>;
|
|
403
566
|
/**
|
|
404
567
|
* Performs the update workspace operation for the api capability.
|
|
405
568
|
* Calls `PATCH /api/v1/workspace/settings` through the shared IDP-aware Faiber client.
|
|
406
569
|
* @param data Typed JSON request body.
|
|
407
570
|
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
408
571
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
409
|
-
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission:
|
|
572
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: crm:settings:update.
|
|
410
573
|
*/
|
|
411
574
|
apiUpdateWorkspacePatch(data: T.ApiUpdateWorkspacePatchInput, options?: RequestOptions<T.ApiUpdateWorkspacePatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CrmApiResponse<T.ApiUpdateWorkspacePatchResponseData>, T.ApiUpdateWorkspacePatchInput, {}>>;
|
|
412
575
|
/**
|
package/dist/operations.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|