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