@uptiqai/integrations-sdk 1.0.19 → 1.0.20
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 +486 -34
- package/dist/generated-api.d.ts.map +1 -1
- package/dist/generated-api.js +358 -1
- package/dist/generated-api.js.map +1 -1
- package/dist/index.d.ts +81 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +170 -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,365 @@
|
|
|
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
|
+
/**
|
|
62
|
+
* @nullable
|
|
63
|
+
*/
|
|
64
|
+
export type WealthboxAddHouseholdMember201 = unknown | null;
|
|
65
|
+
export type WealthboxAddHouseholdMemberBodyAllOfTwo = {
|
|
66
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
67
|
+
userId?: string;
|
|
68
|
+
};
|
|
69
|
+
export type WealthboxAddHouseholdMemberBodyAllOf = {
|
|
70
|
+
[key: string]: unknown | null;
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
74
|
+
*/
|
|
75
|
+
export type WealthboxAddHouseholdMemberBody = WealthboxAddHouseholdMemberBodyAllOf & WealthboxAddHouseholdMemberBodyAllOfTwo;
|
|
76
|
+
/**
|
|
77
|
+
* @nullable
|
|
78
|
+
*/
|
|
79
|
+
export type WealthboxRevertWorkflowStep200 = unknown | null;
|
|
80
|
+
/**
|
|
81
|
+
* @nullable
|
|
82
|
+
*/
|
|
83
|
+
export type WealthboxCompleteWorkflowStep200 = unknown | null;
|
|
84
|
+
/**
|
|
85
|
+
* @nullable
|
|
86
|
+
*/
|
|
87
|
+
export type WealthboxGetWorkflow200 = unknown | null;
|
|
88
|
+
/**
|
|
89
|
+
* @nullable
|
|
90
|
+
*/
|
|
91
|
+
export type WealthboxCreateWorkflow201 = unknown | null;
|
|
92
|
+
export type WealthboxCreateWorkflowBodyAllOfTwo = {
|
|
93
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
94
|
+
userId?: string;
|
|
95
|
+
};
|
|
96
|
+
export type WealthboxCreateWorkflowBodyAllOf = {
|
|
97
|
+
[key: string]: unknown | null;
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
101
|
+
*/
|
|
102
|
+
export type WealthboxCreateWorkflowBody = WealthboxCreateWorkflowBodyAllOf & WealthboxCreateWorkflowBodyAllOfTwo;
|
|
103
|
+
/**
|
|
104
|
+
* @nullable
|
|
105
|
+
*/
|
|
106
|
+
export type WealthboxGetWorkflows200 = unknown | null;
|
|
107
|
+
export type WealthboxGetWorkflowsParams = {
|
|
108
|
+
page?: number | null;
|
|
109
|
+
per_page?: number | null;
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* @nullable
|
|
113
|
+
*/
|
|
114
|
+
export type WealthboxUpdateProject200 = unknown | null;
|
|
115
|
+
export type WealthboxUpdateProjectBodyAllOfTwo = {
|
|
116
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
117
|
+
userId?: string;
|
|
118
|
+
};
|
|
119
|
+
export type WealthboxUpdateProjectBodyAllOf = {
|
|
120
|
+
[key: string]: unknown | null;
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
124
|
+
*/
|
|
125
|
+
export type WealthboxUpdateProjectBody = WealthboxUpdateProjectBodyAllOf & WealthboxUpdateProjectBodyAllOfTwo;
|
|
126
|
+
/**
|
|
127
|
+
* @nullable
|
|
128
|
+
*/
|
|
129
|
+
export type WealthboxGetProject200 = unknown | null;
|
|
130
|
+
/**
|
|
131
|
+
* @nullable
|
|
132
|
+
*/
|
|
133
|
+
export type WealthboxCreateProject201 = unknown | null;
|
|
134
|
+
export type WealthboxCreateProjectBodyAllOfTwo = {
|
|
135
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
136
|
+
userId?: string;
|
|
137
|
+
};
|
|
138
|
+
export type WealthboxCreateProjectBodyAllOf = {
|
|
139
|
+
[key: string]: unknown | null;
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
143
|
+
*/
|
|
144
|
+
export type WealthboxCreateProjectBody = WealthboxCreateProjectBodyAllOf & WealthboxCreateProjectBodyAllOfTwo;
|
|
145
|
+
/**
|
|
146
|
+
* @nullable
|
|
147
|
+
*/
|
|
148
|
+
export type WealthboxGetProjects200 = unknown | null;
|
|
149
|
+
export type WealthboxGetProjectsParams = {
|
|
150
|
+
page?: number | null;
|
|
151
|
+
per_page?: number | null;
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* @nullable
|
|
155
|
+
*/
|
|
156
|
+
export type WealthboxUpdateNote200 = unknown | null;
|
|
157
|
+
export type WealthboxUpdateNoteBodyAllOfTwo = {
|
|
158
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
159
|
+
userId?: string;
|
|
160
|
+
};
|
|
161
|
+
export type WealthboxUpdateNoteBodyAllOf = {
|
|
162
|
+
[key: string]: unknown | null;
|
|
163
|
+
};
|
|
164
|
+
/**
|
|
165
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
166
|
+
*/
|
|
167
|
+
export type WealthboxUpdateNoteBody = WealthboxUpdateNoteBodyAllOf & WealthboxUpdateNoteBodyAllOfTwo;
|
|
168
|
+
/**
|
|
169
|
+
* @nullable
|
|
170
|
+
*/
|
|
171
|
+
export type WealthboxGetNote200 = unknown | null;
|
|
172
|
+
/**
|
|
173
|
+
* @nullable
|
|
174
|
+
*/
|
|
175
|
+
export type WealthboxCreateNote201 = unknown | null;
|
|
176
|
+
export type WealthboxCreateNoteBodyAllOfTwo = {
|
|
177
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
178
|
+
userId?: string;
|
|
179
|
+
};
|
|
180
|
+
export type WealthboxCreateNoteBodyAllOf = {
|
|
181
|
+
[key: string]: unknown | null;
|
|
182
|
+
};
|
|
183
|
+
/**
|
|
184
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
185
|
+
*/
|
|
186
|
+
export type WealthboxCreateNoteBody = WealthboxCreateNoteBodyAllOf & WealthboxCreateNoteBodyAllOfTwo;
|
|
187
|
+
/**
|
|
188
|
+
* @nullable
|
|
189
|
+
*/
|
|
190
|
+
export type WealthboxGetNotes200 = unknown | null;
|
|
191
|
+
export type WealthboxGetNotesParams = {
|
|
192
|
+
page?: number | null;
|
|
193
|
+
per_page?: number | null;
|
|
194
|
+
};
|
|
195
|
+
/**
|
|
196
|
+
* @nullable
|
|
197
|
+
*/
|
|
198
|
+
export type WealthboxUpdateOpportunity200 = unknown | null;
|
|
199
|
+
export type WealthboxUpdateOpportunityBodyAllOfTwo = {
|
|
200
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
201
|
+
userId?: string;
|
|
202
|
+
};
|
|
203
|
+
export type WealthboxUpdateOpportunityBodyAllOf = {
|
|
204
|
+
[key: string]: unknown | null;
|
|
205
|
+
};
|
|
206
|
+
/**
|
|
207
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
208
|
+
*/
|
|
209
|
+
export type WealthboxUpdateOpportunityBody = WealthboxUpdateOpportunityBodyAllOf & WealthboxUpdateOpportunityBodyAllOfTwo;
|
|
210
|
+
/**
|
|
211
|
+
* @nullable
|
|
212
|
+
*/
|
|
213
|
+
export type WealthboxGetOpportunity200 = unknown | null;
|
|
214
|
+
/**
|
|
215
|
+
* @nullable
|
|
216
|
+
*/
|
|
217
|
+
export type WealthboxCreateOpportunity201 = unknown | null;
|
|
218
|
+
export type WealthboxCreateOpportunityBodyAllOfTwo = {
|
|
219
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
220
|
+
userId?: string;
|
|
221
|
+
};
|
|
222
|
+
export type WealthboxCreateOpportunityBodyAllOf = {
|
|
223
|
+
[key: string]: unknown | null;
|
|
224
|
+
};
|
|
225
|
+
/**
|
|
226
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
227
|
+
*/
|
|
228
|
+
export type WealthboxCreateOpportunityBody = WealthboxCreateOpportunityBodyAllOf & WealthboxCreateOpportunityBodyAllOfTwo;
|
|
229
|
+
/**
|
|
230
|
+
* @nullable
|
|
231
|
+
*/
|
|
232
|
+
export type WealthboxGetOpportunities200 = unknown | null;
|
|
233
|
+
export type WealthboxGetOpportunitiesParams = {
|
|
234
|
+
page?: number | null;
|
|
235
|
+
per_page?: number | null;
|
|
236
|
+
};
|
|
237
|
+
/**
|
|
238
|
+
* @nullable
|
|
239
|
+
*/
|
|
240
|
+
export type WealthboxUpdateEvent200 = unknown | null;
|
|
241
|
+
export type WealthboxUpdateEventBodyAllOfTwo = {
|
|
242
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
243
|
+
userId?: string;
|
|
244
|
+
};
|
|
245
|
+
export type WealthboxUpdateEventBodyAllOf = {
|
|
246
|
+
[key: string]: unknown | null;
|
|
247
|
+
};
|
|
248
|
+
/**
|
|
249
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
250
|
+
*/
|
|
251
|
+
export type WealthboxUpdateEventBody = WealthboxUpdateEventBodyAllOf & WealthboxUpdateEventBodyAllOfTwo;
|
|
252
|
+
/**
|
|
253
|
+
* @nullable
|
|
254
|
+
*/
|
|
255
|
+
export type WealthboxGetEvent200 = unknown | null;
|
|
256
|
+
/**
|
|
257
|
+
* @nullable
|
|
258
|
+
*/
|
|
259
|
+
export type WealthboxCreateEvent201 = unknown | null;
|
|
260
|
+
export type WealthboxCreateEventBodyAllOfTwo = {
|
|
261
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
262
|
+
userId?: string;
|
|
263
|
+
};
|
|
264
|
+
export type WealthboxCreateEventBodyAllOf = {
|
|
265
|
+
[key: string]: unknown | null;
|
|
266
|
+
};
|
|
267
|
+
/**
|
|
268
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
269
|
+
*/
|
|
270
|
+
export type WealthboxCreateEventBody = WealthboxCreateEventBodyAllOf & WealthboxCreateEventBodyAllOfTwo;
|
|
271
|
+
/**
|
|
272
|
+
* @nullable
|
|
273
|
+
*/
|
|
274
|
+
export type WealthboxGetEvents200 = unknown | null;
|
|
275
|
+
export type WealthboxGetEventsParams = {
|
|
276
|
+
page?: number | null;
|
|
277
|
+
per_page?: number | null;
|
|
278
|
+
};
|
|
279
|
+
/**
|
|
280
|
+
* @nullable
|
|
281
|
+
*/
|
|
282
|
+
export type WealthboxUpdateTask200 = unknown | null;
|
|
283
|
+
export type WealthboxUpdateTaskBodyAllOfTwo = {
|
|
284
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
285
|
+
userId?: string;
|
|
286
|
+
};
|
|
287
|
+
export type WealthboxUpdateTaskBodyAllOf = {
|
|
288
|
+
[key: string]: unknown | null;
|
|
289
|
+
};
|
|
290
|
+
/**
|
|
291
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
292
|
+
*/
|
|
293
|
+
export type WealthboxUpdateTaskBody = WealthboxUpdateTaskBodyAllOf & WealthboxUpdateTaskBodyAllOfTwo;
|
|
294
|
+
/**
|
|
295
|
+
* @nullable
|
|
296
|
+
*/
|
|
297
|
+
export type WealthboxGetTask200 = unknown | null;
|
|
298
|
+
/**
|
|
299
|
+
* @nullable
|
|
300
|
+
*/
|
|
301
|
+
export type WealthboxCreateTask201 = unknown | null;
|
|
302
|
+
export type WealthboxCreateTaskBodyAllOfTwo = {
|
|
303
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
304
|
+
userId?: string;
|
|
305
|
+
};
|
|
306
|
+
export type WealthboxCreateTaskBodyAllOf = {
|
|
307
|
+
[key: string]: unknown | null;
|
|
308
|
+
};
|
|
309
|
+
/**
|
|
310
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
311
|
+
*/
|
|
312
|
+
export type WealthboxCreateTaskBody = WealthboxCreateTaskBodyAllOf & WealthboxCreateTaskBodyAllOfTwo;
|
|
313
|
+
/**
|
|
314
|
+
* @nullable
|
|
315
|
+
*/
|
|
316
|
+
export type WealthboxGetTasks200 = unknown | null;
|
|
317
|
+
export type WealthboxGetTasksParams = {
|
|
318
|
+
page?: number | null;
|
|
319
|
+
per_page?: number | null;
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* @nullable
|
|
323
|
+
*/
|
|
324
|
+
export type WealthboxUpdateContact200 = unknown | null;
|
|
325
|
+
export type WealthboxUpdateContactBodyAllOfTwo = {
|
|
326
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
327
|
+
userId?: string;
|
|
328
|
+
};
|
|
329
|
+
export type WealthboxUpdateContactBodyAllOf = {
|
|
330
|
+
[key: string]: unknown | null;
|
|
331
|
+
};
|
|
332
|
+
/**
|
|
333
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
334
|
+
*/
|
|
335
|
+
export type WealthboxUpdateContactBody = WealthboxUpdateContactBodyAllOf & WealthboxUpdateContactBodyAllOfTwo;
|
|
336
|
+
/**
|
|
337
|
+
* @nullable
|
|
338
|
+
*/
|
|
339
|
+
export type WealthboxGetContact200 = unknown | null;
|
|
340
|
+
/**
|
|
341
|
+
* @nullable
|
|
342
|
+
*/
|
|
343
|
+
export type WealthboxCreateContact201 = unknown | null;
|
|
344
|
+
export type WealthboxCreateContactBodyAllOfTwo = {
|
|
345
|
+
/** Required when the Wealthbox integration config type is PerUser. */
|
|
346
|
+
userId?: string;
|
|
347
|
+
};
|
|
348
|
+
export type WealthboxCreateContactBodyAllOf = {
|
|
349
|
+
[key: string]: unknown | null;
|
|
350
|
+
};
|
|
351
|
+
/**
|
|
352
|
+
* Pass-through request payload for Wealthbox write endpoints
|
|
353
|
+
*/
|
|
354
|
+
export type WealthboxCreateContactBody = WealthboxCreateContactBodyAllOf & WealthboxCreateContactBodyAllOfTwo;
|
|
355
|
+
/**
|
|
356
|
+
* @nullable
|
|
357
|
+
*/
|
|
358
|
+
export type WealthboxGetContacts200 = unknown | null;
|
|
359
|
+
export type WealthboxGetContactsParams = {
|
|
360
|
+
page?: number | null;
|
|
361
|
+
per_page?: number | null;
|
|
362
|
+
};
|
|
1
363
|
export type WealthboxOauthCallback200 = {
|
|
2
364
|
success: boolean;
|
|
3
365
|
userId: string;
|
|
@@ -293,6 +655,23 @@ export type OpenaiCreateStreamBodyOptions = {
|
|
|
293
655
|
*/
|
|
294
656
|
topP?: number;
|
|
295
657
|
};
|
|
658
|
+
export type OpenaiCreateStreamBody = {
|
|
659
|
+
/**
|
|
660
|
+
* Array of chat messages
|
|
661
|
+
* @minItems 1
|
|
662
|
+
*/
|
|
663
|
+
messages: OpenaiCreateStreamBodyMessagesItem[];
|
|
664
|
+
/** Specific model to use (defaults to resolved OpenAI model) */
|
|
665
|
+
model?: string;
|
|
666
|
+
options?: OpenaiCreateStreamBodyOptions;
|
|
667
|
+
/**
|
|
668
|
+
* Schema for structured output
|
|
669
|
+
* @nullable
|
|
670
|
+
*/
|
|
671
|
+
outputSchema?: OpenaiCreateStreamBodyOutputSchema;
|
|
672
|
+
/** Required when the OpenAI integration config type is PerUser. */
|
|
673
|
+
userId?: string;
|
|
674
|
+
};
|
|
296
675
|
/**
|
|
297
676
|
* Role of the message sender
|
|
298
677
|
*/
|
|
@@ -322,23 +701,6 @@ export type OpenaiCreateStreamBodyMessagesItem = {
|
|
|
322
701
|
/** Role of the message sender */
|
|
323
702
|
role: OpenaiCreateStreamBodyMessagesItemRole;
|
|
324
703
|
};
|
|
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
704
|
/**
|
|
343
705
|
* Structured output if schema provided
|
|
344
706
|
* @nullable
|
|
@@ -640,6 +1002,23 @@ export type GoogleGenerativeAIGenerateTextBodyOptions = {
|
|
|
640
1002
|
*/
|
|
641
1003
|
topP?: number;
|
|
642
1004
|
};
|
|
1005
|
+
export type GoogleGenerativeAIGenerateTextBody = {
|
|
1006
|
+
/**
|
|
1007
|
+
* Array of chat messages
|
|
1008
|
+
* @minItems 1
|
|
1009
|
+
*/
|
|
1010
|
+
messages: GoogleGenerativeAIGenerateTextBodyMessagesItem[];
|
|
1011
|
+
/** Specific model to use (defaults to resolved Google model) */
|
|
1012
|
+
model?: string;
|
|
1013
|
+
options?: GoogleGenerativeAIGenerateTextBodyOptions;
|
|
1014
|
+
/**
|
|
1015
|
+
* Schema for structured output
|
|
1016
|
+
* @nullable
|
|
1017
|
+
*/
|
|
1018
|
+
outputSchema?: GoogleGenerativeAIGenerateTextBodyOutputSchema;
|
|
1019
|
+
/** Required when the Google Generative AI integration config type is PerUser. */
|
|
1020
|
+
userId?: string;
|
|
1021
|
+
};
|
|
643
1022
|
/**
|
|
644
1023
|
* Role of the message sender
|
|
645
1024
|
*/
|
|
@@ -669,23 +1048,6 @@ export type GoogleGenerativeAIGenerateTextBodyMessagesItem = {
|
|
|
669
1048
|
/** Role of the message sender */
|
|
670
1049
|
role: GoogleGenerativeAIGenerateTextBodyMessagesItemRole;
|
|
671
1050
|
};
|
|
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
1051
|
export type GoogleGenerativeAISetUserCredentials200 = {
|
|
690
1052
|
userId: string;
|
|
691
1053
|
};
|
|
@@ -1409,6 +1771,51 @@ export declare const getIntegrationsAPI: () => {
|
|
|
1409
1771
|
twilioWhatsappCreateMessage: (twilioWhatsappCreateMessageBody: TwilioWhatsappCreateMessageBody) => Promise<TwilioWhatsappCreateMessage200>;
|
|
1410
1772
|
wealthboxOauthInitiate: (wealthboxOauthInitiateBody: WealthboxOauthInitiateBody) => Promise<WealthboxOauthInitiate200>;
|
|
1411
1773
|
wealthboxOauthCallback: (params?: WealthboxOauthCallbackParams) => Promise<WealthboxOauthCallback200>;
|
|
1774
|
+
wealthboxGetContacts: (params?: WealthboxGetContactsParams) => Promise<unknown>;
|
|
1775
|
+
wealthboxCreateContact: (wealthboxCreateContactBody: WealthboxCreateContactBody) => Promise<unknown>;
|
|
1776
|
+
wealthboxGetContact: (id: string) => Promise<unknown>;
|
|
1777
|
+
wealthboxUpdateContact: (id: string, wealthboxUpdateContactBody: WealthboxUpdateContactBody) => Promise<unknown>;
|
|
1778
|
+
wealthboxDeleteContact: (id: string) => Promise<void>;
|
|
1779
|
+
wealthboxGetTasks: (params?: WealthboxGetTasksParams) => Promise<unknown>;
|
|
1780
|
+
wealthboxCreateTask: (wealthboxCreateTaskBody: WealthboxCreateTaskBody) => Promise<unknown>;
|
|
1781
|
+
wealthboxGetTask: (id: string) => Promise<unknown>;
|
|
1782
|
+
wealthboxUpdateTask: (id: string, wealthboxUpdateTaskBody: WealthboxUpdateTaskBody) => Promise<unknown>;
|
|
1783
|
+
wealthboxDeleteTask: (id: string) => Promise<void>;
|
|
1784
|
+
wealthboxGetEvents: (params?: WealthboxGetEventsParams) => Promise<unknown>;
|
|
1785
|
+
wealthboxCreateEvent: (wealthboxCreateEventBody: WealthboxCreateEventBody) => Promise<unknown>;
|
|
1786
|
+
wealthboxGetEvent: (id: string) => Promise<unknown>;
|
|
1787
|
+
wealthboxUpdateEvent: (id: string, wealthboxUpdateEventBody: WealthboxUpdateEventBody) => Promise<unknown>;
|
|
1788
|
+
wealthboxDeleteEvent: (id: string) => Promise<void>;
|
|
1789
|
+
wealthboxGetOpportunities: (params?: WealthboxGetOpportunitiesParams) => Promise<unknown>;
|
|
1790
|
+
wealthboxCreateOpportunity: (wealthboxCreateOpportunityBody: WealthboxCreateOpportunityBody) => Promise<unknown>;
|
|
1791
|
+
wealthboxGetOpportunity: (id: string) => Promise<unknown>;
|
|
1792
|
+
wealthboxUpdateOpportunity: (id: string, wealthboxUpdateOpportunityBody: WealthboxUpdateOpportunityBody) => Promise<unknown>;
|
|
1793
|
+
wealthboxDeleteOpportunity: (id: string) => Promise<void>;
|
|
1794
|
+
wealthboxGetNotes: (params?: WealthboxGetNotesParams) => Promise<unknown>;
|
|
1795
|
+
wealthboxCreateNote: (wealthboxCreateNoteBody: WealthboxCreateNoteBody) => Promise<unknown>;
|
|
1796
|
+
wealthboxGetNote: (id: string) => Promise<unknown>;
|
|
1797
|
+
wealthboxUpdateNote: (id: string, wealthboxUpdateNoteBody: WealthboxUpdateNoteBody) => Promise<unknown>;
|
|
1798
|
+
wealthboxGetProjects: (params?: WealthboxGetProjectsParams) => Promise<unknown>;
|
|
1799
|
+
wealthboxCreateProject: (wealthboxCreateProjectBody: WealthboxCreateProjectBody) => Promise<unknown>;
|
|
1800
|
+
wealthboxGetProject: (id: string) => Promise<unknown>;
|
|
1801
|
+
wealthboxUpdateProject: (id: string, wealthboxUpdateProjectBody: WealthboxUpdateProjectBody) => Promise<unknown>;
|
|
1802
|
+
wealthboxDeleteProject: (id: string) => Promise<void>;
|
|
1803
|
+
wealthboxGetWorkflows: (params?: WealthboxGetWorkflowsParams) => Promise<unknown>;
|
|
1804
|
+
wealthboxCreateWorkflow: (wealthboxCreateWorkflowBody: WealthboxCreateWorkflowBody) => Promise<unknown>;
|
|
1805
|
+
wealthboxGetWorkflow: (id: string) => Promise<unknown>;
|
|
1806
|
+
wealthboxDeleteWorkflow: (id: string) => Promise<void>;
|
|
1807
|
+
wealthboxCompleteWorkflowStep: (stepId: string) => Promise<unknown>;
|
|
1808
|
+
wealthboxRevertWorkflowStep: (stepId: string) => Promise<unknown>;
|
|
1809
|
+
wealthboxAddHouseholdMember: (householdId: string, wealthboxAddHouseholdMemberBody: WealthboxAddHouseholdMemberBody) => Promise<unknown>;
|
|
1810
|
+
wealthboxRemoveHouseholdMember: (householdId: string, memberId?: string) => Promise<void>;
|
|
1811
|
+
wealthboxGetMe: () => Promise<unknown>;
|
|
1812
|
+
wealthboxGetUsers: (params?: WealthboxGetUsersParams) => Promise<unknown>;
|
|
1813
|
+
wealthboxGetTeams: (params?: WealthboxGetTeamsParams) => Promise<unknown>;
|
|
1814
|
+
wealthboxGetTags: (params?: WealthboxGetTagsParams) => Promise<unknown>;
|
|
1815
|
+
wealthboxGetCustomFields: (params?: WealthboxGetCustomFieldsParams) => Promise<unknown>;
|
|
1816
|
+
wealthboxGetContactRoles: (params?: WealthboxGetContactRolesParams) => Promise<unknown>;
|
|
1817
|
+
wealthboxGetWorkflowTemplates: (params?: WealthboxGetWorkflowTemplatesParams) => Promise<unknown>;
|
|
1818
|
+
wealthboxGetActivity: (params?: WealthboxGetActivityParams) => Promise<unknown>;
|
|
1412
1819
|
};
|
|
1413
1820
|
export type AnthropicSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['anthropicSetUserCredentials']>>>;
|
|
1414
1821
|
export type AnthropicGenerateTextResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['anthropicGenerateText']>>>;
|
|
@@ -1479,4 +1886,49 @@ export type TwilioWhatsappSetUserCredentialsResult = NonNullable<Awaited<ReturnT
|
|
|
1479
1886
|
export type TwilioWhatsappCreateMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['twilioWhatsappCreateMessage']>>>;
|
|
1480
1887
|
export type WealthboxOauthInitiateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxOauthInitiate']>>>;
|
|
1481
1888
|
export type WealthboxOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxOauthCallback']>>>;
|
|
1889
|
+
export type WealthboxGetContactsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetContacts']>>>;
|
|
1890
|
+
export type WealthboxCreateContactResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateContact']>>>;
|
|
1891
|
+
export type WealthboxGetContactResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetContact']>>>;
|
|
1892
|
+
export type WealthboxUpdateContactResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateContact']>>>;
|
|
1893
|
+
export type WealthboxDeleteContactResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteContact']>>>;
|
|
1894
|
+
export type WealthboxGetTasksResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetTasks']>>>;
|
|
1895
|
+
export type WealthboxCreateTaskResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateTask']>>>;
|
|
1896
|
+
export type WealthboxGetTaskResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetTask']>>>;
|
|
1897
|
+
export type WealthboxUpdateTaskResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateTask']>>>;
|
|
1898
|
+
export type WealthboxDeleteTaskResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteTask']>>>;
|
|
1899
|
+
export type WealthboxGetEventsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetEvents']>>>;
|
|
1900
|
+
export type WealthboxCreateEventResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateEvent']>>>;
|
|
1901
|
+
export type WealthboxGetEventResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetEvent']>>>;
|
|
1902
|
+
export type WealthboxUpdateEventResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateEvent']>>>;
|
|
1903
|
+
export type WealthboxDeleteEventResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteEvent']>>>;
|
|
1904
|
+
export type WealthboxGetOpportunitiesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetOpportunities']>>>;
|
|
1905
|
+
export type WealthboxCreateOpportunityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateOpportunity']>>>;
|
|
1906
|
+
export type WealthboxGetOpportunityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetOpportunity']>>>;
|
|
1907
|
+
export type WealthboxUpdateOpportunityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateOpportunity']>>>;
|
|
1908
|
+
export type WealthboxDeleteOpportunityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteOpportunity']>>>;
|
|
1909
|
+
export type WealthboxGetNotesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetNotes']>>>;
|
|
1910
|
+
export type WealthboxCreateNoteResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateNote']>>>;
|
|
1911
|
+
export type WealthboxGetNoteResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetNote']>>>;
|
|
1912
|
+
export type WealthboxUpdateNoteResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateNote']>>>;
|
|
1913
|
+
export type WealthboxGetProjectsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetProjects']>>>;
|
|
1914
|
+
export type WealthboxCreateProjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateProject']>>>;
|
|
1915
|
+
export type WealthboxGetProjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetProject']>>>;
|
|
1916
|
+
export type WealthboxUpdateProjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxUpdateProject']>>>;
|
|
1917
|
+
export type WealthboxDeleteProjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteProject']>>>;
|
|
1918
|
+
export type WealthboxGetWorkflowsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetWorkflows']>>>;
|
|
1919
|
+
export type WealthboxCreateWorkflowResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCreateWorkflow']>>>;
|
|
1920
|
+
export type WealthboxGetWorkflowResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetWorkflow']>>>;
|
|
1921
|
+
export type WealthboxDeleteWorkflowResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxDeleteWorkflow']>>>;
|
|
1922
|
+
export type WealthboxCompleteWorkflowStepResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxCompleteWorkflowStep']>>>;
|
|
1923
|
+
export type WealthboxRevertWorkflowStepResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxRevertWorkflowStep']>>>;
|
|
1924
|
+
export type WealthboxAddHouseholdMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxAddHouseholdMember']>>>;
|
|
1925
|
+
export type WealthboxRemoveHouseholdMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxRemoveHouseholdMember']>>>;
|
|
1926
|
+
export type WealthboxGetMeResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetMe']>>>;
|
|
1927
|
+
export type WealthboxGetUsersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetUsers']>>>;
|
|
1928
|
+
export type WealthboxGetTeamsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetTeams']>>>;
|
|
1929
|
+
export type WealthboxGetTagsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetTags']>>>;
|
|
1930
|
+
export type WealthboxGetCustomFieldsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetCustomFields']>>>;
|
|
1931
|
+
export type WealthboxGetContactRolesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetContactRoles']>>>;
|
|
1932
|
+
export type WealthboxGetWorkflowTemplatesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetWorkflowTemplates']>>>;
|
|
1933
|
+
export type WealthboxGetActivityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetActivity']>>>;
|
|
1482
1934
|
//# sourceMappingURL=generated-api.d.ts.map
|