mailmeteor 0.0.28 → 0.0.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -447,7 +447,7 @@ type UserIdResponse200 = {
447
447
  discount_percentage?: number | null;
448
448
  name: string | null;
449
449
  billing_period: 'day' | 'week' | 'month' | 'year' | null;
450
- plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business' | null;
450
+ plan: 'free' | 'starter' | 'premium' | 'pro' | 'business' | null;
451
451
  default_payment_method: {
452
452
  type: string;
453
453
  brand?: string | null;
@@ -465,7 +465,7 @@ type UserIdResponse200 = {
465
465
  };
466
466
  };
467
467
  pending_plan_change: {
468
- plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
468
+ plan: 'free' | 'starter' | 'premium' | 'pro' | 'business';
469
469
  billing_period: 'month' | 'year';
470
470
  scheduled_at: number;
471
471
  } | null;
@@ -595,7 +595,7 @@ type SubscriptionResponse200 = {
595
595
  failure_code?: string;
596
596
  };
597
597
  type SubscriptionBody = {
598
- plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
598
+ plan: 'free' | 'starter' | 'premium' | 'pro' | 'business';
599
599
  billing_period: 'month' | 'year';
600
600
  };
601
601
  type PreviewBody = {
@@ -892,6 +892,36 @@ type AddonResponse200 = Array<{
892
892
  email: string;
893
893
  usage: number;
894
894
  }>;
895
+ type PipelineConversationsQuery = {
896
+ owner: string;
897
+ status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
898
+ limit?: number;
899
+ starting_after?: string;
900
+ ending_before?: string;
901
+ };
902
+ type PipelineConversationsResponse200 = {
903
+ object: 'list';
904
+ data: Array<{
905
+ object: 'pipeline_conversation';
906
+ id: string;
907
+ provider: 'google' | 'microsoft' | 'zoho';
908
+ thread_id: string;
909
+ subject: string;
910
+ recipient_emails: Array<string>;
911
+ status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
912
+ status_updated_at: number;
913
+ opens_count: number;
914
+ clicks_count: number;
915
+ unsubscribed: boolean;
916
+ }>;
917
+ };
918
+ type CountQuery = {
919
+ owner: string;
920
+ status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
921
+ };
922
+ type CountResponse200 = {
923
+ count: number;
924
+ };
895
925
  type PricesQuery = {
896
926
  currency: string;
897
927
  };
@@ -912,10 +942,6 @@ type PricesResponse200 = {
912
942
  month: number;
913
943
  year: number;
914
944
  };
915
- max?: {
916
- month: number;
917
- year: number;
918
- };
919
945
  business?: {
920
946
  month: number;
921
947
  year: number;
@@ -1059,15 +1085,21 @@ type IntegrationIdParams = {
1059
1085
  integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
1060
1086
  };
1061
1087
  type IntegrationIdResponse200 = {
1088
+ owner: string;
1062
1089
  id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
1063
1090
  service: 'google' | 'microsoft' | 'zoho';
1064
1091
  object: 'integration';
1065
- accounts: Array<{
1092
+ accounts?: Array<{
1066
1093
  id: string;
1094
+ object: 'integration_account';
1067
1095
  email?: string;
1068
1096
  permissions: Array<string>;
1069
1097
  }>;
1070
1098
  };
1099
+ type AccountIdParams = {
1100
+ integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
1101
+ account_id: string;
1102
+ };
1071
1103
  type OpenapiJsonResponse200 = unknown;
1072
1104
  type UsersRetrieveData = {
1073
1105
  body?: never;
@@ -1210,7 +1242,7 @@ type UsersRetrieveResponses = {
1210
1242
  discount_percentage?: number | null;
1211
1243
  name: string | null;
1212
1244
  billing_period: 'day' | 'week' | 'month' | 'year' | null;
1213
- plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business' | null;
1245
+ plan: 'free' | 'starter' | 'premium' | 'pro' | 'business' | null;
1214
1246
  default_payment_method: {
1215
1247
  type: string;
1216
1248
  brand?: string | null;
@@ -1228,7 +1260,7 @@ type UsersRetrieveResponses = {
1228
1260
  };
1229
1261
  };
1230
1262
  pending_plan_change: {
1231
- plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
1263
+ plan: 'free' | 'starter' | 'premium' | 'pro' | 'business';
1232
1264
  billing_period: 'month' | 'year';
1233
1265
  scheduled_at: number;
1234
1266
  } | null;
@@ -1648,7 +1680,7 @@ type BillingSubscriptionGetResponses = {
1648
1680
  discount_percentage?: number | null;
1649
1681
  name: string | null;
1650
1682
  billing_period: 'day' | 'week' | 'month' | 'year' | null;
1651
- plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business' | null;
1683
+ plan: 'free' | 'starter' | 'premium' | 'pro' | 'business' | null;
1652
1684
  default_payment_method: {
1653
1685
  type: string;
1654
1686
  brand?: string | null;
@@ -1666,7 +1698,7 @@ type BillingSubscriptionGetResponses = {
1666
1698
  };
1667
1699
  };
1668
1700
  pending_plan_change: {
1669
- plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
1701
+ plan: 'free' | 'starter' | 'premium' | 'pro' | 'business';
1670
1702
  billing_period: 'month' | 'year';
1671
1703
  scheduled_at: number;
1672
1704
  } | null;
@@ -1675,7 +1707,7 @@ type BillingSubscriptionGetResponses = {
1675
1707
  type BillingSubscriptionGetResponse = BillingSubscriptionGetResponses[keyof BillingSubscriptionGetResponses];
1676
1708
  type BillingSubscriptionUpdateData = {
1677
1709
  body: {
1678
- plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
1710
+ plan: 'free' | 'starter' | 'premium' | 'pro' | 'business';
1679
1711
  billing_period: 'month' | 'year';
1680
1712
  };
1681
1713
  path?: never;
@@ -1702,7 +1734,7 @@ type BillingSubscriptionUpdateResponses = {
1702
1734
  type BillingSubscriptionUpdateResponse = BillingSubscriptionUpdateResponses[keyof BillingSubscriptionUpdateResponses];
1703
1735
  type BillingSubscriptionPreviewUpdateData = {
1704
1736
  body: {
1705
- plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
1737
+ plan: 'free' | 'starter' | 'premium' | 'pro' | 'business';
1706
1738
  billing_period: 'month' | 'year';
1707
1739
  };
1708
1740
  path?: never;
@@ -1732,7 +1764,7 @@ type BillingSubscriptionPreviewUpdateResponses = {
1732
1764
  amount: number;
1733
1765
  billing_period: 'day' | 'week' | 'month' | 'year';
1734
1766
  proration: boolean;
1735
- plan?: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
1767
+ plan?: 'free' | 'starter' | 'premium' | 'pro' | 'business';
1736
1768
  addon?: 'senders' | 'email_warmups';
1737
1769
  }>;
1738
1770
  next_renewal: number;
@@ -2489,6 +2521,72 @@ type BillingAddonsUpdateResponses = {
2489
2521
  };
2490
2522
  };
2491
2523
  type BillingAddonsUpdateResponse = BillingAddonsUpdateResponses[keyof BillingAddonsUpdateResponses];
2524
+ type PipelineConversationsListData = {
2525
+ body?: never;
2526
+ path?: never;
2527
+ query: {
2528
+ owner: string;
2529
+ status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2530
+ limit?: number;
2531
+ starting_after?: string;
2532
+ ending_before?: string;
2533
+ };
2534
+ url: '/pipeline_conversations';
2535
+ };
2536
+ type PipelineConversationsListErrors = {
2537
+ /**
2538
+ * Error response
2539
+ */
2540
+ default: ErrorResponse;
2541
+ };
2542
+ type PipelineConversationsListError = PipelineConversationsListErrors[keyof PipelineConversationsListErrors];
2543
+ type PipelineConversationsListResponses = {
2544
+ /**
2545
+ * Response
2546
+ */
2547
+ 200: {
2548
+ object: 'list';
2549
+ data: Array<{
2550
+ object: 'pipeline_conversation';
2551
+ id: string;
2552
+ provider: 'google' | 'microsoft' | 'zoho';
2553
+ thread_id: string;
2554
+ subject: string;
2555
+ recipient_emails: Array<string>;
2556
+ status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2557
+ status_updated_at: number;
2558
+ opens_count: number;
2559
+ clicks_count: number;
2560
+ unsubscribed: boolean;
2561
+ }>;
2562
+ };
2563
+ };
2564
+ type PipelineConversationsListResponse = PipelineConversationsListResponses[keyof PipelineConversationsListResponses];
2565
+ type PipelineConversationsCountData = {
2566
+ body?: never;
2567
+ path?: never;
2568
+ query: {
2569
+ owner: string;
2570
+ status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2571
+ };
2572
+ url: '/pipeline_conversations/count';
2573
+ };
2574
+ type PipelineConversationsCountErrors = {
2575
+ /**
2576
+ * Error response
2577
+ */
2578
+ default: ErrorResponse;
2579
+ };
2580
+ type PipelineConversationsCountError = PipelineConversationsCountErrors[keyof PipelineConversationsCountErrors];
2581
+ type PipelineConversationsCountResponses = {
2582
+ /**
2583
+ * Response
2584
+ */
2585
+ 200: {
2586
+ count: number;
2587
+ };
2588
+ };
2589
+ type PipelineConversationsCountResponse = PipelineConversationsCountResponses[keyof PipelineConversationsCountResponses];
2492
2590
  type BillingGetPricesData = {
2493
2591
  body?: never;
2494
2592
  path?: never;
@@ -2525,10 +2623,6 @@ type BillingGetPricesResponses = {
2525
2623
  month: number;
2526
2624
  year: number;
2527
2625
  };
2528
- max?: {
2529
- month: number;
2530
- year: number;
2531
- };
2532
2626
  business?: {
2533
2627
  month: number;
2534
2628
  year: number;
@@ -2744,17 +2838,42 @@ type IntegrationsRetrieveResponses = {
2744
2838
  * Response
2745
2839
  */
2746
2840
  200: {
2841
+ owner: string;
2747
2842
  id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
2748
2843
  service: 'google' | 'microsoft' | 'zoho';
2749
2844
  object: 'integration';
2750
- accounts: Array<{
2845
+ accounts?: Array<{
2751
2846
  id: string;
2847
+ object: 'integration_account';
2752
2848
  email?: string;
2753
2849
  permissions: Array<string>;
2754
2850
  }>;
2755
2851
  };
2756
2852
  };
2757
2853
  type IntegrationsRetrieveResponse = IntegrationsRetrieveResponses[keyof IntegrationsRetrieveResponses];
2854
+ type IntegrationsDeleteAccountData = {
2855
+ body?: never;
2856
+ path: {
2857
+ integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
2858
+ account_id: string;
2859
+ };
2860
+ query?: never;
2861
+ url: '/integrations/{integration_id}/accounts/{account_id}';
2862
+ };
2863
+ type IntegrationsDeleteAccountErrors = {
2864
+ /**
2865
+ * Error response
2866
+ */
2867
+ default: ErrorResponse;
2868
+ };
2869
+ type IntegrationsDeleteAccountError = IntegrationsDeleteAccountErrors[keyof IntegrationsDeleteAccountErrors];
2870
+ type IntegrationsDeleteAccountResponses = {
2871
+ /**
2872
+ * Response
2873
+ */
2874
+ 204: void;
2875
+ };
2876
+ type IntegrationsDeleteAccountResponse = IntegrationsDeleteAccountResponses[keyof IntegrationsDeleteAccountResponses];
2758
2877
  type GetOpenapiJsonData = {
2759
2878
  body?: never;
2760
2879
  path?: never;
@@ -2775,6 +2894,7 @@ type GetOpenapiJsonResponses = {
2775
2894
  200: unknown;
2776
2895
  };
2777
2896
 
2897
+ type types_gen_d_AccountIdParams = AccountIdParams;
2778
2898
  type types_gen_d_ActionIdParams = ActionIdParams;
2779
2899
  type types_gen_d_AddonBody = AddonBody;
2780
2900
  type types_gen_d_AddonParams = AddonParams;
@@ -2929,6 +3049,8 @@ type types_gen_d_ContactsUpdateError = ContactsUpdateError;
2929
3049
  type types_gen_d_ContactsUpdateErrors = ContactsUpdateErrors;
2930
3050
  type types_gen_d_ContactsUpdateResponse = ContactsUpdateResponse;
2931
3051
  type types_gen_d_ContactsUpdateResponses = ContactsUpdateResponses;
3052
+ type types_gen_d_CountQuery = CountQuery;
3053
+ type types_gen_d_CountResponse200 = CountResponse200;
2932
3054
  type types_gen_d_CurrentOrganizationBody = CurrentOrganizationBody;
2933
3055
  type types_gen_d_CurrentOrganizationParams = CurrentOrganizationParams;
2934
3056
  type types_gen_d_CurrentOrganizationResponse200 = CurrentOrganizationResponse200;
@@ -2939,6 +3061,11 @@ type types_gen_d_GetOpenapiJsonErrors = GetOpenapiJsonErrors;
2939
3061
  type types_gen_d_GetOpenapiJsonResponses = GetOpenapiJsonResponses;
2940
3062
  type types_gen_d_IntegrationIdParams = IntegrationIdParams;
2941
3063
  type types_gen_d_IntegrationIdResponse200 = IntegrationIdResponse200;
3064
+ type types_gen_d_IntegrationsDeleteAccountData = IntegrationsDeleteAccountData;
3065
+ type types_gen_d_IntegrationsDeleteAccountError = IntegrationsDeleteAccountError;
3066
+ type types_gen_d_IntegrationsDeleteAccountErrors = IntegrationsDeleteAccountErrors;
3067
+ type types_gen_d_IntegrationsDeleteAccountResponse = IntegrationsDeleteAccountResponse;
3068
+ type types_gen_d_IntegrationsDeleteAccountResponses = IntegrationsDeleteAccountResponses;
2942
3069
  type types_gen_d_IntegrationsRetrieveData = IntegrationsRetrieveData;
2943
3070
  type types_gen_d_IntegrationsRetrieveError = IntegrationsRetrieveError;
2944
3071
  type types_gen_d_IntegrationsRetrieveErrors = IntegrationsRetrieveErrors;
@@ -3004,6 +3131,18 @@ type types_gen_d_OrganizationsUpdateError = OrganizationsUpdateError;
3004
3131
  type types_gen_d_OrganizationsUpdateErrors = OrganizationsUpdateErrors;
3005
3132
  type types_gen_d_OrganizationsUpdateResponse = OrganizationsUpdateResponse;
3006
3133
  type types_gen_d_OrganizationsUpdateResponses = OrganizationsUpdateResponses;
3134
+ type types_gen_d_PipelineConversationsCountData = PipelineConversationsCountData;
3135
+ type types_gen_d_PipelineConversationsCountError = PipelineConversationsCountError;
3136
+ type types_gen_d_PipelineConversationsCountErrors = PipelineConversationsCountErrors;
3137
+ type types_gen_d_PipelineConversationsCountResponse = PipelineConversationsCountResponse;
3138
+ type types_gen_d_PipelineConversationsCountResponses = PipelineConversationsCountResponses;
3139
+ type types_gen_d_PipelineConversationsListData = PipelineConversationsListData;
3140
+ type types_gen_d_PipelineConversationsListError = PipelineConversationsListError;
3141
+ type types_gen_d_PipelineConversationsListErrors = PipelineConversationsListErrors;
3142
+ type types_gen_d_PipelineConversationsListResponse = PipelineConversationsListResponse;
3143
+ type types_gen_d_PipelineConversationsListResponses = PipelineConversationsListResponses;
3144
+ type types_gen_d_PipelineConversationsQuery = PipelineConversationsQuery;
3145
+ type types_gen_d_PipelineConversationsResponse200 = PipelineConversationsResponse200;
3007
3146
  type types_gen_d_PreviewBody = PreviewBody;
3008
3147
  type types_gen_d_PreviewParams = PreviewParams;
3009
3148
  type types_gen_d_PreviewResponse200 = PreviewResponse200;
@@ -3052,7 +3191,7 @@ type types_gen_d_UsersWatchMailboxResponses = UsersWatchMailboxResponses;
3052
3191
  type types_gen_d_WatchMailboxBody = WatchMailboxBody;
3053
3192
  type types_gen_d_WatchMailboxParams = WatchMailboxParams;
3054
3193
  declare namespace types_gen_d {
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 };
3194
+ export type { types_gen_d_AccountIdParams as AccountIdParams, 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_CountQuery as CountQuery, types_gen_d_CountResponse200 as CountResponse200, 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_IntegrationsDeleteAccountData as IntegrationsDeleteAccountData, types_gen_d_IntegrationsDeleteAccountError as IntegrationsDeleteAccountError, types_gen_d_IntegrationsDeleteAccountErrors as IntegrationsDeleteAccountErrors, types_gen_d_IntegrationsDeleteAccountResponse as IntegrationsDeleteAccountResponse, types_gen_d_IntegrationsDeleteAccountResponses as IntegrationsDeleteAccountResponses, 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_PipelineConversationsCountData as PipelineConversationsCountData, types_gen_d_PipelineConversationsCountError as PipelineConversationsCountError, types_gen_d_PipelineConversationsCountErrors as PipelineConversationsCountErrors, types_gen_d_PipelineConversationsCountResponse as PipelineConversationsCountResponse, types_gen_d_PipelineConversationsCountResponses as PipelineConversationsCountResponses, types_gen_d_PipelineConversationsListData as PipelineConversationsListData, types_gen_d_PipelineConversationsListError as PipelineConversationsListError, types_gen_d_PipelineConversationsListErrors as PipelineConversationsListErrors, types_gen_d_PipelineConversationsListResponse as PipelineConversationsListResponse, types_gen_d_PipelineConversationsListResponses as PipelineConversationsListResponses, types_gen_d_PipelineConversationsQuery as PipelineConversationsQuery, types_gen_d_PipelineConversationsResponse200 as PipelineConversationsResponse200, 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 };
3056
3195
  }
3057
3196
 
3058
3197
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -3117,11 +3256,11 @@ declare class Organizations extends HeyApiClient {
3117
3256
  declare class BillingSubscription extends HeyApiClient {
3118
3257
  get<ThrowOnError extends boolean = true>(options?: Options<never, ThrowOnError>): RequestResult<BillingSubscriptionGetResponses, BillingSubscriptionGetErrors, ThrowOnError, "data">;
3119
3258
  update<ThrowOnError extends boolean = true>(parameters: {
3120
- plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
3259
+ plan: 'free' | 'starter' | 'premium' | 'pro' | 'business';
3121
3260
  billing_period: 'month' | 'year';
3122
3261
  }, options?: Options<never, ThrowOnError>): RequestResult<BillingSubscriptionUpdateResponses, BillingSubscriptionUpdateErrors, ThrowOnError, "data">;
3123
3262
  previewUpdate<ThrowOnError extends boolean = true>(parameters: {
3124
- plan: 'free' | 'starter' | 'premium' | 'pro' | 'max' | 'business';
3263
+ plan: 'free' | 'starter' | 'premium' | 'pro' | 'business';
3125
3264
  billing_period: 'month' | 'year';
3126
3265
  }, options?: Options<never, ThrowOnError>): RequestResult<BillingSubscriptionPreviewUpdateResponses, BillingSubscriptionPreviewUpdateErrors, ThrowOnError, "data">;
3127
3266
  }
@@ -3216,6 +3355,19 @@ declare class BillingAddons extends HeyApiClient {
3216
3355
  quantity: number;
3217
3356
  }, options?: Options<never, ThrowOnError>): RequestResult<BillingAddonsUpdateResponses, BillingAddonsUpdateErrors, ThrowOnError, "data">;
3218
3357
  }
3358
+ declare class PipelineConversations extends HeyApiClient {
3359
+ list<ThrowOnError extends boolean = true>(parameters: {
3360
+ owner: string;
3361
+ status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
3362
+ limit?: number;
3363
+ starting_after?: string;
3364
+ ending_before?: string;
3365
+ }, options?: Options<never, ThrowOnError>): RequestResult<PipelineConversationsListResponses, PipelineConversationsListErrors, ThrowOnError, "data">;
3366
+ count<ThrowOnError extends boolean = true>(parameters: {
3367
+ owner: string;
3368
+ status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
3369
+ }, options?: Options<never, ThrowOnError>): RequestResult<PipelineConversationsCountResponses, PipelineConversationsCountErrors, ThrowOnError, "data">;
3370
+ }
3219
3371
  declare class Products extends HeyApiClient {
3220
3372
  list<ThrowOnError extends boolean = true>(options?: Options<never, ThrowOnError>): RequestResult<BillingProductsListResponses, BillingProductsListErrors, ThrowOnError, "data">;
3221
3373
  retrieve<ThrowOnError extends boolean = true>(product: string, options?: Options<never, ThrowOnError>): RequestResult<BillingProductsRetrieveResponses, BillingProductsRetrieveErrors, ThrowOnError, "data">;
@@ -3233,6 +3385,7 @@ declare class Billing extends HeyApiClient {
3233
3385
  }
3234
3386
  declare class Integrations extends HeyApiClient {
3235
3387
  retrieve<ThrowOnError extends boolean = true>(integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail', options?: Options<never, ThrowOnError>): RequestResult<IntegrationsRetrieveResponses, IntegrationsRetrieveErrors, ThrowOnError, "data">;
3388
+ deleteAccount<ThrowOnError extends boolean = true>(integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail', account_id: string, options?: Options<never, ThrowOnError>): RequestResult<IntegrationsDeleteAccountResponses, IntegrationsDeleteAccountErrors, ThrowOnError, "data">;
3236
3389
  }
3237
3390
 
3238
3391
  interface MailmeteorConfig {
@@ -3256,6 +3409,7 @@ declare class Mailmeteor {
3256
3409
  readonly users: Users;
3257
3410
  readonly contacts: Contacts;
3258
3411
  readonly integrations: Integrations;
3412
+ readonly pipelineConversations: PipelineConversations;
3259
3413
  constructor(key: string, config?: MailmeteorConfig);
3260
3414
  /**
3261
3415
  * Update the API key for authentication
package/dist/index.mjs CHANGED
@@ -999,7 +999,7 @@ class HeyApiRegistry8 {
999
999
  get(key) {
1000
1000
  const instance = this.instances.get(key ?? this.defaultKey);
1001
1001
  if (!instance) {
1002
- throw new Error(`No SDK client found. Create one with "new Billing2()" to fix this error.`);
1002
+ throw new Error(`No SDK client found. Create one with "new PipelineConversations2()" to fix this error.`);
1003
1003
  }
1004
1004
  return instance;
1005
1005
  }
@@ -1015,7 +1015,7 @@ class HeyApiRegistry9 {
1015
1015
  get(key) {
1016
1016
  const instance = this.instances.get(key ?? this.defaultKey);
1017
1017
  if (!instance) {
1018
- throw new Error(`No SDK client found. Create one with "new Integrations2()" to fix this error.`);
1018
+ throw new Error(`No SDK client found. Create one with "new Billing2()" to fix this error.`);
1019
1019
  }
1020
1020
  return instance;
1021
1021
  }
@@ -1024,6 +1024,22 @@ class HeyApiRegistry9 {
1024
1024
  }
1025
1025
  }
1026
1026
  class HeyApiRegistry10 {
1027
+ constructor() {
1028
+ this.defaultKey = 'default';
1029
+ this.instances = new Map();
1030
+ }
1031
+ get(key) {
1032
+ const instance = this.instances.get(key ?? this.defaultKey);
1033
+ if (!instance) {
1034
+ throw new Error(`No SDK client found. Create one with "new Integrations2()" to fix this error.`);
1035
+ }
1036
+ return instance;
1037
+ }
1038
+ set(value, key) {
1039
+ this.instances.set(key ?? this.defaultKey, value);
1040
+ }
1041
+ }
1042
+ class HeyApiRegistry11 {
1027
1043
  constructor() {
1028
1044
  this.defaultKey = 'default';
1029
1045
  this.instances = new Map();
@@ -1569,6 +1585,42 @@ class BillingAddons2 extends HeyApiClient {
1569
1585
  }
1570
1586
  }
1571
1587
  BillingAddons2.__registry = new HeyApiRegistry7();
1588
+ class PipelineConversations extends HeyApiClient {
1589
+ list(parameters, options) {
1590
+ const params = buildClientParams([parameters], [{ args: [
1591
+ { in: 'query', key: 'owner' },
1592
+ { in: 'query', key: 'status' },
1593
+ { in: 'query', key: 'limit' },
1594
+ { in: 'query', key: 'starting_after' },
1595
+ { in: 'query', key: 'ending_before' }
1596
+ ] }]);
1597
+ return (options?.client ?? this.client).get({
1598
+ responseStyle: 'data',
1599
+ url: '/pipeline_conversations',
1600
+ ...options,
1601
+ ...params
1602
+ });
1603
+ }
1604
+ count(parameters, options) {
1605
+ const params = buildClientParams([parameters], [{ args: [{ in: 'query', key: 'owner' }, { in: 'query', key: 'status' }] }]);
1606
+ return (options?.client ?? this.client).get({
1607
+ responseStyle: 'data',
1608
+ url: '/pipeline_conversations/count',
1609
+ ...options,
1610
+ ...params
1611
+ });
1612
+ }
1613
+ }
1614
+ class PipelineConversations2 extends HeyApiClient {
1615
+ constructor(args) {
1616
+ super(args);
1617
+ PipelineConversations2.__registry.set(this, args?.key);
1618
+ }
1619
+ get pipelineConversations() {
1620
+ return this._pipelineConversations ?? (this._pipelineConversations = new PipelineConversations({ client: this.client }));
1621
+ }
1622
+ }
1623
+ PipelineConversations2.__registry = new HeyApiRegistry8();
1572
1624
  class Products extends HeyApiClient {
1573
1625
  list(options) {
1574
1626
  return (options?.client ?? this.client).get({
@@ -1624,7 +1676,7 @@ class Billing2 extends HeyApiClient {
1624
1676
  return this._billing ?? (this._billing = new Billing({ client: this.client }));
1625
1677
  }
1626
1678
  }
1627
- Billing2.__registry = new HeyApiRegistry8();
1679
+ Billing2.__registry = new HeyApiRegistry9();
1628
1680
  class Integrations extends HeyApiClient {
1629
1681
  retrieve(integration_id, options) {
1630
1682
  const params = buildClientParams([integration_id], [{ in: 'path', key: 'integration_id' }]);
@@ -1635,6 +1687,15 @@ class Integrations extends HeyApiClient {
1635
1687
  ...params
1636
1688
  });
1637
1689
  }
1690
+ deleteAccount(integration_id, account_id, options) {
1691
+ const params = buildClientParams([integration_id, account_id], [{ in: 'path', key: 'integration_id' }, { in: 'path', key: 'account_id' }]);
1692
+ return (options?.client ?? this.client).delete({
1693
+ responseStyle: 'data',
1694
+ url: '/integrations/{integration_id}/accounts/{account_id}',
1695
+ ...options,
1696
+ ...params
1697
+ });
1698
+ }
1638
1699
  }
1639
1700
  class Integrations2 extends HeyApiClient {
1640
1701
  constructor(args) {
@@ -1645,7 +1706,7 @@ class Integrations2 extends HeyApiClient {
1645
1706
  return this._integrations ?? (this._integrations = new Integrations({ client: this.client }));
1646
1707
  }
1647
1708
  }
1648
- Integrations2.__registry = new HeyApiRegistry9();
1709
+ Integrations2.__registry = new HeyApiRegistry10();
1649
1710
  class Default extends HeyApiClient {
1650
1711
  constructor(args) {
1651
1712
  super(args);
@@ -1659,7 +1720,7 @@ class Default extends HeyApiClient {
1659
1720
  });
1660
1721
  }
1661
1722
  }
1662
- Default.__registry = new HeyApiRegistry10();
1723
+ Default.__registry = new HeyApiRegistry11();
1663
1724
 
1664
1725
  var types_gen = /*#__PURE__*/Object.freeze({
1665
1726
  __proto__: null
@@ -1701,6 +1762,7 @@ class Mailmeteor {
1701
1762
  this.users = new Users({ client: this.client });
1702
1763
  this.contacts = new Contacts({ client: this.client });
1703
1764
  this.integrations = new Integrations({ client: this.client });
1765
+ this.pipelineConversations = new PipelineConversations({ client: this.client });
1704
1766
  }
1705
1767
  setApiKey(key) {
1706
1768
  const currentConfig = this.client.getConfig();