mailmeteor 0.0.7 → 0.0.8
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.cjs +10 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +60 -75
- package/dist/index.mjs +10 -10
- package/dist/index.mjs.map +1 -1
- package/dist/types/generated-sdk/index.d.ts +2 -2
- package/dist/types/generated-sdk/index.d.ts.map +1 -1
- package/dist/types/generated-sdk/sdk.gen.d.ts +12 -12
- package/dist/types/generated-sdk/sdk.gen.d.ts.map +1 -1
- package/dist/types/generated-sdk/types.gen.d.ts +27 -27
- package/dist/types/generated-sdk/types.gen.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -806,10 +806,10 @@ type OpenapiJsonResponse200 = unknown;
|
|
|
806
806
|
type UsersGetCurrentOrganizationData = {
|
|
807
807
|
body?: never;
|
|
808
808
|
path: {
|
|
809
|
-
|
|
809
|
+
user_id: string;
|
|
810
810
|
};
|
|
811
811
|
query?: never;
|
|
812
|
-
url: '/users/{
|
|
812
|
+
url: '/users/{user_id}/current_organization';
|
|
813
813
|
};
|
|
814
814
|
type UsersGetCurrentOrganizationErrors = {
|
|
815
815
|
/**
|
|
@@ -1047,20 +1047,20 @@ type OrganizationMemberUpdateResponses = {
|
|
|
1047
1047
|
};
|
|
1048
1048
|
};
|
|
1049
1049
|
type OrganizationMemberUpdateResponse = OrganizationMemberUpdateResponses[keyof OrganizationMemberUpdateResponses];
|
|
1050
|
-
type
|
|
1050
|
+
type OrganizationsListData = {
|
|
1051
1051
|
body?: never;
|
|
1052
1052
|
path?: never;
|
|
1053
1053
|
query?: never;
|
|
1054
1054
|
url: '/organizations';
|
|
1055
1055
|
};
|
|
1056
|
-
type
|
|
1056
|
+
type OrganizationsListErrors = {
|
|
1057
1057
|
/**
|
|
1058
1058
|
* Error response
|
|
1059
1059
|
*/
|
|
1060
1060
|
default: ErrorResponse;
|
|
1061
1061
|
};
|
|
1062
|
-
type
|
|
1063
|
-
type
|
|
1062
|
+
type OrganizationsListError = OrganizationsListErrors[keyof OrganizationsListErrors];
|
|
1063
|
+
type OrganizationsListResponses = {
|
|
1064
1064
|
/**
|
|
1065
1065
|
* Response
|
|
1066
1066
|
*/
|
|
@@ -1079,8 +1079,8 @@ type OrganizationListResponses = {
|
|
|
1079
1079
|
object: 'organization';
|
|
1080
1080
|
}>;
|
|
1081
1081
|
};
|
|
1082
|
-
type
|
|
1083
|
-
type
|
|
1082
|
+
type OrganizationsListResponse = OrganizationsListResponses[keyof OrganizationsListResponses];
|
|
1083
|
+
type OrganizationsCreateData = {
|
|
1084
1084
|
body?: {
|
|
1085
1085
|
name: string;
|
|
1086
1086
|
};
|
|
@@ -1088,14 +1088,14 @@ type OrganizationCreateData = {
|
|
|
1088
1088
|
query?: never;
|
|
1089
1089
|
url: '/organizations';
|
|
1090
1090
|
};
|
|
1091
|
-
type
|
|
1091
|
+
type OrganizationsCreateErrors = {
|
|
1092
1092
|
/**
|
|
1093
1093
|
* Error response
|
|
1094
1094
|
*/
|
|
1095
1095
|
default: ErrorResponse;
|
|
1096
1096
|
};
|
|
1097
|
-
type
|
|
1098
|
-
type
|
|
1097
|
+
type OrganizationsCreateError = OrganizationsCreateErrors[keyof OrganizationsCreateErrors];
|
|
1098
|
+
type OrganizationsCreateResponses = {
|
|
1099
1099
|
/**
|
|
1100
1100
|
* Response
|
|
1101
1101
|
*/
|
|
@@ -1114,8 +1114,8 @@ type OrganizationCreateResponses = {
|
|
|
1114
1114
|
object: 'organization';
|
|
1115
1115
|
};
|
|
1116
1116
|
};
|
|
1117
|
-
type
|
|
1118
|
-
type
|
|
1117
|
+
type OrganizationsCreateResponse = OrganizationsCreateResponses[keyof OrganizationsCreateResponses];
|
|
1118
|
+
type OrganizationsDeleteData = {
|
|
1119
1119
|
body?: never;
|
|
1120
1120
|
path: {
|
|
1121
1121
|
organization_id: string;
|
|
@@ -1123,21 +1123,21 @@ type OrganizationDeleteData = {
|
|
|
1123
1123
|
query?: never;
|
|
1124
1124
|
url: '/organizations/{organization_id}';
|
|
1125
1125
|
};
|
|
1126
|
-
type
|
|
1126
|
+
type OrganizationsDeleteErrors = {
|
|
1127
1127
|
/**
|
|
1128
1128
|
* Error response
|
|
1129
1129
|
*/
|
|
1130
1130
|
default: ErrorResponse;
|
|
1131
1131
|
};
|
|
1132
|
-
type
|
|
1133
|
-
type
|
|
1132
|
+
type OrganizationsDeleteError = OrganizationsDeleteErrors[keyof OrganizationsDeleteErrors];
|
|
1133
|
+
type OrganizationsDeleteResponses = {
|
|
1134
1134
|
/**
|
|
1135
1135
|
* Response
|
|
1136
1136
|
*/
|
|
1137
1137
|
204: void;
|
|
1138
1138
|
};
|
|
1139
|
-
type
|
|
1140
|
-
type
|
|
1139
|
+
type OrganizationsDeleteResponse = OrganizationsDeleteResponses[keyof OrganizationsDeleteResponses];
|
|
1140
|
+
type OrganizationsRetrieveData = {
|
|
1141
1141
|
body?: never;
|
|
1142
1142
|
path: {
|
|
1143
1143
|
organization_id: string;
|
|
@@ -1145,14 +1145,14 @@ type OrganizationRetrieveData = {
|
|
|
1145
1145
|
query?: never;
|
|
1146
1146
|
url: '/organizations/{organization_id}';
|
|
1147
1147
|
};
|
|
1148
|
-
type
|
|
1148
|
+
type OrganizationsRetrieveErrors = {
|
|
1149
1149
|
/**
|
|
1150
1150
|
* Error response
|
|
1151
1151
|
*/
|
|
1152
1152
|
default: ErrorResponse;
|
|
1153
1153
|
};
|
|
1154
|
-
type
|
|
1155
|
-
type
|
|
1154
|
+
type OrganizationsRetrieveError = OrganizationsRetrieveErrors[keyof OrganizationsRetrieveErrors];
|
|
1155
|
+
type OrganizationsRetrieveResponses = {
|
|
1156
1156
|
/**
|
|
1157
1157
|
* Response
|
|
1158
1158
|
*/
|
|
@@ -1171,8 +1171,8 @@ type OrganizationRetrieveResponses = {
|
|
|
1171
1171
|
object: 'organization';
|
|
1172
1172
|
};
|
|
1173
1173
|
};
|
|
1174
|
-
type
|
|
1175
|
-
type
|
|
1174
|
+
type OrganizationsRetrieveResponse = OrganizationsRetrieveResponses[keyof OrganizationsRetrieveResponses];
|
|
1175
|
+
type OrganizationsUpdateData = {
|
|
1176
1176
|
body?: {
|
|
1177
1177
|
name?: string;
|
|
1178
1178
|
};
|
|
@@ -1182,14 +1182,14 @@ type OrganizationUpdateData = {
|
|
|
1182
1182
|
query?: never;
|
|
1183
1183
|
url: '/organizations/{organization_id}';
|
|
1184
1184
|
};
|
|
1185
|
-
type
|
|
1185
|
+
type OrganizationsUpdateErrors = {
|
|
1186
1186
|
/**
|
|
1187
1187
|
* Error response
|
|
1188
1188
|
*/
|
|
1189
1189
|
default: ErrorResponse;
|
|
1190
1190
|
};
|
|
1191
|
-
type
|
|
1192
|
-
type
|
|
1191
|
+
type OrganizationsUpdateError = OrganizationsUpdateErrors[keyof OrganizationsUpdateErrors];
|
|
1192
|
+
type OrganizationsUpdateResponses = {
|
|
1193
1193
|
/**
|
|
1194
1194
|
* Response
|
|
1195
1195
|
*/
|
|
@@ -1208,7 +1208,7 @@ type OrganizationUpdateResponses = {
|
|
|
1208
1208
|
object: 'organization';
|
|
1209
1209
|
};
|
|
1210
1210
|
};
|
|
1211
|
-
type
|
|
1211
|
+
type OrganizationsUpdateResponse = OrganizationsUpdateResponses[keyof OrganizationsUpdateResponses];
|
|
1212
1212
|
type ContactListsCreateData = {
|
|
1213
1213
|
body?: {
|
|
1214
1214
|
owner: string;
|
|
@@ -2293,24 +2293,9 @@ type types_gen_d_MembersQuery = MembersQuery;
|
|
|
2293
2293
|
type types_gen_d_MembersResponse200 = MembersResponse200;
|
|
2294
2294
|
type types_gen_d_MembersResponse201 = MembersResponse201;
|
|
2295
2295
|
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
2296
|
type types_gen_d_OrganizationIdBody = OrganizationIdBody;
|
|
2307
2297
|
type types_gen_d_OrganizationIdParams = OrganizationIdParams;
|
|
2308
2298
|
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
2299
|
type types_gen_d_OrganizationMemberCreateData = OrganizationMemberCreateData;
|
|
2315
2300
|
type types_gen_d_OrganizationMemberCreateError = OrganizationMemberCreateError;
|
|
2316
2301
|
type types_gen_d_OrganizationMemberCreateErrors = OrganizationMemberCreateErrors;
|
|
@@ -2331,19 +2316,34 @@ type types_gen_d_OrganizationMemberUpdateError = OrganizationMemberUpdateError;
|
|
|
2331
2316
|
type types_gen_d_OrganizationMemberUpdateErrors = OrganizationMemberUpdateErrors;
|
|
2332
2317
|
type types_gen_d_OrganizationMemberUpdateResponse = OrganizationMemberUpdateResponse;
|
|
2333
2318
|
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
2319
|
type types_gen_d_OrganizationsBody = OrganizationsBody;
|
|
2320
|
+
type types_gen_d_OrganizationsCreateData = OrganizationsCreateData;
|
|
2321
|
+
type types_gen_d_OrganizationsCreateError = OrganizationsCreateError;
|
|
2322
|
+
type types_gen_d_OrganizationsCreateErrors = OrganizationsCreateErrors;
|
|
2323
|
+
type types_gen_d_OrganizationsCreateResponse = OrganizationsCreateResponse;
|
|
2324
|
+
type types_gen_d_OrganizationsCreateResponses = OrganizationsCreateResponses;
|
|
2325
|
+
type types_gen_d_OrganizationsDeleteData = OrganizationsDeleteData;
|
|
2326
|
+
type types_gen_d_OrganizationsDeleteError = OrganizationsDeleteError;
|
|
2327
|
+
type types_gen_d_OrganizationsDeleteErrors = OrganizationsDeleteErrors;
|
|
2328
|
+
type types_gen_d_OrganizationsDeleteResponse = OrganizationsDeleteResponse;
|
|
2329
|
+
type types_gen_d_OrganizationsDeleteResponses = OrganizationsDeleteResponses;
|
|
2330
|
+
type types_gen_d_OrganizationsListData = OrganizationsListData;
|
|
2331
|
+
type types_gen_d_OrganizationsListError = OrganizationsListError;
|
|
2332
|
+
type types_gen_d_OrganizationsListErrors = OrganizationsListErrors;
|
|
2333
|
+
type types_gen_d_OrganizationsListResponse = OrganizationsListResponse;
|
|
2334
|
+
type types_gen_d_OrganizationsListResponses = OrganizationsListResponses;
|
|
2345
2335
|
type types_gen_d_OrganizationsResponse200 = OrganizationsResponse200;
|
|
2346
2336
|
type types_gen_d_OrganizationsResponse201 = OrganizationsResponse201;
|
|
2337
|
+
type types_gen_d_OrganizationsRetrieveData = OrganizationsRetrieveData;
|
|
2338
|
+
type types_gen_d_OrganizationsRetrieveError = OrganizationsRetrieveError;
|
|
2339
|
+
type types_gen_d_OrganizationsRetrieveErrors = OrganizationsRetrieveErrors;
|
|
2340
|
+
type types_gen_d_OrganizationsRetrieveResponse = OrganizationsRetrieveResponse;
|
|
2341
|
+
type types_gen_d_OrganizationsRetrieveResponses = OrganizationsRetrieveResponses;
|
|
2342
|
+
type types_gen_d_OrganizationsUpdateData = OrganizationsUpdateData;
|
|
2343
|
+
type types_gen_d_OrganizationsUpdateError = OrganizationsUpdateError;
|
|
2344
|
+
type types_gen_d_OrganizationsUpdateErrors = OrganizationsUpdateErrors;
|
|
2345
|
+
type types_gen_d_OrganizationsUpdateResponse = OrganizationsUpdateResponse;
|
|
2346
|
+
type types_gen_d_OrganizationsUpdateResponses = OrganizationsUpdateResponses;
|
|
2347
2347
|
type types_gen_d_PreviewBody = PreviewBody;
|
|
2348
2348
|
type types_gen_d_PreviewParams = PreviewParams;
|
|
2349
2349
|
type types_gen_d_PreviewResponse200 = PreviewResponse200;
|
|
@@ -2378,7 +2378,7 @@ type types_gen_d_UsersWatchMailboxResponses = UsersWatchMailboxResponses;
|
|
|
2378
2378
|
type types_gen_d_WatchMailboxBody = WatchMailboxBody;
|
|
2379
2379
|
type types_gen_d_WatchMailboxParams = WatchMailboxParams;
|
|
2380
2380
|
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 };
|
|
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_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
2382
|
}
|
|
2383
2383
|
|
|
2384
2384
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -2400,14 +2400,8 @@ declare class HeyApiClient {
|
|
|
2400
2400
|
client?: Client;
|
|
2401
2401
|
});
|
|
2402
2402
|
}
|
|
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
2403
|
declare class Users extends HeyApiClient {
|
|
2410
|
-
getCurrentOrganization<ThrowOnError extends boolean = true>(
|
|
2404
|
+
getCurrentOrganization<ThrowOnError extends boolean = true>(user_id: string, options?: Options<never, ThrowOnError>): RequestResult<UsersGetCurrentOrganizationResponses, UsersGetCurrentOrganizationErrors, ThrowOnError, "data">;
|
|
2411
2405
|
setCurrentOrganization<ThrowOnError extends boolean = true>(user_id: string, parameters?: {
|
|
2412
2406
|
organization_id?: string | null;
|
|
2413
2407
|
}, options?: Options<never, ThrowOnError>): RequestResult<UsersSetCurrentOrganizationResponses, UsersSetCurrentOrganizationErrors, ThrowOnError, "data">;
|
|
@@ -2417,25 +2411,16 @@ declare class Users extends HeyApiClient {
|
|
|
2417
2411
|
}, options?: Options<never, ThrowOnError>): RequestResult<UsersWatchMailboxResponses, UsersWatchMailboxErrors, ThrowOnError, "data">;
|
|
2418
2412
|
deleteAction<ThrowOnError extends boolean = true>(user_id: string, action_id: string, options?: Options<never, ThrowOnError>): RequestResult<UsersDeleteActionResponses, UsersDeleteActionErrors, ThrowOnError, "data">;
|
|
2419
2413
|
}
|
|
2420
|
-
declare class
|
|
2421
|
-
list<ThrowOnError extends boolean = true>(options?: Options<never, ThrowOnError>): RequestResult<
|
|
2414
|
+
declare class Organizations extends HeyApiClient {
|
|
2415
|
+
list<ThrowOnError extends boolean = true>(options?: Options<never, ThrowOnError>): RequestResult<OrganizationsListResponses, OrganizationsListErrors, ThrowOnError, "data">;
|
|
2422
2416
|
create<ThrowOnError extends boolean = true>(parameters?: {
|
|
2423
2417
|
name?: string;
|
|
2424
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<
|
|
2425
|
-
delete<ThrowOnError extends boolean = true>(organization_id: string, options?: Options<never, ThrowOnError>): RequestResult<
|
|
2426
|
-
retrieve<ThrowOnError extends boolean = true>(organization_id: string, options?: Options<never, ThrowOnError>): RequestResult<
|
|
2418
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<OrganizationsCreateResponses, OrganizationsCreateErrors, ThrowOnError, "data">;
|
|
2419
|
+
delete<ThrowOnError extends boolean = true>(organization_id: string, options?: Options<never, ThrowOnError>): RequestResult<OrganizationsDeleteResponses, OrganizationsDeleteErrors, ThrowOnError, "data">;
|
|
2420
|
+
retrieve<ThrowOnError extends boolean = true>(organization_id: string, options?: Options<never, ThrowOnError>): RequestResult<OrganizationsRetrieveResponses, OrganizationsRetrieveErrors, ThrowOnError, "data">;
|
|
2427
2421
|
update<ThrowOnError extends boolean = true>(organization_id: string, parameters?: {
|
|
2428
2422
|
name?: string;
|
|
2429
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<
|
|
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;
|
|
2423
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<OrganizationsUpdateResponses, OrganizationsUpdateErrors, ThrowOnError, "data">;
|
|
2439
2424
|
}
|
|
2440
2425
|
declare class ContactLists extends HeyApiClient {
|
|
2441
2426
|
create<ThrowOnError extends boolean = true>(parameters?: {
|
package/dist/index.mjs
CHANGED
|
@@ -919,7 +919,7 @@ class HeyApiRegistry3 {
|
|
|
919
919
|
get(key) {
|
|
920
920
|
const instance = this.instances.get(key ?? this.defaultKey);
|
|
921
921
|
if (!instance) {
|
|
922
|
-
throw new Error(`No SDK client found. Create one with "new
|
|
922
|
+
throw new Error(`No SDK client found. Create one with "new Organizations2()" to fix this error.`);
|
|
923
923
|
}
|
|
924
924
|
return instance;
|
|
925
925
|
}
|
|
@@ -1024,11 +1024,11 @@ class HeyApiRegistry9 {
|
|
|
1024
1024
|
}
|
|
1025
1025
|
}
|
|
1026
1026
|
class Users extends HeyApiClient {
|
|
1027
|
-
getCurrentOrganization(
|
|
1028
|
-
const params = buildClientParams([
|
|
1027
|
+
getCurrentOrganization(user_id, options) {
|
|
1028
|
+
const params = buildClientParams([user_id], [{ in: 'path', key: 'user_id' }]);
|
|
1029
1029
|
return (options?.client ?? this.client).get({
|
|
1030
1030
|
responseStyle: 'data',
|
|
1031
|
-
url: '/users/{
|
|
1031
|
+
url: '/users/{user_id}/current_organization',
|
|
1032
1032
|
...options,
|
|
1033
1033
|
...params
|
|
1034
1034
|
});
|
|
@@ -1147,7 +1147,7 @@ class OrganizationMembers extends HeyApiClient {
|
|
|
1147
1147
|
}
|
|
1148
1148
|
}
|
|
1149
1149
|
OrganizationMembers.__registry = new HeyApiRegistry2();
|
|
1150
|
-
class
|
|
1150
|
+
class Organizations extends HeyApiClient {
|
|
1151
1151
|
list(options) {
|
|
1152
1152
|
return (options?.client ?? this.client).get({
|
|
1153
1153
|
responseStyle: 'data',
|
|
@@ -1202,16 +1202,16 @@ class Organization extends HeyApiClient {
|
|
|
1202
1202
|
});
|
|
1203
1203
|
}
|
|
1204
1204
|
}
|
|
1205
|
-
class
|
|
1205
|
+
class Organizations2 extends HeyApiClient {
|
|
1206
1206
|
constructor(args) {
|
|
1207
1207
|
super(args);
|
|
1208
|
-
|
|
1208
|
+
Organizations2.__registry.set(this, args?.key);
|
|
1209
1209
|
}
|
|
1210
|
-
get
|
|
1211
|
-
return this.
|
|
1210
|
+
get organizations() {
|
|
1211
|
+
return this._organizations ?? (this._organizations = new Organizations({ client: this.client }));
|
|
1212
1212
|
}
|
|
1213
1213
|
}
|
|
1214
|
-
|
|
1214
|
+
Organizations2.__registry = new HeyApiRegistry3();
|
|
1215
1215
|
class ContactLists extends HeyApiClient {
|
|
1216
1216
|
create(parameters, options) {
|
|
1217
1217
|
const params = buildClientParams([parameters], [{ args: [
|