cf-service-sdk 0.0.28 → 0.0.30
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 +301 -154
- package/dist/generated/graphql.js +259 -139
- package/dist/mutations.js +68 -18
- package/dist/queries.js +191 -121
- package/package.json +1 -1
|
@@ -803,8 +803,10 @@ export type CompanyNoteInput = {
|
|
|
803
803
|
export type CompanyNoteObject = {
|
|
804
804
|
__typename?: 'CompanyNoteObject';
|
|
805
805
|
accountId?: Maybe<Scalars['Int']['output']>;
|
|
806
|
+
callCampaignId?: Maybe<Scalars['Int']['output']>;
|
|
806
807
|
callCampaignLogId?: Maybe<Scalars['Int']['output']>;
|
|
807
|
-
|
|
808
|
+
callCampaignLogOutcome?: Maybe<Scalars['String']['output']>;
|
|
809
|
+
callCampaignName?: Maybe<Scalars['String']['output']>;
|
|
808
810
|
companyId?: Maybe<Scalars['Int']['output']>;
|
|
809
811
|
companyName?: Maybe<Scalars['String']['output']>;
|
|
810
812
|
competitorsMentioned?: Maybe<Scalars['String']['output']>;
|
|
@@ -2049,8 +2051,8 @@ export type Query = {
|
|
|
2049
2051
|
segments?: Maybe<PaginatedSegmentList>;
|
|
2050
2052
|
/** Get a specific task by ID */
|
|
2051
2053
|
task?: Maybe<TaskObject>;
|
|
2052
|
-
/** List all tasks owned by the current user */
|
|
2053
|
-
tasks?: Maybe<
|
|
2054
|
+
/** List all tasks owned by the current user with pagination and stats */
|
|
2055
|
+
tasks?: Maybe<TasksResponse>;
|
|
2054
2056
|
/** Get count of unread notifications for the current user */
|
|
2055
2057
|
unreadNotificationsCount?: Maybe<Scalars['Int']['output']>;
|
|
2056
2058
|
usStates?: Maybe<Array<Maybe<UsStateData>>>;
|
|
@@ -2426,6 +2428,8 @@ export type TaskFilterInput = {
|
|
|
2426
2428
|
companyId?: InputMaybe<Scalars['Int']['input']>;
|
|
2427
2429
|
dueDateFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2428
2430
|
dueDateTo?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2431
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2432
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
2429
2433
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
2430
2434
|
};
|
|
2431
2435
|
/** GraphQL type for Task model */
|
|
@@ -2445,12 +2449,33 @@ export type TaskObject = {
|
|
|
2445
2449
|
description?: Maybe<Scalars['String']['output']>;
|
|
2446
2450
|
dueDate?: Maybe<Scalars['DateTime']['output']>;
|
|
2447
2451
|
id?: Maybe<Scalars['Int']['output']>;
|
|
2452
|
+
overdue?: Maybe<Scalars['Boolean']['output']>;
|
|
2448
2453
|
priority?: Maybe<Scalars['String']['output']>;
|
|
2449
2454
|
reminderType?: Maybe<Scalars['String']['output']>;
|
|
2450
2455
|
status?: Maybe<Scalars['String']['output']>;
|
|
2451
2456
|
title?: Maybe<Scalars['String']['output']>;
|
|
2452
2457
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2453
2458
|
};
|
|
2459
|
+
/** Stats for tasks by status */
|
|
2460
|
+
export type TaskStatsObject = {
|
|
2461
|
+
__typename?: 'TaskStatsObject';
|
|
2462
|
+
cancelled?: Maybe<Scalars['Int']['output']>;
|
|
2463
|
+
completed?: Maybe<Scalars['Int']['output']>;
|
|
2464
|
+
inProgress?: Maybe<Scalars['Int']['output']>;
|
|
2465
|
+
open?: Maybe<Scalars['Int']['output']>;
|
|
2466
|
+
overdue?: Maybe<Scalars['Int']['output']>;
|
|
2467
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
2468
|
+
};
|
|
2469
|
+
/** Paginated response for tasks query */
|
|
2470
|
+
export type TasksResponse = {
|
|
2471
|
+
__typename?: 'TasksResponse';
|
|
2472
|
+
items?: Maybe<Array<Maybe<TaskObject>>>;
|
|
2473
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
2474
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
2475
|
+
stats?: Maybe<TaskStatsObject>;
|
|
2476
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
2477
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
2478
|
+
};
|
|
2454
2479
|
export type UsStateData = {
|
|
2455
2480
|
__typename?: 'USStateData';
|
|
2456
2481
|
/** State abbreviation */
|
|
@@ -3054,6 +3079,7 @@ export type CreateCallCampaignLogMutation = {
|
|
|
3054
3079
|
companyName?: string | null;
|
|
3055
3080
|
contactId?: number | null;
|
|
3056
3081
|
contactName?: string | null;
|
|
3082
|
+
overdue?: boolean | null;
|
|
3057
3083
|
assignedTo?: {
|
|
3058
3084
|
__typename?: 'UserType';
|
|
3059
3085
|
id?: string | null;
|
|
@@ -3139,7 +3165,9 @@ export type CreateCallCampaignLogMutation = {
|
|
|
3139
3165
|
userFirstName?: string | null;
|
|
3140
3166
|
userLastName?: string | null;
|
|
3141
3167
|
callCampaignLogId?: number | null;
|
|
3142
|
-
|
|
3168
|
+
callCampaignName?: string | null;
|
|
3169
|
+
callCampaignId?: number | null;
|
|
3170
|
+
callCampaignLogOutcome?: string | null;
|
|
3143
3171
|
} | null;
|
|
3144
3172
|
} | null> | null;
|
|
3145
3173
|
} | null;
|
|
@@ -3406,7 +3434,9 @@ export type CreateCompanyMutation = {
|
|
|
3406
3434
|
userFirstName?: string | null;
|
|
3407
3435
|
userLastName?: string | null;
|
|
3408
3436
|
callCampaignLogId?: number | null;
|
|
3409
|
-
|
|
3437
|
+
callCampaignName?: string | null;
|
|
3438
|
+
callCampaignId?: number | null;
|
|
3439
|
+
callCampaignLogOutcome?: string | null;
|
|
3410
3440
|
tasks?: Array<{
|
|
3411
3441
|
__typename?: 'TaskObject';
|
|
3412
3442
|
id?: number | null;
|
|
@@ -3424,6 +3454,7 @@ export type CreateCompanyMutation = {
|
|
|
3424
3454
|
companyName?: string | null;
|
|
3425
3455
|
contactId?: number | null;
|
|
3426
3456
|
contactName?: string | null;
|
|
3457
|
+
overdue?: boolean | null;
|
|
3427
3458
|
assignedTo?: {
|
|
3428
3459
|
__typename?: 'UserType';
|
|
3429
3460
|
id?: string | null;
|
|
@@ -3537,7 +3568,9 @@ export type CreateCompanyMutation = {
|
|
|
3537
3568
|
userFirstName?: string | null;
|
|
3538
3569
|
userLastName?: string | null;
|
|
3539
3570
|
callCampaignLogId?: number | null;
|
|
3540
|
-
|
|
3571
|
+
callCampaignName?: string | null;
|
|
3572
|
+
callCampaignId?: number | null;
|
|
3573
|
+
callCampaignLogOutcome?: string | null;
|
|
3541
3574
|
tasks?: Array<{
|
|
3542
3575
|
__typename?: 'TaskObject';
|
|
3543
3576
|
id?: number | null;
|
|
@@ -3555,6 +3588,7 @@ export type CreateCompanyMutation = {
|
|
|
3555
3588
|
companyName?: string | null;
|
|
3556
3589
|
contactId?: number | null;
|
|
3557
3590
|
contactName?: string | null;
|
|
3591
|
+
overdue?: boolean | null;
|
|
3558
3592
|
assignedTo?: {
|
|
3559
3593
|
__typename?: 'UserType';
|
|
3560
3594
|
id?: string | null;
|
|
@@ -3653,7 +3687,9 @@ export type CreateCompanyMutation = {
|
|
|
3653
3687
|
userFirstName?: string | null;
|
|
3654
3688
|
userLastName?: string | null;
|
|
3655
3689
|
callCampaignLogId?: number | null;
|
|
3656
|
-
|
|
3690
|
+
callCampaignName?: string | null;
|
|
3691
|
+
callCampaignId?: number | null;
|
|
3692
|
+
callCampaignLogOutcome?: string | null;
|
|
3657
3693
|
} | null;
|
|
3658
3694
|
} | null> | null;
|
|
3659
3695
|
} | null;
|
|
@@ -3676,6 +3712,7 @@ export type CreateCompanyMutation = {
|
|
|
3676
3712
|
companyName?: string | null;
|
|
3677
3713
|
contactId?: number | null;
|
|
3678
3714
|
contactName?: string | null;
|
|
3715
|
+
overdue?: boolean | null;
|
|
3679
3716
|
assignedTo?: {
|
|
3680
3717
|
__typename?: 'UserType';
|
|
3681
3718
|
id?: string | null;
|
|
@@ -3789,7 +3826,9 @@ export type CreateCompanyMutation = {
|
|
|
3789
3826
|
userFirstName?: string | null;
|
|
3790
3827
|
userLastName?: string | null;
|
|
3791
3828
|
callCampaignLogId?: number | null;
|
|
3792
|
-
|
|
3829
|
+
callCampaignName?: string | null;
|
|
3830
|
+
callCampaignId?: number | null;
|
|
3831
|
+
callCampaignLogOutcome?: string | null;
|
|
3793
3832
|
} | null;
|
|
3794
3833
|
} | null> | null;
|
|
3795
3834
|
industry?: {
|
|
@@ -3878,7 +3917,9 @@ export type CreateCompanyNoteMutation = {
|
|
|
3878
3917
|
userFirstName?: string | null;
|
|
3879
3918
|
userLastName?: string | null;
|
|
3880
3919
|
callCampaignLogId?: number | null;
|
|
3881
|
-
|
|
3920
|
+
callCampaignName?: string | null;
|
|
3921
|
+
callCampaignId?: number | null;
|
|
3922
|
+
callCampaignLogOutcome?: string | null;
|
|
3882
3923
|
tasks?: Array<{
|
|
3883
3924
|
__typename?: 'TaskObject';
|
|
3884
3925
|
id?: number | null;
|
|
@@ -3896,6 +3937,7 @@ export type CreateCompanyNoteMutation = {
|
|
|
3896
3937
|
companyName?: string | null;
|
|
3897
3938
|
contactId?: number | null;
|
|
3898
3939
|
contactName?: string | null;
|
|
3940
|
+
overdue?: boolean | null;
|
|
3899
3941
|
assignedTo?: {
|
|
3900
3942
|
__typename?: 'UserType';
|
|
3901
3943
|
id?: string | null;
|
|
@@ -4009,7 +4051,9 @@ export type CreateCompanyNoteMutation = {
|
|
|
4009
4051
|
userFirstName?: string | null;
|
|
4010
4052
|
userLastName?: string | null;
|
|
4011
4053
|
callCampaignLogId?: number | null;
|
|
4012
|
-
|
|
4054
|
+
callCampaignName?: string | null;
|
|
4055
|
+
callCampaignId?: number | null;
|
|
4056
|
+
callCampaignLogOutcome?: string | null;
|
|
4013
4057
|
tasks?: Array<{
|
|
4014
4058
|
__typename?: 'TaskObject';
|
|
4015
4059
|
id?: number | null;
|
|
@@ -4027,6 +4071,7 @@ export type CreateCompanyNoteMutation = {
|
|
|
4027
4071
|
companyName?: string | null;
|
|
4028
4072
|
contactId?: number | null;
|
|
4029
4073
|
contactName?: string | null;
|
|
4074
|
+
overdue?: boolean | null;
|
|
4030
4075
|
assignedTo?: {
|
|
4031
4076
|
__typename?: 'UserType';
|
|
4032
4077
|
id?: string | null;
|
|
@@ -4140,7 +4185,9 @@ export type CreateCompanyNoteMutation = {
|
|
|
4140
4185
|
userFirstName?: string | null;
|
|
4141
4186
|
userLastName?: string | null;
|
|
4142
4187
|
callCampaignLogId?: number | null;
|
|
4143
|
-
|
|
4188
|
+
callCampaignName?: string | null;
|
|
4189
|
+
callCampaignId?: number | null;
|
|
4190
|
+
callCampaignLogOutcome?: string | null;
|
|
4144
4191
|
} | null;
|
|
4145
4192
|
} | null> | null;
|
|
4146
4193
|
} | null;
|
|
@@ -4300,6 +4347,7 @@ export type CreateTaskMutation = {
|
|
|
4300
4347
|
companyName?: string | null;
|
|
4301
4348
|
contactId?: number | null;
|
|
4302
4349
|
contactName?: string | null;
|
|
4350
|
+
overdue?: boolean | null;
|
|
4303
4351
|
assignedTo?: {
|
|
4304
4352
|
__typename?: 'UserType';
|
|
4305
4353
|
id?: string | null;
|
|
@@ -4413,7 +4461,9 @@ export type CreateTaskMutation = {
|
|
|
4413
4461
|
userFirstName?: string | null;
|
|
4414
4462
|
userLastName?: string | null;
|
|
4415
4463
|
callCampaignLogId?: number | null;
|
|
4416
|
-
|
|
4464
|
+
callCampaignName?: string | null;
|
|
4465
|
+
callCampaignId?: number | null;
|
|
4466
|
+
callCampaignLogOutcome?: string | null;
|
|
4417
4467
|
} | null;
|
|
4418
4468
|
} | null;
|
|
4419
4469
|
} | null;
|
|
@@ -5451,6 +5501,7 @@ export type UpdateCallCampaignLogMutation = {
|
|
|
5451
5501
|
companyName?: string | null;
|
|
5452
5502
|
contactId?: number | null;
|
|
5453
5503
|
contactName?: string | null;
|
|
5504
|
+
overdue?: boolean | null;
|
|
5454
5505
|
assignedTo?: {
|
|
5455
5506
|
__typename?: 'UserType';
|
|
5456
5507
|
id?: string | null;
|
|
@@ -5536,7 +5587,9 @@ export type UpdateCallCampaignLogMutation = {
|
|
|
5536
5587
|
userFirstName?: string | null;
|
|
5537
5588
|
userLastName?: string | null;
|
|
5538
5589
|
callCampaignLogId?: number | null;
|
|
5539
|
-
|
|
5590
|
+
callCampaignName?: string | null;
|
|
5591
|
+
callCampaignId?: number | null;
|
|
5592
|
+
callCampaignLogOutcome?: string | null;
|
|
5540
5593
|
} | null;
|
|
5541
5594
|
} | null> | null;
|
|
5542
5595
|
} | null;
|
|
@@ -5803,7 +5856,9 @@ export type UpdateCompanyMutation = {
|
|
|
5803
5856
|
userFirstName?: string | null;
|
|
5804
5857
|
userLastName?: string | null;
|
|
5805
5858
|
callCampaignLogId?: number | null;
|
|
5806
|
-
|
|
5859
|
+
callCampaignName?: string | null;
|
|
5860
|
+
callCampaignId?: number | null;
|
|
5861
|
+
callCampaignLogOutcome?: string | null;
|
|
5807
5862
|
tasks?: Array<{
|
|
5808
5863
|
__typename?: 'TaskObject';
|
|
5809
5864
|
id?: number | null;
|
|
@@ -5821,6 +5876,7 @@ export type UpdateCompanyMutation = {
|
|
|
5821
5876
|
companyName?: string | null;
|
|
5822
5877
|
contactId?: number | null;
|
|
5823
5878
|
contactName?: string | null;
|
|
5879
|
+
overdue?: boolean | null;
|
|
5824
5880
|
assignedTo?: {
|
|
5825
5881
|
__typename?: 'UserType';
|
|
5826
5882
|
id?: string | null;
|
|
@@ -5934,7 +5990,9 @@ export type UpdateCompanyMutation = {
|
|
|
5934
5990
|
userFirstName?: string | null;
|
|
5935
5991
|
userLastName?: string | null;
|
|
5936
5992
|
callCampaignLogId?: number | null;
|
|
5937
|
-
|
|
5993
|
+
callCampaignName?: string | null;
|
|
5994
|
+
callCampaignId?: number | null;
|
|
5995
|
+
callCampaignLogOutcome?: string | null;
|
|
5938
5996
|
tasks?: Array<{
|
|
5939
5997
|
__typename?: 'TaskObject';
|
|
5940
5998
|
id?: number | null;
|
|
@@ -5952,6 +6010,7 @@ export type UpdateCompanyMutation = {
|
|
|
5952
6010
|
companyName?: string | null;
|
|
5953
6011
|
contactId?: number | null;
|
|
5954
6012
|
contactName?: string | null;
|
|
6013
|
+
overdue?: boolean | null;
|
|
5955
6014
|
assignedTo?: {
|
|
5956
6015
|
__typename?: 'UserType';
|
|
5957
6016
|
id?: string | null;
|
|
@@ -6050,7 +6109,9 @@ export type UpdateCompanyMutation = {
|
|
|
6050
6109
|
userFirstName?: string | null;
|
|
6051
6110
|
userLastName?: string | null;
|
|
6052
6111
|
callCampaignLogId?: number | null;
|
|
6053
|
-
|
|
6112
|
+
callCampaignName?: string | null;
|
|
6113
|
+
callCampaignId?: number | null;
|
|
6114
|
+
callCampaignLogOutcome?: string | null;
|
|
6054
6115
|
} | null;
|
|
6055
6116
|
} | null> | null;
|
|
6056
6117
|
} | null;
|
|
@@ -6073,6 +6134,7 @@ export type UpdateCompanyMutation = {
|
|
|
6073
6134
|
companyName?: string | null;
|
|
6074
6135
|
contactId?: number | null;
|
|
6075
6136
|
contactName?: string | null;
|
|
6137
|
+
overdue?: boolean | null;
|
|
6076
6138
|
assignedTo?: {
|
|
6077
6139
|
__typename?: 'UserType';
|
|
6078
6140
|
id?: string | null;
|
|
@@ -6186,7 +6248,9 @@ export type UpdateCompanyMutation = {
|
|
|
6186
6248
|
userFirstName?: string | null;
|
|
6187
6249
|
userLastName?: string | null;
|
|
6188
6250
|
callCampaignLogId?: number | null;
|
|
6189
|
-
|
|
6251
|
+
callCampaignName?: string | null;
|
|
6252
|
+
callCampaignId?: number | null;
|
|
6253
|
+
callCampaignLogOutcome?: string | null;
|
|
6190
6254
|
} | null;
|
|
6191
6255
|
} | null> | null;
|
|
6192
6256
|
industry?: {
|
|
@@ -6275,7 +6339,9 @@ export type UpdateCompanyNoteMutation = {
|
|
|
6275
6339
|
userFirstName?: string | null;
|
|
6276
6340
|
userLastName?: string | null;
|
|
6277
6341
|
callCampaignLogId?: number | null;
|
|
6278
|
-
|
|
6342
|
+
callCampaignName?: string | null;
|
|
6343
|
+
callCampaignId?: number | null;
|
|
6344
|
+
callCampaignLogOutcome?: string | null;
|
|
6279
6345
|
tasks?: Array<{
|
|
6280
6346
|
__typename?: 'TaskObject';
|
|
6281
6347
|
id?: number | null;
|
|
@@ -6293,6 +6359,7 @@ export type UpdateCompanyNoteMutation = {
|
|
|
6293
6359
|
companyName?: string | null;
|
|
6294
6360
|
contactId?: number | null;
|
|
6295
6361
|
contactName?: string | null;
|
|
6362
|
+
overdue?: boolean | null;
|
|
6296
6363
|
assignedTo?: {
|
|
6297
6364
|
__typename?: 'UserType';
|
|
6298
6365
|
id?: string | null;
|
|
@@ -6406,7 +6473,9 @@ export type UpdateCompanyNoteMutation = {
|
|
|
6406
6473
|
userFirstName?: string | null;
|
|
6407
6474
|
userLastName?: string | null;
|
|
6408
6475
|
callCampaignLogId?: number | null;
|
|
6409
|
-
|
|
6476
|
+
callCampaignName?: string | null;
|
|
6477
|
+
callCampaignId?: number | null;
|
|
6478
|
+
callCampaignLogOutcome?: string | null;
|
|
6410
6479
|
tasks?: Array<{
|
|
6411
6480
|
__typename?: 'TaskObject';
|
|
6412
6481
|
id?: number | null;
|
|
@@ -6424,6 +6493,7 @@ export type UpdateCompanyNoteMutation = {
|
|
|
6424
6493
|
companyName?: string | null;
|
|
6425
6494
|
contactId?: number | null;
|
|
6426
6495
|
contactName?: string | null;
|
|
6496
|
+
overdue?: boolean | null;
|
|
6427
6497
|
assignedTo?: {
|
|
6428
6498
|
__typename?: 'UserType';
|
|
6429
6499
|
id?: string | null;
|
|
@@ -6537,7 +6607,9 @@ export type UpdateCompanyNoteMutation = {
|
|
|
6537
6607
|
userFirstName?: string | null;
|
|
6538
6608
|
userLastName?: string | null;
|
|
6539
6609
|
callCampaignLogId?: number | null;
|
|
6540
|
-
|
|
6610
|
+
callCampaignName?: string | null;
|
|
6611
|
+
callCampaignId?: number | null;
|
|
6612
|
+
callCampaignLogOutcome?: string | null;
|
|
6541
6613
|
} | null;
|
|
6542
6614
|
} | null> | null;
|
|
6543
6615
|
} | null;
|
|
@@ -6675,6 +6747,7 @@ export type UpdateTaskMutation = {
|
|
|
6675
6747
|
companyName?: string | null;
|
|
6676
6748
|
contactId?: number | null;
|
|
6677
6749
|
contactName?: string | null;
|
|
6750
|
+
overdue?: boolean | null;
|
|
6678
6751
|
assignedTo?: {
|
|
6679
6752
|
__typename?: 'UserType';
|
|
6680
6753
|
id?: string | null;
|
|
@@ -6788,7 +6861,9 @@ export type UpdateTaskMutation = {
|
|
|
6788
6861
|
userFirstName?: string | null;
|
|
6789
6862
|
userLastName?: string | null;
|
|
6790
6863
|
callCampaignLogId?: number | null;
|
|
6791
|
-
|
|
6864
|
+
callCampaignName?: string | null;
|
|
6865
|
+
callCampaignId?: number | null;
|
|
6866
|
+
callCampaignLogOutcome?: string | null;
|
|
6792
6867
|
} | null;
|
|
6793
6868
|
} | null;
|
|
6794
6869
|
} | null;
|
|
@@ -7040,6 +7115,7 @@ export type CallCampaignLogQuery = {
|
|
|
7040
7115
|
companyName?: string | null;
|
|
7041
7116
|
contactId?: number | null;
|
|
7042
7117
|
contactName?: string | null;
|
|
7118
|
+
overdue?: boolean | null;
|
|
7043
7119
|
assignedTo?: {
|
|
7044
7120
|
__typename?: 'UserType';
|
|
7045
7121
|
id?: string | null;
|
|
@@ -7125,7 +7201,9 @@ export type CallCampaignLogQuery = {
|
|
|
7125
7201
|
userFirstName?: string | null;
|
|
7126
7202
|
userLastName?: string | null;
|
|
7127
7203
|
callCampaignLogId?: number | null;
|
|
7128
|
-
|
|
7204
|
+
callCampaignName?: string | null;
|
|
7205
|
+
callCampaignId?: number | null;
|
|
7206
|
+
callCampaignLogOutcome?: string | null;
|
|
7129
7207
|
} | null;
|
|
7130
7208
|
} | null> | null;
|
|
7131
7209
|
} | null;
|
|
@@ -7184,6 +7262,7 @@ export type CallCampaignLogsQuery = {
|
|
|
7184
7262
|
companyName?: string | null;
|
|
7185
7263
|
contactId?: number | null;
|
|
7186
7264
|
contactName?: string | null;
|
|
7265
|
+
overdue?: boolean | null;
|
|
7187
7266
|
assignedTo?: {
|
|
7188
7267
|
__typename?: 'UserType';
|
|
7189
7268
|
id?: string | null;
|
|
@@ -7269,7 +7348,9 @@ export type CallCampaignLogsQuery = {
|
|
|
7269
7348
|
userFirstName?: string | null;
|
|
7270
7349
|
userLastName?: string | null;
|
|
7271
7350
|
callCampaignLogId?: number | null;
|
|
7272
|
-
|
|
7351
|
+
callCampaignName?: string | null;
|
|
7352
|
+
callCampaignId?: number | null;
|
|
7353
|
+
callCampaignLogOutcome?: string | null;
|
|
7273
7354
|
} | null;
|
|
7274
7355
|
} | null> | null;
|
|
7275
7356
|
} | null> | null;
|
|
@@ -7973,7 +8054,9 @@ export type CompaniesQuery = {
|
|
|
7973
8054
|
userFirstName?: string | null;
|
|
7974
8055
|
userLastName?: string | null;
|
|
7975
8056
|
callCampaignLogId?: number | null;
|
|
7976
|
-
|
|
8057
|
+
callCampaignName?: string | null;
|
|
8058
|
+
callCampaignId?: number | null;
|
|
8059
|
+
callCampaignLogOutcome?: string | null;
|
|
7977
8060
|
tasks?: Array<{
|
|
7978
8061
|
__typename?: 'TaskObject';
|
|
7979
8062
|
id?: number | null;
|
|
@@ -7991,6 +8074,7 @@ export type CompaniesQuery = {
|
|
|
7991
8074
|
companyName?: string | null;
|
|
7992
8075
|
contactId?: number | null;
|
|
7993
8076
|
contactName?: string | null;
|
|
8077
|
+
overdue?: boolean | null;
|
|
7994
8078
|
assignedTo?: {
|
|
7995
8079
|
__typename?: 'UserType';
|
|
7996
8080
|
id?: string | null;
|
|
@@ -8104,7 +8188,9 @@ export type CompaniesQuery = {
|
|
|
8104
8188
|
userFirstName?: string | null;
|
|
8105
8189
|
userLastName?: string | null;
|
|
8106
8190
|
callCampaignLogId?: number | null;
|
|
8107
|
-
|
|
8191
|
+
callCampaignName?: string | null;
|
|
8192
|
+
callCampaignId?: number | null;
|
|
8193
|
+
callCampaignLogOutcome?: string | null;
|
|
8108
8194
|
tasks?: Array<{
|
|
8109
8195
|
__typename?: 'TaskObject';
|
|
8110
8196
|
id?: number | null;
|
|
@@ -8122,6 +8208,7 @@ export type CompaniesQuery = {
|
|
|
8122
8208
|
companyName?: string | null;
|
|
8123
8209
|
contactId?: number | null;
|
|
8124
8210
|
contactName?: string | null;
|
|
8211
|
+
overdue?: boolean | null;
|
|
8125
8212
|
} | null> | null;
|
|
8126
8213
|
} | null;
|
|
8127
8214
|
} | null> | null;
|
|
@@ -8143,6 +8230,7 @@ export type CompaniesQuery = {
|
|
|
8143
8230
|
companyName?: string | null;
|
|
8144
8231
|
contactId?: number | null;
|
|
8145
8232
|
contactName?: string | null;
|
|
8233
|
+
overdue?: boolean | null;
|
|
8146
8234
|
assignedTo?: {
|
|
8147
8235
|
__typename?: 'UserType';
|
|
8148
8236
|
id?: string | null;
|
|
@@ -8256,7 +8344,9 @@ export type CompaniesQuery = {
|
|
|
8256
8344
|
userFirstName?: string | null;
|
|
8257
8345
|
userLastName?: string | null;
|
|
8258
8346
|
callCampaignLogId?: number | null;
|
|
8259
|
-
|
|
8347
|
+
callCampaignName?: string | null;
|
|
8348
|
+
callCampaignId?: number | null;
|
|
8349
|
+
callCampaignLogOutcome?: string | null;
|
|
8260
8350
|
} | null;
|
|
8261
8351
|
} | null> | null;
|
|
8262
8352
|
industry?: {
|
|
@@ -8516,7 +8606,9 @@ export type CompanyQuery = {
|
|
|
8516
8606
|
userFirstName?: string | null;
|
|
8517
8607
|
userLastName?: string | null;
|
|
8518
8608
|
callCampaignLogId?: number | null;
|
|
8519
|
-
|
|
8609
|
+
callCampaignName?: string | null;
|
|
8610
|
+
callCampaignId?: number | null;
|
|
8611
|
+
callCampaignLogOutcome?: string | null;
|
|
8520
8612
|
tasks?: Array<{
|
|
8521
8613
|
__typename?: 'TaskObject';
|
|
8522
8614
|
id?: number | null;
|
|
@@ -8534,6 +8626,7 @@ export type CompanyQuery = {
|
|
|
8534
8626
|
companyName?: string | null;
|
|
8535
8627
|
contactId?: number | null;
|
|
8536
8628
|
contactName?: string | null;
|
|
8629
|
+
overdue?: boolean | null;
|
|
8537
8630
|
assignedTo?: {
|
|
8538
8631
|
__typename?: 'UserType';
|
|
8539
8632
|
id?: string | null;
|
|
@@ -8647,7 +8740,9 @@ export type CompanyQuery = {
|
|
|
8647
8740
|
userFirstName?: string | null;
|
|
8648
8741
|
userLastName?: string | null;
|
|
8649
8742
|
callCampaignLogId?: number | null;
|
|
8650
|
-
|
|
8743
|
+
callCampaignName?: string | null;
|
|
8744
|
+
callCampaignId?: number | null;
|
|
8745
|
+
callCampaignLogOutcome?: string | null;
|
|
8651
8746
|
tasks?: Array<{
|
|
8652
8747
|
__typename?: 'TaskObject';
|
|
8653
8748
|
id?: number | null;
|
|
@@ -8665,6 +8760,7 @@ export type CompanyQuery = {
|
|
|
8665
8760
|
companyName?: string | null;
|
|
8666
8761
|
contactId?: number | null;
|
|
8667
8762
|
contactName?: string | null;
|
|
8763
|
+
overdue?: boolean | null;
|
|
8668
8764
|
assignedTo?: {
|
|
8669
8765
|
__typename?: 'UserType';
|
|
8670
8766
|
id?: string | null;
|
|
@@ -8763,7 +8859,9 @@ export type CompanyQuery = {
|
|
|
8763
8859
|
userFirstName?: string | null;
|
|
8764
8860
|
userLastName?: string | null;
|
|
8765
8861
|
callCampaignLogId?: number | null;
|
|
8766
|
-
|
|
8862
|
+
callCampaignName?: string | null;
|
|
8863
|
+
callCampaignId?: number | null;
|
|
8864
|
+
callCampaignLogOutcome?: string | null;
|
|
8767
8865
|
} | null;
|
|
8768
8866
|
} | null> | null;
|
|
8769
8867
|
} | null;
|
|
@@ -8786,6 +8884,7 @@ export type CompanyQuery = {
|
|
|
8786
8884
|
companyName?: string | null;
|
|
8787
8885
|
contactId?: number | null;
|
|
8788
8886
|
contactName?: string | null;
|
|
8887
|
+
overdue?: boolean | null;
|
|
8789
8888
|
assignedTo?: {
|
|
8790
8889
|
__typename?: 'UserType';
|
|
8791
8890
|
id?: string | null;
|
|
@@ -8899,7 +8998,9 @@ export type CompanyQuery = {
|
|
|
8899
8998
|
userFirstName?: string | null;
|
|
8900
8999
|
userLastName?: string | null;
|
|
8901
9000
|
callCampaignLogId?: number | null;
|
|
8902
|
-
|
|
9001
|
+
callCampaignName?: string | null;
|
|
9002
|
+
callCampaignId?: number | null;
|
|
9003
|
+
callCampaignLogOutcome?: string | null;
|
|
8903
9004
|
} | null;
|
|
8904
9005
|
} | null> | null;
|
|
8905
9006
|
industry?: {
|
|
@@ -8985,7 +9086,9 @@ export type CompanyNoteQuery = {
|
|
|
8985
9086
|
userFirstName?: string | null;
|
|
8986
9087
|
userLastName?: string | null;
|
|
8987
9088
|
callCampaignLogId?: number | null;
|
|
8988
|
-
|
|
9089
|
+
callCampaignName?: string | null;
|
|
9090
|
+
callCampaignId?: number | null;
|
|
9091
|
+
callCampaignLogOutcome?: string | null;
|
|
8989
9092
|
tasks?: Array<{
|
|
8990
9093
|
__typename?: 'TaskObject';
|
|
8991
9094
|
id?: number | null;
|
|
@@ -9003,6 +9106,7 @@ export type CompanyNoteQuery = {
|
|
|
9003
9106
|
companyName?: string | null;
|
|
9004
9107
|
contactId?: number | null;
|
|
9005
9108
|
contactName?: string | null;
|
|
9109
|
+
overdue?: boolean | null;
|
|
9006
9110
|
assignedTo?: {
|
|
9007
9111
|
__typename?: 'UserType';
|
|
9008
9112
|
id?: string | null;
|
|
@@ -9116,7 +9220,9 @@ export type CompanyNoteQuery = {
|
|
|
9116
9220
|
userFirstName?: string | null;
|
|
9117
9221
|
userLastName?: string | null;
|
|
9118
9222
|
callCampaignLogId?: number | null;
|
|
9119
|
-
|
|
9223
|
+
callCampaignName?: string | null;
|
|
9224
|
+
callCampaignId?: number | null;
|
|
9225
|
+
callCampaignLogOutcome?: string | null;
|
|
9120
9226
|
tasks?: Array<{
|
|
9121
9227
|
__typename?: 'TaskObject';
|
|
9122
9228
|
id?: number | null;
|
|
@@ -9134,6 +9240,7 @@ export type CompanyNoteQuery = {
|
|
|
9134
9240
|
companyName?: string | null;
|
|
9135
9241
|
contactId?: number | null;
|
|
9136
9242
|
contactName?: string | null;
|
|
9243
|
+
overdue?: boolean | null;
|
|
9137
9244
|
assignedTo?: {
|
|
9138
9245
|
__typename?: 'UserType';
|
|
9139
9246
|
id?: string | null;
|
|
@@ -9247,7 +9354,9 @@ export type CompanyNoteQuery = {
|
|
|
9247
9354
|
userFirstName?: string | null;
|
|
9248
9355
|
userLastName?: string | null;
|
|
9249
9356
|
callCampaignLogId?: number | null;
|
|
9250
|
-
|
|
9357
|
+
callCampaignName?: string | null;
|
|
9358
|
+
callCampaignId?: number | null;
|
|
9359
|
+
callCampaignLogOutcome?: string | null;
|
|
9251
9360
|
} | null;
|
|
9252
9361
|
} | null> | null;
|
|
9253
9362
|
} | null;
|
|
@@ -9287,7 +9396,9 @@ export type CompanyNotesQuery = {
|
|
|
9287
9396
|
userFirstName?: string | null;
|
|
9288
9397
|
userLastName?: string | null;
|
|
9289
9398
|
callCampaignLogId?: number | null;
|
|
9290
|
-
|
|
9399
|
+
callCampaignName?: string | null;
|
|
9400
|
+
callCampaignId?: number | null;
|
|
9401
|
+
callCampaignLogOutcome?: string | null;
|
|
9291
9402
|
tasks?: Array<{
|
|
9292
9403
|
__typename?: 'TaskObject';
|
|
9293
9404
|
id?: number | null;
|
|
@@ -9305,6 +9416,7 @@ export type CompanyNotesQuery = {
|
|
|
9305
9416
|
companyName?: string | null;
|
|
9306
9417
|
contactId?: number | null;
|
|
9307
9418
|
contactName?: string | null;
|
|
9419
|
+
overdue?: boolean | null;
|
|
9308
9420
|
assignedTo?: {
|
|
9309
9421
|
__typename?: 'UserType';
|
|
9310
9422
|
id?: string | null;
|
|
@@ -9418,7 +9530,9 @@ export type CompanyNotesQuery = {
|
|
|
9418
9530
|
userFirstName?: string | null;
|
|
9419
9531
|
userLastName?: string | null;
|
|
9420
9532
|
callCampaignLogId?: number | null;
|
|
9421
|
-
|
|
9533
|
+
callCampaignName?: string | null;
|
|
9534
|
+
callCampaignId?: number | null;
|
|
9535
|
+
callCampaignLogOutcome?: string | null;
|
|
9422
9536
|
tasks?: Array<{
|
|
9423
9537
|
__typename?: 'TaskObject';
|
|
9424
9538
|
id?: number | null;
|
|
@@ -9436,6 +9550,7 @@ export type CompanyNotesQuery = {
|
|
|
9436
9550
|
companyName?: string | null;
|
|
9437
9551
|
contactId?: number | null;
|
|
9438
9552
|
contactName?: string | null;
|
|
9553
|
+
overdue?: boolean | null;
|
|
9439
9554
|
assignedTo?: {
|
|
9440
9555
|
__typename?: 'UserType';
|
|
9441
9556
|
id?: string | null;
|
|
@@ -9534,7 +9649,9 @@ export type CompanyNotesQuery = {
|
|
|
9534
9649
|
userFirstName?: string | null;
|
|
9535
9650
|
userLastName?: string | null;
|
|
9536
9651
|
callCampaignLogId?: number | null;
|
|
9537
|
-
|
|
9652
|
+
callCampaignName?: string | null;
|
|
9653
|
+
callCampaignId?: number | null;
|
|
9654
|
+
callCampaignLogOutcome?: string | null;
|
|
9538
9655
|
} | null;
|
|
9539
9656
|
} | null> | null;
|
|
9540
9657
|
} | null;
|
|
@@ -10269,7 +10386,9 @@ export type RecentHistoryQuery = {
|
|
|
10269
10386
|
userFirstName?: string | null;
|
|
10270
10387
|
userLastName?: string | null;
|
|
10271
10388
|
callCampaignLogId?: number | null;
|
|
10272
|
-
|
|
10389
|
+
callCampaignName?: string | null;
|
|
10390
|
+
callCampaignId?: number | null;
|
|
10391
|
+
callCampaignLogOutcome?: string | null;
|
|
10273
10392
|
tasks?: Array<{
|
|
10274
10393
|
__typename?: 'TaskObject';
|
|
10275
10394
|
id?: number | null;
|
|
@@ -10287,6 +10406,7 @@ export type RecentHistoryQuery = {
|
|
|
10287
10406
|
companyName?: string | null;
|
|
10288
10407
|
contactId?: number | null;
|
|
10289
10408
|
contactName?: string | null;
|
|
10409
|
+
overdue?: boolean | null;
|
|
10290
10410
|
assignedTo?: {
|
|
10291
10411
|
__typename?: 'UserType';
|
|
10292
10412
|
id?: string | null;
|
|
@@ -10385,7 +10505,9 @@ export type RecentHistoryQuery = {
|
|
|
10385
10505
|
userFirstName?: string | null;
|
|
10386
10506
|
userLastName?: string | null;
|
|
10387
10507
|
callCampaignLogId?: number | null;
|
|
10388
|
-
|
|
10508
|
+
callCampaignName?: string | null;
|
|
10509
|
+
callCampaignId?: number | null;
|
|
10510
|
+
callCampaignLogOutcome?: string | null;
|
|
10389
10511
|
} | null;
|
|
10390
10512
|
} | null> | null;
|
|
10391
10513
|
} | null> | null;
|
|
@@ -10406,6 +10528,7 @@ export type RecentHistoryQuery = {
|
|
|
10406
10528
|
companyName?: string | null;
|
|
10407
10529
|
contactId?: number | null;
|
|
10408
10530
|
contactName?: string | null;
|
|
10531
|
+
overdue?: boolean | null;
|
|
10409
10532
|
assignedTo?: {
|
|
10410
10533
|
__typename?: 'UserType';
|
|
10411
10534
|
id?: string | null;
|
|
@@ -10519,7 +10642,9 @@ export type RecentHistoryQuery = {
|
|
|
10519
10642
|
userFirstName?: string | null;
|
|
10520
10643
|
userLastName?: string | null;
|
|
10521
10644
|
callCampaignLogId?: number | null;
|
|
10522
|
-
|
|
10645
|
+
callCampaignName?: string | null;
|
|
10646
|
+
callCampaignId?: number | null;
|
|
10647
|
+
callCampaignLogOutcome?: string | null;
|
|
10523
10648
|
} | null;
|
|
10524
10649
|
} | null> | null;
|
|
10525
10650
|
industry?: {
|
|
@@ -10749,6 +10874,7 @@ export type TaskQuery = {
|
|
|
10749
10874
|
companyName?: string | null;
|
|
10750
10875
|
contactId?: number | null;
|
|
10751
10876
|
contactName?: string | null;
|
|
10877
|
+
overdue?: boolean | null;
|
|
10752
10878
|
assignedTo?: {
|
|
10753
10879
|
__typename?: 'UserType';
|
|
10754
10880
|
id?: string | null;
|
|
@@ -10862,7 +10988,9 @@ export type TaskQuery = {
|
|
|
10862
10988
|
userFirstName?: string | null;
|
|
10863
10989
|
userLastName?: string | null;
|
|
10864
10990
|
callCampaignLogId?: number | null;
|
|
10865
|
-
|
|
10991
|
+
callCampaignName?: string | null;
|
|
10992
|
+
callCampaignId?: number | null;
|
|
10993
|
+
callCampaignLogOutcome?: string | null;
|
|
10866
10994
|
} | null;
|
|
10867
10995
|
} | null;
|
|
10868
10996
|
};
|
|
@@ -10871,44 +10999,31 @@ export type TasksQueryVariables = Exact<{
|
|
|
10871
10999
|
}>;
|
|
10872
11000
|
export type TasksQuery = {
|
|
10873
11001
|
__typename?: 'Query';
|
|
10874
|
-
tasks?:
|
|
10875
|
-
__typename?: '
|
|
10876
|
-
|
|
10877
|
-
|
|
10878
|
-
|
|
10879
|
-
|
|
10880
|
-
|
|
10881
|
-
|
|
10882
|
-
|
|
10883
|
-
|
|
10884
|
-
|
|
10885
|
-
createdAt?: any | null;
|
|
10886
|
-
updatedAt?: any | null;
|
|
10887
|
-
companyId?: number | null;
|
|
10888
|
-
companyName?: string | null;
|
|
10889
|
-
contactId?: number | null;
|
|
10890
|
-
contactName?: string | null;
|
|
10891
|
-
assignedTo?: {
|
|
10892
|
-
__typename?: 'UserType';
|
|
10893
|
-
id?: string | null;
|
|
10894
|
-
email?: string | null;
|
|
10895
|
-
firstName?: string | null;
|
|
10896
|
-
lastName?: string | null;
|
|
10897
|
-
picture?: string | null;
|
|
10898
|
-
} | null;
|
|
10899
|
-
callCampaign?: {
|
|
10900
|
-
__typename?: 'CallCampaignObject';
|
|
10901
|
-
id?: string | null;
|
|
10902
|
-
createdAt?: any | null;
|
|
10903
|
-
updatedAt?: any | null;
|
|
10904
|
-
name?: string | null;
|
|
11002
|
+
tasks?: {
|
|
11003
|
+
__typename?: 'TasksResponse';
|
|
11004
|
+
total?: number | null;
|
|
11005
|
+
page?: number | null;
|
|
11006
|
+
pageSize?: number | null;
|
|
11007
|
+
totalPages?: number | null;
|
|
11008
|
+
items?: Array<{
|
|
11009
|
+
__typename?: 'TaskObject';
|
|
11010
|
+
id?: number | null;
|
|
11011
|
+
title?: string | null;
|
|
11012
|
+
category?: string | null;
|
|
10905
11013
|
description?: string | null;
|
|
11014
|
+
dueDate?: any | null;
|
|
11015
|
+
priority?: string | null;
|
|
11016
|
+
reminderType?: string | null;
|
|
10906
11017
|
status?: string | null;
|
|
10907
|
-
|
|
10908
|
-
|
|
10909
|
-
|
|
10910
|
-
|
|
10911
|
-
|
|
11018
|
+
completedAt?: any | null;
|
|
11019
|
+
createdAt?: any | null;
|
|
11020
|
+
updatedAt?: any | null;
|
|
11021
|
+
companyId?: number | null;
|
|
11022
|
+
companyName?: string | null;
|
|
11023
|
+
contactId?: number | null;
|
|
11024
|
+
contactName?: string | null;
|
|
11025
|
+
overdue?: boolean | null;
|
|
11026
|
+
assignedTo?: {
|
|
10912
11027
|
__typename?: 'UserType';
|
|
10913
11028
|
id?: string | null;
|
|
10914
11029
|
email?: string | null;
|
|
@@ -10916,94 +11031,126 @@ export type TasksQuery = {
|
|
|
10916
11031
|
lastName?: string | null;
|
|
10917
11032
|
picture?: string | null;
|
|
10918
11033
|
} | null;
|
|
10919
|
-
|
|
10920
|
-
__typename?: '
|
|
11034
|
+
callCampaign?: {
|
|
11035
|
+
__typename?: 'CallCampaignObject';
|
|
10921
11036
|
id?: string | null;
|
|
11037
|
+
createdAt?: any | null;
|
|
11038
|
+
updatedAt?: any | null;
|
|
10922
11039
|
name?: string | null;
|
|
10923
|
-
|
|
11040
|
+
description?: string | null;
|
|
11041
|
+
status?: string | null;
|
|
11042
|
+
contacts?: number | null;
|
|
11043
|
+
called?: number | null;
|
|
11044
|
+
connected?: number | null;
|
|
11045
|
+
lastActivity?: any | null;
|
|
11046
|
+
user?: {
|
|
11047
|
+
__typename?: 'UserType';
|
|
11048
|
+
id?: string | null;
|
|
11049
|
+
email?: string | null;
|
|
11050
|
+
firstName?: string | null;
|
|
11051
|
+
lastName?: string | null;
|
|
11052
|
+
picture?: string | null;
|
|
11053
|
+
} | null;
|
|
11054
|
+
account?: {
|
|
11055
|
+
__typename?: 'AccountType';
|
|
11056
|
+
id?: string | null;
|
|
11057
|
+
name?: string | null;
|
|
11058
|
+
isActive?: boolean | null;
|
|
11059
|
+
createdAt?: any | null;
|
|
11060
|
+
updatedAt?: any | null;
|
|
11061
|
+
} | null;
|
|
11062
|
+
segments?: Array<{
|
|
11063
|
+
__typename?: 'SegmentObject';
|
|
11064
|
+
id?: string | null;
|
|
11065
|
+
name?: string | null;
|
|
11066
|
+
description?: string | null;
|
|
11067
|
+
state?: string | null;
|
|
11068
|
+
industry?: string | null;
|
|
11069
|
+
metalType?: string | null;
|
|
11070
|
+
productCategory?: string | null;
|
|
11071
|
+
segmentType?: string | null;
|
|
11072
|
+
createdAt?: any | null;
|
|
11073
|
+
updatedAt?: any | null;
|
|
11074
|
+
isSystemTemplate?: boolean | null;
|
|
11075
|
+
totalContacts?: number | null;
|
|
11076
|
+
} | null> | null;
|
|
11077
|
+
stats?: {
|
|
11078
|
+
__typename?: 'CallCampaignStatsObject';
|
|
11079
|
+
totalContacts?: number | null;
|
|
11080
|
+
calledCount?: number | null;
|
|
11081
|
+
connectedCount?: number | null;
|
|
11082
|
+
remainingCount?: number | null;
|
|
11083
|
+
lastActivity?: any | null;
|
|
11084
|
+
statusCounts?: any | null;
|
|
11085
|
+
} | null;
|
|
11086
|
+
} | null;
|
|
11087
|
+
callCampaignLog?: {
|
|
11088
|
+
__typename?: 'CallCampaignLogObject';
|
|
11089
|
+
id?: string | null;
|
|
11090
|
+
status?: string | null;
|
|
11091
|
+
outcome?: string | null;
|
|
11092
|
+
lastCalled?: any | null;
|
|
11093
|
+
notes?: string | null;
|
|
11094
|
+
businessSize?: string | null;
|
|
11095
|
+
businessRevenue?: string | null;
|
|
11096
|
+
businessEmployees?: number | null;
|
|
11097
|
+
businessLocation?: string | null;
|
|
11098
|
+
businessIndustry?: string | null;
|
|
10924
11099
|
createdAt?: any | null;
|
|
10925
11100
|
updatedAt?: any | null;
|
|
11101
|
+
metadata?: any | null;
|
|
11102
|
+
productsOfInterest?: any | null;
|
|
11103
|
+
businessOpportunities?: any | null;
|
|
11104
|
+
currentSupplier?: string | null;
|
|
11105
|
+
campaignId?: number | null;
|
|
11106
|
+
campaignName?: string | null;
|
|
11107
|
+
segmentId?: number | null;
|
|
11108
|
+
segmentName?: string | null;
|
|
11109
|
+
contactId?: number | null;
|
|
11110
|
+
contactName?: string | null;
|
|
11111
|
+
userId?: number | null;
|
|
11112
|
+
userName?: string | null;
|
|
11113
|
+
accountId?: number | null;
|
|
10926
11114
|
} | null;
|
|
10927
|
-
|
|
10928
|
-
__typename?: '
|
|
11115
|
+
companyNote?: {
|
|
11116
|
+
__typename?: 'CompanyNoteObject';
|
|
10929
11117
|
id?: string | null;
|
|
10930
|
-
|
|
10931
|
-
|
|
10932
|
-
|
|
10933
|
-
|
|
10934
|
-
|
|
10935
|
-
|
|
10936
|
-
|
|
11118
|
+
accountId?: number | null;
|
|
11119
|
+
contactPersonId?: number | null;
|
|
11120
|
+
contactPersonName?: string | null;
|
|
11121
|
+
date?: any | null;
|
|
11122
|
+
noteType?: string | null;
|
|
11123
|
+
duration?: string | null;
|
|
11124
|
+
competitorsMentioned?: string | null;
|
|
11125
|
+
notes?: string | null;
|
|
11126
|
+
summary?: string | null;
|
|
11127
|
+
setReminder?: boolean | null;
|
|
11128
|
+
pinned?: boolean | null;
|
|
11129
|
+
followUpDate?: any | null;
|
|
11130
|
+
followUpAction?: string | null;
|
|
10937
11131
|
createdAt?: any | null;
|
|
10938
11132
|
updatedAt?: any | null;
|
|
10939
|
-
|
|
10940
|
-
|
|
10941
|
-
|
|
10942
|
-
|
|
10943
|
-
|
|
10944
|
-
|
|
10945
|
-
|
|
10946
|
-
|
|
10947
|
-
|
|
10948
|
-
lastActivity?: any | null;
|
|
10949
|
-
statusCounts?: any | null;
|
|
11133
|
+
companyId?: number | null;
|
|
11134
|
+
companyName?: string | null;
|
|
11135
|
+
userId?: number | null;
|
|
11136
|
+
userFirstName?: string | null;
|
|
11137
|
+
userLastName?: string | null;
|
|
11138
|
+
callCampaignLogId?: number | null;
|
|
11139
|
+
callCampaignName?: string | null;
|
|
11140
|
+
callCampaignId?: number | null;
|
|
11141
|
+
callCampaignLogOutcome?: string | null;
|
|
10950
11142
|
} | null;
|
|
11143
|
+
} | null> | null;
|
|
11144
|
+
stats?: {
|
|
11145
|
+
__typename?: 'TaskStatsObject';
|
|
11146
|
+
open?: number | null;
|
|
11147
|
+
overdue?: number | null;
|
|
11148
|
+
completed?: number | null;
|
|
11149
|
+
pending?: number | null;
|
|
11150
|
+
inProgress?: number | null;
|
|
11151
|
+
cancelled?: number | null;
|
|
10951
11152
|
} | null;
|
|
10952
|
-
|
|
10953
|
-
__typename?: 'CallCampaignLogObject';
|
|
10954
|
-
id?: string | null;
|
|
10955
|
-
status?: string | null;
|
|
10956
|
-
outcome?: string | null;
|
|
10957
|
-
lastCalled?: any | null;
|
|
10958
|
-
notes?: string | null;
|
|
10959
|
-
businessSize?: string | null;
|
|
10960
|
-
businessRevenue?: string | null;
|
|
10961
|
-
businessEmployees?: number | null;
|
|
10962
|
-
businessLocation?: string | null;
|
|
10963
|
-
businessIndustry?: string | null;
|
|
10964
|
-
createdAt?: any | null;
|
|
10965
|
-
updatedAt?: any | null;
|
|
10966
|
-
metadata?: any | null;
|
|
10967
|
-
productsOfInterest?: any | null;
|
|
10968
|
-
businessOpportunities?: any | null;
|
|
10969
|
-
currentSupplier?: string | null;
|
|
10970
|
-
campaignId?: number | null;
|
|
10971
|
-
campaignName?: string | null;
|
|
10972
|
-
segmentId?: number | null;
|
|
10973
|
-
segmentName?: string | null;
|
|
10974
|
-
contactId?: number | null;
|
|
10975
|
-
contactName?: string | null;
|
|
10976
|
-
userId?: number | null;
|
|
10977
|
-
userName?: string | null;
|
|
10978
|
-
accountId?: number | null;
|
|
10979
|
-
} | null;
|
|
10980
|
-
companyNote?: {
|
|
10981
|
-
__typename?: 'CompanyNoteObject';
|
|
10982
|
-
id?: string | null;
|
|
10983
|
-
accountId?: number | null;
|
|
10984
|
-
contactPersonId?: number | null;
|
|
10985
|
-
contactPersonName?: string | null;
|
|
10986
|
-
date?: any | null;
|
|
10987
|
-
noteType?: string | null;
|
|
10988
|
-
duration?: string | null;
|
|
10989
|
-
competitorsMentioned?: string | null;
|
|
10990
|
-
notes?: string | null;
|
|
10991
|
-
summary?: string | null;
|
|
10992
|
-
setReminder?: boolean | null;
|
|
10993
|
-
pinned?: boolean | null;
|
|
10994
|
-
followUpDate?: any | null;
|
|
10995
|
-
followUpAction?: string | null;
|
|
10996
|
-
createdAt?: any | null;
|
|
10997
|
-
updatedAt?: any | null;
|
|
10998
|
-
companyId?: number | null;
|
|
10999
|
-
companyName?: string | null;
|
|
11000
|
-
userId?: number | null;
|
|
11001
|
-
userFirstName?: string | null;
|
|
11002
|
-
userLastName?: string | null;
|
|
11003
|
-
callCampaignLogId?: number | null;
|
|
11004
|
-
callCampaignLogName?: string | null;
|
|
11005
|
-
} | null;
|
|
11006
|
-
} | null> | null;
|
|
11153
|
+
} | null;
|
|
11007
11154
|
};
|
|
11008
11155
|
export type UnreadNotificationsCountQueryVariables = Exact<{
|
|
11009
11156
|
[key: string]: never;
|