cf-service-sdk 0.1.11 → 0.1.13
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 +372 -1
- package/dist/generated/graphql.js +326 -2
- package/dist/mutations.js +118 -0
- package/dist/queries.d.ts +1 -0
- package/dist/queries.js +175 -1
- package/dist/sdk.d.ts +1 -0
- package/dist/sdk.js +6 -0
- package/package.json +1 -1
|
@@ -248,15 +248,20 @@ export type AuditLogItemType = {
|
|
|
248
248
|
type: Scalars['String']['output'];
|
|
249
249
|
};
|
|
250
250
|
export type AutomatedProspectingCampaignInput = {
|
|
251
|
+
activeDays?: InputMaybe<Scalars['GenericScalar']['input']>;
|
|
251
252
|
additionalNotes?: InputMaybe<Scalars['String']['input']>;
|
|
252
253
|
buyerDescription: Scalars['String']['input'];
|
|
254
|
+
contactsPerCompany?: InputMaybe<Scalars['String']['input']>;
|
|
255
|
+
emailSteps?: InputMaybe<Scalars['Int']['input']>;
|
|
253
256
|
emailTone?: InputMaybe<Scalars['String']['input']>;
|
|
254
|
-
|
|
257
|
+
followupDelayDays?: InputMaybe<Scalars['Int']['input']>;
|
|
255
258
|
frequency: Scalars['String']['input'];
|
|
256
259
|
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
257
260
|
notificationTime?: InputMaybe<Scalars['String']['input']>;
|
|
258
261
|
notificationTimezone?: InputMaybe<Scalars['String']['input']>;
|
|
262
|
+
preferredTitles?: InputMaybe<Scalars['GenericScalar']['input']>;
|
|
259
263
|
targetStates: Scalars['GenericScalar']['input'];
|
|
264
|
+
weeklyVolume: Scalars['Int']['input'];
|
|
260
265
|
};
|
|
261
266
|
export type AutomatedProspectingCampaignObject = {
|
|
262
267
|
__typename?: 'AutomatedProspectingCampaignObject';
|
|
@@ -268,8 +273,11 @@ export type AutomatedProspectingCampaignObject = {
|
|
|
268
273
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
269
274
|
emailBody?: Maybe<Scalars['String']['output']>;
|
|
270
275
|
emailBodyPreview?: Maybe<Scalars['String']['output']>;
|
|
276
|
+
emailSteps?: Maybe<Scalars['Int']['output']>;
|
|
271
277
|
emailSubject?: Maybe<Scalars['String']['output']>;
|
|
272
278
|
emailSubjectPreview?: Maybe<Scalars['String']['output']>;
|
|
279
|
+
followupScheduledFor?: Maybe<Scalars['DateTime']['output']>;
|
|
280
|
+
followupStatus?: Maybe<Scalars['String']['output']>;
|
|
273
281
|
id?: Maybe<Scalars['ID']['output']>;
|
|
274
282
|
notificationSentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
275
283
|
replyCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -278,17 +286,22 @@ export type AutomatedProspectingCampaignObject = {
|
|
|
278
286
|
sentCount?: Maybe<Scalars['Int']['output']>;
|
|
279
287
|
skippedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
280
288
|
status?: Maybe<Scalars['String']['output']>;
|
|
289
|
+
step?: Maybe<Scalars['Int']['output']>;
|
|
281
290
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
282
291
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
283
292
|
};
|
|
284
293
|
export type AutomatedProspectingConfigObject = {
|
|
285
294
|
__typename?: 'AutomatedProspectingConfigObject';
|
|
286
295
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
296
|
+
activeDays?: Maybe<Scalars['GenericScalar']['output']>;
|
|
287
297
|
additionalNotes?: Maybe<Scalars['String']['output']>;
|
|
288
298
|
buyerDescription?: Maybe<Scalars['String']['output']>;
|
|
299
|
+
contactsPerCompany?: Maybe<Scalars['String']['output']>;
|
|
289
300
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
301
|
+
emailSteps?: Maybe<Scalars['Int']['output']>;
|
|
290
302
|
emailTone?: Maybe<Scalars['String']['output']>;
|
|
291
303
|
emailsPerBatch?: Maybe<Scalars['Int']['output']>;
|
|
304
|
+
followupDelayDays?: Maybe<Scalars['Int']['output']>;
|
|
292
305
|
frequency?: Maybe<Scalars['String']['output']>;
|
|
293
306
|
id?: Maybe<Scalars['ID']['output']>;
|
|
294
307
|
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -297,9 +310,11 @@ export type AutomatedProspectingConfigObject = {
|
|
|
297
310
|
nextScheduledAt?: Maybe<Scalars['DateTime']['output']>;
|
|
298
311
|
notificationTime?: Maybe<Scalars['String']['output']>;
|
|
299
312
|
notificationTimezone?: Maybe<Scalars['String']['output']>;
|
|
313
|
+
preferredTitles?: Maybe<Scalars['GenericScalar']['output']>;
|
|
300
314
|
targetStates?: Maybe<Scalars['GenericScalar']['output']>;
|
|
301
315
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
302
316
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
317
|
+
weeklyVolume?: Maybe<Scalars['Int']['output']>;
|
|
303
318
|
};
|
|
304
319
|
export type AutomatedProspectingContactObject = {
|
|
305
320
|
__typename?: 'AutomatedProspectingContactObject';
|
|
@@ -314,6 +329,14 @@ export type AutomatedProspectingContactObject = {
|
|
|
314
329
|
hasReplied?: Maybe<Scalars['Boolean']['output']>;
|
|
315
330
|
id?: Maybe<Scalars['ID']['output']>;
|
|
316
331
|
};
|
|
332
|
+
export type AutomatedProspectingStatsObject = {
|
|
333
|
+
__typename?: 'AutomatedProspectingStatsObject';
|
|
334
|
+
activeCampaignCount?: Maybe<Scalars['Int']['output']>;
|
|
335
|
+
contactsReached?: Maybe<Scalars['Int']['output']>;
|
|
336
|
+
emailsSent?: Maybe<Scalars['Int']['output']>;
|
|
337
|
+
replyCount?: Maybe<Scalars['Int']['output']>;
|
|
338
|
+
replyRate?: Maybe<Scalars['Float']['output']>;
|
|
339
|
+
};
|
|
317
340
|
export type BulkAssignCompanyOwnerMutation = {
|
|
318
341
|
__typename?: 'BulkAssignCompanyOwnerMutation';
|
|
319
342
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -1362,6 +1385,16 @@ export type CompanyNoteObject = {
|
|
|
1362
1385
|
callCampaignLogOutcome?: Maybe<Scalars['String']['output']>;
|
|
1363
1386
|
/** Name of the call campaign associated with the note */
|
|
1364
1387
|
callCampaignName?: Maybe<Scalars['String']['output']>;
|
|
1388
|
+
/** ID of the combined campaign associated with the note */
|
|
1389
|
+
combinedCampaignId?: Maybe<Scalars['ID']['output']>;
|
|
1390
|
+
/** ID of the combined campaign log associated with the note */
|
|
1391
|
+
combinedCampaignLogId?: Maybe<Scalars['ID']['output']>;
|
|
1392
|
+
/** Name of the combined campaign associated with the note */
|
|
1393
|
+
combinedCampaignName?: Maybe<Scalars['String']['output']>;
|
|
1394
|
+
/** ID of the combined campaign step associated with the note */
|
|
1395
|
+
combinedCampaignStepId?: Maybe<Scalars['ID']['output']>;
|
|
1396
|
+
/** Order of the combined campaign step */
|
|
1397
|
+
combinedCampaignStepOrder?: Maybe<Scalars['Int']['output']>;
|
|
1365
1398
|
/** ID of the company associated with the note */
|
|
1366
1399
|
companyId?: Maybe<Scalars['Int']['output']>;
|
|
1367
1400
|
/** Name of the company associated with the note */
|
|
@@ -3945,6 +3978,7 @@ export type Query = {
|
|
|
3945
3978
|
automatedProspectingCampaign?: Maybe<AutomatedProspectingCampaignObject>;
|
|
3946
3979
|
automatedProspectingCampaigns?: Maybe<PaginatedAutomatedProspectingCampaigns>;
|
|
3947
3980
|
automatedProspectingConfig?: Maybe<AutomatedProspectingConfigObject>;
|
|
3981
|
+
automatedProspectingStats?: Maybe<AutomatedProspectingStatsObject>;
|
|
3948
3982
|
businessProfile?: Maybe<BusinessProfileType>;
|
|
3949
3983
|
/** Get a specific call campaign by ID */
|
|
3950
3984
|
callCampaign?: Maybe<CallCampaignObject>;
|
|
@@ -4102,6 +4136,10 @@ export type QueryAutomatedProspectingConfigArgs = {
|
|
|
4102
4136
|
accountId: Scalars['ID']['input'];
|
|
4103
4137
|
};
|
|
4104
4138
|
/** Query */
|
|
4139
|
+
export type QueryAutomatedProspectingStatsArgs = {
|
|
4140
|
+
accountId: Scalars['ID']['input'];
|
|
4141
|
+
};
|
|
4142
|
+
/** Query */
|
|
4105
4143
|
export type QueryCallCampaignArgs = {
|
|
4106
4144
|
id: Scalars['ID']['input'];
|
|
4107
4145
|
};
|
|
@@ -4477,6 +4515,8 @@ export type RecentHistoryFilterInput = {
|
|
|
4477
4515
|
dateFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4478
4516
|
/** Filter activities up to this date */
|
|
4479
4517
|
dateTo?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4518
|
+
/** Search across subject line, campaign name, task title, note content, and call content */
|
|
4519
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
4480
4520
|
};
|
|
4481
4521
|
/** Base type for recent history items */
|
|
4482
4522
|
export type RecentHistoryItemType = {
|
|
@@ -6596,6 +6636,8 @@ export type ComposeAutomatedProspectingEmailMutation = {
|
|
|
6596
6636
|
emailSubjectPreview?: string | null;
|
|
6597
6637
|
emailBodyPreview?: string | null;
|
|
6598
6638
|
attachments?: any | null;
|
|
6639
|
+
step?: number | null;
|
|
6640
|
+
emailSteps?: number | null;
|
|
6599
6641
|
contactCount?: number | null;
|
|
6600
6642
|
scheduledFor?: any | null;
|
|
6601
6643
|
notificationSentAt?: any | null;
|
|
@@ -6605,6 +6647,8 @@ export type ComposeAutomatedProspectingEmailMutation = {
|
|
|
6605
6647
|
updatedAt?: any | null;
|
|
6606
6648
|
sentCount?: number | null;
|
|
6607
6649
|
replyCount?: number | null;
|
|
6650
|
+
followupStatus?: string | null;
|
|
6651
|
+
followupScheduledFor?: any | null;
|
|
6608
6652
|
contacts?: Array<{
|
|
6609
6653
|
__typename?: 'AutomatedProspectingContactObject';
|
|
6610
6654
|
id?: string | null;
|
|
@@ -6851,6 +6895,11 @@ export type CreateCallCampaignLogMutation = {
|
|
|
6851
6895
|
callCampaignName?: string | null;
|
|
6852
6896
|
callCampaignId?: number | null;
|
|
6853
6897
|
callCampaignLogOutcome?: string | null;
|
|
6898
|
+
combinedCampaignLogId?: string | null;
|
|
6899
|
+
combinedCampaignId?: string | null;
|
|
6900
|
+
combinedCampaignName?: string | null;
|
|
6901
|
+
combinedCampaignStepId?: string | null;
|
|
6902
|
+
combinedCampaignStepOrder?: number | null;
|
|
6854
6903
|
lastUpdatedByName?: string | null;
|
|
6855
6904
|
} | null;
|
|
6856
6905
|
createdBy?: {
|
|
@@ -7199,6 +7248,11 @@ export type CreateCompanyMutation = {
|
|
|
7199
7248
|
callCampaignName?: string | null;
|
|
7200
7249
|
callCampaignId?: number | null;
|
|
7201
7250
|
callCampaignLogOutcome?: string | null;
|
|
7251
|
+
combinedCampaignLogId?: string | null;
|
|
7252
|
+
combinedCampaignId?: string | null;
|
|
7253
|
+
combinedCampaignName?: string | null;
|
|
7254
|
+
combinedCampaignStepId?: string | null;
|
|
7255
|
+
combinedCampaignStepOrder?: number | null;
|
|
7202
7256
|
lastUpdatedByName?: string | null;
|
|
7203
7257
|
tasks?: Array<{
|
|
7204
7258
|
__typename?: 'TaskObject';
|
|
@@ -7554,6 +7608,11 @@ export type CreateCompanyMutation = {
|
|
|
7554
7608
|
callCampaignName?: string | null;
|
|
7555
7609
|
callCampaignId?: number | null;
|
|
7556
7610
|
callCampaignLogOutcome?: string | null;
|
|
7611
|
+
combinedCampaignLogId?: string | null;
|
|
7612
|
+
combinedCampaignId?: string | null;
|
|
7613
|
+
combinedCampaignName?: string | null;
|
|
7614
|
+
combinedCampaignStepId?: string | null;
|
|
7615
|
+
combinedCampaignStepOrder?: number | null;
|
|
7557
7616
|
lastUpdatedByName?: string | null;
|
|
7558
7617
|
} | null;
|
|
7559
7618
|
createdBy?: {
|
|
@@ -7800,6 +7859,11 @@ export type CreateCompanyNoteMutation = {
|
|
|
7800
7859
|
callCampaignName?: string | null;
|
|
7801
7860
|
callCampaignId?: number | null;
|
|
7802
7861
|
callCampaignLogOutcome?: string | null;
|
|
7862
|
+
combinedCampaignLogId?: string | null;
|
|
7863
|
+
combinedCampaignId?: string | null;
|
|
7864
|
+
combinedCampaignName?: string | null;
|
|
7865
|
+
combinedCampaignStepId?: string | null;
|
|
7866
|
+
combinedCampaignStepOrder?: number | null;
|
|
7803
7867
|
lastUpdatedByName?: string | null;
|
|
7804
7868
|
tasks?: Array<{
|
|
7805
7869
|
__typename?: 'TaskObject';
|
|
@@ -8164,6 +8228,11 @@ export type CreateMysupplierMutation = {
|
|
|
8164
8228
|
callCampaignName?: string | null;
|
|
8165
8229
|
callCampaignId?: number | null;
|
|
8166
8230
|
callCampaignLogOutcome?: string | null;
|
|
8231
|
+
combinedCampaignLogId?: string | null;
|
|
8232
|
+
combinedCampaignId?: string | null;
|
|
8233
|
+
combinedCampaignName?: string | null;
|
|
8234
|
+
combinedCampaignStepId?: string | null;
|
|
8235
|
+
combinedCampaignStepOrder?: number | null;
|
|
8167
8236
|
lastUpdatedByName?: string | null;
|
|
8168
8237
|
tasks?: Array<{
|
|
8169
8238
|
__typename?: 'TaskObject';
|
|
@@ -8519,6 +8588,11 @@ export type CreateMysupplierMutation = {
|
|
|
8519
8588
|
callCampaignName?: string | null;
|
|
8520
8589
|
callCampaignId?: number | null;
|
|
8521
8590
|
callCampaignLogOutcome?: string | null;
|
|
8591
|
+
combinedCampaignLogId?: string | null;
|
|
8592
|
+
combinedCampaignId?: string | null;
|
|
8593
|
+
combinedCampaignName?: string | null;
|
|
8594
|
+
combinedCampaignStepId?: string | null;
|
|
8595
|
+
combinedCampaignStepOrder?: number | null;
|
|
8522
8596
|
lastUpdatedByName?: string | null;
|
|
8523
8597
|
} | null;
|
|
8524
8598
|
createdBy?: {
|
|
@@ -9280,6 +9354,11 @@ export type CreateSupplierlistMutation = {
|
|
|
9280
9354
|
callCampaignName?: string | null;
|
|
9281
9355
|
callCampaignId?: number | null;
|
|
9282
9356
|
callCampaignLogOutcome?: string | null;
|
|
9357
|
+
combinedCampaignLogId?: string | null;
|
|
9358
|
+
combinedCampaignId?: string | null;
|
|
9359
|
+
combinedCampaignName?: string | null;
|
|
9360
|
+
combinedCampaignStepId?: string | null;
|
|
9361
|
+
combinedCampaignStepOrder?: number | null;
|
|
9283
9362
|
lastUpdatedByName?: string | null;
|
|
9284
9363
|
tasks?: Array<{
|
|
9285
9364
|
__typename?: 'TaskObject';
|
|
@@ -9635,6 +9714,11 @@ export type CreateSupplierlistMutation = {
|
|
|
9635
9714
|
callCampaignName?: string | null;
|
|
9636
9715
|
callCampaignId?: number | null;
|
|
9637
9716
|
callCampaignLogOutcome?: string | null;
|
|
9717
|
+
combinedCampaignLogId?: string | null;
|
|
9718
|
+
combinedCampaignId?: string | null;
|
|
9719
|
+
combinedCampaignName?: string | null;
|
|
9720
|
+
combinedCampaignStepId?: string | null;
|
|
9721
|
+
combinedCampaignStepOrder?: number | null;
|
|
9638
9722
|
lastUpdatedByName?: string | null;
|
|
9639
9723
|
} | null;
|
|
9640
9724
|
createdBy?: {
|
|
@@ -9992,6 +10076,11 @@ export type CreateTaskMutation = {
|
|
|
9992
10076
|
callCampaignName?: string | null;
|
|
9993
10077
|
callCampaignId?: number | null;
|
|
9994
10078
|
callCampaignLogOutcome?: string | null;
|
|
10079
|
+
combinedCampaignLogId?: string | null;
|
|
10080
|
+
combinedCampaignId?: string | null;
|
|
10081
|
+
combinedCampaignName?: string | null;
|
|
10082
|
+
combinedCampaignStepId?: string | null;
|
|
10083
|
+
combinedCampaignStepOrder?: number | null;
|
|
9995
10084
|
lastUpdatedByName?: string | null;
|
|
9996
10085
|
} | null;
|
|
9997
10086
|
createdBy?: {
|
|
@@ -10317,6 +10406,8 @@ export type LaunchAutomatedProspectingMutation = {
|
|
|
10317
10406
|
emailSubjectPreview?: string | null;
|
|
10318
10407
|
emailBodyPreview?: string | null;
|
|
10319
10408
|
attachments?: any | null;
|
|
10409
|
+
step?: number | null;
|
|
10410
|
+
emailSteps?: number | null;
|
|
10320
10411
|
contactCount?: number | null;
|
|
10321
10412
|
scheduledFor?: any | null;
|
|
10322
10413
|
notificationSentAt?: any | null;
|
|
@@ -10326,6 +10417,8 @@ export type LaunchAutomatedProspectingMutation = {
|
|
|
10326
10417
|
updatedAt?: any | null;
|
|
10327
10418
|
sentCount?: number | null;
|
|
10328
10419
|
replyCount?: number | null;
|
|
10420
|
+
followupStatus?: string | null;
|
|
10421
|
+
followupScheduledFor?: any | null;
|
|
10329
10422
|
contacts?: Array<{
|
|
10330
10423
|
__typename?: 'AutomatedProspectingContactObject';
|
|
10331
10424
|
id?: string | null;
|
|
@@ -11236,7 +11329,13 @@ export type SaveAutomatedProspectingConfigMutation = {
|
|
|
11236
11329
|
frequency?: string | null;
|
|
11237
11330
|
notificationTime?: string | null;
|
|
11238
11331
|
notificationTimezone?: string | null;
|
|
11332
|
+
weeklyVolume?: number | null;
|
|
11239
11333
|
emailsPerBatch?: number | null;
|
|
11334
|
+
activeDays?: any | null;
|
|
11335
|
+
contactsPerCompany?: string | null;
|
|
11336
|
+
preferredTitles?: any | null;
|
|
11337
|
+
emailSteps?: number | null;
|
|
11338
|
+
followupDelayDays?: number | null;
|
|
11240
11339
|
additionalNotes?: string | null;
|
|
11241
11340
|
emailTone?: string | null;
|
|
11242
11341
|
isActive?: boolean | null;
|
|
@@ -12150,6 +12249,11 @@ export type SendManualEmailMutation = {
|
|
|
12150
12249
|
callCampaignName?: string | null;
|
|
12151
12250
|
callCampaignId?: number | null;
|
|
12152
12251
|
callCampaignLogOutcome?: string | null;
|
|
12252
|
+
combinedCampaignLogId?: string | null;
|
|
12253
|
+
combinedCampaignId?: string | null;
|
|
12254
|
+
combinedCampaignName?: string | null;
|
|
12255
|
+
combinedCampaignStepId?: string | null;
|
|
12256
|
+
combinedCampaignStepOrder?: number | null;
|
|
12153
12257
|
lastUpdatedByName?: string | null;
|
|
12154
12258
|
} | null;
|
|
12155
12259
|
createdBy?: {
|
|
@@ -12676,6 +12780,8 @@ export type UpdateAutomatedProspectingCampaignMutation = {
|
|
|
12676
12780
|
emailSubjectPreview?: string | null;
|
|
12677
12781
|
emailBodyPreview?: string | null;
|
|
12678
12782
|
attachments?: any | null;
|
|
12783
|
+
step?: number | null;
|
|
12784
|
+
emailSteps?: number | null;
|
|
12679
12785
|
contactCount?: number | null;
|
|
12680
12786
|
scheduledFor?: any | null;
|
|
12681
12787
|
notificationSentAt?: any | null;
|
|
@@ -12685,6 +12791,8 @@ export type UpdateAutomatedProspectingCampaignMutation = {
|
|
|
12685
12791
|
updatedAt?: any | null;
|
|
12686
12792
|
sentCount?: number | null;
|
|
12687
12793
|
replyCount?: number | null;
|
|
12794
|
+
followupStatus?: string | null;
|
|
12795
|
+
followupScheduledFor?: any | null;
|
|
12688
12796
|
contacts?: Array<{
|
|
12689
12797
|
__typename?: 'AutomatedProspectingContactObject';
|
|
12690
12798
|
id?: string | null;
|
|
@@ -12945,6 +13053,11 @@ export type UpdateCallCampaignLogMutation = {
|
|
|
12945
13053
|
callCampaignName?: string | null;
|
|
12946
13054
|
callCampaignId?: number | null;
|
|
12947
13055
|
callCampaignLogOutcome?: string | null;
|
|
13056
|
+
combinedCampaignLogId?: string | null;
|
|
13057
|
+
combinedCampaignId?: string | null;
|
|
13058
|
+
combinedCampaignName?: string | null;
|
|
13059
|
+
combinedCampaignStepId?: string | null;
|
|
13060
|
+
combinedCampaignStepOrder?: number | null;
|
|
12948
13061
|
lastUpdatedByName?: string | null;
|
|
12949
13062
|
} | null;
|
|
12950
13063
|
createdBy?: {
|
|
@@ -13439,6 +13552,11 @@ export type UpdateCombinedCampaignLogMutation = {
|
|
|
13439
13552
|
callCampaignName?: string | null;
|
|
13440
13553
|
callCampaignId?: number | null;
|
|
13441
13554
|
callCampaignLogOutcome?: string | null;
|
|
13555
|
+
combinedCampaignLogId?: string | null;
|
|
13556
|
+
combinedCampaignId?: string | null;
|
|
13557
|
+
combinedCampaignName?: string | null;
|
|
13558
|
+
combinedCampaignStepId?: string | null;
|
|
13559
|
+
combinedCampaignStepOrder?: number | null;
|
|
13442
13560
|
lastUpdatedByName?: string | null;
|
|
13443
13561
|
} | null;
|
|
13444
13562
|
createdBy?: {
|
|
@@ -13613,6 +13731,11 @@ export type UpdateCompanyMutation = {
|
|
|
13613
13731
|
callCampaignName?: string | null;
|
|
13614
13732
|
callCampaignId?: number | null;
|
|
13615
13733
|
callCampaignLogOutcome?: string | null;
|
|
13734
|
+
combinedCampaignLogId?: string | null;
|
|
13735
|
+
combinedCampaignId?: string | null;
|
|
13736
|
+
combinedCampaignName?: string | null;
|
|
13737
|
+
combinedCampaignStepId?: string | null;
|
|
13738
|
+
combinedCampaignStepOrder?: number | null;
|
|
13616
13739
|
lastUpdatedByName?: string | null;
|
|
13617
13740
|
tasks?: Array<{
|
|
13618
13741
|
__typename?: 'TaskObject';
|
|
@@ -13968,6 +14091,11 @@ export type UpdateCompanyMutation = {
|
|
|
13968
14091
|
callCampaignName?: string | null;
|
|
13969
14092
|
callCampaignId?: number | null;
|
|
13970
14093
|
callCampaignLogOutcome?: string | null;
|
|
14094
|
+
combinedCampaignLogId?: string | null;
|
|
14095
|
+
combinedCampaignId?: string | null;
|
|
14096
|
+
combinedCampaignName?: string | null;
|
|
14097
|
+
combinedCampaignStepId?: string | null;
|
|
14098
|
+
combinedCampaignStepOrder?: number | null;
|
|
13971
14099
|
lastUpdatedByName?: string | null;
|
|
13972
14100
|
} | null;
|
|
13973
14101
|
createdBy?: {
|
|
@@ -14226,6 +14354,11 @@ export type UpdateCompanyNoteMutation = {
|
|
|
14226
14354
|
callCampaignName?: string | null;
|
|
14227
14355
|
callCampaignId?: number | null;
|
|
14228
14356
|
callCampaignLogOutcome?: string | null;
|
|
14357
|
+
combinedCampaignLogId?: string | null;
|
|
14358
|
+
combinedCampaignId?: string | null;
|
|
14359
|
+
combinedCampaignName?: string | null;
|
|
14360
|
+
combinedCampaignStepId?: string | null;
|
|
14361
|
+
combinedCampaignStepOrder?: number | null;
|
|
14229
14362
|
lastUpdatedByName?: string | null;
|
|
14230
14363
|
tasks?: Array<{
|
|
14231
14364
|
__typename?: 'TaskObject';
|
|
@@ -14608,6 +14741,11 @@ export type UpdateMysupplierMutation = {
|
|
|
14608
14741
|
callCampaignName?: string | null;
|
|
14609
14742
|
callCampaignId?: number | null;
|
|
14610
14743
|
callCampaignLogOutcome?: string | null;
|
|
14744
|
+
combinedCampaignLogId?: string | null;
|
|
14745
|
+
combinedCampaignId?: string | null;
|
|
14746
|
+
combinedCampaignName?: string | null;
|
|
14747
|
+
combinedCampaignStepId?: string | null;
|
|
14748
|
+
combinedCampaignStepOrder?: number | null;
|
|
14611
14749
|
lastUpdatedByName?: string | null;
|
|
14612
14750
|
tasks?: Array<{
|
|
14613
14751
|
__typename?: 'TaskObject';
|
|
@@ -14963,6 +15101,11 @@ export type UpdateMysupplierMutation = {
|
|
|
14963
15101
|
callCampaignName?: string | null;
|
|
14964
15102
|
callCampaignId?: number | null;
|
|
14965
15103
|
callCampaignLogOutcome?: string | null;
|
|
15104
|
+
combinedCampaignLogId?: string | null;
|
|
15105
|
+
combinedCampaignId?: string | null;
|
|
15106
|
+
combinedCampaignName?: string | null;
|
|
15107
|
+
combinedCampaignStepId?: string | null;
|
|
15108
|
+
combinedCampaignStepOrder?: number | null;
|
|
14966
15109
|
lastUpdatedByName?: string | null;
|
|
14967
15110
|
} | null;
|
|
14968
15111
|
createdBy?: {
|
|
@@ -15681,6 +15824,11 @@ export type UpdateSupplierlistMutation = {
|
|
|
15681
15824
|
callCampaignName?: string | null;
|
|
15682
15825
|
callCampaignId?: number | null;
|
|
15683
15826
|
callCampaignLogOutcome?: string | null;
|
|
15827
|
+
combinedCampaignLogId?: string | null;
|
|
15828
|
+
combinedCampaignId?: string | null;
|
|
15829
|
+
combinedCampaignName?: string | null;
|
|
15830
|
+
combinedCampaignStepId?: string | null;
|
|
15831
|
+
combinedCampaignStepOrder?: number | null;
|
|
15684
15832
|
lastUpdatedByName?: string | null;
|
|
15685
15833
|
tasks?: Array<{
|
|
15686
15834
|
__typename?: 'TaskObject';
|
|
@@ -16036,6 +16184,11 @@ export type UpdateSupplierlistMutation = {
|
|
|
16036
16184
|
callCampaignName?: string | null;
|
|
16037
16185
|
callCampaignId?: number | null;
|
|
16038
16186
|
callCampaignLogOutcome?: string | null;
|
|
16187
|
+
combinedCampaignLogId?: string | null;
|
|
16188
|
+
combinedCampaignId?: string | null;
|
|
16189
|
+
combinedCampaignName?: string | null;
|
|
16190
|
+
combinedCampaignStepId?: string | null;
|
|
16191
|
+
combinedCampaignStepOrder?: number | null;
|
|
16039
16192
|
lastUpdatedByName?: string | null;
|
|
16040
16193
|
} | null;
|
|
16041
16194
|
createdBy?: {
|
|
@@ -16394,6 +16547,11 @@ export type UpdateTaskMutation = {
|
|
|
16394
16547
|
callCampaignName?: string | null;
|
|
16395
16548
|
callCampaignId?: number | null;
|
|
16396
16549
|
callCampaignLogOutcome?: string | null;
|
|
16550
|
+
combinedCampaignLogId?: string | null;
|
|
16551
|
+
combinedCampaignId?: string | null;
|
|
16552
|
+
combinedCampaignName?: string | null;
|
|
16553
|
+
combinedCampaignStepId?: string | null;
|
|
16554
|
+
combinedCampaignStepOrder?: number | null;
|
|
16397
16555
|
lastUpdatedByName?: string | null;
|
|
16398
16556
|
} | null;
|
|
16399
16557
|
createdBy?: {
|
|
@@ -16548,6 +16706,8 @@ export type AutomatedProspectingCampaignQuery = {
|
|
|
16548
16706
|
emailSubjectPreview?: string | null;
|
|
16549
16707
|
emailBodyPreview?: string | null;
|
|
16550
16708
|
attachments?: any | null;
|
|
16709
|
+
step?: number | null;
|
|
16710
|
+
emailSteps?: number | null;
|
|
16551
16711
|
contactCount?: number | null;
|
|
16552
16712
|
scheduledFor?: any | null;
|
|
16553
16713
|
notificationSentAt?: any | null;
|
|
@@ -16557,6 +16717,8 @@ export type AutomatedProspectingCampaignQuery = {
|
|
|
16557
16717
|
updatedAt?: any | null;
|
|
16558
16718
|
sentCount?: number | null;
|
|
16559
16719
|
replyCount?: number | null;
|
|
16720
|
+
followupStatus?: string | null;
|
|
16721
|
+
followupScheduledFor?: any | null;
|
|
16560
16722
|
contacts?: Array<{
|
|
16561
16723
|
__typename?: 'AutomatedProspectingContactObject';
|
|
16562
16724
|
id?: string | null;
|
|
@@ -16595,6 +16757,8 @@ export type AutomatedProspectingCampaignsQuery = {
|
|
|
16595
16757
|
emailSubjectPreview?: string | null;
|
|
16596
16758
|
emailBodyPreview?: string | null;
|
|
16597
16759
|
attachments?: any | null;
|
|
16760
|
+
step?: number | null;
|
|
16761
|
+
emailSteps?: number | null;
|
|
16598
16762
|
contactCount?: number | null;
|
|
16599
16763
|
scheduledFor?: any | null;
|
|
16600
16764
|
notificationSentAt?: any | null;
|
|
@@ -16604,6 +16768,8 @@ export type AutomatedProspectingCampaignsQuery = {
|
|
|
16604
16768
|
updatedAt?: any | null;
|
|
16605
16769
|
sentCount?: number | null;
|
|
16606
16770
|
replyCount?: number | null;
|
|
16771
|
+
followupStatus?: string | null;
|
|
16772
|
+
followupScheduledFor?: any | null;
|
|
16607
16773
|
contacts?: Array<{
|
|
16608
16774
|
__typename?: 'AutomatedProspectingContactObject';
|
|
16609
16775
|
id?: string | null;
|
|
@@ -16635,7 +16801,13 @@ export type AutomatedProspectingConfigQuery = {
|
|
|
16635
16801
|
frequency?: string | null;
|
|
16636
16802
|
notificationTime?: string | null;
|
|
16637
16803
|
notificationTimezone?: string | null;
|
|
16804
|
+
weeklyVolume?: number | null;
|
|
16638
16805
|
emailsPerBatch?: number | null;
|
|
16806
|
+
activeDays?: any | null;
|
|
16807
|
+
contactsPerCompany?: string | null;
|
|
16808
|
+
preferredTitles?: any | null;
|
|
16809
|
+
emailSteps?: number | null;
|
|
16810
|
+
followupDelayDays?: number | null;
|
|
16639
16811
|
additionalNotes?: string | null;
|
|
16640
16812
|
emailTone?: string | null;
|
|
16641
16813
|
isActive?: boolean | null;
|
|
@@ -16646,6 +16818,20 @@ export type AutomatedProspectingConfigQuery = {
|
|
|
16646
16818
|
updatedAt?: any | null;
|
|
16647
16819
|
} | null;
|
|
16648
16820
|
};
|
|
16821
|
+
export type AutomatedProspectingStatsQueryVariables = Exact<{
|
|
16822
|
+
accountId: Scalars['ID']['input'];
|
|
16823
|
+
}>;
|
|
16824
|
+
export type AutomatedProspectingStatsQuery = {
|
|
16825
|
+
__typename?: 'Query';
|
|
16826
|
+
automatedProspectingStats?: {
|
|
16827
|
+
__typename?: 'AutomatedProspectingStatsObject';
|
|
16828
|
+
activeCampaignCount?: number | null;
|
|
16829
|
+
contactsReached?: number | null;
|
|
16830
|
+
emailsSent?: number | null;
|
|
16831
|
+
replyCount?: number | null;
|
|
16832
|
+
replyRate?: number | null;
|
|
16833
|
+
} | null;
|
|
16834
|
+
};
|
|
16649
16835
|
export type BusinessProfileQueryVariables = Exact<{
|
|
16650
16836
|
[key: string]: never;
|
|
16651
16837
|
}>;
|
|
@@ -16929,6 +17115,11 @@ export type CallCampaignLogQuery = {
|
|
|
16929
17115
|
callCampaignName?: string | null;
|
|
16930
17116
|
callCampaignId?: number | null;
|
|
16931
17117
|
callCampaignLogOutcome?: string | null;
|
|
17118
|
+
combinedCampaignLogId?: string | null;
|
|
17119
|
+
combinedCampaignId?: string | null;
|
|
17120
|
+
combinedCampaignName?: string | null;
|
|
17121
|
+
combinedCampaignStepId?: string | null;
|
|
17122
|
+
combinedCampaignStepOrder?: number | null;
|
|
16932
17123
|
lastUpdatedByName?: string | null;
|
|
16933
17124
|
} | null;
|
|
16934
17125
|
createdBy?: {
|
|
@@ -17097,6 +17288,11 @@ export type CallCampaignLogsQuery = {
|
|
|
17097
17288
|
callCampaignName?: string | null;
|
|
17098
17289
|
callCampaignId?: number | null;
|
|
17099
17290
|
callCampaignLogOutcome?: string | null;
|
|
17291
|
+
combinedCampaignLogId?: string | null;
|
|
17292
|
+
combinedCampaignId?: string | null;
|
|
17293
|
+
combinedCampaignName?: string | null;
|
|
17294
|
+
combinedCampaignStepId?: string | null;
|
|
17295
|
+
combinedCampaignStepOrder?: number | null;
|
|
17100
17296
|
lastUpdatedByName?: string | null;
|
|
17101
17297
|
} | null;
|
|
17102
17298
|
createdBy?: {
|
|
@@ -17307,6 +17503,11 @@ export type CallCampaignReportQuery = {
|
|
|
17307
17503
|
callCampaignName?: string | null;
|
|
17308
17504
|
callCampaignId?: number | null;
|
|
17309
17505
|
callCampaignLogOutcome?: string | null;
|
|
17506
|
+
combinedCampaignLogId?: string | null;
|
|
17507
|
+
combinedCampaignId?: string | null;
|
|
17508
|
+
combinedCampaignName?: string | null;
|
|
17509
|
+
combinedCampaignStepId?: string | null;
|
|
17510
|
+
combinedCampaignStepOrder?: number | null;
|
|
17310
17511
|
lastUpdatedByName?: string | null;
|
|
17311
17512
|
} | null;
|
|
17312
17513
|
createdBy?: {
|
|
@@ -17933,6 +18134,11 @@ export type CampaignContactsQuery = {
|
|
|
17933
18134
|
callCampaignName?: string | null;
|
|
17934
18135
|
callCampaignId?: number | null;
|
|
17935
18136
|
callCampaignLogOutcome?: string | null;
|
|
18137
|
+
combinedCampaignLogId?: string | null;
|
|
18138
|
+
combinedCampaignId?: string | null;
|
|
18139
|
+
combinedCampaignName?: string | null;
|
|
18140
|
+
combinedCampaignStepId?: string | null;
|
|
18141
|
+
combinedCampaignStepOrder?: number | null;
|
|
17936
18142
|
lastUpdatedByName?: string | null;
|
|
17937
18143
|
} | null;
|
|
17938
18144
|
createdBy?: {
|
|
@@ -18821,6 +19027,11 @@ export type CombinedCampaignContactsQuery = {
|
|
|
18821
19027
|
callCampaignName?: string | null;
|
|
18822
19028
|
callCampaignId?: number | null;
|
|
18823
19029
|
callCampaignLogOutcome?: string | null;
|
|
19030
|
+
combinedCampaignLogId?: string | null;
|
|
19031
|
+
combinedCampaignId?: string | null;
|
|
19032
|
+
combinedCampaignName?: string | null;
|
|
19033
|
+
combinedCampaignStepId?: string | null;
|
|
19034
|
+
combinedCampaignStepOrder?: number | null;
|
|
18824
19035
|
lastUpdatedByName?: string | null;
|
|
18825
19036
|
} | null;
|
|
18826
19037
|
createdBy?: {
|
|
@@ -19133,6 +19344,11 @@ export type CombinedCampaignLogsQuery = {
|
|
|
19133
19344
|
callCampaignName?: string | null;
|
|
19134
19345
|
callCampaignId?: number | null;
|
|
19135
19346
|
callCampaignLogOutcome?: string | null;
|
|
19347
|
+
combinedCampaignLogId?: string | null;
|
|
19348
|
+
combinedCampaignId?: string | null;
|
|
19349
|
+
combinedCampaignName?: string | null;
|
|
19350
|
+
combinedCampaignStepId?: string | null;
|
|
19351
|
+
combinedCampaignStepOrder?: number | null;
|
|
19136
19352
|
lastUpdatedByName?: string | null;
|
|
19137
19353
|
} | null;
|
|
19138
19354
|
createdBy?: {
|
|
@@ -19466,6 +19682,11 @@ export type CompaniesQuery = {
|
|
|
19466
19682
|
callCampaignName?: string | null;
|
|
19467
19683
|
callCampaignId?: number | null;
|
|
19468
19684
|
callCampaignLogOutcome?: string | null;
|
|
19685
|
+
combinedCampaignLogId?: string | null;
|
|
19686
|
+
combinedCampaignId?: string | null;
|
|
19687
|
+
combinedCampaignName?: string | null;
|
|
19688
|
+
combinedCampaignStepId?: string | null;
|
|
19689
|
+
combinedCampaignStepOrder?: number | null;
|
|
19469
19690
|
lastUpdatedByName?: string | null;
|
|
19470
19691
|
tasks?: Array<{
|
|
19471
19692
|
__typename?: 'TaskObject';
|
|
@@ -19821,6 +20042,11 @@ export type CompaniesQuery = {
|
|
|
19821
20042
|
callCampaignName?: string | null;
|
|
19822
20043
|
callCampaignId?: number | null;
|
|
19823
20044
|
callCampaignLogOutcome?: string | null;
|
|
20045
|
+
combinedCampaignLogId?: string | null;
|
|
20046
|
+
combinedCampaignId?: string | null;
|
|
20047
|
+
combinedCampaignName?: string | null;
|
|
20048
|
+
combinedCampaignStepId?: string | null;
|
|
20049
|
+
combinedCampaignStepOrder?: number | null;
|
|
19824
20050
|
lastUpdatedByName?: string | null;
|
|
19825
20051
|
} | null;
|
|
19826
20052
|
createdBy?: {
|
|
@@ -20158,6 +20384,11 @@ export type CompanyQuery = {
|
|
|
20158
20384
|
callCampaignName?: string | null;
|
|
20159
20385
|
callCampaignId?: number | null;
|
|
20160
20386
|
callCampaignLogOutcome?: string | null;
|
|
20387
|
+
combinedCampaignLogId?: string | null;
|
|
20388
|
+
combinedCampaignId?: string | null;
|
|
20389
|
+
combinedCampaignName?: string | null;
|
|
20390
|
+
combinedCampaignStepId?: string | null;
|
|
20391
|
+
combinedCampaignStepOrder?: number | null;
|
|
20161
20392
|
lastUpdatedByName?: string | null;
|
|
20162
20393
|
tasks?: Array<{
|
|
20163
20394
|
__typename?: 'TaskObject';
|
|
@@ -20513,6 +20744,11 @@ export type CompanyQuery = {
|
|
|
20513
20744
|
callCampaignName?: string | null;
|
|
20514
20745
|
callCampaignId?: number | null;
|
|
20515
20746
|
callCampaignLogOutcome?: string | null;
|
|
20747
|
+
combinedCampaignLogId?: string | null;
|
|
20748
|
+
combinedCampaignId?: string | null;
|
|
20749
|
+
combinedCampaignName?: string | null;
|
|
20750
|
+
combinedCampaignStepId?: string | null;
|
|
20751
|
+
combinedCampaignStepOrder?: number | null;
|
|
20516
20752
|
lastUpdatedByName?: string | null;
|
|
20517
20753
|
} | null;
|
|
20518
20754
|
createdBy?: {
|
|
@@ -20811,6 +21047,11 @@ export type CompanyNoteQuery = {
|
|
|
20811
21047
|
callCampaignName?: string | null;
|
|
20812
21048
|
callCampaignId?: number | null;
|
|
20813
21049
|
callCampaignLogOutcome?: string | null;
|
|
21050
|
+
combinedCampaignLogId?: string | null;
|
|
21051
|
+
combinedCampaignId?: string | null;
|
|
21052
|
+
combinedCampaignName?: string | null;
|
|
21053
|
+
combinedCampaignStepId?: string | null;
|
|
21054
|
+
combinedCampaignStepOrder?: number | null;
|
|
20814
21055
|
lastUpdatedByName?: string | null;
|
|
20815
21056
|
tasks?: Array<{
|
|
20816
21057
|
__typename?: 'TaskObject';
|
|
@@ -20978,6 +21219,11 @@ export type CompanyNotesQuery = {
|
|
|
20978
21219
|
callCampaignName?: string | null;
|
|
20979
21220
|
callCampaignId?: number | null;
|
|
20980
21221
|
callCampaignLogOutcome?: string | null;
|
|
21222
|
+
combinedCampaignLogId?: string | null;
|
|
21223
|
+
combinedCampaignId?: string | null;
|
|
21224
|
+
combinedCampaignName?: string | null;
|
|
21225
|
+
combinedCampaignStepId?: string | null;
|
|
21226
|
+
combinedCampaignStepOrder?: number | null;
|
|
20981
21227
|
lastUpdatedByName?: string | null;
|
|
20982
21228
|
tasks?: Array<{
|
|
20983
21229
|
__typename?: 'TaskObject';
|
|
@@ -21239,6 +21485,11 @@ export type CompanySearchQuery = {
|
|
|
21239
21485
|
callCampaignName?: string | null;
|
|
21240
21486
|
callCampaignId?: number | null;
|
|
21241
21487
|
callCampaignLogOutcome?: string | null;
|
|
21488
|
+
combinedCampaignLogId?: string | null;
|
|
21489
|
+
combinedCampaignId?: string | null;
|
|
21490
|
+
combinedCampaignName?: string | null;
|
|
21491
|
+
combinedCampaignStepId?: string | null;
|
|
21492
|
+
combinedCampaignStepOrder?: number | null;
|
|
21242
21493
|
lastUpdatedByName?: string | null;
|
|
21243
21494
|
tasks?: Array<{
|
|
21244
21495
|
__typename?: 'TaskObject';
|
|
@@ -21594,6 +21845,11 @@ export type CompanySearchQuery = {
|
|
|
21594
21845
|
callCampaignName?: string | null;
|
|
21595
21846
|
callCampaignId?: number | null;
|
|
21596
21847
|
callCampaignLogOutcome?: string | null;
|
|
21848
|
+
combinedCampaignLogId?: string | null;
|
|
21849
|
+
combinedCampaignId?: string | null;
|
|
21850
|
+
combinedCampaignName?: string | null;
|
|
21851
|
+
combinedCampaignStepId?: string | null;
|
|
21852
|
+
combinedCampaignStepOrder?: number | null;
|
|
21597
21853
|
lastUpdatedByName?: string | null;
|
|
21598
21854
|
} | null;
|
|
21599
21855
|
createdBy?: {
|
|
@@ -22675,6 +22931,11 @@ export type MysupplierQuery = {
|
|
|
22675
22931
|
callCampaignName?: string | null;
|
|
22676
22932
|
callCampaignId?: number | null;
|
|
22677
22933
|
callCampaignLogOutcome?: string | null;
|
|
22934
|
+
combinedCampaignLogId?: string | null;
|
|
22935
|
+
combinedCampaignId?: string | null;
|
|
22936
|
+
combinedCampaignName?: string | null;
|
|
22937
|
+
combinedCampaignStepId?: string | null;
|
|
22938
|
+
combinedCampaignStepOrder?: number | null;
|
|
22678
22939
|
lastUpdatedByName?: string | null;
|
|
22679
22940
|
tasks?: Array<{
|
|
22680
22941
|
__typename?: 'TaskObject';
|
|
@@ -23030,6 +23291,11 @@ export type MysupplierQuery = {
|
|
|
23030
23291
|
callCampaignName?: string | null;
|
|
23031
23292
|
callCampaignId?: number | null;
|
|
23032
23293
|
callCampaignLogOutcome?: string | null;
|
|
23294
|
+
combinedCampaignLogId?: string | null;
|
|
23295
|
+
combinedCampaignId?: string | null;
|
|
23296
|
+
combinedCampaignName?: string | null;
|
|
23297
|
+
combinedCampaignStepId?: string | null;
|
|
23298
|
+
combinedCampaignStepOrder?: number | null;
|
|
23033
23299
|
lastUpdatedByName?: string | null;
|
|
23034
23300
|
} | null;
|
|
23035
23301
|
createdBy?: {
|
|
@@ -23359,6 +23625,11 @@ export type MysupplierListQuery = {
|
|
|
23359
23625
|
callCampaignName?: string | null;
|
|
23360
23626
|
callCampaignId?: number | null;
|
|
23361
23627
|
callCampaignLogOutcome?: string | null;
|
|
23628
|
+
combinedCampaignLogId?: string | null;
|
|
23629
|
+
combinedCampaignId?: string | null;
|
|
23630
|
+
combinedCampaignName?: string | null;
|
|
23631
|
+
combinedCampaignStepId?: string | null;
|
|
23632
|
+
combinedCampaignStepOrder?: number | null;
|
|
23362
23633
|
lastUpdatedByName?: string | null;
|
|
23363
23634
|
tasks?: Array<{
|
|
23364
23635
|
__typename?: 'TaskObject';
|
|
@@ -23714,6 +23985,11 @@ export type MysupplierListQuery = {
|
|
|
23714
23985
|
callCampaignName?: string | null;
|
|
23715
23986
|
callCampaignId?: number | null;
|
|
23716
23987
|
callCampaignLogOutcome?: string | null;
|
|
23988
|
+
combinedCampaignLogId?: string | null;
|
|
23989
|
+
combinedCampaignId?: string | null;
|
|
23990
|
+
combinedCampaignName?: string | null;
|
|
23991
|
+
combinedCampaignStepId?: string | null;
|
|
23992
|
+
combinedCampaignStepOrder?: number | null;
|
|
23717
23993
|
lastUpdatedByName?: string | null;
|
|
23718
23994
|
} | null;
|
|
23719
23995
|
createdBy?: {
|
|
@@ -24263,6 +24539,11 @@ export type RecentHistoryQuery = {
|
|
|
24263
24539
|
callCampaignName?: string | null;
|
|
24264
24540
|
callCampaignId?: number | null;
|
|
24265
24541
|
callCampaignLogOutcome?: string | null;
|
|
24542
|
+
combinedCampaignLogId?: string | null;
|
|
24543
|
+
combinedCampaignId?: string | null;
|
|
24544
|
+
combinedCampaignName?: string | null;
|
|
24545
|
+
combinedCampaignStepId?: string | null;
|
|
24546
|
+
combinedCampaignStepOrder?: number | null;
|
|
24266
24547
|
lastUpdatedByName?: string | null;
|
|
24267
24548
|
tasks?: Array<{
|
|
24268
24549
|
__typename?: 'TaskObject';
|
|
@@ -24618,6 +24899,11 @@ export type RecentHistoryQuery = {
|
|
|
24618
24899
|
callCampaignName?: string | null;
|
|
24619
24900
|
callCampaignId?: number | null;
|
|
24620
24901
|
callCampaignLogOutcome?: string | null;
|
|
24902
|
+
combinedCampaignLogId?: string | null;
|
|
24903
|
+
combinedCampaignId?: string | null;
|
|
24904
|
+
combinedCampaignName?: string | null;
|
|
24905
|
+
combinedCampaignStepId?: string | null;
|
|
24906
|
+
combinedCampaignStepOrder?: number | null;
|
|
24621
24907
|
lastUpdatedByName?: string | null;
|
|
24622
24908
|
} | null;
|
|
24623
24909
|
createdBy?: {
|
|
@@ -26085,6 +26371,11 @@ export type SupplierQuery = {
|
|
|
26085
26371
|
callCampaignName?: string | null;
|
|
26086
26372
|
callCampaignId?: number | null;
|
|
26087
26373
|
callCampaignLogOutcome?: string | null;
|
|
26374
|
+
combinedCampaignLogId?: string | null;
|
|
26375
|
+
combinedCampaignId?: string | null;
|
|
26376
|
+
combinedCampaignName?: string | null;
|
|
26377
|
+
combinedCampaignStepId?: string | null;
|
|
26378
|
+
combinedCampaignStepOrder?: number | null;
|
|
26088
26379
|
lastUpdatedByName?: string | null;
|
|
26089
26380
|
tasks?: Array<{
|
|
26090
26381
|
__typename?: 'TaskObject';
|
|
@@ -26440,6 +26731,11 @@ export type SupplierQuery = {
|
|
|
26440
26731
|
callCampaignName?: string | null;
|
|
26441
26732
|
callCampaignId?: number | null;
|
|
26442
26733
|
callCampaignLogOutcome?: string | null;
|
|
26734
|
+
combinedCampaignLogId?: string | null;
|
|
26735
|
+
combinedCampaignId?: string | null;
|
|
26736
|
+
combinedCampaignName?: string | null;
|
|
26737
|
+
combinedCampaignStepId?: string | null;
|
|
26738
|
+
combinedCampaignStepOrder?: number | null;
|
|
26443
26739
|
lastUpdatedByName?: string | null;
|
|
26444
26740
|
} | null;
|
|
26445
26741
|
createdBy?: {
|
|
@@ -26878,6 +27174,11 @@ export type SupplierlistQuery = {
|
|
|
26878
27174
|
callCampaignName?: string | null;
|
|
26879
27175
|
callCampaignId?: number | null;
|
|
26880
27176
|
callCampaignLogOutcome?: string | null;
|
|
27177
|
+
combinedCampaignLogId?: string | null;
|
|
27178
|
+
combinedCampaignId?: string | null;
|
|
27179
|
+
combinedCampaignName?: string | null;
|
|
27180
|
+
combinedCampaignStepId?: string | null;
|
|
27181
|
+
combinedCampaignStepOrder?: number | null;
|
|
26881
27182
|
lastUpdatedByName?: string | null;
|
|
26882
27183
|
tasks?: Array<{
|
|
26883
27184
|
__typename?: 'TaskObject';
|
|
@@ -27233,6 +27534,11 @@ export type SupplierlistQuery = {
|
|
|
27233
27534
|
callCampaignName?: string | null;
|
|
27234
27535
|
callCampaignId?: number | null;
|
|
27235
27536
|
callCampaignLogOutcome?: string | null;
|
|
27537
|
+
combinedCampaignLogId?: string | null;
|
|
27538
|
+
combinedCampaignId?: string | null;
|
|
27539
|
+
combinedCampaignName?: string | null;
|
|
27540
|
+
combinedCampaignStepId?: string | null;
|
|
27541
|
+
combinedCampaignStepOrder?: number | null;
|
|
27236
27542
|
lastUpdatedByName?: string | null;
|
|
27237
27543
|
} | null;
|
|
27238
27544
|
createdBy?: {
|
|
@@ -27562,6 +27868,11 @@ export type SupplierlistListQuery = {
|
|
|
27562
27868
|
callCampaignName?: string | null;
|
|
27563
27869
|
callCampaignId?: number | null;
|
|
27564
27870
|
callCampaignLogOutcome?: string | null;
|
|
27871
|
+
combinedCampaignLogId?: string | null;
|
|
27872
|
+
combinedCampaignId?: string | null;
|
|
27873
|
+
combinedCampaignName?: string | null;
|
|
27874
|
+
combinedCampaignStepId?: string | null;
|
|
27875
|
+
combinedCampaignStepOrder?: number | null;
|
|
27565
27876
|
lastUpdatedByName?: string | null;
|
|
27566
27877
|
tasks?: Array<{
|
|
27567
27878
|
__typename?: 'TaskObject';
|
|
@@ -27917,6 +28228,11 @@ export type SupplierlistListQuery = {
|
|
|
27917
28228
|
callCampaignName?: string | null;
|
|
27918
28229
|
callCampaignId?: number | null;
|
|
27919
28230
|
callCampaignLogOutcome?: string | null;
|
|
28231
|
+
combinedCampaignLogId?: string | null;
|
|
28232
|
+
combinedCampaignId?: string | null;
|
|
28233
|
+
combinedCampaignName?: string | null;
|
|
28234
|
+
combinedCampaignStepId?: string | null;
|
|
28235
|
+
combinedCampaignStepOrder?: number | null;
|
|
27920
28236
|
lastUpdatedByName?: string | null;
|
|
27921
28237
|
} | null;
|
|
27922
28238
|
createdBy?: {
|
|
@@ -28356,6 +28672,11 @@ export type SuppliersQuery = {
|
|
|
28356
28672
|
callCampaignName?: string | null;
|
|
28357
28673
|
callCampaignId?: number | null;
|
|
28358
28674
|
callCampaignLogOutcome?: string | null;
|
|
28675
|
+
combinedCampaignLogId?: string | null;
|
|
28676
|
+
combinedCampaignId?: string | null;
|
|
28677
|
+
combinedCampaignName?: string | null;
|
|
28678
|
+
combinedCampaignStepId?: string | null;
|
|
28679
|
+
combinedCampaignStepOrder?: number | null;
|
|
28359
28680
|
lastUpdatedByName?: string | null;
|
|
28360
28681
|
tasks?: Array<{
|
|
28361
28682
|
__typename?: 'TaskObject';
|
|
@@ -28711,6 +29032,11 @@ export type SuppliersQuery = {
|
|
|
28711
29032
|
callCampaignName?: string | null;
|
|
28712
29033
|
callCampaignId?: number | null;
|
|
28713
29034
|
callCampaignLogOutcome?: string | null;
|
|
29035
|
+
combinedCampaignLogId?: string | null;
|
|
29036
|
+
combinedCampaignId?: string | null;
|
|
29037
|
+
combinedCampaignName?: string | null;
|
|
29038
|
+
combinedCampaignStepId?: string | null;
|
|
29039
|
+
combinedCampaignStepOrder?: number | null;
|
|
28714
29040
|
lastUpdatedByName?: string | null;
|
|
28715
29041
|
} | null;
|
|
28716
29042
|
createdBy?: {
|
|
@@ -29085,6 +29411,11 @@ export type TaskQuery = {
|
|
|
29085
29411
|
callCampaignName?: string | null;
|
|
29086
29412
|
callCampaignId?: number | null;
|
|
29087
29413
|
callCampaignLogOutcome?: string | null;
|
|
29414
|
+
combinedCampaignLogId?: string | null;
|
|
29415
|
+
combinedCampaignId?: string | null;
|
|
29416
|
+
combinedCampaignName?: string | null;
|
|
29417
|
+
combinedCampaignStepId?: string | null;
|
|
29418
|
+
combinedCampaignStepOrder?: number | null;
|
|
29088
29419
|
lastUpdatedByName?: string | null;
|
|
29089
29420
|
} | null;
|
|
29090
29421
|
createdBy?: {
|
|
@@ -29252,6 +29583,11 @@ export type TasksQuery = {
|
|
|
29252
29583
|
callCampaignName?: string | null;
|
|
29253
29584
|
callCampaignId?: number | null;
|
|
29254
29585
|
callCampaignLogOutcome?: string | null;
|
|
29586
|
+
combinedCampaignLogId?: string | null;
|
|
29587
|
+
combinedCampaignId?: string | null;
|
|
29588
|
+
combinedCampaignName?: string | null;
|
|
29589
|
+
combinedCampaignStepId?: string | null;
|
|
29590
|
+
combinedCampaignStepOrder?: number | null;
|
|
29255
29591
|
lastUpdatedByName?: string | null;
|
|
29256
29592
|
} | null;
|
|
29257
29593
|
createdBy?: {
|
|
@@ -33133,6 +33469,41 @@ export type AutomatedProspectingConfigQueryHookResult = ReturnType<typeof useAut
|
|
|
33133
33469
|
export type AutomatedProspectingConfigLazyQueryHookResult = ReturnType<typeof useAutomatedProspectingConfigLazyQuery>;
|
|
33134
33470
|
export type AutomatedProspectingConfigSuspenseQueryHookResult = ReturnType<typeof useAutomatedProspectingConfigSuspenseQuery>;
|
|
33135
33471
|
export type AutomatedProspectingConfigQueryResult = Apollo.QueryResult<AutomatedProspectingConfigQuery, AutomatedProspectingConfigQueryVariables>;
|
|
33472
|
+
export declare const AutomatedProspectingStatsDocument: Apollo.DocumentNode;
|
|
33473
|
+
/**
|
|
33474
|
+
* __useAutomatedProspectingStatsQuery__
|
|
33475
|
+
*
|
|
33476
|
+
* To run a query within a React component, call `useAutomatedProspectingStatsQuery` and pass it any options that fit your needs.
|
|
33477
|
+
* When your component renders, `useAutomatedProspectingStatsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
33478
|
+
* you can use to render your UI.
|
|
33479
|
+
*
|
|
33480
|
+
* @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;
|
|
33481
|
+
*
|
|
33482
|
+
* @example
|
|
33483
|
+
* const { data, loading, error } = useAutomatedProspectingStatsQuery({
|
|
33484
|
+
* variables: {
|
|
33485
|
+
* accountId: // value for 'accountId'
|
|
33486
|
+
* },
|
|
33487
|
+
* });
|
|
33488
|
+
*/
|
|
33489
|
+
export declare function useAutomatedProspectingStatsQuery(baseOptions: Apollo.QueryHookOptions<AutomatedProspectingStatsQuery, AutomatedProspectingStatsQueryVariables> & ({
|
|
33490
|
+
variables: AutomatedProspectingStatsQueryVariables;
|
|
33491
|
+
skip?: boolean;
|
|
33492
|
+
} | {
|
|
33493
|
+
skip: boolean;
|
|
33494
|
+
})): Apollo.QueryResult<AutomatedProspectingStatsQuery, Exact<{
|
|
33495
|
+
accountId: Scalars["ID"]["input"];
|
|
33496
|
+
}>>;
|
|
33497
|
+
export declare function useAutomatedProspectingStatsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<AutomatedProspectingStatsQuery, AutomatedProspectingStatsQueryVariables>): Apollo.LazyQueryResultTuple<AutomatedProspectingStatsQuery, Exact<{
|
|
33498
|
+
accountId: Scalars["ID"]["input"];
|
|
33499
|
+
}>>;
|
|
33500
|
+
export declare function useAutomatedProspectingStatsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<AutomatedProspectingStatsQuery, AutomatedProspectingStatsQueryVariables>): Apollo.UseSuspenseQueryResult<AutomatedProspectingStatsQuery | undefined, Exact<{
|
|
33501
|
+
accountId: Scalars["ID"]["input"];
|
|
33502
|
+
}>>;
|
|
33503
|
+
export type AutomatedProspectingStatsQueryHookResult = ReturnType<typeof useAutomatedProspectingStatsQuery>;
|
|
33504
|
+
export type AutomatedProspectingStatsLazyQueryHookResult = ReturnType<typeof useAutomatedProspectingStatsLazyQuery>;
|
|
33505
|
+
export type AutomatedProspectingStatsSuspenseQueryHookResult = ReturnType<typeof useAutomatedProspectingStatsSuspenseQuery>;
|
|
33506
|
+
export type AutomatedProspectingStatsQueryResult = Apollo.QueryResult<AutomatedProspectingStatsQuery, AutomatedProspectingStatsQueryVariables>;
|
|
33136
33507
|
export declare const BusinessProfileDocument: Apollo.DocumentNode;
|
|
33137
33508
|
/**
|
|
33138
33509
|
* __useBusinessProfileQuery__
|