@uptiqai/integrations-sdk 1.0.19 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated-api.d.ts +598 -34
- package/dist/generated-api.d.ts.map +1 -1
- package/dist/generated-api.js +390 -1
- package/dist/generated-api.js.map +1 -1
- package/dist/index.d.ts +76 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +165 -0
- package/dist/index.js.map +1 -1
- package/dist/response-type-map.d.ts.map +1 -1
- package/dist/response-type-map.js +92 -2
- package/dist/response-type-map.js.map +1 -1
- package/package.json +1 -1
package/dist/generated-api.d.ts
CHANGED
|
@@ -1,3 +1,477 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @nullable
|
|
3
|
+
*/
|
|
4
|
+
export type WealthboxGetActivity200 = unknown | null;
|
|
5
|
+
export type WealthboxGetActivityParams = {
|
|
6
|
+
page?: number | null;
|
|
7
|
+
per_page?: number | null;
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @nullable
|
|
11
|
+
*/
|
|
12
|
+
export type WealthboxGetWorkflowTemplates200 = unknown | null;
|
|
13
|
+
export type WealthboxGetWorkflowTemplatesParams = {
|
|
14
|
+
page?: number | null;
|
|
15
|
+
per_page?: number | null;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* @nullable
|
|
19
|
+
*/
|
|
20
|
+
export type WealthboxGetContactRoles200 = unknown | null;
|
|
21
|
+
export type WealthboxGetContactRolesParams = {
|
|
22
|
+
page?: number | null;
|
|
23
|
+
per_page?: number | null;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @nullable
|
|
27
|
+
*/
|
|
28
|
+
export type WealthboxGetCustomFields200 = unknown | null;
|
|
29
|
+
export type WealthboxGetCustomFieldsParams = {
|
|
30
|
+
page?: number | null;
|
|
31
|
+
per_page?: number | null;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* @nullable
|
|
35
|
+
*/
|
|
36
|
+
export type WealthboxGetTags200 = unknown | null;
|
|
37
|
+
export type WealthboxGetTagsParams = {
|
|
38
|
+
page?: number | null;
|
|
39
|
+
per_page?: number | null;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @nullable
|
|
43
|
+
*/
|
|
44
|
+
export type WealthboxGetTeams200 = unknown | null;
|
|
45
|
+
export type WealthboxGetTeamsParams = {
|
|
46
|
+
page?: number | null;
|
|
47
|
+
per_page?: number | null;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* @nullable
|
|
51
|
+
*/
|
|
52
|
+
export type WealthboxGetUsers200 = unknown | null;
|
|
53
|
+
export type WealthboxGetUsersParams = {
|
|
54
|
+
page?: number | null;
|
|
55
|
+
per_page?: number | null;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* @nullable
|
|
59
|
+
*/
|
|
60
|
+
export type WealthboxGetMe200 = unknown | null;
|
|
61
|
+
export type WealthboxRemoveHouseholdMemberBody = {
|
|
62
|
+
/** Household ID */
|
|
63
|
+
householdId: string;
|
|
64
|
+
/** Member ID to remove */
|
|
65
|
+
memberId: string;
|
|
66
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
67
|
+
userId?: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* @nullable
|
|
71
|
+
*/
|
|
72
|
+
export type WealthboxAddHouseholdMember201 = unknown | null;
|
|
73
|
+
export type WealthboxAddHouseholdMemberBodyAllOfTwo = {
|
|
74
|
+
/** Household ID */
|
|
75
|
+
householdId: string;
|
|
76
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
77
|
+
userId?: string;
|
|
78
|
+
};
|
|
79
|
+
export type WealthboxAddHouseholdMemberBodyAllOf = {
|
|
80
|
+
[key: string]: unknown | null;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Household member request payload
|
|
84
|
+
*/
|
|
85
|
+
export type WealthboxAddHouseholdMemberBody = WealthboxAddHouseholdMemberBodyAllOf & WealthboxAddHouseholdMemberBodyAllOfTwo;
|
|
86
|
+
/**
|
|
87
|
+
* @nullable
|
|
88
|
+
*/
|
|
89
|
+
export type WealthboxRevertWorkflowStep200 = unknown | null;
|
|
90
|
+
export type WealthboxRevertWorkflowStepBody = {
|
|
91
|
+
/** Workflow step ID */
|
|
92
|
+
stepId: string;
|
|
93
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
94
|
+
userId?: string;
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* @nullable
|
|
98
|
+
*/
|
|
99
|
+
export type WealthboxCompleteWorkflowStep200 = unknown | null;
|
|
100
|
+
export type WealthboxCompleteWorkflowStepBody = {
|
|
101
|
+
/** Workflow step ID */
|
|
102
|
+
stepId: string;
|
|
103
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
104
|
+
userId?: string;
|
|
105
|
+
};
|
|
106
|
+
export type WealthboxDeleteWorkflowBody = {
|
|
107
|
+
/** Resource ID to delete */
|
|
108
|
+
id: string;
|
|
109
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
110
|
+
userId?: string;
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* @nullable
|
|
114
|
+
*/
|
|
115
|
+
export type WealthboxGetWorkflow200 = unknown | null;
|
|
116
|
+
export type WealthboxGetWorkflowBody = {
|
|
117
|
+
/** Resource ID */
|
|
118
|
+
id: string;
|
|
119
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
120
|
+
userId?: string;
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* @nullable
|
|
124
|
+
*/
|
|
125
|
+
export type WealthboxCreateWorkflow201 = unknown | null;
|
|
126
|
+
export type WealthboxCreateWorkflowBodyAllOfTwo = {
|
|
127
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
128
|
+
userId?: string;
|
|
129
|
+
};
|
|
130
|
+
export type WealthboxCreateWorkflowBodyAllOf = {
|
|
131
|
+
[key: string]: unknown | null;
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
135
|
+
*/
|
|
136
|
+
export type WealthboxCreateWorkflowBody = WealthboxCreateWorkflowBodyAllOf & WealthboxCreateWorkflowBodyAllOfTwo;
|
|
137
|
+
/**
|
|
138
|
+
* @nullable
|
|
139
|
+
*/
|
|
140
|
+
export type WealthboxGetWorkflows200 = unknown | null;
|
|
141
|
+
export type WealthboxGetWorkflowsParams = {
|
|
142
|
+
page?: number | null;
|
|
143
|
+
per_page?: number | null;
|
|
144
|
+
};
|
|
145
|
+
export type WealthboxDeleteProjectBody = {
|
|
146
|
+
/** Resource ID to delete */
|
|
147
|
+
id: string;
|
|
148
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
149
|
+
userId?: string;
|
|
150
|
+
};
|
|
151
|
+
/**
|
|
152
|
+
* @nullable
|
|
153
|
+
*/
|
|
154
|
+
export type WealthboxUpdateProject200 = unknown | null;
|
|
155
|
+
export type WealthboxUpdateProjectBodyAllOfTwo = {
|
|
156
|
+
/** Resource ID to update */
|
|
157
|
+
id: string;
|
|
158
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
159
|
+
userId?: string;
|
|
160
|
+
};
|
|
161
|
+
export type WealthboxUpdateProjectBodyAllOf = {
|
|
162
|
+
[key: string]: unknown | null;
|
|
163
|
+
};
|
|
164
|
+
/**
|
|
165
|
+
* Update request payload with resource ID
|
|
166
|
+
*/
|
|
167
|
+
export type WealthboxUpdateProjectBody = WealthboxUpdateProjectBodyAllOf & WealthboxUpdateProjectBodyAllOfTwo;
|
|
168
|
+
/**
|
|
169
|
+
* @nullable
|
|
170
|
+
*/
|
|
171
|
+
export type WealthboxGetProject200 = unknown | null;
|
|
172
|
+
export type WealthboxGetProjectBody = {
|
|
173
|
+
/** Resource ID */
|
|
174
|
+
id: string;
|
|
175
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
176
|
+
userId?: string;
|
|
177
|
+
};
|
|
178
|
+
/**
|
|
179
|
+
* @nullable
|
|
180
|
+
*/
|
|
181
|
+
export type WealthboxCreateProject201 = unknown | null;
|
|
182
|
+
export type WealthboxCreateProjectBodyAllOfTwo = {
|
|
183
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
184
|
+
userId?: string;
|
|
185
|
+
};
|
|
186
|
+
export type WealthboxCreateProjectBodyAllOf = {
|
|
187
|
+
[key: string]: unknown | null;
|
|
188
|
+
};
|
|
189
|
+
/**
|
|
190
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
191
|
+
*/
|
|
192
|
+
export type WealthboxCreateProjectBody = WealthboxCreateProjectBodyAllOf & WealthboxCreateProjectBodyAllOfTwo;
|
|
193
|
+
/**
|
|
194
|
+
* @nullable
|
|
195
|
+
*/
|
|
196
|
+
export type WealthboxGetProjects200 = unknown | null;
|
|
197
|
+
export type WealthboxGetProjectsParams = {
|
|
198
|
+
page?: number | null;
|
|
199
|
+
per_page?: number | null;
|
|
200
|
+
};
|
|
201
|
+
/**
|
|
202
|
+
* @nullable
|
|
203
|
+
*/
|
|
204
|
+
export type WealthboxUpdateNote200 = unknown | null;
|
|
205
|
+
export type WealthboxUpdateNoteBodyAllOfTwo = {
|
|
206
|
+
/** Resource ID to update */
|
|
207
|
+
id: string;
|
|
208
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
209
|
+
userId?: string;
|
|
210
|
+
};
|
|
211
|
+
export type WealthboxUpdateNoteBodyAllOf = {
|
|
212
|
+
[key: string]: unknown | null;
|
|
213
|
+
};
|
|
214
|
+
/**
|
|
215
|
+
* Update request payload with resource ID
|
|
216
|
+
*/
|
|
217
|
+
export type WealthboxUpdateNoteBody = WealthboxUpdateNoteBodyAllOf & WealthboxUpdateNoteBodyAllOfTwo;
|
|
218
|
+
/**
|
|
219
|
+
* @nullable
|
|
220
|
+
*/
|
|
221
|
+
export type WealthboxGetNote200 = unknown | null;
|
|
222
|
+
export type WealthboxGetNoteBody = {
|
|
223
|
+
/** Resource ID */
|
|
224
|
+
id: string;
|
|
225
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
226
|
+
userId?: string;
|
|
227
|
+
};
|
|
228
|
+
/**
|
|
229
|
+
* @nullable
|
|
230
|
+
*/
|
|
231
|
+
export type WealthboxCreateNote201 = unknown | null;
|
|
232
|
+
export type WealthboxCreateNoteBodyAllOfTwo = {
|
|
233
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
234
|
+
userId?: string;
|
|
235
|
+
};
|
|
236
|
+
export type WealthboxCreateNoteBodyAllOf = {
|
|
237
|
+
[key: string]: unknown | null;
|
|
238
|
+
};
|
|
239
|
+
/**
|
|
240
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
241
|
+
*/
|
|
242
|
+
export type WealthboxCreateNoteBody = WealthboxCreateNoteBodyAllOf & WealthboxCreateNoteBodyAllOfTwo;
|
|
243
|
+
/**
|
|
244
|
+
* @nullable
|
|
245
|
+
*/
|
|
246
|
+
export type WealthboxGetNotes200 = unknown | null;
|
|
247
|
+
export type WealthboxGetNotesParams = {
|
|
248
|
+
page?: number | null;
|
|
249
|
+
per_page?: number | null;
|
|
250
|
+
};
|
|
251
|
+
export type WealthboxDeleteOpportunityBody = {
|
|
252
|
+
/** Resource ID to delete */
|
|
253
|
+
id: string;
|
|
254
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
255
|
+
userId?: string;
|
|
256
|
+
};
|
|
257
|
+
/**
|
|
258
|
+
* @nullable
|
|
259
|
+
*/
|
|
260
|
+
export type WealthboxUpdateOpportunity200 = unknown | null;
|
|
261
|
+
export type WealthboxUpdateOpportunityBodyAllOfTwo = {
|
|
262
|
+
/** Resource ID to update */
|
|
263
|
+
id: string;
|
|
264
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
265
|
+
userId?: string;
|
|
266
|
+
};
|
|
267
|
+
export type WealthboxUpdateOpportunityBodyAllOf = {
|
|
268
|
+
[key: string]: unknown | null;
|
|
269
|
+
};
|
|
270
|
+
/**
|
|
271
|
+
* Update request payload with resource ID
|
|
272
|
+
*/
|
|
273
|
+
export type WealthboxUpdateOpportunityBody = WealthboxUpdateOpportunityBodyAllOf & WealthboxUpdateOpportunityBodyAllOfTwo;
|
|
274
|
+
/**
|
|
275
|
+
* @nullable
|
|
276
|
+
*/
|
|
277
|
+
export type WealthboxGetOpportunity200 = unknown | null;
|
|
278
|
+
export type WealthboxGetOpportunityBody = {
|
|
279
|
+
/** Resource ID */
|
|
280
|
+
id: string;
|
|
281
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
282
|
+
userId?: string;
|
|
283
|
+
};
|
|
284
|
+
/**
|
|
285
|
+
* @nullable
|
|
286
|
+
*/
|
|
287
|
+
export type WealthboxCreateOpportunity201 = unknown | null;
|
|
288
|
+
export type WealthboxCreateOpportunityBodyAllOfTwo = {
|
|
289
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
290
|
+
userId?: string;
|
|
291
|
+
};
|
|
292
|
+
export type WealthboxCreateOpportunityBodyAllOf = {
|
|
293
|
+
[key: string]: unknown | null;
|
|
294
|
+
};
|
|
295
|
+
/**
|
|
296
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
297
|
+
*/
|
|
298
|
+
export type WealthboxCreateOpportunityBody = WealthboxCreateOpportunityBodyAllOf & WealthboxCreateOpportunityBodyAllOfTwo;
|
|
299
|
+
/**
|
|
300
|
+
* @nullable
|
|
301
|
+
*/
|
|
302
|
+
export type WealthboxGetOpportunities200 = unknown | null;
|
|
303
|
+
export type WealthboxGetOpportunitiesParams = {
|
|
304
|
+
page?: number | null;
|
|
305
|
+
per_page?: number | null;
|
|
306
|
+
};
|
|
307
|
+
export type WealthboxDeleteEventBody = {
|
|
308
|
+
/** Resource ID to delete */
|
|
309
|
+
id: string;
|
|
310
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
311
|
+
userId?: string;
|
|
312
|
+
};
|
|
313
|
+
/**
|
|
314
|
+
* @nullable
|
|
315
|
+
*/
|
|
316
|
+
export type WealthboxUpdateEvent200 = unknown | null;
|
|
317
|
+
export type WealthboxUpdateEventBodyAllOfTwo = {
|
|
318
|
+
/** Resource ID to update */
|
|
319
|
+
id: string;
|
|
320
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
321
|
+
userId?: string;
|
|
322
|
+
};
|
|
323
|
+
export type WealthboxUpdateEventBodyAllOf = {
|
|
324
|
+
[key: string]: unknown | null;
|
|
325
|
+
};
|
|
326
|
+
/**
|
|
327
|
+
* Update request payload with resource ID
|
|
328
|
+
*/
|
|
329
|
+
export type WealthboxUpdateEventBody = WealthboxUpdateEventBodyAllOf & WealthboxUpdateEventBodyAllOfTwo;
|
|
330
|
+
/**
|
|
331
|
+
* @nullable
|
|
332
|
+
*/
|
|
333
|
+
export type WealthboxGetEvent200 = unknown | null;
|
|
334
|
+
export type WealthboxGetEventBody = {
|
|
335
|
+
/** Resource ID */
|
|
336
|
+
id: string;
|
|
337
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
338
|
+
userId?: string;
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* @nullable
|
|
342
|
+
*/
|
|
343
|
+
export type WealthboxCreateEvent201 = unknown | null;
|
|
344
|
+
export type WealthboxCreateEventBodyAllOfTwo = {
|
|
345
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
346
|
+
userId?: string;
|
|
347
|
+
};
|
|
348
|
+
export type WealthboxCreateEventBodyAllOf = {
|
|
349
|
+
[key: string]: unknown | null;
|
|
350
|
+
};
|
|
351
|
+
/**
|
|
352
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
353
|
+
*/
|
|
354
|
+
export type WealthboxCreateEventBody = WealthboxCreateEventBodyAllOf & WealthboxCreateEventBodyAllOfTwo;
|
|
355
|
+
/**
|
|
356
|
+
* @nullable
|
|
357
|
+
*/
|
|
358
|
+
export type WealthboxGetEvents200 = unknown | null;
|
|
359
|
+
export type WealthboxGetEventsParams = {
|
|
360
|
+
page?: number | null;
|
|
361
|
+
per_page?: number | null;
|
|
362
|
+
};
|
|
363
|
+
export type WealthboxDeleteTaskBody = {
|
|
364
|
+
/** Resource ID to delete */
|
|
365
|
+
id: string;
|
|
366
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
367
|
+
userId?: string;
|
|
368
|
+
};
|
|
369
|
+
/**
|
|
370
|
+
* @nullable
|
|
371
|
+
*/
|
|
372
|
+
export type WealthboxUpdateTask200 = unknown | null;
|
|
373
|
+
export type WealthboxUpdateTaskBodyAllOfTwo = {
|
|
374
|
+
/** Resource ID to update */
|
|
375
|
+
id: string;
|
|
376
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
377
|
+
userId?: string;
|
|
378
|
+
};
|
|
379
|
+
export type WealthboxUpdateTaskBodyAllOf = {
|
|
380
|
+
[key: string]: unknown | null;
|
|
381
|
+
};
|
|
382
|
+
/**
|
|
383
|
+
* Update request payload with resource ID
|
|
384
|
+
*/
|
|
385
|
+
export type WealthboxUpdateTaskBody = WealthboxUpdateTaskBodyAllOf & WealthboxUpdateTaskBodyAllOfTwo;
|
|
386
|
+
/**
|
|
387
|
+
* @nullable
|
|
388
|
+
*/
|
|
389
|
+
export type WealthboxGetTask200 = unknown | null;
|
|
390
|
+
export type WealthboxGetTaskBody = {
|
|
391
|
+
/** Resource ID */
|
|
392
|
+
id: string;
|
|
393
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
394
|
+
userId?: string;
|
|
395
|
+
};
|
|
396
|
+
/**
|
|
397
|
+
* @nullable
|
|
398
|
+
*/
|
|
399
|
+
export type WealthboxCreateTask201 = unknown | null;
|
|
400
|
+
export type WealthboxCreateTaskBodyAllOfTwo = {
|
|
401
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
402
|
+
userId?: string;
|
|
403
|
+
};
|
|
404
|
+
export type WealthboxCreateTaskBodyAllOf = {
|
|
405
|
+
[key: string]: unknown | null;
|
|
406
|
+
};
|
|
407
|
+
/**
|
|
408
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
409
|
+
*/
|
|
410
|
+
export type WealthboxCreateTaskBody = WealthboxCreateTaskBodyAllOf & WealthboxCreateTaskBodyAllOfTwo;
|
|
411
|
+
/**
|
|
412
|
+
* @nullable
|
|
413
|
+
*/
|
|
414
|
+
export type WealthboxGetTasks200 = unknown | null;
|
|
415
|
+
export type WealthboxGetTasksParams = {
|
|
416
|
+
page?: number | null;
|
|
417
|
+
per_page?: number | null;
|
|
418
|
+
};
|
|
419
|
+
export type WealthboxDeleteContactBody = {
|
|
420
|
+
/** Resource ID to delete */
|
|
421
|
+
id: string;
|
|
422
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
423
|
+
userId?: string;
|
|
424
|
+
};
|
|
425
|
+
/**
|
|
426
|
+
* @nullable
|
|
427
|
+
*/
|
|
428
|
+
export type WealthboxUpdateContact200 = unknown | null;
|
|
429
|
+
export type WealthboxUpdateContactBodyAllOfTwo = {
|
|
430
|
+
/** Resource ID to update */
|
|
431
|
+
id: string;
|
|
432
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
433
|
+
userId?: string;
|
|
434
|
+
};
|
|
435
|
+
export type WealthboxUpdateContactBodyAllOf = {
|
|
436
|
+
[key: string]: unknown | null;
|
|
437
|
+
};
|
|
438
|
+
/**
|
|
439
|
+
* Update request payload with resource ID
|
|
440
|
+
*/
|
|
441
|
+
export type WealthboxUpdateContactBody = WealthboxUpdateContactBodyAllOf & WealthboxUpdateContactBodyAllOfTwo;
|
|
442
|
+
/**
|
|
443
|
+
* @nullable
|
|
444
|
+
*/
|
|
445
|
+
export type WealthboxGetContact200 = unknown | null;
|
|
446
|
+
export type WealthboxGetContactBody = {
|
|
447
|
+
/** Resource ID */
|
|
448
|
+
id: string;
|
|
449
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
450
|
+
userId?: string;
|
|
451
|
+
};
|
|
452
|
+
/**
|
|
453
|
+
* @nullable
|
|
454
|
+
*/
|
|
455
|
+
export type WealthboxCreateContact201 = unknown | null;
|
|
456
|
+
export type WealthboxCreateContactBodyAllOfTwo = {
|
|
457
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
458
|
+
userId?: string;
|
|
459
|
+
};
|
|
460
|
+
export type WealthboxCreateContactBodyAllOf = {
|
|
461
|
+
[key: string]: unknown | null;
|
|
462
|
+
};
|
|
463
|
+
/**
|
|
464
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
465
|
+
*/
|
|
466
|
+
export type WealthboxCreateContactBody = WealthboxCreateContactBodyAllOf & WealthboxCreateContactBodyAllOfTwo;
|
|
467
|
+
/**
|
|
468
|
+
* @nullable
|
|
469
|
+
*/
|
|
470
|
+
export type WealthboxGetContacts200 = unknown | null;
|
|
471
|
+
export type WealthboxGetContactsParams = {
|
|
472
|
+
page?: number | null;
|
|
473
|
+
per_page?: number | null;
|
|
474
|
+
};
|
|
1
475
|
export type WealthboxOauthCallback200 = {
|
|
2
476
|
success: boolean;
|
|
3
477
|
userId: string;
|
|
@@ -293,6 +767,23 @@ export type OpenaiCreateStreamBodyOptions = {
|
|
|
293
767
|
*/
|
|
294
768
|
topP?: number;
|
|
295
769
|
};
|
|
770
|
+
export type OpenaiCreateStreamBody = {
|
|
771
|
+
/**
|
|
772
|
+
* Array of chat messages
|
|
773
|
+
* @minItems 1
|
|
774
|
+
*/
|
|
775
|
+
messages: OpenaiCreateStreamBodyMessagesItem[];
|
|
776
|
+
/** Specific model to use (defaults to resolved OpenAI model) */
|
|
777
|
+
model?: string;
|
|
778
|
+
options?: OpenaiCreateStreamBodyOptions;
|
|
779
|
+
/**
|
|
780
|
+
* Schema for structured output
|
|
781
|
+
* @nullable
|
|
782
|
+
*/
|
|
783
|
+
outputSchema?: OpenaiCreateStreamBodyOutputSchema;
|
|
784
|
+
/** Required when the OpenAI integration config type is PerUser. */
|
|
785
|
+
userId?: string;
|
|
786
|
+
};
|
|
296
787
|
/**
|
|
297
788
|
* Role of the message sender
|
|
298
789
|
*/
|
|
@@ -322,23 +813,6 @@ export type OpenaiCreateStreamBodyMessagesItem = {
|
|
|
322
813
|
/** Role of the message sender */
|
|
323
814
|
role: OpenaiCreateStreamBodyMessagesItemRole;
|
|
324
815
|
};
|
|
325
|
-
export type OpenaiCreateStreamBody = {
|
|
326
|
-
/**
|
|
327
|
-
* Array of chat messages
|
|
328
|
-
* @minItems 1
|
|
329
|
-
*/
|
|
330
|
-
messages: OpenaiCreateStreamBodyMessagesItem[];
|
|
331
|
-
/** Specific model to use (defaults to resolved OpenAI model) */
|
|
332
|
-
model?: string;
|
|
333
|
-
options?: OpenaiCreateStreamBodyOptions;
|
|
334
|
-
/**
|
|
335
|
-
* Schema for structured output
|
|
336
|
-
* @nullable
|
|
337
|
-
*/
|
|
338
|
-
outputSchema?: OpenaiCreateStreamBodyOutputSchema;
|
|
339
|
-
/** Required when the OpenAI integration config type is PerUser. */
|
|
340
|
-
userId?: string;
|
|
341
|
-
};
|
|
342
816
|
/**
|
|
343
817
|
* Structured output if schema provided
|
|
344
818
|
* @nullable
|
|
@@ -640,6 +1114,23 @@ export type GoogleGenerativeAIGenerateTextBodyOptions = {
|
|
|
640
1114
|
*/
|
|
641
1115
|
topP?: number;
|
|
642
1116
|
};
|
|
1117
|
+
export type GoogleGenerativeAIGenerateTextBody = {
|
|
1118
|
+
/**
|
|
1119
|
+
* Array of chat messages
|
|
1120
|
+
* @minItems 1
|
|
1121
|
+
*/
|
|
1122
|
+
messages: GoogleGenerativeAIGenerateTextBodyMessagesItem[];
|
|
1123
|
+
/** Specific model to use (defaults to resolved Google model) */
|
|
1124
|
+
model?: string;
|
|
1125
|
+
options?: GoogleGenerativeAIGenerateTextBodyOptions;
|
|
1126
|
+
/**
|
|
1127
|
+
* Schema for structured output
|
|
1128
|
+
* @nullable
|
|
1129
|
+
*/
|
|
1130
|
+
outputSchema?: GoogleGenerativeAIGenerateTextBodyOutputSchema;
|
|
1131
|
+
/** Required when the Google Generative AI integration config type is PerUser. */
|
|
1132
|
+
userId?: string;
|
|
1133
|
+
};
|
|
643
1134
|
/**
|
|
644
1135
|
* Role of the message sender
|
|
645
1136
|
*/
|
|
@@ -669,23 +1160,6 @@ export type GoogleGenerativeAIGenerateTextBodyMessagesItem = {
|
|
|
669
1160
|
/** Role of the message sender */
|
|
670
1161
|
role: GoogleGenerativeAIGenerateTextBodyMessagesItemRole;
|
|
671
1162
|
};
|
|
672
|
-
export type GoogleGenerativeAIGenerateTextBody = {
|
|
673
|
-
/**
|
|
674
|
-
* Array of chat messages
|
|
675
|
-
* @minItems 1
|
|
676
|
-
*/
|
|
677
|
-
messages: GoogleGenerativeAIGenerateTextBodyMessagesItem[];
|
|
678
|
-
/** Specific model to use (defaults to resolved Google model) */
|
|
679
|
-
model?: string;
|
|
680
|
-
options?: GoogleGenerativeAIGenerateTextBodyOptions;
|
|
681
|
-
/**
|
|
682
|
-
* Schema for structured output
|
|
683
|
-
* @nullable
|
|
684
|
-
*/
|
|
685
|
-
outputSchema?: GoogleGenerativeAIGenerateTextBodyOutputSchema;
|
|
686
|
-
/** Required when the Google Generative AI integration config type is PerUser. */
|
|
687
|
-
userId?: string;
|
|
688
|
-
};
|
|
689
1163
|
export type GoogleGenerativeAISetUserCredentials200 = {
|
|
690
1164
|
userId: string;
|
|
691
1165
|
};
|
|
@@ -1409,6 +1883,51 @@ export declare const getIntegrationsAPI: () => {
|
|
|
1409
1883
|
twilioWhatsappCreateMessage: (twilioWhatsappCreateMessageBody: TwilioWhatsappCreateMessageBody) => Promise<TwilioWhatsappCreateMessage200>;
|
|
1410
1884
|
wealthboxOauthInitiate: (wealthboxOauthInitiateBody: WealthboxOauthInitiateBody) => Promise<WealthboxOauthInitiate200>;
|
|
1411
1885
|
wealthboxOauthCallback: (params?: WealthboxOauthCallbackParams) => Promise<WealthboxOauthCallback200>;
|
|
1886
|
+
wealthboxGetContacts: (params?: WealthboxGetContactsParams) => Promise<unknown>;
|
|
1887
|
+
wealthboxCreateContact: (wealthboxCreateContactBody: WealthboxCreateContactBody) => Promise<unknown>;
|
|
1888
|
+
wealthboxGetContact: (wealthboxGetContactBody: WealthboxGetContactBody) => Promise<unknown>;
|
|
1889
|
+
wealthboxUpdateContact: (wealthboxUpdateContactBody: WealthboxUpdateContactBody) => Promise<unknown>;
|
|
1890
|
+
wealthboxDeleteContact: (wealthboxDeleteContactBody: WealthboxDeleteContactBody) => Promise<void>;
|
|
1891
|
+
wealthboxGetTasks: (params?: WealthboxGetTasksParams) => Promise<unknown>;
|
|
1892
|
+
wealthboxCreateTask: (wealthboxCreateTaskBody: WealthboxCreateTaskBody) => Promise<unknown>;
|
|
1893
|
+
wealthboxGetTask: (wealthboxGetTaskBody: WealthboxGetTaskBody) => Promise<unknown>;
|
|
1894
|
+
wealthboxUpdateTask: (wealthboxUpdateTaskBody: WealthboxUpdateTaskBody) => Promise<unknown>;
|
|
1895
|
+
wealthboxDeleteTask: (wealthboxDeleteTaskBody: WealthboxDeleteTaskBody) => Promise<void>;
|
|
1896
|
+
wealthboxGetEvents: (params?: WealthboxGetEventsParams) => Promise<unknown>;
|
|
1897
|
+
wealthboxCreateEvent: (wealthboxCreateEventBody: WealthboxCreateEventBody) => Promise<unknown>;
|
|
1898
|
+
wealthboxGetEvent: (wealthboxGetEventBody: WealthboxGetEventBody) => Promise<unknown>;
|
|
1899
|
+
wealthboxUpdateEvent: (wealthboxUpdateEventBody: WealthboxUpdateEventBody) => Promise<unknown>;
|
|
1900
|
+
wealthboxDeleteEvent: (wealthboxDeleteEventBody: WealthboxDeleteEventBody) => Promise<void>;
|
|
1901
|
+
wealthboxGetOpportunities: (params?: WealthboxGetOpportunitiesParams) => Promise<unknown>;
|
|
1902
|
+
wealthboxCreateOpportunity: (wealthboxCreateOpportunityBody: WealthboxCreateOpportunityBody) => Promise<unknown>;
|
|
1903
|
+
wealthboxGetOpportunity: (wealthboxGetOpportunityBody: WealthboxGetOpportunityBody) => Promise<unknown>;
|
|
1904
|
+
wealthboxUpdateOpportunity: (wealthboxUpdateOpportunityBody: WealthboxUpdateOpportunityBody) => Promise<unknown>;
|
|
1905
|
+
wealthboxDeleteOpportunity: (wealthboxDeleteOpportunityBody: WealthboxDeleteOpportunityBody) => Promise<void>;
|
|
1906
|
+
wealthboxGetNotes: (params?: WealthboxGetNotesParams) => Promise<unknown>;
|
|
1907
|
+
wealthboxCreateNote: (wealthboxCreateNoteBody: WealthboxCreateNoteBody) => Promise<unknown>;
|
|
1908
|
+
wealthboxGetNote: (wealthboxGetNoteBody: WealthboxGetNoteBody) => Promise<unknown>;
|
|
1909
|
+
wealthboxUpdateNote: (wealthboxUpdateNoteBody: WealthboxUpdateNoteBody) => Promise<unknown>;
|
|
1910
|
+
wealthboxGetProjects: (params?: WealthboxGetProjectsParams) => Promise<unknown>;
|
|
1911
|
+
wealthboxCreateProject: (wealthboxCreateProjectBody: WealthboxCreateProjectBody) => Promise<unknown>;
|
|
1912
|
+
wealthboxGetProject: (wealthboxGetProjectBody: WealthboxGetProjectBody) => Promise<unknown>;
|
|
1913
|
+
wealthboxUpdateProject: (wealthboxUpdateProjectBody: WealthboxUpdateProjectBody) => Promise<unknown>;
|
|
1914
|
+
wealthboxDeleteProject: (wealthboxDeleteProjectBody: WealthboxDeleteProjectBody) => Promise<void>;
|
|
1915
|
+
wealthboxGetWorkflows: (params?: WealthboxGetWorkflowsParams) => Promise<unknown>;
|
|
1916
|
+
wealthboxCreateWorkflow: (wealthboxCreateWorkflowBody: WealthboxCreateWorkflowBody) => Promise<unknown>;
|
|
1917
|
+
wealthboxGetWorkflow: (wealthboxGetWorkflowBody: WealthboxGetWorkflowBody) => Promise<unknown>;
|
|
1918
|
+
wealthboxDeleteWorkflow: (wealthboxDeleteWorkflowBody: WealthboxDeleteWorkflowBody) => Promise<void>;
|
|
1919
|
+
wealthboxCompleteWorkflowStep: (wealthboxCompleteWorkflowStepBody: WealthboxCompleteWorkflowStepBody) => Promise<unknown>;
|
|
1920
|
+
wealthboxRevertWorkflowStep: (wealthboxRevertWorkflowStepBody: WealthboxRevertWorkflowStepBody) => Promise<unknown>;
|
|
1921
|
+
wealthboxAddHouseholdMember: (wealthboxAddHouseholdMemberBody: WealthboxAddHouseholdMemberBody) => Promise<unknown>;
|
|
1922
|
+
wealthboxRemoveHouseholdMember: (wealthboxRemoveHouseholdMemberBody: WealthboxRemoveHouseholdMemberBody) => Promise<void>;
|
|
1923
|
+
wealthboxGetMe: () => Promise<unknown>;
|
|
1924
|
+
wealthboxGetUsers: (params?: WealthboxGetUsersParams) => Promise<unknown>;
|
|
1925
|
+
wealthboxGetTeams: (params?: WealthboxGetTeamsParams) => Promise<unknown>;
|
|
1926
|
+
wealthboxGetTags: (params?: WealthboxGetTagsParams) => Promise<unknown>;
|
|
1927
|
+
wealthboxGetCustomFields: (params?: WealthboxGetCustomFieldsParams) => Promise<unknown>;
|
|
1928
|
+
wealthboxGetContactRoles: (params?: WealthboxGetContactRolesParams) => Promise<unknown>;
|
|
1929
|
+
wealthboxGetWorkflowTemplates: (params?: WealthboxGetWorkflowTemplatesParams) => Promise<unknown>;
|
|
1930
|
+
wealthboxGetActivity: (params?: WealthboxGetActivityParams) => Promise<unknown>;
|
|
1412
1931
|
};
|
|
1413
1932
|
export type AnthropicSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['anthropicSetUserCredentials']>>>;
|
|
1414
1933
|
export type AnthropicGenerateTextResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['anthropicGenerateText']>>>;
|
|
@@ -1479,4 +1998,49 @@ export type TwilioWhatsappSetUserCredentialsResult = NonNullable<Awaited<ReturnT
|
|
|
1479
1998
|
export type TwilioWhatsappCreateMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['twilioWhatsappCreateMessage']>>>;
|
|
1480
1999
|
export type WealthboxOauthInitiateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxOauthInitiate']>>>;
|
|
1481
2000
|
export type WealthboxOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxOauthCallback']>>>;
|
|
2001
|
+
export type WealthboxGetContactsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetContacts']>>>;
|
|
2002
|
+
export type WealthboxCreateContactResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateContact']>>>;
|
|
2003
|
+
export type WealthboxGetContactResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetContact']>>>;
|
|
2004
|
+
export type WealthboxUpdateContactResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateContact']>>>;
|
|
2005
|
+
export type WealthboxDeleteContactResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteContact']>>>;
|
|
2006
|
+
export type WealthboxGetTasksResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetTasks']>>>;
|
|
2007
|
+
export type WealthboxCreateTaskResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateTask']>>>;
|
|
2008
|
+
export type WealthboxGetTaskResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetTask']>>>;
|
|
2009
|
+
export type WealthboxUpdateTaskResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateTask']>>>;
|
|
2010
|
+
export type WealthboxDeleteTaskResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteTask']>>>;
|
|
2011
|
+
export type WealthboxGetEventsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetEvents']>>>;
|
|
2012
|
+
export type WealthboxCreateEventResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateEvent']>>>;
|
|
2013
|
+
export type WealthboxGetEventResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetEvent']>>>;
|
|
2014
|
+
export type WealthboxUpdateEventResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateEvent']>>>;
|
|
2015
|
+
export type WealthboxDeleteEventResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteEvent']>>>;
|
|
2016
|
+
export type WealthboxGetOpportunitiesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetOpportunities']>>>;
|
|
2017
|
+
export type WealthboxCreateOpportunityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateOpportunity']>>>;
|
|
2018
|
+
export type WealthboxGetOpportunityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetOpportunity']>>>;
|
|
2019
|
+
export type WealthboxUpdateOpportunityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateOpportunity']>>>;
|
|
2020
|
+
export type WealthboxDeleteOpportunityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteOpportunity']>>>;
|
|
2021
|
+
export type WealthboxGetNotesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetNotes']>>>;
|
|
2022
|
+
export type WealthboxCreateNoteResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateNote']>>>;
|
|
2023
|
+
export type WealthboxGetNoteResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetNote']>>>;
|
|
2024
|
+
export type WealthboxUpdateNoteResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateNote']>>>;
|
|
2025
|
+
export type WealthboxGetProjectsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetProjects']>>>;
|
|
2026
|
+
export type WealthboxCreateProjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateProject']>>>;
|
|
2027
|
+
export type WealthboxGetProjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetProject']>>>;
|
|
2028
|
+
export type WealthboxUpdateProjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateProject']>>>;
|
|
2029
|
+
export type WealthboxDeleteProjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteProject']>>>;
|
|
2030
|
+
export type WealthboxGetWorkflowsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetWorkflows']>>>;
|
|
2031
|
+
export type WealthboxCreateWorkflowResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateWorkflow']>>>;
|
|
2032
|
+
export type WealthboxGetWorkflowResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetWorkflow']>>>;
|
|
2033
|
+
export type WealthboxDeleteWorkflowResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteWorkflow']>>>;
|
|
2034
|
+
export type WealthboxCompleteWorkflowStepResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCompleteWorkflowStep']>>>;
|
|
2035
|
+
export type WealthboxRevertWorkflowStepResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxRevertWorkflowStep']>>>;
|
|
2036
|
+
export type WealthboxAddHouseholdMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxAddHouseholdMember']>>>;
|
|
2037
|
+
export type WealthboxRemoveHouseholdMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxRemoveHouseholdMember']>>>;
|
|
2038
|
+
export type WealthboxGetMeResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetMe']>>>;
|
|
2039
|
+
export type WealthboxGetUsersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetUsers']>>>;
|
|
2040
|
+
export type WealthboxGetTeamsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetTeams']>>>;
|
|
2041
|
+
export type WealthboxGetTagsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetTags']>>>;
|
|
2042
|
+
export type WealthboxGetCustomFieldsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetCustomFields']>>>;
|
|
2043
|
+
export type WealthboxGetContactRolesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetContactRoles']>>>;
|
|
2044
|
+
export type WealthboxGetWorkflowTemplatesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetWorkflowTemplates']>>>;
|
|
2045
|
+
export type WealthboxGetActivityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetActivity']>>>;
|
|
1482
2046
|
//# sourceMappingURL=generated-api.d.ts.map
|