@uptiqai/integrations-sdk 1.2.0 → 1.4.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.
@@ -60,10 +60,6 @@ export type WealthboxGetWorkflowTemplatesBody = {
60
60
  userId: string;
61
61
  [key: string]: unknown | null;
62
62
  };
63
- export type WealthboxGetContactRoles200 = {
64
- contact_roles: WealthboxGetContactRoles200ContactRolesItem[];
65
- [key: string]: unknown | null;
66
- };
67
63
  export type WealthboxGetContactRoles200ContactRolesItemRemovedOptionsItem = {
68
64
  [key: string]: unknown | null;
69
65
  };
@@ -78,6 +74,10 @@ export type WealthboxGetContactRoles200ContactRolesItem = {
78
74
  removed_options?: WealthboxGetContactRoles200ContactRolesItemRemovedOptionsItem[];
79
75
  [key: string]: unknown | null;
80
76
  };
77
+ export type WealthboxGetContactRoles200 = {
78
+ contact_roles: WealthboxGetContactRoles200ContactRolesItem[];
79
+ [key: string]: unknown | null;
80
+ };
81
81
  export type WealthboxGetContactRolesBody = {
82
82
  /**
83
83
  * Page number for paginated Wealthbox endpoints.
@@ -234,10 +234,6 @@ export type WealthboxGetTagsBody = {
234
234
  userId: string;
235
235
  [key: string]: unknown | null;
236
236
  };
237
- export type WealthboxGetTeams200 = {
238
- teams: WealthboxGetTeams200TeamsItem[];
239
- [key: string]: unknown | null;
240
- };
241
237
  export type WealthboxGetTeams200TeamsItemMembersItemStatus = 'active' | 'invited' | 'inactive' | 'legacy' | string;
242
238
  export type WealthboxGetTeams200TeamsItemMembersItem = {
243
239
  /** @nullable */
@@ -257,6 +253,10 @@ export type WealthboxGetTeams200TeamsItem = {
257
253
  name: string;
258
254
  [key: string]: unknown | null;
259
255
  };
256
+ export type WealthboxGetTeams200 = {
257
+ teams: WealthboxGetTeams200TeamsItem[];
258
+ [key: string]: unknown | null;
259
+ };
260
260
  export type WealthboxGetTeamsBody = {
261
261
  /**
262
262
  * Page number for paginated Wealthbox endpoints.
@@ -274,6 +274,7 @@ export type WealthboxGetTeamsBody = {
274
274
  userId: string;
275
275
  [key: string]: unknown | null;
276
276
  };
277
+ export type WealthboxGetUsers200UsersItemStatus = 'active' | 'invited' | 'inactive' | 'legacy' | string;
277
278
  export type WealthboxGetUsers200UsersItem = {
278
279
  /** @nullable */
279
280
  account?: number | null;
@@ -289,7 +290,6 @@ export type WealthboxGetUsers200 = {
289
290
  users?: WealthboxGetUsers200UsersItem[];
290
291
  [key: string]: unknown | null;
291
292
  };
292
- export type WealthboxGetUsers200UsersItemStatus = 'active' | 'invited' | 'inactive' | 'legacy' | string;
293
293
  /**
294
294
  * Filter users by their status
295
295
  */
@@ -325,21 +325,6 @@ export type WealthboxGetMe200UsersItem = {
325
325
  status?: WealthboxGetMe200UsersItemStatus;
326
326
  [key: string]: unknown | null;
327
327
  };
328
- export type WealthboxGetMe200 = {
329
- accounts?: WealthboxGetMe200AccountsItem[];
330
- created_at?: string;
331
- current_user?: WealthboxGetMe200CurrentUser;
332
- email?: string;
333
- first_name?: string;
334
- /** @nullable */
335
- id: number | null;
336
- last_name?: string;
337
- name: string;
338
- plan?: string;
339
- updated_at?: string;
340
- users?: WealthboxGetMe200UsersItem[];
341
- [key: string]: unknown | null;
342
- };
343
328
  export type WealthboxGetMe200CurrentUserStatus = 'active' | 'invited' | 'inactive' | 'legacy' | string;
344
329
  export type WealthboxGetMe200CurrentUser = {
345
330
  /** @nullable */
@@ -355,6 +340,21 @@ export type WealthboxGetMe200CurrentUser = {
355
340
  export type WealthboxGetMe200AccountsItem = {
356
341
  [key: string]: unknown | null;
357
342
  };
343
+ export type WealthboxGetMe200 = {
344
+ accounts?: WealthboxGetMe200AccountsItem[];
345
+ created_at?: string;
346
+ current_user?: WealthboxGetMe200CurrentUser;
347
+ email?: string;
348
+ first_name?: string;
349
+ /** @nullable */
350
+ id: number | null;
351
+ last_name?: string;
352
+ name: string;
353
+ plan?: string;
354
+ updated_at?: string;
355
+ users?: WealthboxGetMe200UsersItem[];
356
+ [key: string]: unknown | null;
357
+ };
358
358
  export type WealthboxGetMeBody = {
359
359
  /** Integration user id for Wealthbox requests. */
360
360
  userId: string;
@@ -1071,12 +1071,6 @@ export type WealthboxUpdateProject200 = {
1071
1071
  visible_to?: WealthboxUpdateProject200VisibleTo;
1072
1072
  [key: string]: unknown | null;
1073
1073
  };
1074
- export type WealthboxUpdateProjectBodyCustomFieldsItem = {
1075
- /** @nullable */
1076
- id: number | null;
1077
- value?: WealthboxUpdateProjectBodyCustomFieldsItemValue;
1078
- [key: string]: unknown | null;
1079
- };
1080
1074
  export type WealthboxUpdateProjectBody = {
1081
1075
  custom_fields?: WealthboxUpdateProjectBodyCustomFieldsItem[];
1082
1076
  /** @minLength 1 */
@@ -1104,6 +1098,12 @@ export type WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOfTwo = unknown |
1104
1098
  */
1105
1099
  export type WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOf = unknown | null;
1106
1100
  export type WealthboxUpdateProjectBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOf | WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOfTwo;
1101
+ export type WealthboxUpdateProjectBodyCustomFieldsItem = {
1102
+ /** @nullable */
1103
+ id: number | null;
1104
+ value?: WealthboxUpdateProjectBodyCustomFieldsItemValue;
1105
+ [key: string]: unknown | null;
1106
+ };
1107
1107
  /**
1108
1108
  * @nullable
1109
1109
  */
@@ -1757,28 +1757,12 @@ export type WealthboxUpdateOpportunityBodyLinkedToItem = {
1757
1757
  type: string;
1758
1758
  [key: string]: unknown | null;
1759
1759
  };
1760
- /**
1761
- * @nullable
1762
- */
1763
- export type WealthboxUpdateOpportunityBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
1764
- /**
1765
- * @nullable
1766
- */
1767
- export type WealthboxUpdateOpportunityBodyCustomFieldsItemValueAnyOf = unknown | null;
1768
- export type WealthboxUpdateOpportunityBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateOpportunityBodyCustomFieldsItemValueAnyOf | WealthboxUpdateOpportunityBodyCustomFieldsItemValueAnyOfTwo;
1769
1760
  export type WealthboxUpdateOpportunityBodyCustomFieldsItem = {
1770
1761
  /** @nullable */
1771
1762
  id: number | null;
1772
1763
  value?: WealthboxUpdateOpportunityBodyCustomFieldsItemValue;
1773
1764
  [key: string]: unknown | null;
1774
1765
  };
1775
- export type WealthboxUpdateOpportunityBodyAmountsItemKind = 'Fee' | 'Commission' | 'AUM' | 'Other' | string;
1776
- export type WealthboxUpdateOpportunityBodyAmountsItem = {
1777
- amount?: number;
1778
- currency?: string;
1779
- kind?: WealthboxUpdateOpportunityBodyAmountsItemKind;
1780
- [key: string]: unknown | null;
1781
- };
1782
1766
  export type WealthboxUpdateOpportunityBody = {
1783
1767
  amounts?: WealthboxUpdateOpportunityBodyAmountsItem[];
1784
1768
  custom_fields?: WealthboxUpdateOpportunityBodyCustomFieldsItem[];
@@ -1803,6 +1787,22 @@ export type WealthboxUpdateOpportunityBody = {
1803
1787
  visible_to?: string;
1804
1788
  [key: string]: unknown | null;
1805
1789
  };
1790
+ /**
1791
+ * @nullable
1792
+ */
1793
+ export type WealthboxUpdateOpportunityBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
1794
+ /**
1795
+ * @nullable
1796
+ */
1797
+ export type WealthboxUpdateOpportunityBodyCustomFieldsItemValueAnyOf = unknown | null;
1798
+ export type WealthboxUpdateOpportunityBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateOpportunityBodyCustomFieldsItemValueAnyOf | WealthboxUpdateOpportunityBodyCustomFieldsItemValueAnyOfTwo;
1799
+ export type WealthboxUpdateOpportunityBodyAmountsItemKind = 'Fee' | 'Commission' | 'AUM' | 'Other' | string;
1800
+ export type WealthboxUpdateOpportunityBodyAmountsItem = {
1801
+ amount?: number;
1802
+ currency?: string;
1803
+ kind?: WealthboxUpdateOpportunityBodyAmountsItemKind;
1804
+ [key: string]: unknown | null;
1805
+ };
1806
1806
  /**
1807
1807
  * @nullable
1808
1808
  */
@@ -2409,6 +2409,12 @@ export type WealthboxUpdateEventBodyInviteesItem = {
2409
2409
  type: string;
2410
2410
  [key: string]: unknown | null;
2411
2411
  };
2412
+ export type WealthboxUpdateEventBodyCustomFieldsItem = {
2413
+ /** @nullable */
2414
+ id: number | null;
2415
+ value?: WealthboxUpdateEventBodyCustomFieldsItemValue;
2416
+ [key: string]: unknown | null;
2417
+ };
2412
2418
  export type WealthboxUpdateEventBody = {
2413
2419
  all_day?: boolean;
2414
2420
  custom_fields?: WealthboxUpdateEventBodyCustomFieldsItem[];
@@ -2444,12 +2450,6 @@ export type WealthboxUpdateEventBodyCustomFieldsItemValueAnyOfTwo = unknown | nu
2444
2450
  */
2445
2451
  export type WealthboxUpdateEventBodyCustomFieldsItemValueAnyOf = unknown | null;
2446
2452
  export type WealthboxUpdateEventBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateEventBodyCustomFieldsItemValueAnyOf | WealthboxUpdateEventBodyCustomFieldsItemValueAnyOfTwo;
2447
- export type WealthboxUpdateEventBodyCustomFieldsItem = {
2448
- /** @nullable */
2449
- id: number | null;
2450
- value?: WealthboxUpdateEventBodyCustomFieldsItemValue;
2451
- [key: string]: unknown | null;
2452
- };
2453
2453
  /**
2454
2454
  * @nullable
2455
2455
  */
@@ -2583,12 +2583,6 @@ export type WealthboxCreateEventBodyInviteesItem = {
2583
2583
  type: string;
2584
2584
  [key: string]: unknown | null;
2585
2585
  };
2586
- export type WealthboxCreateEventBodyCustomFieldsItem = {
2587
- /** @nullable */
2588
- id: number | null;
2589
- value?: WealthboxCreateEventBodyCustomFieldsItemValue;
2590
- [key: string]: unknown | null;
2591
- };
2592
2586
  export type WealthboxCreateEventBody = {
2593
2587
  all_day?: boolean;
2594
2588
  custom_fields?: WealthboxCreateEventBodyCustomFieldsItem[];
@@ -2619,6 +2613,12 @@ export type WealthboxCreateEventBodyCustomFieldsItemValueAnyOfTwo = unknown | nu
2619
2613
  */
2620
2614
  export type WealthboxCreateEventBodyCustomFieldsItemValueAnyOf = unknown | null;
2621
2615
  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
2622
  /**
2623
2623
  * @nullable
2624
2624
  */
@@ -2740,45 +2740,6 @@ export type WealthboxGetEventBody = {
2740
2740
  userId: string;
2741
2741
  [key: string]: unknown | null;
2742
2742
  };
2743
- export type WealthboxGetEvents200EventsItem = {
2744
- /** @nullable */
2745
- all_day?: WealthboxGetEvents200EventsItemAllDay;
2746
- /** @nullable */
2747
- created_at?: WealthboxGetEvents200EventsItemCreatedAt;
2748
- /** @nullable */
2749
- creator?: WealthboxGetEvents200EventsItemCreator;
2750
- /** @nullable */
2751
- custom_fields?: WealthboxGetEvents200EventsItemCustomFields;
2752
- /** @nullable */
2753
- description?: WealthboxGetEvents200EventsItemDescription;
2754
- /** @nullable */
2755
- email_invitees?: WealthboxGetEvents200EventsItemEmailInvitees;
2756
- /** @nullable */
2757
- ends_at?: WealthboxGetEvents200EventsItemEndsAt;
2758
- /** @nullable */
2759
- event_category?: WealthboxGetEvents200EventsItemEventCategory;
2760
- /** @nullable */
2761
- id?: WealthboxGetEvents200EventsItemId;
2762
- /** @nullable */
2763
- invitees?: WealthboxGetEvents200EventsItemInvitees;
2764
- /** @nullable */
2765
- linked_to?: WealthboxGetEvents200EventsItemLinkedTo;
2766
- /** @nullable */
2767
- location?: WealthboxGetEvents200EventsItemLocation;
2768
- /** @nullable */
2769
- repeats?: WealthboxGetEvents200EventsItemRepeats;
2770
- /** @nullable */
2771
- starts_at?: WealthboxGetEvents200EventsItemStartsAt;
2772
- /** @nullable */
2773
- state?: WealthboxGetEvents200EventsItemState;
2774
- /** @nullable */
2775
- title?: WealthboxGetEvents200EventsItemTitle;
2776
- /** @nullable */
2777
- updated_at?: WealthboxGetEvents200EventsItemUpdatedAt;
2778
- /** @nullable */
2779
- visible_to?: WealthboxGetEvents200EventsItemVisibleTo;
2780
- [key: string]: unknown | null;
2781
- };
2782
2743
  export type WealthboxGetEvents200 = {
2783
2744
  events?: WealthboxGetEvents200EventsItem[];
2784
2745
  [key: string]: unknown | null;
@@ -2855,6 +2816,45 @@ export type WealthboxGetEvents200EventsItemCreatedAt = unknown | null;
2855
2816
  * @nullable
2856
2817
  */
2857
2818
  export type WealthboxGetEvents200EventsItemAllDay = unknown | null;
2819
+ export type WealthboxGetEvents200EventsItem = {
2820
+ /** @nullable */
2821
+ all_day?: WealthboxGetEvents200EventsItemAllDay;
2822
+ /** @nullable */
2823
+ created_at?: WealthboxGetEvents200EventsItemCreatedAt;
2824
+ /** @nullable */
2825
+ creator?: WealthboxGetEvents200EventsItemCreator;
2826
+ /** @nullable */
2827
+ custom_fields?: WealthboxGetEvents200EventsItemCustomFields;
2828
+ /** @nullable */
2829
+ description?: WealthboxGetEvents200EventsItemDescription;
2830
+ /** @nullable */
2831
+ email_invitees?: WealthboxGetEvents200EventsItemEmailInvitees;
2832
+ /** @nullable */
2833
+ ends_at?: WealthboxGetEvents200EventsItemEndsAt;
2834
+ /** @nullable */
2835
+ event_category?: WealthboxGetEvents200EventsItemEventCategory;
2836
+ /** @nullable */
2837
+ id?: WealthboxGetEvents200EventsItemId;
2838
+ /** @nullable */
2839
+ invitees?: WealthboxGetEvents200EventsItemInvitees;
2840
+ /** @nullable */
2841
+ linked_to?: WealthboxGetEvents200EventsItemLinkedTo;
2842
+ /** @nullable */
2843
+ location?: WealthboxGetEvents200EventsItemLocation;
2844
+ /** @nullable */
2845
+ repeats?: WealthboxGetEvents200EventsItemRepeats;
2846
+ /** @nullable */
2847
+ starts_at?: WealthboxGetEvents200EventsItemStartsAt;
2848
+ /** @nullable */
2849
+ state?: WealthboxGetEvents200EventsItemState;
2850
+ /** @nullable */
2851
+ title?: WealthboxGetEvents200EventsItemTitle;
2852
+ /** @nullable */
2853
+ updated_at?: WealthboxGetEvents200EventsItemUpdatedAt;
2854
+ /** @nullable */
2855
+ visible_to?: WealthboxGetEvents200EventsItemVisibleTo;
2856
+ [key: string]: unknown | null;
2857
+ };
2858
2858
  /**
2859
2859
  * The order that the events should be returned in regarding event start
2860
2860
  */
@@ -3045,6 +3045,12 @@ export type WealthboxUpdateTaskBodyLinkedToItem = {
3045
3045
  type: string;
3046
3046
  [key: string]: unknown | null;
3047
3047
  };
3048
+ export type WealthboxUpdateTaskBodyCustomFieldsItem = {
3049
+ /** @nullable */
3050
+ id: number | null;
3051
+ value?: WealthboxUpdateTaskBodyCustomFieldsItemValue;
3052
+ [key: string]: unknown | null;
3053
+ };
3048
3054
  export type WealthboxUpdateTaskBody = {
3049
3055
  /** @nullable */
3050
3056
  assigned_to?: number | null;
@@ -3071,13 +3077,6 @@ export type WealthboxUpdateTaskBody = {
3071
3077
  visible_to?: string;
3072
3078
  [key: string]: unknown | null;
3073
3079
  };
3074
- export type WealthboxUpdateTaskBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOf | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOfTwo;
3075
- export type WealthboxUpdateTaskBodyCustomFieldsItem = {
3076
- /** @nullable */
3077
- id: number | null;
3078
- value?: WealthboxUpdateTaskBodyCustomFieldsItemValue;
3079
- [key: string]: unknown | null;
3080
- };
3081
3080
  /**
3082
3081
  * @nullable
3083
3082
  */
@@ -3086,6 +3085,7 @@ export type WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOfTwo = unknown | nul
3086
3085
  * @nullable
3087
3086
  */
3088
3087
  export type WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOf = unknown | null;
3088
+ export type WealthboxUpdateTaskBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOf | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOfTwo;
3089
3089
  /**
3090
3090
  * @nullable
3091
3091
  */
@@ -3237,30 +3237,12 @@ export type WealthboxCreateTaskBodyLinkedToItem = {
3237
3237
  type: string;
3238
3238
  [key: string]: unknown | null;
3239
3239
  };
3240
- /**
3241
- * @nullable
3242
- */
3243
- export type WealthboxCreateTaskBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
3244
- /**
3245
- * @nullable
3246
- */
3247
- export type WealthboxCreateTaskBodyCustomFieldsItemValueAnyOf = unknown | null;
3248
- export type WealthboxCreateTaskBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxCreateTaskBodyCustomFieldsItemValueAnyOf | WealthboxCreateTaskBodyCustomFieldsItemValueAnyOfTwo;
3249
3240
  export type WealthboxCreateTaskBodyCustomFieldsItem = {
3250
3241
  /** @nullable */
3251
3242
  id: number | null;
3252
3243
  value?: WealthboxCreateTaskBodyCustomFieldsItemValue;
3253
3244
  [key: string]: unknown | null;
3254
3245
  };
3255
- /**
3256
- * @nullable
3257
- */
3258
- export type WealthboxCreateTaskBodyCategoryAnyOfTwo = unknown | null;
3259
- /**
3260
- * @nullable
3261
- */
3262
- export type WealthboxCreateTaskBodyCategoryAnyOf = unknown | null;
3263
- export type WealthboxCreateTaskBodyCategory = number | null | string | WealthboxCreateTaskBodyCategoryAnyOf | WealthboxCreateTaskBodyCategoryAnyOfTwo;
3264
3246
  export type WealthboxCreateTaskBody = {
3265
3247
  /** @nullable */
3266
3248
  assigned_to?: number | null;
@@ -3282,6 +3264,24 @@ export type WealthboxCreateTaskBody = {
3282
3264
  visible_to?: string;
3283
3265
  [key: string]: unknown | null;
3284
3266
  };
3267
+ /**
3268
+ * @nullable
3269
+ */
3270
+ export type WealthboxCreateTaskBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
3271
+ /**
3272
+ * @nullable
3273
+ */
3274
+ export type WealthboxCreateTaskBodyCustomFieldsItemValueAnyOf = unknown | null;
3275
+ export type WealthboxCreateTaskBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxCreateTaskBodyCustomFieldsItemValueAnyOf | WealthboxCreateTaskBodyCustomFieldsItemValueAnyOfTwo;
3276
+ /**
3277
+ * @nullable
3278
+ */
3279
+ export type WealthboxCreateTaskBodyCategoryAnyOfTwo = unknown | null;
3280
+ /**
3281
+ * @nullable
3282
+ */
3283
+ export type WealthboxCreateTaskBodyCategoryAnyOf = unknown | null;
3284
+ export type WealthboxCreateTaskBodyCategory = number | null | string | WealthboxCreateTaskBodyCategoryAnyOf | WealthboxCreateTaskBodyCategoryAnyOfTwo;
3285
3285
  /**
3286
3286
  * @nullable
3287
3287
  */
@@ -3801,151 +3801,6 @@ export type WealthboxUpdateContact200Image = unknown | null;
3801
3801
  * @nullable
3802
3802
  */
3803
3803
  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
3804
  export type WealthboxUpdateContact200 = {
3950
3805
  /** @nullable */
3951
3806
  adjusted_gross_income?: WealthboxUpdateContact200AdjustedGrossIncome;
@@ -4097,116 +3952,250 @@ export type WealthboxUpdateContact200 = {
4097
3952
  websites?: WealthboxUpdateContact200WebsitesItem[];
4098
3953
  [key: string]: unknown | null;
4099
3954
  };
4100
- export type WealthboxUpdateContactBodyAllOfTwoeight = {
4101
- /**
4102
- * The id of the contact to be retrieved
4103
- * @nullable
4104
- */
4105
- id: number | null;
4106
- /** Integration user id for Wealthbox requests. */
4107
- userId: string;
3955
+ /**
3956
+ * @nullable
3957
+ */
3958
+ export type WealthboxUpdateContact200HouseholdTitle = unknown | null;
3959
+ /**
3960
+ * @nullable
3961
+ */
3962
+ export type WealthboxUpdateContact200HouseholdName = unknown | null;
3963
+ export type WealthboxUpdateContact200HouseholdMembersItem = {
4108
3964
  [key: string]: unknown | null;
4109
3965
  };
4110
- export type WealthboxUpdateContactBody = WealthboxUpdateContactBodyAllOf & WealthboxUpdateContactBodyAllOfTwoeight;
4111
- export type WealthboxUpdateContactBodyAllOfWebsitesItemKind = typeof WealthboxUpdateContactBodyAllOfWebsitesItemKind[keyof typeof WealthboxUpdateContactBodyAllOfWebsitesItemKind];
4112
- export declare const WealthboxUpdateContactBodyAllOfWebsitesItemKind: {
4113
- readonly Website: "Website";
4114
- readonly Facebook: "Facebook";
4115
- readonly Blog: "Blog";
4116
- };
4117
- export type WealthboxUpdateContactBodyAllOfWebsitesItem = {
4118
- address: string;
4119
- destroy?: boolean;
4120
- kind?: WealthboxUpdateContactBodyAllOfWebsitesItemKind;
4121
- principal?: boolean;
3966
+ /**
3967
+ * @nullable
3968
+ */
3969
+ export type WealthboxUpdateContact200HouseholdId = unknown | null;
3970
+ export type WealthboxUpdateContact200Household = {
3971
+ /** @nullable */
3972
+ id?: WealthboxUpdateContact200HouseholdId;
3973
+ members?: WealthboxUpdateContact200HouseholdMembersItem[];
3974
+ /** @nullable */
3975
+ name?: WealthboxUpdateContact200HouseholdName;
3976
+ /** @nullable */
3977
+ title?: WealthboxUpdateContact200HouseholdTitle;
4122
3978
  [key: string]: unknown | null;
4123
3979
  };
4124
- export type WealthboxUpdateContactBodyAllOfType = typeof WealthboxUpdateContactBodyAllOfType[keyof typeof WealthboxUpdateContactBodyAllOfType];
4125
- export declare const WealthboxUpdateContactBodyAllOfType: {
4126
- readonly Person: "Person";
4127
- readonly Household: "Household";
4128
- readonly Organization: "Organization";
4129
- readonly Trust: "Trust";
4130
- };
4131
- export type WealthboxUpdateContactBodyAllOfTimeHorizon = typeof WealthboxUpdateContactBodyAllOfTimeHorizon[keyof typeof WealthboxUpdateContactBodyAllOfTimeHorizon];
4132
- export declare const WealthboxUpdateContactBodyAllOfTimeHorizon: {
4133
- readonly Short_Term: "Short Term";
4134
- readonly Intermediate: "Intermediate";
4135
- readonly Long_Term: "Long Term";
4136
- };
4137
- export type WealthboxUpdateContactBodyAllOfStreetAddressesItemKind = typeof WealthboxUpdateContactBodyAllOfStreetAddressesItemKind[keyof typeof WealthboxUpdateContactBodyAllOfStreetAddressesItemKind];
4138
- export declare const WealthboxUpdateContactBodyAllOfStreetAddressesItemKind: {
4139
- readonly Work: "Work";
4140
- readonly Home: "Home";
4141
- readonly Mobile: "Mobile";
4142
- readonly Vacation: "Vacation";
4143
- readonly Fax: "Fax";
4144
- readonly Other: "Other";
4145
- };
4146
- export type WealthboxUpdateContactBodyAllOfStreetAddressesItem = {
4147
- city?: string;
4148
- country?: string;
4149
- destroy?: boolean;
4150
- kind?: WealthboxUpdateContactBodyAllOfStreetAddressesItemKind;
4151
- principal?: boolean;
4152
- state?: string;
4153
- street_line_1?: string;
4154
- street_line_2?: string;
4155
- zip_code?: string;
3980
+ /**
3981
+ * @nullable
3982
+ */
3983
+ export type WealthboxUpdateContact200GrossAnnualIncome = unknown | null;
3984
+ /**
3985
+ * @nullable
3986
+ */
3987
+ export type WealthboxUpdateContact200GreenCardNumber = unknown | null;
3988
+ /**
3989
+ * @nullable
3990
+ */
3991
+ export type WealthboxUpdateContact200Gender = unknown | null;
3992
+ /**
3993
+ * @nullable
3994
+ */
3995
+ export type WealthboxUpdateContact200FirstName = unknown | null;
3996
+ /**
3997
+ * @nullable
3998
+ */
3999
+ export type WealthboxUpdateContact200FamilyOfficer = unknown | null;
4000
+ /**
4001
+ * @nullable
4002
+ */
4003
+ export type WealthboxUpdateContact200ExternalUniqueId = unknown | null;
4004
+ /**
4005
+ * @nullable
4006
+ */
4007
+ export type WealthboxUpdateContact200EstimatedTaxes = unknown | null;
4008
+ export type WealthboxUpdateContact200EmailAddressesItem = {
4156
4009
  [key: string]: unknown | null;
4157
4010
  };
4158
- export type WealthboxUpdateContactBodyAllOfStatus = typeof WealthboxUpdateContactBodyAllOfStatus[keyof typeof WealthboxUpdateContactBodyAllOfStatus];
4159
- export declare const WealthboxUpdateContactBodyAllOfStatus: {
4160
- readonly Active: "Active";
4161
- readonly Inactive: "Inactive";
4162
- };
4163
- export type WealthboxUpdateContactBodyAllOfRiskTolerance = typeof WealthboxUpdateContactBodyAllOfRiskTolerance[keyof typeof WealthboxUpdateContactBodyAllOfRiskTolerance];
4164
- export declare const WealthboxUpdateContactBodyAllOfRiskTolerance: {
4165
- readonly Low: "Low";
4166
- readonly Moderate: "Moderate";
4167
- readonly High_Risk: "High Risk";
4168
- };
4169
- export type WealthboxUpdateContactBodyAllOfPhoneNumbersItemKind = typeof WealthboxUpdateContactBodyAllOfPhoneNumbersItemKind[keyof typeof WealthboxUpdateContactBodyAllOfPhoneNumbersItemKind];
4170
- export declare const WealthboxUpdateContactBodyAllOfPhoneNumbersItemKind: {
4171
- readonly Work: "Work";
4172
- readonly Home: "Home";
4173
- readonly Mobile: "Mobile";
4174
- readonly Vacation: "Vacation";
4175
- readonly Fax: "Fax";
4176
- readonly Other: "Other";
4177
- };
4178
- export type WealthboxUpdateContactBodyAllOfPhoneNumbersItem = {
4179
- address: string;
4180
- destroy?: boolean;
4181
- extension?: string;
4182
- kind?: WealthboxUpdateContactBodyAllOfPhoneNumbersItemKind;
4183
- principal?: boolean;
4011
+ export type WealthboxUpdateContact200DriversLicense = {
4184
4012
  [key: string]: unknown | null;
4185
4013
  };
4186
- export type WealthboxUpdateContactBodyAllOfOccupation = {
4187
- name?: string;
4188
- start_date?: string;
4014
+ /**
4015
+ * @nullable
4016
+ */
4017
+ export type WealthboxUpdateContact200Doctor = unknown | null;
4018
+ /**
4019
+ * @nullable
4020
+ */
4021
+ export type WealthboxUpdateContact200DateOfDeath = unknown | null;
4022
+ export type WealthboxUpdateContact200CustomFieldsItem = {
4189
4023
  [key: string]: unknown | null;
4190
4024
  };
4191
- export type WealthboxUpdateContactBodyAllOfMaritalStatus = typeof WealthboxUpdateContactBodyAllOfMaritalStatus[keyof typeof WealthboxUpdateContactBodyAllOfMaritalStatus];
4192
- export declare const WealthboxUpdateContactBodyAllOfMaritalStatus: {
4193
- readonly Married: "Married";
4194
- readonly Single: "Single";
4195
- readonly Divorced: "Divorced";
4196
- readonly Widowed: "Widowed";
4197
- readonly Life_Partner: "Life Partner";
4025
+ /**
4026
+ * @nullable
4027
+ */
4028
+ export type WealthboxUpdateContact200Creator = unknown | null;
4029
+ /**
4030
+ * @nullable
4031
+ */
4032
+ export type WealthboxUpdateContact200CreatedAt = unknown | null;
4033
+ /**
4034
+ * @nullable
4035
+ */
4036
+ export type WealthboxUpdateContact200Cpa = unknown | null;
4037
+ /**
4038
+ * @nullable
4039
+ */
4040
+ export type WealthboxUpdateContact200ContactType = unknown | null;
4041
+ /**
4042
+ * @nullable
4043
+ */
4044
+ export type WealthboxUpdateContact200ContactSource = unknown | null;
4045
+ export type WealthboxUpdateContact200ContactRolesItem = {
4046
+ [key: string]: unknown | null;
4047
+ };
4048
+ /**
4049
+ * @nullable
4050
+ */
4051
+ export type WealthboxUpdateContact200ConfirmedByTaxReturn = unknown | null;
4052
+ /**
4053
+ * @nullable
4054
+ */
4055
+ export type WealthboxUpdateContact200CompanyName = unknown | null;
4056
+ /**
4057
+ * @nullable
4058
+ */
4059
+ export type WealthboxUpdateContact200ClientSince = unknown | null;
4060
+ /**
4061
+ * @nullable
4062
+ */
4063
+ export type WealthboxUpdateContact200BusinessManager = unknown | null;
4064
+ /**
4065
+ * @nullable
4066
+ */
4067
+ export type WealthboxUpdateContact200BirthPlace = unknown | null;
4068
+ /**
4069
+ * @nullable
4070
+ */
4071
+ export type WealthboxUpdateContact200BirthDate = unknown | null;
4072
+ /**
4073
+ * @nullable
4074
+ */
4075
+ export type WealthboxUpdateContact200BackgroundInformation = unknown | null;
4076
+ /**
4077
+ * @nullable
4078
+ */
4079
+ export type WealthboxUpdateContact200Attorney = unknown | null;
4080
+ /**
4081
+ * @nullable
4082
+ */
4083
+ export type WealthboxUpdateContact200Assistant = unknown | null;
4084
+ /**
4085
+ * @nullable
4086
+ */
4087
+ export type WealthboxUpdateContact200AssignedTo = unknown | null;
4088
+ /**
4089
+ * @nullable
4090
+ */
4091
+ export type WealthboxUpdateContact200Assets = unknown | null;
4092
+ /**
4093
+ * @nullable
4094
+ */
4095
+ export type WealthboxUpdateContact200Anniversary = unknown | null;
4096
+ /**
4097
+ * @nullable
4098
+ */
4099
+ export type WealthboxUpdateContact200AdjustedGrossIncome = unknown | null;
4100
+ export type WealthboxUpdateContactBodyWebsitesItemKind = typeof WealthboxUpdateContactBodyWebsitesItemKind[keyof typeof WealthboxUpdateContactBodyWebsitesItemKind];
4101
+ export declare const WealthboxUpdateContactBodyWebsitesItemKind: {
4102
+ readonly Website: "Website";
4103
+ readonly Facebook: "Facebook";
4104
+ readonly Blog: "Blog";
4105
+ };
4106
+ export type WealthboxUpdateContactBodyWebsitesItem = {
4107
+ address: string;
4108
+ destroy?: boolean;
4109
+ kind?: WealthboxUpdateContactBodyWebsitesItemKind;
4110
+ principal?: boolean;
4111
+ [key: string]: unknown | null;
4112
+ };
4113
+ export type WealthboxUpdateContactBodyType = typeof WealthboxUpdateContactBodyType[keyof typeof WealthboxUpdateContactBodyType];
4114
+ export declare const WealthboxUpdateContactBodyType: {
4115
+ readonly Person: "Person";
4116
+ readonly Household: "Household";
4117
+ readonly Organization: "Organization";
4118
+ readonly Trust: "Trust";
4119
+ };
4120
+ export type WealthboxUpdateContactBodyTimeHorizon = typeof WealthboxUpdateContactBodyTimeHorizon[keyof typeof WealthboxUpdateContactBodyTimeHorizon];
4121
+ export declare const WealthboxUpdateContactBodyTimeHorizon: {
4122
+ readonly Short_Term: "Short Term";
4123
+ readonly Intermediate: "Intermediate";
4124
+ readonly Long_Term: "Long Term";
4125
+ };
4126
+ export type WealthboxUpdateContactBodyStreetAddressesItemKind = typeof WealthboxUpdateContactBodyStreetAddressesItemKind[keyof typeof WealthboxUpdateContactBodyStreetAddressesItemKind];
4127
+ export declare const WealthboxUpdateContactBodyStreetAddressesItemKind: {
4128
+ readonly Work: "Work";
4129
+ readonly Home: "Home";
4130
+ readonly Mobile: "Mobile";
4131
+ readonly Vacation: "Vacation";
4132
+ readonly Fax: "Fax";
4133
+ readonly Other: "Other";
4134
+ };
4135
+ export type WealthboxUpdateContactBodyStreetAddressesItem = {
4136
+ city?: string;
4137
+ country?: string;
4138
+ destroy?: boolean;
4139
+ kind?: WealthboxUpdateContactBodyStreetAddressesItemKind;
4140
+ principal?: boolean;
4141
+ state?: string;
4142
+ street_line_1?: string;
4143
+ street_line_2?: string;
4144
+ zip_code?: string;
4145
+ [key: string]: unknown | null;
4146
+ };
4147
+ export type WealthboxUpdateContactBodyStatus = typeof WealthboxUpdateContactBodyStatus[keyof typeof WealthboxUpdateContactBodyStatus];
4148
+ export declare const WealthboxUpdateContactBodyStatus: {
4149
+ readonly Active: "Active";
4150
+ readonly Inactive: "Inactive";
4151
+ };
4152
+ export type WealthboxUpdateContactBodyRiskTolerance = typeof WealthboxUpdateContactBodyRiskTolerance[keyof typeof WealthboxUpdateContactBodyRiskTolerance];
4153
+ export declare const WealthboxUpdateContactBodyRiskTolerance: {
4154
+ readonly Low: "Low";
4155
+ readonly Moderate: "Moderate";
4156
+ readonly High_Risk: "High Risk";
4157
+ };
4158
+ export type WealthboxUpdateContactBodyPhoneNumbersItemKind = typeof WealthboxUpdateContactBodyPhoneNumbersItemKind[keyof typeof WealthboxUpdateContactBodyPhoneNumbersItemKind];
4159
+ export declare const WealthboxUpdateContactBodyPhoneNumbersItemKind: {
4160
+ readonly Work: "Work";
4161
+ readonly Home: "Home";
4162
+ readonly Mobile: "Mobile";
4163
+ readonly Vacation: "Vacation";
4164
+ readonly Fax: "Fax";
4165
+ readonly Other: "Other";
4166
+ };
4167
+ export type WealthboxUpdateContactBodyPhoneNumbersItem = {
4168
+ address: string;
4169
+ destroy?: boolean;
4170
+ extension?: string;
4171
+ kind?: WealthboxUpdateContactBodyPhoneNumbersItemKind;
4172
+ principal?: boolean;
4173
+ [key: string]: unknown | null;
4174
+ };
4175
+ export type WealthboxUpdateContactBodyOccupation = {
4176
+ name?: string;
4177
+ start_date?: string;
4178
+ [key: string]: unknown | null;
4179
+ };
4180
+ export type WealthboxUpdateContactBodyMaritalStatus = typeof WealthboxUpdateContactBodyMaritalStatus[keyof typeof WealthboxUpdateContactBodyMaritalStatus];
4181
+ export declare const WealthboxUpdateContactBodyMaritalStatus: {
4182
+ readonly Married: "Married";
4183
+ readonly Single: "Single";
4184
+ readonly Divorced: "Divorced";
4185
+ readonly Widowed: "Widowed";
4186
+ readonly Life_Partner: "Life Partner";
4198
4187
  readonly Separated: "Separated";
4199
4188
  readonly Unknown: "Unknown";
4200
4189
  };
4201
- export type WealthboxUpdateContactBodyAllOfInvestmentObjective = typeof WealthboxUpdateContactBodyAllOfInvestmentObjective[keyof typeof WealthboxUpdateContactBodyAllOfInvestmentObjective];
4202
- export declare const WealthboxUpdateContactBodyAllOfInvestmentObjective: {
4190
+ export type WealthboxUpdateContactBodyInvestmentObjective = typeof WealthboxUpdateContactBodyInvestmentObjective[keyof typeof WealthboxUpdateContactBodyInvestmentObjective];
4191
+ export declare const WealthboxUpdateContactBodyInvestmentObjective: {
4203
4192
  readonly Aggressive_Growth: "Aggressive Growth";
4204
4193
  readonly Growth: "Growth";
4205
4194
  readonly Income: "Income";
4206
4195
  readonly Safety_of_Principal: "Safety of Principal";
4207
4196
  };
4208
- export type WealthboxUpdateContactBodyAllOfHouseholdTitle = typeof WealthboxUpdateContactBodyAllOfHouseholdTitle[keyof typeof WealthboxUpdateContactBodyAllOfHouseholdTitle];
4209
- export declare const WealthboxUpdateContactBodyAllOfHouseholdTitle: {
4197
+ export type WealthboxUpdateContactBodyHouseholdTitle = typeof WealthboxUpdateContactBodyHouseholdTitle[keyof typeof WealthboxUpdateContactBodyHouseholdTitle];
4198
+ export declare const WealthboxUpdateContactBodyHouseholdTitle: {
4210
4199
  readonly Head: "Head";
4211
4200
  readonly Spouse: "Spouse";
4212
4201
  readonly Partner: "Partner";
@@ -4217,42 +4206,19 @@ export declare const WealthboxUpdateContactBodyAllOfHouseholdTitle: {
4217
4206
  readonly Sibling: "Sibling";
4218
4207
  readonly Other_Dependent: "Other Dependent";
4219
4208
  };
4220
- export type WealthboxUpdateContactBodyAllOfHousehold = {
4209
+ export type WealthboxUpdateContactBodyHousehold = {
4221
4210
  name?: string;
4222
- title?: WealthboxUpdateContactBodyAllOfHouseholdTitle;
4211
+ title?: WealthboxUpdateContactBodyHouseholdTitle;
4223
4212
  [key: string]: unknown | null;
4224
4213
  };
4225
- export type WealthboxUpdateContactBodyAllOfGender = typeof WealthboxUpdateContactBodyAllOfGender[keyof typeof WealthboxUpdateContactBodyAllOfGender];
4226
- export declare const WealthboxUpdateContactBodyAllOfGender: {
4214
+ export type WealthboxUpdateContactBodyGender = typeof WealthboxUpdateContactBodyGender[keyof typeof WealthboxUpdateContactBodyGender];
4215
+ export declare const WealthboxUpdateContactBodyGender: {
4227
4216
  readonly Female: "Female";
4228
4217
  readonly Male: "Male";
4229
4218
  readonly 'Non-binary': "Non-binary";
4230
4219
  readonly Unknown: "Unknown";
4231
4220
  };
4232
- export type WealthboxUpdateContactBodyAllOfEmailAddressesItemKind = typeof WealthboxUpdateContactBodyAllOfEmailAddressesItemKind[keyof typeof WealthboxUpdateContactBodyAllOfEmailAddressesItemKind];
4233
- export declare const WealthboxUpdateContactBodyAllOfEmailAddressesItemKind: {
4234
- readonly Work: "Work";
4235
- readonly Home: "Home";
4236
- readonly Mobile: "Mobile";
4237
- readonly Vacation: "Vacation";
4238
- readonly Fax: "Fax";
4239
- readonly Other: "Other";
4240
- };
4241
- export type WealthboxUpdateContactBodyAllOfEmailAddressesItem = {
4242
- address: string;
4243
- destroy?: boolean;
4244
- kind?: WealthboxUpdateContactBodyAllOfEmailAddressesItemKind;
4245
- principal?: boolean;
4246
- [key: string]: unknown | null;
4247
- };
4248
- export type WealthboxUpdateContactBodyAllOfDriversLicense = {
4249
- expires_date?: string;
4250
- issued_date?: string;
4251
- number?: string;
4252
- state?: string;
4253
- [key: string]: unknown | null;
4254
- };
4255
- export type WealthboxUpdateContactBodyAllOf = {
4221
+ export type WealthboxUpdateContactBody = {
4256
4222
  /** @nullable */
4257
4223
  adjusted_gross_income?: number | null;
4258
4224
  anniversary?: string;
@@ -4273,33 +4239,38 @@ export type WealthboxUpdateContactBodyAllOf = {
4273
4239
  company_name?: string;
4274
4240
  /** @nullable */
4275
4241
  confirmed_by_tax_return?: boolean | null;
4276
- contact_roles?: WealthboxUpdateContactBodyAllOfContactRolesItem[];
4277
- contact_source?: WealthboxUpdateContactBodyAllOfContactSource;
4278
- contact_type?: WealthboxUpdateContactBodyAllOfContactType;
4242
+ contact_roles?: WealthboxUpdateContactBodyContactRolesItem[];
4243
+ contact_source?: WealthboxUpdateContactBodyContactSource;
4244
+ contact_type?: WealthboxUpdateContactBodyContactType;
4279
4245
  /** @nullable */
4280
4246
  cpa?: number | null;
4281
- custom_fields?: WealthboxUpdateContactBodyAllOfCustomFieldsItem[];
4247
+ custom_fields?: WealthboxUpdateContactBodyCustomFieldsItem[];
4282
4248
  date_of_death?: string;
4283
4249
  /** @nullable */
4284
4250
  doctor?: number | null;
4285
- drivers_license?: WealthboxUpdateContactBodyAllOfDriversLicense;
4286
- email_addresses?: WealthboxUpdateContactBodyAllOfEmailAddressesItem[];
4251
+ drivers_license?: WealthboxUpdateContactBodyDriversLicense;
4252
+ email_addresses?: WealthboxUpdateContactBodyEmailAddressesItem[];
4287
4253
  /** @nullable */
4288
4254
  estimated_taxes?: number | null;
4289
4255
  external_unique_id?: string;
4290
4256
  /** @nullable */
4291
4257
  family_officer?: number | null;
4292
4258
  first_name?: string;
4293
- gender?: WealthboxUpdateContactBodyAllOfGender;
4259
+ gender?: WealthboxUpdateContactBodyGender;
4294
4260
  green_card_number?: string;
4295
4261
  /** @nullable */
4296
4262
  gross_annual_income?: number | null;
4297
- household?: WealthboxUpdateContactBodyAllOfHousehold;
4263
+ household?: WealthboxUpdateContactBodyHousehold;
4264
+ /**
4265
+ * The id of the contact to be retrieved
4266
+ * @nullable
4267
+ */
4268
+ id: number | null;
4298
4269
  important_information?: string;
4299
4270
  initial_crs_offering_date?: string;
4300
4271
  /** @nullable */
4301
4272
  insurance?: number | null;
4302
- investment_objective?: WealthboxUpdateContactBodyAllOfInvestmentObjective;
4273
+ investment_objective?: WealthboxUpdateContactBodyInvestmentObjective;
4303
4274
  job_title?: string;
4304
4275
  last_adv_offering_date?: string;
4305
4276
  last_crs_offering_date?: string;
@@ -4309,14 +4280,14 @@ export type WealthboxUpdateContactBodyAllOf = {
4309
4280
  liabilities?: number | null;
4310
4281
  linkedin_url?: string;
4311
4282
  maiden_name?: string;
4312
- marital_status?: WealthboxUpdateContactBodyAllOfMaritalStatus;
4283
+ marital_status?: WealthboxUpdateContactBodyMaritalStatus;
4313
4284
  middle_name?: string;
4314
4285
  /** @nullable */
4315
4286
  mutual_fund_experience?: number | null;
4316
4287
  nickname?: string;
4317
4288
  /** @nullable */
4318
4289
  non_liquid_assets?: number | null;
4319
- occupation?: WealthboxUpdateContactBodyAllOfOccupation;
4290
+ occupation?: WealthboxUpdateContactBodyOccupation;
4320
4291
  /** @nullable */
4321
4292
  other?: number | null;
4322
4293
  /** @nullable */
@@ -4325,69 +4296,92 @@ export type WealthboxUpdateContactBodyAllOf = {
4325
4296
  partnerships_experience?: number | null;
4326
4297
  passport_number?: string;
4327
4298
  personal_interests?: string;
4328
- phone_numbers?: WealthboxUpdateContactBodyAllOfPhoneNumbersItem[];
4299
+ phone_numbers?: WealthboxUpdateContactBodyPhoneNumbersItem[];
4329
4300
  prefix?: string;
4330
4301
  /** @nullable */
4331
4302
  referred_by?: number | null;
4332
4303
  retirement_date?: string;
4333
- risk_tolerance?: WealthboxUpdateContactBodyAllOfRiskTolerance;
4304
+ risk_tolerance?: WealthboxUpdateContactBodyRiskTolerance;
4334
4305
  signed_fee_agreement_date?: string;
4335
4306
  signed_fp_agreement_date?: string;
4336
4307
  signed_ips_agreement_date?: string;
4337
- status?: WealthboxUpdateContactBodyAllOfStatus;
4308
+ status?: WealthboxUpdateContactBodyStatus;
4338
4309
  /** @nullable */
4339
4310
  stocks_and_bonds_experience?: number | null;
4340
- street_addresses?: WealthboxUpdateContactBodyAllOfStreetAddressesItem[];
4311
+ street_addresses?: WealthboxUpdateContactBodyStreetAddressesItem[];
4341
4312
  suffix?: string;
4342
4313
  tags?: string[];
4343
4314
  /** @nullable */
4344
4315
  tax_bracket?: number | null;
4345
4316
  /** @nullable */
4346
4317
  tax_year?: number | null;
4347
- time_horizon?: WealthboxUpdateContactBodyAllOfTimeHorizon;
4318
+ time_horizon?: WealthboxUpdateContactBodyTimeHorizon;
4348
4319
  /** @nullable */
4349
4320
  trusted_contact?: number | null;
4350
4321
  twitter_name?: string;
4351
- type?: WealthboxUpdateContactBodyAllOfType;
4322
+ type?: WealthboxUpdateContactBodyType;
4352
4323
  /** Integration user id for Wealthbox requests. */
4353
- userId?: string;
4324
+ userId: string;
4354
4325
  /** Visibility: Everyone, Private, or a user group id (string) for group-restricted access per Wealthbox API. */
4355
4326
  visible_to?: string;
4356
- websites?: WealthboxUpdateContactBodyAllOfWebsitesItem[];
4327
+ websites?: WealthboxUpdateContactBodyWebsitesItem[];
4328
+ [key: string]: unknown | null;
4329
+ };
4330
+ export type WealthboxUpdateContactBodyEmailAddressesItemKind = typeof WealthboxUpdateContactBodyEmailAddressesItemKind[keyof typeof WealthboxUpdateContactBodyEmailAddressesItemKind];
4331
+ export declare const WealthboxUpdateContactBodyEmailAddressesItemKind: {
4332
+ readonly Work: "Work";
4333
+ readonly Home: "Home";
4334
+ readonly Mobile: "Mobile";
4335
+ readonly Vacation: "Vacation";
4336
+ readonly Fax: "Fax";
4337
+ readonly Other: "Other";
4338
+ };
4339
+ export type WealthboxUpdateContactBodyEmailAddressesItem = {
4340
+ address: string;
4341
+ destroy?: boolean;
4342
+ kind?: WealthboxUpdateContactBodyEmailAddressesItemKind;
4343
+ principal?: boolean;
4344
+ [key: string]: unknown | null;
4345
+ };
4346
+ export type WealthboxUpdateContactBodyDriversLicense = {
4347
+ expires_date?: string;
4348
+ issued_date?: string;
4349
+ number?: string;
4350
+ state?: string;
4351
+ [key: string]: unknown | null;
4352
+ };
4353
+ export type WealthboxUpdateContactBodyCustomFieldsItem = {
4354
+ /** @nullable */
4355
+ id?: number | null;
4356
+ value?: WealthboxUpdateContactBodyCustomFieldsItemValue;
4357
4357
  [key: string]: unknown | null;
4358
4358
  };
4359
4359
  /**
4360
4360
  * @nullable
4361
4361
  */
4362
- export type WealthboxUpdateContactBodyAllOfCustomFieldsItemValueAnyOfTwo = unknown | null;
4362
+ export type WealthboxUpdateContactBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
4363
4363
  /**
4364
4364
  * @nullable
4365
4365
  */
4366
- export type WealthboxUpdateContactBodyAllOfCustomFieldsItemValueAnyOf = unknown | null;
4367
- export type WealthboxUpdateContactBodyAllOfCustomFieldsItemValue = string | number | boolean | WealthboxUpdateContactBodyAllOfCustomFieldsItemValueAnyOf | WealthboxUpdateContactBodyAllOfCustomFieldsItemValueAnyOfTwo;
4368
- export type WealthboxUpdateContactBodyAllOfCustomFieldsItem = {
4369
- /** @nullable */
4370
- id?: number | null;
4371
- value?: WealthboxUpdateContactBodyAllOfCustomFieldsItemValue;
4372
- [key: string]: unknown | null;
4373
- };
4374
- export type WealthboxUpdateContactBodyAllOfContactType = typeof WealthboxUpdateContactBodyAllOfContactType[keyof typeof WealthboxUpdateContactBodyAllOfContactType];
4375
- export declare const WealthboxUpdateContactBodyAllOfContactType: {
4366
+ export type WealthboxUpdateContactBodyCustomFieldsItemValueAnyOf = unknown | null;
4367
+ export type WealthboxUpdateContactBodyCustomFieldsItemValue = string | number | boolean | WealthboxUpdateContactBodyCustomFieldsItemValueAnyOf | WealthboxUpdateContactBodyCustomFieldsItemValueAnyOfTwo;
4368
+ export type WealthboxUpdateContactBodyContactType = typeof WealthboxUpdateContactBodyContactType[keyof typeof WealthboxUpdateContactBodyContactType];
4369
+ export declare const WealthboxUpdateContactBodyContactType: {
4376
4370
  readonly Client: "Client";
4377
4371
  readonly Past_Client: "Past Client";
4378
4372
  readonly Prospect: "Prospect";
4379
4373
  readonly Vendor: "Vendor";
4380
4374
  readonly Organization: "Organization";
4381
4375
  };
4382
- export type WealthboxUpdateContactBodyAllOfContactSource = typeof WealthboxUpdateContactBodyAllOfContactSource[keyof typeof WealthboxUpdateContactBodyAllOfContactSource];
4383
- export declare const WealthboxUpdateContactBodyAllOfContactSource: {
4376
+ export type WealthboxUpdateContactBodyContactSource = typeof WealthboxUpdateContactBodyContactSource[keyof typeof WealthboxUpdateContactBodyContactSource];
4377
+ export declare const WealthboxUpdateContactBodyContactSource: {
4384
4378
  readonly Referral: "Referral";
4385
4379
  readonly Conference: "Conference";
4386
4380
  readonly Direct_Mail: "Direct Mail";
4387
4381
  readonly Cold_Call: "Cold Call";
4388
4382
  readonly Other: "Other";
4389
4383
  };
4390
- export type WealthboxUpdateContactBodyAllOfContactRolesItem = {
4384
+ export type WealthboxUpdateContactBodyContactRolesItem = {
4391
4385
  /** @nullable */
4392
4386
  id: number | null;
4393
4387
  /** @nullable */
@@ -4899,124 +4893,6 @@ export declare const WealthboxCreateContactBodyTimeHorizon: {
4899
4893
  readonly Intermediate: "Intermediate";
4900
4894
  readonly Long_Term: "Long Term";
4901
4895
  };
4902
- export type WealthboxCreateContactBodyStreetAddressesItemKind = typeof WealthboxCreateContactBodyStreetAddressesItemKind[keyof typeof WealthboxCreateContactBodyStreetAddressesItemKind];
4903
- export declare const WealthboxCreateContactBodyStreetAddressesItemKind: {
4904
- readonly Work: "Work";
4905
- readonly Home: "Home";
4906
- readonly Mobile: "Mobile";
4907
- readonly Vacation: "Vacation";
4908
- readonly Fax: "Fax";
4909
- readonly Other: "Other";
4910
- };
4911
- export type WealthboxCreateContactBodyStreetAddressesItem = {
4912
- city?: string;
4913
- country?: string;
4914
- destroy?: boolean;
4915
- kind?: WealthboxCreateContactBodyStreetAddressesItemKind;
4916
- principal?: boolean;
4917
- state?: string;
4918
- street_line_1?: string;
4919
- street_line_2?: string;
4920
- zip_code?: string;
4921
- [key: string]: unknown | null;
4922
- };
4923
- export type WealthboxCreateContactBodyStatus = typeof WealthboxCreateContactBodyStatus[keyof typeof WealthboxCreateContactBodyStatus];
4924
- export declare const WealthboxCreateContactBodyStatus: {
4925
- readonly Active: "Active";
4926
- readonly Inactive: "Inactive";
4927
- };
4928
- export type WealthboxCreateContactBodyRiskTolerance = typeof WealthboxCreateContactBodyRiskTolerance[keyof typeof WealthboxCreateContactBodyRiskTolerance];
4929
- export declare const WealthboxCreateContactBodyRiskTolerance: {
4930
- readonly Low: "Low";
4931
- readonly Moderate: "Moderate";
4932
- readonly High_Risk: "High Risk";
4933
- };
4934
- export type WealthboxCreateContactBodyPhoneNumbersItemKind = typeof WealthboxCreateContactBodyPhoneNumbersItemKind[keyof typeof WealthboxCreateContactBodyPhoneNumbersItemKind];
4935
- export declare const WealthboxCreateContactBodyPhoneNumbersItemKind: {
4936
- readonly Work: "Work";
4937
- readonly Home: "Home";
4938
- readonly Mobile: "Mobile";
4939
- readonly Vacation: "Vacation";
4940
- readonly Fax: "Fax";
4941
- readonly Other: "Other";
4942
- };
4943
- export type WealthboxCreateContactBodyPhoneNumbersItem = {
4944
- address: string;
4945
- destroy?: boolean;
4946
- extension?: string;
4947
- kind?: WealthboxCreateContactBodyPhoneNumbersItemKind;
4948
- principal?: boolean;
4949
- [key: string]: unknown | null;
4950
- };
4951
- export type WealthboxCreateContactBodyOccupation = {
4952
- name?: string;
4953
- start_date?: string;
4954
- [key: string]: unknown | null;
4955
- };
4956
- export type WealthboxCreateContactBodyMaritalStatus = typeof WealthboxCreateContactBodyMaritalStatus[keyof typeof WealthboxCreateContactBodyMaritalStatus];
4957
- export declare const WealthboxCreateContactBodyMaritalStatus: {
4958
- readonly Married: "Married";
4959
- readonly Single: "Single";
4960
- readonly Divorced: "Divorced";
4961
- readonly Widowed: "Widowed";
4962
- readonly Life_Partner: "Life Partner";
4963
- readonly Separated: "Separated";
4964
- readonly Unknown: "Unknown";
4965
- };
4966
- export type WealthboxCreateContactBodyInvestmentObjective = typeof WealthboxCreateContactBodyInvestmentObjective[keyof typeof WealthboxCreateContactBodyInvestmentObjective];
4967
- export declare const WealthboxCreateContactBodyInvestmentObjective: {
4968
- readonly Aggressive_Growth: "Aggressive Growth";
4969
- readonly Growth: "Growth";
4970
- readonly Income: "Income";
4971
- readonly Safety_of_Principal: "Safety of Principal";
4972
- };
4973
- export type WealthboxCreateContactBodyHouseholdTitle = typeof WealthboxCreateContactBodyHouseholdTitle[keyof typeof WealthboxCreateContactBodyHouseholdTitle];
4974
- export declare const WealthboxCreateContactBodyHouseholdTitle: {
4975
- readonly Head: "Head";
4976
- readonly Spouse: "Spouse";
4977
- readonly Partner: "Partner";
4978
- readonly Child: "Child";
4979
- readonly Grandchild: "Grandchild";
4980
- readonly Parent: "Parent";
4981
- readonly Grandparent: "Grandparent";
4982
- readonly Sibling: "Sibling";
4983
- readonly Other_Dependent: "Other Dependent";
4984
- };
4985
- export type WealthboxCreateContactBodyHousehold = {
4986
- name?: string;
4987
- title?: WealthboxCreateContactBodyHouseholdTitle;
4988
- [key: string]: unknown | null;
4989
- };
4990
- export type WealthboxCreateContactBodyGender = typeof WealthboxCreateContactBodyGender[keyof typeof WealthboxCreateContactBodyGender];
4991
- export declare const WealthboxCreateContactBodyGender: {
4992
- readonly Female: "Female";
4993
- readonly Male: "Male";
4994
- readonly 'Non-binary': "Non-binary";
4995
- readonly Unknown: "Unknown";
4996
- };
4997
- export type WealthboxCreateContactBodyEmailAddressesItemKind = typeof WealthboxCreateContactBodyEmailAddressesItemKind[keyof typeof WealthboxCreateContactBodyEmailAddressesItemKind];
4998
- export declare const WealthboxCreateContactBodyEmailAddressesItemKind: {
4999
- readonly Work: "Work";
5000
- readonly Home: "Home";
5001
- readonly Mobile: "Mobile";
5002
- readonly Vacation: "Vacation";
5003
- readonly Fax: "Fax";
5004
- readonly Other: "Other";
5005
- };
5006
- export type WealthboxCreateContactBodyEmailAddressesItem = {
5007
- address: string;
5008
- destroy?: boolean;
5009
- kind?: WealthboxCreateContactBodyEmailAddressesItemKind;
5010
- principal?: boolean;
5011
- [key: string]: unknown | null;
5012
- };
5013
- export type WealthboxCreateContactBodyDriversLicense = {
5014
- expires_date?: string;
5015
- issued_date?: string;
5016
- number?: string;
5017
- state?: string;
5018
- [key: string]: unknown | null;
5019
- };
5020
4896
  export type WealthboxCreateContactBody = {
5021
4897
  /** @nullable */
5022
4898
  adjusted_gross_income?: number | null;
@@ -5121,6 +4997,130 @@ export type WealthboxCreateContactBody = {
5121
4997
  websites?: WealthboxCreateContactBodyWebsitesItem[];
5122
4998
  [key: string]: unknown | null;
5123
4999
  };
5000
+ export type WealthboxCreateContactBodyStreetAddressesItemKind = typeof WealthboxCreateContactBodyStreetAddressesItemKind[keyof typeof WealthboxCreateContactBodyStreetAddressesItemKind];
5001
+ export declare const WealthboxCreateContactBodyStreetAddressesItemKind: {
5002
+ readonly Work: "Work";
5003
+ readonly Home: "Home";
5004
+ readonly Mobile: "Mobile";
5005
+ readonly Vacation: "Vacation";
5006
+ readonly Fax: "Fax";
5007
+ readonly Other: "Other";
5008
+ };
5009
+ export type WealthboxCreateContactBodyStreetAddressesItem = {
5010
+ city?: string;
5011
+ country?: string;
5012
+ destroy?: boolean;
5013
+ kind?: WealthboxCreateContactBodyStreetAddressesItemKind;
5014
+ principal?: boolean;
5015
+ state?: string;
5016
+ street_line_1?: string;
5017
+ street_line_2?: string;
5018
+ zip_code?: string;
5019
+ [key: string]: unknown | null;
5020
+ };
5021
+ export type WealthboxCreateContactBodyStatus = typeof WealthboxCreateContactBodyStatus[keyof typeof WealthboxCreateContactBodyStatus];
5022
+ export declare const WealthboxCreateContactBodyStatus: {
5023
+ readonly Active: "Active";
5024
+ readonly Inactive: "Inactive";
5025
+ };
5026
+ export type WealthboxCreateContactBodyRiskTolerance = typeof WealthboxCreateContactBodyRiskTolerance[keyof typeof WealthboxCreateContactBodyRiskTolerance];
5027
+ export declare const WealthboxCreateContactBodyRiskTolerance: {
5028
+ readonly Low: "Low";
5029
+ readonly Moderate: "Moderate";
5030
+ readonly High_Risk: "High Risk";
5031
+ };
5032
+ export type WealthboxCreateContactBodyPhoneNumbersItemKind = typeof WealthboxCreateContactBodyPhoneNumbersItemKind[keyof typeof WealthboxCreateContactBodyPhoneNumbersItemKind];
5033
+ export declare const WealthboxCreateContactBodyPhoneNumbersItemKind: {
5034
+ readonly Work: "Work";
5035
+ readonly Home: "Home";
5036
+ readonly Mobile: "Mobile";
5037
+ readonly Vacation: "Vacation";
5038
+ readonly Fax: "Fax";
5039
+ readonly Other: "Other";
5040
+ };
5041
+ export type WealthboxCreateContactBodyPhoneNumbersItem = {
5042
+ address: string;
5043
+ destroy?: boolean;
5044
+ extension?: string;
5045
+ kind?: WealthboxCreateContactBodyPhoneNumbersItemKind;
5046
+ principal?: boolean;
5047
+ [key: string]: unknown | null;
5048
+ };
5049
+ export type WealthboxCreateContactBodyOccupation = {
5050
+ name?: string;
5051
+ start_date?: string;
5052
+ [key: string]: unknown | null;
5053
+ };
5054
+ export type WealthboxCreateContactBodyMaritalStatus = typeof WealthboxCreateContactBodyMaritalStatus[keyof typeof WealthboxCreateContactBodyMaritalStatus];
5055
+ export declare const WealthboxCreateContactBodyMaritalStatus: {
5056
+ readonly Married: "Married";
5057
+ readonly Single: "Single";
5058
+ readonly Divorced: "Divorced";
5059
+ readonly Widowed: "Widowed";
5060
+ readonly Life_Partner: "Life Partner";
5061
+ readonly Separated: "Separated";
5062
+ readonly Unknown: "Unknown";
5063
+ };
5064
+ export type WealthboxCreateContactBodyInvestmentObjective = typeof WealthboxCreateContactBodyInvestmentObjective[keyof typeof WealthboxCreateContactBodyInvestmentObjective];
5065
+ export declare const WealthboxCreateContactBodyInvestmentObjective: {
5066
+ readonly Aggressive_Growth: "Aggressive Growth";
5067
+ readonly Growth: "Growth";
5068
+ readonly Income: "Income";
5069
+ readonly Safety_of_Principal: "Safety of Principal";
5070
+ };
5071
+ export type WealthboxCreateContactBodyHouseholdTitle = typeof WealthboxCreateContactBodyHouseholdTitle[keyof typeof WealthboxCreateContactBodyHouseholdTitle];
5072
+ export declare const WealthboxCreateContactBodyHouseholdTitle: {
5073
+ readonly Head: "Head";
5074
+ readonly Spouse: "Spouse";
5075
+ readonly Partner: "Partner";
5076
+ readonly Child: "Child";
5077
+ readonly Grandchild: "Grandchild";
5078
+ readonly Parent: "Parent";
5079
+ readonly Grandparent: "Grandparent";
5080
+ readonly Sibling: "Sibling";
5081
+ readonly Other_Dependent: "Other Dependent";
5082
+ };
5083
+ export type WealthboxCreateContactBodyHousehold = {
5084
+ name?: string;
5085
+ title?: WealthboxCreateContactBodyHouseholdTitle;
5086
+ [key: string]: unknown | null;
5087
+ };
5088
+ export type WealthboxCreateContactBodyGender = typeof WealthboxCreateContactBodyGender[keyof typeof WealthboxCreateContactBodyGender];
5089
+ export declare const WealthboxCreateContactBodyGender: {
5090
+ readonly Female: "Female";
5091
+ readonly Male: "Male";
5092
+ readonly 'Non-binary': "Non-binary";
5093
+ readonly Unknown: "Unknown";
5094
+ };
5095
+ export type WealthboxCreateContactBodyEmailAddressesItemKind = typeof WealthboxCreateContactBodyEmailAddressesItemKind[keyof typeof WealthboxCreateContactBodyEmailAddressesItemKind];
5096
+ export declare const WealthboxCreateContactBodyEmailAddressesItemKind: {
5097
+ readonly Work: "Work";
5098
+ readonly Home: "Home";
5099
+ readonly Mobile: "Mobile";
5100
+ readonly Vacation: "Vacation";
5101
+ readonly Fax: "Fax";
5102
+ readonly Other: "Other";
5103
+ };
5104
+ export type WealthboxCreateContactBodyEmailAddressesItem = {
5105
+ address: string;
5106
+ destroy?: boolean;
5107
+ kind?: WealthboxCreateContactBodyEmailAddressesItemKind;
5108
+ principal?: boolean;
5109
+ [key: string]: unknown | null;
5110
+ };
5111
+ export type WealthboxCreateContactBodyDriversLicense = {
5112
+ expires_date?: string;
5113
+ issued_date?: string;
5114
+ number?: string;
5115
+ state?: string;
5116
+ [key: string]: unknown | null;
5117
+ };
5118
+ export type WealthboxCreateContactBodyCustomFieldsItem = {
5119
+ /** @nullable */
5120
+ id?: number | null;
5121
+ value?: WealthboxCreateContactBodyCustomFieldsItemValue;
5122
+ [key: string]: unknown | null;
5123
+ };
5124
5124
  /**
5125
5125
  * @nullable
5126
5126
  */
@@ -5130,12 +5130,6 @@ export type WealthboxCreateContactBodyCustomFieldsItemValueAnyOfTwo = unknown |
5130
5130
  */
5131
5131
  export type WealthboxCreateContactBodyCustomFieldsItemValueAnyOf = unknown | null;
5132
5132
  export type WealthboxCreateContactBodyCustomFieldsItemValue = string | number | boolean | WealthboxCreateContactBodyCustomFieldsItemValueAnyOf | WealthboxCreateContactBodyCustomFieldsItemValueAnyOfTwo;
5133
- export type WealthboxCreateContactBodyCustomFieldsItem = {
5134
- /** @nullable */
5135
- id?: number | null;
5136
- value?: WealthboxCreateContactBodyCustomFieldsItemValue;
5137
- [key: string]: unknown | null;
5138
- };
5139
5133
  export type WealthboxCreateContactBodyContactType = typeof WealthboxCreateContactBodyContactType[keyof typeof WealthboxCreateContactBodyContactType];
5140
5134
  export declare const WealthboxCreateContactBodyContactType: {
5141
5135
  readonly Client: "Client";
@@ -5342,156 +5336,11 @@ export type WealthboxGetContact200Image = unknown | null;
5342
5336
  * @nullable
5343
5337
  */
5344
5338
  export type WealthboxGetContact200Id = unknown | null;
5345
- /**
5346
- * @nullable
5347
- */
5348
- export type WealthboxGetContact200HouseholdTitle = unknown | null;
5349
- /**
5350
- * @nullable
5351
- */
5352
- export type WealthboxGetContact200HouseholdName = unknown | null;
5353
- export type WealthboxGetContact200HouseholdMembersItem = {
5354
- [key: string]: unknown | null;
5355
- };
5356
- /**
5357
- * @nullable
5358
- */
5359
- export type WealthboxGetContact200HouseholdId = unknown | null;
5360
- export type WealthboxGetContact200Household = {
5339
+ export type WealthboxGetContact200 = {
5361
5340
  /** @nullable */
5362
- id?: WealthboxGetContact200HouseholdId;
5363
- members?: WealthboxGetContact200HouseholdMembersItem[];
5341
+ adjusted_gross_income?: WealthboxGetContact200AdjustedGrossIncome;
5364
5342
  /** @nullable */
5365
- name?: WealthboxGetContact200HouseholdName;
5366
- /** @nullable */
5367
- title?: WealthboxGetContact200HouseholdTitle;
5368
- [key: string]: unknown | null;
5369
- };
5370
- /**
5371
- * @nullable
5372
- */
5373
- export type WealthboxGetContact200GrossAnnualIncome = unknown | null;
5374
- /**
5375
- * @nullable
5376
- */
5377
- export type WealthboxGetContact200GreenCardNumber = unknown | null;
5378
- /**
5379
- * @nullable
5380
- */
5381
- export type WealthboxGetContact200Gender = unknown | null;
5382
- /**
5383
- * @nullable
5384
- */
5385
- export type WealthboxGetContact200FirstName = unknown | null;
5386
- /**
5387
- * @nullable
5388
- */
5389
- export type WealthboxGetContact200FamilyOfficer = unknown | null;
5390
- /**
5391
- * @nullable
5392
- */
5393
- export type WealthboxGetContact200ExternalUniqueId = unknown | null;
5394
- /**
5395
- * @nullable
5396
- */
5397
- export type WealthboxGetContact200EstimatedTaxes = unknown | null;
5398
- export type WealthboxGetContact200EmailAddressesItem = {
5399
- [key: string]: unknown | null;
5400
- };
5401
- export type WealthboxGetContact200DriversLicense = {
5402
- [key: string]: unknown | null;
5403
- };
5404
- /**
5405
- * @nullable
5406
- */
5407
- export type WealthboxGetContact200Doctor = unknown | null;
5408
- /**
5409
- * @nullable
5410
- */
5411
- export type WealthboxGetContact200DateOfDeath = unknown | null;
5412
- export type WealthboxGetContact200CustomFieldsItem = {
5413
- [key: string]: unknown | null;
5414
- };
5415
- /**
5416
- * @nullable
5417
- */
5418
- export type WealthboxGetContact200Creator = unknown | null;
5419
- /**
5420
- * @nullable
5421
- */
5422
- export type WealthboxGetContact200CreatedAt = unknown | null;
5423
- /**
5424
- * @nullable
5425
- */
5426
- export type WealthboxGetContact200Cpa = unknown | null;
5427
- /**
5428
- * @nullable
5429
- */
5430
- export type WealthboxGetContact200ContactType = unknown | null;
5431
- /**
5432
- * @nullable
5433
- */
5434
- export type WealthboxGetContact200ContactSource = unknown | null;
5435
- export type WealthboxGetContact200ContactRolesItem = {
5436
- [key: string]: unknown | null;
5437
- };
5438
- /**
5439
- * @nullable
5440
- */
5441
- export type WealthboxGetContact200ConfirmedByTaxReturn = unknown | null;
5442
- /**
5443
- * @nullable
5444
- */
5445
- export type WealthboxGetContact200CompanyName = unknown | null;
5446
- /**
5447
- * @nullable
5448
- */
5449
- export type WealthboxGetContact200ClientSince = unknown | null;
5450
- /**
5451
- * @nullable
5452
- */
5453
- export type WealthboxGetContact200BusinessManager = unknown | null;
5454
- /**
5455
- * @nullable
5456
- */
5457
- export type WealthboxGetContact200BirthPlace = unknown | null;
5458
- /**
5459
- * @nullable
5460
- */
5461
- export type WealthboxGetContact200BirthDate = unknown | null;
5462
- /**
5463
- * @nullable
5464
- */
5465
- export type WealthboxGetContact200BackgroundInformation = unknown | null;
5466
- /**
5467
- * @nullable
5468
- */
5469
- export type WealthboxGetContact200Attorney = unknown | null;
5470
- /**
5471
- * @nullable
5472
- */
5473
- export type WealthboxGetContact200Assistant = unknown | null;
5474
- /**
5475
- * @nullable
5476
- */
5477
- export type WealthboxGetContact200AssignedTo = unknown | null;
5478
- /**
5479
- * @nullable
5480
- */
5481
- export type WealthboxGetContact200Assets = unknown | null;
5482
- /**
5483
- * @nullable
5484
- */
5485
- export type WealthboxGetContact200Anniversary = unknown | null;
5486
- /**
5487
- * @nullable
5488
- */
5489
- export type WealthboxGetContact200AdjustedGrossIncome = unknown | null;
5490
- export type WealthboxGetContact200 = {
5491
- /** @nullable */
5492
- adjusted_gross_income?: WealthboxGetContact200AdjustedGrossIncome;
5493
- /** @nullable */
5494
- anniversary?: WealthboxGetContact200Anniversary;
5343
+ anniversary?: WealthboxGetContact200Anniversary;
5495
5344
  /** @nullable */
5496
5345
  assets?: WealthboxGetContact200Assets;
5497
5346
  /** @nullable */
@@ -5638,6 +5487,151 @@ export type WealthboxGetContact200 = {
5638
5487
  websites?: WealthboxGetContact200WebsitesItem[];
5639
5488
  [key: string]: unknown | null;
5640
5489
  };
5490
+ /**
5491
+ * @nullable
5492
+ */
5493
+ export type WealthboxGetContact200HouseholdTitle = unknown | null;
5494
+ /**
5495
+ * @nullable
5496
+ */
5497
+ export type WealthboxGetContact200HouseholdName = unknown | null;
5498
+ export type WealthboxGetContact200HouseholdMembersItem = {
5499
+ [key: string]: unknown | null;
5500
+ };
5501
+ /**
5502
+ * @nullable
5503
+ */
5504
+ export type WealthboxGetContact200HouseholdId = unknown | null;
5505
+ export type WealthboxGetContact200Household = {
5506
+ /** @nullable */
5507
+ id?: WealthboxGetContact200HouseholdId;
5508
+ members?: WealthboxGetContact200HouseholdMembersItem[];
5509
+ /** @nullable */
5510
+ name?: WealthboxGetContact200HouseholdName;
5511
+ /** @nullable */
5512
+ title?: WealthboxGetContact200HouseholdTitle;
5513
+ [key: string]: unknown | null;
5514
+ };
5515
+ /**
5516
+ * @nullable
5517
+ */
5518
+ export type WealthboxGetContact200GrossAnnualIncome = unknown | null;
5519
+ /**
5520
+ * @nullable
5521
+ */
5522
+ export type WealthboxGetContact200GreenCardNumber = unknown | null;
5523
+ /**
5524
+ * @nullable
5525
+ */
5526
+ export type WealthboxGetContact200Gender = unknown | null;
5527
+ /**
5528
+ * @nullable
5529
+ */
5530
+ export type WealthboxGetContact200FirstName = unknown | null;
5531
+ /**
5532
+ * @nullable
5533
+ */
5534
+ export type WealthboxGetContact200FamilyOfficer = unknown | null;
5535
+ /**
5536
+ * @nullable
5537
+ */
5538
+ export type WealthboxGetContact200ExternalUniqueId = unknown | null;
5539
+ /**
5540
+ * @nullable
5541
+ */
5542
+ export type WealthboxGetContact200EstimatedTaxes = unknown | null;
5543
+ export type WealthboxGetContact200EmailAddressesItem = {
5544
+ [key: string]: unknown | null;
5545
+ };
5546
+ export type WealthboxGetContact200DriversLicense = {
5547
+ [key: string]: unknown | null;
5548
+ };
5549
+ /**
5550
+ * @nullable
5551
+ */
5552
+ export type WealthboxGetContact200Doctor = unknown | null;
5553
+ /**
5554
+ * @nullable
5555
+ */
5556
+ export type WealthboxGetContact200DateOfDeath = unknown | null;
5557
+ export type WealthboxGetContact200CustomFieldsItem = {
5558
+ [key: string]: unknown | null;
5559
+ };
5560
+ /**
5561
+ * @nullable
5562
+ */
5563
+ export type WealthboxGetContact200Creator = unknown | null;
5564
+ /**
5565
+ * @nullable
5566
+ */
5567
+ export type WealthboxGetContact200CreatedAt = unknown | null;
5568
+ /**
5569
+ * @nullable
5570
+ */
5571
+ export type WealthboxGetContact200Cpa = unknown | null;
5572
+ /**
5573
+ * @nullable
5574
+ */
5575
+ export type WealthboxGetContact200ContactType = unknown | null;
5576
+ /**
5577
+ * @nullable
5578
+ */
5579
+ export type WealthboxGetContact200ContactSource = unknown | null;
5580
+ export type WealthboxGetContact200ContactRolesItem = {
5581
+ [key: string]: unknown | null;
5582
+ };
5583
+ /**
5584
+ * @nullable
5585
+ */
5586
+ export type WealthboxGetContact200ConfirmedByTaxReturn = unknown | null;
5587
+ /**
5588
+ * @nullable
5589
+ */
5590
+ export type WealthboxGetContact200CompanyName = unknown | null;
5591
+ /**
5592
+ * @nullable
5593
+ */
5594
+ export type WealthboxGetContact200ClientSince = unknown | null;
5595
+ /**
5596
+ * @nullable
5597
+ */
5598
+ export type WealthboxGetContact200BusinessManager = unknown | null;
5599
+ /**
5600
+ * @nullable
5601
+ */
5602
+ export type WealthboxGetContact200BirthPlace = unknown | null;
5603
+ /**
5604
+ * @nullable
5605
+ */
5606
+ export type WealthboxGetContact200BirthDate = unknown | null;
5607
+ /**
5608
+ * @nullable
5609
+ */
5610
+ export type WealthboxGetContact200BackgroundInformation = unknown | null;
5611
+ /**
5612
+ * @nullable
5613
+ */
5614
+ export type WealthboxGetContact200Attorney = unknown | null;
5615
+ /**
5616
+ * @nullable
5617
+ */
5618
+ export type WealthboxGetContact200Assistant = unknown | null;
5619
+ /**
5620
+ * @nullable
5621
+ */
5622
+ export type WealthboxGetContact200AssignedTo = unknown | null;
5623
+ /**
5624
+ * @nullable
5625
+ */
5626
+ export type WealthboxGetContact200Assets = unknown | null;
5627
+ /**
5628
+ * @nullable
5629
+ */
5630
+ export type WealthboxGetContact200Anniversary = unknown | null;
5631
+ /**
5632
+ * @nullable
5633
+ */
5634
+ export type WealthboxGetContact200AdjustedGrossIncome = unknown | null;
5641
5635
  export type WealthboxGetContactBody = {
5642
5636
  /**
5643
5637
  * The id of the contact to be retrieved
@@ -6164,14 +6158,28 @@ export type WealthboxOauthCallbackParams = {
6164
6158
  state?: string;
6165
6159
  error?: string;
6166
6160
  };
6161
+ export type WealthboxSetUserCredentials200 = {
6162
+ userId: string;
6163
+ };
6164
+ export type WealthboxSetUserCredentialsBody = {
6165
+ /** @minLength 1 */
6166
+ clientId: string;
6167
+ /** @minLength 1 */
6168
+ clientSecret: string;
6169
+ userId?: string;
6170
+ };
6167
6171
  export type WealthboxOauthInitiate200 = {
6168
6172
  authorizationUrl: string;
6169
6173
  };
6170
6174
  export type WealthboxOauthInitiateBody = {
6171
6175
  clientId?: string;
6172
6176
  clientSecret?: string;
6173
- originalRedirectUrl: string;
6177
+ /** @minLength 1 */
6178
+ externalUserId?: string;
6179
+ originalRedirectUrl?: string;
6174
6180
  scope?: string[];
6181
+ scopes?: string[];
6182
+ userId?: string;
6175
6183
  };
6176
6184
  export type TwilioWhatsappCreateMessage500 = {
6177
6185
  errorCode?: string;
@@ -7345,12 +7353,11 @@ export type RedtailUpdateContactAccount200AnyOfNine = {
7345
7353
  success?: boolean;
7346
7354
  [key: string]: unknown | null;
7347
7355
  };
7348
- export type RedtailUpdateContactAccount200 = RedtailUpdateContactAccount200AnyOf | RedtailUpdateContactAccount200AnyOfNine;
7349
- export type RedtailUpdateContactAccount200AnyOfAccount = RedtailUpdateContactAccount200AnyOfAccountAnyOf | RedtailUpdateContactAccount200AnyOfAccountAnyOfFourItem[];
7350
7356
  export type RedtailUpdateContactAccount200AnyOf = {
7351
7357
  account: RedtailUpdateContactAccount200AnyOfAccount;
7352
7358
  [key: string]: unknown | null;
7353
7359
  };
7360
+ export type RedtailUpdateContactAccount200 = RedtailUpdateContactAccount200AnyOf | RedtailUpdateContactAccount200AnyOfNine;
7354
7361
  /**
7355
7362
  * @nullable
7356
7363
  */
@@ -7384,6 +7391,7 @@ export type RedtailUpdateContactAccount200AnyOfAccountAnyOfFourItem = {
7384
7391
  updated_at?: string | null;
7385
7392
  [key: string]: unknown | null;
7386
7393
  };
7394
+ export type RedtailUpdateContactAccount200AnyOfAccount = RedtailUpdateContactAccount200AnyOfAccountAnyOf | RedtailUpdateContactAccount200AnyOfAccountAnyOfFourItem[];
7387
7395
  /**
7388
7396
  * @nullable
7389
7397
  */
@@ -7449,7 +7457,17 @@ export type RedtailCreateContactAccount200AnyOfNine = {
7449
7457
  success?: boolean;
7450
7458
  [key: string]: unknown | null;
7451
7459
  };
7460
+ export type RedtailCreateContactAccount200AnyOfAccount = RedtailCreateContactAccount200AnyOfAccountAnyOf | RedtailCreateContactAccount200AnyOfAccountAnyOfFourItem[];
7461
+ export type RedtailCreateContactAccount200AnyOf = {
7462
+ account: RedtailCreateContactAccount200AnyOfAccount;
7463
+ [key: string]: unknown | null;
7464
+ };
7452
7465
  export type RedtailCreateContactAccount200 = RedtailCreateContactAccount200AnyOf | RedtailCreateContactAccount200AnyOfNine;
7466
+ /**
7467
+ * @nullable
7468
+ */
7469
+ export type RedtailCreateContactAccount200AnyOfAccountAnyOfFourItemStatusAnyOf = unknown | null;
7470
+ export type RedtailCreateContactAccount200AnyOfAccountAnyOfFourItemStatus = string | number | RedtailCreateContactAccount200AnyOfAccountAnyOfFourItemStatusAnyOf;
7453
7471
  export type RedtailCreateContactAccount200AnyOfAccountAnyOfFourItem = {
7454
7472
  /** @nullable */
7455
7473
  account_type?: string | null;
@@ -7478,16 +7496,6 @@ export type RedtailCreateContactAccount200AnyOfAccountAnyOfFourItem = {
7478
7496
  updated_at?: string | null;
7479
7497
  [key: string]: unknown | null;
7480
7498
  };
7481
- export type RedtailCreateContactAccount200AnyOfAccount = RedtailCreateContactAccount200AnyOfAccountAnyOf | RedtailCreateContactAccount200AnyOfAccountAnyOfFourItem[];
7482
- export type RedtailCreateContactAccount200AnyOf = {
7483
- account: RedtailCreateContactAccount200AnyOfAccount;
7484
- [key: string]: unknown | null;
7485
- };
7486
- /**
7487
- * @nullable
7488
- */
7489
- export type RedtailCreateContactAccount200AnyOfAccountAnyOfFourItemStatusAnyOf = unknown | null;
7490
- export type RedtailCreateContactAccount200AnyOfAccountAnyOfFourItemStatus = string | number | RedtailCreateContactAccount200AnyOfAccountAnyOfFourItemStatusAnyOf;
7491
7499
  /**
7492
7500
  * @nullable
7493
7501
  */
@@ -7539,6 +7547,7 @@ export type RedtailCreateContactAccountBody = {
7539
7547
  userId: string;
7540
7548
  [key: string]: unknown | null;
7541
7549
  };
7550
+ export type RedtailGetContactAccount200Account = RedtailGetContactAccount200AccountAnyOf | RedtailGetContactAccount200AccountAnyOfFourItem[];
7542
7551
  export type RedtailGetContactAccount200 = {
7543
7552
  account: RedtailGetContactAccount200Account;
7544
7553
  [key: string]: unknown | null;
@@ -7609,7 +7618,6 @@ export type RedtailGetContactAccount200AccountAnyOf = {
7609
7618
  updated_at?: string | null;
7610
7619
  [key: string]: unknown | null;
7611
7620
  };
7612
- export type RedtailGetContactAccount200Account = RedtailGetContactAccount200AccountAnyOf | RedtailGetContactAccount200AccountAnyOfFourItem[];
7613
7621
  /**
7614
7622
  * Get or delete a contact account: contact id, account id, and integration user (required by hub handlers).
7615
7623
  */
@@ -7664,7 +7672,6 @@ export type RedtailCreateContactNote200AnyOfThree = {
7664
7672
  success?: boolean;
7665
7673
  [key: string]: unknown | null;
7666
7674
  };
7667
- export type RedtailCreateContactNote200 = RedtailCreateContactNote200AnyOf | RedtailCreateContactNote200AnyOfThree;
7668
7675
  export type RedtailCreateContactNote200AnyOfNote = {
7669
7676
  /** @nullable */
7670
7677
  added_by?: number | null;
@@ -7695,6 +7702,7 @@ export type RedtailCreateContactNote200AnyOf = {
7695
7702
  note: RedtailCreateContactNote200AnyOfNote;
7696
7703
  [key: string]: unknown | null;
7697
7704
  };
7705
+ export type RedtailCreateContactNote200 = RedtailCreateContactNote200AnyOf | RedtailCreateContactNote200AnyOfThree;
7698
7706
  /**
7699
7707
  * Create a contact note. Extra Redtail fields are accepted.
7700
7708
  */
@@ -9160,7 +9168,6 @@ export type RedtailCreateActivityNote200AnyOfFive = {
9160
9168
  success?: boolean;
9161
9169
  [key: string]: unknown | null;
9162
9170
  };
9163
- export type RedtailCreateActivityNote200 = RedtailCreateActivityNote200AnyOf | RedtailCreateActivityNote200AnyOfThree | RedtailCreateActivityNote200AnyOfFive;
9164
9171
  export type RedtailCreateActivityNote200AnyOfThreeActivityNote = {
9165
9172
  /** @nullable */
9166
9173
  added_by?: number | null;
@@ -9221,6 +9228,7 @@ export type RedtailCreateActivityNote200AnyOf = {
9221
9228
  note: RedtailCreateActivityNote200AnyOfNote;
9222
9229
  [key: string]: unknown | null;
9223
9230
  };
9231
+ export type RedtailCreateActivityNote200 = RedtailCreateActivityNote200AnyOf | RedtailCreateActivityNote200AnyOfThree | RedtailCreateActivityNote200AnyOfFive;
9224
9232
  /**
9225
9233
  * Create a note on an activity. Hub strips `userId` and `activityId` before calling Redtail.
9226
9234
  */
@@ -9258,10 +9266,6 @@ export type RedtailDeleteActivityBody = {
9258
9266
  /** Integration user id for Redtail requests. */
9259
9267
  userId: string;
9260
9268
  };
9261
- export type RedtailUpdateActivity200 = {
9262
- activity: RedtailUpdateActivity200Activity;
9263
- [key: string]: unknown | null;
9264
- };
9265
9269
  /**
9266
9270
  * @nullable
9267
9271
  */
@@ -9338,6 +9342,10 @@ export type RedtailUpdateActivity200Activity = {
9338
9342
  updated_at?: string | null;
9339
9343
  [key: string]: unknown | null;
9340
9344
  };
9345
+ export type RedtailUpdateActivity200 = {
9346
+ activity: RedtailUpdateActivity200Activity;
9347
+ [key: string]: unknown | null;
9348
+ };
9341
9349
  /**
9342
9350
  * Create an activity. `userId` is for the integration hub only and is not sent to Redtail. Additional Redtail fields are accepted.
9343
9351
  */
@@ -9673,19 +9681,12 @@ export type RedtailGetActivities200ActivitiesItem = {
9673
9681
  updated_at?: string | null;
9674
9682
  [key: string]: unknown | null;
9675
9683
  };
9676
- export type RedtailGetActivitiesBodyAllOfTwo = {
9684
+ export type RedtailGetActivitiesBody = {
9677
9685
  /**
9678
9686
  * End date for activities query
9679
9687
  * @minLength 1
9680
9688
  */
9681
9689
  end_date: string;
9682
- /**
9683
- * Start date for activities query
9684
- * @minLength 1
9685
- */
9686
- start_date: string;
9687
- };
9688
- export type RedtailGetActivitiesBodyAllOf = {
9689
9690
  /**
9690
9691
  * Whether to include family member data for the families endpoint
9691
9692
  * @nullable
@@ -9696,11 +9697,14 @@ export type RedtailGetActivitiesBodyAllOf = {
9696
9697
  * @nullable
9697
9698
  */
9698
9699
  show_deleted?: boolean | null;
9700
+ /**
9701
+ * Start date for activities query
9702
+ * @minLength 1
9703
+ */
9704
+ start_date: string;
9699
9705
  /** Integration user id for Redtail requests. */
9700
9706
  userId: string;
9701
- [key: string]: unknown | null;
9702
9707
  };
9703
- export type RedtailGetActivitiesBody = RedtailGetActivitiesBodyAllOf & RedtailGetActivitiesBodyAllOfTwo;
9704
9708
  export type RedtailGetAccountDetails200AccountDetails = {
9705
9709
  account_id?: number;
9706
9710
  /** @nullable */
@@ -9804,11 +9808,6 @@ export type RedtailGetContactAccounts200Meta = {
9804
9808
  total_records?: number;
9805
9809
  [key: string]: unknown | null;
9806
9810
  };
9807
- export type RedtailGetContactAccounts200 = {
9808
- accounts?: RedtailGetContactAccounts200AccountsItem[];
9809
- meta?: RedtailGetContactAccounts200Meta;
9810
- [key: string]: unknown | null;
9811
- };
9812
9811
  /**
9813
9812
  * @nullable
9814
9813
  */
@@ -9842,6 +9841,11 @@ export type RedtailGetContactAccounts200AccountsItem = {
9842
9841
  updated_at?: string | null;
9843
9842
  [key: string]: unknown | null;
9844
9843
  };
9844
+ export type RedtailGetContactAccounts200 = {
9845
+ accounts?: RedtailGetContactAccounts200AccountsItem[];
9846
+ meta?: RedtailGetContactAccounts200Meta;
9847
+ [key: string]: unknown | null;
9848
+ };
9845
9849
  export type RedtailGetContactAccountsBody = {
9846
9850
  /**
9847
9851
  * Redtail contact identifier
@@ -10280,56 +10284,9 @@ export type RedtailGetContactsBody = {
10280
10284
  userId: string;
10281
10285
  [key: string]: unknown | null;
10282
10286
  };
10283
- export type RedtailGetContact200 = {
10284
- contact?: RedtailGetContact200Contact;
10285
- [key: string]: unknown | null;
10286
- };
10287
10287
  export type RedtailGetContact200ContactUrlsItem = {
10288
10288
  [key: string]: unknown | null;
10289
10289
  };
10290
- export type RedtailGetContact200ContactPhonesItem = {
10291
- [key: string]: unknown | null;
10292
- };
10293
- export type RedtailGetContact200ContactFamilyMembersItem = {
10294
- contact_id?: number;
10295
- /** @nullable */
10296
- created_at?: string | null;
10297
- /** @nullable */
10298
- deleted?: boolean | null;
10299
- family_id?: number;
10300
- /** @nullable */
10301
- hoh?: boolean | null;
10302
- id?: number;
10303
- /** @nullable */
10304
- relationship?: number | null;
10305
- /** @nullable */
10306
- relationship_name?: string | null;
10307
- /** @nullable */
10308
- updated_at?: string | null;
10309
- [key: string]: unknown | null;
10310
- };
10311
- /**
10312
- * @nullable
10313
- */
10314
- export type RedtailGetContact200ContactFamily = {
10315
- /** @nullable */
10316
- created_at?: string | null;
10317
- /** @nullable */
10318
- deleted?: boolean | null;
10319
- id?: number;
10320
- members?: RedtailGetContact200ContactFamilyMembersItem[];
10321
- /** @nullable */
10322
- name?: string | null;
10323
- /** @nullable */
10324
- updated_at?: string | null;
10325
- [key: string]: unknown | null;
10326
- } | null;
10327
- export type RedtailGetContact200ContactEmailsItem = {
10328
- [key: string]: unknown | null;
10329
- };
10330
- export type RedtailGetContact200ContactAddressesItem = {
10331
- [key: string]: unknown | null;
10332
- };
10333
10290
  export type RedtailGetContact200Contact = {
10334
10291
  /** @nullable */
10335
10292
  added_by?: number | null;
@@ -10422,6 +10379,53 @@ export type RedtailGetContact200Contact = {
10422
10379
  writing_advisor_id?: number | null;
10423
10380
  [key: string]: unknown | null;
10424
10381
  };
10382
+ export type RedtailGetContact200 = {
10383
+ contact?: RedtailGetContact200Contact;
10384
+ [key: string]: unknown | null;
10385
+ };
10386
+ export type RedtailGetContact200ContactPhonesItem = {
10387
+ [key: string]: unknown | null;
10388
+ };
10389
+ export type RedtailGetContact200ContactFamilyMembersItem = {
10390
+ contact_id?: number;
10391
+ /** @nullable */
10392
+ created_at?: string | null;
10393
+ /** @nullable */
10394
+ deleted?: boolean | null;
10395
+ family_id?: number;
10396
+ /** @nullable */
10397
+ hoh?: boolean | null;
10398
+ id?: number;
10399
+ /** @nullable */
10400
+ relationship?: number | null;
10401
+ /** @nullable */
10402
+ relationship_name?: string | null;
10403
+ /** @nullable */
10404
+ updated_at?: string | null;
10405
+ [key: string]: unknown | null;
10406
+ };
10407
+ /**
10408
+ * @nullable
10409
+ */
10410
+ export type RedtailGetContact200ContactFamily = {
10411
+ /** @nullable */
10412
+ created_at?: string | null;
10413
+ /** @nullable */
10414
+ deleted?: boolean | null;
10415
+ id?: number;
10416
+ members?: RedtailGetContact200ContactFamilyMembersItem[];
10417
+ /** @nullable */
10418
+ name?: string | null;
10419
+ /** @nullable */
10420
+ updated_at?: string | null;
10421
+ [key: string]: unknown | null;
10422
+ } | null;
10423
+ export type RedtailGetContact200ContactEmailsItem = {
10424
+ [key: string]: unknown | null;
10425
+ };
10426
+ export type RedtailGetContact200ContactAddressesItem = {
10427
+ [key: string]: unknown | null;
10428
+ };
10425
10429
  export type RedtailGetContactBody = {
10426
10430
  /**
10427
10431
  * Redtail contact identifier
@@ -10437,6 +10441,11 @@ export type RedtailGetFamilies200Meta = {
10437
10441
  total_records?: number;
10438
10442
  [key: string]: unknown | null;
10439
10443
  };
10444
+ export type RedtailGetFamilies200 = {
10445
+ contact_families?: RedtailGetFamilies200ContactFamiliesItem[];
10446
+ meta?: RedtailGetFamilies200Meta;
10447
+ [key: string]: unknown | null;
10448
+ };
10440
10449
  export type RedtailGetFamilies200ContactFamiliesItemMembersItem = {
10441
10450
  contact_id?: number;
10442
10451
  /** @nullable */
@@ -10468,11 +10477,6 @@ export type RedtailGetFamilies200ContactFamiliesItem = {
10468
10477
  updated_at?: string | null;
10469
10478
  [key: string]: unknown | null;
10470
10479
  };
10471
- export type RedtailGetFamilies200 = {
10472
- contact_families?: RedtailGetFamilies200ContactFamiliesItem[];
10473
- meta?: RedtailGetFamilies200Meta;
10474
- [key: string]: unknown | null;
10475
- };
10476
10480
  export type RedtailGetFamiliesBody = {
10477
10481
  /**
10478
10482
  * Whether to include family member data for the families endpoint
@@ -10496,6 +10500,11 @@ export type RedtailSetUserCredentials200 = {
10496
10500
  userId: string;
10497
10501
  };
10498
10502
  export type RedtailSetUserCredentialsBody = {
10503
+ /**
10504
+ * Redtail partner API key for user authentication
10505
+ * @minLength 1
10506
+ */
10507
+ partnerApiKey: string;
10499
10508
  /**
10500
10509
  * Redtail password for user authentication
10501
10510
  * @minLength 1
@@ -10509,182 +10518,1247 @@ export type RedtailSetUserCredentialsBody = {
10509
10518
  */
10510
10519
  username: string;
10511
10520
  };
10512
- export type OpenaiCreateStream500 = {
10513
- error?: string;
10521
+ export type PlaidGetAssetReportPdf200 = {
10522
+ /** PDF bytes of the Asset Report, base64-encoded (JSON-safe). */
10523
+ pdf_base64: string;
10514
10524
  };
10515
- /**
10516
- * Schema for structured output
10517
- * @nullable
10518
- */
10519
- export type OpenaiCreateStreamBodyOutputSchema = unknown | null;
10520
- export type OpenaiCreateStreamBodyOptions = {
10525
+ export type PlaidGetAssetReportPdfBody = {
10526
+ /** @minLength 1 */
10527
+ asset_report_token: string;
10528
+ /** Required when the Plaid integration config type is PerUser. */
10529
+ userId?: string;
10530
+ };
10531
+ export type PlaidRefreshAssetReport200 = {
10532
+ asset_report_id: string;
10533
+ asset_report_token: string;
10534
+ request_id: string;
10535
+ [key: string]: unknown | null;
10536
+ };
10537
+ export type PlaidRefreshAssetReportBodyOptions = {
10538
+ [key: string]: unknown | null;
10539
+ };
10540
+ export type PlaidRefreshAssetReportBody = {
10541
+ /** @minLength 1 */
10542
+ asset_report_token: string;
10521
10543
  /**
10522
- * Maximum tokens to generate
10523
10544
  * @minimum 0
10524
10545
  * @exclusiveMinimum
10546
+ * @nullable
10525
10547
  */
10526
- maxTokens?: number;
10527
- /**
10528
- * Sampling temperature (0-2)
10529
- * @minimum 0
10530
- * @maximum 2
10531
- */
10532
- temperature?: number;
10548
+ days_requested?: number | null;
10549
+ options?: PlaidRefreshAssetReportBodyOptions;
10550
+ /** Required when the Plaid integration config type is PerUser. */
10551
+ userId?: string;
10552
+ };
10553
+ /**
10554
+ * @nullable
10555
+ */
10556
+ export type PlaidGetAssetReport200WarningsItem = unknown | null;
10557
+ export type PlaidGetAssetReport200Report = {
10558
+ [key: string]: unknown | null;
10559
+ };
10560
+ export type PlaidGetAssetReport200 = {
10561
+ report: PlaidGetAssetReport200Report;
10562
+ request_id: string;
10563
+ warnings: PlaidGetAssetReport200WarningsItem[];
10564
+ [key: string]: unknown | null;
10565
+ };
10566
+ export type PlaidGetAssetReportBody = {
10567
+ /** @minLength 1 */
10568
+ asset_report_token: string;
10569
+ fast_report?: boolean;
10570
+ include_insights?: boolean;
10571
+ /** Required when the Plaid integration config type is PerUser. */
10572
+ userId?: string;
10573
+ };
10574
+ export type PlaidCreateAssetReport200 = {
10575
+ asset_report_id: string;
10576
+ asset_report_token: string;
10577
+ request_id: string;
10578
+ [key: string]: unknown | null;
10579
+ };
10580
+ /**
10581
+ * Forwarded to Plaid `asset_report/create` options (webhook, client_report_id, add_ons, etc.).
10582
+ */
10583
+ export type PlaidCreateAssetReportBodyOptions = {
10584
+ [key: string]: unknown | null;
10585
+ };
10586
+ export type PlaidCreateAssetReportBody = {
10533
10587
  /**
10534
- * Top-p sampling parameter
10588
+ * Defaults to 731 per typical LOS defaults when omitted.
10535
10589
  * @minimum 0
10536
- * @maximum 1
10590
+ * @exclusiveMinimum
10537
10591
  */
10538
- topP?: number;
10592
+ days_requested?: number;
10593
+ /** Forwarded to Plaid `asset_report/create` options (webhook, client_report_id, add_ons, etc.). */
10594
+ options?: PlaidCreateAssetReportBodyOptions;
10595
+ userId: string;
10596
+ };
10597
+ export type PlaidGetLiabilities200Liabilities = {
10598
+ [key: string]: unknown | null;
10599
+ };
10600
+ export type PlaidGetLiabilities200Item = {
10601
+ [key: string]: unknown | null;
10539
10602
  };
10540
10603
  /**
10541
- * Role of the message sender
10604
+ * @nullable
10542
10605
  */
10543
- export type OpenaiCreateStreamBodyMessagesItemRole = typeof OpenaiCreateStreamBodyMessagesItemRole[keyof typeof OpenaiCreateStreamBodyMessagesItemRole];
10544
- export declare const OpenaiCreateStreamBodyMessagesItemRole: {
10545
- readonly user: "user";
10546
- readonly assistant: "assistant";
10547
- readonly system: "system";
10606
+ export type PlaidGetLiabilities200AccountsItem = unknown | null;
10607
+ export type PlaidGetLiabilities200 = {
10608
+ accounts: PlaidGetLiabilities200AccountsItem[];
10609
+ item: PlaidGetLiabilities200Item;
10610
+ liabilities: PlaidGetLiabilities200Liabilities;
10611
+ request_id: string;
10612
+ [key: string]: unknown | null;
10548
10613
  };
10549
- export type OpenaiCreateStreamBodyMessagesItemPartsItem = {
10550
- /** Filename for file parts */
10551
- filename?: string;
10552
- /** MIME type of the media */
10553
- mediaType?: string;
10554
- /** Text content */
10555
- text?: string;
10556
- /** Type of message part (text, file, etc.) */
10557
- type: string;
10558
- /** URL for file or media */
10559
- url?: string;
10614
+ export type PlaidGetLiabilitiesBody = {
10615
+ account_ids?: string[];
10616
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10617
+ userId: string;
10560
10618
  };
10561
- export type OpenaiCreateStreamBodyMessagesItem = {
10562
- /** Content of the message */
10563
- content?: string;
10564
- /** Multi-part message content */
10565
- parts?: OpenaiCreateStreamBodyMessagesItemPartsItem[];
10566
- /** Role of the message sender */
10567
- role: OpenaiCreateStreamBodyMessagesItemRole;
10619
+ /**
10620
+ * @nullable
10621
+ */
10622
+ export type PlaidGetInvestmentTransactions200SecuritiesItem = unknown | null;
10623
+ export type PlaidGetInvestmentTransactions200Item = {
10624
+ [key: string]: unknown | null;
10568
10625
  };
10569
- export type OpenaiCreateStreamBody = {
10570
- /**
10571
- * Array of chat messages
10572
- * @minItems 1
10573
- */
10574
- messages: OpenaiCreateStreamBodyMessagesItem[];
10575
- /** Specific model to use (defaults to resolved OpenAI model) */
10576
- model?: string;
10577
- options?: OpenaiCreateStreamBodyOptions;
10578
- /**
10579
- * Schema for structured output
10580
- * @nullable
10581
- */
10582
- outputSchema?: OpenaiCreateStreamBodyOutputSchema;
10583
- /** Required when the OpenAI integration config type is PerUser. */
10584
- userId?: string;
10626
+ /**
10627
+ * @nullable
10628
+ */
10629
+ export type PlaidGetInvestmentTransactions200InvestmentTransactionsItem = unknown | null;
10630
+ /**
10631
+ * @nullable
10632
+ */
10633
+ export type PlaidGetInvestmentTransactions200AccountsItem = unknown | null;
10634
+ export type PlaidGetInvestmentTransactions200 = {
10635
+ accounts: PlaidGetInvestmentTransactions200AccountsItem[];
10636
+ investment_transactions: PlaidGetInvestmentTransactions200InvestmentTransactionsItem[];
10637
+ item: PlaidGetInvestmentTransactions200Item;
10638
+ request_id: string;
10639
+ securities: PlaidGetInvestmentTransactions200SecuritiesItem[];
10640
+ total_investment_transactions: number;
10641
+ [key: string]: unknown | null;
10642
+ };
10643
+ export type PlaidGetInvestmentTransactionsBody = {
10644
+ account_ids?: string[];
10645
+ count?: number;
10646
+ end_date: string;
10647
+ offset?: number;
10648
+ start_date: string;
10649
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10650
+ userId: string;
10651
+ };
10652
+ /**
10653
+ * @nullable
10654
+ */
10655
+ export type PlaidGetInvestmentHoldings200SecuritiesItem = unknown | null;
10656
+ export type PlaidGetInvestmentHoldings200Item = {
10657
+ [key: string]: unknown | null;
10658
+ };
10659
+ /**
10660
+ * @nullable
10661
+ */
10662
+ export type PlaidGetInvestmentHoldings200HoldingsItem = unknown | null;
10663
+ /**
10664
+ * @nullable
10665
+ */
10666
+ export type PlaidGetInvestmentHoldings200AccountsItem = unknown | null;
10667
+ export type PlaidGetInvestmentHoldings200 = {
10668
+ accounts: PlaidGetInvestmentHoldings200AccountsItem[];
10669
+ holdings: PlaidGetInvestmentHoldings200HoldingsItem[];
10670
+ item: PlaidGetInvestmentHoldings200Item;
10671
+ request_id: string;
10672
+ securities: PlaidGetInvestmentHoldings200SecuritiesItem[];
10673
+ [key: string]: unknown | null;
10674
+ };
10675
+ export type PlaidGetInvestmentHoldingsBody = {
10676
+ account_ids?: string[];
10677
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10678
+ userId: string;
10679
+ };
10680
+ export type PlaidGetInstitutionById200Institution = {
10681
+ [key: string]: unknown | null;
10682
+ };
10683
+ export type PlaidGetInstitutionById200 = {
10684
+ institution: PlaidGetInstitutionById200Institution;
10685
+ request_id: string;
10686
+ [key: string]: unknown | null;
10687
+ };
10688
+ export type PlaidGetInstitutionByIdBody = {
10689
+ /**
10690
+ * ISO-3166-1 alpha-2 codes, e.g. ["US"]
10691
+ * @minItems 1
10692
+ */
10693
+ country_codes: string[];
10694
+ /** @minLength 1 */
10695
+ institution_id: string;
10696
+ /** Required when the Plaid integration config type is PerUser. */
10697
+ userId?: string;
10698
+ };
10699
+ export type PlaidRemoveItem200 = {
10700
+ request_id: string;
10701
+ [key: string]: unknown | null;
10702
+ };
10703
+ export type PlaidRemoveItemBody = {
10704
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10705
+ userId: string;
10706
+ };
10707
+ export type PlaidGetItem200Item = {
10708
+ [key: string]: unknown | null;
10709
+ };
10710
+ export type PlaidGetItem200 = {
10711
+ item: PlaidGetItem200Item;
10712
+ request_id: string;
10713
+ [key: string]: unknown | null;
10714
+ };
10715
+ export type PlaidGetItemBody = {
10716
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10717
+ userId: string;
10718
+ };
10719
+ export type PlaidGetIdentity200Item = {
10720
+ [key: string]: unknown | null;
10721
+ };
10722
+ /**
10723
+ * @nullable
10724
+ */
10725
+ export type PlaidGetIdentity200AccountsItem = unknown | null;
10726
+ export type PlaidGetIdentity200 = {
10727
+ accounts: PlaidGetIdentity200AccountsItem[];
10728
+ item: PlaidGetIdentity200Item;
10729
+ request_id: string;
10730
+ [key: string]: unknown | null;
10731
+ };
10732
+ export type PlaidGetIdentityBody = {
10733
+ account_ids?: string[];
10734
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10735
+ userId: string;
10736
+ };
10737
+ /**
10738
+ * @nullable
10739
+ */
10740
+ export type PlaidGetTransactions200TransactionsItem = unknown | null;
10741
+ export type PlaidGetTransactions200Item = {
10742
+ [key: string]: unknown | null;
10743
+ };
10744
+ /**
10745
+ * @nullable
10746
+ */
10747
+ export type PlaidGetTransactions200AccountsItem = unknown | null;
10748
+ export type PlaidGetTransactions200 = {
10749
+ accounts: PlaidGetTransactions200AccountsItem[];
10750
+ item: PlaidGetTransactions200Item;
10751
+ request_id: string;
10752
+ total_transactions: number;
10753
+ transactions: PlaidGetTransactions200TransactionsItem[];
10754
+ [key: string]: unknown | null;
10755
+ };
10756
+ export type PlaidGetTransactionsBody = {
10757
+ account_ids?: string[];
10758
+ count?: number;
10759
+ end_date: string;
10760
+ offset?: number;
10761
+ start_date: string;
10762
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10763
+ userId: string;
10764
+ };
10765
+ /**
10766
+ * @nullable
10767
+ */
10768
+ export type PlaidGetRecurringTransactions200OutflowStreamsItem = unknown | null;
10769
+ /**
10770
+ * @nullable
10771
+ */
10772
+ export type PlaidGetRecurringTransactions200InflowStreamsItem = unknown | null;
10773
+ export type PlaidGetRecurringTransactions200 = {
10774
+ inflow_streams: PlaidGetRecurringTransactions200InflowStreamsItem[];
10775
+ outflow_streams: PlaidGetRecurringTransactions200OutflowStreamsItem[];
10776
+ request_id: string;
10777
+ updated_datetime: string;
10778
+ [key: string]: unknown | null;
10779
+ };
10780
+ export type PlaidGetRecurringTransactionsBody = {
10781
+ account_ids?: string[];
10782
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10783
+ userId: string;
10784
+ };
10785
+ /**
10786
+ * @nullable
10787
+ */
10788
+ export type PlaidTransactionsSync200RemovedItem = unknown | null;
10789
+ /**
10790
+ * @nullable
10791
+ */
10792
+ export type PlaidTransactionsSync200ModifiedItem = unknown | null;
10793
+ /**
10794
+ * @nullable
10795
+ */
10796
+ export type PlaidTransactionsSync200AddedItem = unknown | null;
10797
+ /**
10798
+ * @nullable
10799
+ */
10800
+ export type PlaidTransactionsSync200AccountsItem = unknown | null;
10801
+ export type PlaidTransactionsSync200 = {
10802
+ accounts: PlaidTransactionsSync200AccountsItem[];
10803
+ added: PlaidTransactionsSync200AddedItem[];
10804
+ has_more: boolean;
10805
+ modified: PlaidTransactionsSync200ModifiedItem[];
10806
+ next_cursor: string;
10807
+ removed: PlaidTransactionsSync200RemovedItem[];
10808
+ request_id: string;
10809
+ transactions_update_status: string;
10810
+ [key: string]: unknown | null;
10811
+ };
10812
+ export type PlaidTransactionsSyncBody = {
10813
+ /**
10814
+ * @minimum 1
10815
+ * @maximum 500
10816
+ */
10817
+ count?: number;
10818
+ /** Empty or omitted for first page */
10819
+ cursor?: string;
10820
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10821
+ userId: string;
10822
+ };
10823
+ export type PlaidGetAuth200Numbers = {
10824
+ [key: string]: unknown | null;
10825
+ };
10826
+ export type PlaidGetAuth200Item = {
10827
+ [key: string]: unknown | null;
10828
+ };
10829
+ /**
10830
+ * @nullable
10831
+ */
10832
+ export type PlaidGetAuth200AccountsItem = unknown | null;
10833
+ export type PlaidGetAuth200 = {
10834
+ accounts: PlaidGetAuth200AccountsItem[];
10835
+ item: PlaidGetAuth200Item;
10836
+ numbers: PlaidGetAuth200Numbers;
10837
+ request_id: string;
10838
+ [key: string]: unknown | null;
10839
+ };
10840
+ export type PlaidGetAuthBody = {
10841
+ account_ids?: string[];
10842
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10843
+ userId: string;
10844
+ };
10845
+ export type PlaidGetAccountsBalance200Item = {
10846
+ [key: string]: unknown | null;
10847
+ };
10848
+ /**
10849
+ * @nullable
10850
+ */
10851
+ export type PlaidGetAccountsBalance200AccountsItem = unknown | null;
10852
+ export type PlaidGetAccountsBalance200 = {
10853
+ accounts: PlaidGetAccountsBalance200AccountsItem[];
10854
+ item: PlaidGetAccountsBalance200Item;
10855
+ request_id: string;
10856
+ [key: string]: unknown | null;
10857
+ };
10858
+ export type PlaidGetAccountsBalanceBody = {
10859
+ account_ids?: string[];
10860
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10861
+ userId: string;
10862
+ };
10863
+ export type PlaidGetAccounts200Item = {
10864
+ [key: string]: unknown | null;
10865
+ };
10866
+ /**
10867
+ * @nullable
10868
+ */
10869
+ export type PlaidGetAccounts200AccountsItem = unknown | null;
10870
+ export type PlaidGetAccounts200 = {
10871
+ accounts: PlaidGetAccounts200AccountsItem[];
10872
+ item: PlaidGetAccounts200Item;
10873
+ request_id: string;
10874
+ [key: string]: unknown | null;
10875
+ };
10876
+ export type PlaidGetAccountsBody = {
10877
+ account_ids?: string[];
10878
+ /** Integration hub user id; uses the stored Plaid Item access token for this user. */
10879
+ userId: string;
10880
+ };
10881
+ export type PlaidHostedLinkCallbackParams = {
10882
+ state?: string;
10883
+ error?: string;
10884
+ error_description?: string;
10885
+ };
10886
+ export type PlaidSetUserCredentials200 = {
10887
+ userId: string;
10888
+ };
10889
+ export type PlaidSetUserCredentialsBody = {
10890
+ /** @minLength 1 */
10891
+ clientId: string;
10892
+ /** @minLength 1 */
10893
+ clientSecret: string;
10894
+ userId?: string;
10895
+ };
10896
+ export type PlaidStartHostedLink200 = {
10897
+ /** Plaid Hosted Link URL to send the end user to. */
10898
+ url: string;
10899
+ /** Integration hub user id used to store Plaid tokens after exchange. */
10900
+ userId: string;
10901
+ };
10902
+ export type PlaidStartHostedLinkBodyUser = {
10903
+ /** @minLength 1 */
10904
+ client_user_id: string;
10905
+ email_address?: string;
10906
+ phone_number?: string;
10907
+ };
10908
+ export type PlaidStartHostedLinkBodyHostedLinkDeliveryMethod = typeof PlaidStartHostedLinkBodyHostedLinkDeliveryMethod[keyof typeof PlaidStartHostedLinkBodyHostedLinkDeliveryMethod];
10909
+ export declare const PlaidStartHostedLinkBodyHostedLinkDeliveryMethod: {
10910
+ readonly sms: "sms";
10911
+ readonly email: "email";
10912
+ };
10913
+ export type PlaidStartHostedLinkBodyHostedLink = {
10914
+ completion_redirect_uri?: string;
10915
+ delivery_method?: PlaidStartHostedLinkBodyHostedLinkDeliveryMethod;
10916
+ is_mobile_app?: boolean;
10917
+ /**
10918
+ * @minimum 900
10919
+ * @maximum 86400
10920
+ */
10921
+ url_lifetime_seconds?: number;
10922
+ };
10923
+ export type PlaidStartHostedLinkBody = {
10924
+ /**
10925
+ * External user id from the agent or MCP.
10926
+ * @minLength 1
10927
+ */
10928
+ externalUserId?: string;
10929
+ hosted_link?: PlaidStartHostedLinkBodyHostedLink;
10930
+ /** Generated app URL to redirect the browser to after Plaid Hosted Link completes. */
10931
+ originalRedirectUrl?: string;
10932
+ user: PlaidStartHostedLinkBodyUser;
10933
+ /** Existing integration user id. Omit to create a new credential row before Hosted Link. Required when the integration config type is PerUser. */
10934
+ userId?: string;
10935
+ };
10936
+ export type OpenaiCreateStream500 = {
10937
+ error?: string;
10938
+ };
10939
+ /**
10940
+ * Schema for structured output
10941
+ * @nullable
10942
+ */
10943
+ export type OpenaiCreateStreamBodyOutputSchema = unknown | null;
10944
+ export type OpenaiCreateStreamBodyOptions = {
10945
+ /**
10946
+ * Maximum tokens to generate
10947
+ * @minimum 0
10948
+ * @exclusiveMinimum
10949
+ */
10950
+ maxTokens?: number;
10951
+ /**
10952
+ * Sampling temperature (0-2)
10953
+ * @minimum 0
10954
+ * @maximum 2
10955
+ */
10956
+ temperature?: number;
10957
+ /**
10958
+ * Top-p sampling parameter
10959
+ * @minimum 0
10960
+ * @maximum 1
10961
+ */
10962
+ topP?: number;
10963
+ };
10964
+ /**
10965
+ * Role of the message sender
10966
+ */
10967
+ export type OpenaiCreateStreamBodyMessagesItemRole = typeof OpenaiCreateStreamBodyMessagesItemRole[keyof typeof OpenaiCreateStreamBodyMessagesItemRole];
10968
+ export declare const OpenaiCreateStreamBodyMessagesItemRole: {
10969
+ readonly user: "user";
10970
+ readonly assistant: "assistant";
10971
+ readonly system: "system";
10972
+ };
10973
+ export type OpenaiCreateStreamBodyMessagesItemPartsItem = {
10974
+ /** Filename for file parts */
10975
+ filename?: string;
10976
+ /** MIME type of the media */
10977
+ mediaType?: string;
10978
+ /** Text content */
10979
+ text?: string;
10980
+ /** Type of message part (text, file, etc.) */
10981
+ type: string;
10982
+ /** URL for file or media */
10983
+ url?: string;
10984
+ };
10985
+ export type OpenaiCreateStreamBodyMessagesItem = {
10986
+ /** Content of the message */
10987
+ content?: string;
10988
+ /** Multi-part message content */
10989
+ parts?: OpenaiCreateStreamBodyMessagesItemPartsItem[];
10990
+ /** Role of the message sender */
10991
+ role: OpenaiCreateStreamBodyMessagesItemRole;
10992
+ };
10993
+ export type OpenaiCreateStreamBody = {
10994
+ /**
10995
+ * Array of chat messages
10996
+ * @minItems 1
10997
+ */
10998
+ messages: OpenaiCreateStreamBodyMessagesItem[];
10999
+ /** Specific model to use (defaults to resolved OpenAI model) */
11000
+ model?: string;
11001
+ options?: OpenaiCreateStreamBodyOptions;
11002
+ /**
11003
+ * Schema for structured output
11004
+ * @nullable
11005
+ */
11006
+ outputSchema?: OpenaiCreateStreamBodyOutputSchema;
11007
+ /** Required when the OpenAI integration config type is PerUser. */
11008
+ userId?: string;
11009
+ };
11010
+ /**
11011
+ * Structured output if schema provided
11012
+ * @nullable
11013
+ */
11014
+ export type OpenaiGenerateText200Output = unknown | null;
11015
+ export type OpenaiGenerateText200 = {
11016
+ /**
11017
+ * Structured output if schema provided
11018
+ * @nullable
11019
+ */
11020
+ output?: OpenaiGenerateText200Output;
11021
+ /** Generated text content */
11022
+ text: string;
11023
+ };
11024
+ /**
11025
+ * Schema for structured output
11026
+ * @nullable
11027
+ */
11028
+ export type OpenaiGenerateTextBodyOutputSchema = unknown | null;
11029
+ export type OpenaiGenerateTextBodyOptions = {
11030
+ /**
11031
+ * Maximum tokens to generate
11032
+ * @minimum 0
11033
+ * @exclusiveMinimum
11034
+ */
11035
+ maxTokens?: number;
11036
+ /**
11037
+ * Sampling temperature (0-2)
11038
+ * @minimum 0
11039
+ * @maximum 2
11040
+ */
11041
+ temperature?: number;
11042
+ /**
11043
+ * Top-p sampling parameter
11044
+ * @minimum 0
11045
+ * @maximum 1
11046
+ */
11047
+ topP?: number;
11048
+ };
11049
+ /**
11050
+ * Role of the message sender
11051
+ */
11052
+ export type OpenaiGenerateTextBodyMessagesItemRole = typeof OpenaiGenerateTextBodyMessagesItemRole[keyof typeof OpenaiGenerateTextBodyMessagesItemRole];
11053
+ export declare const OpenaiGenerateTextBodyMessagesItemRole: {
11054
+ readonly user: "user";
11055
+ readonly assistant: "assistant";
11056
+ readonly system: "system";
11057
+ };
11058
+ export type OpenaiGenerateTextBodyMessagesItemPartsItem = {
11059
+ /** Filename for file parts */
11060
+ filename?: string;
11061
+ /** MIME type of the media */
11062
+ mediaType?: string;
11063
+ /** Text content */
11064
+ text?: string;
11065
+ /** Type of message part (text, file, etc.) */
11066
+ type: string;
11067
+ /** URL for file or media */
11068
+ url?: string;
11069
+ };
11070
+ export type OpenaiGenerateTextBodyMessagesItem = {
11071
+ /** Content of the message */
11072
+ content?: string;
11073
+ /** Multi-part message content */
11074
+ parts?: OpenaiGenerateTextBodyMessagesItemPartsItem[];
11075
+ /** Role of the message sender */
11076
+ role: OpenaiGenerateTextBodyMessagesItemRole;
11077
+ };
11078
+ export type OpenaiGenerateTextBody = {
11079
+ /**
11080
+ * Array of chat messages
11081
+ * @minItems 1
11082
+ */
11083
+ messages: OpenaiGenerateTextBodyMessagesItem[];
11084
+ /** Specific model to use (defaults to resolved OpenAI model) */
11085
+ model?: string;
11086
+ options?: OpenaiGenerateTextBodyOptions;
11087
+ /**
11088
+ * Schema for structured output
11089
+ * @nullable
11090
+ */
11091
+ outputSchema?: OpenaiGenerateTextBodyOutputSchema;
11092
+ /** Required when the OpenAI integration config type is PerUser. */
11093
+ userId?: string;
11094
+ };
11095
+ export type OpenaiSetUserCredentials200 = {
11096
+ userId: string;
11097
+ };
11098
+ export type OpenaiSetUserCredentialsBody = {
11099
+ /**
11100
+ * OpenAI API key for this generated app user.
11101
+ * @minLength 1
11102
+ */
11103
+ apiKey: string;
11104
+ /**
11105
+ * Optional per-user default OpenAI model.
11106
+ * @minLength 1
11107
+ */
11108
+ model?: string;
11109
+ /** Existing integration user id. Omit to create a new integration user credential record. */
11110
+ userId?: string;
11111
+ };
11112
+ /**
11113
+ * @nullable
11114
+ */
11115
+ export type JiraMoveIssuesToSprint200 = unknown | null;
11116
+ export type JiraMoveIssuesToSprintBody = {
11117
+ /** Issue ids or keys to move to the sprint. */
11118
+ issues: string[];
11119
+ /**
11120
+ * Sprint id the issues move to.
11121
+ * @minimum 0
11122
+ * @exclusiveMinimum
11123
+ */
11124
+ sprintId: number;
11125
+ /** Integration user id for Jira requests. */
11126
+ userId: string;
11127
+ [key: string]: unknown | null;
11128
+ };
11129
+ /**
11130
+ * @nullable
11131
+ */
11132
+ export type JiraMoveIssuesToBacklog200 = unknown | null;
11133
+ export type JiraMoveIssuesToBacklogBody = {
11134
+ /**
11135
+ * Board id whose backlog the issues move to.
11136
+ * @minimum 0
11137
+ * @exclusiveMinimum
11138
+ */
11139
+ boardId: number;
11140
+ /** Issue ids or keys to move to the backlog. */
11141
+ issues: string[];
11142
+ /** Integration user id for Jira requests. */
11143
+ userId: string;
11144
+ [key: string]: unknown | null;
11145
+ };
11146
+ export type JiraUpdateSprint200 = {
11147
+ [key: string]: unknown | null;
11148
+ };
11149
+ export type JiraUpdateSprintBody = {
11150
+ /** Sprint end date. */
11151
+ endDate?: string;
11152
+ /** Sprint goal. */
11153
+ goal?: string;
11154
+ /** Sprint name. */
11155
+ name?: string;
11156
+ /**
11157
+ * Sprint id to update.
11158
+ * @minimum 0
11159
+ * @exclusiveMinimum
11160
+ */
11161
+ sprintId: number;
11162
+ /** Sprint start date. */
11163
+ startDate?: string;
11164
+ /** Sprint state (future, active, closed). */
11165
+ state?: string;
11166
+ /** Integration user id for Jira requests. */
11167
+ userId: string;
11168
+ [key: string]: unknown | null;
11169
+ };
11170
+ export type JiraCreateSprint200 = {
11171
+ [key: string]: unknown | null;
11172
+ };
11173
+ export type JiraCreateSprintBody = {
11174
+ /** Sprint end date. */
11175
+ endDate?: string;
11176
+ /** Sprint goal. */
11177
+ goal?: string;
11178
+ /** Sprint name. */
11179
+ name: string;
11180
+ /**
11181
+ * Board the sprint belongs to.
11182
+ * @minimum 0
11183
+ * @exclusiveMinimum
11184
+ */
11185
+ originBoardId: number;
11186
+ /** Sprint start date. */
11187
+ startDate?: string;
11188
+ /** Integration user id for Jira requests. */
11189
+ userId: string;
11190
+ [key: string]: unknown | null;
11191
+ };
11192
+ export type JiraListSprints200 = {
11193
+ [key: string]: unknown | null;
11194
+ };
11195
+ export type JiraListSprintsBody = {
11196
+ /**
11197
+ * Board id to list sprints for.
11198
+ * @minimum 0
11199
+ * @exclusiveMinimum
11200
+ */
11201
+ boardId: number;
11202
+ /**
11203
+ * Maximum results per page.
11204
+ * @minimum 0
11205
+ * @exclusiveMinimum
11206
+ */
11207
+ maxResults?: number;
11208
+ /**
11209
+ * Index of the first item.
11210
+ * @minimum 0
11211
+ * @nullable
11212
+ */
11213
+ startAt?: number | null;
11214
+ /** Filter sprints by state (future, active, closed). */
11215
+ state?: string;
11216
+ /** Integration user id for Jira requests. */
11217
+ userId: string;
11218
+ [key: string]: unknown | null;
11219
+ };
11220
+ export type JiraListBoards200 = {
11221
+ [key: string]: unknown | null;
11222
+ };
11223
+ export type JiraListBoardsBody = {
11224
+ /**
11225
+ * Maximum results per page.
11226
+ * @minimum 0
11227
+ * @exclusiveMinimum
11228
+ */
11229
+ maxResults?: number;
11230
+ /** Filter boards by name. */
11231
+ name?: string;
11232
+ /** Filter boards by project. */
11233
+ projectKeyOrId?: string;
11234
+ /**
11235
+ * Index of the first item.
11236
+ * @minimum 0
11237
+ * @nullable
11238
+ */
11239
+ startAt?: number | null;
11240
+ /** Filter boards by type (scrum, kanban). */
11241
+ type?: string;
11242
+ /** Integration user id for Jira requests. */
11243
+ userId: string;
11244
+ [key: string]: unknown | null;
11245
+ };
11246
+ /**
11247
+ * @nullable
11248
+ */
11249
+ export type JiraTransitionIssue200 = unknown | null;
11250
+ /**
11251
+ * Field update operations.
11252
+ */
11253
+ export type JiraTransitionIssueBodyUpdate = {
11254
+ [key: string]: unknown | null;
11255
+ };
11256
+ /**
11257
+ * Target transition, e.g. { "id": "5" }.
11258
+ */
11259
+ export type JiraTransitionIssueBodyTransition = {
11260
+ [key: string]: unknown | null;
11261
+ };
11262
+ /**
11263
+ * Field values to set during the transition.
11264
+ */
11265
+ export type JiraTransitionIssueBodyFields = {
11266
+ [key: string]: unknown | null;
11267
+ };
11268
+ export type JiraTransitionIssueBody = {
11269
+ /** Field values to set during the transition. */
11270
+ fields?: JiraTransitionIssueBodyFields;
11271
+ /** Issue id or key. */
11272
+ issueIdOrKey: string;
11273
+ /** Target transition, e.g. { "id": "5" }. */
11274
+ transition: JiraTransitionIssueBodyTransition;
11275
+ /** Field update operations. */
11276
+ update?: JiraTransitionIssueBodyUpdate;
11277
+ /** Integration user id for Jira requests. */
11278
+ userId: string;
11279
+ [key: string]: unknown | null;
11280
+ };
11281
+ export type JiraListTransitions200 = {
11282
+ [key: string]: unknown | null;
11283
+ };
11284
+ export type JiraListTransitionsBody = {
11285
+ /** Issue id or key. */
11286
+ issueIdOrKey: string;
11287
+ /** Integration user id for Jira requests. */
11288
+ userId: string;
11289
+ [key: string]: unknown | null;
11290
+ };
11291
+ export type JiraListProjects200 = {
11292
+ [key: string]: unknown | null;
11293
+ };
11294
+ export type JiraListProjectsBody = {
11295
+ /**
11296
+ * Maximum results per page.
11297
+ * @minimum 0
11298
+ * @exclusiveMinimum
11299
+ */
11300
+ maxResults?: number;
11301
+ /** Order of the returned projects. */
11302
+ orderBy?: string;
11303
+ /** Filter projects by key or name. */
11304
+ query?: string;
11305
+ /**
11306
+ * Index of the first item.
11307
+ * @minimum 0
11308
+ * @nullable
11309
+ */
11310
+ startAt?: number | null;
11311
+ /** Integration user id for Jira requests. */
11312
+ userId: string;
11313
+ [key: string]: unknown | null;
11314
+ };
11315
+ export type JiraAddComment200 = {
11316
+ [key: string]: unknown | null;
11317
+ };
11318
+ /**
11319
+ * Comment body in Atlassian Document Format (ADF).
11320
+ * @nullable
11321
+ */
11322
+ export type JiraAddCommentBodyBody = unknown | null;
11323
+ export type JiraAddCommentBody = {
11324
+ /**
11325
+ * Comment body in Atlassian Document Format (ADF).
11326
+ * @nullable
11327
+ */
11328
+ body?: JiraAddCommentBodyBody;
11329
+ /** Issue id or key. */
11330
+ issueIdOrKey: string;
11331
+ /** Integration user id for Jira requests. */
11332
+ userId: string;
11333
+ [key: string]: unknown | null;
11334
+ };
11335
+ /**
11336
+ * @nullable
11337
+ */
11338
+ export type JiraUpdateIssue200 = unknown | null;
11339
+ /**
11340
+ * Field update operations.
11341
+ */
11342
+ export type JiraUpdateIssueBodyUpdate = {
11343
+ [key: string]: unknown | null;
11344
+ };
11345
+ /**
11346
+ * Issue field values to update.
11347
+ */
11348
+ export type JiraUpdateIssueBodyFields = {
11349
+ [key: string]: unknown | null;
11350
+ };
11351
+ export type JiraUpdateIssueBody = {
11352
+ /** Issue field values to update. */
11353
+ fields?: JiraUpdateIssueBodyFields;
11354
+ /** Issue id or key. */
11355
+ issueIdOrKey: string;
11356
+ /** Field update operations. */
11357
+ update?: JiraUpdateIssueBodyUpdate;
11358
+ /** Integration user id for Jira requests. */
11359
+ userId: string;
11360
+ [key: string]: unknown | null;
11361
+ };
11362
+ export type JiraGetIssue200 = {
11363
+ [key: string]: unknown | null;
11364
+ };
11365
+ export type JiraGetIssueBody = {
11366
+ /** Entities to expand. */
11367
+ expand?: string;
11368
+ /** Comma-separated list of fields to return. */
11369
+ fields?: string;
11370
+ /** Issue id or key. */
11371
+ issueIdOrKey: string;
11372
+ /** Integration user id for Jira requests. */
11373
+ userId: string;
11374
+ [key: string]: unknown | null;
11375
+ };
11376
+ export type JiraSearchIssues200 = {
11377
+ [key: string]: unknown | null;
11378
+ };
11379
+ /**
11380
+ * Entities to expand.
11381
+ */
11382
+ export type JiraSearchIssuesBodyExpand = string[] | string;
11383
+ export type JiraSearchIssuesBody = {
11384
+ /** Entities to expand. */
11385
+ expand?: JiraSearchIssuesBodyExpand;
11386
+ /** Issue fields to return. */
11387
+ fields?: string[];
11388
+ /** JQL query string. */
11389
+ jql?: string;
11390
+ /**
11391
+ * Maximum results per page.
11392
+ * @minimum 0
11393
+ * @exclusiveMinimum
11394
+ */
11395
+ maxResults?: number;
11396
+ /** Token for the next page of results. */
11397
+ nextPageToken?: string;
11398
+ /** Integration user id for Jira requests. */
11399
+ userId: string;
11400
+ [key: string]: unknown | null;
11401
+ };
11402
+ export type JiraCreateIssue200 = {
11403
+ [key: string]: unknown | null;
11404
+ };
11405
+ /**
11406
+ * Field update operations.
11407
+ */
11408
+ export type JiraCreateIssueBodyUpdate = {
11409
+ [key: string]: unknown | null;
11410
+ };
11411
+ /**
11412
+ * Issue field values (project, summary, issuetype, etc.).
11413
+ */
11414
+ export type JiraCreateIssueBodyFields = {
11415
+ [key: string]: unknown | null;
11416
+ };
11417
+ export type JiraCreateIssueBody = {
11418
+ /** Issue field values (project, summary, issuetype, etc.). */
11419
+ fields: JiraCreateIssueBodyFields;
11420
+ /** Field update operations. */
11421
+ update?: JiraCreateIssueBodyUpdate;
11422
+ /** Integration user id for Jira requests. */
11423
+ userId: string;
11424
+ [key: string]: unknown | null;
11425
+ };
11426
+ export type JiraOauthCallback200 = {
11427
+ success: boolean;
11428
+ userId: string;
11429
+ };
11430
+ export type JiraOauthCallbackParams = {
11431
+ code?: string;
11432
+ state?: string;
11433
+ error?: string;
11434
+ };
11435
+ export type JiraSetUserCredentials200 = {
11436
+ userId: string;
11437
+ };
11438
+ export type JiraSetUserCredentialsBody = {
11439
+ /** @minLength 1 */
11440
+ clientId: string;
11441
+ /** @minLength 1 */
11442
+ clientSecret: string;
11443
+ userId?: string;
11444
+ };
11445
+ export type JiraOauthInitiate200 = {
11446
+ authorizationUrl: string;
11447
+ };
11448
+ export type JiraOauthInitiateBody = {
11449
+ /** @minLength 1 */
11450
+ externalUserId?: string;
11451
+ originalRedirectUrl: string;
11452
+ userId?: string;
11453
+ };
11454
+ export type GoogleSlidesBatchUpdatePresentation200 = {
11455
+ [key: string]: unknown | null;
11456
+ };
11457
+ /**
11458
+ * Optional writeControl object (revisionId) for optimistic concurrency.
11459
+ */
11460
+ export type GoogleSlidesBatchUpdatePresentationBodyWriteControl = {
11461
+ [key: string]: unknown | null;
11462
+ };
11463
+ export type GoogleSlidesBatchUpdatePresentationBodyRequestsItem = {
11464
+ [key: string]: unknown | null;
11465
+ };
11466
+ export type GoogleSlidesBatchUpdatePresentationBody = {
11467
+ /**
11468
+ * Presentation id to edit — must be created by this integration or picked via Google Picker.
11469
+ * @minLength 1
11470
+ */
11471
+ presentationId: string;
11472
+ /**
11473
+ * Google Slides API batchUpdate request objects (e.g. createSlide, insertText, deleteObject).
11474
+ * @minItems 1
11475
+ */
11476
+ requests: GoogleSlidesBatchUpdatePresentationBodyRequestsItem[];
11477
+ /** Integration user id returned by the Google Slides OAuth flow. */
11478
+ userId: string;
11479
+ /** Optional writeControl object (revisionId) for optimistic concurrency. */
11480
+ writeControl?: GoogleSlidesBatchUpdatePresentationBodyWriteControl;
11481
+ };
11482
+ export type GoogleSlidesGetPresentation200 = {
11483
+ [key: string]: unknown | null;
11484
+ };
11485
+ export type GoogleSlidesGetPresentationBody = {
11486
+ /**
11487
+ * Presentation id — returned by create, or selected by the user via the Google Picker.
11488
+ * @minLength 1
11489
+ */
11490
+ presentationId: string;
11491
+ /** Integration user id returned by the Google Slides OAuth flow. */
11492
+ userId: string;
11493
+ };
11494
+ export type GoogleSlidesCreatePresentation200 = {
11495
+ [key: string]: unknown | null;
11496
+ };
11497
+ export type GoogleSlidesCreatePresentationBody = {
11498
+ /**
11499
+ * Title for the new presentation. Defaults to an untitled presentation when omitted.
11500
+ * @minLength 1
11501
+ */
11502
+ title?: string;
11503
+ /** Integration user id returned by the Google Slides OAuth flow. */
11504
+ userId: string;
11505
+ };
11506
+ export type GoogleSlidesSetUserCredentials200 = {
11507
+ userId: string;
11508
+ };
11509
+ export type GoogleSlidesSetUserCredentialsBody = {
11510
+ /**
11511
+ * Google OAuth client ID for this user.
11512
+ * @minLength 1
11513
+ */
11514
+ clientId: string;
11515
+ /**
11516
+ * Google OAuth client secret for this user.
11517
+ * @minLength 1
11518
+ */
11519
+ clientSecret: string;
11520
+ /** Existing integration user id. Omit to create a new integration user credential record. */
11521
+ userId?: string;
11522
+ };
11523
+ export type GoogleSlidesAuthStart200 = {
11524
+ url: string;
11525
+ userId: string;
11526
+ };
11527
+ export type GoogleSlidesAuthStartBody = {
11528
+ /**
11529
+ * App user id from the agent or connect flow. Used to find or create the credential row.
11530
+ * @minLength 1
11531
+ */
11532
+ externalUserId?: string;
11533
+ /** App URL to redirect the browser to after OAuth completes. */
11534
+ originalRedirectUrl?: string;
11535
+ /** Existing integration user id (internal). Use when reconnecting an existing Hub user. */
11536
+ userId?: string;
11537
+ };
11538
+ export type GoogleSheetsBatchUpdate200RepliesItem = {
11539
+ [key: string]: unknown | null;
11540
+ };
11541
+ export type GoogleSheetsBatchUpdate200 = {
11542
+ replies?: GoogleSheetsBatchUpdate200RepliesItem[];
11543
+ spreadsheetId?: string;
11544
+ [key: string]: unknown | null;
11545
+ };
11546
+ export type GoogleSheetsBatchUpdateBodyRequestsItem = {
11547
+ [key: string]: unknown | null;
11548
+ };
11549
+ export type GoogleSheetsBatchUpdateBody = {
11550
+ /** Whether the response should include the full updated spreadsheet resource. */
11551
+ includeSpreadsheetInResponse?: boolean;
11552
+ /** Array of update request objects. Each entry is one Sheets API batchUpdate request (e.g. addSheet, updateCells, repeatCell). */
11553
+ requests: GoogleSheetsBatchUpdateBodyRequestsItem[];
11554
+ /**
11555
+ * The ID of the spreadsheet to apply batch updates to.
11556
+ * @minLength 1
11557
+ */
11558
+ spreadsheetId: string;
11559
+ /** Integration user id returned by the Google Sheets OAuth flow. */
11560
+ userId: string;
11561
+ };
11562
+ export type GoogleSheetsAppendValues200Updates = {
11563
+ spreadsheetId?: string;
11564
+ updatedCells?: number;
11565
+ updatedColumns?: number;
11566
+ updatedRange?: string;
11567
+ updatedRows?: number;
11568
+ [key: string]: unknown | null;
11569
+ };
11570
+ export type GoogleSheetsAppendValues200 = {
11571
+ spreadsheetId?: string;
11572
+ tableRange?: string;
11573
+ updates?: GoogleSheetsAppendValues200Updates;
11574
+ [key: string]: unknown | null;
10585
11575
  };
10586
11576
  /**
10587
- * Structured output if schema provided
10588
11577
  * @nullable
10589
11578
  */
10590
- export type OpenaiGenerateText200Output = unknown | null;
10591
- export type OpenaiGenerateText200 = {
11579
+ export type GoogleSheetsAppendValuesBodyValuesItemItem = unknown | null;
11580
+ /**
11581
+ * How the input data should be interpreted. Defaults to USER_ENTERED.
11582
+ */
11583
+ export type GoogleSheetsAppendValuesBodyValueInputOption = typeof GoogleSheetsAppendValuesBodyValueInputOption[keyof typeof GoogleSheetsAppendValuesBodyValueInputOption];
11584
+ export declare const GoogleSheetsAppendValuesBodyValueInputOption: {
11585
+ readonly RAW: "RAW";
11586
+ readonly USER_ENTERED: "USER_ENTERED";
11587
+ };
11588
+ /**
11589
+ * How the input data should be inserted. Defaults to INSERT_ROWS.
11590
+ */
11591
+ export type GoogleSheetsAppendValuesBodyInsertDataOption = typeof GoogleSheetsAppendValuesBodyInsertDataOption[keyof typeof GoogleSheetsAppendValuesBodyInsertDataOption];
11592
+ export declare const GoogleSheetsAppendValuesBodyInsertDataOption: {
11593
+ readonly OVERWRITE: "OVERWRITE";
11594
+ readonly INSERT_ROWS: "INSERT_ROWS";
11595
+ };
11596
+ export type GoogleSheetsAppendValuesBody = {
11597
+ /** How the input data should be inserted. Defaults to INSERT_ROWS. */
11598
+ insertDataOption?: GoogleSheetsAppendValuesBodyInsertDataOption;
10592
11599
  /**
10593
- * Structured output if schema provided
10594
- * @nullable
11600
+ * A1 notation of the range to search for existing data to append after (e.g. "Sheet1!A1").
11601
+ * @minLength 1
10595
11602
  */
10596
- output?: OpenaiGenerateText200Output;
10597
- /** Generated text content */
10598
- text: string;
11603
+ range: string;
11604
+ /**
11605
+ * The ID of the spreadsheet to append to.
11606
+ * @minLength 1
11607
+ */
11608
+ spreadsheetId: string;
11609
+ /** Integration user id returned by the Google Sheets OAuth flow. */
11610
+ userId: string;
11611
+ /** How the input data should be interpreted. Defaults to USER_ENTERED. */
11612
+ valueInputOption?: GoogleSheetsAppendValuesBodyValueInputOption;
11613
+ /** The rows to append as a 2D array of cell values. */
11614
+ values: GoogleSheetsAppendValuesBodyValuesItemItem[][];
11615
+ };
11616
+ export type GoogleSheetsUpdateValues200 = {
11617
+ spreadsheetId?: string;
11618
+ updatedCells?: number;
11619
+ updatedColumns?: number;
11620
+ updatedRange?: string;
11621
+ updatedRows?: number;
11622
+ [key: string]: unknown | null;
10599
11623
  };
10600
11624
  /**
10601
- * Schema for structured output
10602
11625
  * @nullable
10603
11626
  */
10604
- export type OpenaiGenerateTextBodyOutputSchema = unknown | null;
10605
- export type OpenaiGenerateTextBodyOptions = {
10606
- /**
10607
- * Maximum tokens to generate
10608
- * @minimum 0
10609
- * @exclusiveMinimum
10610
- */
10611
- maxTokens?: number;
11627
+ export type GoogleSheetsUpdateValuesBodyValuesItemItem = unknown | null;
11628
+ /**
11629
+ * How the input data should be interpreted. Defaults to USER_ENTERED.
11630
+ */
11631
+ export type GoogleSheetsUpdateValuesBodyValueInputOption = typeof GoogleSheetsUpdateValuesBodyValueInputOption[keyof typeof GoogleSheetsUpdateValuesBodyValueInputOption];
11632
+ export declare const GoogleSheetsUpdateValuesBodyValueInputOption: {
11633
+ readonly RAW: "RAW";
11634
+ readonly USER_ENTERED: "USER_ENTERED";
11635
+ };
11636
+ export type GoogleSheetsUpdateValuesBody = {
10612
11637
  /**
10613
- * Sampling temperature (0-2)
10614
- * @minimum 0
10615
- * @maximum 2
11638
+ * A1 notation of the range to update (e.g. "Sheet1!A1:D5").
11639
+ * @minLength 1
10616
11640
  */
10617
- temperature?: number;
11641
+ range: string;
10618
11642
  /**
10619
- * Top-p sampling parameter
10620
- * @minimum 0
10621
- * @maximum 1
11643
+ * The ID of the spreadsheet to update.
11644
+ * @minLength 1
10622
11645
  */
10623
- topP?: number;
11646
+ spreadsheetId: string;
11647
+ /** Integration user id returned by the Google Sheets OAuth flow. */
11648
+ userId: string;
11649
+ /** How the input data should be interpreted. Defaults to USER_ENTERED. */
11650
+ valueInputOption?: GoogleSheetsUpdateValuesBodyValueInputOption;
11651
+ /** The data to write as a 2D array of cell values. */
11652
+ values: GoogleSheetsUpdateValuesBodyValuesItemItem[][];
10624
11653
  };
10625
- export type OpenaiGenerateTextBody = {
11654
+ /**
11655
+ * @nullable
11656
+ */
11657
+ export type GoogleSheetsGetValues200ValuesItemItem = unknown | null;
11658
+ export type GoogleSheetsGetValues200 = {
11659
+ majorDimension?: string;
11660
+ range?: string;
11661
+ values?: GoogleSheetsGetValues200ValuesItemItem[][];
11662
+ [key: string]: unknown | null;
11663
+ };
11664
+ /**
11665
+ * How values should be rendered in the output.
11666
+ */
11667
+ export type GoogleSheetsGetValuesBodyValueRenderOption = typeof GoogleSheetsGetValuesBodyValueRenderOption[keyof typeof GoogleSheetsGetValuesBodyValueRenderOption];
11668
+ export declare const GoogleSheetsGetValuesBodyValueRenderOption: {
11669
+ readonly FORMATTED_VALUE: "FORMATTED_VALUE";
11670
+ readonly UNFORMATTED_VALUE: "UNFORMATTED_VALUE";
11671
+ readonly FORMULA: "FORMULA";
11672
+ };
11673
+ /**
11674
+ * The major dimension of the values. Defaults to ROWS.
11675
+ */
11676
+ export type GoogleSheetsGetValuesBodyMajorDimension = typeof GoogleSheetsGetValuesBodyMajorDimension[keyof typeof GoogleSheetsGetValuesBodyMajorDimension];
11677
+ export declare const GoogleSheetsGetValuesBodyMajorDimension: {
11678
+ readonly ROWS: "ROWS";
11679
+ readonly COLUMNS: "COLUMNS";
11680
+ };
11681
+ export type GoogleSheetsGetValuesBody = {
11682
+ /** The major dimension of the values. Defaults to ROWS. */
11683
+ majorDimension?: GoogleSheetsGetValuesBodyMajorDimension;
10626
11684
  /**
10627
- * Array of chat messages
10628
- * @minItems 1
11685
+ * A1 notation or R1C1 notation of the range to read (e.g. "Sheet1!A1:D5").
11686
+ * @minLength 1
10629
11687
  */
10630
- messages: OpenaiGenerateTextBodyMessagesItem[];
10631
- /** Specific model to use (defaults to resolved OpenAI model) */
10632
- model?: string;
10633
- options?: OpenaiGenerateTextBodyOptions;
11688
+ range: string;
10634
11689
  /**
10635
- * Schema for structured output
10636
- * @nullable
11690
+ * The ID of the spreadsheet to read from.
11691
+ * @minLength 1
10637
11692
  */
10638
- outputSchema?: OpenaiGenerateTextBodyOutputSchema;
10639
- /** Required when the OpenAI integration config type is PerUser. */
10640
- userId?: string;
11693
+ spreadsheetId: string;
11694
+ /** Integration user id returned by the Google Sheets OAuth flow. */
11695
+ userId: string;
11696
+ /** How values should be rendered in the output. */
11697
+ valueRenderOption?: GoogleSheetsGetValuesBodyValueRenderOption;
10641
11698
  };
10642
- /**
10643
- * Role of the message sender
10644
- */
10645
- export type OpenaiGenerateTextBodyMessagesItemRole = typeof OpenaiGenerateTextBodyMessagesItemRole[keyof typeof OpenaiGenerateTextBodyMessagesItemRole];
10646
- export declare const OpenaiGenerateTextBodyMessagesItemRole: {
10647
- readonly user: "user";
10648
- readonly assistant: "assistant";
10649
- readonly system: "system";
11699
+ export type GoogleSheetsCreateSpreadsheet200Properties = {
11700
+ title?: string;
11701
+ [key: string]: unknown | null;
10650
11702
  };
10651
- export type OpenaiGenerateTextBodyMessagesItemPartsItem = {
10652
- /** Filename for file parts */
10653
- filename?: string;
10654
- /** MIME type of the media */
10655
- mediaType?: string;
10656
- /** Text content */
10657
- text?: string;
10658
- /** Type of message part (text, file, etc.) */
10659
- type: string;
10660
- /** URL for file or media */
10661
- url?: string;
11703
+ export type GoogleSheetsCreateSpreadsheet200 = {
11704
+ properties?: GoogleSheetsCreateSpreadsheet200Properties;
11705
+ spreadsheetId?: string;
11706
+ spreadsheetUrl?: string;
11707
+ [key: string]: unknown | null;
10662
11708
  };
10663
- export type OpenaiGenerateTextBodyMessagesItem = {
10664
- /** Content of the message */
10665
- content?: string;
10666
- /** Multi-part message content */
10667
- parts?: OpenaiGenerateTextBodyMessagesItemPartsItem[];
10668
- /** Role of the message sender */
10669
- role: OpenaiGenerateTextBodyMessagesItemRole;
11709
+ export type GoogleSheetsCreateSpreadsheetBodySheetsItem = {
11710
+ /** Tab/sheet name. */
11711
+ title?: string;
10670
11712
  };
10671
- export type OpenaiSetUserCredentials200 = {
11713
+ export type GoogleSheetsCreateSpreadsheetBody = {
11714
+ /** Initial tabs to create in the spreadsheet. */
11715
+ sheets?: GoogleSheetsCreateSpreadsheetBodySheetsItem[];
11716
+ /**
11717
+ * Title of the new spreadsheet.
11718
+ * @minLength 1
11719
+ */
11720
+ title: string;
11721
+ /** Integration user id returned by the Google Sheets OAuth flow. */
10672
11722
  userId: string;
10673
11723
  };
10674
- export type OpenaiSetUserCredentialsBody = {
11724
+ export type GoogleSheetsSetUserCredentials200 = {
11725
+ userId: string;
11726
+ };
11727
+ export type GoogleSheetsSetUserCredentialsBody = {
10675
11728
  /**
10676
- * OpenAI API key for this generated app user.
11729
+ * Google OAuth client ID for this user.
10677
11730
  * @minLength 1
10678
11731
  */
10679
- apiKey: string;
11732
+ clientId: string;
10680
11733
  /**
10681
- * Optional per-user default OpenAI model.
11734
+ * Google OAuth client secret for this user.
10682
11735
  * @minLength 1
10683
11736
  */
10684
- model?: string;
11737
+ clientSecret: string;
10685
11738
  /** Existing integration user id. Omit to create a new integration user credential record. */
10686
11739
  userId?: string;
10687
11740
  };
11741
+ export type GoogleSheetsAuthStart200 = {
11742
+ url: string;
11743
+ userId: string;
11744
+ };
11745
+ export type GoogleSheetsAuthStartBody = {
11746
+ /** Required for PerUser Google Sheets configs. Ignored for Shared configs. */
11747
+ clientId?: string;
11748
+ /** Required for PerUser Google Sheets configs. Ignored for Shared configs. */
11749
+ clientSecret?: string;
11750
+ /**
11751
+ * App user id from the agent or connect flow. Used to find or create the credential row.
11752
+ * @minLength 1
11753
+ */
11754
+ externalUserId?: string;
11755
+ /** Generated app URL to redirect the browser to after OAuth completes. */
11756
+ originalRedirectUrl?: string;
11757
+ /** Google OAuth scopes to request. */
11758
+ scopes?: string[];
11759
+ /** Existing integration user id (internal). Use when reconnecting an existing Hub user. */
11760
+ userId?: string;
11761
+ };
10688
11762
  export type GoogleOAuthGetUserProfile200 = {
10689
11763
  /** User email address */
10690
11764
  email: string;
@@ -10889,66 +11963,341 @@ export type GoogleGenerativeAIGenerateTextBody = {
10889
11963
  * Array of chat messages
10890
11964
  * @minItems 1
10891
11965
  */
10892
- messages: GoogleGenerativeAIGenerateTextBodyMessagesItem[];
10893
- /** Specific model to use (defaults to resolved Google model) */
10894
- model?: string;
10895
- options?: GoogleGenerativeAIGenerateTextBodyOptions;
11966
+ messages: GoogleGenerativeAIGenerateTextBodyMessagesItem[];
11967
+ /** Specific model to use (defaults to resolved Google model) */
11968
+ model?: string;
11969
+ options?: GoogleGenerativeAIGenerateTextBodyOptions;
11970
+ /**
11971
+ * Schema for structured output
11972
+ * @nullable
11973
+ */
11974
+ outputSchema?: GoogleGenerativeAIGenerateTextBodyOutputSchema;
11975
+ /** Required when the Google Generative AI integration config type is PerUser. */
11976
+ userId?: string;
11977
+ };
11978
+ /**
11979
+ * Role of the message sender
11980
+ */
11981
+ export type GoogleGenerativeAIGenerateTextBodyMessagesItemRole = typeof GoogleGenerativeAIGenerateTextBodyMessagesItemRole[keyof typeof GoogleGenerativeAIGenerateTextBodyMessagesItemRole];
11982
+ export declare const GoogleGenerativeAIGenerateTextBodyMessagesItemRole: {
11983
+ readonly user: "user";
11984
+ readonly assistant: "assistant";
11985
+ readonly system: "system";
11986
+ };
11987
+ export type GoogleGenerativeAIGenerateTextBodyMessagesItemPartsItem = {
11988
+ /** Filename for file parts */
11989
+ filename?: string;
11990
+ /** MIME type of the media */
11991
+ mediaType?: string;
11992
+ /** Text content */
11993
+ text?: string;
11994
+ /** Type of message part (text, file, etc.) */
11995
+ type: string;
11996
+ /** URL for file or media */
11997
+ url?: string;
11998
+ };
11999
+ export type GoogleGenerativeAIGenerateTextBodyMessagesItem = {
12000
+ /** Content of the message */
12001
+ content?: string;
12002
+ /** Multi-part message content */
12003
+ parts?: GoogleGenerativeAIGenerateTextBodyMessagesItemPartsItem[];
12004
+ /** Role of the message sender */
12005
+ role: GoogleGenerativeAIGenerateTextBodyMessagesItemRole;
12006
+ };
12007
+ export type GoogleGenerativeAISetUserCredentials200 = {
12008
+ userId: string;
12009
+ };
12010
+ export type GoogleGenerativeAISetUserCredentialsBody = {
12011
+ /**
12012
+ * Google Gemini API key for this generated app user.
12013
+ * @minLength 1
12014
+ */
12015
+ apiKey: string;
12016
+ /**
12017
+ * Optional per-user default Google Gemini image generation model.
12018
+ * @minLength 1
12019
+ */
12020
+ imageModel?: string;
12021
+ /**
12022
+ * Optional per-user default Google Gemini model.
12023
+ * @minLength 1
12024
+ */
12025
+ model?: string;
12026
+ /** Existing integration user id. Omit to create a new integration user credential record. */
12027
+ userId?: string;
12028
+ };
12029
+ export type _GoogleDriveSelectDocuments200Meta = {
12030
+ googleDriveToken: string;
12031
+ };
12032
+ export type GoogleDriveSelectDocuments200 = {
12033
+ _meta: _GoogleDriveSelectDocuments200Meta;
12034
+ };
12035
+ export type GoogleDriveSelectDocumentsBody = {
12036
+ /** Integration user id returned by Google Drive OAuth. */
12037
+ userId: string;
12038
+ };
12039
+ export type GoogleDriveListPermissions200 = {
12040
+ [key: string]: unknown | null;
12041
+ };
12042
+ export type GoogleDriveListPermissionsBody = {
12043
+ /**
12044
+ * Google Drive file id.
12045
+ * @minLength 1
12046
+ */
12047
+ fileId: string;
12048
+ /**
12049
+ * Maximum number of records to return.
12050
+ * @minimum 0
12051
+ * @maximum 1000
12052
+ * @exclusiveMinimum
12053
+ */
12054
+ pageSize?: number;
12055
+ /** Pagination token. */
12056
+ pageToken?: string;
12057
+ /** Integration user id returned by Google Drive OAuth. */
12058
+ userId: string;
12059
+ };
12060
+ export type GoogleDriveDeletePermission200 = {
12061
+ success: boolean;
12062
+ };
12063
+ export type GoogleDriveDeletePermissionBody = {
12064
+ /**
12065
+ * Google Drive file id.
12066
+ * @minLength 1
12067
+ */
12068
+ fileId: string;
12069
+ /**
12070
+ * Google Drive permission id.
12071
+ * @minLength 1
12072
+ */
12073
+ permissionId: string;
12074
+ /** Integration user id returned by Google Drive OAuth. */
12075
+ userId: string;
12076
+ };
12077
+ export type GoogleDriveCreatePermission200 = {
12078
+ [key: string]: unknown | null;
12079
+ };
12080
+ export type GoogleDriveCreatePermissionBodyType = typeof GoogleDriveCreatePermissionBodyType[keyof typeof GoogleDriveCreatePermissionBodyType];
12081
+ export declare const GoogleDriveCreatePermissionBodyType: {
12082
+ readonly user: "user";
12083
+ readonly group: "group";
12084
+ readonly domain: "domain";
12085
+ readonly anyone: "anyone";
12086
+ };
12087
+ export type GoogleDriveCreatePermissionBodyRole = typeof GoogleDriveCreatePermissionBodyRole[keyof typeof GoogleDriveCreatePermissionBodyRole];
12088
+ export declare const GoogleDriveCreatePermissionBodyRole: {
12089
+ readonly owner: "owner";
12090
+ readonly organizer: "organizer";
12091
+ readonly fileOrganizer: "fileOrganizer";
12092
+ readonly writer: "writer";
12093
+ readonly commenter: "commenter";
12094
+ readonly reader: "reader";
12095
+ };
12096
+ export type GoogleDriveCreatePermissionBody = {
12097
+ allowFileDiscovery?: boolean;
12098
+ domain?: string;
12099
+ emailAddress?: string;
12100
+ emailMessage?: string;
12101
+ expirationTime?: string;
12102
+ /**
12103
+ * Google Drive file id.
12104
+ * @minLength 1
12105
+ */
12106
+ fileId: string;
12107
+ moveToNewOwnersRoot?: boolean;
12108
+ role: GoogleDriveCreatePermissionBodyRole;
12109
+ sendNotificationEmail?: boolean;
12110
+ transferOwnership?: boolean;
12111
+ type: GoogleDriveCreatePermissionBodyType;
12112
+ /** Integration user id returned by Google Drive OAuth. */
12113
+ userId: string;
12114
+ };
12115
+ export type GoogleDriveCopyFile200 = {
12116
+ [key: string]: unknown | null;
12117
+ };
12118
+ export type GoogleDriveCopyFileBodyProperties = {
12119
+ [key: string]: string;
12120
+ };
12121
+ export type GoogleDriveCopyFileBodyAppProperties = {
12122
+ [key: string]: string;
12123
+ };
12124
+ export type GoogleDriveCopyFileBody = {
12125
+ appProperties?: GoogleDriveCopyFileBodyAppProperties;
12126
+ description?: string;
12127
+ /**
12128
+ * Google Drive file id.
12129
+ * @minLength 1
12130
+ */
12131
+ fileId: string;
12132
+ mimeType?: string;
12133
+ name?: string;
12134
+ parents?: string[];
12135
+ properties?: GoogleDriveCopyFileBodyProperties;
12136
+ starred?: boolean;
12137
+ /** Integration user id returned by Google Drive OAuth. */
12138
+ userId: string;
12139
+ };
12140
+ export type GoogleDriveGetFile200AnyOfTwo = {
12141
+ contentType?: string;
12142
+ data: string;
12143
+ };
12144
+ export type GoogleDriveGetFile200AnyOf = {
12145
+ [key: string]: unknown | null;
12146
+ };
12147
+ export type GoogleDriveGetFile200 = GoogleDriveGetFile200AnyOf | GoogleDriveGetFile200AnyOfTwo;
12148
+ export type GoogleDriveGetFileBodyAlt = typeof GoogleDriveGetFileBodyAlt[keyof typeof GoogleDriveGetFileBodyAlt];
12149
+ export declare const GoogleDriveGetFileBodyAlt: {
12150
+ readonly json: "json";
12151
+ readonly media: "media";
12152
+ };
12153
+ export type GoogleDriveGetFileBody = {
12154
+ /** @nullable */
12155
+ acknowledgeAbuse?: boolean | null;
12156
+ alt?: GoogleDriveGetFileBodyAlt;
12157
+ /** Export MIME type for Google Workspace files, for example text/plain. */
12158
+ exportMimeType?: string;
12159
+ fields?: string;
12160
+ /**
12161
+ * Google Drive file id.
12162
+ * @minLength 1
12163
+ */
12164
+ fileId: string;
12165
+ /** @nullable */
12166
+ supportsAllDrives?: boolean | null;
12167
+ /** Integration user id returned by Google Drive OAuth. */
12168
+ userId: string;
12169
+ };
12170
+ export type GoogleDriveDeleteFile200 = {
12171
+ success: boolean;
12172
+ };
12173
+ export type GoogleDriveDeleteFileBody = {
12174
+ /**
12175
+ * Google Drive file id.
12176
+ * @minLength 1
12177
+ */
12178
+ fileId: string;
12179
+ /** Integration user id returned by Google Drive OAuth. */
12180
+ userId: string;
12181
+ };
12182
+ export type GoogleDriveUpdateFile200 = {
12183
+ [key: string]: unknown | null;
12184
+ };
12185
+ export type GoogleDriveUpdateFileBodyProperties = {
12186
+ [key: string]: string;
12187
+ };
12188
+ export type GoogleDriveUpdateFileBodyAppProperties = {
12189
+ [key: string]: string;
12190
+ };
12191
+ export type GoogleDriveUpdateFileBody = {
12192
+ appProperties?: GoogleDriveUpdateFileBodyAppProperties;
12193
+ /** Base64 encoded replacement content. */
12194
+ content?: string;
12195
+ description?: string;
10896
12196
  /**
10897
- * Schema for structured output
10898
- * @nullable
12197
+ * Google Drive file id.
12198
+ * @minLength 1
10899
12199
  */
10900
- outputSchema?: GoogleGenerativeAIGenerateTextBodyOutputSchema;
10901
- /** Required when the Google Generative AI integration config type is PerUser. */
10902
- userId?: string;
12200
+ fileId: string;
12201
+ mimeType?: string;
12202
+ name?: string;
12203
+ parents?: string[];
12204
+ properties?: GoogleDriveUpdateFileBodyProperties;
12205
+ starred?: boolean;
12206
+ trashed?: boolean;
12207
+ /** Integration user id returned by Google Drive OAuth. */
12208
+ userId: string;
10903
12209
  };
10904
- /**
10905
- * Role of the message sender
10906
- */
10907
- export type GoogleGenerativeAIGenerateTextBodyMessagesItemRole = typeof GoogleGenerativeAIGenerateTextBodyMessagesItemRole[keyof typeof GoogleGenerativeAIGenerateTextBodyMessagesItemRole];
10908
- export declare const GoogleGenerativeAIGenerateTextBodyMessagesItemRole: {
12210
+ export type GoogleDriveListFiles200 = {
12211
+ [key: string]: unknown | null;
12212
+ };
12213
+ export type GoogleDriveListFilesCorpora = typeof GoogleDriveListFilesCorpora[keyof typeof GoogleDriveListFilesCorpora];
12214
+ export declare const GoogleDriveListFilesCorpora: {
10909
12215
  readonly user: "user";
10910
- readonly assistant: "assistant";
10911
- readonly system: "system";
12216
+ readonly domain: "domain";
12217
+ readonly drive: "drive";
12218
+ readonly allDrives: "allDrives";
10912
12219
  };
10913
- export type GoogleGenerativeAIGenerateTextBodyMessagesItemPartsItem = {
10914
- /** Filename for file parts */
10915
- filename?: string;
10916
- /** MIME type of the media */
10917
- mediaType?: string;
10918
- /** Text content */
10919
- text?: string;
10920
- /** Type of message part (text, file, etc.) */
10921
- type: string;
10922
- /** URL for file or media */
10923
- url?: string;
12220
+ export type GoogleDriveListFilesParams = {
12221
+ userId: string;
12222
+ q?: string;
12223
+ spaces?: string;
12224
+ corpora?: GoogleDriveListFilesCorpora;
12225
+ driveId?: string;
12226
+ includeItemsFromAllDrives?: boolean | null;
12227
+ supportsAllDrives?: boolean | null;
12228
+ orderBy?: string;
12229
+ fields?: string;
12230
+ pageSize?: number;
12231
+ pageToken?: string;
10924
12232
  };
10925
- export type GoogleGenerativeAIGenerateTextBodyMessagesItem = {
10926
- /** Content of the message */
12233
+ export type GoogleDriveCreateFile200 = {
12234
+ [key: string]: unknown | null;
12235
+ };
12236
+ export type GoogleDriveCreateFileBodyProperties = {
12237
+ [key: string]: string;
12238
+ };
12239
+ export type GoogleDriveCreateFileBodyAppProperties = {
12240
+ [key: string]: string;
12241
+ };
12242
+ export type GoogleDriveCreateFileBody = {
12243
+ appProperties?: GoogleDriveCreateFileBodyAppProperties;
12244
+ /** Base64 encoded file content. */
10927
12245
  content?: string;
10928
- /** Multi-part message content */
10929
- parts?: GoogleGenerativeAIGenerateTextBodyMessagesItemPartsItem[];
10930
- /** Role of the message sender */
10931
- role: GoogleGenerativeAIGenerateTextBodyMessagesItemRole;
12246
+ description?: string;
12247
+ /** MIME type. Use application/vnd.google-apps.folder to create a folder. */
12248
+ mimeType?: string;
12249
+ /**
12250
+ * Name of the file or folder.
12251
+ * @minLength 1
12252
+ */
12253
+ name: string;
12254
+ /** Parent folder ids. */
12255
+ parents?: string[];
12256
+ properties?: GoogleDriveCreateFileBodyProperties;
12257
+ starred?: boolean;
12258
+ /** Integration user id returned by Google Drive OAuth. */
12259
+ userId: string;
10932
12260
  };
10933
- export type GoogleGenerativeAISetUserCredentials200 = {
12261
+ export type GoogleDriveOauthCallback200 = {
12262
+ connected: boolean;
10934
12263
  userId: string;
10935
12264
  };
10936
- export type GoogleGenerativeAISetUserCredentialsBody = {
12265
+ export type GoogleDriveOauthCallbackParams = {
12266
+ code: string;
12267
+ state: string;
12268
+ error?: string;
12269
+ };
12270
+ export type GoogleDriveSetUserCredentials200 = {
12271
+ userId: string;
12272
+ };
12273
+ export type GoogleDriveSetUserCredentialsBody = {
10937
12274
  /**
10938
- * Google Gemini API key for this generated app user.
12275
+ * Google OAuth client ID for this user.
10939
12276
  * @minLength 1
10940
12277
  */
10941
- apiKey: string;
12278
+ clientId: string;
10942
12279
  /**
10943
- * Optional per-user default Google Gemini image generation model.
12280
+ * Google OAuth client secret for this user.
10944
12281
  * @minLength 1
10945
12282
  */
10946
- imageModel?: string;
12283
+ clientSecret: string;
12284
+ /** Existing integration user id. Omit to create a new integration user credential record. */
12285
+ userId?: string;
12286
+ };
12287
+ export type GoogleDriveAuthStart200 = {
12288
+ url: string;
12289
+ userId: string;
12290
+ };
12291
+ export type GoogleDriveAuthStartBody = {
10947
12292
  /**
10948
- * Optional per-user default Google Gemini model.
12293
+ * App or agent end-user id. Used to find or create the credential row and auto-resolve userId on later calls.
10949
12294
  * @minLength 1
10950
12295
  */
10951
- model?: string;
12296
+ externalUserId?: string;
12297
+ /** URL to redirect the browser to after OAuth completes. */
12298
+ originalRedirectUrl?: string;
12299
+ /** Google OAuth scopes to request. */
12300
+ scopes?: string[];
10952
12301
  /** Existing integration user id. Omit to create a new integration user credential record. */
10953
12302
  userId?: string;
10954
12303
  };
@@ -11113,6 +12462,23 @@ export type GmailSendEmailBody = {
11113
12462
  /** Integration user id returned by the Gmail OAuth flow. */
11114
12463
  userId: string;
11115
12464
  };
12465
+ export type GmailSetUserCredentials200 = {
12466
+ userId: string;
12467
+ };
12468
+ export type GmailSetUserCredentialsBody = {
12469
+ /**
12470
+ * Google OAuth client ID for this user.
12471
+ * @minLength 1
12472
+ */
12473
+ clientId: string;
12474
+ /**
12475
+ * Google OAuth client secret for this user.
12476
+ * @minLength 1
12477
+ */
12478
+ clientSecret: string;
12479
+ /** Existing integration user id. Omit to create a new integration user credential record. */
12480
+ userId?: string;
12481
+ };
11116
12482
  export type GmailAuthStart200 = {
11117
12483
  url: string;
11118
12484
  userId: string;
@@ -11122,11 +12488,435 @@ export type GmailAuthStartBody = {
11122
12488
  clientId?: string;
11123
12489
  /** Required for PerUser Gmail configs. Ignored for Shared configs. */
11124
12490
  clientSecret?: string;
12491
+ /**
12492
+ * App user id from the agent or connect flow. Used to find or create the credential row.
12493
+ * @minLength 1
12494
+ */
12495
+ externalUserId?: string;
11125
12496
  /** Generated app URL to redirect the browser to after OAuth completes. */
11126
12497
  originalRedirectUrl?: string;
11127
12498
  /** Google OAuth scopes to request. */
11128
12499
  scopes?: string[];
11129
- /** Existing integration user id. Omit to create a new integration user credential record. */
12500
+ /** Existing integration user id (internal). Use when reconnecting an existing Hub user. */
12501
+ userId?: string;
12502
+ };
12503
+ /**
12504
+ * The author of the note.
12505
+ */
12506
+ export type GitlabCreateMergeRequestNote200Author = {
12507
+ /** The numeric user ID. */
12508
+ id: number;
12509
+ /** The display name of the author. */
12510
+ name: string;
12511
+ /** The username of the author. */
12512
+ username: string;
12513
+ [key: string]: unknown | null;
12514
+ };
12515
+ export type GitlabCreateMergeRequestNote200 = {
12516
+ /** The author of the note. */
12517
+ author: GitlabCreateMergeRequestNote200Author;
12518
+ /** The content body of the note. */
12519
+ body: string;
12520
+ /** The unique numeric ID of the note. */
12521
+ id: number;
12522
+ /** The numeric ID of the target object. */
12523
+ noteable_id: number;
12524
+ /** The project-specific numeric ID of the target. */
12525
+ noteable_iid?: number;
12526
+ /** The type of target object (e.g. "MergeRequest"). */
12527
+ noteable_type: string;
12528
+ /** Whether the note is system-generated. */
12529
+ system: boolean;
12530
+ [key: string]: unknown | null;
12531
+ };
12532
+ /**
12533
+ * Project id or `namespace/project` path.
12534
+ */
12535
+ export type GitlabCreateMergeRequestNoteBodyId = string | number;
12536
+ export type GitlabCreateMergeRequestNoteBody = {
12537
+ /**
12538
+ * The note content.
12539
+ * @minLength 1
12540
+ */
12541
+ body: string;
12542
+ /** Project id or `namespace/project` path. */
12543
+ id: GitlabCreateMergeRequestNoteBodyId;
12544
+ /**
12545
+ * Merge request iid.
12546
+ * @minimum 0
12547
+ * @exclusiveMinimum
12548
+ */
12549
+ mergeRequestIid: number;
12550
+ /** Integration user id for GitLab requests. */
12551
+ userId: string;
12552
+ [key: string]: unknown | null;
12553
+ };
12554
+ /**
12555
+ * The author of the note.
12556
+ */
12557
+ export type GitlabListMergeRequestNotes200ItemAuthor = {
12558
+ /** The numeric user ID. */
12559
+ id: number;
12560
+ /** The display name of the author. */
12561
+ name: string;
12562
+ /** The username of the author. */
12563
+ username: string;
12564
+ [key: string]: unknown | null;
12565
+ };
12566
+ export type GitlabListMergeRequestNotes200Item = {
12567
+ /** The author of the note. */
12568
+ author: GitlabListMergeRequestNotes200ItemAuthor;
12569
+ /** The content body of the note. */
12570
+ body: string;
12571
+ /** The unique numeric ID of the note. */
12572
+ id: number;
12573
+ /** The numeric ID of the target object. */
12574
+ noteable_id: number;
12575
+ /** The project-specific numeric ID of the target. */
12576
+ noteable_iid?: number;
12577
+ /** The type of target object (e.g. "MergeRequest"). */
12578
+ noteable_type: string;
12579
+ /** Whether the note is system-generated. */
12580
+ system: boolean;
12581
+ [key: string]: unknown | null;
12582
+ };
12583
+ /**
12584
+ * Sort order.
12585
+ */
12586
+ export type GitlabListMergeRequestNotesBodySort = typeof GitlabListMergeRequestNotesBodySort[keyof typeof GitlabListMergeRequestNotesBodySort];
12587
+ export declare const GitlabListMergeRequestNotesBodySort: {
12588
+ readonly asc: "asc";
12589
+ readonly desc: "desc";
12590
+ };
12591
+ /**
12592
+ * Order notes by field.
12593
+ */
12594
+ export type GitlabListMergeRequestNotesBodyOrderBy = typeof GitlabListMergeRequestNotesBodyOrderBy[keyof typeof GitlabListMergeRequestNotesBodyOrderBy];
12595
+ export declare const GitlabListMergeRequestNotesBodyOrderBy: {
12596
+ readonly created_at: "created_at";
12597
+ readonly updated_at: "updated_at";
12598
+ };
12599
+ /**
12600
+ * Project id or `namespace/project` path.
12601
+ */
12602
+ export type GitlabListMergeRequestNotesBodyId = string | number;
12603
+ export type GitlabListMergeRequestNotesBody = {
12604
+ /** Project id or `namespace/project` path. */
12605
+ id: GitlabListMergeRequestNotesBodyId;
12606
+ /**
12607
+ * Merge request iid.
12608
+ * @minimum 0
12609
+ * @exclusiveMinimum
12610
+ */
12611
+ mergeRequestIid: number;
12612
+ /** Order notes by field. */
12613
+ orderBy?: GitlabListMergeRequestNotesBodyOrderBy;
12614
+ /** Sort order. */
12615
+ sort?: GitlabListMergeRequestNotesBodySort;
12616
+ /** Integration user id for GitLab requests. */
12617
+ userId: string;
12618
+ [key: string]: unknown | null;
12619
+ };
12620
+ export type GitlabMergeMergeRequest200 = {
12621
+ /** The description of the merge request. */
12622
+ description?: string;
12623
+ /** The unique numeric ID of the merge request. */
12624
+ id: number;
12625
+ /** The project-specific numeric ID of the merge request. */
12626
+ iid: number;
12627
+ /** The ID of the project. */
12628
+ project_id: number;
12629
+ /** The source branch of the merge request. */
12630
+ source_branch: string;
12631
+ /** The state of the merge request (e.g. "opened", "merged", "closed"). */
12632
+ state: string;
12633
+ /** The target branch of the merge request. */
12634
+ target_branch: string;
12635
+ /** The title of the merge request. */
12636
+ title: string;
12637
+ /** The URL to the merge request on GitLab. */
12638
+ web_url: string;
12639
+ [key: string]: unknown | null;
12640
+ };
12641
+ /**
12642
+ * Project id or `namespace/project` path.
12643
+ */
12644
+ export type GitlabMergeMergeRequestBodyId = string | number;
12645
+ export type GitlabMergeMergeRequestBody = {
12646
+ /** Project id or `namespace/project` path. */
12647
+ id: GitlabMergeMergeRequestBodyId;
12648
+ /** Custom merge commit message. */
12649
+ mergeCommitMessage?: string;
12650
+ /**
12651
+ * Merge request iid.
12652
+ * @minimum 0
12653
+ * @exclusiveMinimum
12654
+ */
12655
+ mergeRequestIid: number;
12656
+ /** Merge once the pipeline succeeds. */
12657
+ mergeWhenPipelineSucceeds?: boolean;
12658
+ /** If set, the merge only succeeds if the head matches. */
12659
+ sha?: string;
12660
+ /** Remove the source branch after merge. */
12661
+ shouldRemoveSourceBranch?: boolean;
12662
+ /** Squash commits on merge. */
12663
+ squash?: boolean;
12664
+ /** Integration user id for GitLab requests. */
12665
+ userId: string;
12666
+ [key: string]: unknown | null;
12667
+ };
12668
+ export type GitlabGetMergeRequestDiffs200Item = {
12669
+ /** The file mode in the source commit. */
12670
+ a_mode?: string;
12671
+ /** The file mode in the target commit. */
12672
+ b_mode?: string;
12673
+ /** Whether the file was deleted. */
12674
+ deleted_file: boolean;
12675
+ /** The git diff string. */
12676
+ diff: string;
12677
+ /** Whether this is a newly created file. */
12678
+ new_file: boolean;
12679
+ /** The path of the file in the target commit. */
12680
+ new_path: string;
12681
+ /** The path of the file in the source commit. */
12682
+ old_path: string;
12683
+ /** Whether the file was renamed. */
12684
+ renamed_file: boolean;
12685
+ [key: string]: unknown | null;
12686
+ };
12687
+ /**
12688
+ * Project id or `namespace/project` path.
12689
+ */
12690
+ export type GitlabGetMergeRequestDiffsBodyId = string | number;
12691
+ export type GitlabGetMergeRequestDiffsBody = {
12692
+ /** Project id or `namespace/project` path. */
12693
+ id: GitlabGetMergeRequestDiffsBodyId;
12694
+ /**
12695
+ * Merge request iid.
12696
+ * @minimum 0
12697
+ * @exclusiveMinimum
12698
+ */
12699
+ mergeRequestIid: number;
12700
+ /**
12701
+ * Page number.
12702
+ * @minimum 0
12703
+ * @exclusiveMinimum
12704
+ */
12705
+ page?: number;
12706
+ /**
12707
+ * Results per page.
12708
+ * @minimum 0
12709
+ * @exclusiveMinimum
12710
+ */
12711
+ perPage?: number;
12712
+ /** Integration user id for GitLab requests. */
12713
+ userId: string;
12714
+ [key: string]: unknown | null;
12715
+ };
12716
+ export type GitlabGetMergeRequest200 = {
12717
+ /** The description of the merge request. */
12718
+ description?: string;
12719
+ /** The unique numeric ID of the merge request. */
12720
+ id: number;
12721
+ /** The project-specific numeric ID of the merge request. */
12722
+ iid: number;
12723
+ /** The ID of the project. */
12724
+ project_id: number;
12725
+ /** The source branch of the merge request. */
12726
+ source_branch: string;
12727
+ /** The state of the merge request (e.g. "opened", "merged", "closed"). */
12728
+ state: string;
12729
+ /** The target branch of the merge request. */
12730
+ target_branch: string;
12731
+ /** The title of the merge request. */
12732
+ title: string;
12733
+ /** The URL to the merge request on GitLab. */
12734
+ web_url: string;
12735
+ [key: string]: unknown | null;
12736
+ };
12737
+ /**
12738
+ * Project id or `namespace/project` path.
12739
+ */
12740
+ export type GitlabGetMergeRequestBodyId = string | number;
12741
+ export type GitlabGetMergeRequestBody = {
12742
+ /** Project id or `namespace/project` path. */
12743
+ id: GitlabGetMergeRequestBodyId;
12744
+ /**
12745
+ * Merge request iid.
12746
+ * @minimum 0
12747
+ * @exclusiveMinimum
12748
+ */
12749
+ mergeRequestIid: number;
12750
+ /** Integration user id for GitLab requests. */
12751
+ userId: string;
12752
+ [key: string]: unknown | null;
12753
+ };
12754
+ export type GitlabListMergeRequests200Item = {
12755
+ /** The description of the merge request. */
12756
+ description?: string;
12757
+ /** The unique numeric ID of the merge request. */
12758
+ id: number;
12759
+ /** The project-specific numeric ID of the merge request. */
12760
+ iid: number;
12761
+ /** The ID of the project. */
12762
+ project_id: number;
12763
+ /** The source branch of the merge request. */
12764
+ source_branch: string;
12765
+ /** The state of the merge request (e.g. "opened", "merged", "closed"). */
12766
+ state: string;
12767
+ /** The target branch of the merge request. */
12768
+ target_branch: string;
12769
+ /** The title of the merge request. */
12770
+ title: string;
12771
+ /** The URL to the merge request on GitLab. */
12772
+ web_url: string;
12773
+ [key: string]: unknown | null;
12774
+ };
12775
+ /**
12776
+ * Project id or `namespace/project` path.
12777
+ */
12778
+ export type GitlabListMergeRequestsBodyId = string | number;
12779
+ export type GitlabListMergeRequestsBody = {
12780
+ /** Project id or `namespace/project` path. */
12781
+ id: GitlabListMergeRequestsBodyId;
12782
+ /**
12783
+ * Page number.
12784
+ * @minimum 0
12785
+ * @exclusiveMinimum
12786
+ */
12787
+ page?: number;
12788
+ /**
12789
+ * Results per page.
12790
+ * @minimum 0
12791
+ * @exclusiveMinimum
12792
+ */
12793
+ perPage?: number;
12794
+ /** Filter by scope. */
12795
+ scope?: string;
12796
+ /** Filter by state (opened, closed, merged, locked, all). */
12797
+ state?: string;
12798
+ /** Integration user id for GitLab requests. */
12799
+ userId: string;
12800
+ [key: string]: unknown | null;
12801
+ };
12802
+ export type GitlabGetProject200 = {
12803
+ /** The default branch name. */
12804
+ default_branch?: string;
12805
+ /** Project description. */
12806
+ description?: string;
12807
+ /** The numeric project ID. */
12808
+ id: number;
12809
+ /** The display name of the project. */
12810
+ name: string;
12811
+ /** Project name prefixed with its namespace. */
12812
+ name_with_namespace?: string;
12813
+ /** The path of the project. */
12814
+ path: string;
12815
+ /** The path of the project prefixed with its namespace. */
12816
+ path_with_namespace: string;
12817
+ /** The URL to the project on GitLab. */
12818
+ web_url: string;
12819
+ [key: string]: unknown | null;
12820
+ };
12821
+ /**
12822
+ * Project id or `namespace/project` path.
12823
+ */
12824
+ export type GitlabGetProjectBodyId = string | number;
12825
+ export type GitlabGetProjectBody = {
12826
+ /** Project id or `namespace/project` path. */
12827
+ id: GitlabGetProjectBodyId;
12828
+ /** Integration user id for GitLab requests. */
12829
+ userId: string;
12830
+ [key: string]: unknown | null;
12831
+ };
12832
+ export type GitlabListProjects200Item = {
12833
+ /** The default branch name. */
12834
+ default_branch?: string;
12835
+ /** Project description. */
12836
+ description?: string;
12837
+ /** The numeric project ID. */
12838
+ id: number;
12839
+ /** The display name of the project. */
12840
+ name: string;
12841
+ /** Project name prefixed with its namespace. */
12842
+ name_with_namespace?: string;
12843
+ /** The path of the project. */
12844
+ path: string;
12845
+ /** The path of the project prefixed with its namespace. */
12846
+ path_with_namespace: string;
12847
+ /** The URL to the project on GitLab. */
12848
+ web_url: string;
12849
+ [key: string]: unknown | null;
12850
+ };
12851
+ export type GitlabListProjectsBody = {
12852
+ /** Limit to projects the user is a member of. */
12853
+ membership?: boolean;
12854
+ /** Limit to projects owned by the user. */
12855
+ owned?: boolean;
12856
+ /**
12857
+ * Page number.
12858
+ * @minimum 0
12859
+ * @exclusiveMinimum
12860
+ */
12861
+ page?: number;
12862
+ /**
12863
+ * Results per page.
12864
+ * @minimum 0
12865
+ * @exclusiveMinimum
12866
+ */
12867
+ perPage?: number;
12868
+ /** Filter projects by name. */
12869
+ search?: string;
12870
+ /** Integration user id for GitLab requests. */
12871
+ userId: string;
12872
+ [key: string]: unknown | null;
12873
+ };
12874
+ export type GitlabGetCurrentUser200 = {
12875
+ /** The URL of the user's avatar image. */
12876
+ avatar_url?: string;
12877
+ /** The numeric user ID. */
12878
+ id: number;
12879
+ /** The display name of the user. */
12880
+ name: string;
12881
+ /** The state of the user account (e.g. "active"). */
12882
+ state: string;
12883
+ /** The unique GitLab username. */
12884
+ username: string;
12885
+ /** The URL to the user's profile on GitLab. */
12886
+ web_url?: string;
12887
+ [key: string]: unknown | null;
12888
+ };
12889
+ export type GitlabGetCurrentUserBody = {
12890
+ /** Integration user id for GitLab requests. */
12891
+ userId: string;
12892
+ [key: string]: unknown | null;
12893
+ };
12894
+ export type GitlabOauthCallback200 = {
12895
+ success: boolean;
12896
+ userId: string;
12897
+ };
12898
+ export type GitlabOauthCallbackParams = {
12899
+ code?: string;
12900
+ state?: string;
12901
+ error?: string;
12902
+ };
12903
+ export type GitlabOauthInitiate200 = {
12904
+ authorizationUrl: string;
12905
+ };
12906
+ export type GitlabOauthInitiateBody = {
12907
+ /** @minLength 1 */
12908
+ externalUserId?: string;
12909
+ originalRedirectUrl: string;
12910
+ userId?: string;
12911
+ };
12912
+ export type GitlabSetUserCredentials200 = {
12913
+ userId: string;
12914
+ };
12915
+ export type GitlabSetUserCredentialsBody = {
12916
+ /** @minLength 1 */
12917
+ clientId: string;
12918
+ /** @minLength 1 */
12919
+ clientSecret: string;
11130
12920
  userId?: string;
11131
12921
  };
11132
12922
  export type AzureBlobStorageCreateWriteStream200 = {
@@ -11610,7 +13400,20 @@ export declare const getIntegrationsAPI: () => {
11610
13400
  azureBlobStorageUploadFile: (azureBlobStorageUploadFileBody: AzureBlobStorageUploadFileBody) => Promise<AzureBlobStorageUploadFile200>;
11611
13401
  azureBlobStorageCreateReadStream: (azureBlobStorageCreateReadStreamBody: AzureBlobStorageCreateReadStreamBody) => Promise<void>;
11612
13402
  azureBlobStorageCreateWriteStream: (azureBlobStorageCreateWriteStreamBody: Blob, params: AzureBlobStorageCreateWriteStreamParams) => Promise<AzureBlobStorageCreateWriteStream200>;
13403
+ gitlabSetUserCredentials: (gitlabSetUserCredentialsBody: GitlabSetUserCredentialsBody) => Promise<GitlabSetUserCredentials200>;
13404
+ gitlabOauthInitiate: (gitlabOauthInitiateBody: GitlabOauthInitiateBody) => Promise<GitlabOauthInitiate200>;
13405
+ gitlabOauthCallback: (params?: GitlabOauthCallbackParams) => Promise<GitlabOauthCallback200>;
13406
+ gitlabGetCurrentUser: (gitlabGetCurrentUserBody: GitlabGetCurrentUserBody) => Promise<GitlabGetCurrentUser200>;
13407
+ gitlabListProjects: (gitlabListProjectsBody: GitlabListProjectsBody) => Promise<GitlabListProjects200Item[]>;
13408
+ gitlabGetProject: (gitlabGetProjectBody: GitlabGetProjectBody) => Promise<GitlabGetProject200>;
13409
+ gitlabListMergeRequests: (gitlabListMergeRequestsBody: GitlabListMergeRequestsBody) => Promise<GitlabListMergeRequests200Item[]>;
13410
+ gitlabGetMergeRequest: (gitlabGetMergeRequestBody: GitlabGetMergeRequestBody) => Promise<GitlabGetMergeRequest200>;
13411
+ gitlabGetMergeRequestDiffs: (gitlabGetMergeRequestDiffsBody: GitlabGetMergeRequestDiffsBody) => Promise<GitlabGetMergeRequestDiffs200Item[]>;
13412
+ gitlabMergeMergeRequest: (gitlabMergeMergeRequestBody: GitlabMergeMergeRequestBody) => Promise<GitlabMergeMergeRequest200>;
13413
+ gitlabListMergeRequestNotes: (gitlabListMergeRequestNotesBody: GitlabListMergeRequestNotesBody) => Promise<GitlabListMergeRequestNotes200Item[]>;
13414
+ gitlabCreateMergeRequestNote: (gitlabCreateMergeRequestNoteBody: GitlabCreateMergeRequestNoteBody) => Promise<GitlabCreateMergeRequestNote200>;
11613
13415
  gmailAuthStart: (gmailAuthStartBody: GmailAuthStartBody) => Promise<GmailAuthStart200>;
13416
+ gmailSetUserCredentials: (gmailSetUserCredentialsBody: GmailSetUserCredentialsBody) => Promise<GmailSetUserCredentials200>;
11614
13417
  gmailOauthCallback: () => Promise<void>;
11615
13418
  gmailSendEmail: (gmailSendEmailBody: GmailSendEmailBody) => Promise<GmailSendEmail200>;
11616
13419
  googleCloudStorageSetUserCredentials: (googleCloudStorageSetUserCredentialsBody: GoogleCloudStorageSetUserCredentialsBody) => Promise<GoogleCloudStorageSetUserCredentials200>;
@@ -11625,6 +13428,19 @@ export declare const getIntegrationsAPI: () => {
11625
13428
  googleCloudStorageUploadFile: (googleCloudStorageUploadFileBody: GoogleCloudStorageUploadFileBody) => Promise<GoogleCloudStorageUploadFile200>;
11626
13429
  googleCloudStorageCreateReadStream: (googleCloudStorageCreateReadStreamBody: GoogleCloudStorageCreateReadStreamBody) => Promise<void>;
11627
13430
  googleCloudStorageCreateWriteStream: (googleCloudStorageCreateWriteStreamBody: Blob, params: GoogleCloudStorageCreateWriteStreamParams) => Promise<GoogleCloudStorageCreateWriteStream200>;
13431
+ googleDriveAuthStart: (googleDriveAuthStartBody: GoogleDriveAuthStartBody) => Promise<GoogleDriveAuthStart200>;
13432
+ googleDriveSetUserCredentials: (googleDriveSetUserCredentialsBody: GoogleDriveSetUserCredentialsBody) => Promise<GoogleDriveSetUserCredentials200>;
13433
+ googleDriveOauthCallback: (params: GoogleDriveOauthCallbackParams) => Promise<GoogleDriveOauthCallback200>;
13434
+ googleDriveCreateFile: (googleDriveCreateFileBody: GoogleDriveCreateFileBody) => Promise<GoogleDriveCreateFile200>;
13435
+ googleDriveListFiles: (params: GoogleDriveListFilesParams) => Promise<GoogleDriveListFiles200>;
13436
+ googleDriveUpdateFile: (googleDriveUpdateFileBody: GoogleDriveUpdateFileBody) => Promise<GoogleDriveUpdateFile200>;
13437
+ googleDriveDeleteFile: (googleDriveDeleteFileBody: GoogleDriveDeleteFileBody) => Promise<GoogleDriveDeleteFile200>;
13438
+ googleDriveGetFile: (googleDriveGetFileBody: GoogleDriveGetFileBody) => Promise<GoogleDriveGetFile200>;
13439
+ googleDriveCopyFile: (googleDriveCopyFileBody: GoogleDriveCopyFileBody) => Promise<GoogleDriveCopyFile200>;
13440
+ googleDriveCreatePermission: (googleDriveCreatePermissionBody: GoogleDriveCreatePermissionBody) => Promise<GoogleDriveCreatePermission200>;
13441
+ googleDriveDeletePermission: (googleDriveDeletePermissionBody: GoogleDriveDeletePermissionBody) => Promise<GoogleDriveDeletePermission200>;
13442
+ googleDriveListPermissions: (googleDriveListPermissionsBody: GoogleDriveListPermissionsBody) => Promise<GoogleDriveListPermissions200>;
13443
+ googleDriveSelectDocuments: (googleDriveSelectDocumentsBody: GoogleDriveSelectDocumentsBody) => Promise<GoogleDriveSelectDocuments200>;
11628
13444
  googleGenerativeAISetUserCredentials: (googleGenerativeAISetUserCredentialsBody: GoogleGenerativeAISetUserCredentialsBody) => Promise<GoogleGenerativeAISetUserCredentials200>;
11629
13445
  googleGenerativeAIGenerateText: (googleGenerativeAIGenerateTextBody: GoogleGenerativeAIGenerateTextBody) => Promise<GoogleGenerativeAIGenerateText200>;
11630
13446
  googleGenerativeAIGenerateImage: (googleGenerativeAIGenerateImageBody: GoogleGenerativeAIGenerateImageBody) => Promise<Blob>;
@@ -11633,9 +13449,60 @@ export declare const getIntegrationsAPI: () => {
11633
13449
  googleOAuthGetAuthorizationUrl: (googleOAuthGetAuthorizationUrlBody: GoogleOAuthGetAuthorizationUrlBody) => Promise<GoogleOAuthGetAuthorizationUrl200>;
11634
13450
  googleOAuthGetUserProfile: (googleOAuthGetUserProfileBody: GoogleOAuthGetUserProfileBody) => Promise<GoogleOAuthGetUserProfile200>;
11635
13451
  googleOAuthOauthCallback: () => Promise<unknown>;
13452
+ googleSheetsAuthStart: (googleSheetsAuthStartBody: GoogleSheetsAuthStartBody) => Promise<GoogleSheetsAuthStart200>;
13453
+ googleSheetsSetUserCredentials: (googleSheetsSetUserCredentialsBody: GoogleSheetsSetUserCredentialsBody) => Promise<GoogleSheetsSetUserCredentials200>;
13454
+ googleSheetsOauthCallback: () => Promise<void>;
13455
+ googleSheetsCreateSpreadsheet: (googleSheetsCreateSpreadsheetBody: GoogleSheetsCreateSpreadsheetBody) => Promise<GoogleSheetsCreateSpreadsheet200>;
13456
+ googleSheetsGetValues: (googleSheetsGetValuesBody: GoogleSheetsGetValuesBody) => Promise<GoogleSheetsGetValues200>;
13457
+ googleSheetsUpdateValues: (googleSheetsUpdateValuesBody: GoogleSheetsUpdateValuesBody) => Promise<GoogleSheetsUpdateValues200>;
13458
+ googleSheetsAppendValues: (googleSheetsAppendValuesBody: GoogleSheetsAppendValuesBody) => Promise<GoogleSheetsAppendValues200>;
13459
+ googleSheetsBatchUpdate: (googleSheetsBatchUpdateBody: GoogleSheetsBatchUpdateBody) => Promise<GoogleSheetsBatchUpdate200>;
13460
+ googleSlidesAuthStart: (googleSlidesAuthStartBody: GoogleSlidesAuthStartBody) => Promise<GoogleSlidesAuthStart200>;
13461
+ googleSlidesSetUserCredentials: (googleSlidesSetUserCredentialsBody: GoogleSlidesSetUserCredentialsBody) => Promise<GoogleSlidesSetUserCredentials200>;
13462
+ googleSlidesOauthCallback: () => Promise<void>;
13463
+ googleSlidesCreatePresentation: (googleSlidesCreatePresentationBody: GoogleSlidesCreatePresentationBody) => Promise<GoogleSlidesCreatePresentation200>;
13464
+ googleSlidesGetPresentation: (googleSlidesGetPresentationBody: GoogleSlidesGetPresentationBody) => Promise<GoogleSlidesGetPresentation200>;
13465
+ googleSlidesBatchUpdatePresentation: (googleSlidesBatchUpdatePresentationBody: GoogleSlidesBatchUpdatePresentationBody) => Promise<GoogleSlidesBatchUpdatePresentation200>;
13466
+ jiraOauthInitiate: (jiraOauthInitiateBody: JiraOauthInitiateBody) => Promise<JiraOauthInitiate200>;
13467
+ jiraSetUserCredentials: (jiraSetUserCredentialsBody: JiraSetUserCredentialsBody) => Promise<JiraSetUserCredentials200>;
13468
+ jiraOauthCallback: (params?: JiraOauthCallbackParams) => Promise<JiraOauthCallback200>;
13469
+ jiraCreateIssue: (jiraCreateIssueBody: JiraCreateIssueBody) => Promise<JiraCreateIssue200>;
13470
+ jiraSearchIssues: (jiraSearchIssuesBody: JiraSearchIssuesBody) => Promise<JiraSearchIssues200>;
13471
+ jiraGetIssue: (jiraGetIssueBody: JiraGetIssueBody) => Promise<JiraGetIssue200>;
13472
+ jiraUpdateIssue: (jiraUpdateIssueBody: JiraUpdateIssueBody) => Promise<unknown>;
13473
+ jiraAddComment: (jiraAddCommentBody: JiraAddCommentBody) => Promise<JiraAddComment200>;
13474
+ jiraListProjects: (jiraListProjectsBody: JiraListProjectsBody) => Promise<JiraListProjects200>;
13475
+ jiraListTransitions: (jiraListTransitionsBody: JiraListTransitionsBody) => Promise<JiraListTransitions200>;
13476
+ jiraTransitionIssue: (jiraTransitionIssueBody: JiraTransitionIssueBody) => Promise<unknown>;
13477
+ jiraListBoards: (jiraListBoardsBody: JiraListBoardsBody) => Promise<JiraListBoards200>;
13478
+ jiraListSprints: (jiraListSprintsBody: JiraListSprintsBody) => Promise<JiraListSprints200>;
13479
+ jiraCreateSprint: (jiraCreateSprintBody: JiraCreateSprintBody) => Promise<JiraCreateSprint200>;
13480
+ jiraUpdateSprint: (jiraUpdateSprintBody: JiraUpdateSprintBody) => Promise<JiraUpdateSprint200>;
13481
+ jiraMoveIssuesToBacklog: (jiraMoveIssuesToBacklogBody: JiraMoveIssuesToBacklogBody) => Promise<unknown>;
13482
+ jiraMoveIssuesToSprint: (jiraMoveIssuesToSprintBody: JiraMoveIssuesToSprintBody) => Promise<unknown>;
11636
13483
  openaiSetUserCredentials: (openaiSetUserCredentialsBody: OpenaiSetUserCredentialsBody) => Promise<OpenaiSetUserCredentials200>;
11637
13484
  openaiGenerateText: (openaiGenerateTextBody: OpenaiGenerateTextBody) => Promise<OpenaiGenerateText200>;
11638
13485
  openaiCreateStream: (openaiCreateStreamBody: OpenaiCreateStreamBody) => Promise<string>;
13486
+ plaidStartHostedLink: (plaidStartHostedLinkBody: PlaidStartHostedLinkBody) => Promise<PlaidStartHostedLink200>;
13487
+ plaidSetUserCredentials: (plaidSetUserCredentialsBody: PlaidSetUserCredentialsBody) => Promise<PlaidSetUserCredentials200>;
13488
+ plaidHostedLinkCallback: (params?: PlaidHostedLinkCallbackParams) => Promise<void>;
13489
+ plaidGetAccounts: (plaidGetAccountsBody: PlaidGetAccountsBody) => Promise<PlaidGetAccounts200>;
13490
+ plaidGetAccountsBalance: (plaidGetAccountsBalanceBody: PlaidGetAccountsBalanceBody) => Promise<PlaidGetAccountsBalance200>;
13491
+ plaidGetAuth: (plaidGetAuthBody: PlaidGetAuthBody) => Promise<PlaidGetAuth200>;
13492
+ plaidTransactionsSync: (plaidTransactionsSyncBody: PlaidTransactionsSyncBody) => Promise<PlaidTransactionsSync200>;
13493
+ plaidGetRecurringTransactions: (plaidGetRecurringTransactionsBody: PlaidGetRecurringTransactionsBody) => Promise<PlaidGetRecurringTransactions200>;
13494
+ plaidGetTransactions: (plaidGetTransactionsBody: PlaidGetTransactionsBody) => Promise<PlaidGetTransactions200>;
13495
+ plaidGetIdentity: (plaidGetIdentityBody: PlaidGetIdentityBody) => Promise<PlaidGetIdentity200>;
13496
+ plaidGetItem: (plaidGetItemBody: PlaidGetItemBody) => Promise<PlaidGetItem200>;
13497
+ plaidRemoveItem: (plaidRemoveItemBody: PlaidRemoveItemBody) => Promise<PlaidRemoveItem200>;
13498
+ plaidGetInstitutionById: (plaidGetInstitutionByIdBody: PlaidGetInstitutionByIdBody) => Promise<PlaidGetInstitutionById200>;
13499
+ plaidGetInvestmentHoldings: (plaidGetInvestmentHoldingsBody: PlaidGetInvestmentHoldingsBody) => Promise<PlaidGetInvestmentHoldings200>;
13500
+ plaidGetInvestmentTransactions: (plaidGetInvestmentTransactionsBody: PlaidGetInvestmentTransactionsBody) => Promise<PlaidGetInvestmentTransactions200>;
13501
+ plaidGetLiabilities: (plaidGetLiabilitiesBody: PlaidGetLiabilitiesBody) => Promise<PlaidGetLiabilities200>;
13502
+ plaidCreateAssetReport: (plaidCreateAssetReportBody: PlaidCreateAssetReportBody) => Promise<PlaidCreateAssetReport200>;
13503
+ plaidGetAssetReport: (plaidGetAssetReportBody: PlaidGetAssetReportBody) => Promise<PlaidGetAssetReport200>;
13504
+ plaidRefreshAssetReport: (plaidRefreshAssetReportBody: PlaidRefreshAssetReportBody) => Promise<PlaidRefreshAssetReport200>;
13505
+ plaidGetAssetReportPdf: (plaidGetAssetReportPdfBody: PlaidGetAssetReportPdfBody) => Promise<PlaidGetAssetReportPdf200>;
11639
13506
  redtailSetUserCredentials: (redtailSetUserCredentialsBody: RedtailSetUserCredentialsBody) => Promise<RedtailSetUserCredentials200>;
11640
13507
  redtailAuthenticate: () => Promise<RedtailAuthenticate200>;
11641
13508
  redtailGetFamilies: (redtailGetFamiliesBody: RedtailGetFamiliesBody) => Promise<RedtailGetFamilies200>;
@@ -11724,6 +13591,7 @@ export declare const getIntegrationsAPI: () => {
11724
13591
  twilioWhatsappSetUserCredentials: (twilioWhatsappSetUserCredentialsBody: TwilioWhatsappSetUserCredentialsBody) => Promise<TwilioWhatsappSetUserCredentials200>;
11725
13592
  twilioWhatsappCreateMessage: (twilioWhatsappCreateMessageBody: TwilioWhatsappCreateMessageBody) => Promise<TwilioWhatsappCreateMessage200>;
11726
13593
  wealthboxOauthInitiate: (wealthboxOauthInitiateBody: WealthboxOauthInitiateBody) => Promise<WealthboxOauthInitiate200>;
13594
+ wealthboxSetUserCredentials: (wealthboxSetUserCredentialsBody: WealthboxSetUserCredentialsBody) => Promise<WealthboxSetUserCredentials200>;
11727
13595
  wealthboxOauthCallback: (params?: WealthboxOauthCallbackParams) => Promise<WealthboxOauthCallback200>;
11728
13596
  wealthboxGetContacts: (wealthboxGetContactsBody: WealthboxGetContactsBody) => Promise<WealthboxGetContacts200>;
11729
13597
  wealthboxGetContact: (wealthboxGetContactBody: WealthboxGetContactBody) => Promise<WealthboxGetContact200>;
@@ -11801,7 +13669,20 @@ export type AzureBlobStorageGetFileMetadataResult = NonNullable<Awaited<ReturnTy
11801
13669
  export type AzureBlobStorageUploadFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['azureBlobStorageUploadFile']>>>;
11802
13670
  export type AzureBlobStorageCreateReadStreamResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['azureBlobStorageCreateReadStream']>>>;
11803
13671
  export type AzureBlobStorageCreateWriteStreamResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['azureBlobStorageCreateWriteStream']>>>;
13672
+ export type GitlabSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabSetUserCredentials']>>>;
13673
+ export type GitlabOauthInitiateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabOauthInitiate']>>>;
13674
+ export type GitlabOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabOauthCallback']>>>;
13675
+ export type GitlabGetCurrentUserResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabGetCurrentUser']>>>;
13676
+ export type GitlabListProjectsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabListProjects']>>>;
13677
+ export type GitlabGetProjectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabGetProject']>>>;
13678
+ export type GitlabListMergeRequestsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabListMergeRequests']>>>;
13679
+ export type GitlabGetMergeRequestResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabGetMergeRequest']>>>;
13680
+ export type GitlabGetMergeRequestDiffsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabGetMergeRequestDiffs']>>>;
13681
+ export type GitlabMergeMergeRequestResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabMergeMergeRequest']>>>;
13682
+ export type GitlabListMergeRequestNotesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabListMergeRequestNotes']>>>;
13683
+ export type GitlabCreateMergeRequestNoteResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gitlabCreateMergeRequestNote']>>>;
11804
13684
  export type GmailAuthStartResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gmailAuthStart']>>>;
13685
+ export type GmailSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gmailSetUserCredentials']>>>;
11805
13686
  export type GmailOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gmailOauthCallback']>>>;
11806
13687
  export type GmailSendEmailResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['gmailSendEmail']>>>;
11807
13688
  export type GoogleCloudStorageSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleCloudStorageSetUserCredentials']>>>;
@@ -11816,6 +13697,19 @@ export type GoogleCloudStorageGetFileMetadataResult = NonNullable<Awaited<Return
11816
13697
  export type GoogleCloudStorageUploadFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleCloudStorageUploadFile']>>>;
11817
13698
  export type GoogleCloudStorageCreateReadStreamResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleCloudStorageCreateReadStream']>>>;
11818
13699
  export type GoogleCloudStorageCreateWriteStreamResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleCloudStorageCreateWriteStream']>>>;
13700
+ export type GoogleDriveAuthStartResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveAuthStart']>>>;
13701
+ export type GoogleDriveSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveSetUserCredentials']>>>;
13702
+ export type GoogleDriveOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveOauthCallback']>>>;
13703
+ export type GoogleDriveCreateFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveCreateFile']>>>;
13704
+ export type GoogleDriveListFilesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveListFiles']>>>;
13705
+ export type GoogleDriveUpdateFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveUpdateFile']>>>;
13706
+ export type GoogleDriveDeleteFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveDeleteFile']>>>;
13707
+ export type GoogleDriveGetFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveGetFile']>>>;
13708
+ export type GoogleDriveCopyFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveCopyFile']>>>;
13709
+ export type GoogleDriveCreatePermissionResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveCreatePermission']>>>;
13710
+ export type GoogleDriveDeletePermissionResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveDeletePermission']>>>;
13711
+ export type GoogleDriveListPermissionsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveListPermissions']>>>;
13712
+ export type GoogleDriveSelectDocumentsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleDriveSelectDocuments']>>>;
11819
13713
  export type GoogleGenerativeAISetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleGenerativeAISetUserCredentials']>>>;
11820
13714
  export type GoogleGenerativeAIGenerateTextResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleGenerativeAIGenerateText']>>>;
11821
13715
  export type GoogleGenerativeAIGenerateImageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleGenerativeAIGenerateImage']>>>;
@@ -11824,9 +13718,60 @@ export type GoogleGenerativeAIImageGenerateImageResult = NonNullable<Awaited<Ret
11824
13718
  export type GoogleOAuthGetAuthorizationUrlResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleOAuthGetAuthorizationUrl']>>>;
11825
13719
  export type GoogleOAuthGetUserProfileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleOAuthGetUserProfile']>>>;
11826
13720
  export type GoogleOAuthOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleOAuthOauthCallback']>>>;
13721
+ export type GoogleSheetsAuthStartResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSheetsAuthStart']>>>;
13722
+ export type GoogleSheetsSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSheetsSetUserCredentials']>>>;
13723
+ export type GoogleSheetsOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSheetsOauthCallback']>>>;
13724
+ export type GoogleSheetsCreateSpreadsheetResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSheetsCreateSpreadsheet']>>>;
13725
+ export type GoogleSheetsGetValuesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSheetsGetValues']>>>;
13726
+ export type GoogleSheetsUpdateValuesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSheetsUpdateValues']>>>;
13727
+ export type GoogleSheetsAppendValuesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSheetsAppendValues']>>>;
13728
+ export type GoogleSheetsBatchUpdateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSheetsBatchUpdate']>>>;
13729
+ export type GoogleSlidesAuthStartResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSlidesAuthStart']>>>;
13730
+ export type GoogleSlidesSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSlidesSetUserCredentials']>>>;
13731
+ export type GoogleSlidesOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSlidesOauthCallback']>>>;
13732
+ export type GoogleSlidesCreatePresentationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSlidesCreatePresentation']>>>;
13733
+ export type GoogleSlidesGetPresentationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSlidesGetPresentation']>>>;
13734
+ export type GoogleSlidesBatchUpdatePresentationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSlidesBatchUpdatePresentation']>>>;
13735
+ export type JiraOauthInitiateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraOauthInitiate']>>>;
13736
+ export type JiraSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraSetUserCredentials']>>>;
13737
+ export type JiraOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraOauthCallback']>>>;
13738
+ export type JiraCreateIssueResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraCreateIssue']>>>;
13739
+ export type JiraSearchIssuesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraSearchIssues']>>>;
13740
+ export type JiraGetIssueResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraGetIssue']>>>;
13741
+ export type JiraUpdateIssueResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraUpdateIssue']>>>;
13742
+ export type JiraAddCommentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraAddComment']>>>;
13743
+ export type JiraListProjectsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraListProjects']>>>;
13744
+ export type JiraListTransitionsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraListTransitions']>>>;
13745
+ export type JiraTransitionIssueResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraTransitionIssue']>>>;
13746
+ export type JiraListBoardsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraListBoards']>>>;
13747
+ export type JiraListSprintsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraListSprints']>>>;
13748
+ export type JiraCreateSprintResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraCreateSprint']>>>;
13749
+ export type JiraUpdateSprintResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraUpdateSprint']>>>;
13750
+ export type JiraMoveIssuesToBacklogResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraMoveIssuesToBacklog']>>>;
13751
+ export type JiraMoveIssuesToSprintResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraMoveIssuesToSprint']>>>;
11827
13752
  export type OpenaiSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['openaiSetUserCredentials']>>>;
11828
13753
  export type OpenaiGenerateTextResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['openaiGenerateText']>>>;
11829
13754
  export type OpenaiCreateStreamResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['openaiCreateStream']>>>;
13755
+ export type PlaidStartHostedLinkResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidStartHostedLink']>>>;
13756
+ export type PlaidSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidSetUserCredentials']>>>;
13757
+ export type PlaidHostedLinkCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidHostedLinkCallback']>>>;
13758
+ export type PlaidGetAccountsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetAccounts']>>>;
13759
+ export type PlaidGetAccountsBalanceResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetAccountsBalance']>>>;
13760
+ export type PlaidGetAuthResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetAuth']>>>;
13761
+ export type PlaidTransactionsSyncResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidTransactionsSync']>>>;
13762
+ export type PlaidGetRecurringTransactionsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetRecurringTransactions']>>>;
13763
+ export type PlaidGetTransactionsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetTransactions']>>>;
13764
+ export type PlaidGetIdentityResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetIdentity']>>>;
13765
+ export type PlaidGetItemResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetItem']>>>;
13766
+ export type PlaidRemoveItemResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidRemoveItem']>>>;
13767
+ export type PlaidGetInstitutionByIdResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetInstitutionById']>>>;
13768
+ export type PlaidGetInvestmentHoldingsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetInvestmentHoldings']>>>;
13769
+ export type PlaidGetInvestmentTransactionsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetInvestmentTransactions']>>>;
13770
+ export type PlaidGetLiabilitiesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetLiabilities']>>>;
13771
+ export type PlaidCreateAssetReportResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidCreateAssetReport']>>>;
13772
+ export type PlaidGetAssetReportResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetAssetReport']>>>;
13773
+ export type PlaidRefreshAssetReportResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidRefreshAssetReport']>>>;
13774
+ export type PlaidGetAssetReportPdfResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['plaidGetAssetReportPdf']>>>;
11830
13775
  export type RedtailSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['redtailSetUserCredentials']>>>;
11831
13776
  export type RedtailAuthenticateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['redtailAuthenticate']>>>;
11832
13777
  export type RedtailGetFamiliesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['redtailGetFamilies']>>>;
@@ -11915,6 +13860,7 @@ export type StripeWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<type
11915
13860
  export type TwilioWhatsappSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['twilioWhatsappSetUserCredentials']>>>;
11916
13861
  export type TwilioWhatsappCreateMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['twilioWhatsappCreateMessage']>>>;
11917
13862
  export type WealthboxOauthInitiateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxOauthInitiate']>>>;
13863
+ export type WealthboxSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxSetUserCredentials']>>>;
11918
13864
  export type WealthboxOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxOauthCallback']>>>;
11919
13865
  export type WealthboxGetContactsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetContacts']>>>;
11920
13866
  export type WealthboxGetContactResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['wealthboxGetContact']>>>;