cf-service-sdk 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/graphql.d.ts +58 -917
- package/dist/generated/graphql.js +26 -786
- package/dist/mutations.d.ts +0 -1
- package/dist/mutations.js +7 -399
- package/dist/queries.d.ts +0 -1
- package/dist/queries.js +14 -310
- package/dist/sdk.d.ts +199 -202
- package/dist/sdk.js +8 -19
- package/package.json +2 -2
|
@@ -42,26 +42,52 @@ export type Scalars = {
|
|
|
42
42
|
input: number;
|
|
43
43
|
output: number;
|
|
44
44
|
};
|
|
45
|
+
/**
|
|
46
|
+
* The `Date` scalar type represents a Date
|
|
47
|
+
* value as specified by
|
|
48
|
+
* [iso8601](https://en.wikipedia.org/wiki/ISO_8601).
|
|
49
|
+
*/
|
|
45
50
|
Date: {
|
|
46
51
|
input: any;
|
|
47
52
|
output: any;
|
|
48
53
|
};
|
|
54
|
+
/**
|
|
55
|
+
* The `DateTime` scalar type represents a DateTime
|
|
56
|
+
* value as specified by
|
|
57
|
+
* [iso8601](https://en.wikipedia.org/wiki/ISO_8601).
|
|
58
|
+
*/
|
|
49
59
|
DateTime: {
|
|
50
60
|
input: any;
|
|
51
61
|
output: any;
|
|
52
62
|
};
|
|
63
|
+
/** The `Decimal` scalar type represents a python Decimal. */
|
|
53
64
|
Decimal: {
|
|
54
65
|
input: any;
|
|
55
66
|
output: any;
|
|
56
67
|
};
|
|
68
|
+
/**
|
|
69
|
+
* The `GenericScalar` scalar type represents a generic
|
|
70
|
+
* GraphQL scalar value that could be:
|
|
71
|
+
* String, Boolean, Int, Float, List or Object.
|
|
72
|
+
*/
|
|
57
73
|
GenericScalar: {
|
|
58
74
|
input: any;
|
|
59
75
|
output: any;
|
|
60
76
|
};
|
|
77
|
+
/**
|
|
78
|
+
* Allows use of a JSON String for input / output from the GraphQL schema.
|
|
79
|
+
*
|
|
80
|
+
* Use of this type is *not recommended* as you lose the benefits of having a defined, static
|
|
81
|
+
* schema (one of the key benefits of GraphQL).
|
|
82
|
+
*/
|
|
61
83
|
JSONString: {
|
|
62
84
|
input: any;
|
|
63
85
|
output: any;
|
|
64
86
|
};
|
|
87
|
+
/**
|
|
88
|
+
* Leverages the internal Python implementation of UUID (uuid.UUID) to provide native UUID objects
|
|
89
|
+
* in fields, resolvers and input.
|
|
90
|
+
*/
|
|
65
91
|
UUID: {
|
|
66
92
|
input: any;
|
|
67
93
|
output: any;
|
|
@@ -91,13 +117,6 @@ export type AccountMemberType = {
|
|
|
91
117
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92
118
|
user?: Maybe<UserType>;
|
|
93
119
|
};
|
|
94
|
-
/** AccountProfileType - GraphQL type for AccountProfile model */
|
|
95
|
-
export type AccountProfileType = {
|
|
96
|
-
__typename?: 'AccountProfileType';
|
|
97
|
-
/** Additional company profile information in JSON format to be user in Email Generation */
|
|
98
|
-
companyProfile?: Maybe<Scalars['JSONString']['output']>;
|
|
99
|
-
id: Scalars['ID']['output'];
|
|
100
|
-
};
|
|
101
120
|
/** AccountType */
|
|
102
121
|
export type AccountType = {
|
|
103
122
|
__typename?: 'AccountType';
|
|
@@ -385,8 +404,6 @@ export type CallCampaignObject = {
|
|
|
385
404
|
/** Total number of contacts in the call campaign */
|
|
386
405
|
contacts?: Maybe<Scalars['Int']['output']>;
|
|
387
406
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
388
|
-
/** User who created this call campaign */
|
|
389
|
-
createdBy?: Maybe<UserType>;
|
|
390
407
|
/** Description of the call campaign */
|
|
391
408
|
description?: Maybe<Scalars['String']['output']>;
|
|
392
409
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -532,6 +549,8 @@ export type CampaignContactItemType = {
|
|
|
532
549
|
logs?: Maybe<Array<Maybe<CombinedCampaignLogObject>>>;
|
|
533
550
|
/** Phone of the contact */
|
|
534
551
|
phone?: Maybe<Scalars['String']['output']>;
|
|
552
|
+
populatedBody?: Maybe<Scalars['String']['output']>;
|
|
553
|
+
populatedSubject?: Maybe<Scalars['String']['output']>;
|
|
535
554
|
/** Step ID for combined campaign contacts */
|
|
536
555
|
stepId?: Maybe<Scalars['ID']['output']>;
|
|
537
556
|
/** Step order for combined campaign contacts */
|
|
@@ -633,8 +652,6 @@ export type CampaignObject = {
|
|
|
633
652
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
634
653
|
/** Creation date and time of the campaign */
|
|
635
654
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
636
|
-
/** User who created this campaign */
|
|
637
|
-
createdBy?: Maybe<UserType>;
|
|
638
655
|
/** Description of the campaign */
|
|
639
656
|
description?: Maybe<Scalars['String']['output']>;
|
|
640
657
|
/** Preview of the email content */
|
|
@@ -663,10 +680,6 @@ export type CampaignObject = {
|
|
|
663
680
|
status?: Maybe<Scalars['String']['output']>;
|
|
664
681
|
/** Preview of the campaign steps */
|
|
665
682
|
stepsPreview?: Maybe<Scalars['GenericScalar']['output']>;
|
|
666
|
-
/** Primary subject line for this campaign (first email step) */
|
|
667
|
-
subjectLine?: Maybe<Scalars['String']['output']>;
|
|
668
|
-
/** All email step subject lines for this campaign */
|
|
669
|
-
subjectLines?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
670
683
|
/** Total emails bounced for this campaign */
|
|
671
684
|
totalBounced?: Maybe<Scalars['Int']['output']>;
|
|
672
685
|
/** Total emails clicked for this campaign */
|
|
@@ -839,6 +852,8 @@ export type CombinedCampaignLogObject = {
|
|
|
839
852
|
outcome?: Maybe<Scalars['String']['output']>;
|
|
840
853
|
productsOfInterest?: Maybe<Scalars['GenericScalar']['output']>;
|
|
841
854
|
scheduledFor?: Maybe<Scalars['DateTime']['output']>;
|
|
855
|
+
/** Actual subject from sent email (populated from ContactLog) */
|
|
856
|
+
sentSubject?: Maybe<Scalars['String']['output']>;
|
|
842
857
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
843
858
|
status?: Maybe<Scalars['String']['output']>;
|
|
844
859
|
step?: Maybe<CombinedCampaignStepObject>;
|
|
@@ -874,8 +889,6 @@ export type CombinedCampaignObject = {
|
|
|
874
889
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
875
890
|
completedContacts?: Maybe<Scalars['Int']['output']>;
|
|
876
891
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
877
|
-
/** User who created this combined campaign */
|
|
878
|
-
createdBy?: Maybe<UserType>;
|
|
879
892
|
description?: Maybe<Scalars['String']['output']>;
|
|
880
893
|
id?: Maybe<Scalars['ID']['output']>;
|
|
881
894
|
lastActivity?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -889,10 +902,6 @@ export type CombinedCampaignObject = {
|
|
|
889
902
|
stepStats?: Maybe<Array<Maybe<CombinedCampaignStepStatsObject>>>;
|
|
890
903
|
steps?: Maybe<Array<Maybe<CombinedCampaignStepObject>>>;
|
|
891
904
|
stepsPreview?: Maybe<Scalars['GenericScalar']['output']>;
|
|
892
|
-
/** Primary subject line (from first email step) */
|
|
893
|
-
subjectLine?: Maybe<Scalars['String']['output']>;
|
|
894
|
-
/** All email step subject lines (automated_email + manual_email steps) */
|
|
895
|
-
subjectLines?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
896
905
|
totalContacts?: Maybe<Scalars['Int']['output']>;
|
|
897
906
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
898
907
|
uuid?: Maybe<Scalars['String']['output']>;
|
|
@@ -1379,11 +1388,6 @@ export type CompanyProductMetalScoreObject = {
|
|
|
1379
1388
|
/** User last name who assigned this product metal */
|
|
1380
1389
|
userLastName?: Maybe<Scalars['String']['output']>;
|
|
1381
1390
|
};
|
|
1382
|
-
/** CompanyProfileInput for updating company profile JSON field */
|
|
1383
|
-
export type CompanyProfileInput = {
|
|
1384
|
-
/** Company profile JSON data */
|
|
1385
|
-
companyProfile: Scalars['JSONString']['input'];
|
|
1386
|
-
};
|
|
1387
1391
|
export type CompanyServiceType = {
|
|
1388
1392
|
__typename?: 'CompanyServiceType';
|
|
1389
1393
|
id: Scalars['ID']['output'];
|
|
@@ -2236,8 +2240,6 @@ export type MailLogObject = {
|
|
|
2236
2240
|
};
|
|
2237
2241
|
/** Email communication type */
|
|
2238
2242
|
export declare enum MailLogTypeEnum {
|
|
2239
|
-
CampaignEmail = "CAMPAIGN_EMAIL",
|
|
2240
|
-
CampaignReply = "CAMPAIGN_REPLY",
|
|
2241
2243
|
IncomingEmail = "INCOMING_EMAIL",
|
|
2242
2244
|
OutgoingEmail = "OUTGOING_EMAIL"
|
|
2243
2245
|
}
|
|
@@ -2423,7 +2425,9 @@ export type Mutation = {
|
|
|
2423
2425
|
sendEmailToContact?: Maybe<SendEmailToContact>;
|
|
2424
2426
|
/**
|
|
2425
2427
|
* Send an email as a reply, reply all, or forward from an email thread.
|
|
2426
|
-
*
|
|
2428
|
+
* Supports both:
|
|
2429
|
+
* - External emails (MailLog): Gmail/Outlook emails via Nylas integration
|
|
2430
|
+
* - Campaign emails (ContactLog): Emails sent from campaigns, combined campaigns, or CRM contacts
|
|
2427
2431
|
*
|
|
2428
2432
|
* Follows Gmail rules for Re: and Fwd: subject prefixes.
|
|
2429
2433
|
* Creates an async Celery task for email delivery and webhook notifications.
|
|
@@ -2462,8 +2466,6 @@ export type Mutation = {
|
|
|
2462
2466
|
updateCompany?: Maybe<UpdateCompany>;
|
|
2463
2467
|
updateCompanyExternalIdentifier?: Maybe<UpdateCompanyExternalIdentifier>;
|
|
2464
2468
|
updateCompanyNote?: Maybe<UpdateCompanyNote>;
|
|
2465
|
-
/** UpdateCompanyProfile - Update the company profile JSON field for the user's account */
|
|
2466
|
-
updateCompanyProfile?: Maybe<UpdateCompanyProfile>;
|
|
2467
2469
|
updateContact?: Maybe<UpdateContact>;
|
|
2468
2470
|
/** UpdateEmailTemplate - Update an existing email template (only if owned by user's account) */
|
|
2469
2471
|
updateEmailTemplate?: Maybe<UpdateEmailTemplate>;
|
|
@@ -2829,7 +2831,8 @@ export type MutationSendEmailToEmailThreadArgs = {
|
|
|
2829
2831
|
bccEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2830
2832
|
body: Scalars['String']['input'];
|
|
2831
2833
|
ccEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2832
|
-
|
|
2834
|
+
contactLogId?: InputMaybe<Scalars['Int']['input']>;
|
|
2835
|
+
mailLogId?: InputMaybe<Scalars['Int']['input']>;
|
|
2833
2836
|
subject?: InputMaybe<Scalars['String']['input']>;
|
|
2834
2837
|
toEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2835
2838
|
};
|
|
@@ -2940,10 +2943,6 @@ export type MutationUpdateCompanyNoteArgs = {
|
|
|
2940
2943
|
input: CompanyNoteInput;
|
|
2941
2944
|
};
|
|
2942
2945
|
/** Mutations */
|
|
2943
|
-
export type MutationUpdateCompanyProfileArgs = {
|
|
2944
|
-
input: CompanyProfileInput;
|
|
2945
|
-
};
|
|
2946
|
-
/** Mutations */
|
|
2947
2946
|
export type MutationUpdateContactArgs = {
|
|
2948
2947
|
input?: InputMaybe<ContactInput>;
|
|
2949
2948
|
};
|
|
@@ -3510,7 +3509,6 @@ export type ProductTypeObject = {
|
|
|
3510
3509
|
export type Query = {
|
|
3511
3510
|
__typename?: 'Query';
|
|
3512
3511
|
accountMembers?: Maybe<Array<Maybe<AccountMemberType>>>;
|
|
3513
|
-
accountProfile?: Maybe<AccountProfileType>;
|
|
3514
3512
|
/** Get the current account's subscription */
|
|
3515
3513
|
accountSubscription?: Maybe<SubscriptionType>;
|
|
3516
3514
|
businessProfile?: Maybe<BusinessProfileType>;
|
|
@@ -3662,7 +3660,6 @@ export type QueryCallCampaignReportArgs = {
|
|
|
3662
3660
|
};
|
|
3663
3661
|
/** Query */
|
|
3664
3662
|
export type QueryCallCampaignsArgs = {
|
|
3665
|
-
createdById?: InputMaybe<Scalars['String']['input']>;
|
|
3666
3663
|
pagination: PaginationInput;
|
|
3667
3664
|
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
3668
3665
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3694,7 +3691,6 @@ export type QueryCampaignStatsArgs = {
|
|
|
3694
3691
|
};
|
|
3695
3692
|
/** Query */
|
|
3696
3693
|
export type QueryCampaignsArgs = {
|
|
3697
|
-
createdById?: InputMaybe<Scalars['String']['input']>;
|
|
3698
3694
|
pagination: PaginationInput;
|
|
3699
3695
|
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
3700
3696
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3730,7 +3726,6 @@ export type QueryCombinedCampaignTemplateArgs = {
|
|
|
3730
3726
|
};
|
|
3731
3727
|
/** Query */
|
|
3732
3728
|
export type QueryCombinedCampaignsArgs = {
|
|
3733
|
-
createdById?: InputMaybe<Scalars['String']['input']>;
|
|
3734
3729
|
pagination?: InputMaybe<PaginationInput>;
|
|
3735
3730
|
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
3736
3731
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4341,14 +4336,18 @@ export type SendEmailToContact = {
|
|
|
4341
4336
|
};
|
|
4342
4337
|
/**
|
|
4343
4338
|
* Send an email as a reply, reply all, or forward from an email thread.
|
|
4344
|
-
*
|
|
4339
|
+
* Supports both:
|
|
4340
|
+
* - External emails (MailLog): Gmail/Outlook emails via Nylas integration
|
|
4341
|
+
* - Campaign emails (ContactLog): Emails sent from campaigns, combined campaigns, or CRM contacts
|
|
4345
4342
|
*
|
|
4346
4343
|
* Follows Gmail rules for Re: and Fwd: subject prefixes.
|
|
4347
4344
|
* Creates an async Celery task for email delivery and webhook notifications.
|
|
4348
4345
|
*/
|
|
4349
4346
|
export type SendEmailToEmailThread = {
|
|
4350
4347
|
__typename?: 'SendEmailToEmailThread';
|
|
4351
|
-
/** The created
|
|
4348
|
+
/** The created ContactLog ID for sent campaign/CRM emails */
|
|
4349
|
+
contactLogId?: Maybe<Scalars['Int']['output']>;
|
|
4350
|
+
/** The created MailLog entry for sent external emails */
|
|
4352
4351
|
mailLog?: Maybe<MailLogObject>;
|
|
4353
4352
|
message?: Maybe<Scalars['String']['output']>;
|
|
4354
4353
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -4714,13 +4713,6 @@ export type UpdateCompanyNote = {
|
|
|
4714
4713
|
__typename?: 'UpdateCompanyNote';
|
|
4715
4714
|
companyNote?: Maybe<CompanyNoteObject>;
|
|
4716
4715
|
};
|
|
4717
|
-
/** UpdateCompanyProfile - Update the company profile JSON field for the user's account */
|
|
4718
|
-
export type UpdateCompanyProfile = {
|
|
4719
|
-
__typename?: 'UpdateCompanyProfile';
|
|
4720
|
-
accountProfile?: Maybe<AccountProfileType>;
|
|
4721
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
4722
|
-
success?: Maybe<Scalars['Boolean']['output']>;
|
|
4723
|
-
};
|
|
4724
4716
|
export type UpdateContact = {
|
|
4725
4717
|
__typename?: 'UpdateContact';
|
|
4726
4718
|
contact?: Maybe<ContactObject>;
|
|
@@ -5028,8 +5020,6 @@ export type AddContactsToCampaignMutation = {
|
|
|
5028
5020
|
bounceRate?: number | null;
|
|
5029
5021
|
reasonForPause?: string | null;
|
|
5030
5022
|
pausedUntil?: any | null;
|
|
5031
|
-
subjectLine?: string | null;
|
|
5032
|
-
subjectLines?: Array<string | null> | null;
|
|
5033
5023
|
segments?: Array<{
|
|
5034
5024
|
__typename?: 'SegmentObject';
|
|
5035
5025
|
id?: string | null;
|
|
@@ -5057,14 +5047,6 @@ export type AddContactsToCampaignMutation = {
|
|
|
5057
5047
|
updatedAt?: any | null;
|
|
5058
5048
|
campaignType?: string | null;
|
|
5059
5049
|
} | null;
|
|
5060
|
-
createdBy?: {
|
|
5061
|
-
__typename?: 'UserType';
|
|
5062
|
-
id?: string | null;
|
|
5063
|
-
email?: string | null;
|
|
5064
|
-
firstName?: string | null;
|
|
5065
|
-
lastName?: string | null;
|
|
5066
|
-
picture?: string | null;
|
|
5067
|
-
} | null;
|
|
5068
5050
|
} | null;
|
|
5069
5051
|
} | null;
|
|
5070
5052
|
};
|
|
@@ -5096,8 +5078,6 @@ export type AddContactsToCombinedCampaignMutation = {
|
|
|
5096
5078
|
completedContacts?: number | null;
|
|
5097
5079
|
lastActivity?: any | null;
|
|
5098
5080
|
stepsPreview?: any | null;
|
|
5099
|
-
subjectLine?: string | null;
|
|
5100
|
-
subjectLines?: Array<string | null> | null;
|
|
5101
5081
|
createdAt?: any | null;
|
|
5102
5082
|
updatedAt?: any | null;
|
|
5103
5083
|
steps?: Array<{
|
|
@@ -5147,14 +5127,6 @@ export type AddContactsToCombinedCampaignMutation = {
|
|
|
5147
5127
|
total?: number | null;
|
|
5148
5128
|
completionRate?: number | null;
|
|
5149
5129
|
} | null> | null;
|
|
5150
|
-
createdBy?: {
|
|
5151
|
-
__typename?: 'UserType';
|
|
5152
|
-
id?: string | null;
|
|
5153
|
-
email?: string | null;
|
|
5154
|
-
firstName?: string | null;
|
|
5155
|
-
lastName?: string | null;
|
|
5156
|
-
picture?: string | null;
|
|
5157
|
-
} | null;
|
|
5158
5130
|
} | null;
|
|
5159
5131
|
} | null;
|
|
5160
5132
|
};
|
|
@@ -5261,14 +5233,6 @@ export type AddSegmentToCallCampaignMutation = {
|
|
|
5261
5233
|
lastActivity?: any | null;
|
|
5262
5234
|
statusCounts?: any | null;
|
|
5263
5235
|
} | null;
|
|
5264
|
-
createdBy?: {
|
|
5265
|
-
__typename?: 'UserType';
|
|
5266
|
-
id?: string | null;
|
|
5267
|
-
email?: string | null;
|
|
5268
|
-
firstName?: string | null;
|
|
5269
|
-
lastName?: string | null;
|
|
5270
|
-
picture?: string | null;
|
|
5271
|
-
} | null;
|
|
5272
5236
|
} | null;
|
|
5273
5237
|
} | null;
|
|
5274
5238
|
};
|
|
@@ -5313,8 +5277,6 @@ export type AddSegmentToCampaignMutation = {
|
|
|
5313
5277
|
bounceRate?: number | null;
|
|
5314
5278
|
reasonForPause?: string | null;
|
|
5315
5279
|
pausedUntil?: any | null;
|
|
5316
|
-
subjectLine?: string | null;
|
|
5317
|
-
subjectLines?: Array<string | null> | null;
|
|
5318
5280
|
segments?: Array<{
|
|
5319
5281
|
__typename?: 'SegmentObject';
|
|
5320
5282
|
id?: string | null;
|
|
@@ -5342,14 +5304,6 @@ export type AddSegmentToCampaignMutation = {
|
|
|
5342
5304
|
updatedAt?: any | null;
|
|
5343
5305
|
campaignType?: string | null;
|
|
5344
5306
|
} | null;
|
|
5345
|
-
createdBy?: {
|
|
5346
|
-
__typename?: 'UserType';
|
|
5347
|
-
id?: string | null;
|
|
5348
|
-
email?: string | null;
|
|
5349
|
-
firstName?: string | null;
|
|
5350
|
-
lastName?: string | null;
|
|
5351
|
-
picture?: string | null;
|
|
5352
|
-
} | null;
|
|
5353
5307
|
} | null;
|
|
5354
5308
|
} | null;
|
|
5355
5309
|
};
|
|
@@ -5429,8 +5383,6 @@ export type CancelCampaignMutation = {
|
|
|
5429
5383
|
bounceRate?: number | null;
|
|
5430
5384
|
reasonForPause?: string | null;
|
|
5431
5385
|
pausedUntil?: any | null;
|
|
5432
|
-
subjectLine?: string | null;
|
|
5433
|
-
subjectLines?: Array<string | null> | null;
|
|
5434
5386
|
segments?: Array<{
|
|
5435
5387
|
__typename?: 'SegmentObject';
|
|
5436
5388
|
id?: string | null;
|
|
@@ -5458,14 +5410,6 @@ export type CancelCampaignMutation = {
|
|
|
5458
5410
|
updatedAt?: any | null;
|
|
5459
5411
|
campaignType?: string | null;
|
|
5460
5412
|
} | null;
|
|
5461
|
-
createdBy?: {
|
|
5462
|
-
__typename?: 'UserType';
|
|
5463
|
-
id?: string | null;
|
|
5464
|
-
email?: string | null;
|
|
5465
|
-
firstName?: string | null;
|
|
5466
|
-
lastName?: string | null;
|
|
5467
|
-
picture?: string | null;
|
|
5468
|
-
} | null;
|
|
5469
5413
|
} | null;
|
|
5470
5414
|
} | null;
|
|
5471
5415
|
};
|
|
@@ -5495,8 +5439,6 @@ export type CancelCombinedCampaignMutation = {
|
|
|
5495
5439
|
completedContacts?: number | null;
|
|
5496
5440
|
lastActivity?: any | null;
|
|
5497
5441
|
stepsPreview?: any | null;
|
|
5498
|
-
subjectLine?: string | null;
|
|
5499
|
-
subjectLines?: Array<string | null> | null;
|
|
5500
5442
|
createdAt?: any | null;
|
|
5501
5443
|
updatedAt?: any | null;
|
|
5502
5444
|
steps?: Array<{
|
|
@@ -5546,14 +5488,6 @@ export type CancelCombinedCampaignMutation = {
|
|
|
5546
5488
|
total?: number | null;
|
|
5547
5489
|
completionRate?: number | null;
|
|
5548
5490
|
} | null> | null;
|
|
5549
|
-
createdBy?: {
|
|
5550
|
-
__typename?: 'UserType';
|
|
5551
|
-
id?: string | null;
|
|
5552
|
-
email?: string | null;
|
|
5553
|
-
firstName?: string | null;
|
|
5554
|
-
lastName?: string | null;
|
|
5555
|
-
picture?: string | null;
|
|
5556
|
-
} | null;
|
|
5557
5491
|
} | null;
|
|
5558
5492
|
} | null;
|
|
5559
5493
|
};
|
|
@@ -5631,8 +5565,6 @@ export type CompleteCampaignMutation = {
|
|
|
5631
5565
|
bounceRate?: number | null;
|
|
5632
5566
|
reasonForPause?: string | null;
|
|
5633
5567
|
pausedUntil?: any | null;
|
|
5634
|
-
subjectLine?: string | null;
|
|
5635
|
-
subjectLines?: Array<string | null> | null;
|
|
5636
5568
|
segments?: Array<{
|
|
5637
5569
|
__typename?: 'SegmentObject';
|
|
5638
5570
|
id?: string | null;
|
|
@@ -5660,14 +5592,6 @@ export type CompleteCampaignMutation = {
|
|
|
5660
5592
|
updatedAt?: any | null;
|
|
5661
5593
|
campaignType?: string | null;
|
|
5662
5594
|
} | null;
|
|
5663
|
-
createdBy?: {
|
|
5664
|
-
__typename?: 'UserType';
|
|
5665
|
-
id?: string | null;
|
|
5666
|
-
email?: string | null;
|
|
5667
|
-
firstName?: string | null;
|
|
5668
|
-
lastName?: string | null;
|
|
5669
|
-
picture?: string | null;
|
|
5670
|
-
} | null;
|
|
5671
5595
|
} | null;
|
|
5672
5596
|
} | null;
|
|
5673
5597
|
};
|
|
@@ -5900,14 +5824,6 @@ export type CreateCallCampaignMutation = {
|
|
|
5900
5824
|
lastActivity?: any | null;
|
|
5901
5825
|
statusCounts?: any | null;
|
|
5902
5826
|
} | null;
|
|
5903
|
-
createdBy?: {
|
|
5904
|
-
__typename?: 'UserType';
|
|
5905
|
-
id?: string | null;
|
|
5906
|
-
email?: string | null;
|
|
5907
|
-
firstName?: string | null;
|
|
5908
|
-
lastName?: string | null;
|
|
5909
|
-
picture?: string | null;
|
|
5910
|
-
} | null;
|
|
5911
5827
|
} | null;
|
|
5912
5828
|
} | null;
|
|
5913
5829
|
};
|
|
@@ -6026,14 +5942,6 @@ export type CreateCallCampaignLogMutation = {
|
|
|
6026
5942
|
lastActivity?: any | null;
|
|
6027
5943
|
statusCounts?: any | null;
|
|
6028
5944
|
} | null;
|
|
6029
|
-
createdBy?: {
|
|
6030
|
-
__typename?: 'UserType';
|
|
6031
|
-
id?: string | null;
|
|
6032
|
-
email?: string | null;
|
|
6033
|
-
firstName?: string | null;
|
|
6034
|
-
lastName?: string | null;
|
|
6035
|
-
picture?: string | null;
|
|
6036
|
-
} | null;
|
|
6037
5945
|
} | null;
|
|
6038
5946
|
companyNote?: {
|
|
6039
5947
|
__typename?: 'CompanyNoteObject';
|
|
@@ -6115,8 +6023,6 @@ export type CreateCampaignMutation = {
|
|
|
6115
6023
|
bounceRate?: number | null;
|
|
6116
6024
|
reasonForPause?: string | null;
|
|
6117
6025
|
pausedUntil?: any | null;
|
|
6118
|
-
subjectLine?: string | null;
|
|
6119
|
-
subjectLines?: Array<string | null> | null;
|
|
6120
6026
|
segments?: Array<{
|
|
6121
6027
|
__typename?: 'SegmentObject';
|
|
6122
6028
|
id?: string | null;
|
|
@@ -6144,14 +6050,6 @@ export type CreateCampaignMutation = {
|
|
|
6144
6050
|
updatedAt?: any | null;
|
|
6145
6051
|
campaignType?: string | null;
|
|
6146
6052
|
} | null;
|
|
6147
|
-
createdBy?: {
|
|
6148
|
-
__typename?: 'UserType';
|
|
6149
|
-
id?: string | null;
|
|
6150
|
-
email?: string | null;
|
|
6151
|
-
firstName?: string | null;
|
|
6152
|
-
lastName?: string | null;
|
|
6153
|
-
picture?: string | null;
|
|
6154
|
-
} | null;
|
|
6155
6053
|
} | null;
|
|
6156
6054
|
} | null;
|
|
6157
6055
|
};
|
|
@@ -6182,8 +6080,6 @@ export type CreateCombinedCampaignMutation = {
|
|
|
6182
6080
|
completedContacts?: number | null;
|
|
6183
6081
|
lastActivity?: any | null;
|
|
6184
6082
|
stepsPreview?: any | null;
|
|
6185
|
-
subjectLine?: string | null;
|
|
6186
|
-
subjectLines?: Array<string | null> | null;
|
|
6187
6083
|
createdAt?: any | null;
|
|
6188
6084
|
updatedAt?: any | null;
|
|
6189
6085
|
steps?: Array<{
|
|
@@ -6233,14 +6129,6 @@ export type CreateCombinedCampaignMutation = {
|
|
|
6233
6129
|
total?: number | null;
|
|
6234
6130
|
completionRate?: number | null;
|
|
6235
6131
|
} | null> | null;
|
|
6236
|
-
createdBy?: {
|
|
6237
|
-
__typename?: 'UserType';
|
|
6238
|
-
id?: string | null;
|
|
6239
|
-
email?: string | null;
|
|
6240
|
-
firstName?: string | null;
|
|
6241
|
-
lastName?: string | null;
|
|
6242
|
-
picture?: string | null;
|
|
6243
|
-
} | null;
|
|
6244
6132
|
} | null;
|
|
6245
6133
|
} | null;
|
|
6246
6134
|
};
|
|
@@ -6465,14 +6353,6 @@ export type CreateCompanyMutation = {
|
|
|
6465
6353
|
lastActivity?: any | null;
|
|
6466
6354
|
statusCounts?: any | null;
|
|
6467
6355
|
} | null;
|
|
6468
|
-
createdBy?: {
|
|
6469
|
-
__typename?: 'UserType';
|
|
6470
|
-
id?: string | null;
|
|
6471
|
-
email?: string | null;
|
|
6472
|
-
firstName?: string | null;
|
|
6473
|
-
lastName?: string | null;
|
|
6474
|
-
picture?: string | null;
|
|
6475
|
-
} | null;
|
|
6476
6356
|
} | null;
|
|
6477
6357
|
callCampaignLog?: {
|
|
6478
6358
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -6670,14 +6550,6 @@ export type CreateCompanyMutation = {
|
|
|
6670
6550
|
lastActivity?: any | null;
|
|
6671
6551
|
statusCounts?: any | null;
|
|
6672
6552
|
} | null;
|
|
6673
|
-
createdBy?: {
|
|
6674
|
-
__typename?: 'UserType';
|
|
6675
|
-
id?: string | null;
|
|
6676
|
-
email?: string | null;
|
|
6677
|
-
firstName?: string | null;
|
|
6678
|
-
lastName?: string | null;
|
|
6679
|
-
picture?: string | null;
|
|
6680
|
-
} | null;
|
|
6681
6553
|
} | null;
|
|
6682
6554
|
callCampaignLog?: {
|
|
6683
6555
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -7058,14 +6930,6 @@ export type CreateCompanyNoteMutation = {
|
|
|
7058
6930
|
lastActivity?: any | null;
|
|
7059
6931
|
statusCounts?: any | null;
|
|
7060
6932
|
} | null;
|
|
7061
|
-
createdBy?: {
|
|
7062
|
-
__typename?: 'UserType';
|
|
7063
|
-
id?: string | null;
|
|
7064
|
-
email?: string | null;
|
|
7065
|
-
firstName?: string | null;
|
|
7066
|
-
lastName?: string | null;
|
|
7067
|
-
picture?: string | null;
|
|
7068
|
-
} | null;
|
|
7069
6933
|
} | null;
|
|
7070
6934
|
callCampaignLog?: {
|
|
7071
6935
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -7417,14 +7281,6 @@ export type CreateMysupplierMutation = {
|
|
|
7417
7281
|
lastActivity?: any | null;
|
|
7418
7282
|
statusCounts?: any | null;
|
|
7419
7283
|
} | null;
|
|
7420
|
-
createdBy?: {
|
|
7421
|
-
__typename?: 'UserType';
|
|
7422
|
-
id?: string | null;
|
|
7423
|
-
email?: string | null;
|
|
7424
|
-
firstName?: string | null;
|
|
7425
|
-
lastName?: string | null;
|
|
7426
|
-
picture?: string | null;
|
|
7427
|
-
} | null;
|
|
7428
7284
|
} | null;
|
|
7429
7285
|
callCampaignLog?: {
|
|
7430
7286
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -7622,14 +7478,6 @@ export type CreateMysupplierMutation = {
|
|
|
7622
7478
|
lastActivity?: any | null;
|
|
7623
7479
|
statusCounts?: any | null;
|
|
7624
7480
|
} | null;
|
|
7625
|
-
createdBy?: {
|
|
7626
|
-
__typename?: 'UserType';
|
|
7627
|
-
id?: string | null;
|
|
7628
|
-
email?: string | null;
|
|
7629
|
-
firstName?: string | null;
|
|
7630
|
-
lastName?: string | null;
|
|
7631
|
-
picture?: string | null;
|
|
7632
|
-
} | null;
|
|
7633
7481
|
} | null;
|
|
7634
7482
|
callCampaignLog?: {
|
|
7635
7483
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -8467,14 +8315,6 @@ export type CreateSupplierlistMutation = {
|
|
|
8467
8315
|
lastActivity?: any | null;
|
|
8468
8316
|
statusCounts?: any | null;
|
|
8469
8317
|
} | null;
|
|
8470
|
-
createdBy?: {
|
|
8471
|
-
__typename?: 'UserType';
|
|
8472
|
-
id?: string | null;
|
|
8473
|
-
email?: string | null;
|
|
8474
|
-
firstName?: string | null;
|
|
8475
|
-
lastName?: string | null;
|
|
8476
|
-
picture?: string | null;
|
|
8477
|
-
} | null;
|
|
8478
8318
|
} | null;
|
|
8479
8319
|
callCampaignLog?: {
|
|
8480
8320
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -8672,14 +8512,6 @@ export type CreateSupplierlistMutation = {
|
|
|
8672
8512
|
lastActivity?: any | null;
|
|
8673
8513
|
statusCounts?: any | null;
|
|
8674
8514
|
} | null;
|
|
8675
|
-
createdBy?: {
|
|
8676
|
-
__typename?: 'UserType';
|
|
8677
|
-
id?: string | null;
|
|
8678
|
-
email?: string | null;
|
|
8679
|
-
firstName?: string | null;
|
|
8680
|
-
lastName?: string | null;
|
|
8681
|
-
picture?: string | null;
|
|
8682
|
-
} | null;
|
|
8683
8515
|
} | null;
|
|
8684
8516
|
callCampaignLog?: {
|
|
8685
8517
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -9025,14 +8857,6 @@ export type CreateTaskMutation = {
|
|
|
9025
8857
|
lastActivity?: any | null;
|
|
9026
8858
|
statusCounts?: any | null;
|
|
9027
8859
|
} | null;
|
|
9028
|
-
createdBy?: {
|
|
9029
|
-
__typename?: 'UserType';
|
|
9030
|
-
id?: string | null;
|
|
9031
|
-
email?: string | null;
|
|
9032
|
-
firstName?: string | null;
|
|
9033
|
-
lastName?: string | null;
|
|
9034
|
-
picture?: string | null;
|
|
9035
|
-
} | null;
|
|
9036
8860
|
} | null;
|
|
9037
8861
|
callCampaignLog?: {
|
|
9038
8862
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -9505,8 +9329,6 @@ export type PauseCampaignMutation = {
|
|
|
9505
9329
|
bounceRate?: number | null;
|
|
9506
9330
|
reasonForPause?: string | null;
|
|
9507
9331
|
pausedUntil?: any | null;
|
|
9508
|
-
subjectLine?: string | null;
|
|
9509
|
-
subjectLines?: Array<string | null> | null;
|
|
9510
9332
|
segments?: Array<{
|
|
9511
9333
|
__typename?: 'SegmentObject';
|
|
9512
9334
|
id?: string | null;
|
|
@@ -9534,14 +9356,6 @@ export type PauseCampaignMutation = {
|
|
|
9534
9356
|
updatedAt?: any | null;
|
|
9535
9357
|
campaignType?: string | null;
|
|
9536
9358
|
} | null;
|
|
9537
|
-
createdBy?: {
|
|
9538
|
-
__typename?: 'UserType';
|
|
9539
|
-
id?: string | null;
|
|
9540
|
-
email?: string | null;
|
|
9541
|
-
firstName?: string | null;
|
|
9542
|
-
lastName?: string | null;
|
|
9543
|
-
picture?: string | null;
|
|
9544
|
-
} | null;
|
|
9545
9359
|
} | null;
|
|
9546
9360
|
} | null;
|
|
9547
9361
|
};
|
|
@@ -9571,8 +9385,6 @@ export type PauseCombinedCampaignMutation = {
|
|
|
9571
9385
|
completedContacts?: number | null;
|
|
9572
9386
|
lastActivity?: any | null;
|
|
9573
9387
|
stepsPreview?: any | null;
|
|
9574
|
-
subjectLine?: string | null;
|
|
9575
|
-
subjectLines?: Array<string | null> | null;
|
|
9576
9388
|
createdAt?: any | null;
|
|
9577
9389
|
updatedAt?: any | null;
|
|
9578
9390
|
steps?: Array<{
|
|
@@ -9622,14 +9434,6 @@ export type PauseCombinedCampaignMutation = {
|
|
|
9622
9434
|
total?: number | null;
|
|
9623
9435
|
completionRate?: number | null;
|
|
9624
9436
|
} | null> | null;
|
|
9625
|
-
createdBy?: {
|
|
9626
|
-
__typename?: 'UserType';
|
|
9627
|
-
id?: string | null;
|
|
9628
|
-
email?: string | null;
|
|
9629
|
-
firstName?: string | null;
|
|
9630
|
-
lastName?: string | null;
|
|
9631
|
-
picture?: string | null;
|
|
9632
|
-
} | null;
|
|
9633
9437
|
} | null;
|
|
9634
9438
|
} | null;
|
|
9635
9439
|
};
|
|
@@ -9750,8 +9554,6 @@ export type RemoveContactsFromCampaignMutation = {
|
|
|
9750
9554
|
bounceRate?: number | null;
|
|
9751
9555
|
reasonForPause?: string | null;
|
|
9752
9556
|
pausedUntil?: any | null;
|
|
9753
|
-
subjectLine?: string | null;
|
|
9754
|
-
subjectLines?: Array<string | null> | null;
|
|
9755
9557
|
segments?: Array<{
|
|
9756
9558
|
__typename?: 'SegmentObject';
|
|
9757
9559
|
id?: string | null;
|
|
@@ -9779,14 +9581,6 @@ export type RemoveContactsFromCampaignMutation = {
|
|
|
9779
9581
|
updatedAt?: any | null;
|
|
9780
9582
|
campaignType?: string | null;
|
|
9781
9583
|
} | null;
|
|
9782
|
-
createdBy?: {
|
|
9783
|
-
__typename?: 'UserType';
|
|
9784
|
-
id?: string | null;
|
|
9785
|
-
email?: string | null;
|
|
9786
|
-
firstName?: string | null;
|
|
9787
|
-
lastName?: string | null;
|
|
9788
|
-
picture?: string | null;
|
|
9789
|
-
} | null;
|
|
9790
9584
|
} | null;
|
|
9791
9585
|
} | null;
|
|
9792
9586
|
};
|
|
@@ -9819,8 +9613,6 @@ export type RemoveContactsFromCombinedCampaignMutation = {
|
|
|
9819
9613
|
completedContacts?: number | null;
|
|
9820
9614
|
lastActivity?: any | null;
|
|
9821
9615
|
stepsPreview?: any | null;
|
|
9822
|
-
subjectLine?: string | null;
|
|
9823
|
-
subjectLines?: Array<string | null> | null;
|
|
9824
9616
|
createdAt?: any | null;
|
|
9825
9617
|
updatedAt?: any | null;
|
|
9826
9618
|
steps?: Array<{
|
|
@@ -9870,14 +9662,6 @@ export type RemoveContactsFromCombinedCampaignMutation = {
|
|
|
9870
9662
|
total?: number | null;
|
|
9871
9663
|
completionRate?: number | null;
|
|
9872
9664
|
} | null> | null;
|
|
9873
|
-
createdBy?: {
|
|
9874
|
-
__typename?: 'UserType';
|
|
9875
|
-
id?: string | null;
|
|
9876
|
-
email?: string | null;
|
|
9877
|
-
firstName?: string | null;
|
|
9878
|
-
lastName?: string | null;
|
|
9879
|
-
picture?: string | null;
|
|
9880
|
-
} | null;
|
|
9881
9665
|
} | null;
|
|
9882
9666
|
} | null;
|
|
9883
9667
|
};
|
|
@@ -9995,14 +9779,6 @@ export type RemoveSegmentFromCallCampaignMutation = {
|
|
|
9995
9779
|
lastActivity?: any | null;
|
|
9996
9780
|
statusCounts?: any | null;
|
|
9997
9781
|
} | null;
|
|
9998
|
-
createdBy?: {
|
|
9999
|
-
__typename?: 'UserType';
|
|
10000
|
-
id?: string | null;
|
|
10001
|
-
email?: string | null;
|
|
10002
|
-
firstName?: string | null;
|
|
10003
|
-
lastName?: string | null;
|
|
10004
|
-
picture?: string | null;
|
|
10005
|
-
} | null;
|
|
10006
9782
|
} | null;
|
|
10007
9783
|
} | null;
|
|
10008
9784
|
};
|
|
@@ -10047,8 +9823,6 @@ export type RemoveSegmentFromCampaignMutation = {
|
|
|
10047
9823
|
bounceRate?: number | null;
|
|
10048
9824
|
reasonForPause?: string | null;
|
|
10049
9825
|
pausedUntil?: any | null;
|
|
10050
|
-
subjectLine?: string | null;
|
|
10051
|
-
subjectLines?: Array<string | null> | null;
|
|
10052
9826
|
segments?: Array<{
|
|
10053
9827
|
__typename?: 'SegmentObject';
|
|
10054
9828
|
id?: string | null;
|
|
@@ -10076,14 +9850,6 @@ export type RemoveSegmentFromCampaignMutation = {
|
|
|
10076
9850
|
updatedAt?: any | null;
|
|
10077
9851
|
campaignType?: string | null;
|
|
10078
9852
|
} | null;
|
|
10079
|
-
createdBy?: {
|
|
10080
|
-
__typename?: 'UserType';
|
|
10081
|
-
id?: string | null;
|
|
10082
|
-
email?: string | null;
|
|
10083
|
-
firstName?: string | null;
|
|
10084
|
-
lastName?: string | null;
|
|
10085
|
-
picture?: string | null;
|
|
10086
|
-
} | null;
|
|
10087
9853
|
} | null;
|
|
10088
9854
|
} | null;
|
|
10089
9855
|
};
|
|
@@ -10124,8 +9890,6 @@ export type ResumeCombinedCampaignMutation = {
|
|
|
10124
9890
|
completedContacts?: number | null;
|
|
10125
9891
|
lastActivity?: any | null;
|
|
10126
9892
|
stepsPreview?: any | null;
|
|
10127
|
-
subjectLine?: string | null;
|
|
10128
|
-
subjectLines?: Array<string | null> | null;
|
|
10129
9893
|
createdAt?: any | null;
|
|
10130
9894
|
updatedAt?: any | null;
|
|
10131
9895
|
steps?: Array<{
|
|
@@ -10175,14 +9939,6 @@ export type ResumeCombinedCampaignMutation = {
|
|
|
10175
9939
|
total?: number | null;
|
|
10176
9940
|
completionRate?: number | null;
|
|
10177
9941
|
} | null> | null;
|
|
10178
|
-
createdBy?: {
|
|
10179
|
-
__typename?: 'UserType';
|
|
10180
|
-
id?: string | null;
|
|
10181
|
-
email?: string | null;
|
|
10182
|
-
firstName?: string | null;
|
|
10183
|
-
lastName?: string | null;
|
|
10184
|
-
picture?: string | null;
|
|
10185
|
-
} | null;
|
|
10186
9942
|
} | null;
|
|
10187
9943
|
} | null;
|
|
10188
9944
|
};
|
|
@@ -10249,8 +10005,6 @@ export type ScheduleCampaignMutation = {
|
|
|
10249
10005
|
bounceRate?: number | null;
|
|
10250
10006
|
reasonForPause?: string | null;
|
|
10251
10007
|
pausedUntil?: any | null;
|
|
10252
|
-
subjectLine?: string | null;
|
|
10253
|
-
subjectLines?: Array<string | null> | null;
|
|
10254
10008
|
segments?: Array<{
|
|
10255
10009
|
__typename?: 'SegmentObject';
|
|
10256
10010
|
id?: string | null;
|
|
@@ -10278,14 +10032,6 @@ export type ScheduleCampaignMutation = {
|
|
|
10278
10032
|
updatedAt?: any | null;
|
|
10279
10033
|
campaignType?: string | null;
|
|
10280
10034
|
} | null;
|
|
10281
|
-
createdBy?: {
|
|
10282
|
-
__typename?: 'UserType';
|
|
10283
|
-
id?: string | null;
|
|
10284
|
-
email?: string | null;
|
|
10285
|
-
firstName?: string | null;
|
|
10286
|
-
lastName?: string | null;
|
|
10287
|
-
picture?: string | null;
|
|
10288
|
-
} | null;
|
|
10289
10035
|
} | null;
|
|
10290
10036
|
} | null;
|
|
10291
10037
|
};
|
|
@@ -10316,8 +10062,6 @@ export type ScheduleCombinedCampaignMutation = {
|
|
|
10316
10062
|
completedContacts?: number | null;
|
|
10317
10063
|
lastActivity?: any | null;
|
|
10318
10064
|
stepsPreview?: any | null;
|
|
10319
|
-
subjectLine?: string | null;
|
|
10320
|
-
subjectLines?: Array<string | null> | null;
|
|
10321
10065
|
createdAt?: any | null;
|
|
10322
10066
|
updatedAt?: any | null;
|
|
10323
10067
|
steps?: Array<{
|
|
@@ -10367,14 +10111,6 @@ export type ScheduleCombinedCampaignMutation = {
|
|
|
10367
10111
|
total?: number | null;
|
|
10368
10112
|
completionRate?: number | null;
|
|
10369
10113
|
} | null> | null;
|
|
10370
|
-
createdBy?: {
|
|
10371
|
-
__typename?: 'UserType';
|
|
10372
|
-
id?: string | null;
|
|
10373
|
-
email?: string | null;
|
|
10374
|
-
firstName?: string | null;
|
|
10375
|
-
lastName?: string | null;
|
|
10376
|
-
picture?: string | null;
|
|
10377
|
-
} | null;
|
|
10378
10114
|
} | null;
|
|
10379
10115
|
} | null;
|
|
10380
10116
|
};
|
|
@@ -10608,8 +10344,6 @@ export type SendEmailToContactMutation = {
|
|
|
10608
10344
|
bounceRate?: number | null;
|
|
10609
10345
|
reasonForPause?: string | null;
|
|
10610
10346
|
pausedUntil?: any | null;
|
|
10611
|
-
subjectLine?: string | null;
|
|
10612
|
-
subjectLines?: Array<string | null> | null;
|
|
10613
10347
|
segments?: Array<{
|
|
10614
10348
|
__typename?: 'SegmentObject';
|
|
10615
10349
|
id?: string | null;
|
|
@@ -10637,14 +10371,6 @@ export type SendEmailToContactMutation = {
|
|
|
10637
10371
|
updatedAt?: any | null;
|
|
10638
10372
|
campaignType?: string | null;
|
|
10639
10373
|
} | null;
|
|
10640
|
-
createdBy?: {
|
|
10641
|
-
__typename?: 'UserType';
|
|
10642
|
-
id?: string | null;
|
|
10643
|
-
email?: string | null;
|
|
10644
|
-
firstName?: string | null;
|
|
10645
|
-
lastName?: string | null;
|
|
10646
|
-
picture?: string | null;
|
|
10647
|
-
} | null;
|
|
10648
10374
|
} | null;
|
|
10649
10375
|
segment?: {
|
|
10650
10376
|
__typename?: 'SegmentObject';
|
|
@@ -10750,7 +10476,8 @@ export type SendEmailToEmailThreadMutationVariables = Exact<{
|
|
|
10750
10476
|
bccEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>> | InputMaybe<Scalars['String']['input']>>;
|
|
10751
10477
|
body: Scalars['String']['input'];
|
|
10752
10478
|
ccEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>> | InputMaybe<Scalars['String']['input']>>;
|
|
10753
|
-
|
|
10479
|
+
contactLogId?: InputMaybe<Scalars['Int']['input']>;
|
|
10480
|
+
mailLogId?: InputMaybe<Scalars['Int']['input']>;
|
|
10754
10481
|
subject?: InputMaybe<Scalars['String']['input']>;
|
|
10755
10482
|
toEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>> | InputMaybe<Scalars['String']['input']>>;
|
|
10756
10483
|
}>;
|
|
@@ -10760,6 +10487,7 @@ export type SendEmailToEmailThreadMutation = {
|
|
|
10760
10487
|
__typename?: 'SendEmailToEmailThread';
|
|
10761
10488
|
success?: boolean | null;
|
|
10762
10489
|
message?: string | null;
|
|
10490
|
+
contactLogId?: number | null;
|
|
10763
10491
|
mailLog?: {
|
|
10764
10492
|
__typename?: 'MailLogObject';
|
|
10765
10493
|
id?: number | null;
|
|
@@ -10833,6 +10561,7 @@ export type SendManualEmailMutation = {
|
|
|
10833
10561
|
taskId?: string | null;
|
|
10834
10562
|
draftSubject?: string | null;
|
|
10835
10563
|
draftBody?: string | null;
|
|
10564
|
+
sentSubject?: string | null;
|
|
10836
10565
|
createdAt?: any | null;
|
|
10837
10566
|
updatedAt?: any | null;
|
|
10838
10567
|
contactName?: string | null;
|
|
@@ -10855,8 +10584,6 @@ export type SendManualEmailMutation = {
|
|
|
10855
10584
|
completedContacts?: number | null;
|
|
10856
10585
|
lastActivity?: any | null;
|
|
10857
10586
|
stepsPreview?: any | null;
|
|
10858
|
-
subjectLine?: string | null;
|
|
10859
|
-
subjectLines?: Array<string | null> | null;
|
|
10860
10587
|
createdAt?: any | null;
|
|
10861
10588
|
updatedAt?: any | null;
|
|
10862
10589
|
steps?: Array<{
|
|
@@ -10906,14 +10633,6 @@ export type SendManualEmailMutation = {
|
|
|
10906
10633
|
total?: number | null;
|
|
10907
10634
|
completionRate?: number | null;
|
|
10908
10635
|
} | null> | null;
|
|
10909
|
-
createdBy?: {
|
|
10910
|
-
__typename?: 'UserType';
|
|
10911
|
-
id?: string | null;
|
|
10912
|
-
email?: string | null;
|
|
10913
|
-
firstName?: string | null;
|
|
10914
|
-
lastName?: string | null;
|
|
10915
|
-
picture?: string | null;
|
|
10916
|
-
} | null;
|
|
10917
10636
|
} | null;
|
|
10918
10637
|
step?: {
|
|
10919
10638
|
__typename?: 'CombinedCampaignStepObject';
|
|
@@ -11015,14 +10734,6 @@ export type SendManualEmailMutation = {
|
|
|
11015
10734
|
lastActivity?: any | null;
|
|
11016
10735
|
statusCounts?: any | null;
|
|
11017
10736
|
} | null;
|
|
11018
|
-
createdBy?: {
|
|
11019
|
-
__typename?: 'UserType';
|
|
11020
|
-
id?: string | null;
|
|
11021
|
-
email?: string | null;
|
|
11022
|
-
firstName?: string | null;
|
|
11023
|
-
lastName?: string | null;
|
|
11024
|
-
picture?: string | null;
|
|
11025
|
-
} | null;
|
|
11026
10737
|
} | null;
|
|
11027
10738
|
callCampaignLog?: {
|
|
11028
10739
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -11140,8 +10851,6 @@ export type SendManualEmailMutation = {
|
|
|
11140
10851
|
bounceRate?: number | null;
|
|
11141
10852
|
reasonForPause?: string | null;
|
|
11142
10853
|
pausedUntil?: any | null;
|
|
11143
|
-
subjectLine?: string | null;
|
|
11144
|
-
subjectLines?: Array<string | null> | null;
|
|
11145
10854
|
segments?: Array<{
|
|
11146
10855
|
__typename?: 'SegmentObject';
|
|
11147
10856
|
id?: string | null;
|
|
@@ -11169,14 +10878,6 @@ export type SendManualEmailMutation = {
|
|
|
11169
10878
|
updatedAt?: any | null;
|
|
11170
10879
|
campaignType?: string | null;
|
|
11171
10880
|
} | null;
|
|
11172
|
-
createdBy?: {
|
|
11173
|
-
__typename?: 'UserType';
|
|
11174
|
-
id?: string | null;
|
|
11175
|
-
email?: string | null;
|
|
11176
|
-
firstName?: string | null;
|
|
11177
|
-
lastName?: string | null;
|
|
11178
|
-
picture?: string | null;
|
|
11179
|
-
} | null;
|
|
11180
10881
|
} | null;
|
|
11181
10882
|
segment?: {
|
|
11182
10883
|
__typename?: 'SegmentObject';
|
|
@@ -11391,8 +11092,6 @@ export type StartCampaignMutation = {
|
|
|
11391
11092
|
bounceRate?: number | null;
|
|
11392
11093
|
reasonForPause?: string | null;
|
|
11393
11094
|
pausedUntil?: any | null;
|
|
11394
|
-
subjectLine?: string | null;
|
|
11395
|
-
subjectLines?: Array<string | null> | null;
|
|
11396
11095
|
segments?: Array<{
|
|
11397
11096
|
__typename?: 'SegmentObject';
|
|
11398
11097
|
id?: string | null;
|
|
@@ -11420,14 +11119,6 @@ export type StartCampaignMutation = {
|
|
|
11420
11119
|
updatedAt?: any | null;
|
|
11421
11120
|
campaignType?: string | null;
|
|
11422
11121
|
} | null;
|
|
11423
|
-
createdBy?: {
|
|
11424
|
-
__typename?: 'UserType';
|
|
11425
|
-
id?: string | null;
|
|
11426
|
-
email?: string | null;
|
|
11427
|
-
firstName?: string | null;
|
|
11428
|
-
lastName?: string | null;
|
|
11429
|
-
picture?: string | null;
|
|
11430
|
-
} | null;
|
|
11431
11122
|
} | null;
|
|
11432
11123
|
} | null;
|
|
11433
11124
|
};
|
|
@@ -11457,8 +11148,6 @@ export type StartCombinedCampaignMutation = {
|
|
|
11457
11148
|
completedContacts?: number | null;
|
|
11458
11149
|
lastActivity?: any | null;
|
|
11459
11150
|
stepsPreview?: any | null;
|
|
11460
|
-
subjectLine?: string | null;
|
|
11461
|
-
subjectLines?: Array<string | null> | null;
|
|
11462
11151
|
createdAt?: any | null;
|
|
11463
11152
|
updatedAt?: any | null;
|
|
11464
11153
|
steps?: Array<{
|
|
@@ -11508,14 +11197,6 @@ export type StartCombinedCampaignMutation = {
|
|
|
11508
11197
|
total?: number | null;
|
|
11509
11198
|
completionRate?: number | null;
|
|
11510
11199
|
} | null> | null;
|
|
11511
|
-
createdBy?: {
|
|
11512
|
-
__typename?: 'UserType';
|
|
11513
|
-
id?: string | null;
|
|
11514
|
-
email?: string | null;
|
|
11515
|
-
firstName?: string | null;
|
|
11516
|
-
lastName?: string | null;
|
|
11517
|
-
picture?: string | null;
|
|
11518
|
-
} | null;
|
|
11519
11200
|
} | null;
|
|
11520
11201
|
} | null;
|
|
11521
11202
|
};
|
|
@@ -11616,14 +11297,6 @@ export type UpdateCallCampaignMutation = {
|
|
|
11616
11297
|
lastActivity?: any | null;
|
|
11617
11298
|
statusCounts?: any | null;
|
|
11618
11299
|
} | null;
|
|
11619
|
-
createdBy?: {
|
|
11620
|
-
__typename?: 'UserType';
|
|
11621
|
-
id?: string | null;
|
|
11622
|
-
email?: string | null;
|
|
11623
|
-
firstName?: string | null;
|
|
11624
|
-
lastName?: string | null;
|
|
11625
|
-
picture?: string | null;
|
|
11626
|
-
} | null;
|
|
11627
11300
|
} | null;
|
|
11628
11301
|
} | null;
|
|
11629
11302
|
};
|
|
@@ -11743,14 +11416,6 @@ export type UpdateCallCampaignLogMutation = {
|
|
|
11743
11416
|
lastActivity?: any | null;
|
|
11744
11417
|
statusCounts?: any | null;
|
|
11745
11418
|
} | null;
|
|
11746
|
-
createdBy?: {
|
|
11747
|
-
__typename?: 'UserType';
|
|
11748
|
-
id?: string | null;
|
|
11749
|
-
email?: string | null;
|
|
11750
|
-
firstName?: string | null;
|
|
11751
|
-
lastName?: string | null;
|
|
11752
|
-
picture?: string | null;
|
|
11753
|
-
} | null;
|
|
11754
11419
|
} | null;
|
|
11755
11420
|
companyNote?: {
|
|
11756
11421
|
__typename?: 'CompanyNoteObject';
|
|
@@ -11832,8 +11497,6 @@ export type UpdateCampaignMutation = {
|
|
|
11832
11497
|
bounceRate?: number | null;
|
|
11833
11498
|
reasonForPause?: string | null;
|
|
11834
11499
|
pausedUntil?: any | null;
|
|
11835
|
-
subjectLine?: string | null;
|
|
11836
|
-
subjectLines?: Array<string | null> | null;
|
|
11837
11500
|
segments?: Array<{
|
|
11838
11501
|
__typename?: 'SegmentObject';
|
|
11839
11502
|
id?: string | null;
|
|
@@ -11861,14 +11524,6 @@ export type UpdateCampaignMutation = {
|
|
|
11861
11524
|
updatedAt?: any | null;
|
|
11862
11525
|
campaignType?: string | null;
|
|
11863
11526
|
} | null;
|
|
11864
|
-
createdBy?: {
|
|
11865
|
-
__typename?: 'UserType';
|
|
11866
|
-
id?: string | null;
|
|
11867
|
-
email?: string | null;
|
|
11868
|
-
firstName?: string | null;
|
|
11869
|
-
lastName?: string | null;
|
|
11870
|
-
picture?: string | null;
|
|
11871
|
-
} | null;
|
|
11872
11527
|
} | null;
|
|
11873
11528
|
} | null;
|
|
11874
11529
|
};
|
|
@@ -11899,8 +11554,6 @@ export type UpdateCombinedCampaignMutation = {
|
|
|
11899
11554
|
completedContacts?: number | null;
|
|
11900
11555
|
lastActivity?: any | null;
|
|
11901
11556
|
stepsPreview?: any | null;
|
|
11902
|
-
subjectLine?: string | null;
|
|
11903
|
-
subjectLines?: Array<string | null> | null;
|
|
11904
11557
|
createdAt?: any | null;
|
|
11905
11558
|
updatedAt?: any | null;
|
|
11906
11559
|
steps?: Array<{
|
|
@@ -11950,14 +11603,6 @@ export type UpdateCombinedCampaignMutation = {
|
|
|
11950
11603
|
total?: number | null;
|
|
11951
11604
|
completionRate?: number | null;
|
|
11952
11605
|
} | null> | null;
|
|
11953
|
-
createdBy?: {
|
|
11954
|
-
__typename?: 'UserType';
|
|
11955
|
-
id?: string | null;
|
|
11956
|
-
email?: string | null;
|
|
11957
|
-
firstName?: string | null;
|
|
11958
|
-
lastName?: string | null;
|
|
11959
|
-
picture?: string | null;
|
|
11960
|
-
} | null;
|
|
11961
11606
|
} | null;
|
|
11962
11607
|
} | null;
|
|
11963
11608
|
};
|
|
@@ -11998,6 +11643,7 @@ export type UpdateCombinedCampaignLogMutation = {
|
|
|
11998
11643
|
taskId?: string | null;
|
|
11999
11644
|
draftSubject?: string | null;
|
|
12000
11645
|
draftBody?: string | null;
|
|
11646
|
+
sentSubject?: string | null;
|
|
12001
11647
|
createdAt?: any | null;
|
|
12002
11648
|
updatedAt?: any | null;
|
|
12003
11649
|
contactName?: string | null;
|
|
@@ -12020,8 +11666,6 @@ export type UpdateCombinedCampaignLogMutation = {
|
|
|
12020
11666
|
completedContacts?: number | null;
|
|
12021
11667
|
lastActivity?: any | null;
|
|
12022
11668
|
stepsPreview?: any | null;
|
|
12023
|
-
subjectLine?: string | null;
|
|
12024
|
-
subjectLines?: Array<string | null> | null;
|
|
12025
11669
|
createdAt?: any | null;
|
|
12026
11670
|
updatedAt?: any | null;
|
|
12027
11671
|
steps?: Array<{
|
|
@@ -12071,14 +11715,6 @@ export type UpdateCombinedCampaignLogMutation = {
|
|
|
12071
11715
|
total?: number | null;
|
|
12072
11716
|
completionRate?: number | null;
|
|
12073
11717
|
} | null> | null;
|
|
12074
|
-
createdBy?: {
|
|
12075
|
-
__typename?: 'UserType';
|
|
12076
|
-
id?: string | null;
|
|
12077
|
-
email?: string | null;
|
|
12078
|
-
firstName?: string | null;
|
|
12079
|
-
lastName?: string | null;
|
|
12080
|
-
picture?: string | null;
|
|
12081
|
-
} | null;
|
|
12082
11718
|
} | null;
|
|
12083
11719
|
step?: {
|
|
12084
11720
|
__typename?: 'CombinedCampaignStepObject';
|
|
@@ -12180,14 +11816,6 @@ export type UpdateCombinedCampaignLogMutation = {
|
|
|
12180
11816
|
lastActivity?: any | null;
|
|
12181
11817
|
statusCounts?: any | null;
|
|
12182
11818
|
} | null;
|
|
12183
|
-
createdBy?: {
|
|
12184
|
-
__typename?: 'UserType';
|
|
12185
|
-
id?: string | null;
|
|
12186
|
-
email?: string | null;
|
|
12187
|
-
firstName?: string | null;
|
|
12188
|
-
lastName?: string | null;
|
|
12189
|
-
picture?: string | null;
|
|
12190
|
-
} | null;
|
|
12191
11819
|
} | null;
|
|
12192
11820
|
callCampaignLog?: {
|
|
12193
11821
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -12495,14 +12123,6 @@ export type UpdateCompanyMutation = {
|
|
|
12495
12123
|
lastActivity?: any | null;
|
|
12496
12124
|
statusCounts?: any | null;
|
|
12497
12125
|
} | null;
|
|
12498
|
-
createdBy?: {
|
|
12499
|
-
__typename?: 'UserType';
|
|
12500
|
-
id?: string | null;
|
|
12501
|
-
email?: string | null;
|
|
12502
|
-
firstName?: string | null;
|
|
12503
|
-
lastName?: string | null;
|
|
12504
|
-
picture?: string | null;
|
|
12505
|
-
} | null;
|
|
12506
12126
|
} | null;
|
|
12507
12127
|
callCampaignLog?: {
|
|
12508
12128
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -12700,14 +12320,6 @@ export type UpdateCompanyMutation = {
|
|
|
12700
12320
|
lastActivity?: any | null;
|
|
12701
12321
|
statusCounts?: any | null;
|
|
12702
12322
|
} | null;
|
|
12703
|
-
createdBy?: {
|
|
12704
|
-
__typename?: 'UserType';
|
|
12705
|
-
id?: string | null;
|
|
12706
|
-
email?: string | null;
|
|
12707
|
-
firstName?: string | null;
|
|
12708
|
-
lastName?: string | null;
|
|
12709
|
-
picture?: string | null;
|
|
12710
|
-
} | null;
|
|
12711
12323
|
} | null;
|
|
12712
12324
|
callCampaignLog?: {
|
|
12713
12325
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -13100,14 +12712,6 @@ export type UpdateCompanyNoteMutation = {
|
|
|
13100
12712
|
lastActivity?: any | null;
|
|
13101
12713
|
statusCounts?: any | null;
|
|
13102
12714
|
} | null;
|
|
13103
|
-
createdBy?: {
|
|
13104
|
-
__typename?: 'UserType';
|
|
13105
|
-
id?: string | null;
|
|
13106
|
-
email?: string | null;
|
|
13107
|
-
firstName?: string | null;
|
|
13108
|
-
lastName?: string | null;
|
|
13109
|
-
picture?: string | null;
|
|
13110
|
-
} | null;
|
|
13111
12715
|
} | null;
|
|
13112
12716
|
callCampaignLog?: {
|
|
13113
12717
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -13149,22 +12753,6 @@ export type UpdateCompanyNoteMutation = {
|
|
|
13149
12753
|
} | null;
|
|
13150
12754
|
} | null;
|
|
13151
12755
|
};
|
|
13152
|
-
export type UpdateCompanyProfileMutationVariables = Exact<{
|
|
13153
|
-
input: CompanyProfileInput;
|
|
13154
|
-
}>;
|
|
13155
|
-
export type UpdateCompanyProfileMutation = {
|
|
13156
|
-
__typename?: 'Mutation';
|
|
13157
|
-
updateCompanyProfile?: {
|
|
13158
|
-
__typename?: 'UpdateCompanyProfile';
|
|
13159
|
-
success?: boolean | null;
|
|
13160
|
-
message?: string | null;
|
|
13161
|
-
accountProfile?: {
|
|
13162
|
-
__typename?: 'AccountProfileType';
|
|
13163
|
-
id: string;
|
|
13164
|
-
companyProfile?: any | null;
|
|
13165
|
-
} | null;
|
|
13166
|
-
} | null;
|
|
13167
|
-
};
|
|
13168
12756
|
export type UpdateContactMutationVariables = Exact<{
|
|
13169
12757
|
input?: InputMaybe<ContactInput>;
|
|
13170
12758
|
}>;
|
|
@@ -13477,14 +13065,6 @@ export type UpdateMysupplierMutation = {
|
|
|
13477
13065
|
lastActivity?: any | null;
|
|
13478
13066
|
statusCounts?: any | null;
|
|
13479
13067
|
} | null;
|
|
13480
|
-
createdBy?: {
|
|
13481
|
-
__typename?: 'UserType';
|
|
13482
|
-
id?: string | null;
|
|
13483
|
-
email?: string | null;
|
|
13484
|
-
firstName?: string | null;
|
|
13485
|
-
lastName?: string | null;
|
|
13486
|
-
picture?: string | null;
|
|
13487
|
-
} | null;
|
|
13488
13068
|
} | null;
|
|
13489
13069
|
callCampaignLog?: {
|
|
13490
13070
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -13682,14 +13262,6 @@ export type UpdateMysupplierMutation = {
|
|
|
13682
13262
|
lastActivity?: any | null;
|
|
13683
13263
|
statusCounts?: any | null;
|
|
13684
13264
|
} | null;
|
|
13685
|
-
createdBy?: {
|
|
13686
|
-
__typename?: 'UserType';
|
|
13687
|
-
id?: string | null;
|
|
13688
|
-
email?: string | null;
|
|
13689
|
-
firstName?: string | null;
|
|
13690
|
-
lastName?: string | null;
|
|
13691
|
-
picture?: string | null;
|
|
13692
|
-
} | null;
|
|
13693
13265
|
} | null;
|
|
13694
13266
|
callCampaignLog?: {
|
|
13695
13267
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -14505,14 +14077,6 @@ export type UpdateSupplierlistMutation = {
|
|
|
14505
14077
|
lastActivity?: any | null;
|
|
14506
14078
|
statusCounts?: any | null;
|
|
14507
14079
|
} | null;
|
|
14508
|
-
createdBy?: {
|
|
14509
|
-
__typename?: 'UserType';
|
|
14510
|
-
id?: string | null;
|
|
14511
|
-
email?: string | null;
|
|
14512
|
-
firstName?: string | null;
|
|
14513
|
-
lastName?: string | null;
|
|
14514
|
-
picture?: string | null;
|
|
14515
|
-
} | null;
|
|
14516
14080
|
} | null;
|
|
14517
14081
|
callCampaignLog?: {
|
|
14518
14082
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -14710,14 +14274,6 @@ export type UpdateSupplierlistMutation = {
|
|
|
14710
14274
|
lastActivity?: any | null;
|
|
14711
14275
|
statusCounts?: any | null;
|
|
14712
14276
|
} | null;
|
|
14713
|
-
createdBy?: {
|
|
14714
|
-
__typename?: 'UserType';
|
|
14715
|
-
id?: string | null;
|
|
14716
|
-
email?: string | null;
|
|
14717
|
-
firstName?: string | null;
|
|
14718
|
-
lastName?: string | null;
|
|
14719
|
-
picture?: string | null;
|
|
14720
|
-
} | null;
|
|
14721
14277
|
} | null;
|
|
14722
14278
|
callCampaignLog?: {
|
|
14723
14279
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -15064,14 +14620,6 @@ export type UpdateTaskMutation = {
|
|
|
15064
14620
|
lastActivity?: any | null;
|
|
15065
14621
|
statusCounts?: any | null;
|
|
15066
14622
|
} | null;
|
|
15067
|
-
createdBy?: {
|
|
15068
|
-
__typename?: 'UserType';
|
|
15069
|
-
id?: string | null;
|
|
15070
|
-
email?: string | null;
|
|
15071
|
-
firstName?: string | null;
|
|
15072
|
-
lastName?: string | null;
|
|
15073
|
-
picture?: string | null;
|
|
15074
|
-
} | null;
|
|
15075
14623
|
} | null;
|
|
15076
14624
|
callCampaignLog?: {
|
|
15077
14625
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -15217,17 +14765,6 @@ export type AccountMembersQuery = {
|
|
|
15217
14765
|
} | null;
|
|
15218
14766
|
} | null> | null;
|
|
15219
14767
|
};
|
|
15220
|
-
export type AccountProfileQueryVariables = Exact<{
|
|
15221
|
-
[key: string]: never;
|
|
15222
|
-
}>;
|
|
15223
|
-
export type AccountProfileQuery = {
|
|
15224
|
-
__typename?: 'Query';
|
|
15225
|
-
accountProfile?: {
|
|
15226
|
-
__typename?: 'AccountProfileType';
|
|
15227
|
-
id: string;
|
|
15228
|
-
companyProfile?: any | null;
|
|
15229
|
-
} | null;
|
|
15230
|
-
};
|
|
15231
14768
|
export type AccountSubscriptionQueryVariables = Exact<{
|
|
15232
14769
|
[key: string]: never;
|
|
15233
14770
|
}>;
|
|
@@ -15339,14 +14876,6 @@ export type CallCampaignQuery = {
|
|
|
15339
14876
|
lastActivity?: any | null;
|
|
15340
14877
|
statusCounts?: any | null;
|
|
15341
14878
|
} | null;
|
|
15342
|
-
createdBy?: {
|
|
15343
|
-
__typename?: 'UserType';
|
|
15344
|
-
id?: string | null;
|
|
15345
|
-
email?: string | null;
|
|
15346
|
-
firstName?: string | null;
|
|
15347
|
-
lastName?: string | null;
|
|
15348
|
-
picture?: string | null;
|
|
15349
|
-
} | null;
|
|
15350
14879
|
} | null;
|
|
15351
14880
|
};
|
|
15352
14881
|
export type CallCampaignAnalyticsQueryVariables = Exact<{
|
|
@@ -15498,14 +15027,6 @@ export type CallCampaignLogQuery = {
|
|
|
15498
15027
|
lastActivity?: any | null;
|
|
15499
15028
|
statusCounts?: any | null;
|
|
15500
15029
|
} | null;
|
|
15501
|
-
createdBy?: {
|
|
15502
|
-
__typename?: 'UserType';
|
|
15503
|
-
id?: string | null;
|
|
15504
|
-
email?: string | null;
|
|
15505
|
-
firstName?: string | null;
|
|
15506
|
-
lastName?: string | null;
|
|
15507
|
-
picture?: string | null;
|
|
15508
|
-
} | null;
|
|
15509
15030
|
} | null;
|
|
15510
15031
|
companyNote?: {
|
|
15511
15032
|
__typename?: 'CompanyNoteObject';
|
|
@@ -15662,14 +15183,6 @@ export type CallCampaignLogsQuery = {
|
|
|
15662
15183
|
lastActivity?: any | null;
|
|
15663
15184
|
statusCounts?: any | null;
|
|
15664
15185
|
} | null;
|
|
15665
|
-
createdBy?: {
|
|
15666
|
-
__typename?: 'UserType';
|
|
15667
|
-
id?: string | null;
|
|
15668
|
-
email?: string | null;
|
|
15669
|
-
firstName?: string | null;
|
|
15670
|
-
lastName?: string | null;
|
|
15671
|
-
picture?: string | null;
|
|
15672
|
-
} | null;
|
|
15673
15186
|
} | null;
|
|
15674
15187
|
companyNote?: {
|
|
15675
15188
|
__typename?: 'CompanyNoteObject';
|
|
@@ -15840,14 +15353,6 @@ export type CallCampaignReportQuery = {
|
|
|
15840
15353
|
lastActivity?: any | null;
|
|
15841
15354
|
statusCounts?: any | null;
|
|
15842
15355
|
} | null;
|
|
15843
|
-
createdBy?: {
|
|
15844
|
-
__typename?: 'UserType';
|
|
15845
|
-
id?: string | null;
|
|
15846
|
-
email?: string | null;
|
|
15847
|
-
firstName?: string | null;
|
|
15848
|
-
lastName?: string | null;
|
|
15849
|
-
picture?: string | null;
|
|
15850
|
-
} | null;
|
|
15851
15356
|
} | null;
|
|
15852
15357
|
callCampaignLog?: {
|
|
15853
15358
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -15954,7 +15459,6 @@ export type CallCampaignsQueryVariables = Exact<{
|
|
|
15954
15459
|
pagination: PaginationInput;
|
|
15955
15460
|
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
15956
15461
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
15957
|
-
createdById?: InputMaybe<Scalars['String']['input']>;
|
|
15958
15462
|
}>;
|
|
15959
15463
|
export type CallCampaignsQuery = {
|
|
15960
15464
|
__typename?: 'Query';
|
|
@@ -16013,14 +15517,6 @@ export type CallCampaignsQuery = {
|
|
|
16013
15517
|
lastActivity?: any | null;
|
|
16014
15518
|
statusCounts?: any | null;
|
|
16015
15519
|
} | null;
|
|
16016
|
-
createdBy?: {
|
|
16017
|
-
__typename?: 'UserType';
|
|
16018
|
-
id?: string | null;
|
|
16019
|
-
email?: string | null;
|
|
16020
|
-
firstName?: string | null;
|
|
16021
|
-
lastName?: string | null;
|
|
16022
|
-
picture?: string | null;
|
|
16023
|
-
} | null;
|
|
16024
15520
|
} | null> | null;
|
|
16025
15521
|
pagination?: {
|
|
16026
15522
|
__typename?: 'PaginationInfo';
|
|
@@ -16069,8 +15565,6 @@ export type CampaignQuery = {
|
|
|
16069
15565
|
bounceRate?: number | null;
|
|
16070
15566
|
reasonForPause?: string | null;
|
|
16071
15567
|
pausedUntil?: any | null;
|
|
16072
|
-
subjectLine?: string | null;
|
|
16073
|
-
subjectLines?: Array<string | null> | null;
|
|
16074
15568
|
segments?: Array<{
|
|
16075
15569
|
__typename?: 'SegmentObject';
|
|
16076
15570
|
id?: string | null;
|
|
@@ -16098,14 +15592,6 @@ export type CampaignQuery = {
|
|
|
16098
15592
|
updatedAt?: any | null;
|
|
16099
15593
|
campaignType?: string | null;
|
|
16100
15594
|
} | null;
|
|
16101
|
-
createdBy?: {
|
|
16102
|
-
__typename?: 'UserType';
|
|
16103
|
-
id?: string | null;
|
|
16104
|
-
email?: string | null;
|
|
16105
|
-
firstName?: string | null;
|
|
16106
|
-
lastName?: string | null;
|
|
16107
|
-
picture?: string | null;
|
|
16108
|
-
} | null;
|
|
16109
15595
|
} | null;
|
|
16110
15596
|
};
|
|
16111
15597
|
export type CampaignAnalyticsQueryVariables = Exact<{
|
|
@@ -16174,6 +15660,8 @@ export type CampaignContactsQuery = {
|
|
|
16174
15660
|
lastContactedAt?: any | null;
|
|
16175
15661
|
stepId?: string | null;
|
|
16176
15662
|
stepOrder?: number | null;
|
|
15663
|
+
populatedSubject?: string | null;
|
|
15664
|
+
populatedBody?: string | null;
|
|
16177
15665
|
lastContactedBy?: {
|
|
16178
15666
|
__typename?: 'UserType';
|
|
16179
15667
|
id?: string | null;
|
|
@@ -16234,6 +15722,7 @@ export type CampaignContactsQuery = {
|
|
|
16234
15722
|
taskId?: string | null;
|
|
16235
15723
|
draftSubject?: string | null;
|
|
16236
15724
|
draftBody?: string | null;
|
|
15725
|
+
sentSubject?: string | null;
|
|
16237
15726
|
createdAt?: any | null;
|
|
16238
15727
|
updatedAt?: any | null;
|
|
16239
15728
|
contactName?: string | null;
|
|
@@ -16256,8 +15745,6 @@ export type CampaignContactsQuery = {
|
|
|
16256
15745
|
completedContacts?: number | null;
|
|
16257
15746
|
lastActivity?: any | null;
|
|
16258
15747
|
stepsPreview?: any | null;
|
|
16259
|
-
subjectLine?: string | null;
|
|
16260
|
-
subjectLines?: Array<string | null> | null;
|
|
16261
15748
|
createdAt?: any | null;
|
|
16262
15749
|
updatedAt?: any | null;
|
|
16263
15750
|
steps?: Array<{
|
|
@@ -16307,14 +15794,6 @@ export type CampaignContactsQuery = {
|
|
|
16307
15794
|
total?: number | null;
|
|
16308
15795
|
completionRate?: number | null;
|
|
16309
15796
|
} | null> | null;
|
|
16310
|
-
createdBy?: {
|
|
16311
|
-
__typename?: 'UserType';
|
|
16312
|
-
id?: string | null;
|
|
16313
|
-
email?: string | null;
|
|
16314
|
-
firstName?: string | null;
|
|
16315
|
-
lastName?: string | null;
|
|
16316
|
-
picture?: string | null;
|
|
16317
|
-
} | null;
|
|
16318
15797
|
} | null;
|
|
16319
15798
|
step?: {
|
|
16320
15799
|
__typename?: 'CombinedCampaignStepObject';
|
|
@@ -16416,14 +15895,6 @@ export type CampaignContactsQuery = {
|
|
|
16416
15895
|
lastActivity?: any | null;
|
|
16417
15896
|
statusCounts?: any | null;
|
|
16418
15897
|
} | null;
|
|
16419
|
-
createdBy?: {
|
|
16420
|
-
__typename?: 'UserType';
|
|
16421
|
-
id?: string | null;
|
|
16422
|
-
email?: string | null;
|
|
16423
|
-
firstName?: string | null;
|
|
16424
|
-
lastName?: string | null;
|
|
16425
|
-
picture?: string | null;
|
|
16426
|
-
} | null;
|
|
16427
15898
|
} | null;
|
|
16428
15899
|
callCampaignLog?: {
|
|
16429
15900
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -16655,8 +16126,6 @@ export type CampaignLogsQuery = {
|
|
|
16655
16126
|
bounceRate?: number | null;
|
|
16656
16127
|
reasonForPause?: string | null;
|
|
16657
16128
|
pausedUntil?: any | null;
|
|
16658
|
-
subjectLine?: string | null;
|
|
16659
|
-
subjectLines?: Array<string | null> | null;
|
|
16660
16129
|
segments?: Array<{
|
|
16661
16130
|
__typename?: 'SegmentObject';
|
|
16662
16131
|
id?: string | null;
|
|
@@ -16684,14 +16153,6 @@ export type CampaignLogsQuery = {
|
|
|
16684
16153
|
updatedAt?: any | null;
|
|
16685
16154
|
campaignType?: string | null;
|
|
16686
16155
|
} | null;
|
|
16687
|
-
createdBy?: {
|
|
16688
|
-
__typename?: 'UserType';
|
|
16689
|
-
id?: string | null;
|
|
16690
|
-
email?: string | null;
|
|
16691
|
-
firstName?: string | null;
|
|
16692
|
-
lastName?: string | null;
|
|
16693
|
-
picture?: string | null;
|
|
16694
|
-
} | null;
|
|
16695
16156
|
} | null;
|
|
16696
16157
|
segment?: {
|
|
16697
16158
|
__typename?: 'SegmentObject';
|
|
@@ -16849,7 +16310,6 @@ export type CampaignsQueryVariables = Exact<{
|
|
|
16849
16310
|
pagination: PaginationInput;
|
|
16850
16311
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
16851
16312
|
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
16852
|
-
createdById?: InputMaybe<Scalars['String']['input']>;
|
|
16853
16313
|
}>;
|
|
16854
16314
|
export type CampaignsQuery = {
|
|
16855
16315
|
__typename?: 'Query';
|
|
@@ -16886,8 +16346,6 @@ export type CampaignsQuery = {
|
|
|
16886
16346
|
bounceRate?: number | null;
|
|
16887
16347
|
reasonForPause?: string | null;
|
|
16888
16348
|
pausedUntil?: any | null;
|
|
16889
|
-
subjectLine?: string | null;
|
|
16890
|
-
subjectLines?: Array<string | null> | null;
|
|
16891
16349
|
segments?: Array<{
|
|
16892
16350
|
__typename?: 'SegmentObject';
|
|
16893
16351
|
id?: string | null;
|
|
@@ -16915,14 +16373,6 @@ export type CampaignsQuery = {
|
|
|
16915
16373
|
updatedAt?: any | null;
|
|
16916
16374
|
campaignType?: string | null;
|
|
16917
16375
|
} | null;
|
|
16918
|
-
createdBy?: {
|
|
16919
|
-
__typename?: 'UserType';
|
|
16920
|
-
id?: string | null;
|
|
16921
|
-
email?: string | null;
|
|
16922
|
-
firstName?: string | null;
|
|
16923
|
-
lastName?: string | null;
|
|
16924
|
-
picture?: string | null;
|
|
16925
|
-
} | null;
|
|
16926
16376
|
} | null> | null;
|
|
16927
16377
|
pagination?: {
|
|
16928
16378
|
__typename?: 'PaginationInfo';
|
|
@@ -16957,8 +16407,6 @@ export type CombinedCampaignQuery = {
|
|
|
16957
16407
|
completedContacts?: number | null;
|
|
16958
16408
|
lastActivity?: any | null;
|
|
16959
16409
|
stepsPreview?: any | null;
|
|
16960
|
-
subjectLine?: string | null;
|
|
16961
|
-
subjectLines?: Array<string | null> | null;
|
|
16962
16410
|
createdAt?: any | null;
|
|
16963
16411
|
updatedAt?: any | null;
|
|
16964
16412
|
steps?: Array<{
|
|
@@ -17008,14 +16456,6 @@ export type CombinedCampaignQuery = {
|
|
|
17008
16456
|
total?: number | null;
|
|
17009
16457
|
completionRate?: number | null;
|
|
17010
16458
|
} | null> | null;
|
|
17011
|
-
createdBy?: {
|
|
17012
|
-
__typename?: 'UserType';
|
|
17013
|
-
id?: string | null;
|
|
17014
|
-
email?: string | null;
|
|
17015
|
-
firstName?: string | null;
|
|
17016
|
-
lastName?: string | null;
|
|
17017
|
-
picture?: string | null;
|
|
17018
|
-
} | null;
|
|
17019
16459
|
} | null;
|
|
17020
16460
|
};
|
|
17021
16461
|
export type CombinedCampaignContactsQueryVariables = Exact<{
|
|
@@ -17050,6 +16490,8 @@ export type CombinedCampaignContactsQuery = {
|
|
|
17050
16490
|
lastContactedAt?: any | null;
|
|
17051
16491
|
stepId?: string | null;
|
|
17052
16492
|
stepOrder?: number | null;
|
|
16493
|
+
populatedSubject?: string | null;
|
|
16494
|
+
populatedBody?: string | null;
|
|
17053
16495
|
lastContactedBy?: {
|
|
17054
16496
|
__typename?: 'UserType';
|
|
17055
16497
|
id?: string | null;
|
|
@@ -17110,6 +16552,7 @@ export type CombinedCampaignContactsQuery = {
|
|
|
17110
16552
|
taskId?: string | null;
|
|
17111
16553
|
draftSubject?: string | null;
|
|
17112
16554
|
draftBody?: string | null;
|
|
16555
|
+
sentSubject?: string | null;
|
|
17113
16556
|
createdAt?: any | null;
|
|
17114
16557
|
updatedAt?: any | null;
|
|
17115
16558
|
contactName?: string | null;
|
|
@@ -17132,8 +16575,6 @@ export type CombinedCampaignContactsQuery = {
|
|
|
17132
16575
|
completedContacts?: number | null;
|
|
17133
16576
|
lastActivity?: any | null;
|
|
17134
16577
|
stepsPreview?: any | null;
|
|
17135
|
-
subjectLine?: string | null;
|
|
17136
|
-
subjectLines?: Array<string | null> | null;
|
|
17137
16578
|
createdAt?: any | null;
|
|
17138
16579
|
updatedAt?: any | null;
|
|
17139
16580
|
steps?: Array<{
|
|
@@ -17181,16 +16622,8 @@ export type CombinedCampaignContactsQuery = {
|
|
|
17181
16622
|
completed?: number | null;
|
|
17182
16623
|
skipped?: number | null;
|
|
17183
16624
|
total?: number | null;
|
|
17184
|
-
completionRate?: number | null;
|
|
17185
|
-
} | null> | null;
|
|
17186
|
-
createdBy?: {
|
|
17187
|
-
__typename?: 'UserType';
|
|
17188
|
-
id?: string | null;
|
|
17189
|
-
email?: string | null;
|
|
17190
|
-
firstName?: string | null;
|
|
17191
|
-
lastName?: string | null;
|
|
17192
|
-
picture?: string | null;
|
|
17193
|
-
} | null;
|
|
16625
|
+
completionRate?: number | null;
|
|
16626
|
+
} | null> | null;
|
|
17194
16627
|
} | null;
|
|
17195
16628
|
step?: {
|
|
17196
16629
|
__typename?: 'CombinedCampaignStepObject';
|
|
@@ -17292,14 +16725,6 @@ export type CombinedCampaignContactsQuery = {
|
|
|
17292
16725
|
lastActivity?: any | null;
|
|
17293
16726
|
statusCounts?: any | null;
|
|
17294
16727
|
} | null;
|
|
17295
|
-
createdBy?: {
|
|
17296
|
-
__typename?: 'UserType';
|
|
17297
|
-
id?: string | null;
|
|
17298
|
-
email?: string | null;
|
|
17299
|
-
firstName?: string | null;
|
|
17300
|
-
lastName?: string | null;
|
|
17301
|
-
picture?: string | null;
|
|
17302
|
-
} | null;
|
|
17303
16728
|
} | null;
|
|
17304
16729
|
callCampaignLog?: {
|
|
17305
16730
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -17416,6 +16841,7 @@ export type CombinedCampaignLogsQuery = {
|
|
|
17416
16841
|
taskId?: string | null;
|
|
17417
16842
|
draftSubject?: string | null;
|
|
17418
16843
|
draftBody?: string | null;
|
|
16844
|
+
sentSubject?: string | null;
|
|
17419
16845
|
createdAt?: any | null;
|
|
17420
16846
|
updatedAt?: any | null;
|
|
17421
16847
|
contactName?: string | null;
|
|
@@ -17438,8 +16864,6 @@ export type CombinedCampaignLogsQuery = {
|
|
|
17438
16864
|
completedContacts?: number | null;
|
|
17439
16865
|
lastActivity?: any | null;
|
|
17440
16866
|
stepsPreview?: any | null;
|
|
17441
|
-
subjectLine?: string | null;
|
|
17442
|
-
subjectLines?: Array<string | null> | null;
|
|
17443
16867
|
createdAt?: any | null;
|
|
17444
16868
|
updatedAt?: any | null;
|
|
17445
16869
|
steps?: Array<{
|
|
@@ -17489,14 +16913,6 @@ export type CombinedCampaignLogsQuery = {
|
|
|
17489
16913
|
total?: number | null;
|
|
17490
16914
|
completionRate?: number | null;
|
|
17491
16915
|
} | null> | null;
|
|
17492
|
-
createdBy?: {
|
|
17493
|
-
__typename?: 'UserType';
|
|
17494
|
-
id?: string | null;
|
|
17495
|
-
email?: string | null;
|
|
17496
|
-
firstName?: string | null;
|
|
17497
|
-
lastName?: string | null;
|
|
17498
|
-
picture?: string | null;
|
|
17499
|
-
} | null;
|
|
17500
16916
|
} | null;
|
|
17501
16917
|
step?: {
|
|
17502
16918
|
__typename?: 'CombinedCampaignStepObject';
|
|
@@ -17598,14 +17014,6 @@ export type CombinedCampaignLogsQuery = {
|
|
|
17598
17014
|
lastActivity?: any | null;
|
|
17599
17015
|
statusCounts?: any | null;
|
|
17600
17016
|
} | null;
|
|
17601
|
-
createdBy?: {
|
|
17602
|
-
__typename?: 'UserType';
|
|
17603
|
-
id?: string | null;
|
|
17604
|
-
email?: string | null;
|
|
17605
|
-
firstName?: string | null;
|
|
17606
|
-
lastName?: string | null;
|
|
17607
|
-
picture?: string | null;
|
|
17608
|
-
} | null;
|
|
17609
17017
|
} | null;
|
|
17610
17018
|
callCampaignLog?: {
|
|
17611
17019
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -17773,7 +17181,6 @@ export type CombinedCampaignsQueryVariables = Exact<{
|
|
|
17773
17181
|
pagination?: InputMaybe<PaginationInput>;
|
|
17774
17182
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
17775
17183
|
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
17776
|
-
createdById?: InputMaybe<Scalars['String']['input']>;
|
|
17777
17184
|
}>;
|
|
17778
17185
|
export type CombinedCampaignsQuery = {
|
|
17779
17186
|
__typename?: 'Query';
|
|
@@ -17796,8 +17203,6 @@ export type CombinedCampaignsQuery = {
|
|
|
17796
17203
|
completedContacts?: number | null;
|
|
17797
17204
|
lastActivity?: any | null;
|
|
17798
17205
|
stepsPreview?: any | null;
|
|
17799
|
-
subjectLine?: string | null;
|
|
17800
|
-
subjectLines?: Array<string | null> | null;
|
|
17801
17206
|
createdAt?: any | null;
|
|
17802
17207
|
updatedAt?: any | null;
|
|
17803
17208
|
steps?: Array<{
|
|
@@ -17847,14 +17252,6 @@ export type CombinedCampaignsQuery = {
|
|
|
17847
17252
|
total?: number | null;
|
|
17848
17253
|
completionRate?: number | null;
|
|
17849
17254
|
} | null> | null;
|
|
17850
|
-
createdBy?: {
|
|
17851
|
-
__typename?: 'UserType';
|
|
17852
|
-
id?: string | null;
|
|
17853
|
-
email?: string | null;
|
|
17854
|
-
firstName?: string | null;
|
|
17855
|
-
lastName?: string | null;
|
|
17856
|
-
picture?: string | null;
|
|
17857
|
-
} | null;
|
|
17858
17255
|
} | null> | null;
|
|
17859
17256
|
pagination?: {
|
|
17860
17257
|
__typename?: 'PaginationInfo';
|
|
@@ -18071,14 +17468,6 @@ export type CompaniesQuery = {
|
|
|
18071
17468
|
lastActivity?: any | null;
|
|
18072
17469
|
statusCounts?: any | null;
|
|
18073
17470
|
} | null;
|
|
18074
|
-
createdBy?: {
|
|
18075
|
-
__typename?: 'UserType';
|
|
18076
|
-
id?: string | null;
|
|
18077
|
-
email?: string | null;
|
|
18078
|
-
firstName?: string | null;
|
|
18079
|
-
lastName?: string | null;
|
|
18080
|
-
picture?: string | null;
|
|
18081
|
-
} | null;
|
|
18082
17471
|
} | null;
|
|
18083
17472
|
callCampaignLog?: {
|
|
18084
17473
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -18276,14 +17665,6 @@ export type CompaniesQuery = {
|
|
|
18276
17665
|
lastActivity?: any | null;
|
|
18277
17666
|
statusCounts?: any | null;
|
|
18278
17667
|
} | null;
|
|
18279
|
-
createdBy?: {
|
|
18280
|
-
__typename?: 'UserType';
|
|
18281
|
-
id?: string | null;
|
|
18282
|
-
email?: string | null;
|
|
18283
|
-
firstName?: string | null;
|
|
18284
|
-
lastName?: string | null;
|
|
18285
|
-
picture?: string | null;
|
|
18286
|
-
} | null;
|
|
18287
17668
|
} | null;
|
|
18288
17669
|
callCampaignLog?: {
|
|
18289
17670
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -18754,14 +18135,6 @@ export type CompanyQuery = {
|
|
|
18754
18135
|
lastActivity?: any | null;
|
|
18755
18136
|
statusCounts?: any | null;
|
|
18756
18137
|
} | null;
|
|
18757
|
-
createdBy?: {
|
|
18758
|
-
__typename?: 'UserType';
|
|
18759
|
-
id?: string | null;
|
|
18760
|
-
email?: string | null;
|
|
18761
|
-
firstName?: string | null;
|
|
18762
|
-
lastName?: string | null;
|
|
18763
|
-
picture?: string | null;
|
|
18764
|
-
} | null;
|
|
18765
18138
|
} | null;
|
|
18766
18139
|
callCampaignLog?: {
|
|
18767
18140
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -18959,14 +18332,6 @@ export type CompanyQuery = {
|
|
|
18959
18332
|
lastActivity?: any | null;
|
|
18960
18333
|
statusCounts?: any | null;
|
|
18961
18334
|
} | null;
|
|
18962
|
-
createdBy?: {
|
|
18963
|
-
__typename?: 'UserType';
|
|
18964
|
-
id?: string | null;
|
|
18965
|
-
email?: string | null;
|
|
18966
|
-
firstName?: string | null;
|
|
18967
|
-
lastName?: string | null;
|
|
18968
|
-
picture?: string | null;
|
|
18969
|
-
} | null;
|
|
18970
18335
|
} | null;
|
|
18971
18336
|
callCampaignLog?: {
|
|
18972
18337
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -19398,14 +18763,6 @@ export type CompanyNoteQuery = {
|
|
|
19398
18763
|
lastActivity?: any | null;
|
|
19399
18764
|
statusCounts?: any | null;
|
|
19400
18765
|
} | null;
|
|
19401
|
-
createdBy?: {
|
|
19402
|
-
__typename?: 'UserType';
|
|
19403
|
-
id?: string | null;
|
|
19404
|
-
email?: string | null;
|
|
19405
|
-
firstName?: string | null;
|
|
19406
|
-
lastName?: string | null;
|
|
19407
|
-
picture?: string | null;
|
|
19408
|
-
} | null;
|
|
19409
18766
|
} | null;
|
|
19410
18767
|
callCampaignLog?: {
|
|
19411
18768
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -19561,14 +18918,6 @@ export type CompanyNotesQuery = {
|
|
|
19561
18918
|
lastActivity?: any | null;
|
|
19562
18919
|
statusCounts?: any | null;
|
|
19563
18920
|
} | null;
|
|
19564
|
-
createdBy?: {
|
|
19565
|
-
__typename?: 'UserType';
|
|
19566
|
-
id?: string | null;
|
|
19567
|
-
email?: string | null;
|
|
19568
|
-
firstName?: string | null;
|
|
19569
|
-
lastName?: string | null;
|
|
19570
|
-
picture?: string | null;
|
|
19571
|
-
} | null;
|
|
19572
18921
|
} | null;
|
|
19573
18922
|
callCampaignLog?: {
|
|
19574
18923
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -19816,14 +19165,6 @@ export type CompanySearchQuery = {
|
|
|
19816
19165
|
lastActivity?: any | null;
|
|
19817
19166
|
statusCounts?: any | null;
|
|
19818
19167
|
} | null;
|
|
19819
|
-
createdBy?: {
|
|
19820
|
-
__typename?: 'UserType';
|
|
19821
|
-
id?: string | null;
|
|
19822
|
-
email?: string | null;
|
|
19823
|
-
firstName?: string | null;
|
|
19824
|
-
lastName?: string | null;
|
|
19825
|
-
picture?: string | null;
|
|
19826
|
-
} | null;
|
|
19827
19168
|
} | null;
|
|
19828
19169
|
callCampaignLog?: {
|
|
19829
19170
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -20021,14 +19362,6 @@ export type CompanySearchQuery = {
|
|
|
20021
19362
|
lastActivity?: any | null;
|
|
20022
19363
|
statusCounts?: any | null;
|
|
20023
19364
|
} | null;
|
|
20024
|
-
createdBy?: {
|
|
20025
|
-
__typename?: 'UserType';
|
|
20026
|
-
id?: string | null;
|
|
20027
|
-
email?: string | null;
|
|
20028
|
-
firstName?: string | null;
|
|
20029
|
-
lastName?: string | null;
|
|
20030
|
-
picture?: string | null;
|
|
20031
|
-
} | null;
|
|
20032
19365
|
} | null;
|
|
20033
19366
|
callCampaignLog?: {
|
|
20034
19367
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -21243,14 +20576,6 @@ export type MysupplierQuery = {
|
|
|
21243
20576
|
lastActivity?: any | null;
|
|
21244
20577
|
statusCounts?: any | null;
|
|
21245
20578
|
} | null;
|
|
21246
|
-
createdBy?: {
|
|
21247
|
-
__typename?: 'UserType';
|
|
21248
|
-
id?: string | null;
|
|
21249
|
-
email?: string | null;
|
|
21250
|
-
firstName?: string | null;
|
|
21251
|
-
lastName?: string | null;
|
|
21252
|
-
picture?: string | null;
|
|
21253
|
-
} | null;
|
|
21254
20579
|
} | null;
|
|
21255
20580
|
callCampaignLog?: {
|
|
21256
20581
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -21448,14 +20773,6 @@ export type MysupplierQuery = {
|
|
|
21448
20773
|
lastActivity?: any | null;
|
|
21449
20774
|
statusCounts?: any | null;
|
|
21450
20775
|
} | null;
|
|
21451
|
-
createdBy?: {
|
|
21452
|
-
__typename?: 'UserType';
|
|
21453
|
-
id?: string | null;
|
|
21454
|
-
email?: string | null;
|
|
21455
|
-
firstName?: string | null;
|
|
21456
|
-
lastName?: string | null;
|
|
21457
|
-
picture?: string | null;
|
|
21458
|
-
} | null;
|
|
21459
20776
|
} | null;
|
|
21460
20777
|
callCampaignLog?: {
|
|
21461
20778
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -21918,14 +21235,6 @@ export type MysupplierListQuery = {
|
|
|
21918
21235
|
lastActivity?: any | null;
|
|
21919
21236
|
statusCounts?: any | null;
|
|
21920
21237
|
} | null;
|
|
21921
|
-
createdBy?: {
|
|
21922
|
-
__typename?: 'UserType';
|
|
21923
|
-
id?: string | null;
|
|
21924
|
-
email?: string | null;
|
|
21925
|
-
firstName?: string | null;
|
|
21926
|
-
lastName?: string | null;
|
|
21927
|
-
picture?: string | null;
|
|
21928
|
-
} | null;
|
|
21929
21238
|
} | null;
|
|
21930
21239
|
callCampaignLog?: {
|
|
21931
21240
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -22123,14 +21432,6 @@ export type MysupplierListQuery = {
|
|
|
22123
21432
|
lastActivity?: any | null;
|
|
22124
21433
|
statusCounts?: any | null;
|
|
22125
21434
|
} | null;
|
|
22126
|
-
createdBy?: {
|
|
22127
|
-
__typename?: 'UserType';
|
|
22128
|
-
id?: string | null;
|
|
22129
|
-
email?: string | null;
|
|
22130
|
-
firstName?: string | null;
|
|
22131
|
-
lastName?: string | null;
|
|
22132
|
-
picture?: string | null;
|
|
22133
|
-
} | null;
|
|
22134
21435
|
} | null;
|
|
22135
21436
|
callCampaignLog?: {
|
|
22136
21437
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -22812,14 +22113,6 @@ export type RecentHistoryQuery = {
|
|
|
22812
22113
|
lastActivity?: any | null;
|
|
22813
22114
|
statusCounts?: any | null;
|
|
22814
22115
|
} | null;
|
|
22815
|
-
createdBy?: {
|
|
22816
|
-
__typename?: 'UserType';
|
|
22817
|
-
id?: string | null;
|
|
22818
|
-
email?: string | null;
|
|
22819
|
-
firstName?: string | null;
|
|
22820
|
-
lastName?: string | null;
|
|
22821
|
-
picture?: string | null;
|
|
22822
|
-
} | null;
|
|
22823
22116
|
} | null;
|
|
22824
22117
|
callCampaignLog?: {
|
|
22825
22118
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -23017,14 +22310,6 @@ export type RecentHistoryQuery = {
|
|
|
23017
22310
|
lastActivity?: any | null;
|
|
23018
22311
|
statusCounts?: any | null;
|
|
23019
22312
|
} | null;
|
|
23020
|
-
createdBy?: {
|
|
23021
|
-
__typename?: 'UserType';
|
|
23022
|
-
id?: string | null;
|
|
23023
|
-
email?: string | null;
|
|
23024
|
-
firstName?: string | null;
|
|
23025
|
-
lastName?: string | null;
|
|
23026
|
-
picture?: string | null;
|
|
23027
|
-
} | null;
|
|
23028
22313
|
} | null;
|
|
23029
22314
|
callCampaignLog?: {
|
|
23030
22315
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -24460,14 +23745,6 @@ export type SupplierQuery = {
|
|
|
24460
23745
|
lastActivity?: any | null;
|
|
24461
23746
|
statusCounts?: any | null;
|
|
24462
23747
|
} | null;
|
|
24463
|
-
createdBy?: {
|
|
24464
|
-
__typename?: 'UserType';
|
|
24465
|
-
id?: string | null;
|
|
24466
|
-
email?: string | null;
|
|
24467
|
-
firstName?: string | null;
|
|
24468
|
-
lastName?: string | null;
|
|
24469
|
-
picture?: string | null;
|
|
24470
|
-
} | null;
|
|
24471
23748
|
} | null;
|
|
24472
23749
|
callCampaignLog?: {
|
|
24473
23750
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -24665,14 +23942,6 @@ export type SupplierQuery = {
|
|
|
24665
23942
|
lastActivity?: any | null;
|
|
24666
23943
|
statusCounts?: any | null;
|
|
24667
23944
|
} | null;
|
|
24668
|
-
createdBy?: {
|
|
24669
|
-
__typename?: 'UserType';
|
|
24670
|
-
id?: string | null;
|
|
24671
|
-
email?: string | null;
|
|
24672
|
-
firstName?: string | null;
|
|
24673
|
-
lastName?: string | null;
|
|
24674
|
-
picture?: string | null;
|
|
24675
|
-
} | null;
|
|
24676
23945
|
} | null;
|
|
24677
23946
|
callCampaignLog?: {
|
|
24678
23947
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -25244,14 +24513,6 @@ export type SupplierlistQuery = {
|
|
|
25244
24513
|
lastActivity?: any | null;
|
|
25245
24514
|
statusCounts?: any | null;
|
|
25246
24515
|
} | null;
|
|
25247
|
-
createdBy?: {
|
|
25248
|
-
__typename?: 'UserType';
|
|
25249
|
-
id?: string | null;
|
|
25250
|
-
email?: string | null;
|
|
25251
|
-
firstName?: string | null;
|
|
25252
|
-
lastName?: string | null;
|
|
25253
|
-
picture?: string | null;
|
|
25254
|
-
} | null;
|
|
25255
24516
|
} | null;
|
|
25256
24517
|
callCampaignLog?: {
|
|
25257
24518
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -25449,14 +24710,6 @@ export type SupplierlistQuery = {
|
|
|
25449
24710
|
lastActivity?: any | null;
|
|
25450
24711
|
statusCounts?: any | null;
|
|
25451
24712
|
} | null;
|
|
25452
|
-
createdBy?: {
|
|
25453
|
-
__typename?: 'UserType';
|
|
25454
|
-
id?: string | null;
|
|
25455
|
-
email?: string | null;
|
|
25456
|
-
firstName?: string | null;
|
|
25457
|
-
lastName?: string | null;
|
|
25458
|
-
picture?: string | null;
|
|
25459
|
-
} | null;
|
|
25460
24713
|
} | null;
|
|
25461
24714
|
callCampaignLog?: {
|
|
25462
24715
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -25919,14 +25172,6 @@ export type SupplierlistListQuery = {
|
|
|
25919
25172
|
lastActivity?: any | null;
|
|
25920
25173
|
statusCounts?: any | null;
|
|
25921
25174
|
} | null;
|
|
25922
|
-
createdBy?: {
|
|
25923
|
-
__typename?: 'UserType';
|
|
25924
|
-
id?: string | null;
|
|
25925
|
-
email?: string | null;
|
|
25926
|
-
firstName?: string | null;
|
|
25927
|
-
lastName?: string | null;
|
|
25928
|
-
picture?: string | null;
|
|
25929
|
-
} | null;
|
|
25930
25175
|
} | null;
|
|
25931
25176
|
callCampaignLog?: {
|
|
25932
25177
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -26124,14 +25369,6 @@ export type SupplierlistListQuery = {
|
|
|
26124
25369
|
lastActivity?: any | null;
|
|
26125
25370
|
statusCounts?: any | null;
|
|
26126
25371
|
} | null;
|
|
26127
|
-
createdBy?: {
|
|
26128
|
-
__typename?: 'UserType';
|
|
26129
|
-
id?: string | null;
|
|
26130
|
-
email?: string | null;
|
|
26131
|
-
firstName?: string | null;
|
|
26132
|
-
lastName?: string | null;
|
|
26133
|
-
picture?: string | null;
|
|
26134
|
-
} | null;
|
|
26135
25372
|
} | null;
|
|
26136
25373
|
callCampaignLog?: {
|
|
26137
25374
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -26703,14 +25940,6 @@ export type SuppliersQuery = {
|
|
|
26703
25940
|
lastActivity?: any | null;
|
|
26704
25941
|
statusCounts?: any | null;
|
|
26705
25942
|
} | null;
|
|
26706
|
-
createdBy?: {
|
|
26707
|
-
__typename?: 'UserType';
|
|
26708
|
-
id?: string | null;
|
|
26709
|
-
email?: string | null;
|
|
26710
|
-
firstName?: string | null;
|
|
26711
|
-
lastName?: string | null;
|
|
26712
|
-
picture?: string | null;
|
|
26713
|
-
} | null;
|
|
26714
25943
|
} | null;
|
|
26715
25944
|
callCampaignLog?: {
|
|
26716
25945
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -26908,14 +26137,6 @@ export type SuppliersQuery = {
|
|
|
26908
26137
|
lastActivity?: any | null;
|
|
26909
26138
|
statusCounts?: any | null;
|
|
26910
26139
|
} | null;
|
|
26911
|
-
createdBy?: {
|
|
26912
|
-
__typename?: 'UserType';
|
|
26913
|
-
id?: string | null;
|
|
26914
|
-
email?: string | null;
|
|
26915
|
-
firstName?: string | null;
|
|
26916
|
-
lastName?: string | null;
|
|
26917
|
-
picture?: string | null;
|
|
26918
|
-
} | null;
|
|
26919
26140
|
} | null;
|
|
26920
26141
|
callCampaignLog?: {
|
|
26921
26142
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -27278,14 +26499,6 @@ export type TaskQuery = {
|
|
|
27278
26499
|
lastActivity?: any | null;
|
|
27279
26500
|
statusCounts?: any | null;
|
|
27280
26501
|
} | null;
|
|
27281
|
-
createdBy?: {
|
|
27282
|
-
__typename?: 'UserType';
|
|
27283
|
-
id?: string | null;
|
|
27284
|
-
email?: string | null;
|
|
27285
|
-
firstName?: string | null;
|
|
27286
|
-
lastName?: string | null;
|
|
27287
|
-
picture?: string | null;
|
|
27288
|
-
} | null;
|
|
27289
26502
|
} | null;
|
|
27290
26503
|
callCampaignLog?: {
|
|
27291
26504
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -27441,14 +26654,6 @@ export type TasksQuery = {
|
|
|
27441
26654
|
lastActivity?: any | null;
|
|
27442
26655
|
statusCounts?: any | null;
|
|
27443
26656
|
} | null;
|
|
27444
|
-
createdBy?: {
|
|
27445
|
-
__typename?: 'UserType';
|
|
27446
|
-
id?: string | null;
|
|
27447
|
-
email?: string | null;
|
|
27448
|
-
firstName?: string | null;
|
|
27449
|
-
lastName?: string | null;
|
|
27450
|
-
picture?: string | null;
|
|
27451
|
-
} | null;
|
|
27452
26657
|
} | null;
|
|
27453
26658
|
callCampaignLog?: {
|
|
27454
26659
|
__typename?: 'CallCampaignLogObject';
|
|
@@ -29679,6 +28884,7 @@ export type SendEmailToEmailThreadMutationFn = Apollo.MutationFunction<SendEmail
|
|
|
29679
28884
|
* bccEmails: // value for 'bccEmails'
|
|
29680
28885
|
* body: // value for 'body'
|
|
29681
28886
|
* ccEmails: // value for 'ccEmails'
|
|
28887
|
+
* contactLogId: // value for 'contactLogId'
|
|
29682
28888
|
* mailLogId: // value for 'mailLogId'
|
|
29683
28889
|
* subject: // value for 'subject'
|
|
29684
28890
|
* toEmails: // value for 'toEmails'
|
|
@@ -29691,7 +28897,8 @@ export declare function useSendEmailToEmailThreadMutation(baseOptions?: Apollo.M
|
|
|
29691
28897
|
bccEmails?: InputMaybe<Array<InputMaybe<Scalars["String"]["input"]>> | InputMaybe<Scalars["String"]["input"]>>;
|
|
29692
28898
|
body: Scalars["String"]["input"];
|
|
29693
28899
|
ccEmails?: InputMaybe<Array<InputMaybe<Scalars["String"]["input"]>> | InputMaybe<Scalars["String"]["input"]>>;
|
|
29694
|
-
|
|
28900
|
+
contactLogId?: InputMaybe<Scalars["Int"]["input"]>;
|
|
28901
|
+
mailLogId?: InputMaybe<Scalars["Int"]["input"]>;
|
|
29695
28902
|
subject?: InputMaybe<Scalars["String"]["input"]>;
|
|
29696
28903
|
toEmails?: InputMaybe<Array<InputMaybe<Scalars["String"]["input"]>> | InputMaybe<Scalars["String"]["input"]>>;
|
|
29697
28904
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
@@ -30284,31 +29491,6 @@ export declare function useUpdateCompanyNoteMutation(baseOptions?: Apollo.Mutati
|
|
|
30284
29491
|
export type UpdateCompanyNoteMutationHookResult = ReturnType<typeof useUpdateCompanyNoteMutation>;
|
|
30285
29492
|
export type UpdateCompanyNoteMutationResult = Apollo.MutationResult<UpdateCompanyNoteMutation>;
|
|
30286
29493
|
export type UpdateCompanyNoteMutationOptions = Apollo.BaseMutationOptions<UpdateCompanyNoteMutation, UpdateCompanyNoteMutationVariables>;
|
|
30287
|
-
export declare const UpdateCompanyProfileDocument: Apollo.DocumentNode;
|
|
30288
|
-
export type UpdateCompanyProfileMutationFn = Apollo.MutationFunction<UpdateCompanyProfileMutation, UpdateCompanyProfileMutationVariables>;
|
|
30289
|
-
/**
|
|
30290
|
-
* __useUpdateCompanyProfileMutation__
|
|
30291
|
-
*
|
|
30292
|
-
* To run a mutation, you first call `useUpdateCompanyProfileMutation` within a React component and pass it any options that fit your needs.
|
|
30293
|
-
* When your component renders, `useUpdateCompanyProfileMutation` returns a tuple that includes:
|
|
30294
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
30295
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
30296
|
-
*
|
|
30297
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
30298
|
-
*
|
|
30299
|
-
* @example
|
|
30300
|
-
* const [updateCompanyProfileMutation, { data, loading, error }] = useUpdateCompanyProfileMutation({
|
|
30301
|
-
* variables: {
|
|
30302
|
-
* input: // value for 'input'
|
|
30303
|
-
* },
|
|
30304
|
-
* });
|
|
30305
|
-
*/
|
|
30306
|
-
export declare function useUpdateCompanyProfileMutation(baseOptions?: Apollo.MutationHookOptions<UpdateCompanyProfileMutation, UpdateCompanyProfileMutationVariables>): Apollo.MutationTuple<UpdateCompanyProfileMutation, Exact<{
|
|
30307
|
-
input: CompanyProfileInput;
|
|
30308
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
30309
|
-
export type UpdateCompanyProfileMutationHookResult = ReturnType<typeof useUpdateCompanyProfileMutation>;
|
|
30310
|
-
export type UpdateCompanyProfileMutationResult = Apollo.MutationResult<UpdateCompanyProfileMutation>;
|
|
30311
|
-
export type UpdateCompanyProfileMutationOptions = Apollo.BaseMutationOptions<UpdateCompanyProfileMutation, UpdateCompanyProfileMutationVariables>;
|
|
30312
29494
|
export declare const UpdateContactDocument: Apollo.DocumentNode;
|
|
30313
29495
|
export type UpdateContactMutationFn = Apollo.MutationFunction<UpdateContactMutation, UpdateContactMutationVariables>;
|
|
30314
29496
|
/**
|
|
@@ -30629,35 +29811,6 @@ export type AccountMembersQueryHookResult = ReturnType<typeof useAccountMembersQ
|
|
|
30629
29811
|
export type AccountMembersLazyQueryHookResult = ReturnType<typeof useAccountMembersLazyQuery>;
|
|
30630
29812
|
export type AccountMembersSuspenseQueryHookResult = ReturnType<typeof useAccountMembersSuspenseQuery>;
|
|
30631
29813
|
export type AccountMembersQueryResult = Apollo.QueryResult<AccountMembersQuery, AccountMembersQueryVariables>;
|
|
30632
|
-
export declare const AccountProfileDocument: Apollo.DocumentNode;
|
|
30633
|
-
/**
|
|
30634
|
-
* __useAccountProfileQuery__
|
|
30635
|
-
*
|
|
30636
|
-
* To run a query within a React component, call `useAccountProfileQuery` and pass it any options that fit your needs.
|
|
30637
|
-
* When your component renders, `useAccountProfileQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
30638
|
-
* you can use to render your UI.
|
|
30639
|
-
*
|
|
30640
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
30641
|
-
*
|
|
30642
|
-
* @example
|
|
30643
|
-
* const { data, loading, error } = useAccountProfileQuery({
|
|
30644
|
-
* variables: {
|
|
30645
|
-
* },
|
|
30646
|
-
* });
|
|
30647
|
-
*/
|
|
30648
|
-
export declare function useAccountProfileQuery(baseOptions?: Apollo.QueryHookOptions<AccountProfileQuery, AccountProfileQueryVariables>): Apollo.QueryResult<AccountProfileQuery, Exact<{
|
|
30649
|
-
[key: string]: never;
|
|
30650
|
-
}>>;
|
|
30651
|
-
export declare function useAccountProfileLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<AccountProfileQuery, AccountProfileQueryVariables>): Apollo.LazyQueryResultTuple<AccountProfileQuery, Exact<{
|
|
30652
|
-
[key: string]: never;
|
|
30653
|
-
}>>;
|
|
30654
|
-
export declare function useAccountProfileSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<AccountProfileQuery, AccountProfileQueryVariables>): Apollo.UseSuspenseQueryResult<AccountProfileQuery | undefined, Exact<{
|
|
30655
|
-
[key: string]: never;
|
|
30656
|
-
}>>;
|
|
30657
|
-
export type AccountProfileQueryHookResult = ReturnType<typeof useAccountProfileQuery>;
|
|
30658
|
-
export type AccountProfileLazyQueryHookResult = ReturnType<typeof useAccountProfileLazyQuery>;
|
|
30659
|
-
export type AccountProfileSuspenseQueryHookResult = ReturnType<typeof useAccountProfileSuspenseQuery>;
|
|
30660
|
-
export type AccountProfileQueryResult = Apollo.QueryResult<AccountProfileQuery, AccountProfileQueryVariables>;
|
|
30661
29814
|
export declare const AccountSubscriptionDocument: Apollo.DocumentNode;
|
|
30662
29815
|
/**
|
|
30663
29816
|
* __useAccountSubscriptionQuery__
|
|
@@ -30926,7 +30079,6 @@ export declare const CallCampaignsDocument: Apollo.DocumentNode;
|
|
|
30926
30079
|
* pagination: // value for 'pagination'
|
|
30927
30080
|
* sortBy: // value for 'sortBy'
|
|
30928
30081
|
* status: // value for 'status'
|
|
30929
|
-
* createdById: // value for 'createdById'
|
|
30930
30082
|
* },
|
|
30931
30083
|
* });
|
|
30932
30084
|
*/
|
|
@@ -30939,19 +30091,16 @@ export declare function useCallCampaignsQuery(baseOptions: Apollo.QueryHookOptio
|
|
|
30939
30091
|
pagination: PaginationInput;
|
|
30940
30092
|
sortBy?: InputMaybe<Scalars["String"]["input"]>;
|
|
30941
30093
|
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
30942
|
-
createdById?: InputMaybe<Scalars["String"]["input"]>;
|
|
30943
30094
|
}>>;
|
|
30944
30095
|
export declare function useCallCampaignsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CallCampaignsQuery, CallCampaignsQueryVariables>): Apollo.LazyQueryResultTuple<CallCampaignsQuery, Exact<{
|
|
30945
30096
|
pagination: PaginationInput;
|
|
30946
30097
|
sortBy?: InputMaybe<Scalars["String"]["input"]>;
|
|
30947
30098
|
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
30948
|
-
createdById?: InputMaybe<Scalars["String"]["input"]>;
|
|
30949
30099
|
}>>;
|
|
30950
30100
|
export declare function useCallCampaignsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CallCampaignsQuery, CallCampaignsQueryVariables>): Apollo.UseSuspenseQueryResult<CallCampaignsQuery | undefined, Exact<{
|
|
30951
30101
|
pagination: PaginationInput;
|
|
30952
30102
|
sortBy?: InputMaybe<Scalars["String"]["input"]>;
|
|
30953
30103
|
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
30954
|
-
createdById?: InputMaybe<Scalars["String"]["input"]>;
|
|
30955
30104
|
}>>;
|
|
30956
30105
|
export type CallCampaignsQueryHookResult = ReturnType<typeof useCallCampaignsQuery>;
|
|
30957
30106
|
export type CallCampaignsLazyQueryHookResult = ReturnType<typeof useCallCampaignsLazyQuery>;
|
|
@@ -31163,7 +30312,6 @@ export declare const CampaignsDocument: Apollo.DocumentNode;
|
|
|
31163
30312
|
* pagination: // value for 'pagination'
|
|
31164
30313
|
* status: // value for 'status'
|
|
31165
30314
|
* sortBy: // value for 'sortBy'
|
|
31166
|
-
* createdById: // value for 'createdById'
|
|
31167
30315
|
* },
|
|
31168
30316
|
* });
|
|
31169
30317
|
*/
|
|
@@ -31176,19 +30324,16 @@ export declare function useCampaignsQuery(baseOptions: Apollo.QueryHookOptions<C
|
|
|
31176
30324
|
pagination: PaginationInput;
|
|
31177
30325
|
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
31178
30326
|
sortBy?: InputMaybe<Scalars["String"]["input"]>;
|
|
31179
|
-
createdById?: InputMaybe<Scalars["String"]["input"]>;
|
|
31180
30327
|
}>>;
|
|
31181
30328
|
export declare function useCampaignsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CampaignsQuery, CampaignsQueryVariables>): Apollo.LazyQueryResultTuple<CampaignsQuery, Exact<{
|
|
31182
30329
|
pagination: PaginationInput;
|
|
31183
30330
|
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
31184
30331
|
sortBy?: InputMaybe<Scalars["String"]["input"]>;
|
|
31185
|
-
createdById?: InputMaybe<Scalars["String"]["input"]>;
|
|
31186
30332
|
}>>;
|
|
31187
30333
|
export declare function useCampaignsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CampaignsQuery, CampaignsQueryVariables>): Apollo.UseSuspenseQueryResult<CampaignsQuery | undefined, Exact<{
|
|
31188
30334
|
pagination: PaginationInput;
|
|
31189
30335
|
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
31190
30336
|
sortBy?: InputMaybe<Scalars["String"]["input"]>;
|
|
31191
|
-
createdById?: InputMaybe<Scalars["String"]["input"]>;
|
|
31192
30337
|
}>>;
|
|
31193
30338
|
export type CampaignsQueryHookResult = ReturnType<typeof useCampaignsQuery>;
|
|
31194
30339
|
export type CampaignsLazyQueryHookResult = ReturnType<typeof useCampaignsLazyQuery>;
|
|
@@ -31450,7 +30595,6 @@ export declare const CombinedCampaignsDocument: Apollo.DocumentNode;
|
|
|
31450
30595
|
* pagination: // value for 'pagination'
|
|
31451
30596
|
* status: // value for 'status'
|
|
31452
30597
|
* sortBy: // value for 'sortBy'
|
|
31453
|
-
* createdById: // value for 'createdById'
|
|
31454
30598
|
* },
|
|
31455
30599
|
* });
|
|
31456
30600
|
*/
|
|
@@ -31458,19 +30602,16 @@ export declare function useCombinedCampaignsQuery(baseOptions?: Apollo.QueryHook
|
|
|
31458
30602
|
pagination?: InputMaybe<PaginationInput>;
|
|
31459
30603
|
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
31460
30604
|
sortBy?: InputMaybe<Scalars["String"]["input"]>;
|
|
31461
|
-
createdById?: InputMaybe<Scalars["String"]["input"]>;
|
|
31462
30605
|
}>>;
|
|
31463
30606
|
export declare function useCombinedCampaignsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CombinedCampaignsQuery, CombinedCampaignsQueryVariables>): Apollo.LazyQueryResultTuple<CombinedCampaignsQuery, Exact<{
|
|
31464
30607
|
pagination?: InputMaybe<PaginationInput>;
|
|
31465
30608
|
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
31466
30609
|
sortBy?: InputMaybe<Scalars["String"]["input"]>;
|
|
31467
|
-
createdById?: InputMaybe<Scalars["String"]["input"]>;
|
|
31468
30610
|
}>>;
|
|
31469
30611
|
export declare function useCombinedCampaignsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CombinedCampaignsQuery, CombinedCampaignsQueryVariables>): Apollo.UseSuspenseQueryResult<CombinedCampaignsQuery | undefined, Exact<{
|
|
31470
30612
|
pagination?: InputMaybe<PaginationInput>;
|
|
31471
30613
|
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
31472
30614
|
sortBy?: InputMaybe<Scalars["String"]["input"]>;
|
|
31473
|
-
createdById?: InputMaybe<Scalars["String"]["input"]>;
|
|
31474
30615
|
}>>;
|
|
31475
30616
|
export type CombinedCampaignsQueryHookResult = ReturnType<typeof useCombinedCampaignsQuery>;
|
|
31476
30617
|
export type CombinedCampaignsLazyQueryHookResult = ReturnType<typeof useCombinedCampaignsLazyQuery>;
|