cf-service-sdk 0.1.41 → 0.1.43

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']>;
@@ -1588,6 +1599,7 @@ export type CompanyObject = {
1588
1599
  tasks?: Maybe<Array<Maybe<TaskObject>>>;
1589
1600
  twitterUrl?: Maybe<Scalars['String']['output']>;
1590
1601
  updatedAt: Scalars['DateTime']['output'];
1602
+ version: CrmCompanyVersionChoices;
1591
1603
  website?: Maybe<Scalars['String']['output']>;
1592
1604
  zipCode?: Maybe<Scalars['String']['output']>;
1593
1605
  };
@@ -2013,6 +2025,13 @@ export type CreateTaskInput = {
2013
2025
  status?: InputMaybe<Scalars['String']['input']>;
2014
2026
  title: Scalars['String']['input'];
2015
2027
  };
2028
+ /** An enumeration. */
2029
+ export declare enum CrmCompanyVersionChoices {
2030
+ /** V1 */
2031
+ V1 = "V1",
2032
+ /** V2 */
2033
+ V2 = "V2"
2034
+ }
2016
2035
  /** Input filters for current pipeline totals report */
2017
2036
  export type CrmCurrentPipelineFilterInput = {
2018
2037
  /** Filter by specific user IDs */
@@ -5699,6 +5718,7 @@ export type UpdateCampaign = {
5699
5718
  export type UpdateCampaignInput = {
5700
5719
  campaignDetails?: InputMaybe<Scalars['GenericScalar']['input']>;
5701
5720
  campaignType?: InputMaybe<Scalars['String']['input']>;
5721
+ dailyLimit?: InputMaybe<Scalars['Int']['input']>;
5702
5722
  description?: InputMaybe<Scalars['String']['input']>;
5703
5723
  emailTemplateId?: InputMaybe<Scalars['ID']['input']>;
5704
5724
  name?: InputMaybe<Scalars['String']['input']>;
@@ -5715,6 +5735,7 @@ export type UpdateCombinedCampaign = {
5715
5735
  };
5716
5736
  /** GraphQL input type for updating a campaign */
5717
5737
  export type UpdateCombinedCampaignInput = {
5738
+ dailyLimit?: InputMaybe<Scalars['Int']['input']>;
5718
5739
  description?: InputMaybe<Scalars['String']['input']>;
5719
5740
  name?: InputMaybe<Scalars['String']['input']>;
5720
5741
  segments?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
@@ -6195,6 +6216,9 @@ export type AddContactsToCampaignMutation = {
6195
6216
  pausedUntil?: any | null;
6196
6217
  subjectLine?: string | null;
6197
6218
  subjectLines?: Array<string | null> | null;
6219
+ dailyLimit?: number | null;
6220
+ dailyEmailCount?: number | null;
6221
+ lastDailyReset?: any | null;
6198
6222
  segments?: Array<{
6199
6223
  __typename?: 'SegmentObject';
6200
6224
  id?: string | null;
@@ -6264,6 +6288,9 @@ export type AddContactsToCombinedCampaignMutation = {
6264
6288
  stepsPreview?: any | null;
6265
6289
  subjectLine?: string | null;
6266
6290
  subjectLines?: Array<string | null> | null;
6291
+ dailyLimit?: number | null;
6292
+ dailyEmailCount?: number | null;
6293
+ lastDailyReset?: any | null;
6267
6294
  createdAt?: any | null;
6268
6295
  updatedAt?: any | null;
6269
6296
  steps?: Array<{
@@ -6515,6 +6542,9 @@ export type AddSegmentToCampaignMutation = {
6515
6542
  pausedUntil?: any | null;
6516
6543
  subjectLine?: string | null;
6517
6544
  subjectLines?: Array<string | null> | null;
6545
+ dailyLimit?: number | null;
6546
+ dailyEmailCount?: number | null;
6547
+ lastDailyReset?: any | null;
6518
6548
  segments?: Array<{
6519
6549
  __typename?: 'SegmentObject';
6520
6550
  id?: string | null;
@@ -6632,6 +6662,9 @@ export type CancelCampaignMutation = {
6632
6662
  pausedUntil?: any | null;
6633
6663
  subjectLine?: string | null;
6634
6664
  subjectLines?: Array<string | null> | null;
6665
+ dailyLimit?: number | null;
6666
+ dailyEmailCount?: number | null;
6667
+ lastDailyReset?: any | null;
6635
6668
  segments?: Array<{
6636
6669
  __typename?: 'SegmentObject';
6637
6670
  id?: string | null;
@@ -6699,6 +6732,9 @@ export type CancelCombinedCampaignMutation = {
6699
6732
  stepsPreview?: any | null;
6700
6733
  subjectLine?: string | null;
6701
6734
  subjectLines?: Array<string | null> | null;
6735
+ dailyLimit?: number | null;
6736
+ dailyEmailCount?: number | null;
6737
+ lastDailyReset?: any | null;
6702
6738
  createdAt?: any | null;
6703
6739
  updatedAt?: any | null;
6704
6740
  steps?: Array<{
@@ -6848,6 +6884,9 @@ export type CompleteCampaignMutation = {
6848
6884
  pausedUntil?: any | null;
6849
6885
  subjectLine?: string | null;
6850
6886
  subjectLines?: Array<string | null> | null;
6887
+ dailyLimit?: number | null;
6888
+ dailyEmailCount?: number | null;
6889
+ lastDailyReset?: any | null;
6851
6890
  segments?: Array<{
6852
6891
  __typename?: 'SegmentObject';
6853
6892
  id?: string | null;
@@ -7429,6 +7468,9 @@ export type CreateCampaignMutation = {
7429
7468
  pausedUntil?: any | null;
7430
7469
  subjectLine?: string | null;
7431
7470
  subjectLines?: Array<string | null> | null;
7471
+ dailyLimit?: number | null;
7472
+ dailyEmailCount?: number | null;
7473
+ lastDailyReset?: any | null;
7432
7474
  segments?: Array<{
7433
7475
  __typename?: 'SegmentObject';
7434
7476
  id?: string | null;
@@ -7497,6 +7539,9 @@ export type CreateCombinedCampaignMutation = {
7497
7539
  stepsPreview?: any | null;
7498
7540
  subjectLine?: string | null;
7499
7541
  subjectLines?: Array<string | null> | null;
7542
+ dailyLimit?: number | null;
7543
+ dailyEmailCount?: number | null;
7544
+ lastDailyReset?: any | null;
7500
7545
  createdAt?: any | null;
7501
7546
  updatedAt?: any | null;
7502
7547
  steps?: Array<{
@@ -7615,6 +7660,7 @@ export type CreateCompanyMutation = {
7615
7660
  phone?: string | null;
7616
7661
  email?: string | null;
7617
7662
  annualRevenue?: string | null;
7663
+ version: CrmCompanyVersionChoices;
7618
7664
  externalIdentifiers?: Array<string | null> | null;
7619
7665
  mailLogs?: Array<string | null> | null;
7620
7666
  productsSold?: Array<string | null> | null;
@@ -8598,6 +8644,7 @@ export type CreateMysupplierMutation = {
8598
8644
  phone?: string | null;
8599
8645
  email?: string | null;
8600
8646
  annualRevenue?: string | null;
8647
+ version: CrmCompanyVersionChoices;
8601
8648
  externalIdentifiers?: Array<string | null> | null;
8602
8649
  mailLogs?: Array<string | null> | null;
8603
8650
  productsSold?: Array<string | null> | null;
@@ -9728,6 +9775,7 @@ export type CreateSupplierlistMutation = {
9728
9775
  phone?: string | null;
9729
9776
  email?: string | null;
9730
9777
  annualRevenue?: string | null;
9778
+ version: CrmCompanyVersionChoices;
9731
9779
  externalIdentifiers?: Array<string | null> | null;
9732
9780
  mailLogs?: Array<string | null> | null;
9733
9781
  productsSold?: Array<string | null> | null;
@@ -11071,6 +11119,9 @@ export type PauseCampaignMutation = {
11071
11119
  pausedUntil?: any | null;
11072
11120
  subjectLine?: string | null;
11073
11121
  subjectLines?: Array<string | null> | null;
11122
+ dailyLimit?: number | null;
11123
+ dailyEmailCount?: number | null;
11124
+ lastDailyReset?: any | null;
11074
11125
  segments?: Array<{
11075
11126
  __typename?: 'SegmentObject';
11076
11127
  id?: string | null;
@@ -11138,6 +11189,9 @@ export type PauseCombinedCampaignMutation = {
11138
11189
  stepsPreview?: any | null;
11139
11190
  subjectLine?: string | null;
11140
11191
  subjectLines?: Array<string | null> | null;
11192
+ dailyLimit?: number | null;
11193
+ dailyEmailCount?: number | null;
11194
+ lastDailyReset?: any | null;
11141
11195
  createdAt?: any | null;
11142
11196
  updatedAt?: any | null;
11143
11197
  steps?: Array<{
@@ -11330,6 +11384,9 @@ export type RemoveContactsFromCampaignMutation = {
11330
11384
  pausedUntil?: any | null;
11331
11385
  subjectLine?: string | null;
11332
11386
  subjectLines?: Array<string | null> | null;
11387
+ dailyLimit?: number | null;
11388
+ dailyEmailCount?: number | null;
11389
+ lastDailyReset?: any | null;
11333
11390
  segments?: Array<{
11334
11391
  __typename?: 'SegmentObject';
11335
11392
  id?: string | null;
@@ -11400,6 +11457,9 @@ export type RemoveContactsFromCombinedCampaignMutation = {
11400
11457
  stepsPreview?: any | null;
11401
11458
  subjectLine?: string | null;
11402
11459
  subjectLines?: Array<string | null> | null;
11460
+ dailyLimit?: number | null;
11461
+ dailyEmailCount?: number | null;
11462
+ lastDailyReset?: any | null;
11403
11463
  createdAt?: any | null;
11404
11464
  updatedAt?: any | null;
11405
11465
  steps?: Array<{
@@ -11633,6 +11693,9 @@ export type RemoveSegmentFromCampaignMutation = {
11633
11693
  pausedUntil?: any | null;
11634
11694
  subjectLine?: string | null;
11635
11695
  subjectLines?: Array<string | null> | null;
11696
+ dailyLimit?: number | null;
11697
+ dailyEmailCount?: number | null;
11698
+ lastDailyReset?: any | null;
11636
11699
  segments?: Array<{
11637
11700
  __typename?: 'SegmentObject';
11638
11701
  id?: string | null;
@@ -11722,6 +11785,9 @@ export type ResumeCombinedCampaignMutation = {
11722
11785
  stepsPreview?: any | null;
11723
11786
  subjectLine?: string | null;
11724
11787
  subjectLines?: Array<string | null> | null;
11788
+ dailyLimit?: number | null;
11789
+ dailyEmailCount?: number | null;
11790
+ lastDailyReset?: any | null;
11725
11791
  createdAt?: any | null;
11726
11792
  updatedAt?: any | null;
11727
11793
  steps?: Array<{
@@ -11903,6 +11969,9 @@ export type ScheduleCampaignMutation = {
11903
11969
  pausedUntil?: any | null;
11904
11970
  subjectLine?: string | null;
11905
11971
  subjectLines?: Array<string | null> | null;
11972
+ dailyLimit?: number | null;
11973
+ dailyEmailCount?: number | null;
11974
+ lastDailyReset?: any | null;
11906
11975
  segments?: Array<{
11907
11976
  __typename?: 'SegmentObject';
11908
11977
  id?: string | null;
@@ -11971,6 +12040,9 @@ export type ScheduleCombinedCampaignMutation = {
11971
12040
  stepsPreview?: any | null;
11972
12041
  subjectLine?: string | null;
11973
12042
  subjectLines?: Array<string | null> | null;
12043
+ dailyLimit?: number | null;
12044
+ dailyEmailCount?: number | null;
12045
+ lastDailyReset?: any | null;
11974
12046
  createdAt?: any | null;
11975
12047
  updatedAt?: any | null;
11976
12048
  steps?: Array<{
@@ -12265,6 +12337,9 @@ export type SendEmailToContactMutation = {
12265
12337
  pausedUntil?: any | null;
12266
12338
  subjectLine?: string | null;
12267
12339
  subjectLines?: Array<string | null> | null;
12340
+ dailyLimit?: number | null;
12341
+ dailyEmailCount?: number | null;
12342
+ lastDailyReset?: any | null;
12268
12343
  segments?: Array<{
12269
12344
  __typename?: 'SegmentObject';
12270
12345
  id?: string | null;
@@ -12518,6 +12593,9 @@ export type SendManualEmailMutation = {
12518
12593
  stepsPreview?: any | null;
12519
12594
  subjectLine?: string | null;
12520
12595
  subjectLines?: Array<string | null> | null;
12596
+ dailyLimit?: number | null;
12597
+ dailyEmailCount?: number | null;
12598
+ lastDailyReset?: any | null;
12521
12599
  createdAt?: any | null;
12522
12600
  updatedAt?: any | null;
12523
12601
  steps?: Array<{
@@ -12813,6 +12891,9 @@ export type SendManualEmailMutation = {
12813
12891
  pausedUntil?: any | null;
12814
12892
  subjectLine?: string | null;
12815
12893
  subjectLines?: Array<string | null> | null;
12894
+ dailyLimit?: number | null;
12895
+ dailyEmailCount?: number | null;
12896
+ lastDailyReset?: any | null;
12816
12897
  segments?: Array<{
12817
12898
  __typename?: 'SegmentObject';
12818
12899
  id?: string | null;
@@ -13089,6 +13170,9 @@ export type StartCampaignMutation = {
13089
13170
  pausedUntil?: any | null;
13090
13171
  subjectLine?: string | null;
13091
13172
  subjectLines?: Array<string | null> | null;
13173
+ dailyLimit?: number | null;
13174
+ dailyEmailCount?: number | null;
13175
+ lastDailyReset?: any | null;
13092
13176
  segments?: Array<{
13093
13177
  __typename?: 'SegmentObject';
13094
13178
  id?: string | null;
@@ -13156,6 +13240,9 @@ export type StartCombinedCampaignMutation = {
13156
13240
  stepsPreview?: any | null;
13157
13241
  subjectLine?: string | null;
13158
13242
  subjectLines?: Array<string | null> | null;
13243
+ dailyLimit?: number | null;
13244
+ dailyEmailCount?: number | null;
13245
+ lastDailyReset?: any | null;
13159
13246
  createdAt?: any | null;
13160
13247
  updatedAt?: any | null;
13161
13248
  steps?: Array<{
@@ -13655,6 +13742,9 @@ export type UpdateCampaignMutation = {
13655
13742
  pausedUntil?: any | null;
13656
13743
  subjectLine?: string | null;
13657
13744
  subjectLines?: Array<string | null> | null;
13745
+ dailyLimit?: number | null;
13746
+ dailyEmailCount?: number | null;
13747
+ lastDailyReset?: any | null;
13658
13748
  segments?: Array<{
13659
13749
  __typename?: 'SegmentObject';
13660
13750
  id?: string | null;
@@ -13723,6 +13813,9 @@ export type UpdateCombinedCampaignMutation = {
13723
13813
  stepsPreview?: any | null;
13724
13814
  subjectLine?: string | null;
13725
13815
  subjectLines?: Array<string | null> | null;
13816
+ dailyLimit?: number | null;
13817
+ dailyEmailCount?: number | null;
13818
+ lastDailyReset?: any | null;
13726
13819
  createdAt?: any | null;
13727
13820
  updatedAt?: any | null;
13728
13821
  steps?: Array<{
@@ -13846,6 +13939,9 @@ export type UpdateCombinedCampaignLogMutation = {
13846
13939
  stepsPreview?: any | null;
13847
13940
  subjectLine?: string | null;
13848
13941
  subjectLines?: Array<string | null> | null;
13942
+ dailyLimit?: number | null;
13943
+ dailyEmailCount?: number | null;
13944
+ lastDailyReset?: any | null;
13849
13945
  createdAt?: any | null;
13850
13946
  updatedAt?: any | null;
13851
13947
  steps?: Array<{
@@ -14165,6 +14261,7 @@ export type UpdateCompanyMutation = {
14165
14261
  phone?: string | null;
14166
14262
  email?: string | null;
14167
14263
  annualRevenue?: string | null;
14264
+ version: CrmCompanyVersionChoices;
14168
14265
  externalIdentifiers?: Array<string | null> | null;
14169
14266
  mailLogs?: Array<string | null> | null;
14170
14267
  productsSold?: Array<string | null> | null;
@@ -15216,6 +15313,7 @@ export type UpdateMysupplierMutation = {
15216
15313
  phone?: string | null;
15217
15314
  email?: string | null;
15218
15315
  annualRevenue?: string | null;
15316
+ version: CrmCompanyVersionChoices;
15219
15317
  externalIdentifiers?: Array<string | null> | null;
15220
15318
  mailLogs?: Array<string | null> | null;
15221
15319
  productsSold?: Array<string | null> | null;
@@ -16303,6 +16401,7 @@ export type UpdateSupplierlistMutation = {
16303
16401
  phone?: string | null;
16304
16402
  email?: string | null;
16305
16403
  annualRevenue?: string | null;
16404
+ version: CrmCompanyVersionChoices;
16306
16405
  externalIdentifiers?: Array<string | null> | null;
16307
16406
  mailLogs?: Array<string | null> | null;
16308
16407
  productsSold?: Array<string | null> | null;
@@ -18320,6 +18419,9 @@ export type CampaignQuery = {
18320
18419
  pausedUntil?: any | null;
18321
18420
  subjectLine?: string | null;
18322
18421
  subjectLines?: Array<string | null> | null;
18422
+ dailyLimit?: number | null;
18423
+ dailyEmailCount?: number | null;
18424
+ lastDailyReset?: any | null;
18323
18425
  segments?: Array<{
18324
18426
  __typename?: 'SegmentObject';
18325
18427
  id?: string | null;
@@ -18514,6 +18616,9 @@ export type CampaignContactsQuery = {
18514
18616
  stepsPreview?: any | null;
18515
18617
  subjectLine?: string | null;
18516
18618
  subjectLines?: Array<string | null> | null;
18619
+ dailyLimit?: number | null;
18620
+ dailyEmailCount?: number | null;
18621
+ lastDailyReset?: any | null;
18517
18622
  createdAt?: any | null;
18518
18623
  updatedAt?: any | null;
18519
18624
  steps?: Array<{
@@ -18924,6 +19029,9 @@ export type CampaignLogsQuery = {
18924
19029
  pausedUntil?: any | null;
18925
19030
  subjectLine?: string | null;
18926
19031
  subjectLines?: Array<string | null> | null;
19032
+ dailyLimit?: number | null;
19033
+ dailyEmailCount?: number | null;
19034
+ lastDailyReset?: any | null;
18927
19035
  segments?: Array<{
18928
19036
  __typename?: 'SegmentObject';
18929
19037
  id?: string | null;
@@ -19158,6 +19266,9 @@ export type CampaignsQuery = {
19158
19266
  pausedUntil?: any | null;
19159
19267
  subjectLine?: string | null;
19160
19268
  subjectLines?: Array<string | null> | null;
19269
+ dailyLimit?: number | null;
19270
+ dailyEmailCount?: number | null;
19271
+ lastDailyReset?: any | null;
19161
19272
  segments?: Array<{
19162
19273
  __typename?: 'SegmentObject';
19163
19274
  id?: string | null;
@@ -19230,6 +19341,9 @@ export type CombinedCampaignQuery = {
19230
19341
  stepsPreview?: any | null;
19231
19342
  subjectLine?: string | null;
19232
19343
  subjectLines?: Array<string | null> | null;
19344
+ dailyLimit?: number | null;
19345
+ dailyEmailCount?: number | null;
19346
+ lastDailyReset?: any | null;
19233
19347
  createdAt?: any | null;
19234
19348
  updatedAt?: any | null;
19235
19349
  steps?: Array<{
@@ -19412,6 +19526,9 @@ export type CombinedCampaignContactsQuery = {
19412
19526
  stepsPreview?: any | null;
19413
19527
  subjectLine?: string | null;
19414
19528
  subjectLines?: Array<string | null> | null;
19529
+ dailyLimit?: number | null;
19530
+ dailyEmailCount?: number | null;
19531
+ lastDailyReset?: any | null;
19415
19532
  createdAt?: any | null;
19416
19533
  updatedAt?: any | null;
19417
19534
  steps?: Array<{
@@ -19729,6 +19846,9 @@ export type CombinedCampaignLogsQuery = {
19729
19846
  stepsPreview?: any | null;
19730
19847
  subjectLine?: string | null;
19731
19848
  subjectLines?: Array<string | null> | null;
19849
+ dailyLimit?: number | null;
19850
+ dailyEmailCount?: number | null;
19851
+ lastDailyReset?: any | null;
19732
19852
  createdAt?: any | null;
19733
19853
  updatedAt?: any | null;
19734
19854
  steps?: Array<{
@@ -20097,6 +20217,9 @@ export type CombinedCampaignsQuery = {
20097
20217
  stepsPreview?: any | null;
20098
20218
  subjectLine?: string | null;
20099
20219
  subjectLines?: Array<string | null> | null;
20220
+ dailyLimit?: number | null;
20221
+ dailyEmailCount?: number | null;
20222
+ lastDailyReset?: any | null;
20100
20223
  createdAt?: any | null;
20101
20224
  updatedAt?: any | null;
20102
20225
  steps?: Array<{
@@ -20207,6 +20330,7 @@ export type CompaniesQuery = {
20207
20330
  phone?: string | null;
20208
20331
  email?: string | null;
20209
20332
  annualRevenue?: string | null;
20333
+ version: CrmCompanyVersionChoices;
20210
20334
  externalIdentifiers?: Array<string | null> | null;
20211
20335
  mailLogs?: Array<string | null> | null;
20212
20336
  productsSold?: Array<string | null> | null;
@@ -20911,6 +21035,7 @@ export type CompanyQuery = {
20911
21035
  phone?: string | null;
20912
21036
  email?: string | null;
20913
21037
  annualRevenue?: string | null;
21038
+ version: CrmCompanyVersionChoices;
20914
21039
  externalIdentifiers?: Array<string | null> | null;
20915
21040
  mailLogs?: Array<string | null> | null;
20916
21041
  productsSold?: Array<string | null> | null;
@@ -22015,6 +22140,7 @@ export type CompanySearchQuery = {
22015
22140
  phone?: string | null;
22016
22141
  email?: string | null;
22017
22142
  annualRevenue?: string | null;
22143
+ version: CrmCompanyVersionChoices;
22018
22144
  externalIdentifiers?: Array<string | null> | null;
22019
22145
  mailLogs?: Array<string | null> | null;
22020
22146
  productsSold?: Array<string | null> | null;
@@ -23540,6 +23666,7 @@ export type MysupplierQuery = {
23540
23666
  phone?: string | null;
23541
23667
  email?: string | null;
23542
23668
  annualRevenue?: string | null;
23669
+ version: CrmCompanyVersionChoices;
23543
23670
  externalIdentifiers?: Array<string | null> | null;
23544
23671
  mailLogs?: Array<string | null> | null;
23545
23672
  productsSold?: Array<string | null> | null;
@@ -24236,6 +24363,7 @@ export type MysupplierListQuery = {
24236
24363
  phone?: string | null;
24237
24364
  email?: string | null;
24238
24365
  annualRevenue?: string | null;
24366
+ version: CrmCompanyVersionChoices;
24239
24367
  externalIdentifiers?: Array<string | null> | null;
24240
24368
  mailLogs?: Array<string | null> | null;
24241
24369
  productsSold?: Array<string | null> | null;
@@ -25166,6 +25294,7 @@ export type RecentHistoryQuery = {
25166
25294
  phone?: string | null;
25167
25295
  email?: string | null;
25168
25296
  annualRevenue?: string | null;
25297
+ version: CrmCompanyVersionChoices;
25169
25298
  externalIdentifiers?: Array<string | null> | null;
25170
25299
  mailLogs?: Array<string | null> | null;
25171
25300
  productsSold?: Array<string | null> | null;
@@ -27075,6 +27204,7 @@ export type SupplierQuery = {
27075
27204
  phone?: string | null;
27076
27205
  email?: string | null;
27077
27206
  annualRevenue?: string | null;
27207
+ version: CrmCompanyVersionChoices;
27078
27208
  externalIdentifiers?: Array<string | null> | null;
27079
27209
  mailLogs?: Array<string | null> | null;
27080
27210
  productsSold?: Array<string | null> | null;
@@ -27881,6 +28011,7 @@ export type SupplierlistQuery = {
27881
28011
  phone?: string | null;
27882
28012
  email?: string | null;
27883
28013
  annualRevenue?: string | null;
28014
+ version: CrmCompanyVersionChoices;
27884
28015
  externalIdentifiers?: Array<string | null> | null;
27885
28016
  mailLogs?: Array<string | null> | null;
27886
28017
  productsSold?: Array<string | null> | null;
@@ -28577,6 +28708,7 @@ export type SupplierlistListQuery = {
28577
28708
  phone?: string | null;
28578
28709
  email?: string | null;
28579
28710
  annualRevenue?: string | null;
28711
+ version: CrmCompanyVersionChoices;
28580
28712
  externalIdentifiers?: Array<string | null> | null;
28581
28713
  mailLogs?: Array<string | null> | null;
28582
28714
  productsSold?: Array<string | null> | null;
@@ -29384,6 +29516,7 @@ export type SuppliersQuery = {
29384
29516
  phone?: string | null;
29385
29517
  email?: string | null;
29386
29518
  annualRevenue?: string | null;
29519
+ version: CrmCompanyVersionChoices;
29387
29520
  externalIdentifiers?: Array<string | null> | null;
29388
29521
  mailLogs?: Array<string | null> | null;
29389
29522
  productsSold?: Array<string | null> | null;