cf-service-sdk-dharani 0.0.62 → 0.0.65

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.
@@ -314,6 +314,14 @@ export declare enum AppNotificationNotificationTypeChoices {
314
314
  /** Warning */
315
315
  Warning = "WARNING"
316
316
  }
317
+ export type AuditLogItemType = {
318
+ __typename?: 'AuditLogItemType';
319
+ description?: Maybe<Scalars['String']['output']>;
320
+ id: Scalars['ID']['output'];
321
+ timestamp: Scalars['DateTime']['output'];
322
+ title: Scalars['String']['output'];
323
+ type: Scalars['String']['output'];
324
+ };
317
325
  /** BusinessProfileType */
318
326
  export type BusinessProfileType = {
319
327
  __typename?: 'BusinessProfileType';
@@ -979,6 +987,8 @@ export type CompanyObject = {
979
987
  address1?: Maybe<Scalars['String']['output']>;
980
988
  address2?: Maybe<Scalars['String']['output']>;
981
989
  annualRevenue?: Maybe<Scalars['String']['output']>;
990
+ /** Audit logs for the company */
991
+ auditLogs?: Maybe<Array<Maybe<AuditLogItemType>>>;
982
992
  /** Average score of all matched products for this company */
983
993
  averageScore?: Maybe<Scalars['Float']['output']>;
984
994
  city?: Maybe<Scalars['String']['output']>;
@@ -1150,6 +1160,7 @@ export type ContactObject = {
1150
1160
  __typename?: 'ContactObject';
1151
1161
  companyId?: Maybe<Scalars['ID']['output']>;
1152
1162
  companyName?: Maybe<Scalars['String']['output']>;
1163
+ companyOwners?: Maybe<Array<Maybe<CompanyOwnersObject>>>;
1153
1164
  contactLog?: Maybe<Array<Maybe<ContactLogObject>>>;
1154
1165
  email?: Maybe<Scalars['String']['output']>;
1155
1166
  firstName?: Maybe<Scalars['String']['output']>;
@@ -3759,6 +3770,18 @@ export type CreateCompanyMutation = {
3759
3770
  totalReplied?: number | null;
3760
3771
  totalBounced?: number | null;
3761
3772
  } | null;
3773
+ companyOwners?: Array<{
3774
+ __typename?: 'CompanyOwnersObject';
3775
+ id?: string | null;
3776
+ user?: {
3777
+ __typename?: 'UserType';
3778
+ id?: string | null;
3779
+ email?: string | null;
3780
+ firstName?: string | null;
3781
+ lastName?: string | null;
3782
+ picture?: string | null;
3783
+ } | null;
3784
+ } | null> | null;
3762
3785
  } | null> | null;
3763
3786
  productMetalScores?: Array<{
3764
3787
  __typename?: 'CompanyProductMetalScoreObject';
@@ -4258,6 +4281,14 @@ export type CreateCompanyMutation = {
4258
4281
  picture?: string | null;
4259
4282
  } | null;
4260
4283
  } | null> | null;
4284
+ auditLogs?: Array<{
4285
+ __typename?: 'AuditLogItemType';
4286
+ id: string;
4287
+ type: string;
4288
+ title: string;
4289
+ description?: string | null;
4290
+ timestamp: any;
4291
+ } | null> | null;
4261
4292
  industry?: {
4262
4293
  __typename?: 'IndustryTypeObject';
4263
4294
  id?: string | null;
@@ -4708,6 +4739,18 @@ export type CreateContactMutation = {
4708
4739
  totalReplied?: number | null;
4709
4740
  totalBounced?: number | null;
4710
4741
  } | null;
4742
+ companyOwners?: Array<{
4743
+ __typename?: 'CompanyOwnersObject';
4744
+ id?: string | null;
4745
+ user?: {
4746
+ __typename?: 'UserType';
4747
+ id?: string | null;
4748
+ email?: string | null;
4749
+ firstName?: string | null;
4750
+ lastName?: string | null;
4751
+ picture?: string | null;
4752
+ } | null;
4753
+ } | null> | null;
4711
4754
  } | null;
4712
4755
  } | null;
4713
4756
  };
@@ -5824,6 +5867,18 @@ export type SendEmailToContactMutation = {
5824
5867
  totalReplied?: number | null;
5825
5868
  totalBounced?: number | null;
5826
5869
  } | null;
5870
+ companyOwners?: Array<{
5871
+ __typename?: 'CompanyOwnersObject';
5872
+ id?: string | null;
5873
+ user?: {
5874
+ __typename?: 'UserType';
5875
+ id?: string | null;
5876
+ email?: string | null;
5877
+ firstName?: string | null;
5878
+ lastName?: string | null;
5879
+ picture?: string | null;
5880
+ } | null;
5881
+ } | null> | null;
5827
5882
  } | null;
5828
5883
  } | null;
5829
5884
  } | null;
@@ -6405,6 +6460,18 @@ export type UpdateCompanyMutation = {
6405
6460
  totalReplied?: number | null;
6406
6461
  totalBounced?: number | null;
6407
6462
  } | null;
6463
+ companyOwners?: Array<{
6464
+ __typename?: 'CompanyOwnersObject';
6465
+ id?: string | null;
6466
+ user?: {
6467
+ __typename?: 'UserType';
6468
+ id?: string | null;
6469
+ email?: string | null;
6470
+ firstName?: string | null;
6471
+ lastName?: string | null;
6472
+ picture?: string | null;
6473
+ } | null;
6474
+ } | null> | null;
6408
6475
  } | null> | null;
6409
6476
  productMetalScores?: Array<{
6410
6477
  __typename?: 'CompanyProductMetalScoreObject';
@@ -6904,6 +6971,14 @@ export type UpdateCompanyMutation = {
6904
6971
  picture?: string | null;
6905
6972
  } | null;
6906
6973
  } | null> | null;
6974
+ auditLogs?: Array<{
6975
+ __typename?: 'AuditLogItemType';
6976
+ id: string;
6977
+ type: string;
6978
+ title: string;
6979
+ description?: string | null;
6980
+ timestamp: any;
6981
+ } | null> | null;
6907
6982
  industry?: {
6908
6983
  __typename?: 'IndustryTypeObject';
6909
6984
  id?: string | null;
@@ -7354,6 +7429,18 @@ export type UpdateContactMutation = {
7354
7429
  totalReplied?: number | null;
7355
7430
  totalBounced?: number | null;
7356
7431
  } | null;
7432
+ companyOwners?: Array<{
7433
+ __typename?: 'CompanyOwnersObject';
7434
+ id?: string | null;
7435
+ user?: {
7436
+ __typename?: 'UserType';
7437
+ id?: string | null;
7438
+ email?: string | null;
7439
+ firstName?: string | null;
7440
+ lastName?: string | null;
7441
+ picture?: string | null;
7442
+ } | null;
7443
+ } | null> | null;
7357
7444
  } | null;
7358
7445
  } | null;
7359
7446
  };
@@ -8601,6 +8688,18 @@ export type CampaignLogsQuery = {
8601
8688
  totalReplied?: number | null;
8602
8689
  totalBounced?: number | null;
8603
8690
  } | null;
8691
+ companyOwners?: Array<{
8692
+ __typename?: 'CompanyOwnersObject';
8693
+ id?: string | null;
8694
+ user?: {
8695
+ __typename?: 'UserType';
8696
+ id?: string | null;
8697
+ email?: string | null;
8698
+ firstName?: string | null;
8699
+ lastName?: string | null;
8700
+ picture?: string | null;
8701
+ } | null;
8702
+ } | null> | null;
8604
8703
  } | null;
8605
8704
  campaignStats?: {
8606
8705
  __typename?: 'CampaignContactStatsType';
@@ -8769,6 +8868,18 @@ export type CampaignLogsQuery = {
8769
8868
  totalReplied?: number | null;
8770
8869
  totalBounced?: number | null;
8771
8870
  } | null;
8871
+ companyOwners?: Array<{
8872
+ __typename?: 'CompanyOwnersObject';
8873
+ id?: string | null;
8874
+ user?: {
8875
+ __typename?: 'UserType';
8876
+ id?: string | null;
8877
+ email?: string | null;
8878
+ firstName?: string | null;
8879
+ lastName?: string | null;
8880
+ picture?: string | null;
8881
+ } | null;
8882
+ } | null> | null;
8772
8883
  } | null;
8773
8884
  } | null> | null;
8774
8885
  } | null> | null;
@@ -9064,6 +9175,18 @@ export type CompaniesQuery = {
9064
9175
  totalReplied?: number | null;
9065
9176
  totalBounced?: number | null;
9066
9177
  } | null;
9178
+ companyOwners?: Array<{
9179
+ __typename?: 'CompanyOwnersObject';
9180
+ id?: string | null;
9181
+ user?: {
9182
+ __typename?: 'UserType';
9183
+ id?: string | null;
9184
+ email?: string | null;
9185
+ firstName?: string | null;
9186
+ lastName?: string | null;
9187
+ picture?: string | null;
9188
+ } | null;
9189
+ } | null> | null;
9067
9190
  } | null> | null;
9068
9191
  productMetalScores?: Array<{
9069
9192
  __typename?: 'CompanyProductMetalScoreObject';
@@ -9453,6 +9576,14 @@ export type CompaniesQuery = {
9453
9576
  picture?: string | null;
9454
9577
  } | null;
9455
9578
  } | null> | null;
9579
+ auditLogs?: Array<{
9580
+ __typename?: 'AuditLogItemType';
9581
+ id: string;
9582
+ type: string;
9583
+ title: string;
9584
+ description?: string | null;
9585
+ timestamp: any;
9586
+ } | null> | null;
9456
9587
  industry?: {
9457
9588
  __typename?: 'IndustryTypeObject';
9458
9589
  id?: string | null;
@@ -9672,6 +9803,18 @@ export type CompanyQuery = {
9672
9803
  totalReplied?: number | null;
9673
9804
  totalBounced?: number | null;
9674
9805
  } | null;
9806
+ companyOwners?: Array<{
9807
+ __typename?: 'CompanyOwnersObject';
9808
+ id?: string | null;
9809
+ user?: {
9810
+ __typename?: 'UserType';
9811
+ id?: string | null;
9812
+ email?: string | null;
9813
+ firstName?: string | null;
9814
+ lastName?: string | null;
9815
+ picture?: string | null;
9816
+ } | null;
9817
+ } | null> | null;
9675
9818
  } | null> | null;
9676
9819
  productMetalScores?: Array<{
9677
9820
  __typename?: 'CompanyProductMetalScoreObject';
@@ -10171,6 +10314,14 @@ export type CompanyQuery = {
10171
10314
  picture?: string | null;
10172
10315
  } | null;
10173
10316
  } | null> | null;
10317
+ auditLogs?: Array<{
10318
+ __typename?: 'AuditLogItemType';
10319
+ id: string;
10320
+ type: string;
10321
+ title: string;
10322
+ description?: string | null;
10323
+ timestamp: any;
10324
+ } | null> | null;
10174
10325
  industry?: {
10175
10326
  __typename?: 'IndustryTypeObject';
10176
10327
  id?: string | null;
@@ -10936,6 +11087,18 @@ export type ContactQuery = {
10936
11087
  totalReplied?: number | null;
10937
11088
  totalBounced?: number | null;
10938
11089
  } | null;
11090
+ companyOwners?: Array<{
11091
+ __typename?: 'CompanyOwnersObject';
11092
+ id?: string | null;
11093
+ user?: {
11094
+ __typename?: 'UserType';
11095
+ id?: string | null;
11096
+ email?: string | null;
11097
+ firstName?: string | null;
11098
+ lastName?: string | null;
11099
+ picture?: string | null;
11100
+ } | null;
11101
+ } | null> | null;
10939
11102
  } | null;
10940
11103
  };
10941
11104
  export type ContactsQueryVariables = Exact<{
@@ -11006,6 +11169,18 @@ export type ContactsQuery = {
11006
11169
  totalReplied?: number | null;
11007
11170
  totalBounced?: number | null;
11008
11171
  } | null;
11172
+ companyOwners?: Array<{
11173
+ __typename?: 'CompanyOwnersObject';
11174
+ id?: string | null;
11175
+ user?: {
11176
+ __typename?: 'UserType';
11177
+ id?: string | null;
11178
+ email?: string | null;
11179
+ firstName?: string | null;
11180
+ lastName?: string | null;
11181
+ picture?: string | null;
11182
+ } | null;
11183
+ } | null> | null;
11009
11184
  } | null> | null;
11010
11185
  };
11011
11186
  export type ContactsInSegmentQueryVariables = Exact<{
@@ -11079,6 +11254,18 @@ export type ContactsInSegmentQuery = {
11079
11254
  totalReplied?: number | null;
11080
11255
  totalBounced?: number | null;
11081
11256
  } | null;
11257
+ companyOwners?: Array<{
11258
+ __typename?: 'CompanyOwnersObject';
11259
+ id?: string | null;
11260
+ user?: {
11261
+ __typename?: 'UserType';
11262
+ id?: string | null;
11263
+ email?: string | null;
11264
+ firstName?: string | null;
11265
+ lastName?: string | null;
11266
+ picture?: string | null;
11267
+ } | null;
11268
+ } | null> | null;
11082
11269
  } | null> | null;
11083
11270
  pagination?: {
11084
11271
  __typename?: 'PaginationInfo';
@@ -11475,6 +11662,18 @@ export type RecentHistoryQuery = {
11475
11662
  totalReplied?: number | null;
11476
11663
  totalBounced?: number | null;
11477
11664
  } | null;
11665
+ companyOwners?: Array<{
11666
+ __typename?: 'CompanyOwnersObject';
11667
+ id?: string | null;
11668
+ user?: {
11669
+ __typename?: 'UserType';
11670
+ id?: string | null;
11671
+ email?: string | null;
11672
+ firstName?: string | null;
11673
+ lastName?: string | null;
11674
+ picture?: string | null;
11675
+ } | null;
11676
+ } | null> | null;
11478
11677
  } | null;
11479
11678
  company?: {
11480
11679
  __typename?: 'CompanyObject';
@@ -11626,6 +11825,18 @@ export type RecentHistoryQuery = {
11626
11825
  totalReplied?: number | null;
11627
11826
  totalBounced?: number | null;
11628
11827
  } | null;
11828
+ companyOwners?: Array<{
11829
+ __typename?: 'CompanyOwnersObject';
11830
+ id?: string | null;
11831
+ user?: {
11832
+ __typename?: 'UserType';
11833
+ id?: string | null;
11834
+ email?: string | null;
11835
+ firstName?: string | null;
11836
+ lastName?: string | null;
11837
+ picture?: string | null;
11838
+ } | null;
11839
+ } | null> | null;
11629
11840
  } | null> | null;
11630
11841
  productMetalScores?: Array<{
11631
11842
  __typename?: 'CompanyProductMetalScoreObject';
@@ -11981,6 +12192,14 @@ export type RecentHistoryQuery = {
11981
12192
  picture?: string | null;
11982
12193
  } | null;
11983
12194
  } | null> | null;
12195
+ auditLogs?: Array<{
12196
+ __typename?: 'AuditLogItemType';
12197
+ id: string;
12198
+ type: string;
12199
+ title: string;
12200
+ description?: string | null;
12201
+ timestamp: any;
12202
+ } | null> | null;
11984
12203
  industry?: {
11985
12204
  __typename?: 'IndustryTypeObject';
11986
12205
  id?: string | null;
@@ -12137,6 +12356,18 @@ export type SearchContactsQuery = {
12137
12356
  totalReplied?: number | null;
12138
12357
  totalBounced?: number | null;
12139
12358
  } | null;
12359
+ companyOwners?: Array<{
12360
+ __typename?: 'CompanyOwnersObject';
12361
+ id?: string | null;
12362
+ user?: {
12363
+ __typename?: 'UserType';
12364
+ id?: string | null;
12365
+ email?: string | null;
12366
+ firstName?: string | null;
12367
+ lastName?: string | null;
12368
+ picture?: string | null;
12369
+ } | null;
12370
+ } | null> | null;
12140
12371
  } | null> | null;
12141
12372
  pagination?: {
12142
12373
  __typename?: 'PaginationInfo';
@@ -1520,6 +1520,16 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
1520
1520
  totalReplied
1521
1521
  totalBounced
1522
1522
  }
1523
+ companyOwners {
1524
+ id
1525
+ user {
1526
+ id
1527
+ email
1528
+ firstName
1529
+ lastName
1530
+ picture
1531
+ }
1532
+ }
1523
1533
  isProspect
1524
1534
  }
1525
1535
  productMetalScores {
@@ -1983,6 +1993,13 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
1983
1993
  picture
1984
1994
  }
1985
1995
  }
1996
+ auditLogs {
1997
+ id
1998
+ type
1999
+ title
2000
+ description
2001
+ timestamp
2002
+ }
1986
2003
  pk
1987
2004
  industry {
1988
2005
  industrySector {
@@ -2441,6 +2458,16 @@ exports.CreateContactDocument = (0, client_1.gql) `
2441
2458
  totalReplied
2442
2459
  totalBounced
2443
2460
  }
2461
+ companyOwners {
2462
+ id
2463
+ user {
2464
+ id
2465
+ email
2466
+ firstName
2467
+ lastName
2468
+ picture
2469
+ }
2470
+ }
2444
2471
  isProspect
2445
2472
  }
2446
2473
  }
@@ -4111,6 +4138,16 @@ exports.SendEmailToContactDocument = (0, client_1.gql) `
4111
4138
  totalReplied
4112
4139
  totalBounced
4113
4140
  }
4141
+ companyOwners {
4142
+ id
4143
+ user {
4144
+ id
4145
+ email
4146
+ firstName
4147
+ lastName
4148
+ picture
4149
+ }
4150
+ }
4114
4151
  isProspect
4115
4152
  }
4116
4153
  sentAt
@@ -4856,6 +4893,16 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
4856
4893
  totalReplied
4857
4894
  totalBounced
4858
4895
  }
4896
+ companyOwners {
4897
+ id
4898
+ user {
4899
+ id
4900
+ email
4901
+ firstName
4902
+ lastName
4903
+ picture
4904
+ }
4905
+ }
4859
4906
  isProspect
4860
4907
  }
4861
4908
  productMetalScores {
@@ -5319,6 +5366,13 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
5319
5366
  picture
5320
5367
  }
5321
5368
  }
5369
+ auditLogs {
5370
+ id
5371
+ type
5372
+ title
5373
+ description
5374
+ timestamp
5375
+ }
5322
5376
  pk
5323
5377
  industry {
5324
5378
  industrySector {
@@ -5777,6 +5831,16 @@ exports.UpdateContactDocument = (0, client_1.gql) `
5777
5831
  totalReplied
5778
5832
  totalBounced
5779
5833
  }
5834
+ companyOwners {
5835
+ id
5836
+ user {
5837
+ id
5838
+ email
5839
+ firstName
5840
+ lastName
5841
+ picture
5842
+ }
5843
+ }
5780
5844
  isProspect
5781
5845
  }
5782
5846
  }
@@ -7355,6 +7419,16 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
7355
7419
  totalReplied
7356
7420
  totalBounced
7357
7421
  }
7422
+ companyOwners {
7423
+ id
7424
+ user {
7425
+ id
7426
+ email
7427
+ firstName
7428
+ lastName
7429
+ picture
7430
+ }
7431
+ }
7358
7432
  isProspect
7359
7433
  }
7360
7434
  campaignStats {
@@ -7495,6 +7569,16 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
7495
7569
  totalReplied
7496
7570
  totalBounced
7497
7571
  }
7572
+ companyOwners {
7573
+ id
7574
+ user {
7575
+ id
7576
+ email
7577
+ firstName
7578
+ lastName
7579
+ picture
7580
+ }
7581
+ }
7498
7582
  isProspect
7499
7583
  }
7500
7584
  sentAt
@@ -7851,6 +7935,16 @@ exports.CompaniesDocument = (0, client_1.gql) `
7851
7935
  totalReplied
7852
7936
  totalBounced
7853
7937
  }
7938
+ companyOwners {
7939
+ id
7940
+ user {
7941
+ id
7942
+ email
7943
+ firstName
7944
+ lastName
7945
+ picture
7946
+ }
7947
+ }
7854
7948
  isProspect
7855
7949
  }
7856
7950
  productMetalScores {
@@ -8212,6 +8306,13 @@ exports.CompaniesDocument = (0, client_1.gql) `
8212
8306
  picture
8213
8307
  }
8214
8308
  }
8309
+ auditLogs {
8310
+ id
8311
+ type
8312
+ title
8313
+ description
8314
+ timestamp
8315
+ }
8215
8316
  pk
8216
8317
  industry {
8217
8318
  industrySector {
@@ -8437,6 +8538,16 @@ exports.CompanyDocument = (0, client_1.gql) `
8437
8538
  totalReplied
8438
8539
  totalBounced
8439
8540
  }
8541
+ companyOwners {
8542
+ id
8543
+ user {
8544
+ id
8545
+ email
8546
+ firstName
8547
+ lastName
8548
+ picture
8549
+ }
8550
+ }
8440
8551
  isProspect
8441
8552
  }
8442
8553
  productMetalScores {
@@ -8900,6 +9011,13 @@ exports.CompanyDocument = (0, client_1.gql) `
8900
9011
  picture
8901
9012
  }
8902
9013
  }
9014
+ auditLogs {
9015
+ id
9016
+ type
9017
+ title
9018
+ description
9019
+ timestamp
9020
+ }
8903
9021
  pk
8904
9022
  industry {
8905
9023
  industrySector {
@@ -9693,6 +9811,16 @@ exports.ContactDocument = (0, client_1.gql) `
9693
9811
  totalReplied
9694
9812
  totalBounced
9695
9813
  }
9814
+ companyOwners {
9815
+ id
9816
+ user {
9817
+ id
9818
+ email
9819
+ firstName
9820
+ lastName
9821
+ picture
9822
+ }
9823
+ }
9696
9824
  isProspect
9697
9825
  }
9698
9826
  }
@@ -9783,6 +9911,16 @@ exports.ContactsDocument = (0, client_1.gql) `
9783
9911
  totalReplied
9784
9912
  totalBounced
9785
9913
  }
9914
+ companyOwners {
9915
+ id
9916
+ user {
9917
+ id
9918
+ email
9919
+ firstName
9920
+ lastName
9921
+ picture
9922
+ }
9923
+ }
9786
9924
  isProspect
9787
9925
  }
9788
9926
  }
@@ -9873,6 +10011,16 @@ exports.ContactsInSegmentDocument = (0, client_1.gql) `
9873
10011
  totalReplied
9874
10012
  totalBounced
9875
10013
  }
10014
+ companyOwners {
10015
+ id
10016
+ user {
10017
+ id
10018
+ email
10019
+ firstName
10020
+ lastName
10021
+ picture
10022
+ }
10023
+ }
9876
10024
  isProspect
9877
10025
  }
9878
10026
  pagination {
@@ -10651,6 +10799,16 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
10651
10799
  totalReplied
10652
10800
  totalBounced
10653
10801
  }
10802
+ companyOwners {
10803
+ id
10804
+ user {
10805
+ id
10806
+ email
10807
+ firstName
10808
+ lastName
10809
+ picture
10810
+ }
10811
+ }
10654
10812
  isProspect
10655
10813
  }
10656
10814
  company {
@@ -10782,6 +10940,16 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
10782
10940
  totalReplied
10783
10941
  totalBounced
10784
10942
  }
10943
+ companyOwners {
10944
+ id
10945
+ user {
10946
+ id
10947
+ email
10948
+ firstName
10949
+ lastName
10950
+ picture
10951
+ }
10952
+ }
10785
10953
  isProspect
10786
10954
  }
10787
10955
  productMetalScores {
@@ -11111,6 +11279,13 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
11111
11279
  picture
11112
11280
  }
11113
11281
  }
11282
+ auditLogs {
11283
+ id
11284
+ type
11285
+ title
11286
+ description
11287
+ timestamp
11288
+ }
11114
11289
  pk
11115
11290
  industry {
11116
11291
  industrySector {
@@ -11323,6 +11498,16 @@ exports.SearchContactsDocument = (0, client_1.gql) `
11323
11498
  totalReplied
11324
11499
  totalBounced
11325
11500
  }
11501
+ companyOwners {
11502
+ id
11503
+ user {
11504
+ id
11505
+ email
11506
+ firstName
11507
+ lastName
11508
+ picture
11509
+ }
11510
+ }
11326
11511
  isProspect
11327
11512
  }
11328
11513
  pagination {
package/dist/mutations.js CHANGED
@@ -248,6 +248,16 @@ mutation CreateContact($input: ContactInput) {
248
248
  totalReplied
249
249
  totalBounced
250
250
  }
251
+ companyOwners {
252
+ id
253
+ user {
254
+ id
255
+ email
256
+ firstName
257
+ lastName
258
+ picture
259
+ }
260
+ }
251
261
  isProspect
252
262
  }
253
263
  }
@@ -311,6 +321,16 @@ mutation UpdateContact($input: ContactInput) {
311
321
  totalReplied
312
322
  totalBounced
313
323
  }
324
+ companyOwners {
325
+ id
326
+ user {
327
+ id
328
+ email
329
+ firstName
330
+ lastName
331
+ picture
332
+ }
333
+ }
314
334
  isProspect
315
335
  }
316
336
  }
@@ -453,6 +473,16 @@ mutation CreateCompany($input: CompanyInput) {
453
473
  totalReplied
454
474
  totalBounced
455
475
  }
476
+ companyOwners {
477
+ id
478
+ user {
479
+ id
480
+ email
481
+ firstName
482
+ lastName
483
+ picture
484
+ }
485
+ }
456
486
  isProspect
457
487
  }
458
488
  productMetalScores {
@@ -916,6 +946,13 @@ mutation CreateCompany($input: CompanyInput) {
916
946
  picture
917
947
  }
918
948
  }
949
+ auditLogs {
950
+ id
951
+ type
952
+ title
953
+ description
954
+ timestamp
955
+ }
919
956
  pk
920
957
  industry {
921
958
  industrySector {
@@ -1103,6 +1140,16 @@ mutation UpdateCompany($input: CompanyInput) {
1103
1140
  totalReplied
1104
1141
  totalBounced
1105
1142
  }
1143
+ companyOwners {
1144
+ id
1145
+ user {
1146
+ id
1147
+ email
1148
+ firstName
1149
+ lastName
1150
+ picture
1151
+ }
1152
+ }
1106
1153
  isProspect
1107
1154
  }
1108
1155
  productMetalScores {
@@ -1566,6 +1613,13 @@ mutation UpdateCompany($input: CompanyInput) {
1566
1613
  picture
1567
1614
  }
1568
1615
  }
1616
+ auditLogs {
1617
+ id
1618
+ type
1619
+ title
1620
+ description
1621
+ timestamp
1622
+ }
1569
1623
  pk
1570
1624
  industry {
1571
1625
  industrySector {
@@ -2484,6 +2538,16 @@ mutation SendEmailToContact($campaignId: ID, $contactId: ID!, $segmentId: ID, $s
2484
2538
  totalReplied
2485
2539
  totalBounced
2486
2540
  }
2541
+ companyOwners {
2542
+ id
2543
+ user {
2544
+ id
2545
+ email
2546
+ firstName
2547
+ lastName
2548
+ picture
2549
+ }
2550
+ }
2487
2551
  isProspect
2488
2552
  }
2489
2553
  sentAt
package/dist/queries.js CHANGED
@@ -92,6 +92,16 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
92
92
  totalReplied
93
93
  totalBounced
94
94
  }
95
+ companyOwners {
96
+ id
97
+ user {
98
+ id
99
+ email
100
+ firstName
101
+ lastName
102
+ picture
103
+ }
104
+ }
95
105
  isProspect
96
106
  }
97
107
  company {
@@ -223,6 +233,16 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
223
233
  totalReplied
224
234
  totalBounced
225
235
  }
236
+ companyOwners {
237
+ id
238
+ user {
239
+ id
240
+ email
241
+ firstName
242
+ lastName
243
+ picture
244
+ }
245
+ }
226
246
  isProspect
227
247
  }
228
248
  productMetalScores {
@@ -552,6 +572,13 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
552
572
  picture
553
573
  }
554
574
  }
575
+ auditLogs {
576
+ id
577
+ type
578
+ title
579
+ description
580
+ timestamp
581
+ }
555
582
  pk
556
583
  industry {
557
584
  industrySector {
@@ -2465,6 +2492,16 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
2465
2492
  totalReplied
2466
2493
  totalBounced
2467
2494
  }
2495
+ companyOwners {
2496
+ id
2497
+ user {
2498
+ id
2499
+ email
2500
+ firstName
2501
+ lastName
2502
+ picture
2503
+ }
2504
+ }
2468
2505
  isProspect
2469
2506
  }
2470
2507
  campaignStats {
@@ -2605,6 +2642,16 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
2605
2642
  totalReplied
2606
2643
  totalBounced
2607
2644
  }
2645
+ companyOwners {
2646
+ id
2647
+ user {
2648
+ id
2649
+ email
2650
+ firstName
2651
+ lastName
2652
+ picture
2653
+ }
2654
+ }
2608
2655
  isProspect
2609
2656
  }
2610
2657
  sentAt
@@ -2796,6 +2843,16 @@ query ContactsInSegment($segmentId: ID!, $pagination: PaginationInput) {
2796
2843
  totalReplied
2797
2844
  totalBounced
2798
2845
  }
2846
+ companyOwners {
2847
+ id
2848
+ user {
2849
+ id
2850
+ email
2851
+ firstName
2852
+ lastName
2853
+ picture
2854
+ }
2855
+ }
2799
2856
  isProspect
2800
2857
  }
2801
2858
  pagination {
@@ -2940,6 +2997,16 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
2940
2997
  totalReplied
2941
2998
  totalBounced
2942
2999
  }
3000
+ companyOwners {
3001
+ id
3002
+ user {
3003
+ id
3004
+ email
3005
+ firstName
3006
+ lastName
3007
+ picture
3008
+ }
3009
+ }
2943
3010
  isProspect
2944
3011
  }
2945
3012
  productMetalScores {
@@ -3301,6 +3368,13 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
3301
3368
  picture
3302
3369
  }
3303
3370
  }
3371
+ auditLogs {
3372
+ id
3373
+ type
3374
+ title
3375
+ description
3376
+ timestamp
3377
+ }
3304
3378
  pk
3305
3379
  industry {
3306
3380
  industrySector {
@@ -3422,6 +3496,16 @@ query Contacts {
3422
3496
  totalReplied
3423
3497
  totalBounced
3424
3498
  }
3499
+ companyOwners {
3500
+ id
3501
+ user {
3502
+ id
3503
+ email
3504
+ firstName
3505
+ lastName
3506
+ picture
3507
+ }
3508
+ }
3425
3509
  isProspect
3426
3510
  }
3427
3511
  }`;
@@ -3484,6 +3568,16 @@ query SearchContacts($filters: ContactFilterInput, $pagination: PaginationInput,
3484
3568
  totalReplied
3485
3569
  totalBounced
3486
3570
  }
3571
+ companyOwners {
3572
+ id
3573
+ user {
3574
+ id
3575
+ email
3576
+ firstName
3577
+ lastName
3578
+ picture
3579
+ }
3580
+ }
3487
3581
  isProspect
3488
3582
  }
3489
3583
  pagination {
@@ -3627,6 +3721,16 @@ query Company($id: String) {
3627
3721
  totalReplied
3628
3722
  totalBounced
3629
3723
  }
3724
+ companyOwners {
3725
+ id
3726
+ user {
3727
+ id
3728
+ email
3729
+ firstName
3730
+ lastName
3731
+ picture
3732
+ }
3733
+ }
3630
3734
  isProspect
3631
3735
  }
3632
3736
  productMetalScores {
@@ -4090,6 +4194,13 @@ query Company($id: String) {
4090
4194
  picture
4091
4195
  }
4092
4196
  }
4197
+ auditLogs {
4198
+ id
4199
+ type
4200
+ title
4201
+ description
4202
+ timestamp
4203
+ }
4093
4204
  pk
4094
4205
  industry {
4095
4206
  industrySector {
@@ -4202,6 +4313,16 @@ query Contact($id: String) {
4202
4313
  totalReplied
4203
4314
  totalBounced
4204
4315
  }
4316
+ companyOwners {
4317
+ id
4318
+ user {
4319
+ id
4320
+ email
4321
+ firstName
4322
+ lastName
4323
+ picture
4324
+ }
4325
+ }
4205
4326
  isProspect
4206
4327
  }
4207
4328
  }`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk-dharani",
3
- "version": "0.0.62",
3
+ "version": "0.0.65",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",