cf-service-sdk 0.1.41 → 0.1.42

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.
@@ -825,6 +825,7 @@ export declare enum CampaignEmailTemplateCampaignTypeChoices {
825
825
  export type CampaignInput = {
826
826
  campaignDetails?: InputMaybe<Scalars['GenericScalar']['input']>;
827
827
  campaignType?: InputMaybe<Scalars['String']['input']>;
828
+ dailyLimit?: InputMaybe<Scalars['Int']['input']>;
828
829
  description?: InputMaybe<Scalars['String']['input']>;
829
830
  emailTemplateId?: InputMaybe<Scalars['ID']['input']>;
830
831
  name: Scalars['String']['input'];
@@ -860,12 +861,18 @@ export type CampaignObject = {
860
861
  createdAt?: Maybe<Scalars['DateTime']['output']>;
861
862
  /** User who created this campaign */
862
863
  createdBy?: Maybe<UserType>;
864
+ /** Number of emails sent today for this campaign */
865
+ dailyEmailCount?: Maybe<Scalars['Int']['output']>;
866
+ /** Max emails per day for this campaign */
867
+ dailyLimit?: Maybe<Scalars['Int']['output']>;
863
868
  /** Description of the campaign */
864
869
  description?: Maybe<Scalars['String']['output']>;
865
870
  /** Preview of the email content */
866
871
  emailPreview?: Maybe<Scalars['GenericScalar']['output']>;
867
872
  /** Email template associated with the campaign */
868
873
  emailTemplate?: Maybe<EmailTemplateObject>;
874
+ /** When the daily email counter was last reset */
875
+ lastDailyReset?: Maybe<Scalars['DateTime']['output']>;
869
876
  /** Name of the campaign */
870
877
  name?: Maybe<Scalars['String']['output']>;
871
878
  /** Open rate of the campaign emails */
@@ -1037,6 +1044,7 @@ export type CombinedCampaignFilterInput = {
1037
1044
  };
1038
1045
  /** GraphQL input type for creating a campaign */
1039
1046
  export type CombinedCampaignInput = {
1047
+ dailyLimit?: InputMaybe<Scalars['Int']['input']>;
1040
1048
  description?: InputMaybe<Scalars['String']['input']>;
1041
1049
  name: Scalars['String']['input'];
1042
1050
  segments?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
@@ -1110,9 +1118,12 @@ export type CombinedCampaignObject = {
1110
1118
  createdAt?: Maybe<Scalars['DateTime']['output']>;
1111
1119
  /** User who created this combined campaign */
1112
1120
  createdBy?: Maybe<UserType>;
1121
+ dailyEmailCount?: Maybe<Scalars['Int']['output']>;
1122
+ dailyLimit?: Maybe<Scalars['Int']['output']>;
1113
1123
  description?: Maybe<Scalars['String']['output']>;
1114
1124
  id?: Maybe<Scalars['ID']['output']>;
1115
1125
  lastActivity?: Maybe<Scalars['DateTime']['output']>;
1126
+ lastDailyReset?: Maybe<Scalars['DateTime']['output']>;
1116
1127
  name?: Maybe<Scalars['String']['output']>;
1117
1128
  pausedAt?: Maybe<Scalars['DateTime']['output']>;
1118
1129
  scheduledFor?: Maybe<Scalars['DateTime']['output']>;
@@ -5699,6 +5710,7 @@ export type UpdateCampaign = {
5699
5710
  export type UpdateCampaignInput = {
5700
5711
  campaignDetails?: InputMaybe<Scalars['GenericScalar']['input']>;
5701
5712
  campaignType?: InputMaybe<Scalars['String']['input']>;
5713
+ dailyLimit?: InputMaybe<Scalars['Int']['input']>;
5702
5714
  description?: InputMaybe<Scalars['String']['input']>;
5703
5715
  emailTemplateId?: InputMaybe<Scalars['ID']['input']>;
5704
5716
  name?: InputMaybe<Scalars['String']['input']>;
@@ -5715,6 +5727,7 @@ export type UpdateCombinedCampaign = {
5715
5727
  };
5716
5728
  /** GraphQL input type for updating a campaign */
5717
5729
  export type UpdateCombinedCampaignInput = {
5730
+ dailyLimit?: InputMaybe<Scalars['Int']['input']>;
5718
5731
  description?: InputMaybe<Scalars['String']['input']>;
5719
5732
  name?: InputMaybe<Scalars['String']['input']>;
5720
5733
  segments?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
@@ -6195,6 +6208,9 @@ export type AddContactsToCampaignMutation = {
6195
6208
  pausedUntil?: any | null;
6196
6209
  subjectLine?: string | null;
6197
6210
  subjectLines?: Array<string | null> | null;
6211
+ dailyLimit?: number | null;
6212
+ dailyEmailCount?: number | null;
6213
+ lastDailyReset?: any | null;
6198
6214
  segments?: Array<{
6199
6215
  __typename?: 'SegmentObject';
6200
6216
  id?: string | null;
@@ -6264,6 +6280,9 @@ export type AddContactsToCombinedCampaignMutation = {
6264
6280
  stepsPreview?: any | null;
6265
6281
  subjectLine?: string | null;
6266
6282
  subjectLines?: Array<string | null> | null;
6283
+ dailyLimit?: number | null;
6284
+ dailyEmailCount?: number | null;
6285
+ lastDailyReset?: any | null;
6267
6286
  createdAt?: any | null;
6268
6287
  updatedAt?: any | null;
6269
6288
  steps?: Array<{
@@ -6515,6 +6534,9 @@ export type AddSegmentToCampaignMutation = {
6515
6534
  pausedUntil?: any | null;
6516
6535
  subjectLine?: string | null;
6517
6536
  subjectLines?: Array<string | null> | null;
6537
+ dailyLimit?: number | null;
6538
+ dailyEmailCount?: number | null;
6539
+ lastDailyReset?: any | null;
6518
6540
  segments?: Array<{
6519
6541
  __typename?: 'SegmentObject';
6520
6542
  id?: string | null;
@@ -6632,6 +6654,9 @@ export type CancelCampaignMutation = {
6632
6654
  pausedUntil?: any | null;
6633
6655
  subjectLine?: string | null;
6634
6656
  subjectLines?: Array<string | null> | null;
6657
+ dailyLimit?: number | null;
6658
+ dailyEmailCount?: number | null;
6659
+ lastDailyReset?: any | null;
6635
6660
  segments?: Array<{
6636
6661
  __typename?: 'SegmentObject';
6637
6662
  id?: string | null;
@@ -6699,6 +6724,9 @@ export type CancelCombinedCampaignMutation = {
6699
6724
  stepsPreview?: any | null;
6700
6725
  subjectLine?: string | null;
6701
6726
  subjectLines?: Array<string | null> | null;
6727
+ dailyLimit?: number | null;
6728
+ dailyEmailCount?: number | null;
6729
+ lastDailyReset?: any | null;
6702
6730
  createdAt?: any | null;
6703
6731
  updatedAt?: any | null;
6704
6732
  steps?: Array<{
@@ -6848,6 +6876,9 @@ export type CompleteCampaignMutation = {
6848
6876
  pausedUntil?: any | null;
6849
6877
  subjectLine?: string | null;
6850
6878
  subjectLines?: Array<string | null> | null;
6879
+ dailyLimit?: number | null;
6880
+ dailyEmailCount?: number | null;
6881
+ lastDailyReset?: any | null;
6851
6882
  segments?: Array<{
6852
6883
  __typename?: 'SegmentObject';
6853
6884
  id?: string | null;
@@ -7429,6 +7460,9 @@ export type CreateCampaignMutation = {
7429
7460
  pausedUntil?: any | null;
7430
7461
  subjectLine?: string | null;
7431
7462
  subjectLines?: Array<string | null> | null;
7463
+ dailyLimit?: number | null;
7464
+ dailyEmailCount?: number | null;
7465
+ lastDailyReset?: any | null;
7432
7466
  segments?: Array<{
7433
7467
  __typename?: 'SegmentObject';
7434
7468
  id?: string | null;
@@ -7497,6 +7531,9 @@ export type CreateCombinedCampaignMutation = {
7497
7531
  stepsPreview?: any | null;
7498
7532
  subjectLine?: string | null;
7499
7533
  subjectLines?: Array<string | null> | null;
7534
+ dailyLimit?: number | null;
7535
+ dailyEmailCount?: number | null;
7536
+ lastDailyReset?: any | null;
7500
7537
  createdAt?: any | null;
7501
7538
  updatedAt?: any | null;
7502
7539
  steps?: Array<{
@@ -11071,6 +11108,9 @@ export type PauseCampaignMutation = {
11071
11108
  pausedUntil?: any | null;
11072
11109
  subjectLine?: string | null;
11073
11110
  subjectLines?: Array<string | null> | null;
11111
+ dailyLimit?: number | null;
11112
+ dailyEmailCount?: number | null;
11113
+ lastDailyReset?: any | null;
11074
11114
  segments?: Array<{
11075
11115
  __typename?: 'SegmentObject';
11076
11116
  id?: string | null;
@@ -11138,6 +11178,9 @@ export type PauseCombinedCampaignMutation = {
11138
11178
  stepsPreview?: any | null;
11139
11179
  subjectLine?: string | null;
11140
11180
  subjectLines?: Array<string | null> | null;
11181
+ dailyLimit?: number | null;
11182
+ dailyEmailCount?: number | null;
11183
+ lastDailyReset?: any | null;
11141
11184
  createdAt?: any | null;
11142
11185
  updatedAt?: any | null;
11143
11186
  steps?: Array<{
@@ -11330,6 +11373,9 @@ export type RemoveContactsFromCampaignMutation = {
11330
11373
  pausedUntil?: any | null;
11331
11374
  subjectLine?: string | null;
11332
11375
  subjectLines?: Array<string | null> | null;
11376
+ dailyLimit?: number | null;
11377
+ dailyEmailCount?: number | null;
11378
+ lastDailyReset?: any | null;
11333
11379
  segments?: Array<{
11334
11380
  __typename?: 'SegmentObject';
11335
11381
  id?: string | null;
@@ -11400,6 +11446,9 @@ export type RemoveContactsFromCombinedCampaignMutation = {
11400
11446
  stepsPreview?: any | null;
11401
11447
  subjectLine?: string | null;
11402
11448
  subjectLines?: Array<string | null> | null;
11449
+ dailyLimit?: number | null;
11450
+ dailyEmailCount?: number | null;
11451
+ lastDailyReset?: any | null;
11403
11452
  createdAt?: any | null;
11404
11453
  updatedAt?: any | null;
11405
11454
  steps?: Array<{
@@ -11633,6 +11682,9 @@ export type RemoveSegmentFromCampaignMutation = {
11633
11682
  pausedUntil?: any | null;
11634
11683
  subjectLine?: string | null;
11635
11684
  subjectLines?: Array<string | null> | null;
11685
+ dailyLimit?: number | null;
11686
+ dailyEmailCount?: number | null;
11687
+ lastDailyReset?: any | null;
11636
11688
  segments?: Array<{
11637
11689
  __typename?: 'SegmentObject';
11638
11690
  id?: string | null;
@@ -11722,6 +11774,9 @@ export type ResumeCombinedCampaignMutation = {
11722
11774
  stepsPreview?: any | null;
11723
11775
  subjectLine?: string | null;
11724
11776
  subjectLines?: Array<string | null> | null;
11777
+ dailyLimit?: number | null;
11778
+ dailyEmailCount?: number | null;
11779
+ lastDailyReset?: any | null;
11725
11780
  createdAt?: any | null;
11726
11781
  updatedAt?: any | null;
11727
11782
  steps?: Array<{
@@ -11903,6 +11958,9 @@ export type ScheduleCampaignMutation = {
11903
11958
  pausedUntil?: any | null;
11904
11959
  subjectLine?: string | null;
11905
11960
  subjectLines?: Array<string | null> | null;
11961
+ dailyLimit?: number | null;
11962
+ dailyEmailCount?: number | null;
11963
+ lastDailyReset?: any | null;
11906
11964
  segments?: Array<{
11907
11965
  __typename?: 'SegmentObject';
11908
11966
  id?: string | null;
@@ -11971,6 +12029,9 @@ export type ScheduleCombinedCampaignMutation = {
11971
12029
  stepsPreview?: any | null;
11972
12030
  subjectLine?: string | null;
11973
12031
  subjectLines?: Array<string | null> | null;
12032
+ dailyLimit?: number | null;
12033
+ dailyEmailCount?: number | null;
12034
+ lastDailyReset?: any | null;
11974
12035
  createdAt?: any | null;
11975
12036
  updatedAt?: any | null;
11976
12037
  steps?: Array<{
@@ -12265,6 +12326,9 @@ export type SendEmailToContactMutation = {
12265
12326
  pausedUntil?: any | null;
12266
12327
  subjectLine?: string | null;
12267
12328
  subjectLines?: Array<string | null> | null;
12329
+ dailyLimit?: number | null;
12330
+ dailyEmailCount?: number | null;
12331
+ lastDailyReset?: any | null;
12268
12332
  segments?: Array<{
12269
12333
  __typename?: 'SegmentObject';
12270
12334
  id?: string | null;
@@ -12518,6 +12582,9 @@ export type SendManualEmailMutation = {
12518
12582
  stepsPreview?: any | null;
12519
12583
  subjectLine?: string | null;
12520
12584
  subjectLines?: Array<string | null> | null;
12585
+ dailyLimit?: number | null;
12586
+ dailyEmailCount?: number | null;
12587
+ lastDailyReset?: any | null;
12521
12588
  createdAt?: any | null;
12522
12589
  updatedAt?: any | null;
12523
12590
  steps?: Array<{
@@ -12813,6 +12880,9 @@ export type SendManualEmailMutation = {
12813
12880
  pausedUntil?: any | null;
12814
12881
  subjectLine?: string | null;
12815
12882
  subjectLines?: Array<string | null> | null;
12883
+ dailyLimit?: number | null;
12884
+ dailyEmailCount?: number | null;
12885
+ lastDailyReset?: any | null;
12816
12886
  segments?: Array<{
12817
12887
  __typename?: 'SegmentObject';
12818
12888
  id?: string | null;
@@ -13089,6 +13159,9 @@ export type StartCampaignMutation = {
13089
13159
  pausedUntil?: any | null;
13090
13160
  subjectLine?: string | null;
13091
13161
  subjectLines?: Array<string | null> | null;
13162
+ dailyLimit?: number | null;
13163
+ dailyEmailCount?: number | null;
13164
+ lastDailyReset?: any | null;
13092
13165
  segments?: Array<{
13093
13166
  __typename?: 'SegmentObject';
13094
13167
  id?: string | null;
@@ -13156,6 +13229,9 @@ export type StartCombinedCampaignMutation = {
13156
13229
  stepsPreview?: any | null;
13157
13230
  subjectLine?: string | null;
13158
13231
  subjectLines?: Array<string | null> | null;
13232
+ dailyLimit?: number | null;
13233
+ dailyEmailCount?: number | null;
13234
+ lastDailyReset?: any | null;
13159
13235
  createdAt?: any | null;
13160
13236
  updatedAt?: any | null;
13161
13237
  steps?: Array<{
@@ -13655,6 +13731,9 @@ export type UpdateCampaignMutation = {
13655
13731
  pausedUntil?: any | null;
13656
13732
  subjectLine?: string | null;
13657
13733
  subjectLines?: Array<string | null> | null;
13734
+ dailyLimit?: number | null;
13735
+ dailyEmailCount?: number | null;
13736
+ lastDailyReset?: any | null;
13658
13737
  segments?: Array<{
13659
13738
  __typename?: 'SegmentObject';
13660
13739
  id?: string | null;
@@ -13723,6 +13802,9 @@ export type UpdateCombinedCampaignMutation = {
13723
13802
  stepsPreview?: any | null;
13724
13803
  subjectLine?: string | null;
13725
13804
  subjectLines?: Array<string | null> | null;
13805
+ dailyLimit?: number | null;
13806
+ dailyEmailCount?: number | null;
13807
+ lastDailyReset?: any | null;
13726
13808
  createdAt?: any | null;
13727
13809
  updatedAt?: any | null;
13728
13810
  steps?: Array<{
@@ -13846,6 +13928,9 @@ export type UpdateCombinedCampaignLogMutation = {
13846
13928
  stepsPreview?: any | null;
13847
13929
  subjectLine?: string | null;
13848
13930
  subjectLines?: Array<string | null> | null;
13931
+ dailyLimit?: number | null;
13932
+ dailyEmailCount?: number | null;
13933
+ lastDailyReset?: any | null;
13849
13934
  createdAt?: any | null;
13850
13935
  updatedAt?: any | null;
13851
13936
  steps?: Array<{
@@ -18320,6 +18405,9 @@ export type CampaignQuery = {
18320
18405
  pausedUntil?: any | null;
18321
18406
  subjectLine?: string | null;
18322
18407
  subjectLines?: Array<string | null> | null;
18408
+ dailyLimit?: number | null;
18409
+ dailyEmailCount?: number | null;
18410
+ lastDailyReset?: any | null;
18323
18411
  segments?: Array<{
18324
18412
  __typename?: 'SegmentObject';
18325
18413
  id?: string | null;
@@ -18514,6 +18602,9 @@ export type CampaignContactsQuery = {
18514
18602
  stepsPreview?: any | null;
18515
18603
  subjectLine?: string | null;
18516
18604
  subjectLines?: Array<string | null> | null;
18605
+ dailyLimit?: number | null;
18606
+ dailyEmailCount?: number | null;
18607
+ lastDailyReset?: any | null;
18517
18608
  createdAt?: any | null;
18518
18609
  updatedAt?: any | null;
18519
18610
  steps?: Array<{
@@ -18924,6 +19015,9 @@ export type CampaignLogsQuery = {
18924
19015
  pausedUntil?: any | null;
18925
19016
  subjectLine?: string | null;
18926
19017
  subjectLines?: Array<string | null> | null;
19018
+ dailyLimit?: number | null;
19019
+ dailyEmailCount?: number | null;
19020
+ lastDailyReset?: any | null;
18927
19021
  segments?: Array<{
18928
19022
  __typename?: 'SegmentObject';
18929
19023
  id?: string | null;
@@ -19158,6 +19252,9 @@ export type CampaignsQuery = {
19158
19252
  pausedUntil?: any | null;
19159
19253
  subjectLine?: string | null;
19160
19254
  subjectLines?: Array<string | null> | null;
19255
+ dailyLimit?: number | null;
19256
+ dailyEmailCount?: number | null;
19257
+ lastDailyReset?: any | null;
19161
19258
  segments?: Array<{
19162
19259
  __typename?: 'SegmentObject';
19163
19260
  id?: string | null;
@@ -19230,6 +19327,9 @@ export type CombinedCampaignQuery = {
19230
19327
  stepsPreview?: any | null;
19231
19328
  subjectLine?: string | null;
19232
19329
  subjectLines?: Array<string | null> | null;
19330
+ dailyLimit?: number | null;
19331
+ dailyEmailCount?: number | null;
19332
+ lastDailyReset?: any | null;
19233
19333
  createdAt?: any | null;
19234
19334
  updatedAt?: any | null;
19235
19335
  steps?: Array<{
@@ -19412,6 +19512,9 @@ export type CombinedCampaignContactsQuery = {
19412
19512
  stepsPreview?: any | null;
19413
19513
  subjectLine?: string | null;
19414
19514
  subjectLines?: Array<string | null> | null;
19515
+ dailyLimit?: number | null;
19516
+ dailyEmailCount?: number | null;
19517
+ lastDailyReset?: any | null;
19415
19518
  createdAt?: any | null;
19416
19519
  updatedAt?: any | null;
19417
19520
  steps?: Array<{
@@ -19729,6 +19832,9 @@ export type CombinedCampaignLogsQuery = {
19729
19832
  stepsPreview?: any | null;
19730
19833
  subjectLine?: string | null;
19731
19834
  subjectLines?: Array<string | null> | null;
19835
+ dailyLimit?: number | null;
19836
+ dailyEmailCount?: number | null;
19837
+ lastDailyReset?: any | null;
19732
19838
  createdAt?: any | null;
19733
19839
  updatedAt?: any | null;
19734
19840
  steps?: Array<{
@@ -20097,6 +20203,9 @@ export type CombinedCampaignsQuery = {
20097
20203
  stepsPreview?: any | null;
20098
20204
  subjectLine?: string | null;
20099
20205
  subjectLines?: Array<string | null> | null;
20206
+ dailyLimit?: number | null;
20207
+ dailyEmailCount?: number | null;
20208
+ lastDailyReset?: any | null;
20100
20209
  createdAt?: any | null;
20101
20210
  updatedAt?: any | null;
20102
20211
  steps?: Array<{
@@ -977,6 +977,9 @@ exports.AddContactsToCampaignDocument = (0, client_1.gql) `
977
977
  }
978
978
  subjectLine
979
979
  subjectLines
980
+ dailyLimit
981
+ dailyEmailCount
982
+ lastDailyReset
980
983
  }
981
984
  success
982
985
  message
@@ -1078,6 +1081,9 @@ exports.AddContactsToCombinedCampaignDocument = (0, client_1.gql) `
1078
1081
  }
1079
1082
  subjectLine
1080
1083
  subjectLines
1084
+ dailyLimit
1085
+ dailyEmailCount
1086
+ lastDailyReset
1081
1087
  createdAt
1082
1088
  updatedAt
1083
1089
  }
@@ -1392,6 +1398,9 @@ exports.AddSegmentToCampaignDocument = (0, client_1.gql) `
1392
1398
  }
1393
1399
  subjectLine
1394
1400
  subjectLines
1401
+ dailyLimit
1402
+ dailyEmailCount
1403
+ lastDailyReset
1395
1404
  }
1396
1405
  success
1397
1406
  message
@@ -1578,6 +1587,9 @@ exports.CancelCampaignDocument = (0, client_1.gql) `
1578
1587
  }
1579
1588
  subjectLine
1580
1589
  subjectLines
1590
+ dailyLimit
1591
+ dailyEmailCount
1592
+ lastDailyReset
1581
1593
  }
1582
1594
  success
1583
1595
  message
@@ -1678,6 +1690,9 @@ exports.CancelCombinedCampaignDocument = (0, client_1.gql) `
1678
1690
  }
1679
1691
  subjectLine
1680
1692
  subjectLines
1693
+ dailyLimit
1694
+ dailyEmailCount
1695
+ lastDailyReset
1681
1696
  createdAt
1682
1697
  updatedAt
1683
1698
  }
@@ -1891,6 +1906,9 @@ exports.CompleteCampaignDocument = (0, client_1.gql) `
1891
1906
  }
1892
1907
  subjectLine
1893
1908
  subjectLines
1909
+ dailyLimit
1910
+ dailyEmailCount
1911
+ lastDailyReset
1894
1912
  }
1895
1913
  success
1896
1914
  message
@@ -2545,6 +2563,9 @@ exports.CreateCampaignDocument = (0, client_1.gql) `
2545
2563
  }
2546
2564
  subjectLine
2547
2565
  subjectLines
2566
+ dailyLimit
2567
+ dailyEmailCount
2568
+ lastDailyReset
2548
2569
  }
2549
2570
  success
2550
2571
  message
@@ -2645,6 +2666,9 @@ exports.CreateCombinedCampaignDocument = (0, client_1.gql) `
2645
2666
  }
2646
2667
  subjectLine
2647
2668
  subjectLines
2669
+ dailyLimit
2670
+ dailyEmailCount
2671
+ lastDailyReset
2648
2672
  createdAt
2649
2673
  updatedAt
2650
2674
  }
@@ -6784,6 +6808,9 @@ exports.PauseCampaignDocument = (0, client_1.gql) `
6784
6808
  }
6785
6809
  subjectLine
6786
6810
  subjectLines
6811
+ dailyLimit
6812
+ dailyEmailCount
6813
+ lastDailyReset
6787
6814
  }
6788
6815
  success
6789
6816
  message
@@ -6884,6 +6911,9 @@ exports.PauseCombinedCampaignDocument = (0, client_1.gql) `
6884
6911
  }
6885
6912
  subjectLine
6886
6913
  subjectLines
6914
+ dailyLimit
6915
+ dailyEmailCount
6916
+ lastDailyReset
6887
6917
  createdAt
6888
6918
  updatedAt
6889
6919
  }
@@ -7187,6 +7217,9 @@ exports.RemoveContactsFromCampaignDocument = (0, client_1.gql) `
7187
7217
  }
7188
7218
  subjectLine
7189
7219
  subjectLines
7220
+ dailyLimit
7221
+ dailyEmailCount
7222
+ lastDailyReset
7190
7223
  }
7191
7224
  success
7192
7225
  message
@@ -7293,6 +7326,9 @@ exports.RemoveContactsFromCombinedCampaignDocument = (0, client_1.gql) `
7293
7326
  }
7294
7327
  subjectLine
7295
7328
  subjectLines
7329
+ dailyLimit
7330
+ dailyEmailCount
7331
+ lastDailyReset
7296
7332
  createdAt
7297
7333
  updatedAt
7298
7334
  }
@@ -7587,6 +7623,9 @@ exports.RemoveSegmentFromCampaignDocument = (0, client_1.gql) `
7587
7623
  }
7588
7624
  subjectLine
7589
7625
  subjectLines
7626
+ dailyLimit
7627
+ dailyEmailCount
7628
+ lastDailyReset
7590
7629
  }
7591
7630
  success
7592
7631
  message
@@ -7745,6 +7784,9 @@ exports.ResumeCombinedCampaignDocument = (0, client_1.gql) `
7745
7784
  }
7746
7785
  subjectLine
7747
7786
  subjectLines
7787
+ dailyLimit
7788
+ dailyEmailCount
7789
+ lastDailyReset
7748
7790
  createdAt
7749
7791
  updatedAt
7750
7792
  }
@@ -7971,6 +8013,9 @@ exports.ScheduleCampaignDocument = (0, client_1.gql) `
7971
8013
  }
7972
8014
  subjectLine
7973
8015
  subjectLines
8016
+ dailyLimit
8017
+ dailyEmailCount
8018
+ lastDailyReset
7974
8019
  }
7975
8020
  success
7976
8021
  message
@@ -8072,6 +8117,9 @@ exports.ScheduleCombinedCampaignDocument = (0, client_1.gql) `
8072
8117
  }
8073
8118
  subjectLine
8074
8119
  subjectLines
8120
+ dailyLimit
8121
+ dailyEmailCount
8122
+ lastDailyReset
8075
8123
  createdAt
8076
8124
  updatedAt
8077
8125
  }
@@ -8355,6 +8403,9 @@ exports.SendEmailToContactDocument = (0, client_1.gql) `
8355
8403
  }
8356
8404
  subjectLine
8357
8405
  subjectLines
8406
+ dailyLimit
8407
+ dailyEmailCount
8408
+ lastDailyReset
8358
8409
  }
8359
8410
  segment {
8360
8411
  id
@@ -8649,6 +8700,9 @@ exports.SendManualEmailDocument = (0, client_1.gql) `
8649
8700
  }
8650
8701
  subjectLine
8651
8702
  subjectLines
8703
+ dailyLimit
8704
+ dailyEmailCount
8705
+ lastDailyReset
8652
8706
  createdAt
8653
8707
  updatedAt
8654
8708
  }
@@ -8920,6 +8974,9 @@ exports.SendManualEmailDocument = (0, client_1.gql) `
8920
8974
  }
8921
8975
  subjectLine
8922
8976
  subjectLines
8977
+ dailyLimit
8978
+ dailyEmailCount
8979
+ lastDailyReset
8923
8980
  }
8924
8981
  segment {
8925
8982
  id
@@ -9371,6 +9428,9 @@ exports.StartCampaignDocument = (0, client_1.gql) `
9371
9428
  }
9372
9429
  subjectLine
9373
9430
  subjectLines
9431
+ dailyLimit
9432
+ dailyEmailCount
9433
+ lastDailyReset
9374
9434
  }
9375
9435
  success
9376
9436
  message
@@ -9471,6 +9531,9 @@ exports.StartCombinedCampaignDocument = (0, client_1.gql) `
9471
9531
  }
9472
9532
  subjectLine
9473
9533
  subjectLines
9534
+ dailyLimit
9535
+ dailyEmailCount
9536
+ lastDailyReset
9474
9537
  createdAt
9475
9538
  updatedAt
9476
9539
  }
@@ -10115,6 +10178,9 @@ exports.UpdateCampaignDocument = (0, client_1.gql) `
10115
10178
  }
10116
10179
  subjectLine
10117
10180
  subjectLines
10181
+ dailyLimit
10182
+ dailyEmailCount
10183
+ lastDailyReset
10118
10184
  }
10119
10185
  success
10120
10186
  message
@@ -10215,6 +10281,9 @@ exports.UpdateCombinedCampaignDocument = (0, client_1.gql) `
10215
10281
  }
10216
10282
  subjectLine
10217
10283
  subjectLines
10284
+ dailyLimit
10285
+ dailyEmailCount
10286
+ lastDailyReset
10218
10287
  createdAt
10219
10288
  updatedAt
10220
10289
  }
@@ -10321,6 +10390,9 @@ exports.UpdateCombinedCampaignLogDocument = (0, client_1.gql) `
10321
10390
  }
10322
10391
  subjectLine
10323
10392
  subjectLines
10393
+ dailyLimit
10394
+ dailyEmailCount
10395
+ lastDailyReset
10324
10396
  createdAt
10325
10397
  updatedAt
10326
10398
  }
@@ -15351,6 +15423,9 @@ exports.CampaignDocument = (0, client_1.gql) `
15351
15423
  }
15352
15424
  subjectLine
15353
15425
  subjectLines
15426
+ dailyLimit
15427
+ dailyEmailCount
15428
+ lastDailyReset
15354
15429
  }
15355
15430
  }
15356
15431
  `;
@@ -15567,6 +15642,9 @@ exports.CampaignContactsDocument = (0, client_1.gql) `
15567
15642
  }
15568
15643
  subjectLine
15569
15644
  subjectLines
15645
+ dailyLimit
15646
+ dailyEmailCount
15647
+ lastDailyReset
15570
15648
  createdAt
15571
15649
  updatedAt
15572
15650
  }
@@ -15971,6 +16049,9 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
15971
16049
  }
15972
16050
  subjectLine
15973
16051
  subjectLines
16052
+ dailyLimit
16053
+ dailyEmailCount
16054
+ lastDailyReset
15974
16055
  }
15975
16056
  segment {
15976
16057
  id
@@ -16256,6 +16337,9 @@ exports.CampaignsDocument = (0, client_1.gql) `
16256
16337
  }
16257
16338
  subjectLine
16258
16339
  subjectLines
16340
+ dailyLimit
16341
+ dailyEmailCount
16342
+ lastDailyReset
16259
16343
  }
16260
16344
  pagination {
16261
16345
  currentPage
@@ -16371,6 +16455,9 @@ exports.CombinedCampaignDocument = (0, client_1.gql) `
16371
16455
  }
16372
16456
  subjectLine
16373
16457
  subjectLines
16458
+ dailyLimit
16459
+ dailyEmailCount
16460
+ lastDailyReset
16374
16461
  createdAt
16375
16462
  updatedAt
16376
16463
  }
@@ -16536,6 +16623,9 @@ exports.CombinedCampaignContactsDocument = (0, client_1.gql) `
16536
16623
  }
16537
16624
  subjectLine
16538
16625
  subjectLines
16626
+ dailyLimit
16627
+ dailyEmailCount
16628
+ lastDailyReset
16539
16629
  createdAt
16540
16630
  updatedAt
16541
16631
  }
@@ -16871,6 +16961,9 @@ exports.CombinedCampaignLogsDocument = (0, client_1.gql) `
16871
16961
  }
16872
16962
  subjectLine
16873
16963
  subjectLines
16964
+ dailyLimit
16965
+ dailyEmailCount
16966
+ lastDailyReset
16874
16967
  createdAt
16875
16968
  updatedAt
16876
16969
  }
@@ -17352,6 +17445,9 @@ exports.CombinedCampaignsDocument = (0, client_1.gql) `
17352
17445
  }
17353
17446
  subjectLine
17354
17447
  subjectLines
17448
+ dailyLimit
17449
+ dailyEmailCount
17450
+ lastDailyReset
17355
17451
  createdAt
17356
17452
  updatedAt
17357
17453
  }
package/dist/mutations.js CHANGED
@@ -3637,6 +3637,9 @@ mutation CreateCombinedCampaign($input: CombinedCampaignInput!, $steps: [Combine
3637
3637
  }
3638
3638
  subjectLine
3639
3639
  subjectLines
3640
+ dailyLimit
3641
+ dailyEmailCount
3642
+ lastDailyReset
3640
3643
  createdAt
3641
3644
  updatedAt
3642
3645
  }
@@ -3717,6 +3720,9 @@ mutation UpdateCombinedCampaign($input: UpdateCombinedCampaignInput!, $steps: [C
3717
3720
  }
3718
3721
  subjectLine
3719
3722
  subjectLines
3723
+ dailyLimit
3724
+ dailyEmailCount
3725
+ lastDailyReset
3720
3726
  createdAt
3721
3727
  updatedAt
3722
3728
  }
@@ -3804,6 +3810,9 @@ mutation StartCombinedCampaign($id: ID!) {
3804
3810
  }
3805
3811
  subjectLine
3806
3812
  subjectLines
3813
+ dailyLimit
3814
+ dailyEmailCount
3815
+ lastDailyReset
3807
3816
  createdAt
3808
3817
  updatedAt
3809
3818
  }
@@ -3884,6 +3893,9 @@ mutation ScheduleCombinedCampaign($id: ID!, $scheduledFor: DateTime!) {
3884
3893
  }
3885
3894
  subjectLine
3886
3895
  subjectLines
3896
+ dailyLimit
3897
+ dailyEmailCount
3898
+ lastDailyReset
3887
3899
  createdAt
3888
3900
  updatedAt
3889
3901
  }
@@ -3964,6 +3976,9 @@ mutation PauseCombinedCampaign($id: ID!) {
3964
3976
  }
3965
3977
  subjectLine
3966
3978
  subjectLines
3979
+ dailyLimit
3980
+ dailyEmailCount
3981
+ lastDailyReset
3967
3982
  createdAt
3968
3983
  updatedAt
3969
3984
  }
@@ -4044,6 +4059,9 @@ mutation ResumeCombinedCampaign($id: ID!) {
4044
4059
  }
4045
4060
  subjectLine
4046
4061
  subjectLines
4062
+ dailyLimit
4063
+ dailyEmailCount
4064
+ lastDailyReset
4047
4065
  createdAt
4048
4066
  updatedAt
4049
4067
  }
@@ -4124,6 +4142,9 @@ mutation CancelCombinedCampaign($id: ID!) {
4124
4142
  }
4125
4143
  subjectLine
4126
4144
  subjectLines
4145
+ dailyLimit
4146
+ dailyEmailCount
4147
+ lastDailyReset
4127
4148
  createdAt
4128
4149
  updatedAt
4129
4150
  }
@@ -4207,6 +4228,9 @@ mutation UpdateCombinedCampaignLog($id: ID!, $input: UpdateCombinedCampaignLogIn
4207
4228
  }
4208
4229
  subjectLine
4209
4230
  subjectLines
4231
+ dailyLimit
4232
+ dailyEmailCount
4233
+ lastDailyReset
4210
4234
  createdAt
4211
4235
  updatedAt
4212
4236
  }
@@ -4500,6 +4524,9 @@ mutation SendManualEmail($attachmentUrls: [EmailAttachmentInput], $bcc: [String]
4500
4524
  }
4501
4525
  subjectLine
4502
4526
  subjectLines
4527
+ dailyLimit
4528
+ dailyEmailCount
4529
+ lastDailyReset
4503
4530
  createdAt
4504
4531
  updatedAt
4505
4532
  }
@@ -4771,6 +4798,9 @@ mutation SendManualEmail($attachmentUrls: [EmailAttachmentInput], $bcc: [String]
4771
4798
  }
4772
4799
  subjectLine
4773
4800
  subjectLines
4801
+ dailyLimit
4802
+ dailyEmailCount
4803
+ lastDailyReset
4774
4804
  }
4775
4805
  segment {
4776
4806
  id
@@ -4961,6 +4991,9 @@ mutation AddContactsToCombinedCampaign($campaignId: ID!, $contacts: [CustomConta
4961
4991
  }
4962
4992
  subjectLine
4963
4993
  subjectLines
4994
+ dailyLimit
4995
+ dailyEmailCount
4996
+ lastDailyReset
4964
4997
  createdAt
4965
4998
  updatedAt
4966
4999
  }
@@ -5042,6 +5075,9 @@ mutation RemoveContactsFromCombinedCampaign($campaignId: ID!, $contactIds: [ID],
5042
5075
  }
5043
5076
  subjectLine
5044
5077
  subjectLines
5078
+ dailyLimit
5079
+ dailyEmailCount
5080
+ lastDailyReset
5045
5081
  createdAt
5046
5082
  updatedAt
5047
5083
  }
@@ -7325,6 +7361,9 @@ mutation AddContactsToCampaign($campaignId: ID!, $contacts: [CustomContactInput]
7325
7361
  }
7326
7362
  subjectLine
7327
7363
  subjectLines
7364
+ dailyLimit
7365
+ dailyEmailCount
7366
+ lastDailyReset
7328
7367
  }
7329
7368
  success
7330
7369
  message
@@ -7398,6 +7437,9 @@ mutation RemoveContactsFromCampaign($campaignId: ID!, $contactIds: [ID], $custom
7398
7437
  }
7399
7438
  subjectLine
7400
7439
  subjectLines
7440
+ dailyLimit
7441
+ dailyEmailCount
7442
+ lastDailyReset
7401
7443
  }
7402
7444
  success
7403
7445
  message
@@ -7471,6 +7513,9 @@ mutation CreateCampaign($input: CampaignInput!) {
7471
7513
  }
7472
7514
  subjectLine
7473
7515
  subjectLines
7516
+ dailyLimit
7517
+ dailyEmailCount
7518
+ lastDailyReset
7474
7519
  }
7475
7520
  success
7476
7521
  message
@@ -7544,6 +7589,9 @@ mutation UpdateCampaign($input: UpdateCampaignInput!) {
7544
7589
  }
7545
7590
  subjectLine
7546
7591
  subjectLines
7592
+ dailyLimit
7593
+ dailyEmailCount
7594
+ lastDailyReset
7547
7595
  }
7548
7596
  success
7549
7597
  message
@@ -7624,6 +7672,9 @@ mutation AddSegmentToCampaign($campaignId: ID!, $segmentId: ID!) {
7624
7672
  }
7625
7673
  subjectLine
7626
7674
  subjectLines
7675
+ dailyLimit
7676
+ dailyEmailCount
7677
+ lastDailyReset
7627
7678
  }
7628
7679
  success
7629
7680
  message
@@ -7697,6 +7748,9 @@ mutation RemoveSegmentFromCampaign($campaignId: ID!, $segmentId: ID!) {
7697
7748
  }
7698
7749
  subjectLine
7699
7750
  subjectLines
7751
+ dailyLimit
7752
+ dailyEmailCount
7753
+ lastDailyReset
7700
7754
  }
7701
7755
  success
7702
7756
  message
@@ -7770,6 +7824,9 @@ mutation StartCampaign($id: ID!) {
7770
7824
  }
7771
7825
  subjectLine
7772
7826
  subjectLines
7827
+ dailyLimit
7828
+ dailyEmailCount
7829
+ lastDailyReset
7773
7830
  }
7774
7831
  success
7775
7832
  message
@@ -7843,6 +7900,9 @@ mutation PauseCampaign($id: ID!) {
7843
7900
  }
7844
7901
  subjectLine
7845
7902
  subjectLines
7903
+ dailyLimit
7904
+ dailyEmailCount
7905
+ lastDailyReset
7846
7906
  }
7847
7907
  success
7848
7908
  message
@@ -7916,6 +7976,9 @@ mutation CompleteCampaign($id: ID!) {
7916
7976
  }
7917
7977
  subjectLine
7918
7978
  subjectLines
7979
+ dailyLimit
7980
+ dailyEmailCount
7981
+ lastDailyReset
7919
7982
  }
7920
7983
  success
7921
7984
  message
@@ -7989,6 +8052,9 @@ mutation CancelCampaign($id: ID!) {
7989
8052
  }
7990
8053
  subjectLine
7991
8054
  subjectLines
8055
+ dailyLimit
8056
+ dailyEmailCount
8057
+ lastDailyReset
7992
8058
  }
7993
8059
  success
7994
8060
  message
@@ -8073,6 +8139,9 @@ mutation SendEmailToContact($campaignId: ID, $contactId: ID!, $fileAttachments:
8073
8139
  }
8074
8140
  subjectLine
8075
8141
  subjectLines
8142
+ dailyLimit
8143
+ dailyEmailCount
8144
+ lastDailyReset
8076
8145
  }
8077
8146
  segment {
8078
8147
  id
@@ -8249,6 +8318,9 @@ mutation ScheduleCampaign($id: ID!, $scheduledFor: DateTime!) {
8249
8318
  }
8250
8319
  subjectLine
8251
8320
  subjectLines
8321
+ dailyLimit
8322
+ dailyEmailCount
8323
+ lastDailyReset
8252
8324
  }
8253
8325
  success
8254
8326
  message
package/dist/queries.js CHANGED
@@ -4923,6 +4923,9 @@ query CombinedCampaigns($pagination: PaginationInput, $status: String, $sortBy:
4923
4923
  }
4924
4924
  subjectLine
4925
4925
  subjectLines
4926
+ dailyLimit
4927
+ dailyEmailCount
4928
+ lastDailyReset
4926
4929
  createdAt
4927
4930
  updatedAt
4928
4931
  }
@@ -5014,6 +5017,9 @@ query CombinedCampaign($id: ID!) {
5014
5017
  }
5015
5018
  subjectLine
5016
5019
  subjectLines
5020
+ dailyLimit
5021
+ dailyEmailCount
5022
+ lastDailyReset
5017
5023
  createdAt
5018
5024
  updatedAt
5019
5025
  }
@@ -5094,6 +5100,9 @@ query CombinedCampaignLogs($campaignId: ID!, $filters: CombinedCampaignFilterInp
5094
5100
  }
5095
5101
  subjectLine
5096
5102
  subjectLines
5103
+ dailyLimit
5104
+ dailyEmailCount
5105
+ lastDailyReset
5097
5106
  createdAt
5098
5107
  updatedAt
5099
5108
  }
@@ -5443,6 +5452,9 @@ query CombinedCampaignContacts($campaignUuid: ID!, $activityType: String, $page:
5443
5452
  }
5444
5453
  subjectLine
5445
5454
  subjectLines
5455
+ dailyLimit
5456
+ dailyEmailCount
5457
+ lastDailyReset
5446
5458
  createdAt
5447
5459
  updatedAt
5448
5460
  }
@@ -8023,6 +8035,9 @@ query Campaigns($pagination: PaginationInput!, $status: String, $sortBy: String,
8023
8035
  }
8024
8036
  subjectLine
8025
8037
  subjectLines
8038
+ dailyLimit
8039
+ dailyEmailCount
8040
+ lastDailyReset
8026
8041
  }
8027
8042
  pagination {
8028
8043
  currentPage
@@ -8101,6 +8116,9 @@ query Campaign($id: ID!) {
8101
8116
  }
8102
8117
  subjectLine
8103
8118
  subjectLines
8119
+ dailyLimit
8120
+ dailyEmailCount
8121
+ lastDailyReset
8104
8122
  }
8105
8123
  }`;
8106
8124
  exports.CAMPAIGN_STATS = (0, client_1.gql) `
@@ -8311,6 +8329,9 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
8311
8329
  }
8312
8330
  subjectLine
8313
8331
  subjectLines
8332
+ dailyLimit
8333
+ dailyEmailCount
8334
+ lastDailyReset
8314
8335
  }
8315
8336
  segment {
8316
8337
  id
@@ -8564,6 +8585,9 @@ query CampaignContacts($campaignUuid: ID!, $page: Int, $pageSize: Int) {
8564
8585
  }
8565
8586
  subjectLine
8566
8587
  subjectLines
8588
+ dailyLimit
8589
+ dailyEmailCount
8590
+ lastDailyReset
8567
8591
  createdAt
8568
8592
  updatedAt
8569
8593
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.1.41",
3
+ "version": "0.1.42",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",