@uptiqai/integrations-sdk 1.7.0 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated-api.d.ts +1111 -566
- package/dist/generated-api.d.ts.map +1 -1
- package/dist/generated-api.js +375 -1
- package/dist/generated-api.js.map +1 -1
- package/dist/index.d.ts +97 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +187 -1
- package/dist/index.js.map +1 -1
- package/dist/response-type-map.d.ts.map +1 -1
- package/dist/response-type-map.js +86 -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,464 @@
|
|
|
1
|
+
export type HubspotSendTransactionalEmail200 = {
|
|
2
|
+
[key: string]: unknown | null;
|
|
3
|
+
};
|
|
4
|
+
export type HubspotSendTransactionalEmailBodyBody = {
|
|
5
|
+
[key: string]: unknown | null;
|
|
6
|
+
};
|
|
7
|
+
export type HubspotSendTransactionalEmailBody = {
|
|
8
|
+
body: HubspotSendTransactionalEmailBodyBody;
|
|
9
|
+
userId: string;
|
|
10
|
+
};
|
|
11
|
+
export type HubspotListMarketingEmails200 = {
|
|
12
|
+
[key: string]: unknown | null;
|
|
13
|
+
};
|
|
14
|
+
export type HubspotListMarketingEmailsBodyQuery = {
|
|
15
|
+
[key: string]: string | number | boolean;
|
|
16
|
+
};
|
|
17
|
+
export type HubspotListMarketingEmailsBody = {
|
|
18
|
+
query?: HubspotListMarketingEmailsBodyQuery;
|
|
19
|
+
userId: string;
|
|
20
|
+
};
|
|
21
|
+
export type HubspotListWorkflows200 = {
|
|
22
|
+
[key: string]: unknown | null;
|
|
23
|
+
};
|
|
24
|
+
export type HubspotListWorkflowsBodyQuery = {
|
|
25
|
+
[key: string]: string | number | boolean;
|
|
26
|
+
};
|
|
27
|
+
export type HubspotListWorkflowsBody = {
|
|
28
|
+
query?: HubspotListWorkflowsBodyQuery;
|
|
29
|
+
userId: string;
|
|
30
|
+
};
|
|
31
|
+
export type HubspotEnrollWorkflow200 = {
|
|
32
|
+
[key: string]: unknown | null;
|
|
33
|
+
};
|
|
34
|
+
export type HubspotEnrollWorkflowBody = {
|
|
35
|
+
email: string;
|
|
36
|
+
userId: string;
|
|
37
|
+
/** @minLength 1 */
|
|
38
|
+
workflowId: string;
|
|
39
|
+
};
|
|
40
|
+
export type HubspotListTickets200 = {
|
|
41
|
+
[key: string]: unknown | null;
|
|
42
|
+
};
|
|
43
|
+
export type HubspotListTicketsBodyQuery = {
|
|
44
|
+
[key: string]: string | number | boolean;
|
|
45
|
+
};
|
|
46
|
+
export type HubspotListTicketsBody = {
|
|
47
|
+
query?: HubspotListTicketsBodyQuery;
|
|
48
|
+
userId: string;
|
|
49
|
+
};
|
|
50
|
+
export type HubspotUpdateTicket200 = {
|
|
51
|
+
[key: string]: unknown | null;
|
|
52
|
+
};
|
|
53
|
+
export type HubspotUpdateTicketBodyBody = {
|
|
54
|
+
[key: string]: unknown | null;
|
|
55
|
+
};
|
|
56
|
+
export type HubspotUpdateTicketBody = {
|
|
57
|
+
body: HubspotUpdateTicketBodyBody;
|
|
58
|
+
/** @minLength 1 */
|
|
59
|
+
ticketId: string;
|
|
60
|
+
userId: string;
|
|
61
|
+
};
|
|
62
|
+
export type HubspotCreateTicket200 = {
|
|
63
|
+
[key: string]: unknown | null;
|
|
64
|
+
};
|
|
65
|
+
export type HubspotCreateTicketBodyBody = {
|
|
66
|
+
[key: string]: unknown | null;
|
|
67
|
+
};
|
|
68
|
+
export type HubspotCreateTicketBody = {
|
|
69
|
+
body: HubspotCreateTicketBodyBody;
|
|
70
|
+
userId: string;
|
|
71
|
+
};
|
|
72
|
+
export type HubspotCreateAssociation200 = {
|
|
73
|
+
[key: string]: unknown | null;
|
|
74
|
+
};
|
|
75
|
+
export type HubspotCreateAssociationBody = {
|
|
76
|
+
/** @minLength 1 */
|
|
77
|
+
fromObjectId: string;
|
|
78
|
+
/** @minLength 1 */
|
|
79
|
+
fromObjectType: string;
|
|
80
|
+
/** @minLength 1 */
|
|
81
|
+
toObjectId: string;
|
|
82
|
+
/** @minLength 1 */
|
|
83
|
+
toObjectType: string;
|
|
84
|
+
userId: string;
|
|
85
|
+
};
|
|
86
|
+
export type HubspotCreateTaskEngagement200 = {
|
|
87
|
+
[key: string]: unknown | null;
|
|
88
|
+
};
|
|
89
|
+
export type HubspotCreateTaskEngagementBodyBody = {
|
|
90
|
+
[key: string]: unknown | null;
|
|
91
|
+
};
|
|
92
|
+
export type HubspotCreateTaskEngagementBody = {
|
|
93
|
+
body: HubspotCreateTaskEngagementBodyBody;
|
|
94
|
+
userId: string;
|
|
95
|
+
};
|
|
96
|
+
export type HubspotCreateCallEngagement200 = {
|
|
97
|
+
[key: string]: unknown | null;
|
|
98
|
+
};
|
|
99
|
+
export type HubspotCreateCallEngagementBodyBody = {
|
|
100
|
+
[key: string]: unknown | null;
|
|
101
|
+
};
|
|
102
|
+
export type HubspotCreateCallEngagementBody = {
|
|
103
|
+
body: HubspotCreateCallEngagementBodyBody;
|
|
104
|
+
userId: string;
|
|
105
|
+
};
|
|
106
|
+
export type HubspotCreateEmailEngagement200 = {
|
|
107
|
+
[key: string]: unknown | null;
|
|
108
|
+
};
|
|
109
|
+
export type HubspotCreateEmailEngagementBodyBody = {
|
|
110
|
+
[key: string]: unknown | null;
|
|
111
|
+
};
|
|
112
|
+
export type HubspotCreateEmailEngagementBody = {
|
|
113
|
+
body: HubspotCreateEmailEngagementBodyBody;
|
|
114
|
+
userId: string;
|
|
115
|
+
};
|
|
116
|
+
export type HubspotListOwners200 = {
|
|
117
|
+
[key: string]: unknown | null;
|
|
118
|
+
};
|
|
119
|
+
export type HubspotListOwnersBodyQuery = {
|
|
120
|
+
[key: string]: string | number | boolean;
|
|
121
|
+
};
|
|
122
|
+
export type HubspotListOwnersBody = {
|
|
123
|
+
query?: HubspotListOwnersBodyQuery;
|
|
124
|
+
userId: string;
|
|
125
|
+
};
|
|
126
|
+
export type HubspotListDealPipelines200 = {
|
|
127
|
+
[key: string]: unknown | null;
|
|
128
|
+
};
|
|
129
|
+
export type HubspotListDealPipelinesBody = {
|
|
130
|
+
userId: string;
|
|
131
|
+
};
|
|
132
|
+
export type HubspotListDeals200 = {
|
|
133
|
+
[key: string]: unknown | null;
|
|
134
|
+
};
|
|
135
|
+
export type HubspotListDealsBodyQuery = {
|
|
136
|
+
[key: string]: string | number | boolean;
|
|
137
|
+
};
|
|
138
|
+
export type HubspotListDealsBody = {
|
|
139
|
+
query?: HubspotListDealsBodyQuery;
|
|
140
|
+
userId: string;
|
|
141
|
+
};
|
|
142
|
+
export type HubspotSearchCompanies200 = {
|
|
143
|
+
[key: string]: unknown | null;
|
|
144
|
+
};
|
|
145
|
+
export type HubspotSearchCompaniesBodyBody = {
|
|
146
|
+
[key: string]: unknown | null;
|
|
147
|
+
};
|
|
148
|
+
export type HubspotSearchCompaniesBody = {
|
|
149
|
+
body: HubspotSearchCompaniesBodyBody;
|
|
150
|
+
userId: string;
|
|
151
|
+
};
|
|
152
|
+
export type HubspotListCompanies200 = {
|
|
153
|
+
[key: string]: unknown | null;
|
|
154
|
+
};
|
|
155
|
+
export type HubspotListCompaniesBodyQuery = {
|
|
156
|
+
[key: string]: string | number | boolean;
|
|
157
|
+
};
|
|
158
|
+
export type HubspotListCompaniesBody = {
|
|
159
|
+
query?: HubspotListCompaniesBodyQuery;
|
|
160
|
+
userId: string;
|
|
161
|
+
};
|
|
162
|
+
export type HubspotUpdateCompany200 = {
|
|
163
|
+
[key: string]: unknown | null;
|
|
164
|
+
};
|
|
165
|
+
export type HubspotUpdateCompanyBodyBody = {
|
|
166
|
+
[key: string]: unknown | null;
|
|
167
|
+
};
|
|
168
|
+
export type HubspotUpdateCompanyBody = {
|
|
169
|
+
body: HubspotUpdateCompanyBodyBody;
|
|
170
|
+
/** @minLength 1 */
|
|
171
|
+
companyId: string;
|
|
172
|
+
userId: string;
|
|
173
|
+
};
|
|
174
|
+
export type HubspotCreateCompany200 = {
|
|
175
|
+
[key: string]: unknown | null;
|
|
176
|
+
};
|
|
177
|
+
export type HubspotCreateCompanyBodyBody = {
|
|
178
|
+
[key: string]: unknown | null;
|
|
179
|
+
};
|
|
180
|
+
export type HubspotCreateCompanyBody = {
|
|
181
|
+
body: HubspotCreateCompanyBodyBody;
|
|
182
|
+
userId: string;
|
|
183
|
+
};
|
|
184
|
+
export type HubspotSearchContacts200 = {
|
|
185
|
+
[key: string]: unknown | null;
|
|
186
|
+
};
|
|
187
|
+
export type HubspotSearchContactsBodyBody = {
|
|
188
|
+
[key: string]: unknown | null;
|
|
189
|
+
};
|
|
190
|
+
export type HubspotSearchContactsBody = {
|
|
191
|
+
body: HubspotSearchContactsBodyBody;
|
|
192
|
+
userId: string;
|
|
193
|
+
};
|
|
194
|
+
export type HubspotListContacts200 = {
|
|
195
|
+
[key: string]: unknown | null;
|
|
196
|
+
};
|
|
197
|
+
export type HubspotListContactsBodyQuery = {
|
|
198
|
+
[key: string]: string | number | boolean;
|
|
199
|
+
};
|
|
200
|
+
export type HubspotListContactsBody = {
|
|
201
|
+
query?: HubspotListContactsBodyQuery;
|
|
202
|
+
userId: string;
|
|
203
|
+
};
|
|
204
|
+
export type HubspotUpdateContact200 = {
|
|
205
|
+
[key: string]: unknown | null;
|
|
206
|
+
};
|
|
207
|
+
export type HubspotUpdateContactBodyBody = {
|
|
208
|
+
[key: string]: unknown | null;
|
|
209
|
+
};
|
|
210
|
+
export type HubspotUpdateContactBody = {
|
|
211
|
+
body: HubspotUpdateContactBodyBody;
|
|
212
|
+
/** @minLength 1 */
|
|
213
|
+
contactId: string;
|
|
214
|
+
userId: string;
|
|
215
|
+
};
|
|
216
|
+
export type HubspotCreateContact200 = {
|
|
217
|
+
[key: string]: unknown | null;
|
|
218
|
+
};
|
|
219
|
+
export type HubspotCreateContactBodyBody = {
|
|
220
|
+
[key: string]: unknown | null;
|
|
221
|
+
};
|
|
222
|
+
export type HubspotCreateContactBody = {
|
|
223
|
+
body: HubspotCreateContactBodyBody;
|
|
224
|
+
userId: string;
|
|
225
|
+
};
|
|
226
|
+
export type HubspotAuthSetUserCredentials200 = {
|
|
227
|
+
userId: string;
|
|
228
|
+
};
|
|
229
|
+
export type HubspotAuthSetUserCredentialsBody = {
|
|
230
|
+
/** @minLength 1 */
|
|
231
|
+
clientId: string;
|
|
232
|
+
/** @minLength 1 */
|
|
233
|
+
clientSecret: string;
|
|
234
|
+
userId?: string;
|
|
235
|
+
};
|
|
236
|
+
export type HubspotAuthStart200 = {
|
|
237
|
+
url: string;
|
|
238
|
+
userId: string;
|
|
239
|
+
};
|
|
240
|
+
export type HubspotAuthStartBody = {
|
|
241
|
+
/** @minLength 1 */
|
|
242
|
+
externalUserId?: string;
|
|
243
|
+
originalRedirectUrl?: string;
|
|
244
|
+
userId?: string;
|
|
245
|
+
};
|
|
246
|
+
export type SalesforceRunFlow200 = {
|
|
247
|
+
[key: string]: unknown | null;
|
|
248
|
+
};
|
|
249
|
+
export type SalesforceRunFlowBodyInputsItem = {
|
|
250
|
+
[key: string]: unknown | null;
|
|
251
|
+
};
|
|
252
|
+
export type SalesforceRunFlowBody = {
|
|
253
|
+
/** @minLength 1 */
|
|
254
|
+
flowApiName: string;
|
|
255
|
+
inputs?: SalesforceRunFlowBodyInputsItem[];
|
|
256
|
+
userId: string;
|
|
257
|
+
};
|
|
258
|
+
export type SalesforceDescribeFlow200 = {
|
|
259
|
+
[key: string]: unknown | null;
|
|
260
|
+
};
|
|
261
|
+
export type SalesforceDescribeFlowBody = {
|
|
262
|
+
/** @minLength 1 */
|
|
263
|
+
flowApiName: string;
|
|
264
|
+
userId: string;
|
|
265
|
+
};
|
|
266
|
+
export type SalesforceListFlows200 = {
|
|
267
|
+
[key: string]: unknown | null;
|
|
268
|
+
};
|
|
269
|
+
export type SalesforceListFlowsBody = {
|
|
270
|
+
userId: string;
|
|
271
|
+
};
|
|
272
|
+
export type SalesforceRunReport200 = {
|
|
273
|
+
[key: string]: unknown | null;
|
|
274
|
+
};
|
|
275
|
+
export type SalesforceRunReportBody = {
|
|
276
|
+
includeDetails?: boolean;
|
|
277
|
+
/** @minLength 1 */
|
|
278
|
+
reportId: string;
|
|
279
|
+
userId: string;
|
|
280
|
+
};
|
|
281
|
+
export type SalesforceDescribeReport200 = {
|
|
282
|
+
[key: string]: unknown | null;
|
|
283
|
+
};
|
|
284
|
+
export type SalesforceDescribeReportBody = {
|
|
285
|
+
/** @minLength 1 */
|
|
286
|
+
reportId: string;
|
|
287
|
+
userId: string;
|
|
288
|
+
};
|
|
289
|
+
/**
|
|
290
|
+
* @nullable
|
|
291
|
+
*/
|
|
292
|
+
export type SalesforceListReports200AnyOfTwoItem = unknown | null;
|
|
293
|
+
export type SalesforceListReports200AnyOf = {
|
|
294
|
+
[key: string]: unknown | null;
|
|
295
|
+
};
|
|
296
|
+
export type SalesforceListReports200 = SalesforceListReports200AnyOf | SalesforceListReports200AnyOfTwoItem[];
|
|
297
|
+
export type SalesforceListReportsBody = {
|
|
298
|
+
userId: string;
|
|
299
|
+
};
|
|
300
|
+
/**
|
|
301
|
+
* @nullable
|
|
302
|
+
*/
|
|
303
|
+
export type SalesforceComposite200AnyOfTwoItem = unknown | null;
|
|
304
|
+
export type SalesforceComposite200AnyOf = {
|
|
305
|
+
[key: string]: unknown | null;
|
|
306
|
+
};
|
|
307
|
+
export type SalesforceComposite200 = SalesforceComposite200AnyOf | SalesforceComposite200AnyOfTwoItem[];
|
|
308
|
+
export type SalesforceCompositeBodyCompositeRequestItem = {
|
|
309
|
+
[key: string]: unknown | null;
|
|
310
|
+
};
|
|
311
|
+
export type SalesforceCompositeBody = {
|
|
312
|
+
allOrNone?: boolean;
|
|
313
|
+
/** @minItems 1 */
|
|
314
|
+
compositeRequest: SalesforceCompositeBodyCompositeRequestItem[];
|
|
315
|
+
userId: string;
|
|
316
|
+
};
|
|
317
|
+
/**
|
|
318
|
+
* @nullable
|
|
319
|
+
*/
|
|
320
|
+
export type SalesforceCompositeSobjectsUpdate200AnyOfTwoItem = unknown | null;
|
|
321
|
+
export type SalesforceCompositeSobjectsUpdate200AnyOf = {
|
|
322
|
+
[key: string]: unknown | null;
|
|
323
|
+
};
|
|
324
|
+
export type SalesforceCompositeSobjectsUpdate200 = SalesforceCompositeSobjectsUpdate200AnyOf | SalesforceCompositeSobjectsUpdate200AnyOfTwoItem[];
|
|
325
|
+
export type SalesforceCompositeSobjectsUpdateBodyRecordsItem = {
|
|
326
|
+
[key: string]: unknown | null;
|
|
327
|
+
};
|
|
328
|
+
export type SalesforceCompositeSobjectsUpdateBody = {
|
|
329
|
+
allOrNone?: boolean;
|
|
330
|
+
/** @minItems 1 */
|
|
331
|
+
records: SalesforceCompositeSobjectsUpdateBodyRecordsItem[];
|
|
332
|
+
userId: string;
|
|
333
|
+
};
|
|
334
|
+
/**
|
|
335
|
+
* @nullable
|
|
336
|
+
*/
|
|
337
|
+
export type SalesforceCompositeSobjectsCreate200AnyOfTwoItem = unknown | null;
|
|
338
|
+
export type SalesforceCompositeSobjectsCreate200AnyOf = {
|
|
339
|
+
[key: string]: unknown | null;
|
|
340
|
+
};
|
|
341
|
+
export type SalesforceCompositeSobjectsCreate200 = SalesforceCompositeSobjectsCreate200AnyOf | SalesforceCompositeSobjectsCreate200AnyOfTwoItem[];
|
|
342
|
+
export type SalesforceCompositeSobjectsCreateBodyRecordsItem = {
|
|
343
|
+
[key: string]: unknown | null;
|
|
344
|
+
};
|
|
345
|
+
export type SalesforceCompositeSobjectsCreateBody = {
|
|
346
|
+
allOrNone?: boolean;
|
|
347
|
+
/** @minItems 1 */
|
|
348
|
+
records: SalesforceCompositeSobjectsCreateBodyRecordsItem[];
|
|
349
|
+
userId: string;
|
|
350
|
+
};
|
|
351
|
+
export type SalesforceQuery200 = {
|
|
352
|
+
[key: string]: unknown | null;
|
|
353
|
+
};
|
|
354
|
+
export type SalesforceQueryBody = {
|
|
355
|
+
nextRecordsUrl?: string;
|
|
356
|
+
/** @minLength 1 */
|
|
357
|
+
q: string;
|
|
358
|
+
userId: string;
|
|
359
|
+
};
|
|
360
|
+
/**
|
|
361
|
+
* @nullable
|
|
362
|
+
*/
|
|
363
|
+
export type SalesforceDeleteSobject200AnyOfThree = unknown | null;
|
|
364
|
+
/**
|
|
365
|
+
* @nullable
|
|
366
|
+
*/
|
|
367
|
+
export type SalesforceDeleteSobject200AnyOfTwo = unknown | null;
|
|
368
|
+
export type SalesforceDeleteSobject200AnyOf = {
|
|
369
|
+
[key: string]: unknown | null;
|
|
370
|
+
};
|
|
371
|
+
export type SalesforceDeleteSobject200 = SalesforceDeleteSobject200AnyOf | SalesforceDeleteSobject200AnyOfTwo | SalesforceDeleteSobject200AnyOfThree;
|
|
372
|
+
export type SalesforceDeleteSobjectBody = {
|
|
373
|
+
/** @minLength 1 */
|
|
374
|
+
id: string;
|
|
375
|
+
/** @minLength 1 */
|
|
376
|
+
objectApiName: string;
|
|
377
|
+
userId: string;
|
|
378
|
+
};
|
|
379
|
+
/**
|
|
380
|
+
* @nullable
|
|
381
|
+
*/
|
|
382
|
+
export type SalesforceUpdateSobject200AnyOfThree = unknown | null;
|
|
383
|
+
/**
|
|
384
|
+
* @nullable
|
|
385
|
+
*/
|
|
386
|
+
export type SalesforceUpdateSobject200AnyOfTwo = unknown | null;
|
|
387
|
+
export type SalesforceUpdateSobject200AnyOf = {
|
|
388
|
+
[key: string]: unknown | null;
|
|
389
|
+
};
|
|
390
|
+
export type SalesforceUpdateSobject200 = SalesforceUpdateSobject200AnyOf | SalesforceUpdateSobject200AnyOfTwo | SalesforceUpdateSobject200AnyOfThree;
|
|
391
|
+
export type SalesforceUpdateSobjectBodyBody = {
|
|
392
|
+
[key: string]: unknown | null;
|
|
393
|
+
};
|
|
394
|
+
export type SalesforceUpdateSobjectBody = {
|
|
395
|
+
body: SalesforceUpdateSobjectBodyBody;
|
|
396
|
+
/** @minLength 1 */
|
|
397
|
+
id: string;
|
|
398
|
+
/** @minLength 1 */
|
|
399
|
+
objectApiName: string;
|
|
400
|
+
userId: string;
|
|
401
|
+
};
|
|
402
|
+
/**
|
|
403
|
+
* @nullable
|
|
404
|
+
*/
|
|
405
|
+
export type SalesforceGetSobject200AnyOfThree = unknown | null;
|
|
406
|
+
/**
|
|
407
|
+
* @nullable
|
|
408
|
+
*/
|
|
409
|
+
export type SalesforceGetSobject200AnyOfTwo = unknown | null;
|
|
410
|
+
export type SalesforceGetSobject200AnyOf = {
|
|
411
|
+
[key: string]: unknown | null;
|
|
412
|
+
};
|
|
413
|
+
export type SalesforceGetSobject200 = SalesforceGetSobject200AnyOf | SalesforceGetSobject200AnyOfTwo | SalesforceGetSobject200AnyOfThree;
|
|
414
|
+
export type SalesforceGetSobjectBody = {
|
|
415
|
+
/** @minLength 1 */
|
|
416
|
+
id: string;
|
|
417
|
+
/** @minLength 1 */
|
|
418
|
+
objectApiName: string;
|
|
419
|
+
userId: string;
|
|
420
|
+
};
|
|
421
|
+
/**
|
|
422
|
+
* @nullable
|
|
423
|
+
*/
|
|
424
|
+
export type SalesforceCreateSobject200AnyOfThree = unknown | null;
|
|
425
|
+
/**
|
|
426
|
+
* @nullable
|
|
427
|
+
*/
|
|
428
|
+
export type SalesforceCreateSobject200AnyOfTwo = unknown | null;
|
|
429
|
+
export type SalesforceCreateSobject200AnyOf = {
|
|
430
|
+
[key: string]: unknown | null;
|
|
431
|
+
};
|
|
432
|
+
export type SalesforceCreateSobject200 = SalesforceCreateSobject200AnyOf | SalesforceCreateSobject200AnyOfTwo | SalesforceCreateSobject200AnyOfThree;
|
|
433
|
+
export type SalesforceCreateSobjectBodyBody = {
|
|
434
|
+
[key: string]: unknown | null;
|
|
435
|
+
};
|
|
436
|
+
export type SalesforceCreateSobjectBody = {
|
|
437
|
+
body: SalesforceCreateSobjectBodyBody;
|
|
438
|
+
/** @minLength 1 */
|
|
439
|
+
objectApiName: string;
|
|
440
|
+
userId: string;
|
|
441
|
+
};
|
|
442
|
+
export type SalesforceAuthSetUserCredentials200 = {
|
|
443
|
+
userId: string;
|
|
444
|
+
};
|
|
445
|
+
export type SalesforceAuthSetUserCredentialsBody = {
|
|
446
|
+
/** @minLength 1 */
|
|
447
|
+
clientId: string;
|
|
448
|
+
/** @minLength 1 */
|
|
449
|
+
clientSecret: string;
|
|
450
|
+
userId?: string;
|
|
451
|
+
};
|
|
452
|
+
export type SalesforceAuthStart200 = {
|
|
453
|
+
url: string;
|
|
454
|
+
userId: string;
|
|
455
|
+
};
|
|
456
|
+
export type SalesforceAuthStartBody = {
|
|
457
|
+
/** @minLength 1 */
|
|
458
|
+
externalUserId?: string;
|
|
459
|
+
originalRedirectUrl?: string;
|
|
460
|
+
userId?: string;
|
|
461
|
+
};
|
|
1
462
|
export type WealthboxGetActivity200StreamItemsItem = {
|
|
2
463
|
[key: string]: unknown | null;
|
|
3
464
|
};
|
|
@@ -60,6 +521,10 @@ export type WealthboxGetWorkflowTemplatesBody = {
|
|
|
60
521
|
userId: string;
|
|
61
522
|
[key: string]: unknown | null;
|
|
62
523
|
};
|
|
524
|
+
export type WealthboxGetContactRoles200 = {
|
|
525
|
+
contact_roles: WealthboxGetContactRoles200ContactRolesItem[];
|
|
526
|
+
[key: string]: unknown | null;
|
|
527
|
+
};
|
|
63
528
|
export type WealthboxGetContactRoles200ContactRolesItemRemovedOptionsItem = {
|
|
64
529
|
[key: string]: unknown | null;
|
|
65
530
|
};
|
|
@@ -74,10 +539,6 @@ export type WealthboxGetContactRoles200ContactRolesItem = {
|
|
|
74
539
|
removed_options?: WealthboxGetContactRoles200ContactRolesItemRemovedOptionsItem[];
|
|
75
540
|
[key: string]: unknown | null;
|
|
76
541
|
};
|
|
77
|
-
export type WealthboxGetContactRoles200 = {
|
|
78
|
-
contact_roles: WealthboxGetContactRoles200ContactRolesItem[];
|
|
79
|
-
[key: string]: unknown | null;
|
|
80
|
-
};
|
|
81
542
|
export type WealthboxGetContactRolesBody = {
|
|
82
543
|
/**
|
|
83
544
|
* Page number for paginated Wealthbox endpoints.
|
|
@@ -147,10 +608,6 @@ export type WealthboxGetCategoryMembersBody = {
|
|
|
147
608
|
userId: string;
|
|
148
609
|
[key: string]: unknown | null;
|
|
149
610
|
};
|
|
150
|
-
export type WealthboxGetCustomFields200 = {
|
|
151
|
-
custom_fields?: WealthboxGetCustomFields200CustomFieldsItem[];
|
|
152
|
-
[key: string]: unknown | null;
|
|
153
|
-
};
|
|
154
611
|
/**
|
|
155
612
|
* @nullable
|
|
156
613
|
*/
|
|
@@ -176,6 +633,10 @@ export type WealthboxGetCustomFields200CustomFieldsItem = {
|
|
|
176
633
|
value?: WealthboxGetCustomFields200CustomFieldsItemValue;
|
|
177
634
|
[key: string]: unknown | null;
|
|
178
635
|
};
|
|
636
|
+
export type WealthboxGetCustomFields200 = {
|
|
637
|
+
custom_fields?: WealthboxGetCustomFields200CustomFieldsItem[];
|
|
638
|
+
[key: string]: unknown | null;
|
|
639
|
+
};
|
|
179
640
|
/**
|
|
180
641
|
* The document type that the custom fields are for
|
|
181
642
|
*/
|
|
@@ -274,6 +735,10 @@ export type WealthboxGetTeamsBody = {
|
|
|
274
735
|
userId: string;
|
|
275
736
|
[key: string]: unknown | null;
|
|
276
737
|
};
|
|
738
|
+
export type WealthboxGetUsers200 = {
|
|
739
|
+
users?: WealthboxGetUsers200UsersItem[];
|
|
740
|
+
[key: string]: unknown | null;
|
|
741
|
+
};
|
|
277
742
|
export type WealthboxGetUsers200UsersItemStatus = 'active' | 'invited' | 'inactive' | 'legacy' | string;
|
|
278
743
|
export type WealthboxGetUsers200UsersItem = {
|
|
279
744
|
/** @nullable */
|
|
@@ -286,10 +751,6 @@ export type WealthboxGetUsers200UsersItem = {
|
|
|
286
751
|
status?: WealthboxGetUsers200UsersItemStatus;
|
|
287
752
|
[key: string]: unknown | null;
|
|
288
753
|
};
|
|
289
|
-
export type WealthboxGetUsers200 = {
|
|
290
|
-
users?: WealthboxGetUsers200UsersItem[];
|
|
291
|
-
[key: string]: unknown | null;
|
|
292
|
-
};
|
|
293
754
|
/**
|
|
294
755
|
* Filter users by their status
|
|
295
756
|
*/
|
|
@@ -1071,15 +1532,6 @@ export type WealthboxUpdateProject200 = {
|
|
|
1071
1532
|
visible_to?: WealthboxUpdateProject200VisibleTo;
|
|
1072
1533
|
[key: string]: unknown | null;
|
|
1073
1534
|
};
|
|
1074
|
-
/**
|
|
1075
|
-
* @nullable
|
|
1076
|
-
*/
|
|
1077
|
-
export type WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
|
|
1078
|
-
/**
|
|
1079
|
-
* @nullable
|
|
1080
|
-
*/
|
|
1081
|
-
export type WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOf = unknown | null;
|
|
1082
|
-
export type WealthboxUpdateProjectBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOf | WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOfTwo;
|
|
1083
1535
|
export type WealthboxUpdateProjectBodyCustomFieldsItem = {
|
|
1084
1536
|
/** @nullable */
|
|
1085
1537
|
id: number | null;
|
|
@@ -1104,6 +1556,15 @@ export type WealthboxUpdateProjectBody = {
|
|
|
1104
1556
|
visible_to?: string;
|
|
1105
1557
|
[key: string]: unknown | null;
|
|
1106
1558
|
};
|
|
1559
|
+
/**
|
|
1560
|
+
* @nullable
|
|
1561
|
+
*/
|
|
1562
|
+
export type WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
|
|
1563
|
+
/**
|
|
1564
|
+
* @nullable
|
|
1565
|
+
*/
|
|
1566
|
+
export type WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOf = unknown | null;
|
|
1567
|
+
export type WealthboxUpdateProjectBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOf | WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOfTwo;
|
|
1107
1568
|
/**
|
|
1108
1569
|
* @nullable
|
|
1109
1570
|
*/
|
|
@@ -1167,12 +1628,6 @@ export type WealthboxCreateProject200 = {
|
|
|
1167
1628
|
visible_to?: WealthboxCreateProject200VisibleTo;
|
|
1168
1629
|
[key: string]: unknown | null;
|
|
1169
1630
|
};
|
|
1170
|
-
export type WealthboxCreateProjectBodyCustomFieldsItem = {
|
|
1171
|
-
/** @nullable */
|
|
1172
|
-
id: number | null;
|
|
1173
|
-
value?: WealthboxCreateProjectBodyCustomFieldsItemValue;
|
|
1174
|
-
[key: string]: unknown | null;
|
|
1175
|
-
};
|
|
1176
1631
|
export type WealthboxCreateProjectBody = {
|
|
1177
1632
|
custom_fields?: WealthboxCreateProjectBodyCustomFieldsItem[];
|
|
1178
1633
|
/** @minLength 1 */
|
|
@@ -1195,6 +1650,12 @@ export type WealthboxCreateProjectBodyCustomFieldsItemValueAnyOfTwo = unknown |
|
|
|
1195
1650
|
*/
|
|
1196
1651
|
export type WealthboxCreateProjectBodyCustomFieldsItemValueAnyOf = unknown | null;
|
|
1197
1652
|
export type WealthboxCreateProjectBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxCreateProjectBodyCustomFieldsItemValueAnyOf | WealthboxCreateProjectBodyCustomFieldsItemValueAnyOfTwo;
|
|
1653
|
+
export type WealthboxCreateProjectBodyCustomFieldsItem = {
|
|
1654
|
+
/** @nullable */
|
|
1655
|
+
id: number | null;
|
|
1656
|
+
value?: WealthboxCreateProjectBodyCustomFieldsItemValue;
|
|
1657
|
+
[key: string]: unknown | null;
|
|
1658
|
+
};
|
|
1198
1659
|
/**
|
|
1199
1660
|
* @nullable
|
|
1200
1661
|
*/
|
|
@@ -1903,6 +2364,25 @@ export type WealthboxCreateOpportunityBodyLinkedToItem = {
|
|
|
1903
2364
|
type: string;
|
|
1904
2365
|
[key: string]: unknown | null;
|
|
1905
2366
|
};
|
|
2367
|
+
export type WealthboxCreateOpportunityBody = {
|
|
2368
|
+
amounts: WealthboxCreateOpportunityBodyAmountsItem[];
|
|
2369
|
+
custom_fields?: WealthboxCreateOpportunityBodyCustomFieldsItem[];
|
|
2370
|
+
description?: string;
|
|
2371
|
+
linked_to?: WealthboxCreateOpportunityBodyLinkedToItem[];
|
|
2372
|
+
/** @nullable */
|
|
2373
|
+
manager?: number | null;
|
|
2374
|
+
/** @minLength 1 */
|
|
2375
|
+
name: string;
|
|
2376
|
+
next_step?: string;
|
|
2377
|
+
probability: number;
|
|
2378
|
+
/** @nullable */
|
|
2379
|
+
stage: number | null;
|
|
2380
|
+
target_close: string;
|
|
2381
|
+
/** Integration user id for Wealthbox requests. */
|
|
2382
|
+
userId: string;
|
|
2383
|
+
visible_to?: string;
|
|
2384
|
+
[key: string]: unknown | null;
|
|
2385
|
+
};
|
|
1906
2386
|
/**
|
|
1907
2387
|
* @nullable
|
|
1908
2388
|
*/
|
|
@@ -1925,25 +2405,6 @@ export type WealthboxCreateOpportunityBodyAmountsItem = {
|
|
|
1925
2405
|
kind?: WealthboxCreateOpportunityBodyAmountsItemKind;
|
|
1926
2406
|
[key: string]: unknown | null;
|
|
1927
2407
|
};
|
|
1928
|
-
export type WealthboxCreateOpportunityBody = {
|
|
1929
|
-
amounts: WealthboxCreateOpportunityBodyAmountsItem[];
|
|
1930
|
-
custom_fields?: WealthboxCreateOpportunityBodyCustomFieldsItem[];
|
|
1931
|
-
description?: string;
|
|
1932
|
-
linked_to?: WealthboxCreateOpportunityBodyLinkedToItem[];
|
|
1933
|
-
/** @nullable */
|
|
1934
|
-
manager?: number | null;
|
|
1935
|
-
/** @minLength 1 */
|
|
1936
|
-
name: string;
|
|
1937
|
-
next_step?: string;
|
|
1938
|
-
probability: number;
|
|
1939
|
-
/** @nullable */
|
|
1940
|
-
stage: number | null;
|
|
1941
|
-
target_close: string;
|
|
1942
|
-
/** Integration user id for Wealthbox requests. */
|
|
1943
|
-
userId: string;
|
|
1944
|
-
visible_to?: string;
|
|
1945
|
-
[key: string]: unknown | null;
|
|
1946
|
-
};
|
|
1947
2408
|
/**
|
|
1948
2409
|
* @nullable
|
|
1949
2410
|
*/
|
|
@@ -2409,12 +2870,6 @@ export type WealthboxUpdateEventBodyInviteesItem = {
|
|
|
2409
2870
|
type: string;
|
|
2410
2871
|
[key: string]: unknown | null;
|
|
2411
2872
|
};
|
|
2412
|
-
export type WealthboxUpdateEventBodyCustomFieldsItem = {
|
|
2413
|
-
/** @nullable */
|
|
2414
|
-
id: number | null;
|
|
2415
|
-
value?: WealthboxUpdateEventBodyCustomFieldsItemValue;
|
|
2416
|
-
[key: string]: unknown | null;
|
|
2417
|
-
};
|
|
2418
2873
|
export type WealthboxUpdateEventBody = {
|
|
2419
2874
|
all_day?: boolean;
|
|
2420
2875
|
custom_fields?: WealthboxUpdateEventBodyCustomFieldsItem[];
|
|
@@ -2450,6 +2905,12 @@ export type WealthboxUpdateEventBodyCustomFieldsItemValueAnyOfTwo = unknown | nu
|
|
|
2450
2905
|
*/
|
|
2451
2906
|
export type WealthboxUpdateEventBodyCustomFieldsItemValueAnyOf = unknown | null;
|
|
2452
2907
|
export type WealthboxUpdateEventBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateEventBodyCustomFieldsItemValueAnyOf | WealthboxUpdateEventBodyCustomFieldsItemValueAnyOfTwo;
|
|
2908
|
+
export type WealthboxUpdateEventBodyCustomFieldsItem = {
|
|
2909
|
+
/** @nullable */
|
|
2910
|
+
id: number | null;
|
|
2911
|
+
value?: WealthboxUpdateEventBodyCustomFieldsItemValue;
|
|
2912
|
+
[key: string]: unknown | null;
|
|
2913
|
+
};
|
|
2453
2914
|
/**
|
|
2454
2915
|
* @nullable
|
|
2455
2916
|
*/
|
|
@@ -2583,6 +3044,12 @@ export type WealthboxCreateEventBodyInviteesItem = {
|
|
|
2583
3044
|
type: string;
|
|
2584
3045
|
[key: string]: unknown | null;
|
|
2585
3046
|
};
|
|
3047
|
+
export type WealthboxCreateEventBodyCustomFieldsItem = {
|
|
3048
|
+
/** @nullable */
|
|
3049
|
+
id: number | null;
|
|
3050
|
+
value?: WealthboxCreateEventBodyCustomFieldsItemValue;
|
|
3051
|
+
[key: string]: unknown | null;
|
|
3052
|
+
};
|
|
2586
3053
|
export type WealthboxCreateEventBody = {
|
|
2587
3054
|
all_day?: boolean;
|
|
2588
3055
|
custom_fields?: WealthboxCreateEventBodyCustomFieldsItem[];
|
|
@@ -2613,12 +3080,6 @@ export type WealthboxCreateEventBodyCustomFieldsItemValueAnyOfTwo = unknown | nu
|
|
|
2613
3080
|
*/
|
|
2614
3081
|
export type WealthboxCreateEventBodyCustomFieldsItemValueAnyOf = unknown | null;
|
|
2615
3082
|
export type WealthboxCreateEventBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxCreateEventBodyCustomFieldsItemValueAnyOf | WealthboxCreateEventBodyCustomFieldsItemValueAnyOfTwo;
|
|
2616
|
-
export type WealthboxCreateEventBodyCustomFieldsItem = {
|
|
2617
|
-
/** @nullable */
|
|
2618
|
-
id: number | null;
|
|
2619
|
-
value?: WealthboxCreateEventBodyCustomFieldsItemValue;
|
|
2620
|
-
[key: string]: unknown | null;
|
|
2621
|
-
};
|
|
2622
3083
|
/**
|
|
2623
3084
|
* @nullable
|
|
2624
3085
|
*/
|
|
@@ -3045,30 +3506,6 @@ export type WealthboxUpdateTaskBodyLinkedToItem = {
|
|
|
3045
3506
|
type: string;
|
|
3046
3507
|
[key: string]: unknown | null;
|
|
3047
3508
|
};
|
|
3048
|
-
export type WealthboxUpdateTaskBodyCustomFieldsItem = {
|
|
3049
|
-
/** @nullable */
|
|
3050
|
-
id: number | null;
|
|
3051
|
-
value?: WealthboxUpdateTaskBodyCustomFieldsItemValue;
|
|
3052
|
-
[key: string]: unknown | null;
|
|
3053
|
-
};
|
|
3054
|
-
/**
|
|
3055
|
-
* @nullable
|
|
3056
|
-
*/
|
|
3057
|
-
export type WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
|
|
3058
|
-
/**
|
|
3059
|
-
* @nullable
|
|
3060
|
-
*/
|
|
3061
|
-
export type WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOf = unknown | null;
|
|
3062
|
-
export type WealthboxUpdateTaskBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOf | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOfTwo;
|
|
3063
|
-
/**
|
|
3064
|
-
* @nullable
|
|
3065
|
-
*/
|
|
3066
|
-
export type WealthboxUpdateTaskBodyCategoryAnyOfTwo = unknown | null;
|
|
3067
|
-
/**
|
|
3068
|
-
* @nullable
|
|
3069
|
-
*/
|
|
3070
|
-
export type WealthboxUpdateTaskBodyCategoryAnyOf = unknown | null;
|
|
3071
|
-
export type WealthboxUpdateTaskBodyCategory = number | null | string | WealthboxUpdateTaskBodyCategoryAnyOf | WealthboxUpdateTaskBodyCategoryAnyOfTwo;
|
|
3072
3509
|
export type WealthboxUpdateTaskBody = {
|
|
3073
3510
|
/** @nullable */
|
|
3074
3511
|
assigned_to?: number | null;
|
|
@@ -3095,6 +3532,30 @@ export type WealthboxUpdateTaskBody = {
|
|
|
3095
3532
|
visible_to?: string;
|
|
3096
3533
|
[key: string]: unknown | null;
|
|
3097
3534
|
};
|
|
3535
|
+
/**
|
|
3536
|
+
* @nullable
|
|
3537
|
+
*/
|
|
3538
|
+
export type WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
|
|
3539
|
+
/**
|
|
3540
|
+
* @nullable
|
|
3541
|
+
*/
|
|
3542
|
+
export type WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOf = unknown | null;
|
|
3543
|
+
export type WealthboxUpdateTaskBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOf | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOfTwo;
|
|
3544
|
+
export type WealthboxUpdateTaskBodyCustomFieldsItem = {
|
|
3545
|
+
/** @nullable */
|
|
3546
|
+
id: number | null;
|
|
3547
|
+
value?: WealthboxUpdateTaskBodyCustomFieldsItemValue;
|
|
3548
|
+
[key: string]: unknown | null;
|
|
3549
|
+
};
|
|
3550
|
+
/**
|
|
3551
|
+
* @nullable
|
|
3552
|
+
*/
|
|
3553
|
+
export type WealthboxUpdateTaskBodyCategoryAnyOfTwo = unknown | null;
|
|
3554
|
+
/**
|
|
3555
|
+
* @nullable
|
|
3556
|
+
*/
|
|
3557
|
+
export type WealthboxUpdateTaskBodyCategoryAnyOf = unknown | null;
|
|
3558
|
+
export type WealthboxUpdateTaskBodyCategory = number | null | string | WealthboxUpdateTaskBodyCategoryAnyOf | WealthboxUpdateTaskBodyCategoryAnyOfTwo;
|
|
3098
3559
|
/**
|
|
3099
3560
|
* @nullable
|
|
3100
3561
|
*/
|
|
@@ -3801,151 +4262,6 @@ export type WealthboxUpdateContact200Image = unknown | null;
|
|
|
3801
4262
|
* @nullable
|
|
3802
4263
|
*/
|
|
3803
4264
|
export type WealthboxUpdateContact200Id = unknown | null;
|
|
3804
|
-
/**
|
|
3805
|
-
* @nullable
|
|
3806
|
-
*/
|
|
3807
|
-
export type WealthboxUpdateContact200HouseholdTitle = unknown | null;
|
|
3808
|
-
/**
|
|
3809
|
-
* @nullable
|
|
3810
|
-
*/
|
|
3811
|
-
export type WealthboxUpdateContact200HouseholdName = unknown | null;
|
|
3812
|
-
export type WealthboxUpdateContact200HouseholdMembersItem = {
|
|
3813
|
-
[key: string]: unknown | null;
|
|
3814
|
-
};
|
|
3815
|
-
/**
|
|
3816
|
-
* @nullable
|
|
3817
|
-
*/
|
|
3818
|
-
export type WealthboxUpdateContact200HouseholdId = unknown | null;
|
|
3819
|
-
export type WealthboxUpdateContact200Household = {
|
|
3820
|
-
/** @nullable */
|
|
3821
|
-
id?: WealthboxUpdateContact200HouseholdId;
|
|
3822
|
-
members?: WealthboxUpdateContact200HouseholdMembersItem[];
|
|
3823
|
-
/** @nullable */
|
|
3824
|
-
name?: WealthboxUpdateContact200HouseholdName;
|
|
3825
|
-
/** @nullable */
|
|
3826
|
-
title?: WealthboxUpdateContact200HouseholdTitle;
|
|
3827
|
-
[key: string]: unknown | null;
|
|
3828
|
-
};
|
|
3829
|
-
/**
|
|
3830
|
-
* @nullable
|
|
3831
|
-
*/
|
|
3832
|
-
export type WealthboxUpdateContact200GrossAnnualIncome = unknown | null;
|
|
3833
|
-
/**
|
|
3834
|
-
* @nullable
|
|
3835
|
-
*/
|
|
3836
|
-
export type WealthboxUpdateContact200GreenCardNumber = unknown | null;
|
|
3837
|
-
/**
|
|
3838
|
-
* @nullable
|
|
3839
|
-
*/
|
|
3840
|
-
export type WealthboxUpdateContact200Gender = unknown | null;
|
|
3841
|
-
/**
|
|
3842
|
-
* @nullable
|
|
3843
|
-
*/
|
|
3844
|
-
export type WealthboxUpdateContact200FirstName = unknown | null;
|
|
3845
|
-
/**
|
|
3846
|
-
* @nullable
|
|
3847
|
-
*/
|
|
3848
|
-
export type WealthboxUpdateContact200FamilyOfficer = unknown | null;
|
|
3849
|
-
/**
|
|
3850
|
-
* @nullable
|
|
3851
|
-
*/
|
|
3852
|
-
export type WealthboxUpdateContact200ExternalUniqueId = unknown | null;
|
|
3853
|
-
/**
|
|
3854
|
-
* @nullable
|
|
3855
|
-
*/
|
|
3856
|
-
export type WealthboxUpdateContact200EstimatedTaxes = unknown | null;
|
|
3857
|
-
export type WealthboxUpdateContact200EmailAddressesItem = {
|
|
3858
|
-
[key: string]: unknown | null;
|
|
3859
|
-
};
|
|
3860
|
-
export type WealthboxUpdateContact200DriversLicense = {
|
|
3861
|
-
[key: string]: unknown | null;
|
|
3862
|
-
};
|
|
3863
|
-
/**
|
|
3864
|
-
* @nullable
|
|
3865
|
-
*/
|
|
3866
|
-
export type WealthboxUpdateContact200Doctor = unknown | null;
|
|
3867
|
-
/**
|
|
3868
|
-
* @nullable
|
|
3869
|
-
*/
|
|
3870
|
-
export type WealthboxUpdateContact200DateOfDeath = unknown | null;
|
|
3871
|
-
export type WealthboxUpdateContact200CustomFieldsItem = {
|
|
3872
|
-
[key: string]: unknown | null;
|
|
3873
|
-
};
|
|
3874
|
-
/**
|
|
3875
|
-
* @nullable
|
|
3876
|
-
*/
|
|
3877
|
-
export type WealthboxUpdateContact200Creator = unknown | null;
|
|
3878
|
-
/**
|
|
3879
|
-
* @nullable
|
|
3880
|
-
*/
|
|
3881
|
-
export type WealthboxUpdateContact200CreatedAt = unknown | null;
|
|
3882
|
-
/**
|
|
3883
|
-
* @nullable
|
|
3884
|
-
*/
|
|
3885
|
-
export type WealthboxUpdateContact200Cpa = unknown | null;
|
|
3886
|
-
/**
|
|
3887
|
-
* @nullable
|
|
3888
|
-
*/
|
|
3889
|
-
export type WealthboxUpdateContact200ContactType = unknown | null;
|
|
3890
|
-
/**
|
|
3891
|
-
* @nullable
|
|
3892
|
-
*/
|
|
3893
|
-
export type WealthboxUpdateContact200ContactSource = unknown | null;
|
|
3894
|
-
export type WealthboxUpdateContact200ContactRolesItem = {
|
|
3895
|
-
[key: string]: unknown | null;
|
|
3896
|
-
};
|
|
3897
|
-
/**
|
|
3898
|
-
* @nullable
|
|
3899
|
-
*/
|
|
3900
|
-
export type WealthboxUpdateContact200ConfirmedByTaxReturn = unknown | null;
|
|
3901
|
-
/**
|
|
3902
|
-
* @nullable
|
|
3903
|
-
*/
|
|
3904
|
-
export type WealthboxUpdateContact200CompanyName = unknown | null;
|
|
3905
|
-
/**
|
|
3906
|
-
* @nullable
|
|
3907
|
-
*/
|
|
3908
|
-
export type WealthboxUpdateContact200ClientSince = unknown | null;
|
|
3909
|
-
/**
|
|
3910
|
-
* @nullable
|
|
3911
|
-
*/
|
|
3912
|
-
export type WealthboxUpdateContact200BusinessManager = unknown | null;
|
|
3913
|
-
/**
|
|
3914
|
-
* @nullable
|
|
3915
|
-
*/
|
|
3916
|
-
export type WealthboxUpdateContact200BirthPlace = unknown | null;
|
|
3917
|
-
/**
|
|
3918
|
-
* @nullable
|
|
3919
|
-
*/
|
|
3920
|
-
export type WealthboxUpdateContact200BirthDate = unknown | null;
|
|
3921
|
-
/**
|
|
3922
|
-
* @nullable
|
|
3923
|
-
*/
|
|
3924
|
-
export type WealthboxUpdateContact200BackgroundInformation = unknown | null;
|
|
3925
|
-
/**
|
|
3926
|
-
* @nullable
|
|
3927
|
-
*/
|
|
3928
|
-
export type WealthboxUpdateContact200Attorney = unknown | null;
|
|
3929
|
-
/**
|
|
3930
|
-
* @nullable
|
|
3931
|
-
*/
|
|
3932
|
-
export type WealthboxUpdateContact200Assistant = unknown | null;
|
|
3933
|
-
/**
|
|
3934
|
-
* @nullable
|
|
3935
|
-
*/
|
|
3936
|
-
export type WealthboxUpdateContact200AssignedTo = unknown | null;
|
|
3937
|
-
/**
|
|
3938
|
-
* @nullable
|
|
3939
|
-
*/
|
|
3940
|
-
export type WealthboxUpdateContact200Assets = unknown | null;
|
|
3941
|
-
/**
|
|
3942
|
-
* @nullable
|
|
3943
|
-
*/
|
|
3944
|
-
export type WealthboxUpdateContact200Anniversary = unknown | null;
|
|
3945
|
-
/**
|
|
3946
|
-
* @nullable
|
|
3947
|
-
*/
|
|
3948
|
-
export type WealthboxUpdateContact200AdjustedGrossIncome = unknown | null;
|
|
3949
4265
|
export type WealthboxUpdateContact200 = {
|
|
3950
4266
|
/** @nullable */
|
|
3951
4267
|
adjusted_gross_income?: WealthboxUpdateContact200AdjustedGrossIncome;
|
|
@@ -4097,6 +4413,151 @@ export type WealthboxUpdateContact200 = {
|
|
|
4097
4413
|
websites?: WealthboxUpdateContact200WebsitesItem[];
|
|
4098
4414
|
[key: string]: unknown | null;
|
|
4099
4415
|
};
|
|
4416
|
+
/**
|
|
4417
|
+
* @nullable
|
|
4418
|
+
*/
|
|
4419
|
+
export type WealthboxUpdateContact200HouseholdTitle = unknown | null;
|
|
4420
|
+
/**
|
|
4421
|
+
* @nullable
|
|
4422
|
+
*/
|
|
4423
|
+
export type WealthboxUpdateContact200HouseholdName = unknown | null;
|
|
4424
|
+
export type WealthboxUpdateContact200HouseholdMembersItem = {
|
|
4425
|
+
[key: string]: unknown | null;
|
|
4426
|
+
};
|
|
4427
|
+
/**
|
|
4428
|
+
* @nullable
|
|
4429
|
+
*/
|
|
4430
|
+
export type WealthboxUpdateContact200HouseholdId = unknown | null;
|
|
4431
|
+
export type WealthboxUpdateContact200Household = {
|
|
4432
|
+
/** @nullable */
|
|
4433
|
+
id?: WealthboxUpdateContact200HouseholdId;
|
|
4434
|
+
members?: WealthboxUpdateContact200HouseholdMembersItem[];
|
|
4435
|
+
/** @nullable */
|
|
4436
|
+
name?: WealthboxUpdateContact200HouseholdName;
|
|
4437
|
+
/** @nullable */
|
|
4438
|
+
title?: WealthboxUpdateContact200HouseholdTitle;
|
|
4439
|
+
[key: string]: unknown | null;
|
|
4440
|
+
};
|
|
4441
|
+
/**
|
|
4442
|
+
* @nullable
|
|
4443
|
+
*/
|
|
4444
|
+
export type WealthboxUpdateContact200GrossAnnualIncome = unknown | null;
|
|
4445
|
+
/**
|
|
4446
|
+
* @nullable
|
|
4447
|
+
*/
|
|
4448
|
+
export type WealthboxUpdateContact200GreenCardNumber = unknown | null;
|
|
4449
|
+
/**
|
|
4450
|
+
* @nullable
|
|
4451
|
+
*/
|
|
4452
|
+
export type WealthboxUpdateContact200Gender = unknown | null;
|
|
4453
|
+
/**
|
|
4454
|
+
* @nullable
|
|
4455
|
+
*/
|
|
4456
|
+
export type WealthboxUpdateContact200FirstName = unknown | null;
|
|
4457
|
+
/**
|
|
4458
|
+
* @nullable
|
|
4459
|
+
*/
|
|
4460
|
+
export type WealthboxUpdateContact200FamilyOfficer = unknown | null;
|
|
4461
|
+
/**
|
|
4462
|
+
* @nullable
|
|
4463
|
+
*/
|
|
4464
|
+
export type WealthboxUpdateContact200ExternalUniqueId = unknown | null;
|
|
4465
|
+
/**
|
|
4466
|
+
* @nullable
|
|
4467
|
+
*/
|
|
4468
|
+
export type WealthboxUpdateContact200EstimatedTaxes = unknown | null;
|
|
4469
|
+
export type WealthboxUpdateContact200EmailAddressesItem = {
|
|
4470
|
+
[key: string]: unknown | null;
|
|
4471
|
+
};
|
|
4472
|
+
export type WealthboxUpdateContact200DriversLicense = {
|
|
4473
|
+
[key: string]: unknown | null;
|
|
4474
|
+
};
|
|
4475
|
+
/**
|
|
4476
|
+
* @nullable
|
|
4477
|
+
*/
|
|
4478
|
+
export type WealthboxUpdateContact200Doctor = unknown | null;
|
|
4479
|
+
/**
|
|
4480
|
+
* @nullable
|
|
4481
|
+
*/
|
|
4482
|
+
export type WealthboxUpdateContact200DateOfDeath = unknown | null;
|
|
4483
|
+
export type WealthboxUpdateContact200CustomFieldsItem = {
|
|
4484
|
+
[key: string]: unknown | null;
|
|
4485
|
+
};
|
|
4486
|
+
/**
|
|
4487
|
+
* @nullable
|
|
4488
|
+
*/
|
|
4489
|
+
export type WealthboxUpdateContact200Creator = unknown | null;
|
|
4490
|
+
/**
|
|
4491
|
+
* @nullable
|
|
4492
|
+
*/
|
|
4493
|
+
export type WealthboxUpdateContact200CreatedAt = unknown | null;
|
|
4494
|
+
/**
|
|
4495
|
+
* @nullable
|
|
4496
|
+
*/
|
|
4497
|
+
export type WealthboxUpdateContact200Cpa = unknown | null;
|
|
4498
|
+
/**
|
|
4499
|
+
* @nullable
|
|
4500
|
+
*/
|
|
4501
|
+
export type WealthboxUpdateContact200ContactType = unknown | null;
|
|
4502
|
+
/**
|
|
4503
|
+
* @nullable
|
|
4504
|
+
*/
|
|
4505
|
+
export type WealthboxUpdateContact200ContactSource = unknown | null;
|
|
4506
|
+
export type WealthboxUpdateContact200ContactRolesItem = {
|
|
4507
|
+
[key: string]: unknown | null;
|
|
4508
|
+
};
|
|
4509
|
+
/**
|
|
4510
|
+
* @nullable
|
|
4511
|
+
*/
|
|
4512
|
+
export type WealthboxUpdateContact200ConfirmedByTaxReturn = unknown | null;
|
|
4513
|
+
/**
|
|
4514
|
+
* @nullable
|
|
4515
|
+
*/
|
|
4516
|
+
export type WealthboxUpdateContact200CompanyName = unknown | null;
|
|
4517
|
+
/**
|
|
4518
|
+
* @nullable
|
|
4519
|
+
*/
|
|
4520
|
+
export type WealthboxUpdateContact200ClientSince = unknown | null;
|
|
4521
|
+
/**
|
|
4522
|
+
* @nullable
|
|
4523
|
+
*/
|
|
4524
|
+
export type WealthboxUpdateContact200BusinessManager = unknown | null;
|
|
4525
|
+
/**
|
|
4526
|
+
* @nullable
|
|
4527
|
+
*/
|
|
4528
|
+
export type WealthboxUpdateContact200BirthPlace = unknown | null;
|
|
4529
|
+
/**
|
|
4530
|
+
* @nullable
|
|
4531
|
+
*/
|
|
4532
|
+
export type WealthboxUpdateContact200BirthDate = unknown | null;
|
|
4533
|
+
/**
|
|
4534
|
+
* @nullable
|
|
4535
|
+
*/
|
|
4536
|
+
export type WealthboxUpdateContact200BackgroundInformation = unknown | null;
|
|
4537
|
+
/**
|
|
4538
|
+
* @nullable
|
|
4539
|
+
*/
|
|
4540
|
+
export type WealthboxUpdateContact200Attorney = unknown | null;
|
|
4541
|
+
/**
|
|
4542
|
+
* @nullable
|
|
4543
|
+
*/
|
|
4544
|
+
export type WealthboxUpdateContact200Assistant = unknown | null;
|
|
4545
|
+
/**
|
|
4546
|
+
* @nullable
|
|
4547
|
+
*/
|
|
4548
|
+
export type WealthboxUpdateContact200AssignedTo = unknown | null;
|
|
4549
|
+
/**
|
|
4550
|
+
* @nullable
|
|
4551
|
+
*/
|
|
4552
|
+
export type WealthboxUpdateContact200Assets = unknown | null;
|
|
4553
|
+
/**
|
|
4554
|
+
* @nullable
|
|
4555
|
+
*/
|
|
4556
|
+
export type WealthboxUpdateContact200Anniversary = unknown | null;
|
|
4557
|
+
/**
|
|
4558
|
+
* @nullable
|
|
4559
|
+
*/
|
|
4560
|
+
export type WealthboxUpdateContact200AdjustedGrossIncome = unknown | null;
|
|
4100
4561
|
export type WealthboxUpdateContactBodyWebsitesItemKind = typeof WealthboxUpdateContactBodyWebsitesItemKind[keyof typeof WealthboxUpdateContactBodyWebsitesItemKind];
|
|
4101
4562
|
export declare const WealthboxUpdateContactBodyWebsitesItemKind: {
|
|
4102
4563
|
readonly Website: "Website";
|
|
@@ -4155,115 +4616,6 @@ export declare const WealthboxUpdateContactBodyRiskTolerance: {
|
|
|
4155
4616
|
readonly Moderate: "Moderate";
|
|
4156
4617
|
readonly High_Risk: "High Risk";
|
|
4157
4618
|
};
|
|
4158
|
-
export type WealthboxUpdateContactBody = {
|
|
4159
|
-
/** @nullable */
|
|
4160
|
-
adjusted_gross_income?: number | null;
|
|
4161
|
-
anniversary?: string;
|
|
4162
|
-
/** @nullable */
|
|
4163
|
-
assets?: number | null;
|
|
4164
|
-
/** @nullable */
|
|
4165
|
-
assigned_to?: number | null;
|
|
4166
|
-
/** @nullable */
|
|
4167
|
-
assistant?: number | null;
|
|
4168
|
-
/** @nullable */
|
|
4169
|
-
attorney?: number | null;
|
|
4170
|
-
background_information?: string;
|
|
4171
|
-
birth_date?: string;
|
|
4172
|
-
birth_place?: string;
|
|
4173
|
-
/** @nullable */
|
|
4174
|
-
business_manager?: number | null;
|
|
4175
|
-
client_since?: string;
|
|
4176
|
-
company_name?: string;
|
|
4177
|
-
/** @nullable */
|
|
4178
|
-
confirmed_by_tax_return?: boolean | null;
|
|
4179
|
-
contact_roles?: WealthboxUpdateContactBodyContactRolesItem[];
|
|
4180
|
-
contact_source?: WealthboxUpdateContactBodyContactSource;
|
|
4181
|
-
contact_type?: WealthboxUpdateContactBodyContactType;
|
|
4182
|
-
/** @nullable */
|
|
4183
|
-
cpa?: number | null;
|
|
4184
|
-
custom_fields?: WealthboxUpdateContactBodyCustomFieldsItem[];
|
|
4185
|
-
date_of_death?: string;
|
|
4186
|
-
/** @nullable */
|
|
4187
|
-
doctor?: number | null;
|
|
4188
|
-
drivers_license?: WealthboxUpdateContactBodyDriversLicense;
|
|
4189
|
-
email_addresses?: WealthboxUpdateContactBodyEmailAddressesItem[];
|
|
4190
|
-
/** @nullable */
|
|
4191
|
-
estimated_taxes?: number | null;
|
|
4192
|
-
external_unique_id?: string;
|
|
4193
|
-
/** @nullable */
|
|
4194
|
-
family_officer?: number | null;
|
|
4195
|
-
first_name?: string;
|
|
4196
|
-
gender?: WealthboxUpdateContactBodyGender;
|
|
4197
|
-
green_card_number?: string;
|
|
4198
|
-
/** @nullable */
|
|
4199
|
-
gross_annual_income?: number | null;
|
|
4200
|
-
household?: WealthboxUpdateContactBodyHousehold;
|
|
4201
|
-
/**
|
|
4202
|
-
* The id of the contact to be retrieved
|
|
4203
|
-
* @nullable
|
|
4204
|
-
*/
|
|
4205
|
-
id: number | null;
|
|
4206
|
-
important_information?: string;
|
|
4207
|
-
initial_crs_offering_date?: string;
|
|
4208
|
-
/** @nullable */
|
|
4209
|
-
insurance?: number | null;
|
|
4210
|
-
investment_objective?: WealthboxUpdateContactBodyInvestmentObjective;
|
|
4211
|
-
job_title?: string;
|
|
4212
|
-
last_adv_offering_date?: string;
|
|
4213
|
-
last_crs_offering_date?: string;
|
|
4214
|
-
last_name?: string;
|
|
4215
|
-
last_privacy_offering_date?: string;
|
|
4216
|
-
/** @nullable */
|
|
4217
|
-
liabilities?: number | null;
|
|
4218
|
-
linkedin_url?: string;
|
|
4219
|
-
maiden_name?: string;
|
|
4220
|
-
marital_status?: WealthboxUpdateContactBodyMaritalStatus;
|
|
4221
|
-
middle_name?: string;
|
|
4222
|
-
/** @nullable */
|
|
4223
|
-
mutual_fund_experience?: number | null;
|
|
4224
|
-
nickname?: string;
|
|
4225
|
-
/** @nullable */
|
|
4226
|
-
non_liquid_assets?: number | null;
|
|
4227
|
-
occupation?: WealthboxUpdateContactBodyOccupation;
|
|
4228
|
-
/** @nullable */
|
|
4229
|
-
other?: number | null;
|
|
4230
|
-
/** @nullable */
|
|
4231
|
-
other_investing_experience?: number | null;
|
|
4232
|
-
/** @nullable */
|
|
4233
|
-
partnerships_experience?: number | null;
|
|
4234
|
-
passport_number?: string;
|
|
4235
|
-
personal_interests?: string;
|
|
4236
|
-
phone_numbers?: WealthboxUpdateContactBodyPhoneNumbersItem[];
|
|
4237
|
-
prefix?: string;
|
|
4238
|
-
/** @nullable */
|
|
4239
|
-
referred_by?: number | null;
|
|
4240
|
-
retirement_date?: string;
|
|
4241
|
-
risk_tolerance?: WealthboxUpdateContactBodyRiskTolerance;
|
|
4242
|
-
signed_fee_agreement_date?: string;
|
|
4243
|
-
signed_fp_agreement_date?: string;
|
|
4244
|
-
signed_ips_agreement_date?: string;
|
|
4245
|
-
status?: WealthboxUpdateContactBodyStatus;
|
|
4246
|
-
/** @nullable */
|
|
4247
|
-
stocks_and_bonds_experience?: number | null;
|
|
4248
|
-
street_addresses?: WealthboxUpdateContactBodyStreetAddressesItem[];
|
|
4249
|
-
suffix?: string;
|
|
4250
|
-
tags?: string[];
|
|
4251
|
-
/** @nullable */
|
|
4252
|
-
tax_bracket?: number | null;
|
|
4253
|
-
/** @nullable */
|
|
4254
|
-
tax_year?: number | null;
|
|
4255
|
-
time_horizon?: WealthboxUpdateContactBodyTimeHorizon;
|
|
4256
|
-
/** @nullable */
|
|
4257
|
-
trusted_contact?: number | null;
|
|
4258
|
-
twitter_name?: string;
|
|
4259
|
-
type?: WealthboxUpdateContactBodyType;
|
|
4260
|
-
/** Integration user id for Wealthbox requests. */
|
|
4261
|
-
userId: string;
|
|
4262
|
-
/** Visibility: Everyone, Private, or a user group id (string) for group-restricted access per Wealthbox API. */
|
|
4263
|
-
visible_to?: string;
|
|
4264
|
-
websites?: WealthboxUpdateContactBodyWebsitesItem[];
|
|
4265
|
-
[key: string]: unknown | null;
|
|
4266
|
-
};
|
|
4267
4619
|
export type WealthboxUpdateContactBodyPhoneNumbersItemKind = typeof WealthboxUpdateContactBodyPhoneNumbersItemKind[keyof typeof WealthboxUpdateContactBodyPhoneNumbersItemKind];
|
|
4268
4620
|
export declare const WealthboxUpdateContactBodyPhoneNumbersItemKind: {
|
|
4269
4621
|
readonly Work: "Work";
|
|
@@ -4350,10 +4702,113 @@ export type WealthboxUpdateContactBodyDriversLicense = {
|
|
|
4350
4702
|
state?: string;
|
|
4351
4703
|
[key: string]: unknown | null;
|
|
4352
4704
|
};
|
|
4353
|
-
export type
|
|
4705
|
+
export type WealthboxUpdateContactBody = {
|
|
4706
|
+
/** @nullable */
|
|
4707
|
+
adjusted_gross_income?: number | null;
|
|
4708
|
+
anniversary?: string;
|
|
4709
|
+
/** @nullable */
|
|
4710
|
+
assets?: number | null;
|
|
4711
|
+
/** @nullable */
|
|
4712
|
+
assigned_to?: number | null;
|
|
4713
|
+
/** @nullable */
|
|
4714
|
+
assistant?: number | null;
|
|
4715
|
+
/** @nullable */
|
|
4716
|
+
attorney?: number | null;
|
|
4717
|
+
background_information?: string;
|
|
4718
|
+
birth_date?: string;
|
|
4719
|
+
birth_place?: string;
|
|
4720
|
+
/** @nullable */
|
|
4721
|
+
business_manager?: number | null;
|
|
4722
|
+
client_since?: string;
|
|
4723
|
+
company_name?: string;
|
|
4724
|
+
/** @nullable */
|
|
4725
|
+
confirmed_by_tax_return?: boolean | null;
|
|
4726
|
+
contact_roles?: WealthboxUpdateContactBodyContactRolesItem[];
|
|
4727
|
+
contact_source?: WealthboxUpdateContactBodyContactSource;
|
|
4728
|
+
contact_type?: WealthboxUpdateContactBodyContactType;
|
|
4729
|
+
/** @nullable */
|
|
4730
|
+
cpa?: number | null;
|
|
4731
|
+
custom_fields?: WealthboxUpdateContactBodyCustomFieldsItem[];
|
|
4732
|
+
date_of_death?: string;
|
|
4733
|
+
/** @nullable */
|
|
4734
|
+
doctor?: number | null;
|
|
4735
|
+
drivers_license?: WealthboxUpdateContactBodyDriversLicense;
|
|
4736
|
+
email_addresses?: WealthboxUpdateContactBodyEmailAddressesItem[];
|
|
4737
|
+
/** @nullable */
|
|
4738
|
+
estimated_taxes?: number | null;
|
|
4739
|
+
external_unique_id?: string;
|
|
4740
|
+
/** @nullable */
|
|
4741
|
+
family_officer?: number | null;
|
|
4742
|
+
first_name?: string;
|
|
4743
|
+
gender?: WealthboxUpdateContactBodyGender;
|
|
4744
|
+
green_card_number?: string;
|
|
4745
|
+
/** @nullable */
|
|
4746
|
+
gross_annual_income?: number | null;
|
|
4747
|
+
household?: WealthboxUpdateContactBodyHousehold;
|
|
4748
|
+
/**
|
|
4749
|
+
* The id of the contact to be retrieved
|
|
4750
|
+
* @nullable
|
|
4751
|
+
*/
|
|
4752
|
+
id: number | null;
|
|
4753
|
+
important_information?: string;
|
|
4754
|
+
initial_crs_offering_date?: string;
|
|
4755
|
+
/** @nullable */
|
|
4756
|
+
insurance?: number | null;
|
|
4757
|
+
investment_objective?: WealthboxUpdateContactBodyInvestmentObjective;
|
|
4758
|
+
job_title?: string;
|
|
4759
|
+
last_adv_offering_date?: string;
|
|
4760
|
+
last_crs_offering_date?: string;
|
|
4761
|
+
last_name?: string;
|
|
4762
|
+
last_privacy_offering_date?: string;
|
|
4354
4763
|
/** @nullable */
|
|
4355
|
-
|
|
4356
|
-
|
|
4764
|
+
liabilities?: number | null;
|
|
4765
|
+
linkedin_url?: string;
|
|
4766
|
+
maiden_name?: string;
|
|
4767
|
+
marital_status?: WealthboxUpdateContactBodyMaritalStatus;
|
|
4768
|
+
middle_name?: string;
|
|
4769
|
+
/** @nullable */
|
|
4770
|
+
mutual_fund_experience?: number | null;
|
|
4771
|
+
nickname?: string;
|
|
4772
|
+
/** @nullable */
|
|
4773
|
+
non_liquid_assets?: number | null;
|
|
4774
|
+
occupation?: WealthboxUpdateContactBodyOccupation;
|
|
4775
|
+
/** @nullable */
|
|
4776
|
+
other?: number | null;
|
|
4777
|
+
/** @nullable */
|
|
4778
|
+
other_investing_experience?: number | null;
|
|
4779
|
+
/** @nullable */
|
|
4780
|
+
partnerships_experience?: number | null;
|
|
4781
|
+
passport_number?: string;
|
|
4782
|
+
personal_interests?: string;
|
|
4783
|
+
phone_numbers?: WealthboxUpdateContactBodyPhoneNumbersItem[];
|
|
4784
|
+
prefix?: string;
|
|
4785
|
+
/** @nullable */
|
|
4786
|
+
referred_by?: number | null;
|
|
4787
|
+
retirement_date?: string;
|
|
4788
|
+
risk_tolerance?: WealthboxUpdateContactBodyRiskTolerance;
|
|
4789
|
+
signed_fee_agreement_date?: string;
|
|
4790
|
+
signed_fp_agreement_date?: string;
|
|
4791
|
+
signed_ips_agreement_date?: string;
|
|
4792
|
+
status?: WealthboxUpdateContactBodyStatus;
|
|
4793
|
+
/** @nullable */
|
|
4794
|
+
stocks_and_bonds_experience?: number | null;
|
|
4795
|
+
street_addresses?: WealthboxUpdateContactBodyStreetAddressesItem[];
|
|
4796
|
+
suffix?: string;
|
|
4797
|
+
tags?: string[];
|
|
4798
|
+
/** @nullable */
|
|
4799
|
+
tax_bracket?: number | null;
|
|
4800
|
+
/** @nullable */
|
|
4801
|
+
tax_year?: number | null;
|
|
4802
|
+
time_horizon?: WealthboxUpdateContactBodyTimeHorizon;
|
|
4803
|
+
/** @nullable */
|
|
4804
|
+
trusted_contact?: number | null;
|
|
4805
|
+
twitter_name?: string;
|
|
4806
|
+
type?: WealthboxUpdateContactBodyType;
|
|
4807
|
+
/** Integration user id for Wealthbox requests. */
|
|
4808
|
+
userId: string;
|
|
4809
|
+
/** Visibility: Everyone, Private, or a user group id (string) for group-restricted access per Wealthbox API. */
|
|
4810
|
+
visible_to?: string;
|
|
4811
|
+
websites?: WealthboxUpdateContactBodyWebsitesItem[];
|
|
4357
4812
|
[key: string]: unknown | null;
|
|
4358
4813
|
};
|
|
4359
4814
|
/**
|
|
@@ -4365,6 +4820,12 @@ export type WealthboxUpdateContactBodyCustomFieldsItemValueAnyOfTwo = unknown |
|
|
|
4365
4820
|
*/
|
|
4366
4821
|
export type WealthboxUpdateContactBodyCustomFieldsItemValueAnyOf = unknown | null;
|
|
4367
4822
|
export type WealthboxUpdateContactBodyCustomFieldsItemValue = string | number | boolean | WealthboxUpdateContactBodyCustomFieldsItemValueAnyOf | WealthboxUpdateContactBodyCustomFieldsItemValueAnyOfTwo;
|
|
4823
|
+
export type WealthboxUpdateContactBodyCustomFieldsItem = {
|
|
4824
|
+
/** @nullable */
|
|
4825
|
+
id?: number | null;
|
|
4826
|
+
value?: WealthboxUpdateContactBodyCustomFieldsItemValue;
|
|
4827
|
+
[key: string]: unknown | null;
|
|
4828
|
+
};
|
|
4368
4829
|
export type WealthboxUpdateContactBodyContactType = typeof WealthboxUpdateContactBodyContactType[keyof typeof WealthboxUpdateContactBodyContactType];
|
|
4369
4830
|
export declare const WealthboxUpdateContactBodyContactType: {
|
|
4370
4831
|
readonly Client: "Client";
|
|
@@ -4893,101 +5354,6 @@ export declare const WealthboxCreateContactBodyTimeHorizon: {
|
|
|
4893
5354
|
readonly Intermediate: "Intermediate";
|
|
4894
5355
|
readonly Long_Term: "Long Term";
|
|
4895
5356
|
};
|
|
4896
|
-
export type WealthboxCreateContactBodyStreetAddressesItemKind = typeof WealthboxCreateContactBodyStreetAddressesItemKind[keyof typeof WealthboxCreateContactBodyStreetAddressesItemKind];
|
|
4897
|
-
export declare const WealthboxCreateContactBodyStreetAddressesItemKind: {
|
|
4898
|
-
readonly Work: "Work";
|
|
4899
|
-
readonly Home: "Home";
|
|
4900
|
-
readonly Mobile: "Mobile";
|
|
4901
|
-
readonly Vacation: "Vacation";
|
|
4902
|
-
readonly Fax: "Fax";
|
|
4903
|
-
readonly Other: "Other";
|
|
4904
|
-
};
|
|
4905
|
-
export type WealthboxCreateContactBodyStreetAddressesItem = {
|
|
4906
|
-
city?: string;
|
|
4907
|
-
country?: string;
|
|
4908
|
-
destroy?: boolean;
|
|
4909
|
-
kind?: WealthboxCreateContactBodyStreetAddressesItemKind;
|
|
4910
|
-
principal?: boolean;
|
|
4911
|
-
state?: string;
|
|
4912
|
-
street_line_1?: string;
|
|
4913
|
-
street_line_2?: string;
|
|
4914
|
-
zip_code?: string;
|
|
4915
|
-
[key: string]: unknown | null;
|
|
4916
|
-
};
|
|
4917
|
-
export type WealthboxCreateContactBodyStatus = typeof WealthboxCreateContactBodyStatus[keyof typeof WealthboxCreateContactBodyStatus];
|
|
4918
|
-
export declare const WealthboxCreateContactBodyStatus: {
|
|
4919
|
-
readonly Active: "Active";
|
|
4920
|
-
readonly Inactive: "Inactive";
|
|
4921
|
-
};
|
|
4922
|
-
export type WealthboxCreateContactBodyRiskTolerance = typeof WealthboxCreateContactBodyRiskTolerance[keyof typeof WealthboxCreateContactBodyRiskTolerance];
|
|
4923
|
-
export declare const WealthboxCreateContactBodyRiskTolerance: {
|
|
4924
|
-
readonly Low: "Low";
|
|
4925
|
-
readonly Moderate: "Moderate";
|
|
4926
|
-
readonly High_Risk: "High Risk";
|
|
4927
|
-
};
|
|
4928
|
-
export type WealthboxCreateContactBodyPhoneNumbersItemKind = typeof WealthboxCreateContactBodyPhoneNumbersItemKind[keyof typeof WealthboxCreateContactBodyPhoneNumbersItemKind];
|
|
4929
|
-
export declare const WealthboxCreateContactBodyPhoneNumbersItemKind: {
|
|
4930
|
-
readonly Work: "Work";
|
|
4931
|
-
readonly Home: "Home";
|
|
4932
|
-
readonly Mobile: "Mobile";
|
|
4933
|
-
readonly Vacation: "Vacation";
|
|
4934
|
-
readonly Fax: "Fax";
|
|
4935
|
-
readonly Other: "Other";
|
|
4936
|
-
};
|
|
4937
|
-
export type WealthboxCreateContactBodyPhoneNumbersItem = {
|
|
4938
|
-
address: string;
|
|
4939
|
-
destroy?: boolean;
|
|
4940
|
-
extension?: string;
|
|
4941
|
-
kind?: WealthboxCreateContactBodyPhoneNumbersItemKind;
|
|
4942
|
-
principal?: boolean;
|
|
4943
|
-
[key: string]: unknown | null;
|
|
4944
|
-
};
|
|
4945
|
-
export type WealthboxCreateContactBodyOccupation = {
|
|
4946
|
-
name?: string;
|
|
4947
|
-
start_date?: string;
|
|
4948
|
-
[key: string]: unknown | null;
|
|
4949
|
-
};
|
|
4950
|
-
export type WealthboxCreateContactBodyMaritalStatus = typeof WealthboxCreateContactBodyMaritalStatus[keyof typeof WealthboxCreateContactBodyMaritalStatus];
|
|
4951
|
-
export declare const WealthboxCreateContactBodyMaritalStatus: {
|
|
4952
|
-
readonly Married: "Married";
|
|
4953
|
-
readonly Single: "Single";
|
|
4954
|
-
readonly Divorced: "Divorced";
|
|
4955
|
-
readonly Widowed: "Widowed";
|
|
4956
|
-
readonly Life_Partner: "Life Partner";
|
|
4957
|
-
readonly Separated: "Separated";
|
|
4958
|
-
readonly Unknown: "Unknown";
|
|
4959
|
-
};
|
|
4960
|
-
export type WealthboxCreateContactBodyInvestmentObjective = typeof WealthboxCreateContactBodyInvestmentObjective[keyof typeof WealthboxCreateContactBodyInvestmentObjective];
|
|
4961
|
-
export declare const WealthboxCreateContactBodyInvestmentObjective: {
|
|
4962
|
-
readonly Aggressive_Growth: "Aggressive Growth";
|
|
4963
|
-
readonly Growth: "Growth";
|
|
4964
|
-
readonly Income: "Income";
|
|
4965
|
-
readonly Safety_of_Principal: "Safety of Principal";
|
|
4966
|
-
};
|
|
4967
|
-
export type WealthboxCreateContactBodyHouseholdTitle = typeof WealthboxCreateContactBodyHouseholdTitle[keyof typeof WealthboxCreateContactBodyHouseholdTitle];
|
|
4968
|
-
export declare const WealthboxCreateContactBodyHouseholdTitle: {
|
|
4969
|
-
readonly Head: "Head";
|
|
4970
|
-
readonly Spouse: "Spouse";
|
|
4971
|
-
readonly Partner: "Partner";
|
|
4972
|
-
readonly Child: "Child";
|
|
4973
|
-
readonly Grandchild: "Grandchild";
|
|
4974
|
-
readonly Parent: "Parent";
|
|
4975
|
-
readonly Grandparent: "Grandparent";
|
|
4976
|
-
readonly Sibling: "Sibling";
|
|
4977
|
-
readonly Other_Dependent: "Other Dependent";
|
|
4978
|
-
};
|
|
4979
|
-
export type WealthboxCreateContactBodyHousehold = {
|
|
4980
|
-
name?: string;
|
|
4981
|
-
title?: WealthboxCreateContactBodyHouseholdTitle;
|
|
4982
|
-
[key: string]: unknown | null;
|
|
4983
|
-
};
|
|
4984
|
-
export type WealthboxCreateContactBodyGender = typeof WealthboxCreateContactBodyGender[keyof typeof WealthboxCreateContactBodyGender];
|
|
4985
|
-
export declare const WealthboxCreateContactBodyGender: {
|
|
4986
|
-
readonly Female: "Female";
|
|
4987
|
-
readonly Male: "Male";
|
|
4988
|
-
readonly 'Non-binary': "Non-binary";
|
|
4989
|
-
readonly Unknown: "Unknown";
|
|
4990
|
-
};
|
|
4991
5357
|
export type WealthboxCreateContactBody = {
|
|
4992
5358
|
/** @nullable */
|
|
4993
5359
|
adjusted_gross_income?: number | null;
|
|
@@ -5092,6 +5458,101 @@ export type WealthboxCreateContactBody = {
|
|
|
5092
5458
|
websites?: WealthboxCreateContactBodyWebsitesItem[];
|
|
5093
5459
|
[key: string]: unknown | null;
|
|
5094
5460
|
};
|
|
5461
|
+
export type WealthboxCreateContactBodyStreetAddressesItemKind = typeof WealthboxCreateContactBodyStreetAddressesItemKind[keyof typeof WealthboxCreateContactBodyStreetAddressesItemKind];
|
|
5462
|
+
export declare const WealthboxCreateContactBodyStreetAddressesItemKind: {
|
|
5463
|
+
readonly Work: "Work";
|
|
5464
|
+
readonly Home: "Home";
|
|
5465
|
+
readonly Mobile: "Mobile";
|
|
5466
|
+
readonly Vacation: "Vacation";
|
|
5467
|
+
readonly Fax: "Fax";
|
|
5468
|
+
readonly Other: "Other";
|
|
5469
|
+
};
|
|
5470
|
+
export type WealthboxCreateContactBodyStreetAddressesItem = {
|
|
5471
|
+
city?: string;
|
|
5472
|
+
country?: string;
|
|
5473
|
+
destroy?: boolean;
|
|
5474
|
+
kind?: WealthboxCreateContactBodyStreetAddressesItemKind;
|
|
5475
|
+
principal?: boolean;
|
|
5476
|
+
state?: string;
|
|
5477
|
+
street_line_1?: string;
|
|
5478
|
+
street_line_2?: string;
|
|
5479
|
+
zip_code?: string;
|
|
5480
|
+
[key: string]: unknown | null;
|
|
5481
|
+
};
|
|
5482
|
+
export type WealthboxCreateContactBodyStatus = typeof WealthboxCreateContactBodyStatus[keyof typeof WealthboxCreateContactBodyStatus];
|
|
5483
|
+
export declare const WealthboxCreateContactBodyStatus: {
|
|
5484
|
+
readonly Active: "Active";
|
|
5485
|
+
readonly Inactive: "Inactive";
|
|
5486
|
+
};
|
|
5487
|
+
export type WealthboxCreateContactBodyRiskTolerance = typeof WealthboxCreateContactBodyRiskTolerance[keyof typeof WealthboxCreateContactBodyRiskTolerance];
|
|
5488
|
+
export declare const WealthboxCreateContactBodyRiskTolerance: {
|
|
5489
|
+
readonly Low: "Low";
|
|
5490
|
+
readonly Moderate: "Moderate";
|
|
5491
|
+
readonly High_Risk: "High Risk";
|
|
5492
|
+
};
|
|
5493
|
+
export type WealthboxCreateContactBodyPhoneNumbersItemKind = typeof WealthboxCreateContactBodyPhoneNumbersItemKind[keyof typeof WealthboxCreateContactBodyPhoneNumbersItemKind];
|
|
5494
|
+
export declare const WealthboxCreateContactBodyPhoneNumbersItemKind: {
|
|
5495
|
+
readonly Work: "Work";
|
|
5496
|
+
readonly Home: "Home";
|
|
5497
|
+
readonly Mobile: "Mobile";
|
|
5498
|
+
readonly Vacation: "Vacation";
|
|
5499
|
+
readonly Fax: "Fax";
|
|
5500
|
+
readonly Other: "Other";
|
|
5501
|
+
};
|
|
5502
|
+
export type WealthboxCreateContactBodyPhoneNumbersItem = {
|
|
5503
|
+
address: string;
|
|
5504
|
+
destroy?: boolean;
|
|
5505
|
+
extension?: string;
|
|
5506
|
+
kind?: WealthboxCreateContactBodyPhoneNumbersItemKind;
|
|
5507
|
+
principal?: boolean;
|
|
5508
|
+
[key: string]: unknown | null;
|
|
5509
|
+
};
|
|
5510
|
+
export type WealthboxCreateContactBodyOccupation = {
|
|
5511
|
+
name?: string;
|
|
5512
|
+
start_date?: string;
|
|
5513
|
+
[key: string]: unknown | null;
|
|
5514
|
+
};
|
|
5515
|
+
export type WealthboxCreateContactBodyMaritalStatus = typeof WealthboxCreateContactBodyMaritalStatus[keyof typeof WealthboxCreateContactBodyMaritalStatus];
|
|
5516
|
+
export declare const WealthboxCreateContactBodyMaritalStatus: {
|
|
5517
|
+
readonly Married: "Married";
|
|
5518
|
+
readonly Single: "Single";
|
|
5519
|
+
readonly Divorced: "Divorced";
|
|
5520
|
+
readonly Widowed: "Widowed";
|
|
5521
|
+
readonly Life_Partner: "Life Partner";
|
|
5522
|
+
readonly Separated: "Separated";
|
|
5523
|
+
readonly Unknown: "Unknown";
|
|
5524
|
+
};
|
|
5525
|
+
export type WealthboxCreateContactBodyInvestmentObjective = typeof WealthboxCreateContactBodyInvestmentObjective[keyof typeof WealthboxCreateContactBodyInvestmentObjective];
|
|
5526
|
+
export declare const WealthboxCreateContactBodyInvestmentObjective: {
|
|
5527
|
+
readonly Aggressive_Growth: "Aggressive Growth";
|
|
5528
|
+
readonly Growth: "Growth";
|
|
5529
|
+
readonly Income: "Income";
|
|
5530
|
+
readonly Safety_of_Principal: "Safety of Principal";
|
|
5531
|
+
};
|
|
5532
|
+
export type WealthboxCreateContactBodyHouseholdTitle = typeof WealthboxCreateContactBodyHouseholdTitle[keyof typeof WealthboxCreateContactBodyHouseholdTitle];
|
|
5533
|
+
export declare const WealthboxCreateContactBodyHouseholdTitle: {
|
|
5534
|
+
readonly Head: "Head";
|
|
5535
|
+
readonly Spouse: "Spouse";
|
|
5536
|
+
readonly Partner: "Partner";
|
|
5537
|
+
readonly Child: "Child";
|
|
5538
|
+
readonly Grandchild: "Grandchild";
|
|
5539
|
+
readonly Parent: "Parent";
|
|
5540
|
+
readonly Grandparent: "Grandparent";
|
|
5541
|
+
readonly Sibling: "Sibling";
|
|
5542
|
+
readonly Other_Dependent: "Other Dependent";
|
|
5543
|
+
};
|
|
5544
|
+
export type WealthboxCreateContactBodyHousehold = {
|
|
5545
|
+
name?: string;
|
|
5546
|
+
title?: WealthboxCreateContactBodyHouseholdTitle;
|
|
5547
|
+
[key: string]: unknown | null;
|
|
5548
|
+
};
|
|
5549
|
+
export type WealthboxCreateContactBodyGender = typeof WealthboxCreateContactBodyGender[keyof typeof WealthboxCreateContactBodyGender];
|
|
5550
|
+
export declare const WealthboxCreateContactBodyGender: {
|
|
5551
|
+
readonly Female: "Female";
|
|
5552
|
+
readonly Male: "Male";
|
|
5553
|
+
readonly 'Non-binary': "Non-binary";
|
|
5554
|
+
readonly Unknown: "Unknown";
|
|
5555
|
+
};
|
|
5095
5556
|
export type WealthboxCreateContactBodyEmailAddressesItemKind = typeof WealthboxCreateContactBodyEmailAddressesItemKind[keyof typeof WealthboxCreateContactBodyEmailAddressesItemKind];
|
|
5096
5557
|
export declare const WealthboxCreateContactBodyEmailAddressesItemKind: {
|
|
5097
5558
|
readonly Work: "Work";
|
|
@@ -6715,14 +7176,9 @@ export type RedtailGetActivityTemplatesBody = {
|
|
|
6715
7176
|
userId: string;
|
|
6716
7177
|
[key: string]: unknown | null;
|
|
6717
7178
|
};
|
|
6718
|
-
export type RedtailGetDatabaseTeams200Meta = {
|
|
6719
|
-
total_pages?: number;
|
|
6720
|
-
total_records?: number;
|
|
6721
|
-
[key: string]: unknown | null;
|
|
6722
|
-
};
|
|
6723
|
-
export type RedtailGetDatabaseTeams200 = {
|
|
6724
|
-
database_teams?: RedtailGetDatabaseTeams200DatabaseTeams;
|
|
6725
|
-
meta?: RedtailGetDatabaseTeams200Meta;
|
|
7179
|
+
export type RedtailGetDatabaseTeams200Meta = {
|
|
7180
|
+
total_pages?: number;
|
|
7181
|
+
total_records?: number;
|
|
6726
7182
|
[key: string]: unknown | null;
|
|
6727
7183
|
};
|
|
6728
7184
|
export type RedtailGetDatabaseTeams200DatabaseTeamsAnyOfTwo = {
|
|
@@ -6732,6 +7188,11 @@ export type RedtailGetDatabaseTeams200DatabaseTeamsAnyOfItem = {
|
|
|
6732
7188
|
[key: string]: unknown | null;
|
|
6733
7189
|
};
|
|
6734
7190
|
export type RedtailGetDatabaseTeams200DatabaseTeams = RedtailGetDatabaseTeams200DatabaseTeamsAnyOfItem[] | RedtailGetDatabaseTeams200DatabaseTeamsAnyOfTwo;
|
|
7191
|
+
export type RedtailGetDatabaseTeams200 = {
|
|
7192
|
+
database_teams?: RedtailGetDatabaseTeams200DatabaseTeams;
|
|
7193
|
+
meta?: RedtailGetDatabaseTeams200Meta;
|
|
7194
|
+
[key: string]: unknown | null;
|
|
7195
|
+
};
|
|
6735
7196
|
export type RedtailGetDatabaseTeamsBody = {
|
|
6736
7197
|
/**
|
|
6737
7198
|
* Whether to include family member data for the families endpoint
|
|
@@ -7502,7 +7963,6 @@ export type RedtailUpdateContactAccount200AnyOfAccountAnyOfFourItem = {
|
|
|
7502
7963
|
updated_at?: string | null;
|
|
7503
7964
|
[key: string]: unknown | null;
|
|
7504
7965
|
};
|
|
7505
|
-
export type RedtailUpdateContactAccount200AnyOfAccount = RedtailUpdateContactAccount200AnyOfAccountAnyOf | RedtailUpdateContactAccount200AnyOfAccountAnyOfFourItem[];
|
|
7506
7966
|
/**
|
|
7507
7967
|
* @nullable
|
|
7508
7968
|
*/
|
|
@@ -7536,6 +7996,7 @@ export type RedtailUpdateContactAccount200AnyOfAccountAnyOf = {
|
|
|
7536
7996
|
updated_at?: string | null;
|
|
7537
7997
|
[key: string]: unknown | null;
|
|
7538
7998
|
};
|
|
7999
|
+
export type RedtailUpdateContactAccount200AnyOfAccount = RedtailUpdateContactAccount200AnyOfAccountAnyOf | RedtailUpdateContactAccount200AnyOfAccountAnyOfFourItem[];
|
|
7539
8000
|
export type RedtailUpdateContactAccountBody = {
|
|
7540
8001
|
/**
|
|
7541
8002
|
* Account type id. Required by Redtail.
|
|
@@ -7568,12 +8029,11 @@ export type RedtailCreateContactAccount200AnyOfNine = {
|
|
|
7568
8029
|
success?: boolean;
|
|
7569
8030
|
[key: string]: unknown | null;
|
|
7570
8031
|
};
|
|
7571
|
-
export type RedtailCreateContactAccount200 = RedtailCreateContactAccount200AnyOf | RedtailCreateContactAccount200AnyOfNine;
|
|
7572
|
-
export type RedtailCreateContactAccount200AnyOfAccount = RedtailCreateContactAccount200AnyOfAccountAnyOf | RedtailCreateContactAccount200AnyOfAccountAnyOfFourItem[];
|
|
7573
8032
|
export type RedtailCreateContactAccount200AnyOf = {
|
|
7574
8033
|
account: RedtailCreateContactAccount200AnyOfAccount;
|
|
7575
8034
|
[key: string]: unknown | null;
|
|
7576
8035
|
};
|
|
8036
|
+
export type RedtailCreateContactAccount200 = RedtailCreateContactAccount200AnyOf | RedtailCreateContactAccount200AnyOfNine;
|
|
7577
8037
|
/**
|
|
7578
8038
|
* @nullable
|
|
7579
8039
|
*/
|
|
@@ -7640,6 +8100,7 @@ export type RedtailCreateContactAccount200AnyOfAccountAnyOf = {
|
|
|
7640
8100
|
updated_at?: string | null;
|
|
7641
8101
|
[key: string]: unknown | null;
|
|
7642
8102
|
};
|
|
8103
|
+
export type RedtailCreateContactAccount200AnyOfAccount = RedtailCreateContactAccount200AnyOfAccountAnyOf | RedtailCreateContactAccount200AnyOfAccountAnyOfFourItem[];
|
|
7643
8104
|
export type RedtailCreateContactAccountBody = {
|
|
7644
8105
|
/**
|
|
7645
8106
|
* Account type id. Required by Redtail.
|
|
@@ -7865,7 +8326,6 @@ export type RedtailGetContactNote200AnyOfThree = {
|
|
|
7865
8326
|
notes: RedtailGetContactNote200AnyOfThreeNotes;
|
|
7866
8327
|
[key: string]: unknown | null;
|
|
7867
8328
|
};
|
|
7868
|
-
export type RedtailGetContactNote200 = RedtailGetContactNote200AnyOf | RedtailGetContactNote200AnyOfThree;
|
|
7869
8329
|
export type RedtailGetContactNote200AnyOfNote = {
|
|
7870
8330
|
/** @nullable */
|
|
7871
8331
|
added_by?: number | null;
|
|
@@ -7896,6 +8356,7 @@ export type RedtailGetContactNote200AnyOf = {
|
|
|
7896
8356
|
note: RedtailGetContactNote200AnyOfNote;
|
|
7897
8357
|
[key: string]: unknown | null;
|
|
7898
8358
|
};
|
|
8359
|
+
export type RedtailGetContactNote200 = RedtailGetContactNote200AnyOf | RedtailGetContactNote200AnyOfThree;
|
|
7899
8360
|
/**
|
|
7900
8361
|
* Get or delete a contact note: contact id, note id, and integration user (required by hub handlers).
|
|
7901
8362
|
*/
|
|
@@ -9377,10 +9838,6 @@ export type RedtailDeleteActivityBody = {
|
|
|
9377
9838
|
/** Integration user id for Redtail requests. */
|
|
9378
9839
|
userId: string;
|
|
9379
9840
|
};
|
|
9380
|
-
export type RedtailUpdateActivity200 = {
|
|
9381
|
-
activity: RedtailUpdateActivity200Activity;
|
|
9382
|
-
[key: string]: unknown | null;
|
|
9383
|
-
};
|
|
9384
9841
|
/**
|
|
9385
9842
|
* @nullable
|
|
9386
9843
|
*/
|
|
@@ -9457,6 +9914,10 @@ export type RedtailUpdateActivity200Activity = {
|
|
|
9457
9914
|
updated_at?: string | null;
|
|
9458
9915
|
[key: string]: unknown | null;
|
|
9459
9916
|
};
|
|
9917
|
+
export type RedtailUpdateActivity200 = {
|
|
9918
|
+
activity: RedtailUpdateActivity200Activity;
|
|
9919
|
+
[key: string]: unknown | null;
|
|
9920
|
+
};
|
|
9460
9921
|
/**
|
|
9461
9922
|
* Create an activity. `userId` is for the integration hub only and is not sent to Redtail. Additional Redtail fields are accepted.
|
|
9462
9923
|
*/
|
|
@@ -9919,11 +10380,6 @@ export type RedtailGetContactAccounts200Meta = {
|
|
|
9919
10380
|
total_records?: number;
|
|
9920
10381
|
[key: string]: unknown | null;
|
|
9921
10382
|
};
|
|
9922
|
-
export type RedtailGetContactAccounts200 = {
|
|
9923
|
-
accounts?: RedtailGetContactAccounts200AccountsItem[];
|
|
9924
|
-
meta?: RedtailGetContactAccounts200Meta;
|
|
9925
|
-
[key: string]: unknown | null;
|
|
9926
|
-
};
|
|
9927
10383
|
/**
|
|
9928
10384
|
* @nullable
|
|
9929
10385
|
*/
|
|
@@ -9957,6 +10413,11 @@ export type RedtailGetContactAccounts200AccountsItem = {
|
|
|
9957
10413
|
updated_at?: string | null;
|
|
9958
10414
|
[key: string]: unknown | null;
|
|
9959
10415
|
};
|
|
10416
|
+
export type RedtailGetContactAccounts200 = {
|
|
10417
|
+
accounts?: RedtailGetContactAccounts200AccountsItem[];
|
|
10418
|
+
meta?: RedtailGetContactAccounts200Meta;
|
|
10419
|
+
[key: string]: unknown | null;
|
|
10420
|
+
};
|
|
9960
10421
|
export type RedtailGetContactAccountsBody = {
|
|
9961
10422
|
/**
|
|
9962
10423
|
* Redtail contact identifier
|
|
@@ -10024,6 +10485,10 @@ export type RedtailGetContactPersonalProfileBody = {
|
|
|
10024
10485
|
userId: string;
|
|
10025
10486
|
[key: string]: unknown | null;
|
|
10026
10487
|
};
|
|
10488
|
+
export type RedtailUpdateContact200 = {
|
|
10489
|
+
contact?: RedtailUpdateContact200Contact;
|
|
10490
|
+
[key: string]: unknown | null;
|
|
10491
|
+
};
|
|
10027
10492
|
export type RedtailUpdateContact200ContactUrlsItem = {
|
|
10028
10493
|
[key: string]: unknown | null;
|
|
10029
10494
|
};
|
|
@@ -10162,10 +10627,6 @@ export type RedtailUpdateContact200Contact = {
|
|
|
10162
10627
|
writing_advisor_id?: number | null;
|
|
10163
10628
|
[key: string]: unknown | null;
|
|
10164
10629
|
};
|
|
10165
|
-
export type RedtailUpdateContact200 = {
|
|
10166
|
-
contact?: RedtailUpdateContact200Contact;
|
|
10167
|
-
[key: string]: unknown | null;
|
|
10168
|
-
};
|
|
10169
10630
|
/**
|
|
10170
10631
|
* Contact type. Required by Redtail.
|
|
10171
10632
|
*/
|
|
@@ -10237,17 +10698,52 @@ export type RedtailGetContacts200Meta = {
|
|
|
10237
10698
|
total_records?: number;
|
|
10238
10699
|
[key: string]: unknown | null;
|
|
10239
10700
|
};
|
|
10240
|
-
export type RedtailGetContacts200 = {
|
|
10241
|
-
contacts?: RedtailGetContacts200ContactsItem[];
|
|
10242
|
-
meta?: RedtailGetContacts200Meta;
|
|
10243
|
-
[key: string]: unknown | null;
|
|
10244
|
-
};
|
|
10245
10701
|
export type RedtailGetContacts200ContactsItemUrlsItem = {
|
|
10246
10702
|
[key: string]: unknown | null;
|
|
10247
10703
|
};
|
|
10248
10704
|
export type RedtailGetContacts200ContactsItemPhonesItem = {
|
|
10249
10705
|
[key: string]: unknown | null;
|
|
10250
10706
|
};
|
|
10707
|
+
export type RedtailGetContacts200ContactsItemFamilyMembersItem = {
|
|
10708
|
+
contact_id?: number;
|
|
10709
|
+
/** @nullable */
|
|
10710
|
+
created_at?: string | null;
|
|
10711
|
+
/** @nullable */
|
|
10712
|
+
deleted?: boolean | null;
|
|
10713
|
+
family_id?: number;
|
|
10714
|
+
/** @nullable */
|
|
10715
|
+
hoh?: boolean | null;
|
|
10716
|
+
id?: number;
|
|
10717
|
+
/** @nullable */
|
|
10718
|
+
relationship?: number | null;
|
|
10719
|
+
/** @nullable */
|
|
10720
|
+
relationship_name?: string | null;
|
|
10721
|
+
/** @nullable */
|
|
10722
|
+
updated_at?: string | null;
|
|
10723
|
+
[key: string]: unknown | null;
|
|
10724
|
+
};
|
|
10725
|
+
/**
|
|
10726
|
+
* @nullable
|
|
10727
|
+
*/
|
|
10728
|
+
export type RedtailGetContacts200ContactsItemFamily = {
|
|
10729
|
+
/** @nullable */
|
|
10730
|
+
created_at?: string | null;
|
|
10731
|
+
/** @nullable */
|
|
10732
|
+
deleted?: boolean | null;
|
|
10733
|
+
id?: number;
|
|
10734
|
+
members?: RedtailGetContacts200ContactsItemFamilyMembersItem[];
|
|
10735
|
+
/** @nullable */
|
|
10736
|
+
name?: string | null;
|
|
10737
|
+
/** @nullable */
|
|
10738
|
+
updated_at?: string | null;
|
|
10739
|
+
[key: string]: unknown | null;
|
|
10740
|
+
} | null;
|
|
10741
|
+
export type RedtailGetContacts200ContactsItemEmailsItem = {
|
|
10742
|
+
[key: string]: unknown | null;
|
|
10743
|
+
};
|
|
10744
|
+
export type RedtailGetContacts200ContactsItemAddressesItem = {
|
|
10745
|
+
[key: string]: unknown | null;
|
|
10746
|
+
};
|
|
10251
10747
|
export type RedtailGetContacts200ContactsItem = {
|
|
10252
10748
|
/** @nullable */
|
|
10253
10749
|
added_by?: number | null;
|
|
@@ -10340,44 +10836,9 @@ export type RedtailGetContacts200ContactsItem = {
|
|
|
10340
10836
|
writing_advisor_id?: number | null;
|
|
10341
10837
|
[key: string]: unknown | null;
|
|
10342
10838
|
};
|
|
10343
|
-
export type
|
|
10344
|
-
|
|
10345
|
-
|
|
10346
|
-
created_at?: string | null;
|
|
10347
|
-
/** @nullable */
|
|
10348
|
-
deleted?: boolean | null;
|
|
10349
|
-
family_id?: number;
|
|
10350
|
-
/** @nullable */
|
|
10351
|
-
hoh?: boolean | null;
|
|
10352
|
-
id?: number;
|
|
10353
|
-
/** @nullable */
|
|
10354
|
-
relationship?: number | null;
|
|
10355
|
-
/** @nullable */
|
|
10356
|
-
relationship_name?: string | null;
|
|
10357
|
-
/** @nullable */
|
|
10358
|
-
updated_at?: string | null;
|
|
10359
|
-
[key: string]: unknown | null;
|
|
10360
|
-
};
|
|
10361
|
-
/**
|
|
10362
|
-
* @nullable
|
|
10363
|
-
*/
|
|
10364
|
-
export type RedtailGetContacts200ContactsItemFamily = {
|
|
10365
|
-
/** @nullable */
|
|
10366
|
-
created_at?: string | null;
|
|
10367
|
-
/** @nullable */
|
|
10368
|
-
deleted?: boolean | null;
|
|
10369
|
-
id?: number;
|
|
10370
|
-
members?: RedtailGetContacts200ContactsItemFamilyMembersItem[];
|
|
10371
|
-
/** @nullable */
|
|
10372
|
-
name?: string | null;
|
|
10373
|
-
/** @nullable */
|
|
10374
|
-
updated_at?: string | null;
|
|
10375
|
-
[key: string]: unknown | null;
|
|
10376
|
-
} | null;
|
|
10377
|
-
export type RedtailGetContacts200ContactsItemEmailsItem = {
|
|
10378
|
-
[key: string]: unknown | null;
|
|
10379
|
-
};
|
|
10380
|
-
export type RedtailGetContacts200ContactsItemAddressesItem = {
|
|
10839
|
+
export type RedtailGetContacts200 = {
|
|
10840
|
+
contacts?: RedtailGetContacts200ContactsItem[];
|
|
10841
|
+
meta?: RedtailGetContacts200Meta;
|
|
10381
10842
|
[key: string]: unknown | null;
|
|
10382
10843
|
};
|
|
10383
10844
|
export type RedtailGetContactsBody = {
|
|
@@ -11016,19 +11477,6 @@ export type PlaidStartHostedLinkBodyUser = {
|
|
|
11016
11477
|
email_address?: string;
|
|
11017
11478
|
phone_number?: string;
|
|
11018
11479
|
};
|
|
11019
|
-
export type PlaidStartHostedLinkBody = {
|
|
11020
|
-
/**
|
|
11021
|
-
* External user id from the agent or MCP.
|
|
11022
|
-
* @minLength 1
|
|
11023
|
-
*/
|
|
11024
|
-
externalUserId?: string;
|
|
11025
|
-
hosted_link?: PlaidStartHostedLinkBodyHostedLink;
|
|
11026
|
-
/** Generated app URL to redirect the browser to after Plaid Hosted Link completes. */
|
|
11027
|
-
originalRedirectUrl?: string;
|
|
11028
|
-
user: PlaidStartHostedLinkBodyUser;
|
|
11029
|
-
/** Existing integration user id. Omit to create a new credential row before Hosted Link. Required when the integration config type is PerUser. */
|
|
11030
|
-
userId?: string;
|
|
11031
|
-
};
|
|
11032
11480
|
export type PlaidStartHostedLinkBodyHostedLinkDeliveryMethod = typeof PlaidStartHostedLinkBodyHostedLinkDeliveryMethod[keyof typeof PlaidStartHostedLinkBodyHostedLinkDeliveryMethod];
|
|
11033
11481
|
export declare const PlaidStartHostedLinkBodyHostedLinkDeliveryMethod: {
|
|
11034
11482
|
readonly sms: "sms";
|
|
@@ -11044,6 +11492,19 @@ export type PlaidStartHostedLinkBodyHostedLink = {
|
|
|
11044
11492
|
*/
|
|
11045
11493
|
url_lifetime_seconds?: number;
|
|
11046
11494
|
};
|
|
11495
|
+
export type PlaidStartHostedLinkBody = {
|
|
11496
|
+
/**
|
|
11497
|
+
* External user id from the agent or MCP.
|
|
11498
|
+
* @minLength 1
|
|
11499
|
+
*/
|
|
11500
|
+
externalUserId?: string;
|
|
11501
|
+
hosted_link?: PlaidStartHostedLinkBodyHostedLink;
|
|
11502
|
+
/** Generated app URL to redirect the browser to after Plaid Hosted Link completes. */
|
|
11503
|
+
originalRedirectUrl?: string;
|
|
11504
|
+
user: PlaidStartHostedLinkBodyUser;
|
|
11505
|
+
/** Existing integration user id. Omit to create a new credential row before Hosted Link. Required when the integration config type is PerUser. */
|
|
11506
|
+
userId?: string;
|
|
11507
|
+
};
|
|
11047
11508
|
export type OpenaiCreateStream500 = {
|
|
11048
11509
|
error?: string;
|
|
11049
11510
|
};
|
|
@@ -12741,23 +13202,6 @@ export type GoogleGenerativeAICreateStreamBodyOptions = {
|
|
|
12741
13202
|
*/
|
|
12742
13203
|
topP?: number;
|
|
12743
13204
|
};
|
|
12744
|
-
export type GoogleGenerativeAICreateStreamBody = {
|
|
12745
|
-
/**
|
|
12746
|
-
* Array of chat messages
|
|
12747
|
-
* @minItems 1
|
|
12748
|
-
*/
|
|
12749
|
-
messages: GoogleGenerativeAICreateStreamBodyMessagesItem[];
|
|
12750
|
-
/** Specific model to use (defaults to resolved Google model) */
|
|
12751
|
-
model?: string;
|
|
12752
|
-
options?: GoogleGenerativeAICreateStreamBodyOptions;
|
|
12753
|
-
/**
|
|
12754
|
-
* Schema for structured output
|
|
12755
|
-
* @nullable
|
|
12756
|
-
*/
|
|
12757
|
-
outputSchema?: GoogleGenerativeAICreateStreamBodyOutputSchema;
|
|
12758
|
-
/** Required when the Google Generative AI integration config type is PerUser. */
|
|
12759
|
-
userId?: string;
|
|
12760
|
-
};
|
|
12761
13205
|
/**
|
|
12762
13206
|
* Role of the message sender
|
|
12763
13207
|
*/
|
|
@@ -12787,6 +13231,23 @@ export type GoogleGenerativeAICreateStreamBodyMessagesItem = {
|
|
|
12787
13231
|
/** Role of the message sender */
|
|
12788
13232
|
role: GoogleGenerativeAICreateStreamBodyMessagesItemRole;
|
|
12789
13233
|
};
|
|
13234
|
+
export type GoogleGenerativeAICreateStreamBody = {
|
|
13235
|
+
/**
|
|
13236
|
+
* Array of chat messages
|
|
13237
|
+
* @minItems 1
|
|
13238
|
+
*/
|
|
13239
|
+
messages: GoogleGenerativeAICreateStreamBodyMessagesItem[];
|
|
13240
|
+
/** Specific model to use (defaults to resolved Google model) */
|
|
13241
|
+
model?: string;
|
|
13242
|
+
options?: GoogleGenerativeAICreateStreamBodyOptions;
|
|
13243
|
+
/**
|
|
13244
|
+
* Schema for structured output
|
|
13245
|
+
* @nullable
|
|
13246
|
+
*/
|
|
13247
|
+
outputSchema?: GoogleGenerativeAICreateStreamBodyOutputSchema;
|
|
13248
|
+
/** Required when the Google Generative AI integration config type is PerUser. */
|
|
13249
|
+
userId?: string;
|
|
13250
|
+
};
|
|
12790
13251
|
/**
|
|
12791
13252
|
* Aspect ratio for generated image
|
|
12792
13253
|
*/
|
|
@@ -12854,6 +13315,23 @@ export type GoogleGenerativeAIGenerateTextBodyOptions = {
|
|
|
12854
13315
|
*/
|
|
12855
13316
|
topP?: number;
|
|
12856
13317
|
};
|
|
13318
|
+
export type GoogleGenerativeAIGenerateTextBody = {
|
|
13319
|
+
/**
|
|
13320
|
+
* Array of chat messages
|
|
13321
|
+
* @minItems 1
|
|
13322
|
+
*/
|
|
13323
|
+
messages: GoogleGenerativeAIGenerateTextBodyMessagesItem[];
|
|
13324
|
+
/** Specific model to use (defaults to resolved Google model) */
|
|
13325
|
+
model?: string;
|
|
13326
|
+
options?: GoogleGenerativeAIGenerateTextBodyOptions;
|
|
13327
|
+
/**
|
|
13328
|
+
* Schema for structured output
|
|
13329
|
+
* @nullable
|
|
13330
|
+
*/
|
|
13331
|
+
outputSchema?: GoogleGenerativeAIGenerateTextBodyOutputSchema;
|
|
13332
|
+
/** Required when the Google Generative AI integration config type is PerUser. */
|
|
13333
|
+
userId?: string;
|
|
13334
|
+
};
|
|
12857
13335
|
/**
|
|
12858
13336
|
* Role of the message sender
|
|
12859
13337
|
*/
|
|
@@ -12883,23 +13361,6 @@ export type GoogleGenerativeAIGenerateTextBodyMessagesItem = {
|
|
|
12883
13361
|
/** Role of the message sender */
|
|
12884
13362
|
role: GoogleGenerativeAIGenerateTextBodyMessagesItemRole;
|
|
12885
13363
|
};
|
|
12886
|
-
export type GoogleGenerativeAIGenerateTextBody = {
|
|
12887
|
-
/**
|
|
12888
|
-
* Array of chat messages
|
|
12889
|
-
* @minItems 1
|
|
12890
|
-
*/
|
|
12891
|
-
messages: GoogleGenerativeAIGenerateTextBodyMessagesItem[];
|
|
12892
|
-
/** Specific model to use (defaults to resolved Google model) */
|
|
12893
|
-
model?: string;
|
|
12894
|
-
options?: GoogleGenerativeAIGenerateTextBodyOptions;
|
|
12895
|
-
/**
|
|
12896
|
-
* Schema for structured output
|
|
12897
|
-
* @nullable
|
|
12898
|
-
*/
|
|
12899
|
-
outputSchema?: GoogleGenerativeAIGenerateTextBodyOutputSchema;
|
|
12900
|
-
/** Required when the Google Generative AI integration config type is PerUser. */
|
|
12901
|
-
userId?: string;
|
|
12902
|
-
};
|
|
12903
13364
|
export type GoogleGenerativeAISetUserCredentials200 = {
|
|
12904
13365
|
userId: string;
|
|
12905
13366
|
};
|
|
@@ -16486,23 +16947,6 @@ export type AnthropicGenerateTextBodyOptions = {
|
|
|
16486
16947
|
*/
|
|
16487
16948
|
topP?: number;
|
|
16488
16949
|
};
|
|
16489
|
-
export type AnthropicGenerateTextBody = {
|
|
16490
|
-
/**
|
|
16491
|
-
* Array of chat messages
|
|
16492
|
-
* @minItems 1
|
|
16493
|
-
*/
|
|
16494
|
-
messages: AnthropicGenerateTextBodyMessagesItem[];
|
|
16495
|
-
/** Specific model to use (defaults to resolved Anthropic model) */
|
|
16496
|
-
model?: string;
|
|
16497
|
-
options?: AnthropicGenerateTextBodyOptions;
|
|
16498
|
-
/**
|
|
16499
|
-
* Schema for structured output
|
|
16500
|
-
* @nullable
|
|
16501
|
-
*/
|
|
16502
|
-
outputSchema?: AnthropicGenerateTextBodyOutputSchema;
|
|
16503
|
-
/** Required when the Anthropic integration config type is PerUser. */
|
|
16504
|
-
userId?: string;
|
|
16505
|
-
};
|
|
16506
16950
|
/**
|
|
16507
16951
|
* Role of the message sender
|
|
16508
16952
|
*/
|
|
@@ -16532,6 +16976,23 @@ export type AnthropicGenerateTextBodyMessagesItem = {
|
|
|
16532
16976
|
/** Role of the message sender */
|
|
16533
16977
|
role: AnthropicGenerateTextBodyMessagesItemRole;
|
|
16534
16978
|
};
|
|
16979
|
+
export type AnthropicGenerateTextBody = {
|
|
16980
|
+
/**
|
|
16981
|
+
* Array of chat messages
|
|
16982
|
+
* @minItems 1
|
|
16983
|
+
*/
|
|
16984
|
+
messages: AnthropicGenerateTextBodyMessagesItem[];
|
|
16985
|
+
/** Specific model to use (defaults to resolved Anthropic model) */
|
|
16986
|
+
model?: string;
|
|
16987
|
+
options?: AnthropicGenerateTextBodyOptions;
|
|
16988
|
+
/**
|
|
16989
|
+
* Schema for structured output
|
|
16990
|
+
* @nullable
|
|
16991
|
+
*/
|
|
16992
|
+
outputSchema?: AnthropicGenerateTextBodyOutputSchema;
|
|
16993
|
+
/** Required when the Anthropic integration config type is PerUser. */
|
|
16994
|
+
userId?: string;
|
|
16995
|
+
};
|
|
16535
16996
|
export type AnthropicSetUserCredentials200 = {
|
|
16536
16997
|
userId: string;
|
|
16537
16998
|
};
|
|
@@ -18131,6 +18592,48 @@ export declare const getIntegrationsAPI: () => {
|
|
|
18131
18592
|
wealthboxGetWorkflowTemplates: (wealthboxGetWorkflowTemplatesBody: WealthboxGetWorkflowTemplatesBody) => Promise<WealthboxGetWorkflowTemplates200>;
|
|
18132
18593
|
wealthboxGetWorkflowTemplate: (wealthboxGetWorkflowTemplateBody: WealthboxGetWorkflowTemplateBody) => Promise<WealthboxGetWorkflowTemplate200>;
|
|
18133
18594
|
wealthboxGetActivity: (wealthboxGetActivityBody: WealthboxGetActivityBody) => Promise<WealthboxGetActivity200>;
|
|
18595
|
+
salesforceAuthStart: (salesforceAuthStartBody: SalesforceAuthStartBody) => Promise<SalesforceAuthStart200>;
|
|
18596
|
+
salesforceAuthSetUserCredentials: (salesforceAuthSetUserCredentialsBody: SalesforceAuthSetUserCredentialsBody) => Promise<SalesforceAuthSetUserCredentials200>;
|
|
18597
|
+
salesforceOauthCallback: () => Promise<void>;
|
|
18598
|
+
salesforceCreateSobject: (salesforceCreateSobjectBody: SalesforceCreateSobjectBody) => Promise<unknown>;
|
|
18599
|
+
salesforceGetSobject: (salesforceGetSobjectBody: SalesforceGetSobjectBody) => Promise<unknown>;
|
|
18600
|
+
salesforceUpdateSobject: (salesforceUpdateSobjectBody: SalesforceUpdateSobjectBody) => Promise<unknown>;
|
|
18601
|
+
salesforceDeleteSobject: (salesforceDeleteSobjectBody: SalesforceDeleteSobjectBody) => Promise<unknown>;
|
|
18602
|
+
salesforceQuery: (salesforceQueryBody: SalesforceQueryBody) => Promise<SalesforceQuery200>;
|
|
18603
|
+
salesforceCompositeSobjectsCreate: (salesforceCompositeSobjectsCreateBody: SalesforceCompositeSobjectsCreateBody) => Promise<SalesforceCompositeSobjectsCreate200>;
|
|
18604
|
+
salesforceCompositeSobjectsUpdate: (salesforceCompositeSobjectsUpdateBody: SalesforceCompositeSobjectsUpdateBody) => Promise<SalesforceCompositeSobjectsUpdate200>;
|
|
18605
|
+
salesforceComposite: (salesforceCompositeBody: SalesforceCompositeBody) => Promise<SalesforceComposite200>;
|
|
18606
|
+
salesforceListReports: (salesforceListReportsBody: SalesforceListReportsBody) => Promise<SalesforceListReports200>;
|
|
18607
|
+
salesforceDescribeReport: (salesforceDescribeReportBody: SalesforceDescribeReportBody) => Promise<SalesforceDescribeReport200>;
|
|
18608
|
+
salesforceRunReport: (salesforceRunReportBody: SalesforceRunReportBody) => Promise<SalesforceRunReport200>;
|
|
18609
|
+
salesforceListFlows: (salesforceListFlowsBody: SalesforceListFlowsBody) => Promise<SalesforceListFlows200>;
|
|
18610
|
+
salesforceDescribeFlow: (salesforceDescribeFlowBody: SalesforceDescribeFlowBody) => Promise<SalesforceDescribeFlow200>;
|
|
18611
|
+
salesforceRunFlow: (salesforceRunFlowBody: SalesforceRunFlowBody) => Promise<SalesforceRunFlow200>;
|
|
18612
|
+
hubspotAuthStart: (hubspotAuthStartBody: HubspotAuthStartBody) => Promise<HubspotAuthStart200>;
|
|
18613
|
+
hubspotAuthSetUserCredentials: (hubspotAuthSetUserCredentialsBody: HubspotAuthSetUserCredentialsBody) => Promise<HubspotAuthSetUserCredentials200>;
|
|
18614
|
+
hubspotOauthCallback: () => Promise<void>;
|
|
18615
|
+
hubspotCreateContact: (hubspotCreateContactBody: HubspotCreateContactBody) => Promise<HubspotCreateContact200>;
|
|
18616
|
+
hubspotUpdateContact: (hubspotUpdateContactBody: HubspotUpdateContactBody) => Promise<HubspotUpdateContact200>;
|
|
18617
|
+
hubspotListContacts: (hubspotListContactsBody: HubspotListContactsBody) => Promise<HubspotListContacts200>;
|
|
18618
|
+
hubspotSearchContacts: (hubspotSearchContactsBody: HubspotSearchContactsBody) => Promise<HubspotSearchContacts200>;
|
|
18619
|
+
hubspotCreateCompany: (hubspotCreateCompanyBody: HubspotCreateCompanyBody) => Promise<HubspotCreateCompany200>;
|
|
18620
|
+
hubspotUpdateCompany: (hubspotUpdateCompanyBody: HubspotUpdateCompanyBody) => Promise<HubspotUpdateCompany200>;
|
|
18621
|
+
hubspotListCompanies: (hubspotListCompaniesBody: HubspotListCompaniesBody) => Promise<HubspotListCompanies200>;
|
|
18622
|
+
hubspotSearchCompanies: (hubspotSearchCompaniesBody: HubspotSearchCompaniesBody) => Promise<HubspotSearchCompanies200>;
|
|
18623
|
+
hubspotListDeals: (hubspotListDealsBody: HubspotListDealsBody) => Promise<HubspotListDeals200>;
|
|
18624
|
+
hubspotListDealPipelines: (hubspotListDealPipelinesBody: HubspotListDealPipelinesBody) => Promise<HubspotListDealPipelines200>;
|
|
18625
|
+
hubspotListOwners: (hubspotListOwnersBody: HubspotListOwnersBody) => Promise<HubspotListOwners200>;
|
|
18626
|
+
hubspotCreateEmailEngagement: (hubspotCreateEmailEngagementBody: HubspotCreateEmailEngagementBody) => Promise<HubspotCreateEmailEngagement200>;
|
|
18627
|
+
hubspotCreateCallEngagement: (hubspotCreateCallEngagementBody: HubspotCreateCallEngagementBody) => Promise<HubspotCreateCallEngagement200>;
|
|
18628
|
+
hubspotCreateTaskEngagement: (hubspotCreateTaskEngagementBody: HubspotCreateTaskEngagementBody) => Promise<HubspotCreateTaskEngagement200>;
|
|
18629
|
+
hubspotCreateAssociation: (hubspotCreateAssociationBody: HubspotCreateAssociationBody) => Promise<HubspotCreateAssociation200>;
|
|
18630
|
+
hubspotCreateTicket: (hubspotCreateTicketBody: HubspotCreateTicketBody) => Promise<HubspotCreateTicket200>;
|
|
18631
|
+
hubspotUpdateTicket: (hubspotUpdateTicketBody: HubspotUpdateTicketBody) => Promise<HubspotUpdateTicket200>;
|
|
18632
|
+
hubspotListTickets: (hubspotListTicketsBody: HubspotListTicketsBody) => Promise<HubspotListTickets200>;
|
|
18633
|
+
hubspotEnrollWorkflow: (hubspotEnrollWorkflowBody: HubspotEnrollWorkflowBody) => Promise<HubspotEnrollWorkflow200>;
|
|
18634
|
+
hubspotListWorkflows: (hubspotListWorkflowsBody: HubspotListWorkflowsBody) => Promise<HubspotListWorkflows200>;
|
|
18635
|
+
hubspotListMarketingEmails: (hubspotListMarketingEmailsBody: HubspotListMarketingEmailsBody) => Promise<HubspotListMarketingEmails200>;
|
|
18636
|
+
hubspotSendTransactionalEmail: (hubspotSendTransactionalEmailBody: HubspotSendTransactionalEmailBody) => Promise<HubspotSendTransactionalEmail200>;
|
|
18134
18637
|
};
|
|
18135
18638
|
export type AbrigoFindCustomerByCrmIdResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['abrigoFindCustomerByCrmId']>>>;
|
|
18136
18639
|
export type AbrigoCreateCustomerResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['abrigoCreateCustomer']>>>;
|
|
@@ -18735,4 +19238,46 @@ export type WealthboxGetContactRolesResult = NonNullable<Awaited<ReturnType<Retu
|
|
|
18735
19238
|
export type WealthboxGetWorkflowTemplatesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetWorkflowTemplates']>>>;
|
|
18736
19239
|
export type WealthboxGetWorkflowTemplateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetWorkflowTemplate']>>>;
|
|
18737
19240
|
export type WealthboxGetActivityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetActivity']>>>;
|
|
19241
|
+
export type SalesforceAuthStartResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceAuthStart']>>>;
|
|
19242
|
+
export type SalesforceAuthSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceAuthSetUserCredentials']>>>;
|
|
19243
|
+
export type SalesforceOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceOauthCallback']>>>;
|
|
19244
|
+
export type SalesforceCreateSobjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceCreateSobject']>>>;
|
|
19245
|
+
export type SalesforceGetSobjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceGetSobject']>>>;
|
|
19246
|
+
export type SalesforceUpdateSobjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceUpdateSobject']>>>;
|
|
19247
|
+
export type SalesforceDeleteSobjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceDeleteSobject']>>>;
|
|
19248
|
+
export type SalesforceQueryResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceQuery']>>>;
|
|
19249
|
+
export type SalesforceCompositeSobjectsCreateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceCompositeSobjectsCreate']>>>;
|
|
19250
|
+
export type SalesforceCompositeSobjectsUpdateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceCompositeSobjectsUpdate']>>>;
|
|
19251
|
+
export type SalesforceCompositeResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceComposite']>>>;
|
|
19252
|
+
export type SalesforceListReportsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceListReports']>>>;
|
|
19253
|
+
export type SalesforceDescribeReportResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceDescribeReport']>>>;
|
|
19254
|
+
export type SalesforceRunReportResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceRunReport']>>>;
|
|
19255
|
+
export type SalesforceListFlowsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceListFlows']>>>;
|
|
19256
|
+
export type SalesforceDescribeFlowResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceDescribeFlow']>>>;
|
|
19257
|
+
export type SalesforceRunFlowResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['salesforceRunFlow']>>>;
|
|
19258
|
+
export type HubspotAuthStartResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotAuthStart']>>>;
|
|
19259
|
+
export type HubspotAuthSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotAuthSetUserCredentials']>>>;
|
|
19260
|
+
export type HubspotOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotOauthCallback']>>>;
|
|
19261
|
+
export type HubspotCreateContactResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotCreateContact']>>>;
|
|
19262
|
+
export type HubspotUpdateContactResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotUpdateContact']>>>;
|
|
19263
|
+
export type HubspotListContactsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotListContacts']>>>;
|
|
19264
|
+
export type HubspotSearchContactsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotSearchContacts']>>>;
|
|
19265
|
+
export type HubspotCreateCompanyResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotCreateCompany']>>>;
|
|
19266
|
+
export type HubspotUpdateCompanyResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotUpdateCompany']>>>;
|
|
19267
|
+
export type HubspotListCompaniesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotListCompanies']>>>;
|
|
19268
|
+
export type HubspotSearchCompaniesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotSearchCompanies']>>>;
|
|
19269
|
+
export type HubspotListDealsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotListDeals']>>>;
|
|
19270
|
+
export type HubspotListDealPipelinesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotListDealPipelines']>>>;
|
|
19271
|
+
export type HubspotListOwnersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotListOwners']>>>;
|
|
19272
|
+
export type HubspotCreateEmailEngagementResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotCreateEmailEngagement']>>>;
|
|
19273
|
+
export type HubspotCreateCallEngagementResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotCreateCallEngagement']>>>;
|
|
19274
|
+
export type HubspotCreateTaskEngagementResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotCreateTaskEngagement']>>>;
|
|
19275
|
+
export type HubspotCreateAssociationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotCreateAssociation']>>>;
|
|
19276
|
+
export type HubspotCreateTicketResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotCreateTicket']>>>;
|
|
19277
|
+
export type HubspotUpdateTicketResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotUpdateTicket']>>>;
|
|
19278
|
+
export type HubspotListTicketsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotListTickets']>>>;
|
|
19279
|
+
export type HubspotEnrollWorkflowResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotEnrollWorkflow']>>>;
|
|
19280
|
+
export type HubspotListWorkflowsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotListWorkflows']>>>;
|
|
19281
|
+
export type HubspotListMarketingEmailsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotListMarketingEmails']>>>;
|
|
19282
|
+
export type HubspotSendTransactionalEmailResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['hubspotSendTransactionalEmail']>>>;
|
|
18738
19283
|
//# sourceMappingURL=generated-api.d.ts.map
|