mailmeteor 0.0.29 → 0.0.31

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
@@ -892,6 +892,56 @@ 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
+ };
925
+ type StatusBody = {
926
+ owner: string;
927
+ status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
928
+ };
929
+ type StatusParams = {
930
+ pipeline_conversation_id: string;
931
+ };
932
+ type StatusResponse200 = {
933
+ object: 'pipeline_conversation';
934
+ id: string;
935
+ provider: 'google' | 'microsoft' | 'zoho';
936
+ thread_id: string;
937
+ subject: string;
938
+ recipient_emails: Array<string>;
939
+ status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
940
+ status_updated_at: number;
941
+ opens_count: number;
942
+ clicks_count: number;
943
+ unsubscribed: boolean;
944
+ };
895
945
  type PricesQuery = {
896
946
  currency: string;
897
947
  };
@@ -1055,18 +1105,20 @@ type IntegrationIdParams = {
1055
1105
  integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
1056
1106
  };
1057
1107
  type IntegrationIdResponse200 = {
1108
+ owner: string;
1058
1109
  id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
1059
1110
  service: 'google' | 'microsoft' | 'zoho';
1060
1111
  object: 'integration';
1061
- accounts: Array<{
1112
+ accounts?: Array<{
1062
1113
  id: string;
1114
+ object: 'integration_account';
1063
1115
  email?: string;
1064
1116
  permissions: Array<string>;
1065
1117
  }>;
1066
1118
  };
1067
- type AccountParams = {
1119
+ type AccountIdParams = {
1068
1120
  integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
1069
- account: string;
1121
+ account_id: string;
1070
1122
  };
1071
1123
  type OpenapiJsonResponse200 = unknown;
1072
1124
  type UsersRetrieveData = {
@@ -2489,6 +2541,109 @@ type BillingAddonsUpdateResponses = {
2489
2541
  };
2490
2542
  };
2491
2543
  type BillingAddonsUpdateResponse = BillingAddonsUpdateResponses[keyof BillingAddonsUpdateResponses];
2544
+ type PipelineConversationsListData = {
2545
+ body?: never;
2546
+ path?: never;
2547
+ query: {
2548
+ owner: string;
2549
+ status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2550
+ limit?: number;
2551
+ starting_after?: string;
2552
+ ending_before?: string;
2553
+ };
2554
+ url: '/pipeline_conversations';
2555
+ };
2556
+ type PipelineConversationsListErrors = {
2557
+ /**
2558
+ * Error response
2559
+ */
2560
+ default: ErrorResponse;
2561
+ };
2562
+ type PipelineConversationsListError = PipelineConversationsListErrors[keyof PipelineConversationsListErrors];
2563
+ type PipelineConversationsListResponses = {
2564
+ /**
2565
+ * Response
2566
+ */
2567
+ 200: {
2568
+ object: 'list';
2569
+ data: Array<{
2570
+ object: 'pipeline_conversation';
2571
+ id: string;
2572
+ provider: 'google' | 'microsoft' | 'zoho';
2573
+ thread_id: string;
2574
+ subject: string;
2575
+ recipient_emails: Array<string>;
2576
+ status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2577
+ status_updated_at: number;
2578
+ opens_count: number;
2579
+ clicks_count: number;
2580
+ unsubscribed: boolean;
2581
+ }>;
2582
+ };
2583
+ };
2584
+ type PipelineConversationsListResponse = PipelineConversationsListResponses[keyof PipelineConversationsListResponses];
2585
+ type PipelineConversationsCountData = {
2586
+ body?: never;
2587
+ path?: never;
2588
+ query: {
2589
+ owner: string;
2590
+ status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2591
+ };
2592
+ url: '/pipeline_conversations/count';
2593
+ };
2594
+ type PipelineConversationsCountErrors = {
2595
+ /**
2596
+ * Error response
2597
+ */
2598
+ default: ErrorResponse;
2599
+ };
2600
+ type PipelineConversationsCountError = PipelineConversationsCountErrors[keyof PipelineConversationsCountErrors];
2601
+ type PipelineConversationsCountResponses = {
2602
+ /**
2603
+ * Response
2604
+ */
2605
+ 200: {
2606
+ count: number;
2607
+ };
2608
+ };
2609
+ type PipelineConversationsCountResponse = PipelineConversationsCountResponses[keyof PipelineConversationsCountResponses];
2610
+ type PipelineConversationsSetStatusData = {
2611
+ body: {
2612
+ owner: string;
2613
+ status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2614
+ };
2615
+ path: {
2616
+ pipeline_conversation_id: string;
2617
+ };
2618
+ query?: never;
2619
+ url: '/pipeline_conversations/{pipeline_conversation_id}/status';
2620
+ };
2621
+ type PipelineConversationsSetStatusErrors = {
2622
+ /**
2623
+ * Error response
2624
+ */
2625
+ default: ErrorResponse;
2626
+ };
2627
+ type PipelineConversationsSetStatusError = PipelineConversationsSetStatusErrors[keyof PipelineConversationsSetStatusErrors];
2628
+ type PipelineConversationsSetStatusResponses = {
2629
+ /**
2630
+ * Response
2631
+ */
2632
+ 200: {
2633
+ object: 'pipeline_conversation';
2634
+ id: string;
2635
+ provider: 'google' | 'microsoft' | 'zoho';
2636
+ thread_id: string;
2637
+ subject: string;
2638
+ recipient_emails: Array<string>;
2639
+ status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2640
+ status_updated_at: number;
2641
+ opens_count: number;
2642
+ clicks_count: number;
2643
+ unsubscribed: boolean;
2644
+ };
2645
+ };
2646
+ type PipelineConversationsSetStatusResponse = PipelineConversationsSetStatusResponses[keyof PipelineConversationsSetStatusResponses];
2492
2647
  type BillingGetPricesData = {
2493
2648
  body?: never;
2494
2649
  path?: never;
@@ -2740,11 +2895,13 @@ type IntegrationsRetrieveResponses = {
2740
2895
  * Response
2741
2896
  */
2742
2897
  200: {
2898
+ owner: string;
2743
2899
  id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
2744
2900
  service: 'google' | 'microsoft' | 'zoho';
2745
2901
  object: 'integration';
2746
- accounts: Array<{
2902
+ accounts?: Array<{
2747
2903
  id: string;
2904
+ object: 'integration_account';
2748
2905
  email?: string;
2749
2906
  permissions: Array<string>;
2750
2907
  }>;
@@ -2755,10 +2912,10 @@ type IntegrationsDeleteAccountData = {
2755
2912
  body?: never;
2756
2913
  path: {
2757
2914
  integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail';
2758
- account: string;
2915
+ account_id: string;
2759
2916
  };
2760
2917
  query?: never;
2761
- url: '/integrations/{integration_id}/accounts/{account}';
2918
+ url: '/integrations/{integration_id}/accounts/{account_id}';
2762
2919
  };
2763
2920
  type IntegrationsDeleteAccountErrors = {
2764
2921
  /**
@@ -2794,7 +2951,7 @@ type GetOpenapiJsonResponses = {
2794
2951
  200: unknown;
2795
2952
  };
2796
2953
 
2797
- type types_gen_d_AccountParams = AccountParams;
2954
+ type types_gen_d_AccountIdParams = AccountIdParams;
2798
2955
  type types_gen_d_ActionIdParams = ActionIdParams;
2799
2956
  type types_gen_d_AddonBody = AddonBody;
2800
2957
  type types_gen_d_AddonParams = AddonParams;
@@ -2949,6 +3106,8 @@ type types_gen_d_ContactsUpdateError = ContactsUpdateError;
2949
3106
  type types_gen_d_ContactsUpdateErrors = ContactsUpdateErrors;
2950
3107
  type types_gen_d_ContactsUpdateResponse = ContactsUpdateResponse;
2951
3108
  type types_gen_d_ContactsUpdateResponses = ContactsUpdateResponses;
3109
+ type types_gen_d_CountQuery = CountQuery;
3110
+ type types_gen_d_CountResponse200 = CountResponse200;
2952
3111
  type types_gen_d_CurrentOrganizationBody = CurrentOrganizationBody;
2953
3112
  type types_gen_d_CurrentOrganizationParams = CurrentOrganizationParams;
2954
3113
  type types_gen_d_CurrentOrganizationResponse200 = CurrentOrganizationResponse200;
@@ -3029,6 +3188,23 @@ type types_gen_d_OrganizationsUpdateError = OrganizationsUpdateError;
3029
3188
  type types_gen_d_OrganizationsUpdateErrors = OrganizationsUpdateErrors;
3030
3189
  type types_gen_d_OrganizationsUpdateResponse = OrganizationsUpdateResponse;
3031
3190
  type types_gen_d_OrganizationsUpdateResponses = OrganizationsUpdateResponses;
3191
+ type types_gen_d_PipelineConversationsCountData = PipelineConversationsCountData;
3192
+ type types_gen_d_PipelineConversationsCountError = PipelineConversationsCountError;
3193
+ type types_gen_d_PipelineConversationsCountErrors = PipelineConversationsCountErrors;
3194
+ type types_gen_d_PipelineConversationsCountResponse = PipelineConversationsCountResponse;
3195
+ type types_gen_d_PipelineConversationsCountResponses = PipelineConversationsCountResponses;
3196
+ type types_gen_d_PipelineConversationsListData = PipelineConversationsListData;
3197
+ type types_gen_d_PipelineConversationsListError = PipelineConversationsListError;
3198
+ type types_gen_d_PipelineConversationsListErrors = PipelineConversationsListErrors;
3199
+ type types_gen_d_PipelineConversationsListResponse = PipelineConversationsListResponse;
3200
+ type types_gen_d_PipelineConversationsListResponses = PipelineConversationsListResponses;
3201
+ type types_gen_d_PipelineConversationsQuery = PipelineConversationsQuery;
3202
+ type types_gen_d_PipelineConversationsResponse200 = PipelineConversationsResponse200;
3203
+ type types_gen_d_PipelineConversationsSetStatusData = PipelineConversationsSetStatusData;
3204
+ type types_gen_d_PipelineConversationsSetStatusError = PipelineConversationsSetStatusError;
3205
+ type types_gen_d_PipelineConversationsSetStatusErrors = PipelineConversationsSetStatusErrors;
3206
+ type types_gen_d_PipelineConversationsSetStatusResponse = PipelineConversationsSetStatusResponse;
3207
+ type types_gen_d_PipelineConversationsSetStatusResponses = PipelineConversationsSetStatusResponses;
3032
3208
  type types_gen_d_PreviewBody = PreviewBody;
3033
3209
  type types_gen_d_PreviewParams = PreviewParams;
3034
3210
  type types_gen_d_PreviewResponse200 = PreviewResponse200;
@@ -3039,6 +3215,9 @@ type types_gen_d_ProductResponse200 = ProductResponse200;
3039
3215
  type types_gen_d_ProductsResponse200 = ProductsResponse200;
3040
3216
  type types_gen_d_ResubscribeParams = ResubscribeParams;
3041
3217
  type types_gen_d_ResubscribeResponse200 = ResubscribeResponse200;
3218
+ type types_gen_d_StatusBody = StatusBody;
3219
+ type types_gen_d_StatusParams = StatusParams;
3220
+ type types_gen_d_StatusResponse200 = StatusResponse200;
3042
3221
  type types_gen_d_SubscriptionBody = SubscriptionBody;
3043
3222
  type types_gen_d_SubscriptionResponse200 = SubscriptionResponse200;
3044
3223
  type types_gen_d_UnblockParams = UnblockParams;
@@ -3077,7 +3256,7 @@ type types_gen_d_UsersWatchMailboxResponses = UsersWatchMailboxResponses;
3077
3256
  type types_gen_d_WatchMailboxBody = WatchMailboxBody;
3078
3257
  type types_gen_d_WatchMailboxParams = WatchMailboxParams;
3079
3258
  declare namespace types_gen_d {
3080
- export type { types_gen_d_AccountParams as AccountParams, 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_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_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 };
3259
+ 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_PipelineConversationsSetStatusData as PipelineConversationsSetStatusData, types_gen_d_PipelineConversationsSetStatusError as PipelineConversationsSetStatusError, types_gen_d_PipelineConversationsSetStatusErrors as PipelineConversationsSetStatusErrors, types_gen_d_PipelineConversationsSetStatusResponse as PipelineConversationsSetStatusResponse, types_gen_d_PipelineConversationsSetStatusResponses as PipelineConversationsSetStatusResponses, 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_StatusBody as StatusBody, types_gen_d_StatusParams as StatusParams, types_gen_d_StatusResponse200 as StatusResponse200, 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 };
3081
3260
  }
3082
3261
 
3083
3262
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -3241,6 +3420,23 @@ declare class BillingAddons extends HeyApiClient {
3241
3420
  quantity: number;
3242
3421
  }, options?: Options<never, ThrowOnError>): RequestResult<BillingAddonsUpdateResponses, BillingAddonsUpdateErrors, ThrowOnError, "data">;
3243
3422
  }
3423
+ declare class PipelineConversations extends HeyApiClient {
3424
+ list<ThrowOnError extends boolean = true>(parameters: {
3425
+ owner: string;
3426
+ status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
3427
+ limit?: number;
3428
+ starting_after?: string;
3429
+ ending_before?: string;
3430
+ }, options?: Options<never, ThrowOnError>): RequestResult<PipelineConversationsListResponses, PipelineConversationsListErrors, ThrowOnError, "data">;
3431
+ count<ThrowOnError extends boolean = true>(parameters: {
3432
+ owner: string;
3433
+ status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
3434
+ }, options?: Options<never, ThrowOnError>): RequestResult<PipelineConversationsCountResponses, PipelineConversationsCountErrors, ThrowOnError, "data">;
3435
+ setStatus<ThrowOnError extends boolean = true>(pipeline_conversation_id: string, parameters: {
3436
+ owner: string;
3437
+ status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
3438
+ }, options?: Options<never, ThrowOnError>): RequestResult<PipelineConversationsSetStatusResponses, PipelineConversationsSetStatusErrors, ThrowOnError, "data">;
3439
+ }
3244
3440
  declare class Products extends HeyApiClient {
3245
3441
  list<ThrowOnError extends boolean = true>(options?: Options<never, ThrowOnError>): RequestResult<BillingProductsListResponses, BillingProductsListErrors, ThrowOnError, "data">;
3246
3442
  retrieve<ThrowOnError extends boolean = true>(product: string, options?: Options<never, ThrowOnError>): RequestResult<BillingProductsRetrieveResponses, BillingProductsRetrieveErrors, ThrowOnError, "data">;
@@ -3258,7 +3454,7 @@ declare class Billing extends HeyApiClient {
3258
3454
  }
3259
3455
  declare class Integrations extends HeyApiClient {
3260
3456
  retrieve<ThrowOnError extends boolean = true>(integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail', options?: Options<never, ThrowOnError>): RequestResult<IntegrationsRetrieveResponses, IntegrationsRetrieveErrors, ThrowOnError, "data">;
3261
- deleteAccount<ThrowOnError extends boolean = true>(integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail', account: string, options?: Options<never, ThrowOnError>): RequestResult<IntegrationsDeleteAccountResponses, IntegrationsDeleteAccountErrors, ThrowOnError, "data">;
3457
+ deleteAccount<ThrowOnError extends boolean = true>(integration_id: 'gmail' | 'outlook' | 'googlesheets' | 'zohomail', account_id: string, options?: Options<never, ThrowOnError>): RequestResult<IntegrationsDeleteAccountResponses, IntegrationsDeleteAccountErrors, ThrowOnError, "data">;
3262
3458
  }
3263
3459
 
3264
3460
  interface MailmeteorConfig {
@@ -3282,6 +3478,7 @@ declare class Mailmeteor {
3282
3478
  readonly users: Users;
3283
3479
  readonly contacts: Contacts;
3284
3480
  readonly integrations: Integrations;
3481
+ readonly pipelineConversations: PipelineConversations;
3285
3482
  constructor(key: string, config?: MailmeteorConfig);
3286
3483
  /**
3287
3484
  * 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,56 @@ 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
+ setStatus(pipeline_conversation_id, parameters, options) {
1614
+ const params = buildClientParams([pipeline_conversation_id, parameters], [{ in: 'path', key: 'pipeline_conversation_id' }, { args: [{ in: 'body', key: 'owner' }, { in: 'body', key: 'status' }] }]);
1615
+ return (options?.client ?? this.client).post({
1616
+ responseStyle: 'data',
1617
+ url: '/pipeline_conversations/{pipeline_conversation_id}/status',
1618
+ ...options,
1619
+ ...params,
1620
+ headers: {
1621
+ 'Content-Type': 'application/json',
1622
+ ...options?.headers,
1623
+ ...params.headers
1624
+ }
1625
+ });
1626
+ }
1627
+ }
1628
+ class PipelineConversations2 extends HeyApiClient {
1629
+ constructor(args) {
1630
+ super(args);
1631
+ PipelineConversations2.__registry.set(this, args?.key);
1632
+ }
1633
+ get pipelineConversations() {
1634
+ return this._pipelineConversations ?? (this._pipelineConversations = new PipelineConversations({ client: this.client }));
1635
+ }
1636
+ }
1637
+ PipelineConversations2.__registry = new HeyApiRegistry8();
1572
1638
  class Products extends HeyApiClient {
1573
1639
  list(options) {
1574
1640
  return (options?.client ?? this.client).get({
@@ -1624,7 +1690,7 @@ class Billing2 extends HeyApiClient {
1624
1690
  return this._billing ?? (this._billing = new Billing({ client: this.client }));
1625
1691
  }
1626
1692
  }
1627
- Billing2.__registry = new HeyApiRegistry8();
1693
+ Billing2.__registry = new HeyApiRegistry9();
1628
1694
  class Integrations extends HeyApiClient {
1629
1695
  retrieve(integration_id, options) {
1630
1696
  const params = buildClientParams([integration_id], [{ in: 'path', key: 'integration_id' }]);
@@ -1635,11 +1701,11 @@ class Integrations extends HeyApiClient {
1635
1701
  ...params
1636
1702
  });
1637
1703
  }
1638
- deleteAccount(integration_id, account, options) {
1639
- const params = buildClientParams([integration_id, account], [{ in: 'path', key: 'integration_id' }, { in: 'path', key: 'account' }]);
1704
+ deleteAccount(integration_id, account_id, options) {
1705
+ const params = buildClientParams([integration_id, account_id], [{ in: 'path', key: 'integration_id' }, { in: 'path', key: 'account_id' }]);
1640
1706
  return (options?.client ?? this.client).delete({
1641
1707
  responseStyle: 'data',
1642
- url: '/integrations/{integration_id}/accounts/{account}',
1708
+ url: '/integrations/{integration_id}/accounts/{account_id}',
1643
1709
  ...options,
1644
1710
  ...params
1645
1711
  });
@@ -1654,7 +1720,7 @@ class Integrations2 extends HeyApiClient {
1654
1720
  return this._integrations ?? (this._integrations = new Integrations({ client: this.client }));
1655
1721
  }
1656
1722
  }
1657
- Integrations2.__registry = new HeyApiRegistry9();
1723
+ Integrations2.__registry = new HeyApiRegistry10();
1658
1724
  class Default extends HeyApiClient {
1659
1725
  constructor(args) {
1660
1726
  super(args);
@@ -1668,7 +1734,7 @@ class Default extends HeyApiClient {
1668
1734
  });
1669
1735
  }
1670
1736
  }
1671
- Default.__registry = new HeyApiRegistry10();
1737
+ Default.__registry = new HeyApiRegistry11();
1672
1738
 
1673
1739
  var types_gen = /*#__PURE__*/Object.freeze({
1674
1740
  __proto__: null
@@ -1710,6 +1776,7 @@ class Mailmeteor {
1710
1776
  this.users = new Users({ client: this.client });
1711
1777
  this.contacts = new Contacts({ client: this.client });
1712
1778
  this.integrations = new Integrations({ client: this.client });
1779
+ this.pipelineConversations = new PipelineConversations({ client: this.client });
1713
1780
  }
1714
1781
  setApiKey(key) {
1715
1782
  const currentConfig = this.client.getConfig();