mailmeteor 0.0.31 → 0.0.32

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
@@ -894,7 +894,7 @@ type AddonResponse200 = Array<{
894
894
  }>;
895
895
  type PipelineConversationsQuery = {
896
896
  owner: string;
897
- status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
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;
@@ -917,14 +917,14 @@ type PipelineConversationsResponse200 = {
917
917
  };
918
918
  type CountQuery = {
919
919
  owner: string;
920
- status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
920
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
921
921
  };
922
922
  type CountResponse200 = {
923
923
  count: number;
924
924
  };
925
925
  type StatusBody = {
926
926
  owner: string;
927
- status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
927
+ status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
928
928
  };
929
929
  type StatusParams = {
930
930
  pipeline_conversation_id: string;
@@ -936,7 +936,7 @@ type StatusResponse200 = {
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;
@@ -2546,7 +2546,7 @@ type PipelineConversationsListData = {
2546
2546
  path?: never;
2547
2547
  query: {
2548
2548
  owner: string;
2549
- status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2549
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2550
2550
  limit?: number;
2551
2551
  starting_after?: string;
2552
2552
  ending_before?: string;
@@ -2573,7 +2573,7 @@ type PipelineConversationsListResponses = {
2573
2573
  thread_id: string;
2574
2574
  subject: string;
2575
2575
  recipient_emails: Array<string>;
2576
- status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2576
+ status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2577
2577
  status_updated_at: number;
2578
2578
  opens_count: number;
2579
2579
  clicks_count: number;
@@ -2587,7 +2587,7 @@ type PipelineConversationsCountData = {
2587
2587
  path?: never;
2588
2588
  query: {
2589
2589
  owner: string;
2590
- status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2590
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2591
2591
  };
2592
2592
  url: '/pipeline_conversations/count';
2593
2593
  };
@@ -2610,7 +2610,7 @@ type PipelineConversationsCountResponse = PipelineConversationsCountResponses[ke
2610
2610
  type PipelineConversationsSetStatusData = {
2611
2611
  body: {
2612
2612
  owner: string;
2613
- status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2613
+ status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2614
2614
  };
2615
2615
  path: {
2616
2616
  pipeline_conversation_id: string;
@@ -2636,7 +2636,7 @@ type PipelineConversationsSetStatusResponses = {
2636
2636
  thread_id: string;
2637
2637
  subject: string;
2638
2638
  recipient_emails: Array<string>;
2639
- status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
2639
+ status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2640
2640
  status_updated_at: number;
2641
2641
  opens_count: number;
2642
2642
  clicks_count: number;
@@ -3423,18 +3423,18 @@ declare class BillingAddons extends HeyApiClient {
3423
3423
  declare class PipelineConversations extends HeyApiClient {
3424
3424
  list<ThrowOnError extends boolean = true>(parameters: {
3425
3425
  owner: string;
3426
- status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
3426
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
3427
3427
  limit?: number;
3428
3428
  starting_after?: string;
3429
3429
  ending_before?: string;
3430
3430
  }, options?: Options<never, ThrowOnError>): RequestResult<PipelineConversationsListResponses, PipelineConversationsListErrors, ThrowOnError, "data">;
3431
3431
  count<ThrowOnError extends boolean = true>(parameters: {
3432
3432
  owner: string;
3433
- status?: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
3433
+ status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
3434
3434
  }, options?: Options<never, ThrowOnError>): RequestResult<PipelineConversationsCountResponses, PipelineConversationsCountErrors, ThrowOnError, "data">;
3435
3435
  setStatus<ThrowOnError extends boolean = true>(pipeline_conversation_id: string, parameters: {
3436
3436
  owner: string;
3437
- status: 'to_reply' | 'to_follow_up' | 'awaiting_reply' | 'archived';
3437
+ status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
3438
3438
  }, options?: Options<never, ThrowOnError>): RequestResult<PipelineConversationsSetStatusResponses, PipelineConversationsSetStatusErrors, ThrowOnError, "data">;
3439
3439
  }
3440
3440
  declare class Products extends HeyApiClient {