mailmeteor 0.0.33 → 0.0.34

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
@@ -895,6 +895,7 @@ type AddonResponse200 = Array<{
895
895
  type PipelineConversationsQuery = {
896
896
  owner?: string;
897
897
  status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
898
+ campaign?: string;
898
899
  limit?: number;
899
900
  starting_after?: string;
900
901
  ending_before?: string;
@@ -910,6 +911,8 @@ type PipelineConversationsResponse200 = {
910
911
  recipient_emails: Array<string>;
911
912
  status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
912
913
  status_updated_at: number;
914
+ campaign: string | null;
915
+ original_email: string | null;
913
916
  opens_count: number;
914
917
  clicks_count: number;
915
918
  unsubscribed: boolean;
@@ -918,6 +921,7 @@ type PipelineConversationsResponse200 = {
918
921
  type CountQuery = {
919
922
  owner?: string;
920
923
  status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
924
+ campaign?: string;
921
925
  };
922
926
  type CountResponse200 = {
923
927
  count: number;
@@ -938,6 +942,8 @@ type PipelineConversationIdResponse200 = {
938
942
  recipient_emails: Array<string>;
939
943
  status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
940
944
  status_updated_at: number;
945
+ campaign: string | null;
946
+ original_email: string | null;
941
947
  opens_count: number;
942
948
  clicks_count: number;
943
949
  unsubscribed: boolean;
@@ -1115,6 +1121,7 @@ type IntegrationIdResponse200 = {
1115
1121
  email?: string;
1116
1122
  permissions: Array<string>;
1117
1123
  created_at?: number;
1124
+ status: 'active' | 'action_required';
1118
1125
  }>;
1119
1126
  };
1120
1127
  type AccountIdParams = {
@@ -2548,6 +2555,7 @@ type PipelineConversationsListData = {
2548
2555
  query?: {
2549
2556
  owner?: string;
2550
2557
  status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2558
+ campaign?: string;
2551
2559
  limit?: number;
2552
2560
  starting_after?: string;
2553
2561
  ending_before?: string;
@@ -2576,6 +2584,8 @@ type PipelineConversationsListResponses = {
2576
2584
  recipient_emails: Array<string>;
2577
2585
  status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2578
2586
  status_updated_at: number;
2587
+ campaign: string | null;
2588
+ original_email: string | null;
2579
2589
  opens_count: number;
2580
2590
  clicks_count: number;
2581
2591
  unsubscribed: boolean;
@@ -2589,6 +2599,7 @@ type PipelineConversationsCountData = {
2589
2599
  query?: {
2590
2600
  owner?: string;
2591
2601
  status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2602
+ campaign?: string;
2592
2603
  };
2593
2604
  url: '/pipeline_conversations/count';
2594
2605
  };
@@ -2639,6 +2650,8 @@ type PipelineConversationsUpdateResponses = {
2639
2650
  recipient_emails: Array<string>;
2640
2651
  status: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
2641
2652
  status_updated_at: number;
2653
+ campaign: string | null;
2654
+ original_email: string | null;
2642
2655
  opens_count: number;
2643
2656
  clicks_count: number;
2644
2657
  unsubscribed: boolean;
@@ -2906,6 +2919,7 @@ type IntegrationsRetrieveResponses = {
2906
2919
  email?: string;
2907
2920
  permissions: Array<string>;
2908
2921
  created_at?: number;
2922
+ status: 'active' | 'action_required';
2909
2923
  }>;
2910
2924
  };
2911
2925
  };
@@ -3426,6 +3440,7 @@ declare class PipelineConversations extends HeyApiClient {
3426
3440
  list<ThrowOnError extends boolean = true>(parameters?: {
3427
3441
  owner?: string;
3428
3442
  status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
3443
+ campaign?: string;
3429
3444
  limit?: number;
3430
3445
  starting_after?: string;
3431
3446
  ending_before?: string;
@@ -3433,6 +3448,7 @@ declare class PipelineConversations extends HeyApiClient {
3433
3448
  count<ThrowOnError extends boolean = true>(parameters?: {
3434
3449
  owner?: string;
3435
3450
  status?: 'to_reply' | 'to_follow_up' | 'waiting' | 'archived';
3451
+ campaign?: string;
3436
3452
  }, options?: Options<never, ThrowOnError>): RequestResult<PipelineConversationsCountResponses, PipelineConversationsCountErrors, ThrowOnError, "data">;
3437
3453
  update<ThrowOnError extends boolean = true>(pipeline_conversation_id: string, parameters?: {
3438
3454
  owner?: string;
package/dist/index.mjs CHANGED
@@ -1590,6 +1590,7 @@ class PipelineConversations extends HeyApiClient {
1590
1590
  const params = buildClientParams([parameters], [{ args: [
1591
1591
  { in: 'query', key: 'owner' },
1592
1592
  { in: 'query', key: 'status' },
1593
+ { in: 'query', key: 'campaign' },
1593
1594
  { in: 'query', key: 'limit' },
1594
1595
  { in: 'query', key: 'starting_after' },
1595
1596
  { in: 'query', key: 'ending_before' }
@@ -1602,7 +1603,11 @@ class PipelineConversations extends HeyApiClient {
1602
1603
  });
1603
1604
  }
1604
1605
  count(parameters, options) {
1605
- const params = buildClientParams([parameters], [{ args: [{ in: 'query', key: 'owner' }, { in: 'query', key: 'status' }] }]);
1606
+ const params = buildClientParams([parameters], [{ args: [
1607
+ { in: 'query', key: 'owner' },
1608
+ { in: 'query', key: 'status' },
1609
+ { in: 'query', key: 'campaign' }
1610
+ ] }]);
1606
1611
  return (options?.client ?? this.client).get({
1607
1612
  responseStyle: 'data',
1608
1613
  url: '/pipeline_conversations/count',