mailmeteor 0.0.26 → 0.0.28
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 +39 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +182 -17
- package/dist/index.mjs +39 -1
- 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 +22 -4
- package/dist/types/generated-sdk/sdk.gen.d.ts.map +1 -1
- package/dist/types/generated-sdk/types.gen.d.ts +168 -14
- package/dist/types/generated-sdk/types.gen.d.ts.map +1 -1
- package/dist/types/index.d.ts +2 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -355,6 +355,8 @@ type UserIdResponse200 = {
|
|
|
355
355
|
update_date?: number;
|
|
356
356
|
scope?: string;
|
|
357
357
|
api_domain?: string;
|
|
358
|
+
email?: string;
|
|
359
|
+
service?: string;
|
|
358
360
|
};
|
|
359
361
|
microsoft?: {
|
|
360
362
|
access_token?: string;
|
|
@@ -364,6 +366,8 @@ type UserIdResponse200 = {
|
|
|
364
366
|
update_date?: number;
|
|
365
367
|
scope?: string;
|
|
366
368
|
api_domain?: string;
|
|
369
|
+
email?: string;
|
|
370
|
+
service?: string;
|
|
367
371
|
};
|
|
368
372
|
zoho?: {
|
|
369
373
|
access_token?: string;
|
|
@@ -373,10 +377,57 @@ type UserIdResponse200 = {
|
|
|
373
377
|
update_date?: number;
|
|
374
378
|
scope?: string;
|
|
375
379
|
api_domain?: string;
|
|
380
|
+
email?: string;
|
|
381
|
+
service?: string;
|
|
376
382
|
};
|
|
377
383
|
sendgrid?: {
|
|
378
|
-
api_key
|
|
384
|
+
api_key: string;
|
|
379
385
|
};
|
|
386
|
+
[key: string]: {
|
|
387
|
+
access_token?: string;
|
|
388
|
+
refresh_token?: string;
|
|
389
|
+
expiry_date?: number;
|
|
390
|
+
expires_in?: number;
|
|
391
|
+
update_date?: number;
|
|
392
|
+
scope?: string;
|
|
393
|
+
api_domain?: string;
|
|
394
|
+
email?: string;
|
|
395
|
+
service?: string;
|
|
396
|
+
} | {
|
|
397
|
+
api_key: string;
|
|
398
|
+
} | {
|
|
399
|
+
access_token?: string;
|
|
400
|
+
refresh_token?: string;
|
|
401
|
+
expiry_date?: number;
|
|
402
|
+
expires_in?: number;
|
|
403
|
+
update_date?: number;
|
|
404
|
+
scope?: string;
|
|
405
|
+
api_domain?: string;
|
|
406
|
+
email?: string;
|
|
407
|
+
service?: string;
|
|
408
|
+
} | {
|
|
409
|
+
access_token?: string;
|
|
410
|
+
refresh_token?: string;
|
|
411
|
+
expiry_date?: number;
|
|
412
|
+
expires_in?: number;
|
|
413
|
+
update_date?: number;
|
|
414
|
+
scope?: string;
|
|
415
|
+
api_domain?: string;
|
|
416
|
+
email?: string;
|
|
417
|
+
service?: string;
|
|
418
|
+
} | {
|
|
419
|
+
access_token?: string;
|
|
420
|
+
refresh_token?: string;
|
|
421
|
+
expiry_date?: number;
|
|
422
|
+
expires_in?: number;
|
|
423
|
+
update_date?: number;
|
|
424
|
+
scope?: string;
|
|
425
|
+
api_domain?: string;
|
|
426
|
+
email?: string;
|
|
427
|
+
service?: string;
|
|
428
|
+
} | {
|
|
429
|
+
api_key: string;
|
|
430
|
+
} | undefined;
|
|
380
431
|
};
|
|
381
432
|
billing?: {
|
|
382
433
|
customer?: string | null;
|
|
@@ -396,7 +447,7 @@ type UserIdResponse200 = {
|
|
|
396
447
|
discount_percentage?: number | null;
|
|
397
448
|
name: string | null;
|
|
398
449
|
billing_period: 'day' | 'week' | 'month' | 'year' | null;
|
|
399
|
-
plan: 'free' | 'starter' | 'pro' | '
|
|
450
|
+
plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business' | null;
|
|
400
451
|
default_payment_method: {
|
|
401
452
|
type: string;
|
|
402
453
|
brand?: string | null;
|
|
@@ -414,7 +465,7 @@ type UserIdResponse200 = {
|
|
|
414
465
|
};
|
|
415
466
|
};
|
|
416
467
|
pending_plan_change: {
|
|
417
|
-
plan: 'free' | 'starter' | 'pro' | '
|
|
468
|
+
plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
|
|
418
469
|
billing_period: 'month' | 'year';
|
|
419
470
|
scheduled_at: number;
|
|
420
471
|
} | null;
|
|
@@ -544,7 +595,7 @@ type SubscriptionResponse200 = {
|
|
|
544
595
|
failure_code?: string;
|
|
545
596
|
};
|
|
546
597
|
type SubscriptionBody = {
|
|
547
|
-
plan: 'free' | 'starter' | 'pro' | '
|
|
598
|
+
plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
|
|
548
599
|
billing_period: 'month' | 'year';
|
|
549
600
|
};
|
|
550
601
|
type PreviewBody = {
|
|
@@ -853,11 +904,15 @@ type PricesResponse200 = {
|
|
|
853
904
|
month: number;
|
|
854
905
|
year: number;
|
|
855
906
|
};
|
|
907
|
+
premium?: {
|
|
908
|
+
month: number;
|
|
909
|
+
year: number;
|
|
910
|
+
};
|
|
856
911
|
pro?: {
|
|
857
912
|
month: number;
|
|
858
913
|
year: number;
|
|
859
914
|
};
|
|
860
|
-
|
|
915
|
+
max?: {
|
|
861
916
|
month: number;
|
|
862
917
|
year: number;
|
|
863
918
|
};
|
|
@@ -1000,6 +1055,19 @@ type UpdateResponse200 = {
|
|
|
1000
1055
|
client_secret?: string;
|
|
1001
1056
|
failure_code?: string;
|
|
1002
1057
|
};
|
|
1058
|
+
type IntegrationIdParams = {
|
|
1059
|
+
integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
|
|
1060
|
+
};
|
|
1061
|
+
type IntegrationIdResponse200 = {
|
|
1062
|
+
id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
|
|
1063
|
+
service: 'google' | 'microsoft' | 'zoho';
|
|
1064
|
+
object: 'integration';
|
|
1065
|
+
accounts: Array<{
|
|
1066
|
+
id: string;
|
|
1067
|
+
email?: string;
|
|
1068
|
+
permissions: Array<string>;
|
|
1069
|
+
}>;
|
|
1070
|
+
};
|
|
1003
1071
|
type OpenapiJsonResponse200 = unknown;
|
|
1004
1072
|
type UsersRetrieveData = {
|
|
1005
1073
|
body?: never;
|
|
@@ -1050,6 +1118,8 @@ type UsersRetrieveResponses = {
|
|
|
1050
1118
|
update_date?: number;
|
|
1051
1119
|
scope?: string;
|
|
1052
1120
|
api_domain?: string;
|
|
1121
|
+
email?: string;
|
|
1122
|
+
service?: string;
|
|
1053
1123
|
};
|
|
1054
1124
|
microsoft?: {
|
|
1055
1125
|
access_token?: string;
|
|
@@ -1059,6 +1129,8 @@ type UsersRetrieveResponses = {
|
|
|
1059
1129
|
update_date?: number;
|
|
1060
1130
|
scope?: string;
|
|
1061
1131
|
api_domain?: string;
|
|
1132
|
+
email?: string;
|
|
1133
|
+
service?: string;
|
|
1062
1134
|
};
|
|
1063
1135
|
zoho?: {
|
|
1064
1136
|
access_token?: string;
|
|
@@ -1068,10 +1140,57 @@ type UsersRetrieveResponses = {
|
|
|
1068
1140
|
update_date?: number;
|
|
1069
1141
|
scope?: string;
|
|
1070
1142
|
api_domain?: string;
|
|
1143
|
+
email?: string;
|
|
1144
|
+
service?: string;
|
|
1071
1145
|
};
|
|
1072
1146
|
sendgrid?: {
|
|
1073
|
-
api_key
|
|
1147
|
+
api_key: string;
|
|
1074
1148
|
};
|
|
1149
|
+
[key: string]: {
|
|
1150
|
+
access_token?: string;
|
|
1151
|
+
refresh_token?: string;
|
|
1152
|
+
expiry_date?: number;
|
|
1153
|
+
expires_in?: number;
|
|
1154
|
+
update_date?: number;
|
|
1155
|
+
scope?: string;
|
|
1156
|
+
api_domain?: string;
|
|
1157
|
+
email?: string;
|
|
1158
|
+
service?: string;
|
|
1159
|
+
} | {
|
|
1160
|
+
api_key: string;
|
|
1161
|
+
} | {
|
|
1162
|
+
access_token?: string;
|
|
1163
|
+
refresh_token?: string;
|
|
1164
|
+
expiry_date?: number;
|
|
1165
|
+
expires_in?: number;
|
|
1166
|
+
update_date?: number;
|
|
1167
|
+
scope?: string;
|
|
1168
|
+
api_domain?: string;
|
|
1169
|
+
email?: string;
|
|
1170
|
+
service?: string;
|
|
1171
|
+
} | {
|
|
1172
|
+
access_token?: string;
|
|
1173
|
+
refresh_token?: string;
|
|
1174
|
+
expiry_date?: number;
|
|
1175
|
+
expires_in?: number;
|
|
1176
|
+
update_date?: number;
|
|
1177
|
+
scope?: string;
|
|
1178
|
+
api_domain?: string;
|
|
1179
|
+
email?: string;
|
|
1180
|
+
service?: string;
|
|
1181
|
+
} | {
|
|
1182
|
+
access_token?: string;
|
|
1183
|
+
refresh_token?: string;
|
|
1184
|
+
expiry_date?: number;
|
|
1185
|
+
expires_in?: number;
|
|
1186
|
+
update_date?: number;
|
|
1187
|
+
scope?: string;
|
|
1188
|
+
api_domain?: string;
|
|
1189
|
+
email?: string;
|
|
1190
|
+
service?: string;
|
|
1191
|
+
} | {
|
|
1192
|
+
api_key: string;
|
|
1193
|
+
} | undefined;
|
|
1075
1194
|
};
|
|
1076
1195
|
billing?: {
|
|
1077
1196
|
customer?: string | null;
|
|
@@ -1091,7 +1210,7 @@ type UsersRetrieveResponses = {
|
|
|
1091
1210
|
discount_percentage?: number | null;
|
|
1092
1211
|
name: string | null;
|
|
1093
1212
|
billing_period: 'day' | 'week' | 'month' | 'year' | null;
|
|
1094
|
-
plan: 'free' | 'starter' | 'pro' | '
|
|
1213
|
+
plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business' | null;
|
|
1095
1214
|
default_payment_method: {
|
|
1096
1215
|
type: string;
|
|
1097
1216
|
brand?: string | null;
|
|
@@ -1109,7 +1228,7 @@ type UsersRetrieveResponses = {
|
|
|
1109
1228
|
};
|
|
1110
1229
|
};
|
|
1111
1230
|
pending_plan_change: {
|
|
1112
|
-
plan: 'free' | 'starter' | 'pro' | '
|
|
1231
|
+
plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
|
|
1113
1232
|
billing_period: 'month' | 'year';
|
|
1114
1233
|
scheduled_at: number;
|
|
1115
1234
|
} | null;
|
|
@@ -1529,7 +1648,7 @@ type BillingSubscriptionGetResponses = {
|
|
|
1529
1648
|
discount_percentage?: number | null;
|
|
1530
1649
|
name: string | null;
|
|
1531
1650
|
billing_period: 'day' | 'week' | 'month' | 'year' | null;
|
|
1532
|
-
plan: 'free' | 'starter' | 'pro' | '
|
|
1651
|
+
plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business' | null;
|
|
1533
1652
|
default_payment_method: {
|
|
1534
1653
|
type: string;
|
|
1535
1654
|
brand?: string | null;
|
|
@@ -1547,7 +1666,7 @@ type BillingSubscriptionGetResponses = {
|
|
|
1547
1666
|
};
|
|
1548
1667
|
};
|
|
1549
1668
|
pending_plan_change: {
|
|
1550
|
-
plan: 'free' | 'starter' | 'pro' | '
|
|
1669
|
+
plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
|
|
1551
1670
|
billing_period: 'month' | 'year';
|
|
1552
1671
|
scheduled_at: number;
|
|
1553
1672
|
} | null;
|
|
@@ -1556,7 +1675,7 @@ type BillingSubscriptionGetResponses = {
|
|
|
1556
1675
|
type BillingSubscriptionGetResponse = BillingSubscriptionGetResponses[keyof BillingSubscriptionGetResponses];
|
|
1557
1676
|
type BillingSubscriptionUpdateData = {
|
|
1558
1677
|
body: {
|
|
1559
|
-
plan: 'free' | 'starter' | 'pro' | '
|
|
1678
|
+
plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
|
|
1560
1679
|
billing_period: 'month' | 'year';
|
|
1561
1680
|
};
|
|
1562
1681
|
path?: never;
|
|
@@ -1583,7 +1702,7 @@ type BillingSubscriptionUpdateResponses = {
|
|
|
1583
1702
|
type BillingSubscriptionUpdateResponse = BillingSubscriptionUpdateResponses[keyof BillingSubscriptionUpdateResponses];
|
|
1584
1703
|
type BillingSubscriptionPreviewUpdateData = {
|
|
1585
1704
|
body: {
|
|
1586
|
-
plan: 'free' | 'starter' | 'pro' | '
|
|
1705
|
+
plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
|
|
1587
1706
|
billing_period: 'month' | 'year';
|
|
1588
1707
|
};
|
|
1589
1708
|
path?: never;
|
|
@@ -1613,7 +1732,7 @@ type BillingSubscriptionPreviewUpdateResponses = {
|
|
|
1613
1732
|
amount: number;
|
|
1614
1733
|
billing_period: 'day' | 'week' | 'month' | 'year';
|
|
1615
1734
|
proration: boolean;
|
|
1616
|
-
plan?: 'free' | 'starter' | 'pro' | '
|
|
1735
|
+
plan?: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
|
|
1617
1736
|
addon?: 'senders' | 'email_warmups';
|
|
1618
1737
|
}>;
|
|
1619
1738
|
next_renewal: number;
|
|
@@ -2398,11 +2517,15 @@ type BillingGetPricesResponses = {
|
|
|
2398
2517
|
month: number;
|
|
2399
2518
|
year: number;
|
|
2400
2519
|
};
|
|
2520
|
+
premium?: {
|
|
2521
|
+
month: number;
|
|
2522
|
+
year: number;
|
|
2523
|
+
};
|
|
2401
2524
|
pro?: {
|
|
2402
2525
|
month: number;
|
|
2403
2526
|
year: number;
|
|
2404
2527
|
};
|
|
2405
|
-
|
|
2528
|
+
max?: {
|
|
2406
2529
|
month: number;
|
|
2407
2530
|
year: number;
|
|
2408
2531
|
};
|
|
@@ -2601,6 +2724,37 @@ type BillingProductsUpdateResponses = {
|
|
|
2601
2724
|
};
|
|
2602
2725
|
};
|
|
2603
2726
|
type BillingProductsUpdateResponse = BillingProductsUpdateResponses[keyof BillingProductsUpdateResponses];
|
|
2727
|
+
type IntegrationsRetrieveData = {
|
|
2728
|
+
body?: never;
|
|
2729
|
+
path: {
|
|
2730
|
+
integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
|
|
2731
|
+
};
|
|
2732
|
+
query?: never;
|
|
2733
|
+
url: '/integrations/{integration_id}';
|
|
2734
|
+
};
|
|
2735
|
+
type IntegrationsRetrieveErrors = {
|
|
2736
|
+
/**
|
|
2737
|
+
* Error response
|
|
2738
|
+
*/
|
|
2739
|
+
default: ErrorResponse;
|
|
2740
|
+
};
|
|
2741
|
+
type IntegrationsRetrieveError = IntegrationsRetrieveErrors[keyof IntegrationsRetrieveErrors];
|
|
2742
|
+
type IntegrationsRetrieveResponses = {
|
|
2743
|
+
/**
|
|
2744
|
+
* Response
|
|
2745
|
+
*/
|
|
2746
|
+
200: {
|
|
2747
|
+
id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
|
|
2748
|
+
service: 'google' | 'microsoft' | 'zoho';
|
|
2749
|
+
object: 'integration';
|
|
2750
|
+
accounts: Array<{
|
|
2751
|
+
id: string;
|
|
2752
|
+
email?: string;
|
|
2753
|
+
permissions: Array<string>;
|
|
2754
|
+
}>;
|
|
2755
|
+
};
|
|
2756
|
+
};
|
|
2757
|
+
type IntegrationsRetrieveResponse = IntegrationsRetrieveResponses[keyof IntegrationsRetrieveResponses];
|
|
2604
2758
|
type GetOpenapiJsonData = {
|
|
2605
2759
|
body?: never;
|
|
2606
2760
|
path?: never;
|
|
@@ -2783,6 +2937,13 @@ type types_gen_d_GetOpenapiJsonData = GetOpenapiJsonData;
|
|
|
2783
2937
|
type types_gen_d_GetOpenapiJsonError = GetOpenapiJsonError;
|
|
2784
2938
|
type types_gen_d_GetOpenapiJsonErrors = GetOpenapiJsonErrors;
|
|
2785
2939
|
type types_gen_d_GetOpenapiJsonResponses = GetOpenapiJsonResponses;
|
|
2940
|
+
type types_gen_d_IntegrationIdParams = IntegrationIdParams;
|
|
2941
|
+
type types_gen_d_IntegrationIdResponse200 = IntegrationIdResponse200;
|
|
2942
|
+
type types_gen_d_IntegrationsRetrieveData = IntegrationsRetrieveData;
|
|
2943
|
+
type types_gen_d_IntegrationsRetrieveError = IntegrationsRetrieveError;
|
|
2944
|
+
type types_gen_d_IntegrationsRetrieveErrors = IntegrationsRetrieveErrors;
|
|
2945
|
+
type types_gen_d_IntegrationsRetrieveResponse = IntegrationsRetrieveResponse;
|
|
2946
|
+
type types_gen_d_IntegrationsRetrieveResponses = IntegrationsRetrieveResponses;
|
|
2786
2947
|
type types_gen_d_MemberIdBody = MemberIdBody;
|
|
2787
2948
|
type types_gen_d_MemberIdParams = MemberIdParams;
|
|
2788
2949
|
type types_gen_d_MemberIdResponse200 = MemberIdResponse200;
|
|
@@ -2891,7 +3052,7 @@ type types_gen_d_UsersWatchMailboxResponses = UsersWatchMailboxResponses;
|
|
|
2891
3052
|
type types_gen_d_WatchMailboxBody = WatchMailboxBody;
|
|
2892
3053
|
type types_gen_d_WatchMailboxParams = WatchMailboxParams;
|
|
2893
3054
|
declare namespace types_gen_d {
|
|
2894
|
-
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_BillingProductsListData as BillingProductsListData, types_gen_d_BillingProductsListError as BillingProductsListError, types_gen_d_BillingProductsListErrors as BillingProductsListErrors, types_gen_d_BillingProductsListResponse as BillingProductsListResponse, types_gen_d_BillingProductsListResponses as BillingProductsListResponses, types_gen_d_BillingProductsRetrieveData as BillingProductsRetrieveData, types_gen_d_BillingProductsRetrieveError as BillingProductsRetrieveError, types_gen_d_BillingProductsRetrieveErrors as BillingProductsRetrieveErrors, types_gen_d_BillingProductsRetrieveResponse as BillingProductsRetrieveResponse, types_gen_d_BillingProductsRetrieveResponses as BillingProductsRetrieveResponses, types_gen_d_BillingProductsUpdateData as BillingProductsUpdateData, types_gen_d_BillingProductsUpdateError as BillingProductsUpdateError, types_gen_d_BillingProductsUpdateErrors as BillingProductsUpdateErrors, types_gen_d_BillingProductsUpdateResponse as BillingProductsUpdateResponse, types_gen_d_BillingProductsUpdateResponses as BillingProductsUpdateResponses, 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_OrganizationMembersCreateData as OrganizationMembersCreateData, types_gen_d_OrganizationMembersCreateError as OrganizationMembersCreateError, types_gen_d_OrganizationMembersCreateErrors as OrganizationMembersCreateErrors, types_gen_d_OrganizationMembersCreateResponse as OrganizationMembersCreateResponse, types_gen_d_OrganizationMembersCreateResponses as OrganizationMembersCreateResponses, types_gen_d_OrganizationMembersDeleteData as OrganizationMembersDeleteData, types_gen_d_OrganizationMembersDeleteError as OrganizationMembersDeleteError, types_gen_d_OrganizationMembersDeleteErrors as OrganizationMembersDeleteErrors, types_gen_d_OrganizationMembersDeleteResponse as OrganizationMembersDeleteResponse, types_gen_d_OrganizationMembersDeleteResponses as OrganizationMembersDeleteResponses, types_gen_d_OrganizationMembersListData as OrganizationMembersListData, types_gen_d_OrganizationMembersListError as OrganizationMembersListError, types_gen_d_OrganizationMembersListErrors as OrganizationMembersListErrors, types_gen_d_OrganizationMembersListResponse as OrganizationMembersListResponse, types_gen_d_OrganizationMembersListResponses as OrganizationMembersListResponses, types_gen_d_OrganizationMembersUpdateData as OrganizationMembersUpdateData, types_gen_d_OrganizationMembersUpdateError as OrganizationMembersUpdateError, types_gen_d_OrganizationMembersUpdateErrors as OrganizationMembersUpdateErrors, types_gen_d_OrganizationMembersUpdateResponse as OrganizationMembersUpdateResponse, types_gen_d_OrganizationMembersUpdateResponses as OrganizationMembersUpdateResponses, 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_ProductParams as ProductParams, types_gen_d_ProductResponse200 as ProductResponse200, types_gen_d_ProductsResponse200 as ProductsResponse200, 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_UpdateBody as UpdateBody, types_gen_d_UpdateParams as UpdateParams, types_gen_d_UpdateResponse200 as UpdateResponse200, types_gen_d_UserIdParams as UserIdParams, types_gen_d_UserIdQuery as UserIdQuery, types_gen_d_UserIdResponse200 as UserIdResponse200, 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_UsersRetrieveData as UsersRetrieveData, types_gen_d_UsersRetrieveError as UsersRetrieveError, types_gen_d_UsersRetrieveErrors as UsersRetrieveErrors, types_gen_d_UsersRetrieveResponse as UsersRetrieveResponse, types_gen_d_UsersRetrieveResponses as UsersRetrieveResponses, 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 };
|
|
3055
|
+
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_BillingProductsListData as BillingProductsListData, types_gen_d_BillingProductsListError as BillingProductsListError, types_gen_d_BillingProductsListErrors as BillingProductsListErrors, types_gen_d_BillingProductsListResponse as BillingProductsListResponse, types_gen_d_BillingProductsListResponses as BillingProductsListResponses, types_gen_d_BillingProductsRetrieveData as BillingProductsRetrieveData, types_gen_d_BillingProductsRetrieveError as BillingProductsRetrieveError, types_gen_d_BillingProductsRetrieveErrors as BillingProductsRetrieveErrors, types_gen_d_BillingProductsRetrieveResponse as BillingProductsRetrieveResponse, types_gen_d_BillingProductsRetrieveResponses as BillingProductsRetrieveResponses, types_gen_d_BillingProductsUpdateData as BillingProductsUpdateData, types_gen_d_BillingProductsUpdateError as BillingProductsUpdateError, types_gen_d_BillingProductsUpdateErrors as BillingProductsUpdateErrors, types_gen_d_BillingProductsUpdateResponse as BillingProductsUpdateResponse, types_gen_d_BillingProductsUpdateResponses as BillingProductsUpdateResponses, 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_IntegrationIdParams as IntegrationIdParams, types_gen_d_IntegrationIdResponse200 as IntegrationIdResponse200, types_gen_d_IntegrationsRetrieveData as IntegrationsRetrieveData, types_gen_d_IntegrationsRetrieveError as IntegrationsRetrieveError, types_gen_d_IntegrationsRetrieveErrors as IntegrationsRetrieveErrors, types_gen_d_IntegrationsRetrieveResponse as IntegrationsRetrieveResponse, types_gen_d_IntegrationsRetrieveResponses as IntegrationsRetrieveResponses, 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_OrganizationMembersCreateData as OrganizationMembersCreateData, types_gen_d_OrganizationMembersCreateError as OrganizationMembersCreateError, types_gen_d_OrganizationMembersCreateErrors as OrganizationMembersCreateErrors, types_gen_d_OrganizationMembersCreateResponse as OrganizationMembersCreateResponse, types_gen_d_OrganizationMembersCreateResponses as OrganizationMembersCreateResponses, types_gen_d_OrganizationMembersDeleteData as OrganizationMembersDeleteData, types_gen_d_OrganizationMembersDeleteError as OrganizationMembersDeleteError, types_gen_d_OrganizationMembersDeleteErrors as OrganizationMembersDeleteErrors, types_gen_d_OrganizationMembersDeleteResponse as OrganizationMembersDeleteResponse, types_gen_d_OrganizationMembersDeleteResponses as OrganizationMembersDeleteResponses, types_gen_d_OrganizationMembersListData as OrganizationMembersListData, types_gen_d_OrganizationMembersListError as OrganizationMembersListError, types_gen_d_OrganizationMembersListErrors as OrganizationMembersListErrors, types_gen_d_OrganizationMembersListResponse as OrganizationMembersListResponse, types_gen_d_OrganizationMembersListResponses as OrganizationMembersListResponses, types_gen_d_OrganizationMembersUpdateData as OrganizationMembersUpdateData, types_gen_d_OrganizationMembersUpdateError as OrganizationMembersUpdateError, types_gen_d_OrganizationMembersUpdateErrors as OrganizationMembersUpdateErrors, types_gen_d_OrganizationMembersUpdateResponse as OrganizationMembersUpdateResponse, types_gen_d_OrganizationMembersUpdateResponses as OrganizationMembersUpdateResponses, 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_ProductParams as ProductParams, types_gen_d_ProductResponse200 as ProductResponse200, types_gen_d_ProductsResponse200 as ProductsResponse200, 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_UpdateBody as UpdateBody, types_gen_d_UpdateParams as UpdateParams, types_gen_d_UpdateResponse200 as UpdateResponse200, types_gen_d_UserIdParams as UserIdParams, types_gen_d_UserIdQuery as UserIdQuery, types_gen_d_UserIdResponse200 as UserIdResponse200, 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_UsersRetrieveData as UsersRetrieveData, types_gen_d_UsersRetrieveError as UsersRetrieveError, types_gen_d_UsersRetrieveErrors as UsersRetrieveErrors, types_gen_d_UsersRetrieveResponse as UsersRetrieveResponse, types_gen_d_UsersRetrieveResponses as UsersRetrieveResponses, 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 };
|
|
2895
3056
|
}
|
|
2896
3057
|
|
|
2897
3058
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -2956,11 +3117,11 @@ declare class Organizations extends HeyApiClient {
|
|
|
2956
3117
|
declare class BillingSubscription extends HeyApiClient {
|
|
2957
3118
|
get<ThrowOnError extends boolean = true>(options?: Options<never, ThrowOnError>): RequestResult<BillingSubscriptionGetResponses, BillingSubscriptionGetErrors, ThrowOnError, "data">;
|
|
2958
3119
|
update<ThrowOnError extends boolean = true>(parameters: {
|
|
2959
|
-
plan: 'free' | 'starter' | 'pro' | '
|
|
3120
|
+
plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
|
|
2960
3121
|
billing_period: 'month' | 'year';
|
|
2961
3122
|
}, options?: Options<never, ThrowOnError>): RequestResult<BillingSubscriptionUpdateResponses, BillingSubscriptionUpdateErrors, ThrowOnError, "data">;
|
|
2962
3123
|
previewUpdate<ThrowOnError extends boolean = true>(parameters: {
|
|
2963
|
-
plan: 'free' | 'starter' | 'pro' | '
|
|
3124
|
+
plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
|
|
2964
3125
|
billing_period: 'month' | 'year';
|
|
2965
3126
|
}, options?: Options<never, ThrowOnError>): RequestResult<BillingSubscriptionPreviewUpdateResponses, BillingSubscriptionPreviewUpdateErrors, ThrowOnError, "data">;
|
|
2966
3127
|
}
|
|
@@ -3070,6 +3231,9 @@ declare class Billing extends HeyApiClient {
|
|
|
3070
3231
|
private _products?;
|
|
3071
3232
|
get products(): Products;
|
|
3072
3233
|
}
|
|
3234
|
+
declare class Integrations extends HeyApiClient {
|
|
3235
|
+
retrieve<ThrowOnError extends boolean = true>(integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail', options?: Options<never, ThrowOnError>): RequestResult<IntegrationsRetrieveResponses, IntegrationsRetrieveErrors, ThrowOnError, "data">;
|
|
3236
|
+
}
|
|
3073
3237
|
|
|
3074
3238
|
interface MailmeteorConfig {
|
|
3075
3239
|
/**
|
|
@@ -3091,6 +3255,7 @@ declare class Mailmeteor {
|
|
|
3091
3255
|
readonly organizationMembers: OrganizationMembers;
|
|
3092
3256
|
readonly users: Users;
|
|
3093
3257
|
readonly contacts: Contacts;
|
|
3258
|
+
readonly integrations: Integrations;
|
|
3094
3259
|
constructor(key: string, config?: MailmeteorConfig);
|
|
3095
3260
|
/**
|
|
3096
3261
|
* Update the API key for authentication
|
package/dist/index.mjs
CHANGED
|
@@ -1008,6 +1008,22 @@ class HeyApiRegistry8 {
|
|
|
1008
1008
|
}
|
|
1009
1009
|
}
|
|
1010
1010
|
class HeyApiRegistry9 {
|
|
1011
|
+
constructor() {
|
|
1012
|
+
this.defaultKey = 'default';
|
|
1013
|
+
this.instances = new Map();
|
|
1014
|
+
}
|
|
1015
|
+
get(key) {
|
|
1016
|
+
const instance = this.instances.get(key ?? this.defaultKey);
|
|
1017
|
+
if (!instance) {
|
|
1018
|
+
throw new Error(`No SDK client found. Create one with "new Integrations2()" to fix this error.`);
|
|
1019
|
+
}
|
|
1020
|
+
return instance;
|
|
1021
|
+
}
|
|
1022
|
+
set(value, key) {
|
|
1023
|
+
this.instances.set(key ?? this.defaultKey, value);
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
class HeyApiRegistry10 {
|
|
1011
1027
|
constructor() {
|
|
1012
1028
|
this.defaultKey = 'default';
|
|
1013
1029
|
this.instances = new Map();
|
|
@@ -1609,6 +1625,27 @@ class Billing2 extends HeyApiClient {
|
|
|
1609
1625
|
}
|
|
1610
1626
|
}
|
|
1611
1627
|
Billing2.__registry = new HeyApiRegistry8();
|
|
1628
|
+
class Integrations extends HeyApiClient {
|
|
1629
|
+
retrieve(integration_id, options) {
|
|
1630
|
+
const params = buildClientParams([integration_id], [{ in: 'path', key: 'integration_id' }]);
|
|
1631
|
+
return (options?.client ?? this.client).get({
|
|
1632
|
+
responseStyle: 'data',
|
|
1633
|
+
url: '/integrations/{integration_id}',
|
|
1634
|
+
...options,
|
|
1635
|
+
...params
|
|
1636
|
+
});
|
|
1637
|
+
}
|
|
1638
|
+
}
|
|
1639
|
+
class Integrations2 extends HeyApiClient {
|
|
1640
|
+
constructor(args) {
|
|
1641
|
+
super(args);
|
|
1642
|
+
Integrations2.__registry.set(this, args?.key);
|
|
1643
|
+
}
|
|
1644
|
+
get integrations() {
|
|
1645
|
+
return this._integrations ?? (this._integrations = new Integrations({ client: this.client }));
|
|
1646
|
+
}
|
|
1647
|
+
}
|
|
1648
|
+
Integrations2.__registry = new HeyApiRegistry9();
|
|
1612
1649
|
class Default extends HeyApiClient {
|
|
1613
1650
|
constructor(args) {
|
|
1614
1651
|
super(args);
|
|
@@ -1622,7 +1659,7 @@ class Default extends HeyApiClient {
|
|
|
1622
1659
|
});
|
|
1623
1660
|
}
|
|
1624
1661
|
}
|
|
1625
|
-
Default.__registry = new
|
|
1662
|
+
Default.__registry = new HeyApiRegistry10();
|
|
1626
1663
|
|
|
1627
1664
|
var types_gen = /*#__PURE__*/Object.freeze({
|
|
1628
1665
|
__proto__: null
|
|
@@ -1663,6 +1700,7 @@ class Mailmeteor {
|
|
|
1663
1700
|
this.organizationMembers = new OrganizationMembers({ client: this.client });
|
|
1664
1701
|
this.users = new Users({ client: this.client });
|
|
1665
1702
|
this.contacts = new Contacts({ client: this.client });
|
|
1703
|
+
this.integrations = new Integrations({ client: this.client });
|
|
1666
1704
|
}
|
|
1667
1705
|
setApiKey(key) {
|
|
1668
1706
|
const currentConfig = this.client.getConfig();
|