mailmeteor 0.0.7 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -501,7 +501,6 @@ type ContactListIdBody = {
501
501
  remove_contacts?: boolean;
502
502
  };
503
503
  type ContactsBody = {
504
- owner: string;
505
504
  contact_list?: string;
506
505
  };
507
506
  type ContactsResponse201 = {
@@ -806,10 +805,10 @@ type OpenapiJsonResponse200 = unknown;
806
805
  type UsersGetCurrentOrganizationData = {
807
806
  body?: never;
808
807
  path: {
809
- userId: string;
808
+ user_id: string;
810
809
  };
811
810
  query?: never;
812
- url: '/users/{userId}/current_organization';
811
+ url: '/users/{user_id}/current_organization';
813
812
  };
814
813
  type UsersGetCurrentOrganizationErrors = {
815
814
  /**
@@ -828,7 +827,7 @@ type UsersGetCurrentOrganizationResponses = {
828
827
  };
829
828
  type UsersGetCurrentOrganizationResponse = UsersGetCurrentOrganizationResponses[keyof UsersGetCurrentOrganizationResponses];
830
829
  type UsersSetCurrentOrganizationData = {
831
- body?: {
830
+ body: {
832
831
  organization_id?: string | null;
833
832
  };
834
833
  path: {
@@ -854,7 +853,7 @@ type UsersSetCurrentOrganizationResponses = {
854
853
  };
855
854
  type UsersSetCurrentOrganizationResponse = UsersSetCurrentOrganizationResponses[keyof UsersSetCurrentOrganizationResponses];
856
855
  type UsersWatchMailboxData = {
857
- body?: {
856
+ body: {
858
857
  provider?: 'gmail' | 'outlook';
859
858
  force?: boolean;
860
859
  };
@@ -943,7 +942,7 @@ type OrganizationMemberListResponses = {
943
942
  };
944
943
  type OrganizationMemberListResponse = OrganizationMemberListResponses[keyof OrganizationMemberListResponses];
945
944
  type OrganizationMemberCreateData = {
946
- body?: {
945
+ body: {
947
946
  email: string;
948
947
  role: 'admin' | 'member';
949
948
  };
@@ -1007,7 +1006,7 @@ type OrganizationMemberDeleteResponses = {
1007
1006
  };
1008
1007
  type OrganizationMemberDeleteResponse = OrganizationMemberDeleteResponses[keyof OrganizationMemberDeleteResponses];
1009
1008
  type OrganizationMemberUpdateData = {
1010
- body?: {
1009
+ body: {
1011
1010
  role: 'admin' | 'member';
1012
1011
  };
1013
1012
  path: {
@@ -1047,20 +1046,20 @@ type OrganizationMemberUpdateResponses = {
1047
1046
  };
1048
1047
  };
1049
1048
  type OrganizationMemberUpdateResponse = OrganizationMemberUpdateResponses[keyof OrganizationMemberUpdateResponses];
1050
- type OrganizationListData = {
1049
+ type OrganizationsListData = {
1051
1050
  body?: never;
1052
1051
  path?: never;
1053
1052
  query?: never;
1054
1053
  url: '/organizations';
1055
1054
  };
1056
- type OrganizationListErrors = {
1055
+ type OrganizationsListErrors = {
1057
1056
  /**
1058
1057
  * Error response
1059
1058
  */
1060
1059
  default: ErrorResponse;
1061
1060
  };
1062
- type OrganizationListError = OrganizationListErrors[keyof OrganizationListErrors];
1063
- type OrganizationListResponses = {
1061
+ type OrganizationsListError = OrganizationsListErrors[keyof OrganizationsListErrors];
1062
+ type OrganizationsListResponses = {
1064
1063
  /**
1065
1064
  * Response
1066
1065
  */
@@ -1079,23 +1078,23 @@ type OrganizationListResponses = {
1079
1078
  object: 'organization';
1080
1079
  }>;
1081
1080
  };
1082
- type OrganizationListResponse = OrganizationListResponses[keyof OrganizationListResponses];
1083
- type OrganizationCreateData = {
1084
- body?: {
1081
+ type OrganizationsListResponse = OrganizationsListResponses[keyof OrganizationsListResponses];
1082
+ type OrganizationsCreateData = {
1083
+ body: {
1085
1084
  name: string;
1086
1085
  };
1087
1086
  path?: never;
1088
1087
  query?: never;
1089
1088
  url: '/organizations';
1090
1089
  };
1091
- type OrganizationCreateErrors = {
1090
+ type OrganizationsCreateErrors = {
1092
1091
  /**
1093
1092
  * Error response
1094
1093
  */
1095
1094
  default: ErrorResponse;
1096
1095
  };
1097
- type OrganizationCreateError = OrganizationCreateErrors[keyof OrganizationCreateErrors];
1098
- type OrganizationCreateResponses = {
1096
+ type OrganizationsCreateError = OrganizationsCreateErrors[keyof OrganizationsCreateErrors];
1097
+ type OrganizationsCreateResponses = {
1099
1098
  /**
1100
1099
  * Response
1101
1100
  */
@@ -1114,8 +1113,8 @@ type OrganizationCreateResponses = {
1114
1113
  object: 'organization';
1115
1114
  };
1116
1115
  };
1117
- type OrganizationCreateResponse = OrganizationCreateResponses[keyof OrganizationCreateResponses];
1118
- type OrganizationDeleteData = {
1116
+ type OrganizationsCreateResponse = OrganizationsCreateResponses[keyof OrganizationsCreateResponses];
1117
+ type OrganizationsDeleteData = {
1119
1118
  body?: never;
1120
1119
  path: {
1121
1120
  organization_id: string;
@@ -1123,21 +1122,21 @@ type OrganizationDeleteData = {
1123
1122
  query?: never;
1124
1123
  url: '/organizations/{organization_id}';
1125
1124
  };
1126
- type OrganizationDeleteErrors = {
1125
+ type OrganizationsDeleteErrors = {
1127
1126
  /**
1128
1127
  * Error response
1129
1128
  */
1130
1129
  default: ErrorResponse;
1131
1130
  };
1132
- type OrganizationDeleteError = OrganizationDeleteErrors[keyof OrganizationDeleteErrors];
1133
- type OrganizationDeleteResponses = {
1131
+ type OrganizationsDeleteError = OrganizationsDeleteErrors[keyof OrganizationsDeleteErrors];
1132
+ type OrganizationsDeleteResponses = {
1134
1133
  /**
1135
1134
  * Response
1136
1135
  */
1137
1136
  204: void;
1138
1137
  };
1139
- type OrganizationDeleteResponse = OrganizationDeleteResponses[keyof OrganizationDeleteResponses];
1140
- type OrganizationRetrieveData = {
1138
+ type OrganizationsDeleteResponse = OrganizationsDeleteResponses[keyof OrganizationsDeleteResponses];
1139
+ type OrganizationsRetrieveData = {
1141
1140
  body?: never;
1142
1141
  path: {
1143
1142
  organization_id: string;
@@ -1145,14 +1144,14 @@ type OrganizationRetrieveData = {
1145
1144
  query?: never;
1146
1145
  url: '/organizations/{organization_id}';
1147
1146
  };
1148
- type OrganizationRetrieveErrors = {
1147
+ type OrganizationsRetrieveErrors = {
1149
1148
  /**
1150
1149
  * Error response
1151
1150
  */
1152
1151
  default: ErrorResponse;
1153
1152
  };
1154
- type OrganizationRetrieveError = OrganizationRetrieveErrors[keyof OrganizationRetrieveErrors];
1155
- type OrganizationRetrieveResponses = {
1153
+ type OrganizationsRetrieveError = OrganizationsRetrieveErrors[keyof OrganizationsRetrieveErrors];
1154
+ type OrganizationsRetrieveResponses = {
1156
1155
  /**
1157
1156
  * Response
1158
1157
  */
@@ -1171,9 +1170,9 @@ type OrganizationRetrieveResponses = {
1171
1170
  object: 'organization';
1172
1171
  };
1173
1172
  };
1174
- type OrganizationRetrieveResponse = OrganizationRetrieveResponses[keyof OrganizationRetrieveResponses];
1175
- type OrganizationUpdateData = {
1176
- body?: {
1173
+ type OrganizationsRetrieveResponse = OrganizationsRetrieveResponses[keyof OrganizationsRetrieveResponses];
1174
+ type OrganizationsUpdateData = {
1175
+ body: {
1177
1176
  name?: string;
1178
1177
  };
1179
1178
  path: {
@@ -1182,14 +1181,14 @@ type OrganizationUpdateData = {
1182
1181
  query?: never;
1183
1182
  url: '/organizations/{organization_id}';
1184
1183
  };
1185
- type OrganizationUpdateErrors = {
1184
+ type OrganizationsUpdateErrors = {
1186
1185
  /**
1187
1186
  * Error response
1188
1187
  */
1189
1188
  default: ErrorResponse;
1190
1189
  };
1191
- type OrganizationUpdateError = OrganizationUpdateErrors[keyof OrganizationUpdateErrors];
1192
- type OrganizationUpdateResponses = {
1190
+ type OrganizationsUpdateError = OrganizationsUpdateErrors[keyof OrganizationsUpdateErrors];
1191
+ type OrganizationsUpdateResponses = {
1193
1192
  /**
1194
1193
  * Response
1195
1194
  */
@@ -1208,9 +1207,9 @@ type OrganizationUpdateResponses = {
1208
1207
  object: 'organization';
1209
1208
  };
1210
1209
  };
1211
- type OrganizationUpdateResponse = OrganizationUpdateResponses[keyof OrganizationUpdateResponses];
1210
+ type OrganizationsUpdateResponse = OrganizationsUpdateResponses[keyof OrganizationsUpdateResponses];
1212
1211
  type ContactListsCreateData = {
1213
- body?: {
1212
+ body: {
1214
1213
  owner: string;
1215
1214
  name: string;
1216
1215
  metadata?: {
@@ -1248,7 +1247,7 @@ type ContactListsCreateResponses = {
1248
1247
  };
1249
1248
  type ContactListsCreateResponse = ContactListsCreateResponses[keyof ContactListsCreateResponses];
1250
1249
  type ContactListsRemoveData = {
1251
- body?: {
1250
+ body: {
1252
1251
  remove_contacts?: boolean;
1253
1252
  };
1254
1253
  path: {
@@ -1318,7 +1317,7 @@ type ContactListsRetrieveResponses = {
1318
1317
  };
1319
1318
  type ContactListsRetrieveResponse = ContactListsRetrieveResponses[keyof ContactListsRetrieveResponses];
1320
1319
  type ContactListsUpdateData = {
1321
- body?: {
1320
+ body: {
1322
1321
  name: string;
1323
1322
  metadata?: {
1324
1323
  [key: string]: string;
@@ -1357,8 +1356,7 @@ type ContactListsUpdateResponses = {
1357
1356
  };
1358
1357
  type ContactListsUpdateResponse = ContactListsUpdateResponses[keyof ContactListsUpdateResponses];
1359
1358
  type ContactsDelAllData = {
1360
- body?: {
1361
- owner: string;
1359
+ body: {
1362
1360
  contact_list?: string;
1363
1361
  };
1364
1362
  path?: never;
@@ -1431,7 +1429,7 @@ type ContactsListResponses = {
1431
1429
  };
1432
1430
  type ContactsListResponse = ContactsListResponses[keyof ContactsListResponses];
1433
1431
  type ContactsCreateData = {
1434
- body?: {
1432
+ body: {
1435
1433
  owner: string;
1436
1434
  email: string;
1437
1435
  blocked?: boolean;
@@ -1486,7 +1484,7 @@ type ContactsCreateResponses = {
1486
1484
  };
1487
1485
  type ContactsCreateResponse = ContactsCreateResponses[keyof ContactsCreateResponses];
1488
1486
  type ContactsBatchCreateData = {
1489
- body?: {
1487
+ body: {
1490
1488
  contacts: Array<{
1491
1489
  owner: string;
1492
1490
  email: string;
@@ -1533,7 +1531,7 @@ type ContactsBatchCreateResponses = {
1533
1531
  };
1534
1532
  type ContactsBatchCreateResponse = ContactsBatchCreateResponses[keyof ContactsBatchCreateResponses];
1535
1533
  type ContactsBatchCreate2Data = {
1536
- body?: unknown;
1534
+ body: unknown;
1537
1535
  path?: never;
1538
1536
  query?: never;
1539
1537
  url: '/contacts/batch_legacy';
@@ -1640,7 +1638,7 @@ type ContactsRetrieveResponses = {
1640
1638
  };
1641
1639
  type ContactsRetrieveResponse = ContactsRetrieveResponses[keyof ContactsRetrieveResponses];
1642
1640
  type ContactsUpdateData = {
1643
- body?: {
1641
+ body: {
1644
1642
  blocked?: boolean;
1645
1643
  unsubscribed?: boolean;
1646
1644
  contact_lists?: Array<string>;
@@ -1872,7 +1870,7 @@ type BillingAddonsGetAddonsResponses = {
1872
1870
  };
1873
1871
  type BillingAddonsGetAddonsResponse = BillingAddonsGetAddonsResponses[keyof BillingAddonsGetAddonsResponses];
1874
1872
  type BillingAddonsPreviewUpdateData = {
1875
- body?: {
1873
+ body: {
1876
1874
  quantity: number;
1877
1875
  };
1878
1876
  path: {
@@ -1930,7 +1928,7 @@ type BillingAddonsGetAddonUsagesResponses = {
1930
1928
  };
1931
1929
  type BillingAddonsGetAddonUsagesResponse = BillingAddonsGetAddonUsagesResponses[keyof BillingAddonsGetAddonUsagesResponses];
1932
1930
  type BillingAddonsUpdateData = {
1933
- body?: {
1931
+ body: {
1934
1932
  quantity: number;
1935
1933
  };
1936
1934
  path: {
@@ -2006,7 +2004,7 @@ type BillingSubscriptionGetResponses = {
2006
2004
  };
2007
2005
  type BillingSubscriptionGetResponse = BillingSubscriptionGetResponses[keyof BillingSubscriptionGetResponses];
2008
2006
  type BillingSubscriptionUpdateData = {
2009
- body?: {
2007
+ body: {
2010
2008
  plan: 'free' | 'starter' | 'pro' | 'premium' | 'business';
2011
2009
  billing_period: 'month' | 'year';
2012
2010
  };
@@ -2033,7 +2031,7 @@ type BillingSubscriptionUpdateResponses = {
2033
2031
  };
2034
2032
  type BillingSubscriptionUpdateResponse = BillingSubscriptionUpdateResponses[keyof BillingSubscriptionUpdateResponses];
2035
2033
  type BillingSubscriptionPreviewUpdateData = {
2036
- body?: {
2034
+ body: {
2037
2035
  plan: 'free' | 'starter' | 'pro' | 'premium' | 'business';
2038
2036
  billing_period: 'month' | 'year';
2039
2037
  };
@@ -2293,24 +2291,9 @@ type types_gen_d_MembersQuery = MembersQuery;
2293
2291
  type types_gen_d_MembersResponse200 = MembersResponse200;
2294
2292
  type types_gen_d_MembersResponse201 = MembersResponse201;
2295
2293
  type types_gen_d_OpenapiJsonResponse200 = OpenapiJsonResponse200;
2296
- type types_gen_d_OrganizationCreateData = OrganizationCreateData;
2297
- type types_gen_d_OrganizationCreateError = OrganizationCreateError;
2298
- type types_gen_d_OrganizationCreateErrors = OrganizationCreateErrors;
2299
- type types_gen_d_OrganizationCreateResponse = OrganizationCreateResponse;
2300
- type types_gen_d_OrganizationCreateResponses = OrganizationCreateResponses;
2301
- type types_gen_d_OrganizationDeleteData = OrganizationDeleteData;
2302
- type types_gen_d_OrganizationDeleteError = OrganizationDeleteError;
2303
- type types_gen_d_OrganizationDeleteErrors = OrganizationDeleteErrors;
2304
- type types_gen_d_OrganizationDeleteResponse = OrganizationDeleteResponse;
2305
- type types_gen_d_OrganizationDeleteResponses = OrganizationDeleteResponses;
2306
2294
  type types_gen_d_OrganizationIdBody = OrganizationIdBody;
2307
2295
  type types_gen_d_OrganizationIdParams = OrganizationIdParams;
2308
2296
  type types_gen_d_OrganizationIdResponse200 = OrganizationIdResponse200;
2309
- type types_gen_d_OrganizationListData = OrganizationListData;
2310
- type types_gen_d_OrganizationListError = OrganizationListError;
2311
- type types_gen_d_OrganizationListErrors = OrganizationListErrors;
2312
- type types_gen_d_OrganizationListResponse = OrganizationListResponse;
2313
- type types_gen_d_OrganizationListResponses = OrganizationListResponses;
2314
2297
  type types_gen_d_OrganizationMemberCreateData = OrganizationMemberCreateData;
2315
2298
  type types_gen_d_OrganizationMemberCreateError = OrganizationMemberCreateError;
2316
2299
  type types_gen_d_OrganizationMemberCreateErrors = OrganizationMemberCreateErrors;
@@ -2331,19 +2314,34 @@ type types_gen_d_OrganizationMemberUpdateError = OrganizationMemberUpdateError;
2331
2314
  type types_gen_d_OrganizationMemberUpdateErrors = OrganizationMemberUpdateErrors;
2332
2315
  type types_gen_d_OrganizationMemberUpdateResponse = OrganizationMemberUpdateResponse;
2333
2316
  type types_gen_d_OrganizationMemberUpdateResponses = OrganizationMemberUpdateResponses;
2334
- type types_gen_d_OrganizationRetrieveData = OrganizationRetrieveData;
2335
- type types_gen_d_OrganizationRetrieveError = OrganizationRetrieveError;
2336
- type types_gen_d_OrganizationRetrieveErrors = OrganizationRetrieveErrors;
2337
- type types_gen_d_OrganizationRetrieveResponse = OrganizationRetrieveResponse;
2338
- type types_gen_d_OrganizationRetrieveResponses = OrganizationRetrieveResponses;
2339
- type types_gen_d_OrganizationUpdateData = OrganizationUpdateData;
2340
- type types_gen_d_OrganizationUpdateError = OrganizationUpdateError;
2341
- type types_gen_d_OrganizationUpdateErrors = OrganizationUpdateErrors;
2342
- type types_gen_d_OrganizationUpdateResponse = OrganizationUpdateResponse;
2343
- type types_gen_d_OrganizationUpdateResponses = OrganizationUpdateResponses;
2344
2317
  type types_gen_d_OrganizationsBody = OrganizationsBody;
2318
+ type types_gen_d_OrganizationsCreateData = OrganizationsCreateData;
2319
+ type types_gen_d_OrganizationsCreateError = OrganizationsCreateError;
2320
+ type types_gen_d_OrganizationsCreateErrors = OrganizationsCreateErrors;
2321
+ type types_gen_d_OrganizationsCreateResponse = OrganizationsCreateResponse;
2322
+ type types_gen_d_OrganizationsCreateResponses = OrganizationsCreateResponses;
2323
+ type types_gen_d_OrganizationsDeleteData = OrganizationsDeleteData;
2324
+ type types_gen_d_OrganizationsDeleteError = OrganizationsDeleteError;
2325
+ type types_gen_d_OrganizationsDeleteErrors = OrganizationsDeleteErrors;
2326
+ type types_gen_d_OrganizationsDeleteResponse = OrganizationsDeleteResponse;
2327
+ type types_gen_d_OrganizationsDeleteResponses = OrganizationsDeleteResponses;
2328
+ type types_gen_d_OrganizationsListData = OrganizationsListData;
2329
+ type types_gen_d_OrganizationsListError = OrganizationsListError;
2330
+ type types_gen_d_OrganizationsListErrors = OrganizationsListErrors;
2331
+ type types_gen_d_OrganizationsListResponse = OrganizationsListResponse;
2332
+ type types_gen_d_OrganizationsListResponses = OrganizationsListResponses;
2345
2333
  type types_gen_d_OrganizationsResponse200 = OrganizationsResponse200;
2346
2334
  type types_gen_d_OrganizationsResponse201 = OrganizationsResponse201;
2335
+ type types_gen_d_OrganizationsRetrieveData = OrganizationsRetrieveData;
2336
+ type types_gen_d_OrganizationsRetrieveError = OrganizationsRetrieveError;
2337
+ type types_gen_d_OrganizationsRetrieveErrors = OrganizationsRetrieveErrors;
2338
+ type types_gen_d_OrganizationsRetrieveResponse = OrganizationsRetrieveResponse;
2339
+ type types_gen_d_OrganizationsRetrieveResponses = OrganizationsRetrieveResponses;
2340
+ type types_gen_d_OrganizationsUpdateData = OrganizationsUpdateData;
2341
+ type types_gen_d_OrganizationsUpdateError = OrganizationsUpdateError;
2342
+ type types_gen_d_OrganizationsUpdateErrors = OrganizationsUpdateErrors;
2343
+ type types_gen_d_OrganizationsUpdateResponse = OrganizationsUpdateResponse;
2344
+ type types_gen_d_OrganizationsUpdateResponses = OrganizationsUpdateResponses;
2347
2345
  type types_gen_d_PreviewBody = PreviewBody;
2348
2346
  type types_gen_d_PreviewParams = PreviewParams;
2349
2347
  type types_gen_d_PreviewResponse200 = PreviewResponse200;
@@ -2378,7 +2376,7 @@ type types_gen_d_UsersWatchMailboxResponses = UsersWatchMailboxResponses;
2378
2376
  type types_gen_d_WatchMailboxBody = WatchMailboxBody;
2379
2377
  type types_gen_d_WatchMailboxParams = WatchMailboxParams;
2380
2378
  declare namespace types_gen_d {
2381
- export type { types_gen_d_ActionIdParams as ActionIdParams, types_gen_d_AddonBody as AddonBody, types_gen_d_AddonParams as AddonParams, types_gen_d_AddonResponse200 as AddonResponse200, types_gen_d_AddonsResponse200 as AddonsResponse200, types_gen_d_BatchBody as BatchBody, types_gen_d_BatchLegacyBody as BatchLegacyBody, types_gen_d_BatchLegacyResponse201 as BatchLegacyResponse201, types_gen_d_BatchResponse201 as BatchResponse201, types_gen_d_BatchResponse202 as BatchResponse202, types_gen_d_BillingAddonsGetAddonUsagesData as BillingAddonsGetAddonUsagesData, types_gen_d_BillingAddonsGetAddonUsagesError as BillingAddonsGetAddonUsagesError, types_gen_d_BillingAddonsGetAddonUsagesErrors as BillingAddonsGetAddonUsagesErrors, types_gen_d_BillingAddonsGetAddonUsagesResponse as BillingAddonsGetAddonUsagesResponse, types_gen_d_BillingAddonsGetAddonUsagesResponses as BillingAddonsGetAddonUsagesResponses, types_gen_d_BillingAddonsGetAddonsData as BillingAddonsGetAddonsData, types_gen_d_BillingAddonsGetAddonsError as BillingAddonsGetAddonsError, types_gen_d_BillingAddonsGetAddonsErrors as BillingAddonsGetAddonsErrors, types_gen_d_BillingAddonsGetAddonsResponse as BillingAddonsGetAddonsResponse, types_gen_d_BillingAddonsGetAddonsResponses as BillingAddonsGetAddonsResponses, types_gen_d_BillingAddonsPreviewUpdateData as BillingAddonsPreviewUpdateData, types_gen_d_BillingAddonsPreviewUpdateError as BillingAddonsPreviewUpdateError, types_gen_d_BillingAddonsPreviewUpdateErrors as BillingAddonsPreviewUpdateErrors, types_gen_d_BillingAddonsPreviewUpdateResponse as BillingAddonsPreviewUpdateResponse, types_gen_d_BillingAddonsPreviewUpdateResponses as BillingAddonsPreviewUpdateResponses, types_gen_d_BillingAddonsUpdateData as BillingAddonsUpdateData, types_gen_d_BillingAddonsUpdateError as BillingAddonsUpdateError, types_gen_d_BillingAddonsUpdateErrors as BillingAddonsUpdateErrors, types_gen_d_BillingAddonsUpdateResponse as BillingAddonsUpdateResponse, types_gen_d_BillingAddonsUpdateResponses as BillingAddonsUpdateResponses, types_gen_d_BillingGetPricesData as BillingGetPricesData, types_gen_d_BillingGetPricesError as BillingGetPricesError, types_gen_d_BillingGetPricesErrors as BillingGetPricesErrors, types_gen_d_BillingGetPricesResponse as BillingGetPricesResponse, types_gen_d_BillingGetPricesResponses as BillingGetPricesResponses, types_gen_d_BillingSubscriptionGetData as BillingSubscriptionGetData, types_gen_d_BillingSubscriptionGetError as BillingSubscriptionGetError, types_gen_d_BillingSubscriptionGetErrors as BillingSubscriptionGetErrors, types_gen_d_BillingSubscriptionGetResponse as BillingSubscriptionGetResponse, types_gen_d_BillingSubscriptionGetResponses as BillingSubscriptionGetResponses, types_gen_d_BillingSubscriptionPreviewUpdateData as BillingSubscriptionPreviewUpdateData, types_gen_d_BillingSubscriptionPreviewUpdateError as BillingSubscriptionPreviewUpdateError, types_gen_d_BillingSubscriptionPreviewUpdateErrors as BillingSubscriptionPreviewUpdateErrors, types_gen_d_BillingSubscriptionPreviewUpdateResponse as BillingSubscriptionPreviewUpdateResponse, types_gen_d_BillingSubscriptionPreviewUpdateResponses as BillingSubscriptionPreviewUpdateResponses, types_gen_d_BillingSubscriptionUpdateData as BillingSubscriptionUpdateData, types_gen_d_BillingSubscriptionUpdateError as BillingSubscriptionUpdateError, types_gen_d_BillingSubscriptionUpdateErrors as BillingSubscriptionUpdateErrors, types_gen_d_BillingSubscriptionUpdateResponse as BillingSubscriptionUpdateResponse, types_gen_d_BillingSubscriptionUpdateResponses as BillingSubscriptionUpdateResponses, types_gen_d_BlockParams as BlockParams, types_gen_d_BlockResponse200 as BlockResponse200, types_gen_d_ClientOptions as ClientOptions, types_gen_d_ContactIdBody as ContactIdBody, types_gen_d_ContactIdParams as ContactIdParams, types_gen_d_ContactIdResponse200 as ContactIdResponse200, types_gen_d_ContactListIdBody as ContactListIdBody, types_gen_d_ContactListIdParams as ContactListIdParams, types_gen_d_ContactListIdResponse200 as ContactListIdResponse200, types_gen_d_ContactListsBody as ContactListsBody, types_gen_d_ContactListsCreateData as ContactListsCreateData, types_gen_d_ContactListsCreateError as ContactListsCreateError, types_gen_d_ContactListsCreateErrors as ContactListsCreateErrors, types_gen_d_ContactListsCreateResponse as ContactListsCreateResponse, types_gen_d_ContactListsCreateResponses as ContactListsCreateResponses, types_gen_d_ContactListsRemoveData as ContactListsRemoveData, types_gen_d_ContactListsRemoveError as ContactListsRemoveError, types_gen_d_ContactListsRemoveErrors as ContactListsRemoveErrors, types_gen_d_ContactListsRemoveResponse as ContactListsRemoveResponse, types_gen_d_ContactListsRemoveResponses as ContactListsRemoveResponses, types_gen_d_ContactListsResponse201 as ContactListsResponse201, types_gen_d_ContactListsRetrieveData as ContactListsRetrieveData, types_gen_d_ContactListsRetrieveError as ContactListsRetrieveError, types_gen_d_ContactListsRetrieveErrors as ContactListsRetrieveErrors, types_gen_d_ContactListsRetrieveResponse as ContactListsRetrieveResponse, types_gen_d_ContactListsRetrieveResponses as ContactListsRetrieveResponses, types_gen_d_ContactListsUpdateData as ContactListsUpdateData, types_gen_d_ContactListsUpdateError as ContactListsUpdateError, types_gen_d_ContactListsUpdateErrors as ContactListsUpdateErrors, types_gen_d_ContactListsUpdateResponse as ContactListsUpdateResponse, types_gen_d_ContactListsUpdateResponses as ContactListsUpdateResponses, types_gen_d_ContactsBatchCreate2Data as ContactsBatchCreate2Data, types_gen_d_ContactsBatchCreate2Error as ContactsBatchCreate2Error, types_gen_d_ContactsBatchCreate2Errors as ContactsBatchCreate2Errors, types_gen_d_ContactsBatchCreate2Responses as ContactsBatchCreate2Responses, types_gen_d_ContactsBatchCreateData as ContactsBatchCreateData, types_gen_d_ContactsBatchCreateError as ContactsBatchCreateError, types_gen_d_ContactsBatchCreateErrors as ContactsBatchCreateErrors, types_gen_d_ContactsBatchCreateResponse as ContactsBatchCreateResponse, types_gen_d_ContactsBatchCreateResponses as ContactsBatchCreateResponses, types_gen_d_ContactsBlockData as ContactsBlockData, types_gen_d_ContactsBlockError as ContactsBlockError, types_gen_d_ContactsBlockErrors as ContactsBlockErrors, types_gen_d_ContactsBlockResponse as ContactsBlockResponse, types_gen_d_ContactsBlockResponses as ContactsBlockResponses, types_gen_d_ContactsBody as ContactsBody, types_gen_d_ContactsCreateData as ContactsCreateData, types_gen_d_ContactsCreateError as ContactsCreateError, types_gen_d_ContactsCreateErrors as ContactsCreateErrors, types_gen_d_ContactsCreateResponse as ContactsCreateResponse, types_gen_d_ContactsCreateResponses as ContactsCreateResponses, types_gen_d_ContactsDelAllData as ContactsDelAllData, types_gen_d_ContactsDelAllError as ContactsDelAllError, types_gen_d_ContactsDelAllErrors as ContactsDelAllErrors, types_gen_d_ContactsDelAllResponse as ContactsDelAllResponse, types_gen_d_ContactsDelAllResponses as ContactsDelAllResponses, types_gen_d_ContactsDelData as ContactsDelData, types_gen_d_ContactsDelError as ContactsDelError, types_gen_d_ContactsDelErrors as ContactsDelErrors, types_gen_d_ContactsDelResponse as ContactsDelResponse, types_gen_d_ContactsDelResponses as ContactsDelResponses, types_gen_d_ContactsListData as ContactsListData, types_gen_d_ContactsListError as ContactsListError, types_gen_d_ContactsListErrors as ContactsListErrors, types_gen_d_ContactsListResponse as ContactsListResponse, types_gen_d_ContactsListResponses as ContactsListResponses, types_gen_d_ContactsQuery as ContactsQuery, types_gen_d_ContactsResponse200 as ContactsResponse200, types_gen_d_ContactsResponse201 as ContactsResponse201, types_gen_d_ContactsResubscribeData as ContactsResubscribeData, types_gen_d_ContactsResubscribeError as ContactsResubscribeError, types_gen_d_ContactsResubscribeErrors as ContactsResubscribeErrors, types_gen_d_ContactsResubscribeResponse as ContactsResubscribeResponse, types_gen_d_ContactsResubscribeResponses as ContactsResubscribeResponses, types_gen_d_ContactsRetrieveData as ContactsRetrieveData, types_gen_d_ContactsRetrieveError as ContactsRetrieveError, types_gen_d_ContactsRetrieveErrors as ContactsRetrieveErrors, types_gen_d_ContactsRetrieveResponse as ContactsRetrieveResponse, types_gen_d_ContactsRetrieveResponses as ContactsRetrieveResponses, types_gen_d_ContactsUnblockData as ContactsUnblockData, types_gen_d_ContactsUnblockError as ContactsUnblockError, types_gen_d_ContactsUnblockErrors as ContactsUnblockErrors, types_gen_d_ContactsUnblockResponse as ContactsUnblockResponse, types_gen_d_ContactsUnblockResponses as ContactsUnblockResponses, types_gen_d_ContactsUpdateData as ContactsUpdateData, types_gen_d_ContactsUpdateError as ContactsUpdateError, types_gen_d_ContactsUpdateErrors as ContactsUpdateErrors, types_gen_d_ContactsUpdateResponse as ContactsUpdateResponse, types_gen_d_ContactsUpdateResponses as ContactsUpdateResponses, types_gen_d_CurrentOrganizationBody as CurrentOrganizationBody, types_gen_d_CurrentOrganizationParams as CurrentOrganizationParams, types_gen_d_CurrentOrganizationResponse200 as CurrentOrganizationResponse200, types_gen_d_ErrorResponse as ErrorResponse, types_gen_d_GetOpenapiJsonData as GetOpenapiJsonData, types_gen_d_GetOpenapiJsonError as GetOpenapiJsonError, types_gen_d_GetOpenapiJsonErrors as GetOpenapiJsonErrors, types_gen_d_GetOpenapiJsonResponses as GetOpenapiJsonResponses, types_gen_d_MemberIdBody as MemberIdBody, types_gen_d_MemberIdParams as MemberIdParams, types_gen_d_MemberIdResponse200 as MemberIdResponse200, types_gen_d_MembersBody as MembersBody, types_gen_d_MembersParams as MembersParams, types_gen_d_MembersQuery as MembersQuery, types_gen_d_MembersResponse200 as MembersResponse200, types_gen_d_MembersResponse201 as MembersResponse201, types_gen_d_OpenapiJsonResponse200 as OpenapiJsonResponse200, types_gen_d_OrganizationCreateData as OrganizationCreateData, types_gen_d_OrganizationCreateError as OrganizationCreateError, types_gen_d_OrganizationCreateErrors as OrganizationCreateErrors, types_gen_d_OrganizationCreateResponse as OrganizationCreateResponse, types_gen_d_OrganizationCreateResponses as OrganizationCreateResponses, types_gen_d_OrganizationDeleteData as OrganizationDeleteData, types_gen_d_OrganizationDeleteError as OrganizationDeleteError, types_gen_d_OrganizationDeleteErrors as OrganizationDeleteErrors, types_gen_d_OrganizationDeleteResponse as OrganizationDeleteResponse, types_gen_d_OrganizationDeleteResponses as OrganizationDeleteResponses, types_gen_d_OrganizationIdBody as OrganizationIdBody, types_gen_d_OrganizationIdParams as OrganizationIdParams, types_gen_d_OrganizationIdResponse200 as OrganizationIdResponse200, types_gen_d_OrganizationListData as OrganizationListData, types_gen_d_OrganizationListError as OrganizationListError, types_gen_d_OrganizationListErrors as OrganizationListErrors, types_gen_d_OrganizationListResponse as OrganizationListResponse, types_gen_d_OrganizationListResponses as OrganizationListResponses, types_gen_d_OrganizationMemberCreateData as OrganizationMemberCreateData, types_gen_d_OrganizationMemberCreateError as OrganizationMemberCreateError, types_gen_d_OrganizationMemberCreateErrors as OrganizationMemberCreateErrors, types_gen_d_OrganizationMemberCreateResponse as OrganizationMemberCreateResponse, types_gen_d_OrganizationMemberCreateResponses as OrganizationMemberCreateResponses, types_gen_d_OrganizationMemberDeleteData as OrganizationMemberDeleteData, types_gen_d_OrganizationMemberDeleteError as OrganizationMemberDeleteError, types_gen_d_OrganizationMemberDeleteErrors as OrganizationMemberDeleteErrors, types_gen_d_OrganizationMemberDeleteResponse as OrganizationMemberDeleteResponse, types_gen_d_OrganizationMemberDeleteResponses as OrganizationMemberDeleteResponses, types_gen_d_OrganizationMemberListData as OrganizationMemberListData, types_gen_d_OrganizationMemberListError as OrganizationMemberListError, types_gen_d_OrganizationMemberListErrors as OrganizationMemberListErrors, types_gen_d_OrganizationMemberListResponse as OrganizationMemberListResponse, types_gen_d_OrganizationMemberListResponses as OrganizationMemberListResponses, types_gen_d_OrganizationMemberUpdateData as OrganizationMemberUpdateData, types_gen_d_OrganizationMemberUpdateError as OrganizationMemberUpdateError, types_gen_d_OrganizationMemberUpdateErrors as OrganizationMemberUpdateErrors, types_gen_d_OrganizationMemberUpdateResponse as OrganizationMemberUpdateResponse, types_gen_d_OrganizationMemberUpdateResponses as OrganizationMemberUpdateResponses, types_gen_d_OrganizationRetrieveData as OrganizationRetrieveData, types_gen_d_OrganizationRetrieveError as OrganizationRetrieveError, types_gen_d_OrganizationRetrieveErrors as OrganizationRetrieveErrors, types_gen_d_OrganizationRetrieveResponse as OrganizationRetrieveResponse, types_gen_d_OrganizationRetrieveResponses as OrganizationRetrieveResponses, types_gen_d_OrganizationUpdateData as OrganizationUpdateData, types_gen_d_OrganizationUpdateError as OrganizationUpdateError, types_gen_d_OrganizationUpdateErrors as OrganizationUpdateErrors, types_gen_d_OrganizationUpdateResponse as OrganizationUpdateResponse, types_gen_d_OrganizationUpdateResponses as OrganizationUpdateResponses, types_gen_d_OrganizationsBody as OrganizationsBody, types_gen_d_OrganizationsResponse200 as OrganizationsResponse200, types_gen_d_OrganizationsResponse201 as OrganizationsResponse201, types_gen_d_PreviewBody as PreviewBody, types_gen_d_PreviewParams as PreviewParams, types_gen_d_PreviewResponse200 as PreviewResponse200, types_gen_d_PricesQuery as PricesQuery, types_gen_d_PricesResponse200 as PricesResponse200, types_gen_d_ResubscribeParams as ResubscribeParams, types_gen_d_ResubscribeResponse200 as ResubscribeResponse200, types_gen_d_SubscriptionBody as SubscriptionBody, types_gen_d_SubscriptionResponse200 as SubscriptionResponse200, types_gen_d_UnblockParams as UnblockParams, types_gen_d_UnblockResponse200 as UnblockResponse200, types_gen_d_UsersDeleteActionData as UsersDeleteActionData, types_gen_d_UsersDeleteActionError as UsersDeleteActionError, types_gen_d_UsersDeleteActionErrors as UsersDeleteActionErrors, types_gen_d_UsersDeleteActionResponse as UsersDeleteActionResponse, types_gen_d_UsersDeleteActionResponses as UsersDeleteActionResponses, types_gen_d_UsersGetCurrentOrganizationData as UsersGetCurrentOrganizationData, types_gen_d_UsersGetCurrentOrganizationError as UsersGetCurrentOrganizationError, types_gen_d_UsersGetCurrentOrganizationErrors as UsersGetCurrentOrganizationErrors, types_gen_d_UsersGetCurrentOrganizationResponse as UsersGetCurrentOrganizationResponse, types_gen_d_UsersGetCurrentOrganizationResponses as UsersGetCurrentOrganizationResponses, types_gen_d_UsersSetCurrentOrganizationData as UsersSetCurrentOrganizationData, types_gen_d_UsersSetCurrentOrganizationError as UsersSetCurrentOrganizationError, types_gen_d_UsersSetCurrentOrganizationErrors as UsersSetCurrentOrganizationErrors, types_gen_d_UsersSetCurrentOrganizationResponse as UsersSetCurrentOrganizationResponse, types_gen_d_UsersSetCurrentOrganizationResponses as UsersSetCurrentOrganizationResponses, types_gen_d_UsersWatchMailboxData as UsersWatchMailboxData, types_gen_d_UsersWatchMailboxError as UsersWatchMailboxError, types_gen_d_UsersWatchMailboxErrors as UsersWatchMailboxErrors, types_gen_d_UsersWatchMailboxResponse as UsersWatchMailboxResponse, types_gen_d_UsersWatchMailboxResponses as UsersWatchMailboxResponses, types_gen_d_WatchMailboxBody as WatchMailboxBody, types_gen_d_WatchMailboxParams as WatchMailboxParams };
2379
+ export type { types_gen_d_ActionIdParams as ActionIdParams, types_gen_d_AddonBody as AddonBody, types_gen_d_AddonParams as AddonParams, types_gen_d_AddonResponse200 as AddonResponse200, types_gen_d_AddonsResponse200 as AddonsResponse200, types_gen_d_BatchBody as BatchBody, types_gen_d_BatchLegacyBody as BatchLegacyBody, types_gen_d_BatchLegacyResponse201 as BatchLegacyResponse201, types_gen_d_BatchResponse201 as BatchResponse201, types_gen_d_BatchResponse202 as BatchResponse202, types_gen_d_BillingAddonsGetAddonUsagesData as BillingAddonsGetAddonUsagesData, types_gen_d_BillingAddonsGetAddonUsagesError as BillingAddonsGetAddonUsagesError, types_gen_d_BillingAddonsGetAddonUsagesErrors as BillingAddonsGetAddonUsagesErrors, types_gen_d_BillingAddonsGetAddonUsagesResponse as BillingAddonsGetAddonUsagesResponse, types_gen_d_BillingAddonsGetAddonUsagesResponses as BillingAddonsGetAddonUsagesResponses, types_gen_d_BillingAddonsGetAddonsData as BillingAddonsGetAddonsData, types_gen_d_BillingAddonsGetAddonsError as BillingAddonsGetAddonsError, types_gen_d_BillingAddonsGetAddonsErrors as BillingAddonsGetAddonsErrors, types_gen_d_BillingAddonsGetAddonsResponse as BillingAddonsGetAddonsResponse, types_gen_d_BillingAddonsGetAddonsResponses as BillingAddonsGetAddonsResponses, types_gen_d_BillingAddonsPreviewUpdateData as BillingAddonsPreviewUpdateData, types_gen_d_BillingAddonsPreviewUpdateError as BillingAddonsPreviewUpdateError, types_gen_d_BillingAddonsPreviewUpdateErrors as BillingAddonsPreviewUpdateErrors, types_gen_d_BillingAddonsPreviewUpdateResponse as BillingAddonsPreviewUpdateResponse, types_gen_d_BillingAddonsPreviewUpdateResponses as BillingAddonsPreviewUpdateResponses, types_gen_d_BillingAddonsUpdateData as BillingAddonsUpdateData, types_gen_d_BillingAddonsUpdateError as BillingAddonsUpdateError, types_gen_d_BillingAddonsUpdateErrors as BillingAddonsUpdateErrors, types_gen_d_BillingAddonsUpdateResponse as BillingAddonsUpdateResponse, types_gen_d_BillingAddonsUpdateResponses as BillingAddonsUpdateResponses, types_gen_d_BillingGetPricesData as BillingGetPricesData, types_gen_d_BillingGetPricesError as BillingGetPricesError, types_gen_d_BillingGetPricesErrors as BillingGetPricesErrors, types_gen_d_BillingGetPricesResponse as BillingGetPricesResponse, types_gen_d_BillingGetPricesResponses as BillingGetPricesResponses, types_gen_d_BillingSubscriptionGetData as BillingSubscriptionGetData, types_gen_d_BillingSubscriptionGetError as BillingSubscriptionGetError, types_gen_d_BillingSubscriptionGetErrors as BillingSubscriptionGetErrors, types_gen_d_BillingSubscriptionGetResponse as BillingSubscriptionGetResponse, types_gen_d_BillingSubscriptionGetResponses as BillingSubscriptionGetResponses, types_gen_d_BillingSubscriptionPreviewUpdateData as BillingSubscriptionPreviewUpdateData, types_gen_d_BillingSubscriptionPreviewUpdateError as BillingSubscriptionPreviewUpdateError, types_gen_d_BillingSubscriptionPreviewUpdateErrors as BillingSubscriptionPreviewUpdateErrors, types_gen_d_BillingSubscriptionPreviewUpdateResponse as BillingSubscriptionPreviewUpdateResponse, types_gen_d_BillingSubscriptionPreviewUpdateResponses as BillingSubscriptionPreviewUpdateResponses, types_gen_d_BillingSubscriptionUpdateData as BillingSubscriptionUpdateData, types_gen_d_BillingSubscriptionUpdateError as BillingSubscriptionUpdateError, types_gen_d_BillingSubscriptionUpdateErrors as BillingSubscriptionUpdateErrors, types_gen_d_BillingSubscriptionUpdateResponse as BillingSubscriptionUpdateResponse, types_gen_d_BillingSubscriptionUpdateResponses as BillingSubscriptionUpdateResponses, types_gen_d_BlockParams as BlockParams, types_gen_d_BlockResponse200 as BlockResponse200, types_gen_d_ClientOptions as ClientOptions, types_gen_d_ContactIdBody as ContactIdBody, types_gen_d_ContactIdParams as ContactIdParams, types_gen_d_ContactIdResponse200 as ContactIdResponse200, types_gen_d_ContactListIdBody as ContactListIdBody, types_gen_d_ContactListIdParams as ContactListIdParams, types_gen_d_ContactListIdResponse200 as ContactListIdResponse200, types_gen_d_ContactListsBody as ContactListsBody, types_gen_d_ContactListsCreateData as ContactListsCreateData, types_gen_d_ContactListsCreateError as ContactListsCreateError, types_gen_d_ContactListsCreateErrors as ContactListsCreateErrors, types_gen_d_ContactListsCreateResponse as ContactListsCreateResponse, types_gen_d_ContactListsCreateResponses as ContactListsCreateResponses, types_gen_d_ContactListsRemoveData as ContactListsRemoveData, types_gen_d_ContactListsRemoveError as ContactListsRemoveError, types_gen_d_ContactListsRemoveErrors as ContactListsRemoveErrors, types_gen_d_ContactListsRemoveResponse as ContactListsRemoveResponse, types_gen_d_ContactListsRemoveResponses as ContactListsRemoveResponses, types_gen_d_ContactListsResponse201 as ContactListsResponse201, types_gen_d_ContactListsRetrieveData as ContactListsRetrieveData, types_gen_d_ContactListsRetrieveError as ContactListsRetrieveError, types_gen_d_ContactListsRetrieveErrors as ContactListsRetrieveErrors, types_gen_d_ContactListsRetrieveResponse as ContactListsRetrieveResponse, types_gen_d_ContactListsRetrieveResponses as ContactListsRetrieveResponses, types_gen_d_ContactListsUpdateData as ContactListsUpdateData, types_gen_d_ContactListsUpdateError as ContactListsUpdateError, types_gen_d_ContactListsUpdateErrors as ContactListsUpdateErrors, types_gen_d_ContactListsUpdateResponse as ContactListsUpdateResponse, types_gen_d_ContactListsUpdateResponses as ContactListsUpdateResponses, types_gen_d_ContactsBatchCreate2Data as ContactsBatchCreate2Data, types_gen_d_ContactsBatchCreate2Error as ContactsBatchCreate2Error, types_gen_d_ContactsBatchCreate2Errors as ContactsBatchCreate2Errors, types_gen_d_ContactsBatchCreate2Responses as ContactsBatchCreate2Responses, types_gen_d_ContactsBatchCreateData as ContactsBatchCreateData, types_gen_d_ContactsBatchCreateError as ContactsBatchCreateError, types_gen_d_ContactsBatchCreateErrors as ContactsBatchCreateErrors, types_gen_d_ContactsBatchCreateResponse as ContactsBatchCreateResponse, types_gen_d_ContactsBatchCreateResponses as ContactsBatchCreateResponses, types_gen_d_ContactsBlockData as ContactsBlockData, types_gen_d_ContactsBlockError as ContactsBlockError, types_gen_d_ContactsBlockErrors as ContactsBlockErrors, types_gen_d_ContactsBlockResponse as ContactsBlockResponse, types_gen_d_ContactsBlockResponses as ContactsBlockResponses, types_gen_d_ContactsBody as ContactsBody, types_gen_d_ContactsCreateData as ContactsCreateData, types_gen_d_ContactsCreateError as ContactsCreateError, types_gen_d_ContactsCreateErrors as ContactsCreateErrors, types_gen_d_ContactsCreateResponse as ContactsCreateResponse, types_gen_d_ContactsCreateResponses as ContactsCreateResponses, types_gen_d_ContactsDelAllData as ContactsDelAllData, types_gen_d_ContactsDelAllError as ContactsDelAllError, types_gen_d_ContactsDelAllErrors as ContactsDelAllErrors, types_gen_d_ContactsDelAllResponse as ContactsDelAllResponse, types_gen_d_ContactsDelAllResponses as ContactsDelAllResponses, types_gen_d_ContactsDelData as ContactsDelData, types_gen_d_ContactsDelError as ContactsDelError, types_gen_d_ContactsDelErrors as ContactsDelErrors, types_gen_d_ContactsDelResponse as ContactsDelResponse, types_gen_d_ContactsDelResponses as ContactsDelResponses, types_gen_d_ContactsListData as ContactsListData, types_gen_d_ContactsListError as ContactsListError, types_gen_d_ContactsListErrors as ContactsListErrors, types_gen_d_ContactsListResponse as ContactsListResponse, types_gen_d_ContactsListResponses as ContactsListResponses, types_gen_d_ContactsQuery as ContactsQuery, types_gen_d_ContactsResponse200 as ContactsResponse200, types_gen_d_ContactsResponse201 as ContactsResponse201, types_gen_d_ContactsResubscribeData as ContactsResubscribeData, types_gen_d_ContactsResubscribeError as ContactsResubscribeError, types_gen_d_ContactsResubscribeErrors as ContactsResubscribeErrors, types_gen_d_ContactsResubscribeResponse as ContactsResubscribeResponse, types_gen_d_ContactsResubscribeResponses as ContactsResubscribeResponses, types_gen_d_ContactsRetrieveData as ContactsRetrieveData, types_gen_d_ContactsRetrieveError as ContactsRetrieveError, types_gen_d_ContactsRetrieveErrors as ContactsRetrieveErrors, types_gen_d_ContactsRetrieveResponse as ContactsRetrieveResponse, types_gen_d_ContactsRetrieveResponses as ContactsRetrieveResponses, types_gen_d_ContactsUnblockData as ContactsUnblockData, types_gen_d_ContactsUnblockError as ContactsUnblockError, types_gen_d_ContactsUnblockErrors as ContactsUnblockErrors, types_gen_d_ContactsUnblockResponse as ContactsUnblockResponse, types_gen_d_ContactsUnblockResponses as ContactsUnblockResponses, types_gen_d_ContactsUpdateData as ContactsUpdateData, types_gen_d_ContactsUpdateError as ContactsUpdateError, types_gen_d_ContactsUpdateErrors as ContactsUpdateErrors, types_gen_d_ContactsUpdateResponse as ContactsUpdateResponse, types_gen_d_ContactsUpdateResponses as ContactsUpdateResponses, types_gen_d_CurrentOrganizationBody as CurrentOrganizationBody, types_gen_d_CurrentOrganizationParams as CurrentOrganizationParams, types_gen_d_CurrentOrganizationResponse200 as CurrentOrganizationResponse200, types_gen_d_ErrorResponse as ErrorResponse, types_gen_d_GetOpenapiJsonData as GetOpenapiJsonData, types_gen_d_GetOpenapiJsonError as GetOpenapiJsonError, types_gen_d_GetOpenapiJsonErrors as GetOpenapiJsonErrors, types_gen_d_GetOpenapiJsonResponses as GetOpenapiJsonResponses, types_gen_d_MemberIdBody as MemberIdBody, types_gen_d_MemberIdParams as MemberIdParams, types_gen_d_MemberIdResponse200 as MemberIdResponse200, types_gen_d_MembersBody as MembersBody, types_gen_d_MembersParams as MembersParams, types_gen_d_MembersQuery as MembersQuery, types_gen_d_MembersResponse200 as MembersResponse200, types_gen_d_MembersResponse201 as MembersResponse201, types_gen_d_OpenapiJsonResponse200 as OpenapiJsonResponse200, types_gen_d_OrganizationIdBody as OrganizationIdBody, types_gen_d_OrganizationIdParams as OrganizationIdParams, types_gen_d_OrganizationIdResponse200 as OrganizationIdResponse200, types_gen_d_OrganizationMemberCreateData as OrganizationMemberCreateData, types_gen_d_OrganizationMemberCreateError as OrganizationMemberCreateError, types_gen_d_OrganizationMemberCreateErrors as OrganizationMemberCreateErrors, types_gen_d_OrganizationMemberCreateResponse as OrganizationMemberCreateResponse, types_gen_d_OrganizationMemberCreateResponses as OrganizationMemberCreateResponses, types_gen_d_OrganizationMemberDeleteData as OrganizationMemberDeleteData, types_gen_d_OrganizationMemberDeleteError as OrganizationMemberDeleteError, types_gen_d_OrganizationMemberDeleteErrors as OrganizationMemberDeleteErrors, types_gen_d_OrganizationMemberDeleteResponse as OrganizationMemberDeleteResponse, types_gen_d_OrganizationMemberDeleteResponses as OrganizationMemberDeleteResponses, types_gen_d_OrganizationMemberListData as OrganizationMemberListData, types_gen_d_OrganizationMemberListError as OrganizationMemberListError, types_gen_d_OrganizationMemberListErrors as OrganizationMemberListErrors, types_gen_d_OrganizationMemberListResponse as OrganizationMemberListResponse, types_gen_d_OrganizationMemberListResponses as OrganizationMemberListResponses, types_gen_d_OrganizationMemberUpdateData as OrganizationMemberUpdateData, types_gen_d_OrganizationMemberUpdateError as OrganizationMemberUpdateError, types_gen_d_OrganizationMemberUpdateErrors as OrganizationMemberUpdateErrors, types_gen_d_OrganizationMemberUpdateResponse as OrganizationMemberUpdateResponse, types_gen_d_OrganizationMemberUpdateResponses as OrganizationMemberUpdateResponses, types_gen_d_OrganizationsBody as OrganizationsBody, types_gen_d_OrganizationsCreateData as OrganizationsCreateData, types_gen_d_OrganizationsCreateError as OrganizationsCreateError, types_gen_d_OrganizationsCreateErrors as OrganizationsCreateErrors, types_gen_d_OrganizationsCreateResponse as OrganizationsCreateResponse, types_gen_d_OrganizationsCreateResponses as OrganizationsCreateResponses, types_gen_d_OrganizationsDeleteData as OrganizationsDeleteData, types_gen_d_OrganizationsDeleteError as OrganizationsDeleteError, types_gen_d_OrganizationsDeleteErrors as OrganizationsDeleteErrors, types_gen_d_OrganizationsDeleteResponse as OrganizationsDeleteResponse, types_gen_d_OrganizationsDeleteResponses as OrganizationsDeleteResponses, types_gen_d_OrganizationsListData as OrganizationsListData, types_gen_d_OrganizationsListError as OrganizationsListError, types_gen_d_OrganizationsListErrors as OrganizationsListErrors, types_gen_d_OrganizationsListResponse as OrganizationsListResponse, types_gen_d_OrganizationsListResponses as OrganizationsListResponses, types_gen_d_OrganizationsResponse200 as OrganizationsResponse200, types_gen_d_OrganizationsResponse201 as OrganizationsResponse201, types_gen_d_OrganizationsRetrieveData as OrganizationsRetrieveData, types_gen_d_OrganizationsRetrieveError as OrganizationsRetrieveError, types_gen_d_OrganizationsRetrieveErrors as OrganizationsRetrieveErrors, types_gen_d_OrganizationsRetrieveResponse as OrganizationsRetrieveResponse, types_gen_d_OrganizationsRetrieveResponses as OrganizationsRetrieveResponses, types_gen_d_OrganizationsUpdateData as OrganizationsUpdateData, types_gen_d_OrganizationsUpdateError as OrganizationsUpdateError, types_gen_d_OrganizationsUpdateErrors as OrganizationsUpdateErrors, types_gen_d_OrganizationsUpdateResponse as OrganizationsUpdateResponse, types_gen_d_OrganizationsUpdateResponses as OrganizationsUpdateResponses, types_gen_d_PreviewBody as PreviewBody, types_gen_d_PreviewParams as PreviewParams, types_gen_d_PreviewResponse200 as PreviewResponse200, types_gen_d_PricesQuery as PricesQuery, types_gen_d_PricesResponse200 as PricesResponse200, types_gen_d_ResubscribeParams as ResubscribeParams, types_gen_d_ResubscribeResponse200 as ResubscribeResponse200, types_gen_d_SubscriptionBody as SubscriptionBody, types_gen_d_SubscriptionResponse200 as SubscriptionResponse200, types_gen_d_UnblockParams as UnblockParams, types_gen_d_UnblockResponse200 as UnblockResponse200, types_gen_d_UsersDeleteActionData as UsersDeleteActionData, types_gen_d_UsersDeleteActionError as UsersDeleteActionError, types_gen_d_UsersDeleteActionErrors as UsersDeleteActionErrors, types_gen_d_UsersDeleteActionResponse as UsersDeleteActionResponse, types_gen_d_UsersDeleteActionResponses as UsersDeleteActionResponses, types_gen_d_UsersGetCurrentOrganizationData as UsersGetCurrentOrganizationData, types_gen_d_UsersGetCurrentOrganizationError as UsersGetCurrentOrganizationError, types_gen_d_UsersGetCurrentOrganizationErrors as UsersGetCurrentOrganizationErrors, types_gen_d_UsersGetCurrentOrganizationResponse as UsersGetCurrentOrganizationResponse, types_gen_d_UsersGetCurrentOrganizationResponses as UsersGetCurrentOrganizationResponses, types_gen_d_UsersSetCurrentOrganizationData as UsersSetCurrentOrganizationData, types_gen_d_UsersSetCurrentOrganizationError as UsersSetCurrentOrganizationError, types_gen_d_UsersSetCurrentOrganizationErrors as UsersSetCurrentOrganizationErrors, types_gen_d_UsersSetCurrentOrganizationResponse as UsersSetCurrentOrganizationResponse, types_gen_d_UsersSetCurrentOrganizationResponses as UsersSetCurrentOrganizationResponses, types_gen_d_UsersWatchMailboxData as UsersWatchMailboxData, types_gen_d_UsersWatchMailboxError as UsersWatchMailboxError, types_gen_d_UsersWatchMailboxErrors as UsersWatchMailboxErrors, types_gen_d_UsersWatchMailboxResponse as UsersWatchMailboxResponse, types_gen_d_UsersWatchMailboxResponses as UsersWatchMailboxResponses, types_gen_d_WatchMailboxBody as WatchMailboxBody, types_gen_d_WatchMailboxParams as WatchMailboxParams };
2382
2380
  }
2383
2381
 
2384
2382
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -2400,14 +2398,8 @@ declare class HeyApiClient {
2400
2398
  client?: Client;
2401
2399
  });
2402
2400
  }
2403
- declare class HeyApiRegistry3<T> {
2404
- private readonly defaultKey;
2405
- private readonly instances;
2406
- get(key?: string): T;
2407
- set(value: T, key?: string): void;
2408
- }
2409
2401
  declare class Users extends HeyApiClient {
2410
- getCurrentOrganization<ThrowOnError extends boolean = true>(userId: string, options?: Options<never, ThrowOnError>): RequestResult<UsersGetCurrentOrganizationResponses, UsersGetCurrentOrganizationErrors, ThrowOnError, "data">;
2402
+ getCurrentOrganization<ThrowOnError extends boolean = true>(user_id: string, options?: Options<never, ThrowOnError>): RequestResult<UsersGetCurrentOrganizationResponses, UsersGetCurrentOrganizationErrors, ThrowOnError, "data">;
2411
2403
  setCurrentOrganization<ThrowOnError extends boolean = true>(user_id: string, parameters?: {
2412
2404
  organization_id?: string | null;
2413
2405
  }, options?: Options<never, ThrowOnError>): RequestResult<UsersSetCurrentOrganizationResponses, UsersSetCurrentOrganizationErrors, ThrowOnError, "data">;
@@ -2417,30 +2409,21 @@ declare class Users extends HeyApiClient {
2417
2409
  }, options?: Options<never, ThrowOnError>): RequestResult<UsersWatchMailboxResponses, UsersWatchMailboxErrors, ThrowOnError, "data">;
2418
2410
  deleteAction<ThrowOnError extends boolean = true>(user_id: string, action_id: string, options?: Options<never, ThrowOnError>): RequestResult<UsersDeleteActionResponses, UsersDeleteActionErrors, ThrowOnError, "data">;
2419
2411
  }
2420
- declare class Organization extends HeyApiClient {
2421
- list<ThrowOnError extends boolean = true>(options?: Options<never, ThrowOnError>): RequestResult<OrganizationListResponses, OrganizationListErrors, ThrowOnError, "data">;
2422
- create<ThrowOnError extends boolean = true>(parameters?: {
2423
- name?: string;
2424
- }, options?: Options<never, ThrowOnError>): RequestResult<OrganizationCreateResponses, OrganizationCreateErrors, ThrowOnError, "data">;
2425
- delete<ThrowOnError extends boolean = true>(organization_id: string, options?: Options<never, ThrowOnError>): RequestResult<OrganizationDeleteResponses, OrganizationDeleteErrors, ThrowOnError, "data">;
2426
- retrieve<ThrowOnError extends boolean = true>(organization_id: string, options?: Options<never, ThrowOnError>): RequestResult<OrganizationRetrieveResponses, OrganizationRetrieveErrors, ThrowOnError, "data">;
2412
+ declare class Organizations extends HeyApiClient {
2413
+ list<ThrowOnError extends boolean = true>(options?: Options<never, ThrowOnError>): RequestResult<OrganizationsListResponses, OrganizationsListErrors, ThrowOnError, "data">;
2414
+ create<ThrowOnError extends boolean = true>(parameters: {
2415
+ name: string;
2416
+ }, options?: Options<never, ThrowOnError>): RequestResult<OrganizationsCreateResponses, OrganizationsCreateErrors, ThrowOnError, "data">;
2417
+ delete<ThrowOnError extends boolean = true>(organization_id: string, options?: Options<never, ThrowOnError>): RequestResult<OrganizationsDeleteResponses, OrganizationsDeleteErrors, ThrowOnError, "data">;
2418
+ retrieve<ThrowOnError extends boolean = true>(organization_id: string, options?: Options<never, ThrowOnError>): RequestResult<OrganizationsRetrieveResponses, OrganizationsRetrieveErrors, ThrowOnError, "data">;
2427
2419
  update<ThrowOnError extends boolean = true>(organization_id: string, parameters?: {
2428
2420
  name?: string;
2429
- }, options?: Options<never, ThrowOnError>): RequestResult<OrganizationUpdateResponses, OrganizationUpdateErrors, ThrowOnError, "data">;
2430
- }
2431
- declare class Organizations extends HeyApiClient {
2432
- static readonly __registry: HeyApiRegistry3<Organizations>;
2433
- constructor(args?: {
2434
- client?: Client;
2435
- key?: string;
2436
- });
2437
- private _organization?;
2438
- get organization(): Organization;
2421
+ }, options?: Options<never, ThrowOnError>): RequestResult<OrganizationsUpdateResponses, OrganizationsUpdateErrors, ThrowOnError, "data">;
2439
2422
  }
2440
2423
  declare class ContactLists extends HeyApiClient {
2441
- create<ThrowOnError extends boolean = true>(parameters?: {
2442
- owner?: string;
2443
- name?: string;
2424
+ create<ThrowOnError extends boolean = true>(parameters: {
2425
+ owner: string;
2426
+ name: string;
2444
2427
  metadata?: {
2445
2428
  [key: string]: string;
2446
2429
  };
@@ -2449,8 +2432,8 @@ declare class ContactLists extends HeyApiClient {
2449
2432
  remove_contacts?: boolean;
2450
2433
  }, options?: Options<never, ThrowOnError>): RequestResult<ContactListsRemoveResponses, ContactListsRemoveErrors, ThrowOnError, "data">;
2451
2434
  retrieve<ThrowOnError extends boolean = true>(contact_list_id: string, options?: Options<never, ThrowOnError>): RequestResult<ContactListsRetrieveResponses, ContactListsRetrieveErrors, ThrowOnError, "data">;
2452
- update<ThrowOnError extends boolean = true>(contact_list_id: string, parameters?: {
2453
- name?: string;
2435
+ update<ThrowOnError extends boolean = true>(contact_list_id: string, parameters: {
2436
+ name: string;
2454
2437
  metadata?: {
2455
2438
  [key: string]: string;
2456
2439
  };
@@ -2458,7 +2441,6 @@ declare class ContactLists extends HeyApiClient {
2458
2441
  }
2459
2442
  declare class Contacts extends HeyApiClient {
2460
2443
  delAll<ThrowOnError extends boolean = true>(parameters?: {
2461
- owner?: string;
2462
2444
  contact_list?: string;
2463
2445
  }, options?: Options<never, ThrowOnError>): RequestResult<ContactsDelAllResponses, ContactsDelAllErrors, ThrowOnError, "data">;
2464
2446
  list<ThrowOnError extends boolean = true>(parameters: {
@@ -2468,9 +2450,9 @@ declare class Contacts extends HeyApiClient {
2468
2450
  unsubscribed?: boolean | null;
2469
2451
  contact_list?: string;
2470
2452
  }, options?: Options<never, ThrowOnError>): RequestResult<ContactsListResponses, ContactsListErrors, ThrowOnError, "data">;
2471
- create<ThrowOnError extends boolean = true>(parameters?: {
2472
- owner?: string;
2473
- email?: string;
2453
+ create<ThrowOnError extends boolean = true>(parameters: {
2454
+ owner: string;
2455
+ email: string;
2474
2456
  blocked?: boolean;
2475
2457
  unsubscribed?: boolean;
2476
2458
  contact_lists?: Array<string>;
@@ -2482,8 +2464,8 @@ declare class Contacts extends HeyApiClient {
2482
2464
  [key: string]: string;
2483
2465
  };
2484
2466
  }, options?: Options<never, ThrowOnError>): RequestResult<ContactsCreateResponses, ContactsCreateErrors, ThrowOnError, "data">;
2485
- batchCreate<ThrowOnError extends boolean = true>(parameters?: {
2486
- contacts?: Array<{
2467
+ batchCreate<ThrowOnError extends boolean = true>(parameters: {
2468
+ contacts: Array<{
2487
2469
  owner: string;
2488
2470
  email: string;
2489
2471
  blocked?: boolean;
@@ -2498,8 +2480,8 @@ declare class Contacts extends HeyApiClient {
2498
2480
  };
2499
2481
  }>;
2500
2482
  }, options?: Options<never, ThrowOnError>): RequestResult<ContactsBatchCreateResponses, ContactsBatchCreateErrors, ThrowOnError, "data">;
2501
- batchCreate2<ThrowOnError extends boolean = true>(parameters?: {
2502
- body?: unknown;
2483
+ batchCreate2<ThrowOnError extends boolean = true>(parameters: {
2484
+ body: unknown;
2503
2485
  }, options?: Options<never, ThrowOnError>): RequestResult<ContactsBatchCreate2Responses, ContactsBatchCreate2Errors, ThrowOnError, "data">;
2504
2486
  del<ThrowOnError extends boolean = true>(contact_id: string, options?: Options<never, ThrowOnError>): RequestResult<ContactsDelResponses, ContactsDelErrors, ThrowOnError, "data">;
2505
2487
  retrieve<ThrowOnError extends boolean = true>(contact_id: string, options?: Options<never, ThrowOnError>): RequestResult<ContactsRetrieveResponses, ContactsRetrieveErrors, ThrowOnError, "data">;
@@ -2521,23 +2503,23 @@ declare class Contacts extends HeyApiClient {
2521
2503
  }
2522
2504
  declare class BillingAddons extends HeyApiClient {
2523
2505
  getAddons<ThrowOnError extends boolean = true>(options?: Options<never, ThrowOnError>): RequestResult<BillingAddonsGetAddonsResponses, BillingAddonsGetAddonsErrors, ThrowOnError, "data">;
2524
- previewUpdate<ThrowOnError extends boolean = true>(addon: 'senders' | 'email_warmups', parameters?: {
2525
- quantity?: number;
2506
+ previewUpdate<ThrowOnError extends boolean = true>(addon: 'senders' | 'email_warmups', parameters: {
2507
+ quantity: number;
2526
2508
  }, options?: Options<never, ThrowOnError>): RequestResult<BillingAddonsPreviewUpdateResponses, BillingAddonsPreviewUpdateErrors, ThrowOnError, "data">;
2527
2509
  getAddonUsages<ThrowOnError extends boolean = true>(addon: 'senders' | 'email_warmups', options?: Options<never, ThrowOnError>): RequestResult<BillingAddonsGetAddonUsagesResponses, BillingAddonsGetAddonUsagesErrors, ThrowOnError, "data">;
2528
- update<ThrowOnError extends boolean = true>(addon: 'senders' | 'email_warmups', parameters?: {
2529
- quantity?: number;
2510
+ update<ThrowOnError extends boolean = true>(addon: 'senders' | 'email_warmups', parameters: {
2511
+ quantity: number;
2530
2512
  }, options?: Options<never, ThrowOnError>): RequestResult<BillingAddonsUpdateResponses, BillingAddonsUpdateErrors, ThrowOnError, "data">;
2531
2513
  }
2532
2514
  declare class BillingSubscription extends HeyApiClient {
2533
2515
  get<ThrowOnError extends boolean = true>(options?: Options<never, ThrowOnError>): RequestResult<BillingSubscriptionGetResponses, BillingSubscriptionGetErrors, ThrowOnError, "data">;
2534
- update<ThrowOnError extends boolean = true>(parameters?: {
2535
- plan?: 'free' | 'starter' | 'pro' | 'premium' | 'business';
2536
- billing_period?: 'month' | 'year';
2516
+ update<ThrowOnError extends boolean = true>(parameters: {
2517
+ plan: 'free' | 'starter' | 'pro' | 'premium' | 'business';
2518
+ billing_period: 'month' | 'year';
2537
2519
  }, options?: Options<never, ThrowOnError>): RequestResult<BillingSubscriptionUpdateResponses, BillingSubscriptionUpdateErrors, ThrowOnError, "data">;
2538
- previewUpdate<ThrowOnError extends boolean = true>(parameters?: {
2539
- plan?: 'free' | 'starter' | 'pro' | 'premium' | 'business';
2540
- billing_period?: 'month' | 'year';
2520
+ previewUpdate<ThrowOnError extends boolean = true>(parameters: {
2521
+ plan: 'free' | 'starter' | 'pro' | 'premium' | 'business';
2522
+ billing_period: 'month' | 'year';
2541
2523
  }, options?: Options<never, ThrowOnError>): RequestResult<BillingSubscriptionPreviewUpdateResponses, BillingSubscriptionPreviewUpdateErrors, ThrowOnError, "data">;
2542
2524
  }
2543
2525
  declare class Billing extends HeyApiClient {