cf-service-sdk 0.0.9 → 0.0.11

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.
@@ -746,7 +746,7 @@ export type CompanyNoteFilterInput = {
746
746
  dateTo?: InputMaybe<Scalars['Date']['input']>;
747
747
  hasReminder?: InputMaybe<Scalars['Boolean']['input']>;
748
748
  isPinned?: InputMaybe<Scalars['Boolean']['input']>;
749
- noteType?: InputMaybe<Array<InputMaybe<NoteTypeEnum>>>;
749
+ noteType?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
750
750
  };
751
751
  export type CompanyNoteInput = {
752
752
  companyId: Scalars['ID']['input'];
@@ -757,7 +757,7 @@ export type CompanyNoteInput = {
757
757
  followUpAction?: InputMaybe<Scalars['String']['input']>;
758
758
  followUpDate?: InputMaybe<Scalars['Date']['input']>;
759
759
  id?: InputMaybe<Scalars['ID']['input']>;
760
- noteType?: InputMaybe<NoteTypeEnum>;
760
+ noteType?: InputMaybe<Scalars['String']['input']>;
761
761
  notes?: InputMaybe<Scalars['String']['input']>;
762
762
  pinned?: InputMaybe<Scalars['Boolean']['input']>;
763
763
  setReminder?: InputMaybe<Scalars['Boolean']['input']>;
@@ -774,7 +774,7 @@ export type CompanyNoteObject = {
774
774
  followUpAction?: Maybe<Scalars['String']['output']>;
775
775
  followUpDate?: Maybe<Scalars['Date']['output']>;
776
776
  id?: Maybe<Scalars['ID']['output']>;
777
- noteType?: Maybe<NoteTypeEnum>;
777
+ noteType?: Maybe<Scalars['String']['output']>;
778
778
  notes?: Maybe<Scalars['String']['output']>;
779
779
  pinned?: Maybe<Scalars['Boolean']['output']>;
780
780
  setReminder?: Maybe<Scalars['Boolean']['output']>;
@@ -889,7 +889,6 @@ export type ContactInput = {
889
889
  isPrimary?: InputMaybe<Scalars['Boolean']['input']>;
890
890
  lastName?: InputMaybe<Scalars['String']['input']>;
891
891
  linkedinUrl?: InputMaybe<Scalars['String']['input']>;
892
- name?: InputMaybe<Scalars['String']['input']>;
893
892
  notes?: InputMaybe<Scalars['String']['input']>;
894
893
  personalEmail?: InputMaybe<Scalars['String']['input']>;
895
894
  personalEmail2?: InputMaybe<Scalars['String']['input']>;
@@ -947,7 +946,6 @@ export type ContactObject = {
947
946
  lastContactedAt?: Maybe<Scalars['DateTime']['output']>;
948
947
  lastName?: Maybe<Scalars['String']['output']>;
949
948
  linkedinUrl?: Maybe<Scalars['String']['output']>;
950
- name?: Maybe<Scalars['String']['output']>;
951
949
  notes?: Maybe<Scalars['String']['output']>;
952
950
  ownedByUser?: Maybe<Scalars['Boolean']['output']>;
953
951
  personalEmail?: Maybe<Scalars['String']['output']>;
@@ -965,8 +963,9 @@ export declare enum ContactSortField {
965
963
  CompanyName = "COMPANY_NAME",
966
964
  CreatedAt = "CREATED_AT",
967
965
  Email = "EMAIL",
966
+ FirstName = "FIRST_NAME",
968
967
  LastContactedAt = "LAST_CONTACTED_AT",
969
- Name = "NAME",
968
+ LastName = "LAST_NAME",
970
969
  Title = "TITLE",
971
970
  UpdatedAt = "UPDATED_AT"
972
971
  }
@@ -1665,26 +1664,6 @@ export type MyInvitationsType = {
1665
1664
  status: Scalars['String']['output'];
1666
1665
  token: Scalars['String']['output'];
1667
1666
  };
1668
- export declare enum NoteTypeEnum {
1669
- /** Email */
1670
- Email = "EMAIL",
1671
- /** General Note */
1672
- GeneralNote = "GENERAL_NOTE",
1673
- /** Inbound Call */
1674
- InboundCall = "INBOUND_CALL",
1675
- /** Meeting */
1676
- Meeting = "MEETING",
1677
- /** Other */
1678
- Other = "OTHER",
1679
- /** Outbound Call */
1680
- OutboundCall = "OUTBOUND_CALL",
1681
- /** Payment Preferences */
1682
- PaymentPreferences = "PAYMENT_PREFERENCES",
1683
- /** Shipping Preferences */
1684
- ShippingPreferences = "SHIPPING_PREFERENCES",
1685
- /** Site Visit */
1686
- SiteVisit = "SITE_VISIT"
1687
- }
1688
1667
  /** GraphQL type for Notification model */
1689
1668
  export type NotificationType = {
1690
1669
  __typename?: 'NotificationType';
@@ -2841,7 +2820,6 @@ export type CreateCallCampaignLogMutation = {
2841
2820
  contact?: {
2842
2821
  __typename?: 'ContactObject';
2843
2822
  id?: string | null;
2844
- name?: string | null;
2845
2823
  firstName?: string | null;
2846
2824
  lastName?: string | null;
2847
2825
  email?: string | null;
@@ -3026,7 +3004,7 @@ export type CreateCallCampaignLogMutation = {
3026
3004
  __typename?: 'CompanyNoteObject';
3027
3005
  id?: string | null;
3028
3006
  date?: any | null;
3029
- noteType?: NoteTypeEnum | null;
3007
+ noteType?: string | null;
3030
3008
  duration?: string | null;
3031
3009
  competitorsMentioned?: string | null;
3032
3010
  notes?: string | null;
@@ -3056,7 +3034,6 @@ export type CreateCallCampaignLogMutation = {
3056
3034
  contactPerson?: {
3057
3035
  __typename?: 'ContactObject';
3058
3036
  id?: string | null;
3059
- name?: string | null;
3060
3037
  firstName?: string | null;
3061
3038
  lastName?: string | null;
3062
3039
  email?: string | null;
@@ -3135,7 +3112,6 @@ export type CreateCallCampaignLogMutation = {
3135
3112
  contact?: {
3136
3113
  __typename?: 'ContactObject';
3137
3114
  id?: string | null;
3138
- name?: string | null;
3139
3115
  firstName?: string | null;
3140
3116
  lastName?: string | null;
3141
3117
  email?: string | null;
@@ -3330,7 +3306,6 @@ export type CreateCompanyMutation = {
3330
3306
  contacts?: Array<{
3331
3307
  __typename?: 'ContactObject';
3332
3308
  id?: string | null;
3333
- name?: string | null;
3334
3309
  firstName?: string | null;
3335
3310
  lastName?: string | null;
3336
3311
  email?: string | null;
@@ -3498,7 +3473,6 @@ export type CreateCompanyMutation = {
3498
3473
  contacts?: Array<{
3499
3474
  __typename?: 'ContactObject';
3500
3475
  id?: string | null;
3501
- name?: string | null;
3502
3476
  firstName?: string | null;
3503
3477
  lastName?: string | null;
3504
3478
  email?: string | null;
@@ -3666,7 +3640,6 @@ export type CreateCompanyMutation = {
3666
3640
  contacts?: Array<{
3667
3641
  __typename?: 'ContactObject';
3668
3642
  id?: string | null;
3669
- name?: string | null;
3670
3643
  firstName?: string | null;
3671
3644
  lastName?: string | null;
3672
3645
  email?: string | null;
@@ -3757,7 +3730,7 @@ export type CreateCompanyMutation = {
3757
3730
  __typename?: 'CompanyNoteObject';
3758
3731
  id?: string | null;
3759
3732
  date?: any | null;
3760
- noteType?: NoteTypeEnum | null;
3733
+ noteType?: string | null;
3761
3734
  duration?: string | null;
3762
3735
  competitorsMentioned?: string | null;
3763
3736
  notes?: string | null;
@@ -3787,7 +3760,6 @@ export type CreateCompanyMutation = {
3787
3760
  contactPerson?: {
3788
3761
  __typename?: 'ContactObject';
3789
3762
  id?: string | null;
3790
- name?: string | null;
3791
3763
  firstName?: string | null;
3792
3764
  lastName?: string | null;
3793
3765
  email?: string | null;
@@ -3866,7 +3838,6 @@ export type CreateCompanyMutation = {
3866
3838
  contact?: {
3867
3839
  __typename?: 'ContactObject';
3868
3840
  id?: string | null;
3869
- name?: string | null;
3870
3841
  firstName?: string | null;
3871
3842
  lastName?: string | null;
3872
3843
  email?: string | null;
@@ -3989,7 +3960,6 @@ export type CreateCompanyMutation = {
3989
3960
  contact?: {
3990
3961
  __typename?: 'ContactObject';
3991
3962
  id?: string | null;
3992
- name?: string | null;
3993
3963
  firstName?: string | null;
3994
3964
  lastName?: string | null;
3995
3965
  email?: string | null;
@@ -4053,7 +4023,7 @@ export type CreateCompanyMutation = {
4053
4023
  __typename?: 'CompanyNoteObject';
4054
4024
  id?: string | null;
4055
4025
  date?: any | null;
4056
- noteType?: NoteTypeEnum | null;
4026
+ noteType?: string | null;
4057
4027
  duration?: string | null;
4058
4028
  competitorsMentioned?: string | null;
4059
4029
  notes?: string | null;
@@ -4083,7 +4053,6 @@ export type CreateCompanyMutation = {
4083
4053
  contactPerson?: {
4084
4054
  __typename?: 'ContactObject';
4085
4055
  id?: string | null;
4086
- name?: string | null;
4087
4056
  firstName?: string | null;
4088
4057
  lastName?: string | null;
4089
4058
  email?: string | null;
@@ -4182,7 +4151,6 @@ export type CreateCompanyMutation = {
4182
4151
  contact?: {
4183
4152
  __typename?: 'ContactObject';
4184
4153
  id?: string | null;
4185
- name?: string | null;
4186
4154
  firstName?: string | null;
4187
4155
  lastName?: string | null;
4188
4156
  email?: string | null;
@@ -4305,7 +4273,6 @@ export type CreateCompanyMutation = {
4305
4273
  contact?: {
4306
4274
  __typename?: 'ContactObject';
4307
4275
  id?: string | null;
4308
- name?: string | null;
4309
4276
  firstName?: string | null;
4310
4277
  lastName?: string | null;
4311
4278
  email?: string | null;
@@ -4369,7 +4336,7 @@ export type CreateCompanyMutation = {
4369
4336
  __typename?: 'CompanyNoteObject';
4370
4337
  id?: string | null;
4371
4338
  date?: any | null;
4372
- noteType?: NoteTypeEnum | null;
4339
+ noteType?: string | null;
4373
4340
  duration?: string | null;
4374
4341
  competitorsMentioned?: string | null;
4375
4342
  notes?: string | null;
@@ -4399,7 +4366,6 @@ export type CreateCompanyMutation = {
4399
4366
  contactPerson?: {
4400
4367
  __typename?: 'ContactObject';
4401
4368
  id?: string | null;
4402
- name?: string | null;
4403
4369
  firstName?: string | null;
4404
4370
  lastName?: string | null;
4405
4371
  email?: string | null;
@@ -4488,7 +4454,7 @@ export type CreateCompanyNoteMutation = {
4488
4454
  __typename?: 'CompanyNoteObject';
4489
4455
  id?: string | null;
4490
4456
  date?: any | null;
4491
- noteType?: NoteTypeEnum | null;
4457
+ noteType?: string | null;
4492
4458
  duration?: string | null;
4493
4459
  competitorsMentioned?: string | null;
4494
4460
  notes?: string | null;
@@ -4518,7 +4484,6 @@ export type CreateCompanyNoteMutation = {
4518
4484
  contactPerson?: {
4519
4485
  __typename?: 'ContactObject';
4520
4486
  id?: string | null;
4521
- name?: string | null;
4522
4487
  firstName?: string | null;
4523
4488
  lastName?: string | null;
4524
4489
  email?: string | null;
@@ -4573,7 +4538,6 @@ export type CreateContactMutation = {
4573
4538
  contact?: {
4574
4539
  __typename?: 'ContactObject';
4575
4540
  id?: string | null;
4576
- name?: string | null;
4577
4541
  firstName?: string | null;
4578
4542
  lastName?: string | null;
4579
4543
  email?: string | null;
@@ -4779,7 +4743,6 @@ export type CreateTaskMutation = {
4779
4743
  contacts?: Array<{
4780
4744
  __typename?: 'ContactObject';
4781
4745
  id?: string | null;
4782
- name?: string | null;
4783
4746
  firstName?: string | null;
4784
4747
  lastName?: string | null;
4785
4748
  email?: string | null;
@@ -4870,7 +4833,7 @@ export type CreateTaskMutation = {
4870
4833
  __typename?: 'CompanyNoteObject';
4871
4834
  id?: string | null;
4872
4835
  date?: any | null;
4873
- noteType?: NoteTypeEnum | null;
4836
+ noteType?: string | null;
4874
4837
  duration?: string | null;
4875
4838
  competitorsMentioned?: string | null;
4876
4839
  notes?: string | null;
@@ -4900,7 +4863,6 @@ export type CreateTaskMutation = {
4900
4863
  contactPerson?: {
4901
4864
  __typename?: 'ContactObject';
4902
4865
  id?: string | null;
4903
- name?: string | null;
4904
4866
  firstName?: string | null;
4905
4867
  lastName?: string | null;
4906
4868
  email?: string | null;
@@ -4979,7 +4941,6 @@ export type CreateTaskMutation = {
4979
4941
  contact?: {
4980
4942
  __typename?: 'ContactObject';
4981
4943
  id?: string | null;
4982
- name?: string | null;
4983
4944
  firstName?: string | null;
4984
4945
  lastName?: string | null;
4985
4946
  email?: string | null;
@@ -5102,7 +5063,6 @@ export type CreateTaskMutation = {
5102
5063
  contact?: {
5103
5064
  __typename?: 'ContactObject';
5104
5065
  id?: string | null;
5105
- name?: string | null;
5106
5066
  firstName?: string | null;
5107
5067
  lastName?: string | null;
5108
5068
  email?: string | null;
@@ -5861,7 +5821,6 @@ export type SendEmailToContactMutation = {
5861
5821
  contact?: {
5862
5822
  __typename?: 'ContactObject';
5863
5823
  id?: string | null;
5864
- name?: string | null;
5865
5824
  firstName?: string | null;
5866
5825
  lastName?: string | null;
5867
5826
  email?: string | null;
@@ -6169,7 +6128,6 @@ export type UpdateCallCampaignLogMutation = {
6169
6128
  contact?: {
6170
6129
  __typename?: 'ContactObject';
6171
6130
  id?: string | null;
6172
- name?: string | null;
6173
6131
  firstName?: string | null;
6174
6132
  lastName?: string | null;
6175
6133
  email?: string | null;
@@ -6354,7 +6312,7 @@ export type UpdateCallCampaignLogMutation = {
6354
6312
  __typename?: 'CompanyNoteObject';
6355
6313
  id?: string | null;
6356
6314
  date?: any | null;
6357
- noteType?: NoteTypeEnum | null;
6315
+ noteType?: string | null;
6358
6316
  duration?: string | null;
6359
6317
  competitorsMentioned?: string | null;
6360
6318
  notes?: string | null;
@@ -6384,7 +6342,6 @@ export type UpdateCallCampaignLogMutation = {
6384
6342
  contactPerson?: {
6385
6343
  __typename?: 'ContactObject';
6386
6344
  id?: string | null;
6387
- name?: string | null;
6388
6345
  firstName?: string | null;
6389
6346
  lastName?: string | null;
6390
6347
  email?: string | null;
@@ -6463,7 +6420,6 @@ export type UpdateCallCampaignLogMutation = {
6463
6420
  contact?: {
6464
6421
  __typename?: 'ContactObject';
6465
6422
  id?: string | null;
6466
- name?: string | null;
6467
6423
  firstName?: string | null;
6468
6424
  lastName?: string | null;
6469
6425
  email?: string | null;
@@ -6658,7 +6614,6 @@ export type UpdateCompanyMutation = {
6658
6614
  contacts?: Array<{
6659
6615
  __typename?: 'ContactObject';
6660
6616
  id?: string | null;
6661
- name?: string | null;
6662
6617
  firstName?: string | null;
6663
6618
  lastName?: string | null;
6664
6619
  email?: string | null;
@@ -6826,7 +6781,6 @@ export type UpdateCompanyMutation = {
6826
6781
  contacts?: Array<{
6827
6782
  __typename?: 'ContactObject';
6828
6783
  id?: string | null;
6829
- name?: string | null;
6830
6784
  firstName?: string | null;
6831
6785
  lastName?: string | null;
6832
6786
  email?: string | null;
@@ -6994,7 +6948,6 @@ export type UpdateCompanyMutation = {
6994
6948
  contacts?: Array<{
6995
6949
  __typename?: 'ContactObject';
6996
6950
  id?: string | null;
6997
- name?: string | null;
6998
6951
  firstName?: string | null;
6999
6952
  lastName?: string | null;
7000
6953
  email?: string | null;
@@ -7085,7 +7038,7 @@ export type UpdateCompanyMutation = {
7085
7038
  __typename?: 'CompanyNoteObject';
7086
7039
  id?: string | null;
7087
7040
  date?: any | null;
7088
- noteType?: NoteTypeEnum | null;
7041
+ noteType?: string | null;
7089
7042
  duration?: string | null;
7090
7043
  competitorsMentioned?: string | null;
7091
7044
  notes?: string | null;
@@ -7115,7 +7068,6 @@ export type UpdateCompanyMutation = {
7115
7068
  contactPerson?: {
7116
7069
  __typename?: 'ContactObject';
7117
7070
  id?: string | null;
7118
- name?: string | null;
7119
7071
  firstName?: string | null;
7120
7072
  lastName?: string | null;
7121
7073
  email?: string | null;
@@ -7194,7 +7146,6 @@ export type UpdateCompanyMutation = {
7194
7146
  contact?: {
7195
7147
  __typename?: 'ContactObject';
7196
7148
  id?: string | null;
7197
- name?: string | null;
7198
7149
  firstName?: string | null;
7199
7150
  lastName?: string | null;
7200
7151
  email?: string | null;
@@ -7317,7 +7268,6 @@ export type UpdateCompanyMutation = {
7317
7268
  contact?: {
7318
7269
  __typename?: 'ContactObject';
7319
7270
  id?: string | null;
7320
- name?: string | null;
7321
7271
  firstName?: string | null;
7322
7272
  lastName?: string | null;
7323
7273
  email?: string | null;
@@ -7381,7 +7331,7 @@ export type UpdateCompanyMutation = {
7381
7331
  __typename?: 'CompanyNoteObject';
7382
7332
  id?: string | null;
7383
7333
  date?: any | null;
7384
- noteType?: NoteTypeEnum | null;
7334
+ noteType?: string | null;
7385
7335
  duration?: string | null;
7386
7336
  competitorsMentioned?: string | null;
7387
7337
  notes?: string | null;
@@ -7411,7 +7361,6 @@ export type UpdateCompanyMutation = {
7411
7361
  contactPerson?: {
7412
7362
  __typename?: 'ContactObject';
7413
7363
  id?: string | null;
7414
- name?: string | null;
7415
7364
  firstName?: string | null;
7416
7365
  lastName?: string | null;
7417
7366
  email?: string | null;
@@ -7510,7 +7459,6 @@ export type UpdateCompanyMutation = {
7510
7459
  contact?: {
7511
7460
  __typename?: 'ContactObject';
7512
7461
  id?: string | null;
7513
- name?: string | null;
7514
7462
  firstName?: string | null;
7515
7463
  lastName?: string | null;
7516
7464
  email?: string | null;
@@ -7633,7 +7581,6 @@ export type UpdateCompanyMutation = {
7633
7581
  contact?: {
7634
7582
  __typename?: 'ContactObject';
7635
7583
  id?: string | null;
7636
- name?: string | null;
7637
7584
  firstName?: string | null;
7638
7585
  lastName?: string | null;
7639
7586
  email?: string | null;
@@ -7697,7 +7644,7 @@ export type UpdateCompanyMutation = {
7697
7644
  __typename?: 'CompanyNoteObject';
7698
7645
  id?: string | null;
7699
7646
  date?: any | null;
7700
- noteType?: NoteTypeEnum | null;
7647
+ noteType?: string | null;
7701
7648
  duration?: string | null;
7702
7649
  competitorsMentioned?: string | null;
7703
7650
  notes?: string | null;
@@ -7727,7 +7674,6 @@ export type UpdateCompanyMutation = {
7727
7674
  contactPerson?: {
7728
7675
  __typename?: 'ContactObject';
7729
7676
  id?: string | null;
7730
- name?: string | null;
7731
7677
  firstName?: string | null;
7732
7678
  lastName?: string | null;
7733
7679
  email?: string | null;
@@ -7816,7 +7762,7 @@ export type UpdateCompanyNoteMutation = {
7816
7762
  __typename?: 'CompanyNoteObject';
7817
7763
  id?: string | null;
7818
7764
  date?: any | null;
7819
- noteType?: NoteTypeEnum | null;
7765
+ noteType?: string | null;
7820
7766
  duration?: string | null;
7821
7767
  competitorsMentioned?: string | null;
7822
7768
  notes?: string | null;
@@ -7846,7 +7792,6 @@ export type UpdateCompanyNoteMutation = {
7846
7792
  contactPerson?: {
7847
7793
  __typename?: 'ContactObject';
7848
7794
  id?: string | null;
7849
- name?: string | null;
7850
7795
  firstName?: string | null;
7851
7796
  lastName?: string | null;
7852
7797
  email?: string | null;
@@ -7901,7 +7846,6 @@ export type UpdateContactMutation = {
7901
7846
  contact?: {
7902
7847
  __typename?: 'ContactObject';
7903
7848
  id?: string | null;
7904
- name?: string | null;
7905
7849
  firstName?: string | null;
7906
7850
  lastName?: string | null;
7907
7851
  email?: string | null;
@@ -8085,7 +8029,6 @@ export type UpdateTaskMutation = {
8085
8029
  contacts?: Array<{
8086
8030
  __typename?: 'ContactObject';
8087
8031
  id?: string | null;
8088
- name?: string | null;
8089
8032
  firstName?: string | null;
8090
8033
  lastName?: string | null;
8091
8034
  email?: string | null;
@@ -8176,7 +8119,7 @@ export type UpdateTaskMutation = {
8176
8119
  __typename?: 'CompanyNoteObject';
8177
8120
  id?: string | null;
8178
8121
  date?: any | null;
8179
- noteType?: NoteTypeEnum | null;
8122
+ noteType?: string | null;
8180
8123
  duration?: string | null;
8181
8124
  competitorsMentioned?: string | null;
8182
8125
  notes?: string | null;
@@ -8206,7 +8149,6 @@ export type UpdateTaskMutation = {
8206
8149
  contactPerson?: {
8207
8150
  __typename?: 'ContactObject';
8208
8151
  id?: string | null;
8209
- name?: string | null;
8210
8152
  firstName?: string | null;
8211
8153
  lastName?: string | null;
8212
8154
  email?: string | null;
@@ -8285,7 +8227,6 @@ export type UpdateTaskMutation = {
8285
8227
  contact?: {
8286
8228
  __typename?: 'ContactObject';
8287
8229
  id?: string | null;
8288
- name?: string | null;
8289
8230
  firstName?: string | null;
8290
8231
  lastName?: string | null;
8291
8232
  email?: string | null;
@@ -8408,7 +8349,6 @@ export type UpdateTaskMutation = {
8408
8349
  contact?: {
8409
8350
  __typename?: 'ContactObject';
8410
8351
  id?: string | null;
8411
- name?: string | null;
8412
8352
  firstName?: string | null;
8413
8353
  lastName?: string | null;
8414
8354
  email?: string | null;
@@ -8744,7 +8684,6 @@ export type CallCampaignLogQuery = {
8744
8684
  contact?: {
8745
8685
  __typename?: 'ContactObject';
8746
8686
  id?: string | null;
8747
- name?: string | null;
8748
8687
  firstName?: string | null;
8749
8688
  lastName?: string | null;
8750
8689
  email?: string | null;
@@ -8929,7 +8868,7 @@ export type CallCampaignLogQuery = {
8929
8868
  __typename?: 'CompanyNoteObject';
8930
8869
  id?: string | null;
8931
8870
  date?: any | null;
8932
- noteType?: NoteTypeEnum | null;
8871
+ noteType?: string | null;
8933
8872
  duration?: string | null;
8934
8873
  competitorsMentioned?: string | null;
8935
8874
  notes?: string | null;
@@ -8959,7 +8898,6 @@ export type CallCampaignLogQuery = {
8959
8898
  contactPerson?: {
8960
8899
  __typename?: 'ContactObject';
8961
8900
  id?: string | null;
8962
- name?: string | null;
8963
8901
  firstName?: string | null;
8964
8902
  lastName?: string | null;
8965
8903
  email?: string | null;
@@ -9038,7 +8976,6 @@ export type CallCampaignLogQuery = {
9038
8976
  contact?: {
9039
8977
  __typename?: 'ContactObject';
9040
8978
  id?: string | null;
9041
- name?: string | null;
9042
8979
  firstName?: string | null;
9043
8980
  lastName?: string | null;
9044
8981
  email?: string | null;
@@ -9174,7 +9111,6 @@ export type CallCampaignLogsQuery = {
9174
9111
  contact?: {
9175
9112
  __typename?: 'ContactObject';
9176
9113
  id?: string | null;
9177
- name?: string | null;
9178
9114
  firstName?: string | null;
9179
9115
  lastName?: string | null;
9180
9116
  email?: string | null;
@@ -9359,7 +9295,7 @@ export type CallCampaignLogsQuery = {
9359
9295
  __typename?: 'CompanyNoteObject';
9360
9296
  id?: string | null;
9361
9297
  date?: any | null;
9362
- noteType?: NoteTypeEnum | null;
9298
+ noteType?: string | null;
9363
9299
  duration?: string | null;
9364
9300
  competitorsMentioned?: string | null;
9365
9301
  notes?: string | null;
@@ -9389,7 +9325,6 @@ export type CallCampaignLogsQuery = {
9389
9325
  contactPerson?: {
9390
9326
  __typename?: 'ContactObject';
9391
9327
  id?: string | null;
9392
- name?: string | null;
9393
9328
  firstName?: string | null;
9394
9329
  lastName?: string | null;
9395
9330
  email?: string | null;
@@ -9468,7 +9403,6 @@ export type CallCampaignLogsQuery = {
9468
9403
  contact?: {
9469
9404
  __typename?: 'ContactObject';
9470
9405
  id?: string | null;
9471
- name?: string | null;
9472
9406
  firstName?: string | null;
9473
9407
  lastName?: string | null;
9474
9408
  email?: string | null;
@@ -9714,7 +9648,6 @@ export type CampaignLogsQuery = {
9714
9648
  contact?: {
9715
9649
  __typename?: 'ContactObject';
9716
9650
  id?: string | null;
9717
- name?: string | null;
9718
9651
  firstName?: string | null;
9719
9652
  lastName?: string | null;
9720
9653
  email?: string | null;
@@ -9845,7 +9778,6 @@ export type CampaignLogsQuery = {
9845
9778
  contact?: {
9846
9779
  __typename?: 'ContactObject';
9847
9780
  id?: string | null;
9848
- name?: string | null;
9849
9781
  firstName?: string | null;
9850
9782
  lastName?: string | null;
9851
9783
  email?: string | null;
@@ -10080,7 +10012,6 @@ export type CompaniesQuery = {
10080
10012
  contacts?: Array<{
10081
10013
  __typename?: 'ContactObject';
10082
10014
  id?: string | null;
10083
- name?: string | null;
10084
10015
  firstName?: string | null;
10085
10016
  lastName?: string | null;
10086
10017
  email?: string | null;
@@ -10248,7 +10179,6 @@ export type CompaniesQuery = {
10248
10179
  contacts?: Array<{
10249
10180
  __typename?: 'ContactObject';
10250
10181
  id?: string | null;
10251
- name?: string | null;
10252
10182
  firstName?: string | null;
10253
10183
  lastName?: string | null;
10254
10184
  email?: string | null;
@@ -10416,7 +10346,6 @@ export type CompaniesQuery = {
10416
10346
  contacts?: Array<{
10417
10347
  __typename?: 'ContactObject';
10418
10348
  id?: string | null;
10419
- name?: string | null;
10420
10349
  firstName?: string | null;
10421
10350
  lastName?: string | null;
10422
10351
  email?: string | null;
@@ -10507,7 +10436,7 @@ export type CompaniesQuery = {
10507
10436
  __typename?: 'CompanyNoteObject';
10508
10437
  id?: string | null;
10509
10438
  date?: any | null;
10510
- noteType?: NoteTypeEnum | null;
10439
+ noteType?: string | null;
10511
10440
  duration?: string | null;
10512
10441
  competitorsMentioned?: string | null;
10513
10442
  notes?: string | null;
@@ -10537,7 +10466,6 @@ export type CompaniesQuery = {
10537
10466
  contactPerson?: {
10538
10467
  __typename?: 'ContactObject';
10539
10468
  id?: string | null;
10540
- name?: string | null;
10541
10469
  firstName?: string | null;
10542
10470
  lastName?: string | null;
10543
10471
  email?: string | null;
@@ -10616,7 +10544,6 @@ export type CompaniesQuery = {
10616
10544
  contact?: {
10617
10545
  __typename?: 'ContactObject';
10618
10546
  id?: string | null;
10619
- name?: string | null;
10620
10547
  firstName?: string | null;
10621
10548
  lastName?: string | null;
10622
10549
  email?: string | null;
@@ -10739,7 +10666,6 @@ export type CompaniesQuery = {
10739
10666
  contact?: {
10740
10667
  __typename?: 'ContactObject';
10741
10668
  id?: string | null;
10742
- name?: string | null;
10743
10669
  firstName?: string | null;
10744
10670
  lastName?: string | null;
10745
10671
  email?: string | null;
@@ -10803,7 +10729,7 @@ export type CompaniesQuery = {
10803
10729
  __typename?: 'CompanyNoteObject';
10804
10730
  id?: string | null;
10805
10731
  date?: any | null;
10806
- noteType?: NoteTypeEnum | null;
10732
+ noteType?: string | null;
10807
10733
  duration?: string | null;
10808
10734
  competitorsMentioned?: string | null;
10809
10735
  notes?: string | null;
@@ -10833,7 +10759,6 @@ export type CompaniesQuery = {
10833
10759
  contactPerson?: {
10834
10760
  __typename?: 'ContactObject';
10835
10761
  id?: string | null;
10836
- name?: string | null;
10837
10762
  firstName?: string | null;
10838
10763
  lastName?: string | null;
10839
10764
  email?: string | null;
@@ -10932,7 +10857,6 @@ export type CompaniesQuery = {
10932
10857
  contact?: {
10933
10858
  __typename?: 'ContactObject';
10934
10859
  id?: string | null;
10935
- name?: string | null;
10936
10860
  firstName?: string | null;
10937
10861
  lastName?: string | null;
10938
10862
  email?: string | null;
@@ -11055,7 +10979,6 @@ export type CompaniesQuery = {
11055
10979
  contact?: {
11056
10980
  __typename?: 'ContactObject';
11057
10981
  id?: string | null;
11058
- name?: string | null;
11059
10982
  firstName?: string | null;
11060
10983
  lastName?: string | null;
11061
10984
  email?: string | null;
@@ -11119,7 +11042,7 @@ export type CompaniesQuery = {
11119
11042
  __typename?: 'CompanyNoteObject';
11120
11043
  id?: string | null;
11121
11044
  date?: any | null;
11122
- noteType?: NoteTypeEnum | null;
11045
+ noteType?: string | null;
11123
11046
  duration?: string | null;
11124
11047
  competitorsMentioned?: string | null;
11125
11048
  notes?: string | null;
@@ -11149,7 +11072,6 @@ export type CompaniesQuery = {
11149
11072
  contactPerson?: {
11150
11073
  __typename?: 'ContactObject';
11151
11074
  id?: string | null;
11152
- name?: string | null;
11153
11075
  firstName?: string | null;
11154
11076
  lastName?: string | null;
11155
11077
  email?: string | null;
@@ -11309,7 +11231,6 @@ export type CompanyQuery = {
11309
11231
  contacts?: Array<{
11310
11232
  __typename?: 'ContactObject';
11311
11233
  id?: string | null;
11312
- name?: string | null;
11313
11234
  firstName?: string | null;
11314
11235
  lastName?: string | null;
11315
11236
  email?: string | null;
@@ -11477,7 +11398,6 @@ export type CompanyQuery = {
11477
11398
  contacts?: Array<{
11478
11399
  __typename?: 'ContactObject';
11479
11400
  id?: string | null;
11480
- name?: string | null;
11481
11401
  firstName?: string | null;
11482
11402
  lastName?: string | null;
11483
11403
  email?: string | null;
@@ -11645,7 +11565,6 @@ export type CompanyQuery = {
11645
11565
  contacts?: Array<{
11646
11566
  __typename?: 'ContactObject';
11647
11567
  id?: string | null;
11648
- name?: string | null;
11649
11568
  firstName?: string | null;
11650
11569
  lastName?: string | null;
11651
11570
  email?: string | null;
@@ -11736,7 +11655,7 @@ export type CompanyQuery = {
11736
11655
  __typename?: 'CompanyNoteObject';
11737
11656
  id?: string | null;
11738
11657
  date?: any | null;
11739
- noteType?: NoteTypeEnum | null;
11658
+ noteType?: string | null;
11740
11659
  duration?: string | null;
11741
11660
  competitorsMentioned?: string | null;
11742
11661
  notes?: string | null;
@@ -11766,7 +11685,6 @@ export type CompanyQuery = {
11766
11685
  contactPerson?: {
11767
11686
  __typename?: 'ContactObject';
11768
11687
  id?: string | null;
11769
- name?: string | null;
11770
11688
  firstName?: string | null;
11771
11689
  lastName?: string | null;
11772
11690
  email?: string | null;
@@ -11845,7 +11763,6 @@ export type CompanyQuery = {
11845
11763
  contact?: {
11846
11764
  __typename?: 'ContactObject';
11847
11765
  id?: string | null;
11848
- name?: string | null;
11849
11766
  firstName?: string | null;
11850
11767
  lastName?: string | null;
11851
11768
  email?: string | null;
@@ -11968,7 +11885,6 @@ export type CompanyQuery = {
11968
11885
  contact?: {
11969
11886
  __typename?: 'ContactObject';
11970
11887
  id?: string | null;
11971
- name?: string | null;
11972
11888
  firstName?: string | null;
11973
11889
  lastName?: string | null;
11974
11890
  email?: string | null;
@@ -12032,7 +11948,7 @@ export type CompanyQuery = {
12032
11948
  __typename?: 'CompanyNoteObject';
12033
11949
  id?: string | null;
12034
11950
  date?: any | null;
12035
- noteType?: NoteTypeEnum | null;
11951
+ noteType?: string | null;
12036
11952
  duration?: string | null;
12037
11953
  competitorsMentioned?: string | null;
12038
11954
  notes?: string | null;
@@ -12062,7 +11978,6 @@ export type CompanyQuery = {
12062
11978
  contactPerson?: {
12063
11979
  __typename?: 'ContactObject';
12064
11980
  id?: string | null;
12065
- name?: string | null;
12066
11981
  firstName?: string | null;
12067
11982
  lastName?: string | null;
12068
11983
  email?: string | null;
@@ -12161,7 +12076,6 @@ export type CompanyQuery = {
12161
12076
  contact?: {
12162
12077
  __typename?: 'ContactObject';
12163
12078
  id?: string | null;
12164
- name?: string | null;
12165
12079
  firstName?: string | null;
12166
12080
  lastName?: string | null;
12167
12081
  email?: string | null;
@@ -12284,7 +12198,6 @@ export type CompanyQuery = {
12284
12198
  contact?: {
12285
12199
  __typename?: 'ContactObject';
12286
12200
  id?: string | null;
12287
- name?: string | null;
12288
12201
  firstName?: string | null;
12289
12202
  lastName?: string | null;
12290
12203
  email?: string | null;
@@ -12348,7 +12261,7 @@ export type CompanyQuery = {
12348
12261
  __typename?: 'CompanyNoteObject';
12349
12262
  id?: string | null;
12350
12263
  date?: any | null;
12351
- noteType?: NoteTypeEnum | null;
12264
+ noteType?: string | null;
12352
12265
  duration?: string | null;
12353
12266
  competitorsMentioned?: string | null;
12354
12267
  notes?: string | null;
@@ -12378,7 +12291,6 @@ export type CompanyQuery = {
12378
12291
  contactPerson?: {
12379
12292
  __typename?: 'ContactObject';
12380
12293
  id?: string | null;
12381
- name?: string | null;
12382
12294
  firstName?: string | null;
12383
12295
  lastName?: string | null;
12384
12296
  email?: string | null;
@@ -12464,7 +12376,7 @@ export type CompanyNoteQuery = {
12464
12376
  __typename?: 'CompanyNoteObject';
12465
12377
  id?: string | null;
12466
12378
  date?: any | null;
12467
- noteType?: NoteTypeEnum | null;
12379
+ noteType?: string | null;
12468
12380
  duration?: string | null;
12469
12381
  competitorsMentioned?: string | null;
12470
12382
  notes?: string | null;
@@ -12494,7 +12406,6 @@ export type CompanyNoteQuery = {
12494
12406
  contactPerson?: {
12495
12407
  __typename?: 'ContactObject';
12496
12408
  id?: string | null;
12497
- name?: string | null;
12498
12409
  firstName?: string | null;
12499
12410
  lastName?: string | null;
12500
12411
  email?: string | null;
@@ -12551,7 +12462,7 @@ export type CompanyNotesQuery = {
12551
12462
  __typename?: 'CompanyNoteObject';
12552
12463
  id?: string | null;
12553
12464
  date?: any | null;
12554
- noteType?: NoteTypeEnum | null;
12465
+ noteType?: string | null;
12555
12466
  duration?: string | null;
12556
12467
  competitorsMentioned?: string | null;
12557
12468
  notes?: string | null;
@@ -12581,7 +12492,6 @@ export type CompanyNotesQuery = {
12581
12492
  contactPerson?: {
12582
12493
  __typename?: 'ContactObject';
12583
12494
  id?: string | null;
12584
- name?: string | null;
12585
12495
  firstName?: string | null;
12586
12496
  lastName?: string | null;
12587
12497
  email?: string | null;
@@ -12643,7 +12553,6 @@ export type ContactQuery = {
12643
12553
  contact?: {
12644
12554
  __typename?: 'ContactObject';
12645
12555
  id?: string | null;
12646
- name?: string | null;
12647
12556
  firstName?: string | null;
12648
12557
  lastName?: string | null;
12649
12558
  email?: string | null;
@@ -12694,7 +12603,6 @@ export type ContactsQuery = {
12694
12603
  contacts?: Array<{
12695
12604
  __typename?: 'ContactObject';
12696
12605
  id?: string | null;
12697
- name?: string | null;
12698
12606
  firstName?: string | null;
12699
12607
  lastName?: string | null;
12700
12608
  email?: string | null;
@@ -12748,7 +12656,6 @@ export type ContactsInSegmentQuery = {
12748
12656
  items?: Array<{
12749
12657
  __typename?: 'ContactObject';
12750
12658
  id?: string | null;
12751
- name?: string | null;
12752
12659
  firstName?: string | null;
12753
12660
  lastName?: string | null;
12754
12661
  email?: string | null;
@@ -13088,7 +12995,6 @@ export type SearchContactsQuery = {
13088
12995
  items?: Array<{
13089
12996
  __typename?: 'ContactObject';
13090
12997
  id?: string | null;
13091
- name?: string | null;
13092
12998
  firstName?: string | null;
13093
12999
  lastName?: string | null;
13094
13000
  email?: string | null;
@@ -13283,7 +13189,6 @@ export type TaskQuery = {
13283
13189
  contacts?: Array<{
13284
13190
  __typename?: 'ContactObject';
13285
13191
  id?: string | null;
13286
- name?: string | null;
13287
13192
  firstName?: string | null;
13288
13193
  lastName?: string | null;
13289
13194
  email?: string | null;
@@ -13374,7 +13279,7 @@ export type TaskQuery = {
13374
13279
  __typename?: 'CompanyNoteObject';
13375
13280
  id?: string | null;
13376
13281
  date?: any | null;
13377
- noteType?: NoteTypeEnum | null;
13282
+ noteType?: string | null;
13378
13283
  duration?: string | null;
13379
13284
  competitorsMentioned?: string | null;
13380
13285
  notes?: string | null;
@@ -13404,7 +13309,6 @@ export type TaskQuery = {
13404
13309
  contactPerson?: {
13405
13310
  __typename?: 'ContactObject';
13406
13311
  id?: string | null;
13407
- name?: string | null;
13408
13312
  firstName?: string | null;
13409
13313
  lastName?: string | null;
13410
13314
  email?: string | null;
@@ -13483,7 +13387,6 @@ export type TaskQuery = {
13483
13387
  contact?: {
13484
13388
  __typename?: 'ContactObject';
13485
13389
  id?: string | null;
13486
- name?: string | null;
13487
13390
  firstName?: string | null;
13488
13391
  lastName?: string | null;
13489
13392
  email?: string | null;
@@ -13606,7 +13509,6 @@ export type TaskQuery = {
13606
13509
  contact?: {
13607
13510
  __typename?: 'ContactObject';
13608
13511
  id?: string | null;
13609
- name?: string | null;
13610
13512
  firstName?: string | null;
13611
13513
  lastName?: string | null;
13612
13514
  email?: string | null;
@@ -13753,7 +13655,6 @@ export type TasksQuery = {
13753
13655
  contacts?: Array<{
13754
13656
  __typename?: 'ContactObject';
13755
13657
  id?: string | null;
13756
- name?: string | null;
13757
13658
  firstName?: string | null;
13758
13659
  lastName?: string | null;
13759
13660
  email?: string | null;
@@ -13844,7 +13745,7 @@ export type TasksQuery = {
13844
13745
  __typename?: 'CompanyNoteObject';
13845
13746
  id?: string | null;
13846
13747
  date?: any | null;
13847
- noteType?: NoteTypeEnum | null;
13748
+ noteType?: string | null;
13848
13749
  duration?: string | null;
13849
13750
  competitorsMentioned?: string | null;
13850
13751
  notes?: string | null;
@@ -13874,7 +13775,6 @@ export type TasksQuery = {
13874
13775
  contactPerson?: {
13875
13776
  __typename?: 'ContactObject';
13876
13777
  id?: string | null;
13877
- name?: string | null;
13878
13778
  firstName?: string | null;
13879
13779
  lastName?: string | null;
13880
13780
  email?: string | null;
@@ -13953,7 +13853,6 @@ export type TasksQuery = {
13953
13853
  contact?: {
13954
13854
  __typename?: 'ContactObject';
13955
13855
  id?: string | null;
13956
- name?: string | null;
13957
13856
  firstName?: string | null;
13958
13857
  lastName?: string | null;
13959
13858
  email?: string | null;
@@ -14076,7 +13975,6 @@ export type TasksQuery = {
14076
13975
  contact?: {
14077
13976
  __typename?: 'ContactObject';
14078
13977
  id?: string | null;
14079
- name?: string | null;
14080
13978
  firstName?: string | null;
14081
13979
  lastName?: string | null;
14082
13980
  email?: string | null;