@uptiqai/integrations-sdk 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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.
@@ -147,6 +147,10 @@ export type WealthboxGetCategoryMembersBody = {
147
147
  userId: string;
148
148
  [key: string]: unknown | null;
149
149
  };
150
+ export type WealthboxGetCustomFields200 = {
151
+ custom_fields?: WealthboxGetCustomFields200CustomFieldsItem[];
152
+ [key: string]: unknown | null;
153
+ };
150
154
  /**
151
155
  * @nullable
152
156
  */
@@ -172,10 +176,6 @@ export type WealthboxGetCustomFields200CustomFieldsItem = {
172
176
  value?: WealthboxGetCustomFields200CustomFieldsItemValue;
173
177
  [key: string]: unknown | null;
174
178
  };
175
- export type WealthboxGetCustomFields200 = {
176
- custom_fields?: WealthboxGetCustomFields200CustomFieldsItem[];
177
- [key: string]: unknown | null;
178
- };
179
179
  /**
180
180
  * The document type that the custom fields are for
181
181
  */
@@ -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
  */
@@ -1071,6 +1071,14 @@ export type WealthboxUpdateProject200 = {
1071
1071
  visible_to?: WealthboxUpdateProject200VisibleTo;
1072
1072
  [key: string]: unknown | null;
1073
1073
  };
1074
+ /**
1075
+ * @nullable
1076
+ */
1077
+ export type WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
1078
+ /**
1079
+ * @nullable
1080
+ */
1081
+ export type WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOf = unknown | null;
1074
1082
  export type WealthboxUpdateProjectBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOf | WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOfTwo;
1075
1083
  export type WealthboxUpdateProjectBodyCustomFieldsItem = {
1076
1084
  /** @nullable */
@@ -1096,14 +1104,6 @@ export type WealthboxUpdateProjectBody = {
1096
1104
  visible_to?: string;
1097
1105
  [key: string]: unknown | null;
1098
1106
  };
1099
- /**
1100
- * @nullable
1101
- */
1102
- export type WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
1103
- /**
1104
- * @nullable
1105
- */
1106
- export type WealthboxUpdateProjectBodyCustomFieldsItemValueAnyOf = unknown | null;
1107
1107
  /**
1108
1108
  * @nullable
1109
1109
  */
@@ -1558,6 +1558,10 @@ export type WealthboxGetNoteBody = {
1558
1558
  userId: string;
1559
1559
  [key: string]: unknown | null;
1560
1560
  };
1561
+ export type WealthboxGetNotes200 = {
1562
+ status_updates?: WealthboxGetNotes200StatusUpdatesItem[];
1563
+ [key: string]: unknown | null;
1564
+ };
1561
1565
  /**
1562
1566
  * @nullable
1563
1567
  */
@@ -1609,10 +1613,6 @@ export type WealthboxGetNotes200StatusUpdatesItem = {
1609
1613
  visible_to?: WealthboxGetNotes200StatusUpdatesItemVisibleTo;
1610
1614
  [key: string]: unknown | null;
1611
1615
  };
1612
- export type WealthboxGetNotes200 = {
1613
- status_updates?: WealthboxGetNotes200StatusUpdatesItem[];
1614
- [key: string]: unknown | null;
1615
- };
1616
1616
  /**
1617
1617
  * The order that the resource should be returned in
1618
1618
  */
@@ -1903,12 +1903,6 @@ export type WealthboxCreateOpportunityBodyLinkedToItem = {
1903
1903
  type: string;
1904
1904
  [key: string]: unknown | null;
1905
1905
  };
1906
- export type WealthboxCreateOpportunityBodyCustomFieldsItem = {
1907
- /** @nullable */
1908
- id: number | null;
1909
- value?: WealthboxCreateOpportunityBodyCustomFieldsItemValue;
1910
- [key: string]: unknown | null;
1911
- };
1912
1906
  /**
1913
1907
  * @nullable
1914
1908
  */
@@ -1918,6 +1912,12 @@ export type WealthboxCreateOpportunityBodyCustomFieldsItemValueAnyOfTwo = unknow
1918
1912
  */
1919
1913
  export type WealthboxCreateOpportunityBodyCustomFieldsItemValueAnyOf = unknown | null;
1920
1914
  export type WealthboxCreateOpportunityBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxCreateOpportunityBodyCustomFieldsItemValueAnyOf | WealthboxCreateOpportunityBodyCustomFieldsItemValueAnyOfTwo;
1915
+ export type WealthboxCreateOpportunityBodyCustomFieldsItem = {
1916
+ /** @nullable */
1917
+ id: number | null;
1918
+ value?: WealthboxCreateOpportunityBodyCustomFieldsItemValue;
1919
+ [key: string]: unknown | null;
1920
+ };
1921
1921
  export type WealthboxCreateOpportunityBodyAmountsItemKind = 'Fee' | 'Commission' | 'AUM' | 'Other' | string;
1922
1922
  export type WealthboxCreateOpportunityBodyAmountsItem = {
1923
1923
  amount?: number;
@@ -2047,6 +2047,10 @@ export type WealthboxGetOpportunityBody = {
2047
2047
  userId: string;
2048
2048
  [key: string]: unknown | null;
2049
2049
  };
2050
+ export type WealthboxGetOpportunities200 = {
2051
+ opportunities?: WealthboxGetOpportunities200OpportunitiesItem[];
2052
+ [key: string]: unknown | null;
2053
+ };
2050
2054
  /**
2051
2055
  * @nullable
2052
2056
  */
@@ -2140,10 +2144,6 @@ export type WealthboxGetOpportunities200OpportunitiesItem = {
2140
2144
  visible_to?: WealthboxGetOpportunities200OpportunitiesItemVisibleTo;
2141
2145
  [key: string]: unknown | null;
2142
2146
  };
2143
- export type WealthboxGetOpportunities200 = {
2144
- opportunities?: WealthboxGetOpportunities200OpportunitiesItem[];
2145
- [key: string]: unknown | null;
2146
- };
2147
2147
  export type WealthboxGetOpportunitiesBody = {
2148
2148
  include_closed?: boolean;
2149
2149
  order?: string;
@@ -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
  */
@@ -3045,6 +3045,30 @@ 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
+ };
3054
+ /**
3055
+ * @nullable
3056
+ */
3057
+ export type WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
3058
+ /**
3059
+ * @nullable
3060
+ */
3061
+ export type WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOf = unknown | null;
3062
+ export type WealthboxUpdateTaskBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOf | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOfTwo;
3063
+ /**
3064
+ * @nullable
3065
+ */
3066
+ export type WealthboxUpdateTaskBodyCategoryAnyOfTwo = unknown | null;
3067
+ /**
3068
+ * @nullable
3069
+ */
3070
+ export type WealthboxUpdateTaskBodyCategoryAnyOf = unknown | null;
3071
+ export type WealthboxUpdateTaskBodyCategory = number | null | string | WealthboxUpdateTaskBodyCategoryAnyOf | WealthboxUpdateTaskBodyCategoryAnyOfTwo;
3048
3072
  export type WealthboxUpdateTaskBody = {
3049
3073
  /** @nullable */
3050
3074
  assigned_to?: number | null;
@@ -3071,30 +3095,6 @@ export type WealthboxUpdateTaskBody = {
3071
3095
  visible_to?: string;
3072
3096
  [key: string]: unknown | null;
3073
3097
  };
3074
- /**
3075
- * @nullable
3076
- */
3077
- export type WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOfTwo = unknown | null;
3078
- /**
3079
- * @nullable
3080
- */
3081
- export type WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOf = unknown | null;
3082
- export type WealthboxUpdateTaskBodyCustomFieldsItemValue = string | number | boolean | string[] | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOf | WealthboxUpdateTaskBodyCustomFieldsItemValueAnyOfTwo;
3083
- export type WealthboxUpdateTaskBodyCustomFieldsItem = {
3084
- /** @nullable */
3085
- id: number | null;
3086
- value?: WealthboxUpdateTaskBodyCustomFieldsItemValue;
3087
- [key: string]: unknown | null;
3088
- };
3089
- /**
3090
- * @nullable
3091
- */
3092
- export type WealthboxUpdateTaskBodyCategoryAnyOfTwo = unknown | null;
3093
- /**
3094
- * @nullable
3095
- */
3096
- export type WealthboxUpdateTaskBodyCategoryAnyOf = unknown | null;
3097
- export type WealthboxUpdateTaskBodyCategory = number | null | string | WealthboxUpdateTaskBodyCategoryAnyOf | WealthboxUpdateTaskBodyCategoryAnyOfTwo;
3098
3098
  /**
3099
3099
  * @nullable
3100
3100
  */
@@ -4155,45 +4155,6 @@ export declare const WealthboxUpdateContactBodyRiskTolerance: {
4155
4155
  readonly Moderate: "Moderate";
4156
4156
  readonly High_Risk: "High Risk";
4157
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";
4187
- readonly Separated: "Separated";
4188
- readonly Unknown: "Unknown";
4189
- };
4190
- export type WealthboxUpdateContactBodyInvestmentObjective = typeof WealthboxUpdateContactBodyInvestmentObjective[keyof typeof WealthboxUpdateContactBodyInvestmentObjective];
4191
- export declare const WealthboxUpdateContactBodyInvestmentObjective: {
4192
- readonly Aggressive_Growth: "Aggressive Growth";
4193
- readonly Growth: "Growth";
4194
- readonly Income: "Income";
4195
- readonly Safety_of_Principal: "Safety of Principal";
4196
- };
4197
4158
  export type WealthboxUpdateContactBody = {
4198
4159
  /** @nullable */
4199
4160
  adjusted_gross_income?: number | null;
@@ -4303,6 +4264,45 @@ export type WealthboxUpdateContactBody = {
4303
4264
  websites?: WealthboxUpdateContactBodyWebsitesItem[];
4304
4265
  [key: string]: unknown | null;
4305
4266
  };
4267
+ export type WealthboxUpdateContactBodyPhoneNumbersItemKind = typeof WealthboxUpdateContactBodyPhoneNumbersItemKind[keyof typeof WealthboxUpdateContactBodyPhoneNumbersItemKind];
4268
+ export declare const WealthboxUpdateContactBodyPhoneNumbersItemKind: {
4269
+ readonly Work: "Work";
4270
+ readonly Home: "Home";
4271
+ readonly Mobile: "Mobile";
4272
+ readonly Vacation: "Vacation";
4273
+ readonly Fax: "Fax";
4274
+ readonly Other: "Other";
4275
+ };
4276
+ export type WealthboxUpdateContactBodyPhoneNumbersItem = {
4277
+ address: string;
4278
+ destroy?: boolean;
4279
+ extension?: string;
4280
+ kind?: WealthboxUpdateContactBodyPhoneNumbersItemKind;
4281
+ principal?: boolean;
4282
+ [key: string]: unknown | null;
4283
+ };
4284
+ export type WealthboxUpdateContactBodyOccupation = {
4285
+ name?: string;
4286
+ start_date?: string;
4287
+ [key: string]: unknown | null;
4288
+ };
4289
+ export type WealthboxUpdateContactBodyMaritalStatus = typeof WealthboxUpdateContactBodyMaritalStatus[keyof typeof WealthboxUpdateContactBodyMaritalStatus];
4290
+ export declare const WealthboxUpdateContactBodyMaritalStatus: {
4291
+ readonly Married: "Married";
4292
+ readonly Single: "Single";
4293
+ readonly Divorced: "Divorced";
4294
+ readonly Widowed: "Widowed";
4295
+ readonly Life_Partner: "Life Partner";
4296
+ readonly Separated: "Separated";
4297
+ readonly Unknown: "Unknown";
4298
+ };
4299
+ export type WealthboxUpdateContactBodyInvestmentObjective = typeof WealthboxUpdateContactBodyInvestmentObjective[keyof typeof WealthboxUpdateContactBodyInvestmentObjective];
4300
+ export declare const WealthboxUpdateContactBodyInvestmentObjective: {
4301
+ readonly Aggressive_Growth: "Aggressive Growth";
4302
+ readonly Growth: "Growth";
4303
+ readonly Income: "Income";
4304
+ readonly Safety_of_Principal: "Safety of Principal";
4305
+ };
4306
4306
  export type WealthboxUpdateContactBodyHouseholdTitle = typeof WealthboxUpdateContactBodyHouseholdTitle[keyof typeof WealthboxUpdateContactBodyHouseholdTitle];
4307
4307
  export declare const WealthboxUpdateContactBodyHouseholdTitle: {
4308
4308
  readonly Head: "Head";
@@ -4350,6 +4350,12 @@ export type WealthboxUpdateContactBodyDriversLicense = {
4350
4350
  state?: string;
4351
4351
  [key: string]: unknown | null;
4352
4352
  };
4353
+ export type WealthboxUpdateContactBodyCustomFieldsItem = {
4354
+ /** @nullable */
4355
+ id?: number | null;
4356
+ value?: WealthboxUpdateContactBodyCustomFieldsItemValue;
4357
+ [key: string]: unknown | null;
4358
+ };
4353
4359
  /**
4354
4360
  * @nullable
4355
4361
  */
@@ -4359,12 +4365,6 @@ export type WealthboxUpdateContactBodyCustomFieldsItemValueAnyOfTwo = unknown |
4359
4365
  */
4360
4366
  export type WealthboxUpdateContactBodyCustomFieldsItemValueAnyOf = unknown | null;
4361
4367
  export type WealthboxUpdateContactBodyCustomFieldsItemValue = string | number | boolean | WealthboxUpdateContactBodyCustomFieldsItemValueAnyOf | WealthboxUpdateContactBodyCustomFieldsItemValueAnyOfTwo;
4362
- export type WealthboxUpdateContactBodyCustomFieldsItem = {
4363
- /** @nullable */
4364
- id?: number | null;
4365
- value?: WealthboxUpdateContactBodyCustomFieldsItemValue;
4366
- [key: string]: unknown | null;
4367
- };
4368
4368
  export type WealthboxUpdateContactBodyContactType = typeof WealthboxUpdateContactBodyContactType[keyof typeof WealthboxUpdateContactBodyContactType];
4369
4369
  export declare const WealthboxUpdateContactBodyContactType: {
4370
4370
  readonly Client: "Client";
@@ -4571,13 +4571,158 @@ export type WealthboxCreateContact200Image = unknown | null;
4571
4571
  * @nullable
4572
4572
  */
4573
4573
  export type WealthboxCreateContact200Id = unknown | null;
4574
- export type WealthboxCreateContact200 = {
4575
- /** @nullable */
4576
- adjusted_gross_income?: WealthboxCreateContact200AdjustedGrossIncome;
4574
+ /**
4575
+ * @nullable
4576
+ */
4577
+ export type WealthboxCreateContact200HouseholdTitle = unknown | null;
4578
+ /**
4579
+ * @nullable
4580
+ */
4581
+ export type WealthboxCreateContact200HouseholdName = unknown | null;
4582
+ export type WealthboxCreateContact200HouseholdMembersItem = {
4583
+ [key: string]: unknown | null;
4584
+ };
4585
+ /**
4586
+ * @nullable
4587
+ */
4588
+ export type WealthboxCreateContact200HouseholdId = unknown | null;
4589
+ export type WealthboxCreateContact200Household = {
4577
4590
  /** @nullable */
4578
- anniversary?: WealthboxCreateContact200Anniversary;
4591
+ id?: WealthboxCreateContact200HouseholdId;
4592
+ members?: WealthboxCreateContact200HouseholdMembersItem[];
4579
4593
  /** @nullable */
4580
- assets?: WealthboxCreateContact200Assets;
4594
+ name?: WealthboxCreateContact200HouseholdName;
4595
+ /** @nullable */
4596
+ title?: WealthboxCreateContact200HouseholdTitle;
4597
+ [key: string]: unknown | null;
4598
+ };
4599
+ /**
4600
+ * @nullable
4601
+ */
4602
+ export type WealthboxCreateContact200GrossAnnualIncome = unknown | null;
4603
+ /**
4604
+ * @nullable
4605
+ */
4606
+ export type WealthboxCreateContact200GreenCardNumber = unknown | null;
4607
+ /**
4608
+ * @nullable
4609
+ */
4610
+ export type WealthboxCreateContact200Gender = unknown | null;
4611
+ /**
4612
+ * @nullable
4613
+ */
4614
+ export type WealthboxCreateContact200FirstName = unknown | null;
4615
+ /**
4616
+ * @nullable
4617
+ */
4618
+ export type WealthboxCreateContact200FamilyOfficer = unknown | null;
4619
+ /**
4620
+ * @nullable
4621
+ */
4622
+ export type WealthboxCreateContact200ExternalUniqueId = unknown | null;
4623
+ /**
4624
+ * @nullable
4625
+ */
4626
+ export type WealthboxCreateContact200EstimatedTaxes = unknown | null;
4627
+ export type WealthboxCreateContact200EmailAddressesItem = {
4628
+ [key: string]: unknown | null;
4629
+ };
4630
+ export type WealthboxCreateContact200DriversLicense = {
4631
+ [key: string]: unknown | null;
4632
+ };
4633
+ /**
4634
+ * @nullable
4635
+ */
4636
+ export type WealthboxCreateContact200Doctor = unknown | null;
4637
+ /**
4638
+ * @nullable
4639
+ */
4640
+ export type WealthboxCreateContact200DateOfDeath = unknown | null;
4641
+ export type WealthboxCreateContact200CustomFieldsItem = {
4642
+ [key: string]: unknown | null;
4643
+ };
4644
+ /**
4645
+ * @nullable
4646
+ */
4647
+ export type WealthboxCreateContact200Creator = unknown | null;
4648
+ /**
4649
+ * @nullable
4650
+ */
4651
+ export type WealthboxCreateContact200CreatedAt = unknown | null;
4652
+ /**
4653
+ * @nullable
4654
+ */
4655
+ export type WealthboxCreateContact200Cpa = unknown | null;
4656
+ /**
4657
+ * @nullable
4658
+ */
4659
+ export type WealthboxCreateContact200ContactType = unknown | null;
4660
+ /**
4661
+ * @nullable
4662
+ */
4663
+ export type WealthboxCreateContact200ContactSource = unknown | null;
4664
+ export type WealthboxCreateContact200ContactRolesItem = {
4665
+ [key: string]: unknown | null;
4666
+ };
4667
+ /**
4668
+ * @nullable
4669
+ */
4670
+ export type WealthboxCreateContact200ConfirmedByTaxReturn = unknown | null;
4671
+ /**
4672
+ * @nullable
4673
+ */
4674
+ export type WealthboxCreateContact200CompanyName = unknown | null;
4675
+ /**
4676
+ * @nullable
4677
+ */
4678
+ export type WealthboxCreateContact200ClientSince = unknown | null;
4679
+ /**
4680
+ * @nullable
4681
+ */
4682
+ export type WealthboxCreateContact200BusinessManager = unknown | null;
4683
+ /**
4684
+ * @nullable
4685
+ */
4686
+ export type WealthboxCreateContact200BirthPlace = unknown | null;
4687
+ /**
4688
+ * @nullable
4689
+ */
4690
+ export type WealthboxCreateContact200BirthDate = unknown | null;
4691
+ /**
4692
+ * @nullable
4693
+ */
4694
+ export type WealthboxCreateContact200BackgroundInformation = unknown | null;
4695
+ /**
4696
+ * @nullable
4697
+ */
4698
+ export type WealthboxCreateContact200Attorney = unknown | null;
4699
+ /**
4700
+ * @nullable
4701
+ */
4702
+ export type WealthboxCreateContact200Assistant = unknown | null;
4703
+ /**
4704
+ * @nullable
4705
+ */
4706
+ export type WealthboxCreateContact200AssignedTo = unknown | null;
4707
+ /**
4708
+ * @nullable
4709
+ */
4710
+ export type WealthboxCreateContact200Assets = unknown | null;
4711
+ /**
4712
+ * @nullable
4713
+ */
4714
+ export type WealthboxCreateContact200Anniversary = unknown | null;
4715
+ /**
4716
+ * @nullable
4717
+ */
4718
+ export type WealthboxCreateContact200AdjustedGrossIncome = unknown | null;
4719
+ export type WealthboxCreateContact200 = {
4720
+ /** @nullable */
4721
+ adjusted_gross_income?: WealthboxCreateContact200AdjustedGrossIncome;
4722
+ /** @nullable */
4723
+ anniversary?: WealthboxCreateContact200Anniversary;
4724
+ /** @nullable */
4725
+ assets?: WealthboxCreateContact200Assets;
4581
4726
  /** @nullable */
4582
4727
  assigned_to?: WealthboxCreateContact200AssignedTo;
4583
4728
  /** @nullable */
@@ -4722,196 +4867,51 @@ export type WealthboxCreateContact200 = {
4722
4867
  websites?: WealthboxCreateContact200WebsitesItem[];
4723
4868
  [key: string]: unknown | null;
4724
4869
  };
4725
- /**
4726
- * @nullable
4727
- */
4728
- export type WealthboxCreateContact200HouseholdTitle = unknown | null;
4729
- /**
4730
- * @nullable
4731
- */
4732
- export type WealthboxCreateContact200HouseholdName = unknown | null;
4733
- export type WealthboxCreateContact200HouseholdMembersItem = {
4734
- [key: string]: unknown | null;
4870
+ export type WealthboxCreateContactBodyWebsitesItemKind = typeof WealthboxCreateContactBodyWebsitesItemKind[keyof typeof WealthboxCreateContactBodyWebsitesItemKind];
4871
+ export declare const WealthboxCreateContactBodyWebsitesItemKind: {
4872
+ readonly Website: "Website";
4873
+ readonly Facebook: "Facebook";
4874
+ readonly Blog: "Blog";
4735
4875
  };
4736
- /**
4737
- * @nullable
4738
- */
4739
- export type WealthboxCreateContact200HouseholdId = unknown | null;
4740
- export type WealthboxCreateContact200Household = {
4741
- /** @nullable */
4742
- id?: WealthboxCreateContact200HouseholdId;
4743
- members?: WealthboxCreateContact200HouseholdMembersItem[];
4744
- /** @nullable */
4745
- name?: WealthboxCreateContact200HouseholdName;
4746
- /** @nullable */
4747
- title?: WealthboxCreateContact200HouseholdTitle;
4876
+ export type WealthboxCreateContactBodyWebsitesItem = {
4877
+ address: string;
4878
+ destroy?: boolean;
4879
+ kind?: WealthboxCreateContactBodyWebsitesItemKind;
4880
+ principal?: boolean;
4748
4881
  [key: string]: unknown | null;
4749
4882
  };
4750
- /**
4751
- * @nullable
4752
- */
4753
- export type WealthboxCreateContact200GrossAnnualIncome = unknown | null;
4754
- /**
4755
- * @nullable
4756
- */
4757
- export type WealthboxCreateContact200GreenCardNumber = unknown | null;
4758
- /**
4759
- * @nullable
4760
- */
4761
- export type WealthboxCreateContact200Gender = unknown | null;
4762
- /**
4763
- * @nullable
4764
- */
4765
- export type WealthboxCreateContact200FirstName = unknown | null;
4766
- /**
4767
- * @nullable
4768
- */
4769
- export type WealthboxCreateContact200FamilyOfficer = unknown | null;
4770
- /**
4771
- * @nullable
4772
- */
4773
- export type WealthboxCreateContact200ExternalUniqueId = unknown | null;
4774
- /**
4775
- * @nullable
4776
- */
4777
- export type WealthboxCreateContact200EstimatedTaxes = unknown | null;
4778
- export type WealthboxCreateContact200EmailAddressesItem = {
4779
- [key: string]: unknown | null;
4883
+ export type WealthboxCreateContactBodyType = typeof WealthboxCreateContactBodyType[keyof typeof WealthboxCreateContactBodyType];
4884
+ export declare const WealthboxCreateContactBodyType: {
4885
+ readonly Person: "Person";
4886
+ readonly Household: "Household";
4887
+ readonly Organization: "Organization";
4888
+ readonly Trust: "Trust";
4780
4889
  };
4781
- export type WealthboxCreateContact200DriversLicense = {
4782
- [key: string]: unknown | null;
4890
+ export type WealthboxCreateContactBodyTimeHorizon = typeof WealthboxCreateContactBodyTimeHorizon[keyof typeof WealthboxCreateContactBodyTimeHorizon];
4891
+ export declare const WealthboxCreateContactBodyTimeHorizon: {
4892
+ readonly Short_Term: "Short Term";
4893
+ readonly Intermediate: "Intermediate";
4894
+ readonly Long_Term: "Long Term";
4783
4895
  };
4784
- /**
4785
- * @nullable
4786
- */
4787
- export type WealthboxCreateContact200Doctor = unknown | null;
4788
- /**
4789
- * @nullable
4790
- */
4791
- export type WealthboxCreateContact200DateOfDeath = unknown | null;
4792
- export type WealthboxCreateContact200CustomFieldsItem = {
4793
- [key: string]: unknown | null;
4896
+ export type WealthboxCreateContactBodyStreetAddressesItemKind = typeof WealthboxCreateContactBodyStreetAddressesItemKind[keyof typeof WealthboxCreateContactBodyStreetAddressesItemKind];
4897
+ export declare const WealthboxCreateContactBodyStreetAddressesItemKind: {
4898
+ readonly Work: "Work";
4899
+ readonly Home: "Home";
4900
+ readonly Mobile: "Mobile";
4901
+ readonly Vacation: "Vacation";
4902
+ readonly Fax: "Fax";
4903
+ readonly Other: "Other";
4794
4904
  };
4795
- /**
4796
- * @nullable
4797
- */
4798
- export type WealthboxCreateContact200Creator = unknown | null;
4799
- /**
4800
- * @nullable
4801
- */
4802
- export type WealthboxCreateContact200CreatedAt = unknown | null;
4803
- /**
4804
- * @nullable
4805
- */
4806
- export type WealthboxCreateContact200Cpa = unknown | null;
4807
- /**
4808
- * @nullable
4809
- */
4810
- export type WealthboxCreateContact200ContactType = unknown | null;
4811
- /**
4812
- * @nullable
4813
- */
4814
- export type WealthboxCreateContact200ContactSource = unknown | null;
4815
- export type WealthboxCreateContact200ContactRolesItem = {
4816
- [key: string]: unknown | null;
4817
- };
4818
- /**
4819
- * @nullable
4820
- */
4821
- export type WealthboxCreateContact200ConfirmedByTaxReturn = unknown | null;
4822
- /**
4823
- * @nullable
4824
- */
4825
- export type WealthboxCreateContact200CompanyName = unknown | null;
4826
- /**
4827
- * @nullable
4828
- */
4829
- export type WealthboxCreateContact200ClientSince = unknown | null;
4830
- /**
4831
- * @nullable
4832
- */
4833
- export type WealthboxCreateContact200BusinessManager = unknown | null;
4834
- /**
4835
- * @nullable
4836
- */
4837
- export type WealthboxCreateContact200BirthPlace = unknown | null;
4838
- /**
4839
- * @nullable
4840
- */
4841
- export type WealthboxCreateContact200BirthDate = unknown | null;
4842
- /**
4843
- * @nullable
4844
- */
4845
- export type WealthboxCreateContact200BackgroundInformation = unknown | null;
4846
- /**
4847
- * @nullable
4848
- */
4849
- export type WealthboxCreateContact200Attorney = unknown | null;
4850
- /**
4851
- * @nullable
4852
- */
4853
- export type WealthboxCreateContact200Assistant = unknown | null;
4854
- /**
4855
- * @nullable
4856
- */
4857
- export type WealthboxCreateContact200AssignedTo = unknown | null;
4858
- /**
4859
- * @nullable
4860
- */
4861
- export type WealthboxCreateContact200Assets = unknown | null;
4862
- /**
4863
- * @nullable
4864
- */
4865
- export type WealthboxCreateContact200Anniversary = unknown | null;
4866
- /**
4867
- * @nullable
4868
- */
4869
- export type WealthboxCreateContact200AdjustedGrossIncome = unknown | null;
4870
- export type WealthboxCreateContactBodyWebsitesItemKind = typeof WealthboxCreateContactBodyWebsitesItemKind[keyof typeof WealthboxCreateContactBodyWebsitesItemKind];
4871
- export declare const WealthboxCreateContactBodyWebsitesItemKind: {
4872
- readonly Website: "Website";
4873
- readonly Facebook: "Facebook";
4874
- readonly Blog: "Blog";
4875
- };
4876
- export type WealthboxCreateContactBodyWebsitesItem = {
4877
- address: string;
4878
- destroy?: boolean;
4879
- kind?: WealthboxCreateContactBodyWebsitesItemKind;
4880
- principal?: boolean;
4881
- [key: string]: unknown | null;
4882
- };
4883
- export type WealthboxCreateContactBodyType = typeof WealthboxCreateContactBodyType[keyof typeof WealthboxCreateContactBodyType];
4884
- export declare const WealthboxCreateContactBodyType: {
4885
- readonly Person: "Person";
4886
- readonly Household: "Household";
4887
- readonly Organization: "Organization";
4888
- readonly Trust: "Trust";
4889
- };
4890
- export type WealthboxCreateContactBodyTimeHorizon = typeof WealthboxCreateContactBodyTimeHorizon[keyof typeof WealthboxCreateContactBodyTimeHorizon];
4891
- export declare const WealthboxCreateContactBodyTimeHorizon: {
4892
- readonly Short_Term: "Short Term";
4893
- readonly Intermediate: "Intermediate";
4894
- readonly Long_Term: "Long Term";
4895
- };
4896
- export type WealthboxCreateContactBodyStreetAddressesItemKind = typeof WealthboxCreateContactBodyStreetAddressesItemKind[keyof typeof WealthboxCreateContactBodyStreetAddressesItemKind];
4897
- export declare const WealthboxCreateContactBodyStreetAddressesItemKind: {
4898
- readonly Work: "Work";
4899
- readonly Home: "Home";
4900
- readonly Mobile: "Mobile";
4901
- readonly Vacation: "Vacation";
4902
- readonly Fax: "Fax";
4903
- readonly Other: "Other";
4904
- };
4905
- export type WealthboxCreateContactBodyStreetAddressesItem = {
4906
- city?: string;
4907
- country?: string;
4908
- destroy?: boolean;
4909
- kind?: WealthboxCreateContactBodyStreetAddressesItemKind;
4910
- principal?: boolean;
4911
- state?: string;
4912
- street_line_1?: string;
4913
- street_line_2?: string;
4914
- zip_code?: string;
4905
+ export type WealthboxCreateContactBodyStreetAddressesItem = {
4906
+ city?: string;
4907
+ country?: string;
4908
+ destroy?: boolean;
4909
+ kind?: WealthboxCreateContactBodyStreetAddressesItemKind;
4910
+ principal?: boolean;
4911
+ state?: string;
4912
+ street_line_1?: string;
4913
+ street_line_2?: string;
4914
+ zip_code?: string;
4915
4915
  [key: string]: unknown | null;
4916
4916
  };
4917
4917
  export type WealthboxCreateContactBodyStatus = typeof WealthboxCreateContactBodyStatus[keyof typeof WealthboxCreateContactBodyStatus];
@@ -4964,6 +4964,30 @@ export declare const WealthboxCreateContactBodyInvestmentObjective: {
4964
4964
  readonly Income: "Income";
4965
4965
  readonly Safety_of_Principal: "Safety of Principal";
4966
4966
  };
4967
+ export type WealthboxCreateContactBodyHouseholdTitle = typeof WealthboxCreateContactBodyHouseholdTitle[keyof typeof WealthboxCreateContactBodyHouseholdTitle];
4968
+ export declare const WealthboxCreateContactBodyHouseholdTitle: {
4969
+ readonly Head: "Head";
4970
+ readonly Spouse: "Spouse";
4971
+ readonly Partner: "Partner";
4972
+ readonly Child: "Child";
4973
+ readonly Grandchild: "Grandchild";
4974
+ readonly Parent: "Parent";
4975
+ readonly Grandparent: "Grandparent";
4976
+ readonly Sibling: "Sibling";
4977
+ readonly Other_Dependent: "Other Dependent";
4978
+ };
4979
+ export type WealthboxCreateContactBodyHousehold = {
4980
+ name?: string;
4981
+ title?: WealthboxCreateContactBodyHouseholdTitle;
4982
+ [key: string]: unknown | null;
4983
+ };
4984
+ export type WealthboxCreateContactBodyGender = typeof WealthboxCreateContactBodyGender[keyof typeof WealthboxCreateContactBodyGender];
4985
+ export declare const WealthboxCreateContactBodyGender: {
4986
+ readonly Female: "Female";
4987
+ readonly Male: "Male";
4988
+ readonly 'Non-binary': "Non-binary";
4989
+ readonly Unknown: "Unknown";
4990
+ };
4967
4991
  export type WealthboxCreateContactBody = {
4968
4992
  /** @nullable */
4969
4993
  adjusted_gross_income?: number | null;
@@ -5068,30 +5092,6 @@ export type WealthboxCreateContactBody = {
5068
5092
  websites?: WealthboxCreateContactBodyWebsitesItem[];
5069
5093
  [key: string]: unknown | null;
5070
5094
  };
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
5095
  export type WealthboxCreateContactBodyEmailAddressesItemKind = typeof WealthboxCreateContactBodyEmailAddressesItemKind[keyof typeof WealthboxCreateContactBodyEmailAddressesItemKind];
5096
5096
  export declare const WealthboxCreateContactBodyEmailAddressesItemKind: {
5097
5097
  readonly Work: "Work";
@@ -5115,12 +5115,6 @@ export type WealthboxCreateContactBodyDriversLicense = {
5115
5115
  state?: string;
5116
5116
  [key: string]: unknown | null;
5117
5117
  };
5118
- export type WealthboxCreateContactBodyCustomFieldsItem = {
5119
- /** @nullable */
5120
- id?: number | null;
5121
- value?: WealthboxCreateContactBodyCustomFieldsItemValue;
5122
- [key: string]: unknown | null;
5123
- };
5124
5118
  /**
5125
5119
  * @nullable
5126
5120
  */
@@ -5130,6 +5124,12 @@ export type WealthboxCreateContactBodyCustomFieldsItemValueAnyOfTwo = unknown |
5130
5124
  */
5131
5125
  export type WealthboxCreateContactBodyCustomFieldsItemValueAnyOf = unknown | null;
5132
5126
  export type WealthboxCreateContactBodyCustomFieldsItemValue = string | number | boolean | WealthboxCreateContactBodyCustomFieldsItemValueAnyOf | WealthboxCreateContactBodyCustomFieldsItemValueAnyOfTwo;
5127
+ export type WealthboxCreateContactBodyCustomFieldsItem = {
5128
+ /** @nullable */
5129
+ id?: number | null;
5130
+ value?: WealthboxCreateContactBodyCustomFieldsItemValue;
5131
+ [key: string]: unknown | null;
5132
+ };
5133
5133
  export type WealthboxCreateContactBodyContactType = typeof WealthboxCreateContactBodyContactType[keyof typeof WealthboxCreateContactBodyContactType];
5134
5134
  export declare const WealthboxCreateContactBodyContactType: {
5135
5135
  readonly Client: "Client";
@@ -6720,6 +6720,11 @@ export type RedtailGetDatabaseTeams200Meta = {
6720
6720
  total_records?: number;
6721
6721
  [key: string]: unknown | null;
6722
6722
  };
6723
+ export type RedtailGetDatabaseTeams200 = {
6724
+ database_teams?: RedtailGetDatabaseTeams200DatabaseTeams;
6725
+ meta?: RedtailGetDatabaseTeams200Meta;
6726
+ [key: string]: unknown | null;
6727
+ };
6723
6728
  export type RedtailGetDatabaseTeams200DatabaseTeamsAnyOfTwo = {
6724
6729
  [key: string]: unknown | null;
6725
6730
  };
@@ -6727,11 +6732,6 @@ export type RedtailGetDatabaseTeams200DatabaseTeamsAnyOfItem = {
6727
6732
  [key: string]: unknown | null;
6728
6733
  };
6729
6734
  export type RedtailGetDatabaseTeams200DatabaseTeams = RedtailGetDatabaseTeams200DatabaseTeamsAnyOfItem[] | RedtailGetDatabaseTeams200DatabaseTeamsAnyOfTwo;
6730
- export type RedtailGetDatabaseTeams200 = {
6731
- database_teams?: RedtailGetDatabaseTeams200DatabaseTeams;
6732
- meta?: RedtailGetDatabaseTeams200Meta;
6733
- [key: string]: unknown | null;
6734
- };
6735
6735
  export type RedtailGetDatabaseTeamsBody = {
6736
6736
  /**
6737
6737
  * Whether to include family member data for the families endpoint
@@ -7569,6 +7569,11 @@ export type RedtailCreateContactAccount200AnyOfNine = {
7569
7569
  [key: string]: unknown | null;
7570
7570
  };
7571
7571
  export type RedtailCreateContactAccount200 = RedtailCreateContactAccount200AnyOf | RedtailCreateContactAccount200AnyOfNine;
7572
+ export type RedtailCreateContactAccount200AnyOfAccount = RedtailCreateContactAccount200AnyOfAccountAnyOf | RedtailCreateContactAccount200AnyOfAccountAnyOfFourItem[];
7573
+ export type RedtailCreateContactAccount200AnyOf = {
7574
+ account: RedtailCreateContactAccount200AnyOfAccount;
7575
+ [key: string]: unknown | null;
7576
+ };
7572
7577
  /**
7573
7578
  * @nullable
7574
7579
  */
@@ -7635,11 +7640,6 @@ export type RedtailCreateContactAccount200AnyOfAccountAnyOf = {
7635
7640
  updated_at?: string | null;
7636
7641
  [key: string]: unknown | null;
7637
7642
  };
7638
- export type RedtailCreateContactAccount200AnyOfAccount = RedtailCreateContactAccount200AnyOfAccountAnyOf | RedtailCreateContactAccount200AnyOfAccountAnyOfFourItem[];
7639
- export type RedtailCreateContactAccount200AnyOf = {
7640
- account: RedtailCreateContactAccount200AnyOfAccount;
7641
- [key: string]: unknown | null;
7642
- };
7643
7643
  export type RedtailCreateContactAccountBody = {
7644
7644
  /**
7645
7645
  * Account type id. Required by Redtail.
@@ -7658,7 +7658,6 @@ export type RedtailCreateContactAccountBody = {
7658
7658
  userId: string;
7659
7659
  [key: string]: unknown | null;
7660
7660
  };
7661
- export type RedtailGetContactAccount200Account = RedtailGetContactAccount200AccountAnyOf | RedtailGetContactAccount200AccountAnyOfFourItem[];
7662
7661
  export type RedtailGetContactAccount200 = {
7663
7662
  account: RedtailGetContactAccount200Account;
7664
7663
  [key: string]: unknown | null;
@@ -7696,6 +7695,7 @@ export type RedtailGetContactAccount200AccountAnyOfFourItem = {
7696
7695
  updated_at?: string | null;
7697
7696
  [key: string]: unknown | null;
7698
7697
  };
7698
+ export type RedtailGetContactAccount200Account = RedtailGetContactAccount200AccountAnyOf | RedtailGetContactAccount200AccountAnyOfFourItem[];
7699
7699
  /**
7700
7700
  * @nullable
7701
7701
  */
@@ -7783,7 +7783,6 @@ export type RedtailCreateContactNote200AnyOfThree = {
7783
7783
  success?: boolean;
7784
7784
  [key: string]: unknown | null;
7785
7785
  };
7786
- export type RedtailCreateContactNote200 = RedtailCreateContactNote200AnyOf | RedtailCreateContactNote200AnyOfThree;
7787
7786
  export type RedtailCreateContactNote200AnyOfNote = {
7788
7787
  /** @nullable */
7789
7788
  added_by?: number | null;
@@ -7814,6 +7813,7 @@ export type RedtailCreateContactNote200AnyOf = {
7814
7813
  note: RedtailCreateContactNote200AnyOfNote;
7815
7814
  [key: string]: unknown | null;
7816
7815
  };
7816
+ export type RedtailCreateContactNote200 = RedtailCreateContactNote200AnyOf | RedtailCreateContactNote200AnyOfThree;
7817
7817
  /**
7818
7818
  * Create a contact note. Extra Redtail fields are accepted.
7819
7819
  */
@@ -8797,6 +8797,10 @@ export type RedtailCreateContact200AnyOfNine = {
8797
8797
  success?: boolean;
8798
8798
  [key: string]: unknown | null;
8799
8799
  };
8800
+ export type RedtailCreateContact200AnyOf = {
8801
+ contact?: RedtailCreateContact200AnyOfContact;
8802
+ [key: string]: unknown | null;
8803
+ };
8800
8804
  export type RedtailCreateContact200 = RedtailCreateContact200AnyOf | RedtailCreateContact200AnyOfNine;
8801
8805
  export type RedtailCreateContact200AnyOfContactUrlsItem = {
8802
8806
  [key: string]: unknown | null;
@@ -8936,10 +8940,6 @@ export type RedtailCreateContact200AnyOfContact = {
8936
8940
  writing_advisor_id?: number | null;
8937
8941
  [key: string]: unknown | null;
8938
8942
  };
8939
- export type RedtailCreateContact200AnyOf = {
8940
- contact?: RedtailCreateContact200AnyOfContact;
8941
- [key: string]: unknown | null;
8942
- };
8943
8943
  /**
8944
8944
  * Contact type. Required by Redtail.
8945
8945
  */
@@ -9919,6 +9919,11 @@ export type RedtailGetContactAccounts200Meta = {
9919
9919
  total_records?: number;
9920
9920
  [key: string]: unknown | null;
9921
9921
  };
9922
+ export type RedtailGetContactAccounts200 = {
9923
+ accounts?: RedtailGetContactAccounts200AccountsItem[];
9924
+ meta?: RedtailGetContactAccounts200Meta;
9925
+ [key: string]: unknown | null;
9926
+ };
9922
9927
  /**
9923
9928
  * @nullable
9924
9929
  */
@@ -9952,11 +9957,6 @@ export type RedtailGetContactAccounts200AccountsItem = {
9952
9957
  updated_at?: string | null;
9953
9958
  [key: string]: unknown | null;
9954
9959
  };
9955
- export type RedtailGetContactAccounts200 = {
9956
- accounts?: RedtailGetContactAccounts200AccountsItem[];
9957
- meta?: RedtailGetContactAccounts200Meta;
9958
- [key: string]: unknown | null;
9959
- };
9960
9960
  export type RedtailGetContactAccountsBody = {
9961
9961
  /**
9962
9962
  * Redtail contact identifier
@@ -10024,10 +10024,6 @@ export type RedtailGetContactPersonalProfileBody = {
10024
10024
  userId: string;
10025
10025
  [key: string]: unknown | null;
10026
10026
  };
10027
- export type RedtailUpdateContact200 = {
10028
- contact?: RedtailUpdateContact200Contact;
10029
- [key: string]: unknown | null;
10030
- };
10031
10027
  export type RedtailUpdateContact200ContactUrlsItem = {
10032
10028
  [key: string]: unknown | null;
10033
10029
  };
@@ -10166,6 +10162,10 @@ export type RedtailUpdateContact200Contact = {
10166
10162
  writing_advisor_id?: number | null;
10167
10163
  [key: string]: unknown | null;
10168
10164
  };
10165
+ export type RedtailUpdateContact200 = {
10166
+ contact?: RedtailUpdateContact200Contact;
10167
+ [key: string]: unknown | null;
10168
+ };
10169
10169
  /**
10170
10170
  * Contact type. Required by Redtail.
10171
10171
  */
@@ -10248,46 +10248,6 @@ export type RedtailGetContacts200ContactsItemUrlsItem = {
10248
10248
  export type RedtailGetContacts200ContactsItemPhonesItem = {
10249
10249
  [key: string]: unknown | null;
10250
10250
  };
10251
- export type RedtailGetContacts200ContactsItemFamilyMembersItem = {
10252
- contact_id?: number;
10253
- /** @nullable */
10254
- created_at?: string | null;
10255
- /** @nullable */
10256
- deleted?: boolean | null;
10257
- family_id?: number;
10258
- /** @nullable */
10259
- hoh?: boolean | null;
10260
- id?: number;
10261
- /** @nullable */
10262
- relationship?: number | null;
10263
- /** @nullable */
10264
- relationship_name?: string | null;
10265
- /** @nullable */
10266
- updated_at?: string | null;
10267
- [key: string]: unknown | null;
10268
- };
10269
- /**
10270
- * @nullable
10271
- */
10272
- export type RedtailGetContacts200ContactsItemFamily = {
10273
- /** @nullable */
10274
- created_at?: string | null;
10275
- /** @nullable */
10276
- deleted?: boolean | null;
10277
- id?: number;
10278
- members?: RedtailGetContacts200ContactsItemFamilyMembersItem[];
10279
- /** @nullable */
10280
- name?: string | null;
10281
- /** @nullable */
10282
- updated_at?: string | null;
10283
- [key: string]: unknown | null;
10284
- } | null;
10285
- export type RedtailGetContacts200ContactsItemEmailsItem = {
10286
- [key: string]: unknown | null;
10287
- };
10288
- export type RedtailGetContacts200ContactsItemAddressesItem = {
10289
- [key: string]: unknown | null;
10290
- };
10291
10251
  export type RedtailGetContacts200ContactsItem = {
10292
10252
  /** @nullable */
10293
10253
  added_by?: number | null;
@@ -10380,14 +10340,54 @@ export type RedtailGetContacts200ContactsItem = {
10380
10340
  writing_advisor_id?: number | null;
10381
10341
  [key: string]: unknown | null;
10382
10342
  };
10383
- export type RedtailGetContactsBody = {
10384
- /**
10385
- * Whether to include family member data for the families endpoint
10386
- * @nullable
10387
- */
10388
- family_members?: boolean | null;
10389
- /**
10390
- * Whether to include deleted records
10343
+ export type RedtailGetContacts200ContactsItemFamilyMembersItem = {
10344
+ contact_id?: number;
10345
+ /** @nullable */
10346
+ created_at?: string | null;
10347
+ /** @nullable */
10348
+ deleted?: boolean | null;
10349
+ family_id?: number;
10350
+ /** @nullable */
10351
+ hoh?: boolean | null;
10352
+ id?: number;
10353
+ /** @nullable */
10354
+ relationship?: number | null;
10355
+ /** @nullable */
10356
+ relationship_name?: string | null;
10357
+ /** @nullable */
10358
+ updated_at?: string | null;
10359
+ [key: string]: unknown | null;
10360
+ };
10361
+ /**
10362
+ * @nullable
10363
+ */
10364
+ export type RedtailGetContacts200ContactsItemFamily = {
10365
+ /** @nullable */
10366
+ created_at?: string | null;
10367
+ /** @nullable */
10368
+ deleted?: boolean | null;
10369
+ id?: number;
10370
+ members?: RedtailGetContacts200ContactsItemFamilyMembersItem[];
10371
+ /** @nullable */
10372
+ name?: string | null;
10373
+ /** @nullable */
10374
+ updated_at?: string | null;
10375
+ [key: string]: unknown | null;
10376
+ } | null;
10377
+ export type RedtailGetContacts200ContactsItemEmailsItem = {
10378
+ [key: string]: unknown | null;
10379
+ };
10380
+ export type RedtailGetContacts200ContactsItemAddressesItem = {
10381
+ [key: string]: unknown | null;
10382
+ };
10383
+ export type RedtailGetContactsBody = {
10384
+ /**
10385
+ * Whether to include family member data for the families endpoint
10386
+ * @nullable
10387
+ */
10388
+ family_members?: boolean | null;
10389
+ /**
10390
+ * Whether to include deleted records
10391
10391
  * @nullable
10392
10392
  */
10393
10393
  show_deleted?: boolean | null;
@@ -10552,6 +10552,11 @@ export type RedtailGetFamilies200Meta = {
10552
10552
  total_records?: number;
10553
10553
  [key: string]: unknown | null;
10554
10554
  };
10555
+ export type RedtailGetFamilies200 = {
10556
+ contact_families?: RedtailGetFamilies200ContactFamiliesItem[];
10557
+ meta?: RedtailGetFamilies200Meta;
10558
+ [key: string]: unknown | null;
10559
+ };
10555
10560
  export type RedtailGetFamilies200ContactFamiliesItemMembersItem = {
10556
10561
  contact_id?: number;
10557
10562
  /** @nullable */
@@ -10583,11 +10588,6 @@ export type RedtailGetFamilies200ContactFamiliesItem = {
10583
10588
  updated_at?: string | null;
10584
10589
  [key: string]: unknown | null;
10585
10590
  };
10586
- export type RedtailGetFamilies200 = {
10587
- contact_families?: RedtailGetFamilies200ContactFamiliesItem[];
10588
- meta?: RedtailGetFamilies200Meta;
10589
- [key: string]: unknown | null;
10590
- };
10591
10591
  export type RedtailGetFamiliesBody = {
10592
10592
  /**
10593
10593
  * Whether to include family member data for the families endpoint
@@ -11016,6 +11016,19 @@ export type PlaidStartHostedLinkBodyUser = {
11016
11016
  email_address?: string;
11017
11017
  phone_number?: string;
11018
11018
  };
11019
+ export type PlaidStartHostedLinkBody = {
11020
+ /**
11021
+ * External user id from the agent or MCP.
11022
+ * @minLength 1
11023
+ */
11024
+ externalUserId?: string;
11025
+ hosted_link?: PlaidStartHostedLinkBodyHostedLink;
11026
+ /** Generated app URL to redirect the browser to after Plaid Hosted Link completes. */
11027
+ originalRedirectUrl?: string;
11028
+ user: PlaidStartHostedLinkBodyUser;
11029
+ /** Existing integration user id. Omit to create a new credential row before Hosted Link. Required when the integration config type is PerUser. */
11030
+ userId?: string;
11031
+ };
11019
11032
  export type PlaidStartHostedLinkBodyHostedLinkDeliveryMethod = typeof PlaidStartHostedLinkBodyHostedLinkDeliveryMethod[keyof typeof PlaidStartHostedLinkBodyHostedLinkDeliveryMethod];
11020
11033
  export declare const PlaidStartHostedLinkBodyHostedLinkDeliveryMethod: {
11021
11034
  readonly sms: "sms";
@@ -11031,19 +11044,6 @@ export type PlaidStartHostedLinkBodyHostedLink = {
11031
11044
  */
11032
11045
  url_lifetime_seconds?: number;
11033
11046
  };
11034
- export type PlaidStartHostedLinkBody = {
11035
- /**
11036
- * External user id from the agent or MCP.
11037
- * @minLength 1
11038
- */
11039
- externalUserId?: string;
11040
- hosted_link?: PlaidStartHostedLinkBodyHostedLink;
11041
- /** Generated app URL to redirect the browser to after Plaid Hosted Link completes. */
11042
- originalRedirectUrl?: string;
11043
- user: PlaidStartHostedLinkBodyUser;
11044
- /** Existing integration user id. Omit to create a new credential row before Hosted Link. Required when the integration config type is PerUser. */
11045
- userId?: string;
11046
- };
11047
11047
  export type OpenaiCreateStream500 = {
11048
11048
  error?: string;
11049
11049
  };
@@ -11370,196 +11370,971 @@ export type JiraTransitionIssueBodyUpdate = {
11370
11370
  export type JiraTransitionIssueBodyTransition = {
11371
11371
  [key: string]: unknown | null;
11372
11372
  };
11373
- /**
11374
- * Field values to set during the transition.
11375
- */
11376
- export type JiraTransitionIssueBodyFields = {
11373
+ /**
11374
+ * Field values to set during the transition.
11375
+ */
11376
+ export type JiraTransitionIssueBodyFields = {
11377
+ [key: string]: unknown | null;
11378
+ };
11379
+ export type JiraTransitionIssueBody = {
11380
+ /** Field values to set during the transition. */
11381
+ fields?: JiraTransitionIssueBodyFields;
11382
+ /** Issue id or key. */
11383
+ issueIdOrKey: string;
11384
+ /** Target transition, e.g. { "id": "5" }. */
11385
+ transition: JiraTransitionIssueBodyTransition;
11386
+ /** Field update operations. */
11387
+ update?: JiraTransitionIssueBodyUpdate;
11388
+ /** Integration user id for Jira requests. */
11389
+ userId: string;
11390
+ [key: string]: unknown | null;
11391
+ };
11392
+ export type JiraListTransitions200 = {
11393
+ [key: string]: unknown | null;
11394
+ };
11395
+ export type JiraListTransitionsBody = {
11396
+ /** Issue id or key. */
11397
+ issueIdOrKey: string;
11398
+ /** Integration user id for Jira requests. */
11399
+ userId: string;
11400
+ [key: string]: unknown | null;
11401
+ };
11402
+ export type JiraListProjects200 = {
11403
+ [key: string]: unknown | null;
11404
+ };
11405
+ export type JiraListProjectsBody = {
11406
+ /**
11407
+ * Maximum results per page.
11408
+ * @minimum 0
11409
+ * @exclusiveMinimum
11410
+ */
11411
+ maxResults?: number;
11412
+ /** Order of the returned projects. */
11413
+ orderBy?: string;
11414
+ /** Filter projects by key or name. */
11415
+ query?: string;
11416
+ /**
11417
+ * Index of the first item.
11418
+ * @minimum 0
11419
+ * @nullable
11420
+ */
11421
+ startAt?: number | null;
11422
+ /** Integration user id for Jira requests. */
11423
+ userId: string;
11424
+ [key: string]: unknown | null;
11425
+ };
11426
+ export type JiraAddComment200 = {
11427
+ [key: string]: unknown | null;
11428
+ };
11429
+ /**
11430
+ * Comment body in Atlassian Document Format (ADF).
11431
+ * @nullable
11432
+ */
11433
+ export type JiraAddCommentBodyBody = unknown | null;
11434
+ export type JiraAddCommentBody = {
11435
+ /**
11436
+ * Comment body in Atlassian Document Format (ADF).
11437
+ * @nullable
11438
+ */
11439
+ body?: JiraAddCommentBodyBody;
11440
+ /** Issue id or key. */
11441
+ issueIdOrKey: string;
11442
+ /** Integration user id for Jira requests. */
11443
+ userId: string;
11444
+ [key: string]: unknown | null;
11445
+ };
11446
+ /**
11447
+ * @nullable
11448
+ */
11449
+ export type JiraUpdateIssue200 = unknown | null;
11450
+ /**
11451
+ * Field update operations.
11452
+ */
11453
+ export type JiraUpdateIssueBodyUpdate = {
11454
+ [key: string]: unknown | null;
11455
+ };
11456
+ /**
11457
+ * Issue field values to update.
11458
+ */
11459
+ export type JiraUpdateIssueBodyFields = {
11460
+ [key: string]: unknown | null;
11461
+ };
11462
+ export type JiraUpdateIssueBody = {
11463
+ /** Issue field values to update. */
11464
+ fields?: JiraUpdateIssueBodyFields;
11465
+ /** Issue id or key. */
11466
+ issueIdOrKey: string;
11467
+ /** Field update operations. */
11468
+ update?: JiraUpdateIssueBodyUpdate;
11469
+ /** Integration user id for Jira requests. */
11470
+ userId: string;
11471
+ [key: string]: unknown | null;
11472
+ };
11473
+ export type JiraGetIssue200 = {
11474
+ [key: string]: unknown | null;
11475
+ };
11476
+ export type JiraGetIssueBody = {
11477
+ /** Entities to expand. */
11478
+ expand?: string;
11479
+ /** Comma-separated list of fields to return. */
11480
+ fields?: string;
11481
+ /** Issue id or key. */
11482
+ issueIdOrKey: string;
11483
+ /** Integration user id for Jira requests. */
11484
+ userId: string;
11485
+ [key: string]: unknown | null;
11486
+ };
11487
+ export type JiraSearchIssues200 = {
11488
+ [key: string]: unknown | null;
11489
+ };
11490
+ /**
11491
+ * Entities to expand.
11492
+ */
11493
+ export type JiraSearchIssuesBodyExpand = string[] | string;
11494
+ export type JiraSearchIssuesBody = {
11495
+ /** Entities to expand. */
11496
+ expand?: JiraSearchIssuesBodyExpand;
11497
+ /** Issue fields to return. */
11498
+ fields?: string[];
11499
+ /** JQL query string. */
11500
+ jql?: string;
11501
+ /**
11502
+ * Maximum results per page.
11503
+ * @minimum 0
11504
+ * @exclusiveMinimum
11505
+ */
11506
+ maxResults?: number;
11507
+ /** Token for the next page of results. */
11508
+ nextPageToken?: string;
11509
+ /** Integration user id for Jira requests. */
11510
+ userId: string;
11511
+ [key: string]: unknown | null;
11512
+ };
11513
+ export type JiraCreateIssue200 = {
11514
+ [key: string]: unknown | null;
11515
+ };
11516
+ /**
11517
+ * Field update operations.
11518
+ */
11519
+ export type JiraCreateIssueBodyUpdate = {
11520
+ [key: string]: unknown | null;
11521
+ };
11522
+ /**
11523
+ * Issue field values (project, summary, issuetype, etc.).
11524
+ */
11525
+ export type JiraCreateIssueBodyFields = {
11526
+ [key: string]: unknown | null;
11527
+ };
11528
+ export type JiraCreateIssueBody = {
11529
+ /** Issue field values (project, summary, issuetype, etc.). */
11530
+ fields: JiraCreateIssueBodyFields;
11531
+ /** Field update operations. */
11532
+ update?: JiraCreateIssueBodyUpdate;
11533
+ /** Integration user id for Jira requests. */
11534
+ userId: string;
11535
+ [key: string]: unknown | null;
11536
+ };
11537
+ export type JiraOauthCallback200 = {
11538
+ success: boolean;
11539
+ userId: string;
11540
+ };
11541
+ export type JiraOauthCallbackParams = {
11542
+ code?: string;
11543
+ state?: string;
11544
+ error?: string;
11545
+ };
11546
+ export type JiraSetUserCredentials200 = {
11547
+ userId: string;
11548
+ };
11549
+ export type JiraSetUserCredentialsBody = {
11550
+ /** @minLength 1 */
11551
+ clientId: string;
11552
+ /** @minLength 1 */
11553
+ clientSecret: string;
11554
+ userId?: string;
11555
+ };
11556
+ export type JiraOauthInitiate200 = {
11557
+ authorizationUrl: string;
11558
+ };
11559
+ export type JiraOauthInitiateBody = {
11560
+ /** @minLength 1 */
11561
+ externalUserId?: string;
11562
+ originalRedirectUrl: string;
11563
+ userId?: string;
11564
+ };
11565
+ export type MicrosoftSharepointSearchContent200 = {
11566
+ [key: string]: unknown | null;
11567
+ };
11568
+ export type MicrosoftSharepointSearchContentBody = {
11569
+ entityTypes?: string[];
11570
+ /**
11571
+ * @minimum 0
11572
+ * @nullable
11573
+ */
11574
+ from?: number | null;
11575
+ /** @minLength 1 */
11576
+ queryString: string;
11577
+ /**
11578
+ * @minimum 0
11579
+ * @exclusiveMinimum
11580
+ */
11581
+ size?: number;
11582
+ /** Integration user id for Microsoft SharePoint requests. */
11583
+ userId: string;
11584
+ [key: string]: unknown | null;
11585
+ };
11586
+ export type MicrosoftSharepointUpdateListItem200 = {
11587
+ [key: string]: unknown | null;
11588
+ };
11589
+ export type MicrosoftSharepointUpdateListItemBodyFields = {
11590
+ [key: string]: unknown | null;
11591
+ };
11592
+ export type MicrosoftSharepointUpdateListItemBody = {
11593
+ fields: MicrosoftSharepointUpdateListItemBodyFields;
11594
+ /** @minLength 1 */
11595
+ itemId: string;
11596
+ /** @minLength 1 */
11597
+ listId: string;
11598
+ /** @minLength 1 */
11599
+ siteId: string;
11600
+ /** Integration user id for Microsoft SharePoint requests. */
11601
+ userId: string;
11602
+ [key: string]: unknown | null;
11603
+ };
11604
+ export type MicrosoftSharepointCreateListItem200 = {
11605
+ [key: string]: unknown | null;
11606
+ };
11607
+ /**
11608
+ * List item field values.
11609
+ */
11610
+ export type MicrosoftSharepointCreateListItemBodyFields = {
11611
+ [key: string]: unknown | null;
11612
+ };
11613
+ export type MicrosoftSharepointCreateListItemBody = {
11614
+ /** List item field values. */
11615
+ fields: MicrosoftSharepointCreateListItemBodyFields;
11616
+ /** @minLength 1 */
11617
+ listId: string;
11618
+ /** @minLength 1 */
11619
+ siteId: string;
11620
+ /** Integration user id for Microsoft SharePoint requests. */
11621
+ userId: string;
11622
+ [key: string]: unknown | null;
11623
+ };
11624
+ export type MicrosoftSharepointListListItems200 = {
11625
+ [key: string]: unknown | null;
11626
+ };
11627
+ export type MicrosoftSharepointListListItemsBodyParams = {
11628
+ [key: string]: unknown | null;
11629
+ };
11630
+ export type MicrosoftSharepointListListItemsBody = {
11631
+ /** @minLength 1 */
11632
+ listId: string;
11633
+ params?: MicrosoftSharepointListListItemsBodyParams;
11634
+ /** @minLength 1 */
11635
+ siteId: string;
11636
+ /** Integration user id for Microsoft SharePoint requests. */
11637
+ userId: string;
11638
+ [key: string]: unknown | null;
11639
+ };
11640
+ export type MicrosoftSharepointGetList200 = {
11641
+ [key: string]: unknown | null;
11642
+ };
11643
+ export type MicrosoftSharepointGetListBodyParams = {
11644
+ [key: string]: unknown | null;
11645
+ };
11646
+ export type MicrosoftSharepointGetListBody = {
11647
+ /** @minLength 1 */
11648
+ listId: string;
11649
+ params?: MicrosoftSharepointGetListBodyParams;
11650
+ /** @minLength 1 */
11651
+ siteId: string;
11652
+ /** Integration user id for Microsoft SharePoint requests. */
11653
+ userId: string;
11654
+ [key: string]: unknown | null;
11655
+ };
11656
+ export type MicrosoftSharepointListLists200 = {
11657
+ [key: string]: unknown | null;
11658
+ };
11659
+ export type MicrosoftSharepointListListsBodyParams = {
11660
+ [key: string]: unknown | null;
11661
+ };
11662
+ export type MicrosoftSharepointListListsBody = {
11663
+ params?: MicrosoftSharepointListListsBodyParams;
11664
+ /** @minLength 1 */
11665
+ siteId: string;
11666
+ /** Integration user id for Microsoft SharePoint requests. */
11667
+ userId: string;
11668
+ [key: string]: unknown | null;
11669
+ };
11670
+ export type MicrosoftSharepointDeleteFile200 = {
11671
+ [key: string]: unknown | null;
11672
+ };
11673
+ export type MicrosoftSharepointDeleteFileBody = {
11674
+ /** @minLength 1 */
11675
+ driveId: string;
11676
+ /** @minLength 1 */
11677
+ itemId: string;
11678
+ /** Integration user id for Microsoft SharePoint requests. */
11679
+ userId: string;
11680
+ [key: string]: unknown | null;
11681
+ };
11682
+ export type MicrosoftSharepointUploadFile200 = {
11683
+ [key: string]: unknown | null;
11684
+ };
11685
+ export type MicrosoftSharepointUploadFileBody = {
11686
+ /**
11687
+ * Base64-encoded file content.
11688
+ * @minLength 1
11689
+ */
11690
+ content: string;
11691
+ contentType?: string;
11692
+ /** @minLength 1 */
11693
+ driveId: string;
11694
+ /** @minLength 1 */
11695
+ filename: string;
11696
+ /** @minLength 1 */
11697
+ parentId: string;
11698
+ /** Integration user id for Microsoft SharePoint requests. */
11699
+ userId: string;
11700
+ [key: string]: unknown | null;
11701
+ };
11702
+ export type MicrosoftSharepointDownloadFileContent200 = {
11703
+ contentType?: string;
11704
+ signedUrl: string;
11705
+ };
11706
+ export type MicrosoftSharepointDownloadFileContentBody = {
11707
+ /** @minLength 1 */
11708
+ driveId: string;
11709
+ /** @minLength 1 */
11710
+ itemId: string;
11711
+ /** Integration user id for Microsoft SharePoint requests. */
11712
+ userId: string;
11713
+ [key: string]: unknown | null;
11714
+ };
11715
+ export type MicrosoftSharepointListDriveItemChildren200 = {
11716
+ [key: string]: unknown | null;
11717
+ };
11718
+ export type MicrosoftSharepointListDriveItemChildrenBodyParams = {
11719
+ [key: string]: unknown | null;
11720
+ };
11721
+ export type MicrosoftSharepointListDriveItemChildrenBody = {
11722
+ /** @minLength 1 */
11723
+ driveId: string;
11724
+ /** @minLength 1 */
11725
+ itemId: string;
11726
+ params?: MicrosoftSharepointListDriveItemChildrenBodyParams;
11727
+ /** Integration user id for Microsoft SharePoint requests. */
11728
+ userId: string;
11729
+ [key: string]: unknown | null;
11730
+ };
11731
+ export type MicrosoftSharepointListDrives200 = {
11732
+ [key: string]: unknown | null;
11733
+ };
11734
+ export type MicrosoftSharepointListDrivesBodyParams = {
11735
+ [key: string]: unknown | null;
11736
+ };
11737
+ export type MicrosoftSharepointListDrivesBody = {
11738
+ params?: MicrosoftSharepointListDrivesBodyParams;
11739
+ /**
11740
+ * SharePoint site id.
11741
+ * @minLength 1
11742
+ */
11743
+ siteId: string;
11744
+ /** Integration user id for Microsoft SharePoint requests. */
11745
+ userId: string;
11746
+ [key: string]: unknown | null;
11747
+ };
11748
+ export type MicrosoftSharepointSearchSites200 = {
11749
+ [key: string]: unknown | null;
11750
+ };
11751
+ export type MicrosoftSharepointSearchSitesBodyParams = {
11752
+ [key: string]: unknown | null;
11753
+ };
11754
+ export type MicrosoftSharepointSearchSitesBody = {
11755
+ params?: MicrosoftSharepointSearchSitesBodyParams;
11756
+ /**
11757
+ * Site search query.
11758
+ * @minLength 1
11759
+ */
11760
+ query: string;
11761
+ /** Integration user id for Microsoft SharePoint requests. */
11762
+ userId: string;
11763
+ [key: string]: unknown | null;
11764
+ };
11765
+ export type MicrosoftSharepointGetSiteByPath200 = {
11766
+ [key: string]: unknown | null;
11767
+ };
11768
+ export type MicrosoftSharepointGetSiteByPathBody = {
11769
+ /**
11770
+ * SharePoint hostname, e.g. contoso.sharepoint.com.
11771
+ * @minLength 1
11772
+ */
11773
+ hostname: string;
11774
+ /**
11775
+ * Site path, e.g. sites/marketing.
11776
+ * @minLength 1
11777
+ */
11778
+ sitePath: string;
11779
+ /** Integration user id for Microsoft SharePoint requests. */
11780
+ userId: string;
11781
+ [key: string]: unknown | null;
11782
+ };
11783
+ export type MicrosoftSharepointOauthCallback200 = {
11784
+ success: boolean;
11785
+ userId: string;
11786
+ };
11787
+ export type MicrosoftSharepointOauthCallbackParams = {
11788
+ code?: string;
11789
+ state?: string;
11790
+ error?: string;
11791
+ };
11792
+ export type MicrosoftSharepointOauthInitiate200 = {
11793
+ authorizationUrl: string;
11794
+ };
11795
+ export type MicrosoftSharepointOauthInitiateBody = {
11796
+ /** @minLength 1 */
11797
+ externalUserId?: string;
11798
+ originalRedirectUrl: string;
11799
+ userId?: string;
11800
+ };
11801
+ export type MicrosoftSharepointSetUserCredentials200 = {
11802
+ userId: string;
11803
+ };
11804
+ export type MicrosoftSharepointSetUserCredentialsBody = {
11805
+ /** @minLength 1 */
11806
+ clientId: string;
11807
+ /** @minLength 1 */
11808
+ clientSecret: string;
11809
+ userId?: string;
11810
+ };
11811
+ export type MicrosoftOutlookAttachmentsCreate200 = {
11812
+ [key: string]: unknown | null;
11813
+ };
11814
+ /**
11815
+ * File attachment resource (fileAttachment).
11816
+ */
11817
+ export type MicrosoftOutlookAttachmentsCreateBodyAttachment = {
11818
+ [key: string]: unknown | null;
11819
+ };
11820
+ export type MicrosoftOutlookAttachmentsCreateBody = {
11821
+ /** File attachment resource (fileAttachment). */
11822
+ attachment: MicrosoftOutlookAttachmentsCreateBodyAttachment;
11823
+ /** @minLength 1 */
11824
+ messageId: string;
11825
+ userId: string;
11826
+ };
11827
+ export type MicrosoftOutlookMessagesDelete200 = {
11828
+ success?: boolean;
11829
+ [key: string]: unknown | null;
11830
+ };
11831
+ export type MicrosoftOutlookMessagesDeleteBody = {
11832
+ /** @minLength 1 */
11833
+ messageId: string;
11834
+ userId: string;
11835
+ };
11836
+ export type MicrosoftOutlookMessagesForward200 = {
11837
+ success?: boolean;
11838
+ [key: string]: unknown | null;
11839
+ };
11840
+ export type MicrosoftOutlookMessagesForwardBodyToRecipientsItem = {
11841
+ [key: string]: unknown | null;
11842
+ };
11843
+ export type MicrosoftOutlookMessagesForwardBodyMessage = {
11844
+ [key: string]: unknown | null;
11845
+ };
11846
+ export type MicrosoftOutlookMessagesForwardBody = {
11847
+ comment?: string;
11848
+ message?: MicrosoftOutlookMessagesForwardBodyMessage;
11849
+ /** @minLength 1 */
11850
+ messageId: string;
11851
+ /** Recipients to forward to. */
11852
+ toRecipients?: MicrosoftOutlookMessagesForwardBodyToRecipientsItem[];
11853
+ userId: string;
11854
+ };
11855
+ export type MicrosoftOutlookMessagesReplyAll200 = {
11856
+ success?: boolean;
11857
+ [key: string]: unknown | null;
11858
+ };
11859
+ /**
11860
+ * Optional message overrides.
11861
+ */
11862
+ export type MicrosoftOutlookMessagesReplyAllBodyMessage = {
11863
+ [key: string]: unknown | null;
11864
+ };
11865
+ export type MicrosoftOutlookMessagesReplyAllBody = {
11866
+ /** Plain-text comment to prepend. */
11867
+ comment?: string;
11868
+ /** Optional message overrides. */
11869
+ message?: MicrosoftOutlookMessagesReplyAllBodyMessage;
11870
+ /** @minLength 1 */
11871
+ messageId: string;
11872
+ userId: string;
11873
+ };
11874
+ export type MicrosoftOutlookMessagesReply200 = {
11875
+ success?: boolean;
11876
+ [key: string]: unknown | null;
11877
+ };
11878
+ /**
11879
+ * Optional message overrides.
11880
+ */
11881
+ export type MicrosoftOutlookMessagesReplyBodyMessage = {
11882
+ [key: string]: unknown | null;
11883
+ };
11884
+ export type MicrosoftOutlookMessagesReplyBody = {
11885
+ /** Plain-text comment to prepend. */
11886
+ comment?: string;
11887
+ /** Optional message overrides. */
11888
+ message?: MicrosoftOutlookMessagesReplyBodyMessage;
11889
+ /** @minLength 1 */
11890
+ messageId: string;
11891
+ userId: string;
11892
+ };
11893
+ export type MicrosoftOutlookMessagesSend200 = {
11894
+ success?: boolean;
11895
+ [key: string]: unknown | null;
11896
+ };
11897
+ export type MicrosoftOutlookMessagesSendBody = {
11898
+ /** @minLength 1 */
11899
+ messageId: string;
11900
+ userId: string;
11901
+ };
11902
+ export type MicrosoftOutlookMessagesUpdate200 = {
11903
+ [key: string]: unknown | null;
11904
+ };
11905
+ /**
11906
+ * Fields to update on the message.
11907
+ */
11908
+ export type MicrosoftOutlookMessagesUpdateBodyMessage = {
11909
+ [key: string]: unknown | null;
11910
+ };
11911
+ export type MicrosoftOutlookMessagesUpdateBody = {
11912
+ /** Fields to update on the message. */
11913
+ message: MicrosoftOutlookMessagesUpdateBodyMessage;
11914
+ /** @minLength 1 */
11915
+ messageId: string;
11916
+ userId: string;
11917
+ };
11918
+ export type MicrosoftOutlookMessagesCreate200 = {
11919
+ [key: string]: unknown | null;
11920
+ };
11921
+ /**
11922
+ * Draft message body.
11923
+ */
11924
+ export type MicrosoftOutlookMessagesCreateBodyMessage = {
11925
+ [key: string]: unknown | null;
11926
+ };
11927
+ export type MicrosoftOutlookMessagesCreateBody = {
11928
+ /** Draft message body. */
11929
+ message: MicrosoftOutlookMessagesCreateBodyMessage;
11930
+ userId: string;
11931
+ };
11932
+ export type MicrosoftOutlookSendMail200 = {
11933
+ success?: boolean;
11934
+ [key: string]: unknown | null;
11935
+ };
11936
+ /**
11937
+ * Microsoft Graph message resource.
11938
+ */
11939
+ export type MicrosoftOutlookSendMailBodyMessage = {
11940
+ [key: string]: unknown | null;
11941
+ };
11942
+ export type MicrosoftOutlookSendMailBody = {
11943
+ /** Microsoft Graph message resource. */
11944
+ message: MicrosoftOutlookSendMailBodyMessage;
11945
+ /** Whether to save to Sent Items. */
11946
+ saveToSentItems?: boolean;
11947
+ userId: string;
11948
+ };
11949
+ export type MicrosoftOutlookAttachmentsList200 = {
11950
+ [key: string]: unknown | null;
11951
+ };
11952
+ export type MicrosoftOutlookAttachmentsListBody = {
11953
+ /**
11954
+ * Message ID.
11955
+ * @minLength 1
11956
+ */
11957
+ messageId: string;
11958
+ /** OData $select expression. */
11959
+ select?: string;
11960
+ /**
11961
+ * Number of items to skip.
11962
+ * @minimum 0
11963
+ */
11964
+ skip?: number;
11965
+ /**
11966
+ * Maximum number of items to return.
11967
+ * @minimum 0
11968
+ * @exclusiveMinimum
11969
+ */
11970
+ top?: number;
11971
+ userId: string;
11972
+ };
11973
+ export type MicrosoftOutlookMessagesSearch200 = {
11974
+ [key: string]: unknown | null;
11975
+ };
11976
+ export type MicrosoftOutlookMessagesSearchBody = {
11977
+ /**
11978
+ * Search query string.
11979
+ * @minLength 1
11980
+ */
11981
+ query: string;
11982
+ /** OData $select expression. */
11983
+ select?: string;
11984
+ /**
11985
+ * Number of items to skip.
11986
+ * @minimum 0
11987
+ */
11988
+ skip?: number;
11989
+ /**
11990
+ * Maximum number of items to return.
11991
+ * @minimum 0
11992
+ * @exclusiveMinimum
11993
+ */
11994
+ top?: number;
11995
+ userId: string;
11996
+ };
11997
+ export type MicrosoftOutlookMessagesGet200 = {
11998
+ [key: string]: unknown | null;
11999
+ };
12000
+ export type MicrosoftOutlookMessagesGetBody = {
12001
+ /**
12002
+ * Message ID.
12003
+ * @minLength 1
12004
+ */
12005
+ messageId: string;
12006
+ /** OData $select expression. */
12007
+ select?: string;
12008
+ userId: string;
12009
+ };
12010
+ export type MicrosoftOutlookFolderMessagesList200 = {
12011
+ [key: string]: unknown | null;
12012
+ };
12013
+ export type MicrosoftOutlookFolderMessagesListBody = {
12014
+ /** OData $filter expression. */
12015
+ filter?: string;
12016
+ /**
12017
+ * Mail folder ID.
12018
+ * @minLength 1
12019
+ */
12020
+ folderId: string;
12021
+ /** OData $orderby expression. */
12022
+ orderby?: string;
12023
+ /** OData $select expression. */
12024
+ select?: string;
12025
+ /**
12026
+ * Number of items to skip.
12027
+ * @minimum 0
12028
+ */
12029
+ skip?: number;
12030
+ /**
12031
+ * Maximum number of items to return.
12032
+ * @minimum 0
12033
+ * @exclusiveMinimum
12034
+ */
12035
+ top?: number;
12036
+ userId: string;
12037
+ };
12038
+ export type MicrosoftOutlookMailFoldersList200 = {
12039
+ [key: string]: unknown | null;
12040
+ };
12041
+ export type MicrosoftOutlookMailFoldersListBody = {
12042
+ /** OData $filter expression. */
12043
+ filter?: string;
12044
+ /** OData $select expression. */
12045
+ select?: string;
12046
+ /**
12047
+ * Number of items to skip.
12048
+ * @minimum 0
12049
+ */
12050
+ skip?: number;
12051
+ /**
12052
+ * Maximum number of items to return.
12053
+ * @minimum 0
12054
+ * @exclusiveMinimum
12055
+ */
12056
+ top?: number;
12057
+ userId: string;
12058
+ };
12059
+ export type MicrosoftOutlookMessagesList200 = {
12060
+ [key: string]: unknown | null;
12061
+ };
12062
+ export type MicrosoftOutlookMessagesListBody = {
12063
+ /** OData $filter expression. */
12064
+ filter?: string;
12065
+ /** OData $orderby expression. */
12066
+ orderby?: string;
12067
+ /** OData $select expression. */
12068
+ select?: string;
12069
+ /**
12070
+ * Number of items to skip.
12071
+ * @minimum 0
12072
+ */
12073
+ skip?: number;
12074
+ /**
12075
+ * Maximum number of items to return.
12076
+ * @minimum 0
12077
+ * @exclusiveMinimum
12078
+ */
12079
+ top?: number;
12080
+ userId: string;
12081
+ };
12082
+ export type MicrosoftOutlookSetUserCredentials200 = {
12083
+ userId: string;
12084
+ };
12085
+ export type MicrosoftOutlookSetUserCredentialsBody = {
12086
+ /**
12087
+ * Microsoft OAuth client ID for this user.
12088
+ * @minLength 1
12089
+ */
12090
+ clientId: string;
12091
+ /**
12092
+ * Microsoft OAuth client secret for this user.
12093
+ * @minLength 1
12094
+ */
12095
+ clientSecret: string;
12096
+ /** Existing integration user id. Omit to create a new integration user credential record. */
12097
+ userId?: string;
12098
+ };
12099
+ export type MicrosoftOutlookAuthStart200 = {
12100
+ url: string;
12101
+ userId: string;
12102
+ };
12103
+ export type MicrosoftOutlookAuthStartBody = {
12104
+ /** Required for PerUser configs. Ignored for Shared configs. */
12105
+ clientId?: string;
12106
+ /** Required for PerUser configs. Ignored for Shared configs. */
12107
+ clientSecret?: string;
12108
+ /**
12109
+ * App user id from the agent or connect flow.
12110
+ * @minLength 1
12111
+ */
12112
+ externalUserId?: string;
12113
+ /** App URL to redirect the browser to after OAuth completes. */
12114
+ originalRedirectUrl?: string;
12115
+ /** Microsoft OAuth scopes to request. */
12116
+ scopes?: string[];
12117
+ /** Existing integration user id (internal). Use when reconnecting an existing Hub user. */
12118
+ userId?: string;
12119
+ };
12120
+ export type MicrosoftOnedriveSearchItems200 = {
11377
12121
  [key: string]: unknown | null;
11378
12122
  };
11379
- export type JiraTransitionIssueBody = {
11380
- /** Field values to set during the transition. */
11381
- fields?: JiraTransitionIssueBodyFields;
11382
- /** Issue id or key. */
11383
- issueIdOrKey: string;
11384
- /** Target transition, e.g. { "id": "5" }. */
11385
- transition: JiraTransitionIssueBodyTransition;
11386
- /** Field update operations. */
11387
- update?: JiraTransitionIssueBodyUpdate;
11388
- /** Integration user id for Jira requests. */
12123
+ export type MicrosoftOnedriveSearchItemsParams = {
11389
12124
  userId: string;
11390
- [key: string]: unknown | null;
12125
+ query: string;
12126
+ pageSize?: number;
12127
+ pageToken?: string;
11391
12128
  };
11392
- export type JiraListTransitions200 = {
12129
+ export type MicrosoftOnedriveCopyItem200 = {
11393
12130
  [key: string]: unknown | null;
11394
12131
  };
11395
- export type JiraListTransitionsBody = {
11396
- /** Issue id or key. */
11397
- issueIdOrKey: string;
11398
- /** Integration user id for Jira requests. */
12132
+ export type MicrosoftOnedriveCopyItemBody = {
12133
+ /**
12134
+ * OneDrive driveItem id.
12135
+ * @minLength 1
12136
+ */
12137
+ itemId: string;
12138
+ /**
12139
+ * Name for the copied item.
12140
+ * @minLength 1
12141
+ */
12142
+ name?: string;
12143
+ /**
12144
+ * Destination parent folder id.
12145
+ * @minLength 1
12146
+ */
12147
+ parentId?: string;
12148
+ /** Integration user id returned by Microsoft OneDrive OAuth. */
11399
12149
  userId: string;
11400
- [key: string]: unknown | null;
11401
12150
  };
11402
- export type JiraListProjects200 = {
12151
+ export type MicrosoftOnedriveCreateFolder200 = {
11403
12152
  [key: string]: unknown | null;
11404
12153
  };
11405
- export type JiraListProjectsBody = {
12154
+ export type MicrosoftOnedriveCreateFolderBodyConflictBehavior = typeof MicrosoftOnedriveCreateFolderBodyConflictBehavior[keyof typeof MicrosoftOnedriveCreateFolderBodyConflictBehavior];
12155
+ export declare const MicrosoftOnedriveCreateFolderBodyConflictBehavior: {
12156
+ readonly rename: "rename";
12157
+ readonly replace: "replace";
12158
+ readonly fail: "fail";
12159
+ };
12160
+ export type MicrosoftOnedriveCreateFolderBody = {
12161
+ conflictBehavior?: MicrosoftOnedriveCreateFolderBodyConflictBehavior;
11406
12162
  /**
11407
- * Maximum results per page.
11408
- * @minimum 0
11409
- * @exclusiveMinimum
12163
+ * Folder name.
12164
+ * @minLength 1
11410
12165
  */
11411
- maxResults?: number;
11412
- /** Order of the returned projects. */
11413
- orderBy?: string;
11414
- /** Filter projects by key or name. */
11415
- query?: string;
12166
+ name: string;
11416
12167
  /**
11417
- * Index of the first item.
11418
- * @minimum 0
11419
- * @nullable
12168
+ * OneDrive parent folder item id.
12169
+ * @minLength 1
11420
12170
  */
11421
- startAt?: number | null;
11422
- /** Integration user id for Jira requests. */
12171
+ parentId: string;
12172
+ /** Integration user id returned by Microsoft OneDrive OAuth. */
11423
12173
  userId: string;
11424
- [key: string]: unknown | null;
11425
12174
  };
11426
- export type JiraAddComment200 = {
12175
+ export type MicrosoftOnedriveUploadLargeItem200 = {
11427
12176
  [key: string]: unknown | null;
11428
12177
  };
11429
- /**
11430
- * Comment body in Atlassian Document Format (ADF).
11431
- * @nullable
11432
- */
11433
- export type JiraAddCommentBodyBody = unknown | null;
11434
- export type JiraAddCommentBody = {
12178
+ export type MicrosoftOnedriveUploadLargeItemBodyConflictBehavior = typeof MicrosoftOnedriveUploadLargeItemBodyConflictBehavior[keyof typeof MicrosoftOnedriveUploadLargeItemBodyConflictBehavior];
12179
+ export declare const MicrosoftOnedriveUploadLargeItemBodyConflictBehavior: {
12180
+ readonly rename: "rename";
12181
+ readonly replace: "replace";
12182
+ readonly fail: "fail";
12183
+ };
12184
+ export type MicrosoftOnedriveUploadLargeItemBody = {
12185
+ conflictBehavior?: MicrosoftOnedriveUploadLargeItemBodyConflictBehavior;
11435
12186
  /**
11436
- * Comment body in Atlassian Document Format (ADF).
11437
- * @nullable
12187
+ * Base64 encoded file content (over 250 MB).
12188
+ * @minLength 1
11438
12189
  */
11439
- body?: JiraAddCommentBodyBody;
11440
- /** Issue id or key. */
11441
- issueIdOrKey: string;
11442
- /** Integration user id for Jira requests. */
12190
+ content: string;
12191
+ /**
12192
+ * Target file name.
12193
+ * @minLength 1
12194
+ */
12195
+ filename: string;
12196
+ /**
12197
+ * OneDrive parent folder item id.
12198
+ * @minLength 1
12199
+ */
12200
+ parentId: string;
12201
+ /** Integration user id returned by Microsoft OneDrive OAuth. */
11443
12202
  userId: string;
11444
- [key: string]: unknown | null;
11445
12203
  };
11446
- /**
11447
- * @nullable
11448
- */
11449
- export type JiraUpdateIssue200 = unknown | null;
11450
- /**
11451
- * Field update operations.
11452
- */
11453
- export type JiraUpdateIssueBodyUpdate = {
12204
+ export type MicrosoftOnedriveUploadItem200 = {
11454
12205
  [key: string]: unknown | null;
11455
12206
  };
11456
- /**
11457
- * Issue field values to update.
11458
- */
11459
- export type JiraUpdateIssueBodyFields = {
11460
- [key: string]: unknown | null;
12207
+ export type MicrosoftOnedriveUploadItemBodyConflictBehavior = typeof MicrosoftOnedriveUploadItemBodyConflictBehavior[keyof typeof MicrosoftOnedriveUploadItemBodyConflictBehavior];
12208
+ export declare const MicrosoftOnedriveUploadItemBodyConflictBehavior: {
12209
+ readonly rename: "rename";
12210
+ readonly replace: "replace";
12211
+ readonly fail: "fail";
11461
12212
  };
11462
- export type JiraUpdateIssueBody = {
11463
- /** Issue field values to update. */
11464
- fields?: JiraUpdateIssueBodyFields;
11465
- /** Issue id or key. */
11466
- issueIdOrKey: string;
11467
- /** Field update operations. */
11468
- update?: JiraUpdateIssueBodyUpdate;
11469
- /** Integration user id for Jira requests. */
12213
+ export type MicrosoftOnedriveUploadItemBody = {
12214
+ conflictBehavior?: MicrosoftOnedriveUploadItemBodyConflictBehavior;
12215
+ /**
12216
+ * Base64 encoded file content (under 250 MB).
12217
+ * @minLength 1
12218
+ */
12219
+ content: string;
12220
+ /**
12221
+ * Target file name.
12222
+ * @minLength 1
12223
+ */
12224
+ filename: string;
12225
+ /**
12226
+ * OneDrive parent folder item id.
12227
+ * @minLength 1
12228
+ */
12229
+ parentId: string;
12230
+ /** Integration user id returned by Microsoft OneDrive OAuth. */
11470
12231
  userId: string;
11471
- [key: string]: unknown | null;
11472
12232
  };
11473
- export type JiraGetIssue200 = {
11474
- [key: string]: unknown | null;
12233
+ export type MicrosoftOnedriveDownloadItem200 = {
12234
+ contentType?: string;
12235
+ signedUrl: string;
11475
12236
  };
11476
- export type JiraGetIssueBody = {
11477
- /** Entities to expand. */
11478
- expand?: string;
11479
- /** Comma-separated list of fields to return. */
11480
- fields?: string;
11481
- /** Issue id or key. */
11482
- issueIdOrKey: string;
11483
- /** Integration user id for Jira requests. */
12237
+ export type MicrosoftOnedriveDownloadItemBody = {
12238
+ /**
12239
+ * OneDrive driveItem id.
12240
+ * @minLength 1
12241
+ */
12242
+ itemId: string;
12243
+ /** Integration user id returned by Microsoft OneDrive OAuth. */
11484
12244
  userId: string;
11485
- [key: string]: unknown | null;
11486
12245
  };
11487
- export type JiraSearchIssues200 = {
12246
+ export type MicrosoftOnedriveGetItem200 = {
11488
12247
  [key: string]: unknown | null;
11489
12248
  };
11490
- /**
11491
- * Entities to expand.
11492
- */
11493
- export type JiraSearchIssuesBodyExpand = string[] | string;
11494
- export type JiraSearchIssuesBody = {
11495
- /** Entities to expand. */
11496
- expand?: JiraSearchIssuesBodyExpand;
11497
- /** Issue fields to return. */
11498
- fields?: string[];
11499
- /** JQL query string. */
11500
- jql?: string;
12249
+ export type MicrosoftOnedriveGetItemBody = {
11501
12250
  /**
11502
- * Maximum results per page.
11503
- * @minimum 0
11504
- * @exclusiveMinimum
12251
+ * OneDrive driveItem id.
12252
+ * @minLength 1
11505
12253
  */
11506
- maxResults?: number;
11507
- /** Token for the next page of results. */
11508
- nextPageToken?: string;
11509
- /** Integration user id for Jira requests. */
12254
+ itemId: string;
12255
+ /** Integration user id returned by Microsoft OneDrive OAuth. */
11510
12256
  userId: string;
11511
- [key: string]: unknown | null;
11512
12257
  };
11513
- export type JiraCreateIssue200 = {
11514
- [key: string]: unknown | null;
12258
+ export type MicrosoftOnedriveDeleteItem200 = {
12259
+ success: boolean;
11515
12260
  };
11516
- /**
11517
- * Field update operations.
11518
- */
11519
- export type JiraCreateIssueBodyUpdate = {
11520
- [key: string]: unknown | null;
12261
+ export type MicrosoftOnedriveDeleteItemBody = {
12262
+ /**
12263
+ * OneDrive driveItem id.
12264
+ * @minLength 1
12265
+ */
12266
+ itemId: string;
12267
+ /** Integration user id returned by Microsoft OneDrive OAuth. */
12268
+ userId: string;
11521
12269
  };
11522
- /**
11523
- * Issue field values (project, summary, issuetype, etc.).
11524
- */
11525
- export type JiraCreateIssueBodyFields = {
12270
+ export type MicrosoftOnedriveUpdateItem200 = {
11526
12271
  [key: string]: unknown | null;
11527
12272
  };
11528
- export type JiraCreateIssueBody = {
11529
- /** Issue field values (project, summary, issuetype, etc.). */
11530
- fields: JiraCreateIssueBodyFields;
11531
- /** Field update operations. */
11532
- update?: JiraCreateIssueBodyUpdate;
11533
- /** Integration user id for Jira requests. */
12273
+ export type MicrosoftOnedriveUpdateItemBody = {
12274
+ /**
12275
+ * OneDrive driveItem id.
12276
+ * @minLength 1
12277
+ */
12278
+ itemId: string;
12279
+ /**
12280
+ * New item name.
12281
+ * @minLength 1
12282
+ */
12283
+ name?: string;
12284
+ /** Integration user id returned by Microsoft OneDrive OAuth. */
11534
12285
  userId: string;
12286
+ };
12287
+ export type MicrosoftOnedriveListItems200 = {
11535
12288
  [key: string]: unknown | null;
11536
12289
  };
11537
- export type JiraOauthCallback200 = {
11538
- success: boolean;
12290
+ export type MicrosoftOnedriveListItemsParams = {
11539
12291
  userId: string;
12292
+ parentId?: string;
12293
+ pageSize?: number;
12294
+ pageToken?: string;
11540
12295
  };
11541
- export type JiraOauthCallbackParams = {
11542
- code?: string;
11543
- state?: string;
12296
+ export type MicrosoftOnedriveOauthCallback200 = {
12297
+ connected: boolean;
12298
+ userId: string;
12299
+ };
12300
+ export type MicrosoftOnedriveOauthCallbackParams = {
12301
+ code: string;
12302
+ state: string;
11544
12303
  error?: string;
12304
+ error_description?: string;
11545
12305
  };
11546
- export type JiraSetUserCredentials200 = {
12306
+ export type MicrosoftOnedriveSetUserCredentials200 = {
11547
12307
  userId: string;
11548
12308
  };
11549
- export type JiraSetUserCredentialsBody = {
11550
- /** @minLength 1 */
12309
+ export type MicrosoftOnedriveSetUserCredentialsBody = {
12310
+ /**
12311
+ * Microsoft Entra application (client) ID for this user.
12312
+ * @minLength 1
12313
+ */
11551
12314
  clientId: string;
11552
- /** @minLength 1 */
12315
+ /**
12316
+ * Microsoft Entra client secret for this user.
12317
+ * @minLength 1
12318
+ */
11553
12319
  clientSecret: string;
12320
+ /** Existing integration user id. Omit to create a new integration user credential record. */
11554
12321
  userId?: string;
11555
12322
  };
11556
- export type JiraOauthInitiate200 = {
11557
- authorizationUrl: string;
12323
+ export type MicrosoftOnedriveAuthStart200 = {
12324
+ url: string;
12325
+ userId: string;
11558
12326
  };
11559
- export type JiraOauthInitiateBody = {
11560
- /** @minLength 1 */
12327
+ export type MicrosoftOnedriveAuthStartBody = {
12328
+ /**
12329
+ * App or agent end-user id. Used to find or create the credential row and auto-resolve userId on later calls.
12330
+ * @minLength 1
12331
+ */
11561
12332
  externalUserId?: string;
11562
- originalRedirectUrl: string;
12333
+ /** URL to redirect the browser to after OAuth completes. */
12334
+ originalRedirectUrl?: string;
12335
+ /** Microsoft OAuth scopes to request. */
12336
+ scopes?: string[];
12337
+ /** Existing integration user id. Omit to create a new integration user credential record. */
11563
12338
  userId?: string;
11564
12339
  };
11565
12340
  export type GoogleSlidesBatchUpdatePresentation200 = {
@@ -11966,6 +12741,23 @@ export type GoogleGenerativeAICreateStreamBodyOptions = {
11966
12741
  */
11967
12742
  topP?: number;
11968
12743
  };
12744
+ export type GoogleGenerativeAICreateStreamBody = {
12745
+ /**
12746
+ * Array of chat messages
12747
+ * @minItems 1
12748
+ */
12749
+ messages: GoogleGenerativeAICreateStreamBodyMessagesItem[];
12750
+ /** Specific model to use (defaults to resolved Google model) */
12751
+ model?: string;
12752
+ options?: GoogleGenerativeAICreateStreamBodyOptions;
12753
+ /**
12754
+ * Schema for structured output
12755
+ * @nullable
12756
+ */
12757
+ outputSchema?: GoogleGenerativeAICreateStreamBodyOutputSchema;
12758
+ /** Required when the Google Generative AI integration config type is PerUser. */
12759
+ userId?: string;
12760
+ };
11969
12761
  /**
11970
12762
  * Role of the message sender
11971
12763
  */
@@ -11995,23 +12787,6 @@ export type GoogleGenerativeAICreateStreamBodyMessagesItem = {
11995
12787
  /** Role of the message sender */
11996
12788
  role: GoogleGenerativeAICreateStreamBodyMessagesItemRole;
11997
12789
  };
11998
- export type GoogleGenerativeAICreateStreamBody = {
11999
- /**
12000
- * Array of chat messages
12001
- * @minItems 1
12002
- */
12003
- messages: GoogleGenerativeAICreateStreamBodyMessagesItem[];
12004
- /** Specific model to use (defaults to resolved Google model) */
12005
- model?: string;
12006
- options?: GoogleGenerativeAICreateStreamBodyOptions;
12007
- /**
12008
- * Schema for structured output
12009
- * @nullable
12010
- */
12011
- outputSchema?: GoogleGenerativeAICreateStreamBodyOutputSchema;
12012
- /** Required when the Google Generative AI integration config type is PerUser. */
12013
- userId?: string;
12014
- };
12015
12790
  /**
12016
12791
  * Aspect ratio for generated image
12017
12792
  */
@@ -17123,6 +17898,53 @@ export declare const getIntegrationsAPI: () => {
17123
17898
  googleSlidesCreatePresentation: (googleSlidesCreatePresentationBody: GoogleSlidesCreatePresentationBody) => Promise<GoogleSlidesCreatePresentation200>;
17124
17899
  googleSlidesGetPresentation: (googleSlidesGetPresentationBody: GoogleSlidesGetPresentationBody) => Promise<GoogleSlidesGetPresentation200>;
17125
17900
  googleSlidesBatchUpdatePresentation: (googleSlidesBatchUpdatePresentationBody: GoogleSlidesBatchUpdatePresentationBody) => Promise<GoogleSlidesBatchUpdatePresentation200>;
17901
+ microsoftOnedriveAuthStart: (microsoftOnedriveAuthStartBody: MicrosoftOnedriveAuthStartBody) => Promise<MicrosoftOnedriveAuthStart200>;
17902
+ microsoftOnedriveSetUserCredentials: (microsoftOnedriveSetUserCredentialsBody: MicrosoftOnedriveSetUserCredentialsBody) => Promise<MicrosoftOnedriveSetUserCredentials200>;
17903
+ microsoftOnedriveOauthCallback: (params: MicrosoftOnedriveOauthCallbackParams) => Promise<MicrosoftOnedriveOauthCallback200>;
17904
+ microsoftOnedriveListItems: (params: MicrosoftOnedriveListItemsParams) => Promise<MicrosoftOnedriveListItems200>;
17905
+ microsoftOnedriveUpdateItem: (microsoftOnedriveUpdateItemBody: MicrosoftOnedriveUpdateItemBody) => Promise<MicrosoftOnedriveUpdateItem200>;
17906
+ microsoftOnedriveDeleteItem: (microsoftOnedriveDeleteItemBody: MicrosoftOnedriveDeleteItemBody) => Promise<MicrosoftOnedriveDeleteItem200>;
17907
+ microsoftOnedriveGetItem: (microsoftOnedriveGetItemBody: MicrosoftOnedriveGetItemBody) => Promise<MicrosoftOnedriveGetItem200>;
17908
+ microsoftOnedriveDownloadItem: (microsoftOnedriveDownloadItemBody: MicrosoftOnedriveDownloadItemBody) => Promise<MicrosoftOnedriveDownloadItem200>;
17909
+ microsoftOnedriveUploadItem: (microsoftOnedriveUploadItemBody: MicrosoftOnedriveUploadItemBody) => Promise<MicrosoftOnedriveUploadItem200>;
17910
+ microsoftOnedriveUploadLargeItem: (microsoftOnedriveUploadLargeItemBody: MicrosoftOnedriveUploadLargeItemBody) => Promise<MicrosoftOnedriveUploadLargeItem200>;
17911
+ microsoftOnedriveCreateFolder: (microsoftOnedriveCreateFolderBody: MicrosoftOnedriveCreateFolderBody) => Promise<MicrosoftOnedriveCreateFolder200>;
17912
+ microsoftOnedriveCopyItem: (microsoftOnedriveCopyItemBody: MicrosoftOnedriveCopyItemBody) => Promise<MicrosoftOnedriveCopyItem200>;
17913
+ microsoftOnedriveSearchItems: (params: MicrosoftOnedriveSearchItemsParams) => Promise<MicrosoftOnedriveSearchItems200>;
17914
+ microsoftOutlookAuthStart: (microsoftOutlookAuthStartBody: MicrosoftOutlookAuthStartBody) => Promise<MicrosoftOutlookAuthStart200>;
17915
+ microsoftOutlookSetUserCredentials: (microsoftOutlookSetUserCredentialsBody: MicrosoftOutlookSetUserCredentialsBody) => Promise<MicrosoftOutlookSetUserCredentials200>;
17916
+ microsoftOutlookOauthCallback: () => Promise<void>;
17917
+ microsoftOutlookMessagesList: (microsoftOutlookMessagesListBody: MicrosoftOutlookMessagesListBody) => Promise<MicrosoftOutlookMessagesList200>;
17918
+ microsoftOutlookMailFoldersList: (microsoftOutlookMailFoldersListBody: MicrosoftOutlookMailFoldersListBody) => Promise<MicrosoftOutlookMailFoldersList200>;
17919
+ microsoftOutlookFolderMessagesList: (microsoftOutlookFolderMessagesListBody: MicrosoftOutlookFolderMessagesListBody) => Promise<MicrosoftOutlookFolderMessagesList200>;
17920
+ microsoftOutlookMessagesGet: (microsoftOutlookMessagesGetBody: MicrosoftOutlookMessagesGetBody) => Promise<MicrosoftOutlookMessagesGet200>;
17921
+ microsoftOutlookMessagesSearch: (microsoftOutlookMessagesSearchBody: MicrosoftOutlookMessagesSearchBody) => Promise<MicrosoftOutlookMessagesSearch200>;
17922
+ microsoftOutlookAttachmentsList: (microsoftOutlookAttachmentsListBody: MicrosoftOutlookAttachmentsListBody) => Promise<MicrosoftOutlookAttachmentsList200>;
17923
+ microsoftOutlookSendMail: (microsoftOutlookSendMailBody: MicrosoftOutlookSendMailBody) => Promise<MicrosoftOutlookSendMail200>;
17924
+ microsoftOutlookMessagesCreate: (microsoftOutlookMessagesCreateBody: MicrosoftOutlookMessagesCreateBody) => Promise<MicrosoftOutlookMessagesCreate200>;
17925
+ microsoftOutlookMessagesUpdate: (microsoftOutlookMessagesUpdateBody: MicrosoftOutlookMessagesUpdateBody) => Promise<MicrosoftOutlookMessagesUpdate200>;
17926
+ microsoftOutlookMessagesSend: (microsoftOutlookMessagesSendBody: MicrosoftOutlookMessagesSendBody) => Promise<MicrosoftOutlookMessagesSend200>;
17927
+ microsoftOutlookMessagesReply: (microsoftOutlookMessagesReplyBody: MicrosoftOutlookMessagesReplyBody) => Promise<MicrosoftOutlookMessagesReply200>;
17928
+ microsoftOutlookMessagesReplyAll: (microsoftOutlookMessagesReplyAllBody: MicrosoftOutlookMessagesReplyAllBody) => Promise<MicrosoftOutlookMessagesReplyAll200>;
17929
+ microsoftOutlookMessagesForward: (microsoftOutlookMessagesForwardBody: MicrosoftOutlookMessagesForwardBody) => Promise<MicrosoftOutlookMessagesForward200>;
17930
+ microsoftOutlookMessagesDelete: (microsoftOutlookMessagesDeleteBody: MicrosoftOutlookMessagesDeleteBody) => Promise<MicrosoftOutlookMessagesDelete200>;
17931
+ microsoftOutlookAttachmentsCreate: (microsoftOutlookAttachmentsCreateBody: MicrosoftOutlookAttachmentsCreateBody) => Promise<MicrosoftOutlookAttachmentsCreate200>;
17932
+ microsoftSharepointSetUserCredentials: (microsoftSharepointSetUserCredentialsBody: MicrosoftSharepointSetUserCredentialsBody) => Promise<MicrosoftSharepointSetUserCredentials200>;
17933
+ microsoftSharepointOauthInitiate: (microsoftSharepointOauthInitiateBody: MicrosoftSharepointOauthInitiateBody) => Promise<MicrosoftSharepointOauthInitiate200>;
17934
+ microsoftSharepointOauthCallback: (params?: MicrosoftSharepointOauthCallbackParams) => Promise<MicrosoftSharepointOauthCallback200>;
17935
+ microsoftSharepointGetSiteByPath: (microsoftSharepointGetSiteByPathBody: MicrosoftSharepointGetSiteByPathBody) => Promise<MicrosoftSharepointGetSiteByPath200>;
17936
+ microsoftSharepointSearchSites: (microsoftSharepointSearchSitesBody: MicrosoftSharepointSearchSitesBody) => Promise<MicrosoftSharepointSearchSites200>;
17937
+ microsoftSharepointListDrives: (microsoftSharepointListDrivesBody: MicrosoftSharepointListDrivesBody) => Promise<MicrosoftSharepointListDrives200>;
17938
+ microsoftSharepointListDriveItemChildren: (microsoftSharepointListDriveItemChildrenBody: MicrosoftSharepointListDriveItemChildrenBody) => Promise<MicrosoftSharepointListDriveItemChildren200>;
17939
+ microsoftSharepointDownloadFileContent: (microsoftSharepointDownloadFileContentBody: MicrosoftSharepointDownloadFileContentBody) => Promise<MicrosoftSharepointDownloadFileContent200>;
17940
+ microsoftSharepointUploadFile: (microsoftSharepointUploadFileBody: MicrosoftSharepointUploadFileBody) => Promise<MicrosoftSharepointUploadFile200>;
17941
+ microsoftSharepointDeleteFile: (microsoftSharepointDeleteFileBody: MicrosoftSharepointDeleteFileBody) => Promise<MicrosoftSharepointDeleteFile200>;
17942
+ microsoftSharepointListLists: (microsoftSharepointListListsBody: MicrosoftSharepointListListsBody) => Promise<MicrosoftSharepointListLists200>;
17943
+ microsoftSharepointGetList: (microsoftSharepointGetListBody: MicrosoftSharepointGetListBody) => Promise<MicrosoftSharepointGetList200>;
17944
+ microsoftSharepointListListItems: (microsoftSharepointListListItemsBody: MicrosoftSharepointListListItemsBody) => Promise<MicrosoftSharepointListListItems200>;
17945
+ microsoftSharepointCreateListItem: (microsoftSharepointCreateListItemBody: MicrosoftSharepointCreateListItemBody) => Promise<MicrosoftSharepointCreateListItem200>;
17946
+ microsoftSharepointUpdateListItem: (microsoftSharepointUpdateListItemBody: MicrosoftSharepointUpdateListItemBody) => Promise<MicrosoftSharepointUpdateListItem200>;
17947
+ microsoftSharepointSearchContent: (microsoftSharepointSearchContentBody: MicrosoftSharepointSearchContentBody) => Promise<MicrosoftSharepointSearchContent200>;
17126
17948
  jiraOauthInitiate: (jiraOauthInitiateBody: JiraOauthInitiateBody) => Promise<JiraOauthInitiate200>;
17127
17949
  jiraSetUserCredentials: (jiraSetUserCredentialsBody: JiraSetUserCredentialsBody) => Promise<JiraSetUserCredentials200>;
17128
17950
  jiraOauthCallback: (params?: JiraOauthCallbackParams) => Promise<JiraOauthCallback200>;
@@ -17680,6 +18502,53 @@ export type GoogleSlidesOauthCallbackResult = NonNullable<Awaited<ReturnType<Ret
17680
18502
  export type GoogleSlidesCreatePresentationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSlidesCreatePresentation']>>>;
17681
18503
  export type GoogleSlidesGetPresentationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSlidesGetPresentation']>>>;
17682
18504
  export type GoogleSlidesBatchUpdatePresentationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['googleSlidesBatchUpdatePresentation']>>>;
18505
+ export type MicrosoftOnedriveAuthStartResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveAuthStart']>>>;
18506
+ export type MicrosoftOnedriveSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveSetUserCredentials']>>>;
18507
+ export type MicrosoftOnedriveOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveOauthCallback']>>>;
18508
+ export type MicrosoftOnedriveListItemsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveListItems']>>>;
18509
+ export type MicrosoftOnedriveUpdateItemResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveUpdateItem']>>>;
18510
+ export type MicrosoftOnedriveDeleteItemResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveDeleteItem']>>>;
18511
+ export type MicrosoftOnedriveGetItemResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveGetItem']>>>;
18512
+ export type MicrosoftOnedriveDownloadItemResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveDownloadItem']>>>;
18513
+ export type MicrosoftOnedriveUploadItemResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveUploadItem']>>>;
18514
+ export type MicrosoftOnedriveUploadLargeItemResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveUploadLargeItem']>>>;
18515
+ export type MicrosoftOnedriveCreateFolderResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveCreateFolder']>>>;
18516
+ export type MicrosoftOnedriveCopyItemResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveCopyItem']>>>;
18517
+ export type MicrosoftOnedriveSearchItemsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOnedriveSearchItems']>>>;
18518
+ export type MicrosoftOutlookAuthStartResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookAuthStart']>>>;
18519
+ export type MicrosoftOutlookSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookSetUserCredentials']>>>;
18520
+ export type MicrosoftOutlookOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookOauthCallback']>>>;
18521
+ export type MicrosoftOutlookMessagesListResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookMessagesList']>>>;
18522
+ export type MicrosoftOutlookMailFoldersListResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookMailFoldersList']>>>;
18523
+ export type MicrosoftOutlookFolderMessagesListResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookFolderMessagesList']>>>;
18524
+ export type MicrosoftOutlookMessagesGetResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookMessagesGet']>>>;
18525
+ export type MicrosoftOutlookMessagesSearchResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookMessagesSearch']>>>;
18526
+ export type MicrosoftOutlookAttachmentsListResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookAttachmentsList']>>>;
18527
+ export type MicrosoftOutlookSendMailResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookSendMail']>>>;
18528
+ export type MicrosoftOutlookMessagesCreateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookMessagesCreate']>>>;
18529
+ export type MicrosoftOutlookMessagesUpdateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookMessagesUpdate']>>>;
18530
+ export type MicrosoftOutlookMessagesSendResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookMessagesSend']>>>;
18531
+ export type MicrosoftOutlookMessagesReplyResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookMessagesReply']>>>;
18532
+ export type MicrosoftOutlookMessagesReplyAllResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookMessagesReplyAll']>>>;
18533
+ export type MicrosoftOutlookMessagesForwardResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookMessagesForward']>>>;
18534
+ export type MicrosoftOutlookMessagesDeleteResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookMessagesDelete']>>>;
18535
+ export type MicrosoftOutlookAttachmentsCreateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftOutlookAttachmentsCreate']>>>;
18536
+ export type MicrosoftSharepointSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointSetUserCredentials']>>>;
18537
+ export type MicrosoftSharepointOauthInitiateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointOauthInitiate']>>>;
18538
+ export type MicrosoftSharepointOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointOauthCallback']>>>;
18539
+ export type MicrosoftSharepointGetSiteByPathResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointGetSiteByPath']>>>;
18540
+ export type MicrosoftSharepointSearchSitesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointSearchSites']>>>;
18541
+ export type MicrosoftSharepointListDrivesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointListDrives']>>>;
18542
+ export type MicrosoftSharepointListDriveItemChildrenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointListDriveItemChildren']>>>;
18543
+ export type MicrosoftSharepointDownloadFileContentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointDownloadFileContent']>>>;
18544
+ export type MicrosoftSharepointUploadFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointUploadFile']>>>;
18545
+ export type MicrosoftSharepointDeleteFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointDeleteFile']>>>;
18546
+ export type MicrosoftSharepointListListsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointListLists']>>>;
18547
+ export type MicrosoftSharepointGetListResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointGetList']>>>;
18548
+ export type MicrosoftSharepointListListItemsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointListListItems']>>>;
18549
+ export type MicrosoftSharepointCreateListItemResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointCreateListItem']>>>;
18550
+ export type MicrosoftSharepointUpdateListItemResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointUpdateListItem']>>>;
18551
+ export type MicrosoftSharepointSearchContentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['microsoftSharepointSearchContent']>>>;
17683
18552
  export type JiraOauthInitiateResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraOauthInitiate']>>>;
17684
18553
  export type JiraSetUserCredentialsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraSetUserCredentials']>>>;
17685
18554
  export type JiraOauthCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getIntegrationsAPI>['jiraOauthCallback']>>>;