mailmeteor 0.0.31 → 0.0.33

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
@@ -893,8 +893,8 @@ type AddonResponse200 = Array<{
893
893
  usage: number;
894
894
  }>;
895
895
  type PipelineConversationsQuery = {
896
- owner: string;
897
- status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
896
+ owner?: string;
897
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
898
898
  limit?: number;
899
899
  starting_after?: string;
900
900
  ending_before?: string;
@@ -908,7 +908,7 @@ type PipelineConversationsResponse200 = {
908
908
  thread_id: string;
909
909
  subject: string;
910
910
  recipient_emails: Array<string>;
911
- status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
911
+ status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
912
912
  status_updated_at: number;
913
913
  opens_count: number;
914
914
  clicks_count: number;
@@ -916,27 +916,27 @@ type PipelineConversationsResponse200 = {
916
916
  }>;
917
917
  };
918
918
  type CountQuery = {
919
- owner: string;
920
- status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
919
+ owner?: string;
920
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
921
921
  };
922
922
  type CountResponse200 = {
923
923
  count: number;
924
924
  };
925
- type StatusBody = {
926
- owner: string;
927
- status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
925
+ type PipelineConversationIdBody = {
926
+ owner?: string;
927
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
928
928
  };
929
- type StatusParams = {
929
+ type PipelineConversationIdParams = {
930
930
  pipeline_conversation_id: string;
931
931
  };
932
- type StatusResponse200 = {
932
+ type PipelineConversationIdResponse200 = {
933
933
  object: 'pipeline_conversation';
934
934
  id: string;
935
935
  provider: 'google' | 'microsoft' | 'zoho';
936
936
  thread_id: string;
937
937
  subject: string;
938
938
  recipient_emails: Array<string>;
939
- status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
939
+ status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
940
940
  status_updated_at: number;
941
941
  opens_count: number;
942
942
  clicks_count: number;
@@ -1114,6 +1114,7 @@ type IntegrationIdResponse200 = {
1114
1114
  object: 'integration_account';
1115
1115
  email?: string;
1116
1116
  permissions: Array<string>;
1117
+ created_at?: number;
1117
1118
  }>;
1118
1119
  };
1119
1120
  type AccountIdParams = {
@@ -2544,9 +2545,9 @@ type BillingAddonsUpdateResponse = BillingAddonsUpdateResponses[keyof BillingAdd
2544
2545
  type PipelineConversationsListData = {
2545
2546
  body?: never;
2546
2547
  path?: never;
2547
- query: {
2548
- owner: string;
2549
- status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2548
+ query?: {
2549
+ owner?: string;
2550
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2550
2551
  limit?: number;
2551
2552
  starting_after?: string;
2552
2553
  ending_before?: string;
@@ -2573,7 +2574,7 @@ type PipelineConversationsListResponses = {
2573
2574
  thread_id: string;
2574
2575
  subject: string;
2575
2576
  recipient_emails: Array<string>;
2576
- status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2577
+ status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2577
2578
  status_updated_at: number;
2578
2579
  opens_count: number;
2579
2580
  clicks_count: number;
@@ -2585,9 +2586,9 @@ type PipelineConversationsListResponse = PipelineConversationsListResponses[keyo
2585
2586
  type PipelineConversationsCountData = {
2586
2587
  body?: never;
2587
2588
  path?: never;
2588
- query: {
2589
- owner: string;
2590
- status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2589
+ query?: {
2590
+ owner?: string;
2591
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2591
2592
  };
2592
2593
  url: '/pipeline_conversations/count';
2593
2594
  };
@@ -2607,25 +2608,25 @@ type PipelineConversationsCountResponses = {
2607
2608
  };
2608
2609
  };
2609
2610
  type PipelineConversationsCountResponse = PipelineConversationsCountResponses[keyof PipelineConversationsCountResponses];
2610
- type PipelineConversationsSetStatusData = {
2611
+ type PipelineConversationsUpdateData = {
2611
2612
  body: {
2612
- owner: string;
2613
- status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2613
+ owner?: string;
2614
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2614
2615
  };
2615
2616
  path: {
2616
2617
  pipeline_conversation_id: string;
2617
2618
  };
2618
2619
  query?: never;
2619
- url: '/pipeline_conversations/{pipeline_conversation_id}/status';
2620
+ url: '/pipeline_conversations/{pipeline_conversation_id}';
2620
2621
  };
2621
- type PipelineConversationsSetStatusErrors = {
2622
+ type PipelineConversationsUpdateErrors = {
2622
2623
  /**
2623
2624
  * Error response
2624
2625
  */
2625
2626
  default: ErrorResponse;
2626
2627
  };
2627
- type PipelineConversationsSetStatusError = PipelineConversationsSetStatusErrors[keyof PipelineConversationsSetStatusErrors];
2628
- type PipelineConversationsSetStatusResponses = {
2628
+ type PipelineConversationsUpdateError = PipelineConversationsUpdateErrors[keyof PipelineConversationsUpdateErrors];
2629
+ type PipelineConversationsUpdateResponses = {
2629
2630
  /**
2630
2631
  * Response
2631
2632
  */
@@ -2636,14 +2637,14 @@ type PipelineConversationsSetStatusResponses = {
2636
2637
  thread_id: string;
2637
2638
  subject: string;
2638
2639
  recipient_emails: Array<string>;
2639
- status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2640
+ status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2640
2641
  status_updated_at: number;
2641
2642
  opens_count: number;
2642
2643
  clicks_count: number;
2643
2644
  unsubscribed: boolean;
2644
2645
  };
2645
2646
  };
2646
- type PipelineConversationsSetStatusResponse = PipelineConversationsSetStatusResponses[keyof PipelineConversationsSetStatusResponses];
2647
+ type PipelineConversationsUpdateResponse = PipelineConversationsUpdateResponses[keyof PipelineConversationsUpdateResponses];
2647
2648
  type BillingGetPricesData = {
2648
2649
  body?: never;
2649
2650
  path?: never;
@@ -2904,6 +2905,7 @@ type IntegrationsRetrieveResponses = {
2904
2905
  object: 'integration_account';
2905
2906
  email?: string;
2906
2907
  permissions: Array<string>;
2908
+ created_at?: number;
2907
2909
  }>;
2908
2910
  };
2909
2911
  };
@@ -3188,6 +3190,9 @@ type types_gen_d_OrganizationsUpdateError = OrganizationsUpdateError;
3188
3190
  type types_gen_d_OrganizationsUpdateErrors = OrganizationsUpdateErrors;
3189
3191
  type types_gen_d_OrganizationsUpdateResponse = OrganizationsUpdateResponse;
3190
3192
  type types_gen_d_OrganizationsUpdateResponses = OrganizationsUpdateResponses;
3193
+ type types_gen_d_PipelineConversationIdBody = PipelineConversationIdBody;
3194
+ type types_gen_d_PipelineConversationIdParams = PipelineConversationIdParams;
3195
+ type types_gen_d_PipelineConversationIdResponse200 = PipelineConversationIdResponse200;
3191
3196
  type types_gen_d_PipelineConversationsCountData = PipelineConversationsCountData;
3192
3197
  type types_gen_d_PipelineConversationsCountError = PipelineConversationsCountError;
3193
3198
  type types_gen_d_PipelineConversationsCountErrors = PipelineConversationsCountErrors;
@@ -3200,11 +3205,11 @@ type types_gen_d_PipelineConversationsListResponse = PipelineConversationsListRe
3200
3205
  type types_gen_d_PipelineConversationsListResponses = PipelineConversationsListResponses;
3201
3206
  type types_gen_d_PipelineConversationsQuery = PipelineConversationsQuery;
3202
3207
  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;
3208
+ type types_gen_d_PipelineConversationsUpdateData = PipelineConversationsUpdateData;
3209
+ type types_gen_d_PipelineConversationsUpdateError = PipelineConversationsUpdateError;
3210
+ type types_gen_d_PipelineConversationsUpdateErrors = PipelineConversationsUpdateErrors;
3211
+ type types_gen_d_PipelineConversationsUpdateResponse = PipelineConversationsUpdateResponse;
3212
+ type types_gen_d_PipelineConversationsUpdateResponses = PipelineConversationsUpdateResponses;
3208
3213
  type types_gen_d_PreviewBody = PreviewBody;
3209
3214
  type types_gen_d_PreviewParams = PreviewParams;
3210
3215
  type types_gen_d_PreviewResponse200 = PreviewResponse200;
@@ -3215,9 +3220,6 @@ type types_gen_d_ProductResponse200 = ProductResponse200;
3215
3220
  type types_gen_d_ProductsResponse200 = ProductsResponse200;
3216
3221
  type types_gen_d_ResubscribeParams = ResubscribeParams;
3217
3222
  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;
3221
3223
  type types_gen_d_SubscriptionBody = SubscriptionBody;
3222
3224
  type types_gen_d_SubscriptionResponse200 = SubscriptionResponse200;
3223
3225
  type types_gen_d_UnblockParams = UnblockParams;
@@ -3256,7 +3258,7 @@ type types_gen_d_UsersWatchMailboxResponses = UsersWatchMailboxResponses;
3256
3258
  type types_gen_d_WatchMailboxBody = WatchMailboxBody;
3257
3259
  type types_gen_d_WatchMailboxParams = WatchMailboxParams;
3258
3260
  declare namespace types_gen_d {
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 };
3261
+ 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_PipelineConversationIdBody as PipelineConversationIdBody, types_gen_d_PipelineConversationIdParams as PipelineConversationIdParams, types_gen_d_PipelineConversationIdResponse200 as PipelineConversationIdResponse200, 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_PipelineConversationsUpdateData as PipelineConversationsUpdateData, types_gen_d_PipelineConversationsUpdateError as PipelineConversationsUpdateError, types_gen_d_PipelineConversationsUpdateErrors as PipelineConversationsUpdateErrors, types_gen_d_PipelineConversationsUpdateResponse as PipelineConversationsUpdateResponse, types_gen_d_PipelineConversationsUpdateResponses as PipelineConversationsUpdateResponses, 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 };
3260
3262
  }
3261
3263
 
3262
3264
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -3421,21 +3423,21 @@ declare class BillingAddons extends HeyApiClient {
3421
3423
  }, options?: Options<never, ThrowOnError>): RequestResult<BillingAddonsUpdateResponses, BillingAddonsUpdateErrors, ThrowOnError, "data">;
3422
3424
  }
3423
3425
  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';
3426
+ list<ThrowOnError extends boolean = true>(parameters?: {
3427
+ owner?: string;
3428
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
3427
3429
  limit?: number;
3428
3430
  starting_after?: string;
3429
3431
  ending_before?: string;
3430
3432
  }, 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';
3433
+ count<ThrowOnError extends boolean = true>(parameters?: {
3434
+ owner?: string;
3435
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
3434
3436
  }, 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">;
3437
+ update<ThrowOnError extends boolean = true>(pipeline_conversation_id: string, parameters?: {
3438
+ owner?: string;
3439
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
3440
+ }, options?: Options<never, ThrowOnError>): RequestResult<PipelineConversationsUpdateResponses, PipelineConversationsUpdateErrors, ThrowOnError, "data">;
3439
3441
  }
3440
3442
  declare class Products extends HeyApiClient {
3441
3443
  list<ThrowOnError extends boolean = true>(options?: Options<never, ThrowOnError>): RequestResult<BillingProductsListResponses, BillingProductsListErrors, ThrowOnError, "data">;
package/dist/index.mjs CHANGED
@@ -1610,11 +1610,11 @@ class PipelineConversations extends HeyApiClient {
1610
1610
  ...params
1611
1611
  });
1612
1612
  }
1613
- setStatus(pipeline_conversation_id, parameters, options) {
1613
+ update(pipeline_conversation_id, parameters, options) {
1614
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({
1615
+ return (options?.client ?? this.client).patch({
1616
1616
  responseStyle: 'data',
1617
- url: '/pipeline_conversations/{pipeline_conversation_id}/status',
1617
+ url: '/pipeline_conversations/{pipeline_conversation_id}',
1618
1618
  ...options,
1619
1619
  ...params,
1620
1620
  headers: {