cf-service-sdk 0.0.41 → 0.0.43
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 +16 -0
- package/dist/generated/graphql.js +15 -0
- package/dist/mutations.js +5 -0
- package/dist/queries.js +10 -0
- package/package.json +1 -1
|
@@ -1058,6 +1058,7 @@ export type ContactObject = {
|
|
|
1058
1058
|
inSegments?: Maybe<Array<Maybe<SegmentIdObject>>>;
|
|
1059
1059
|
isCustomer?: Maybe<Scalars['Boolean']['output']>;
|
|
1060
1060
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
1061
|
+
isProspect?: Maybe<Scalars['Boolean']['output']>;
|
|
1061
1062
|
lastContactedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1062
1063
|
lastName?: Maybe<Scalars['String']['output']>;
|
|
1063
1064
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -3543,6 +3544,7 @@ export type CreateCompanyMutation = {
|
|
|
3543
3544
|
ownedByUser?: boolean | null;
|
|
3544
3545
|
companyName?: string | null;
|
|
3545
3546
|
companyId?: string | null;
|
|
3547
|
+
isProspect?: boolean | null;
|
|
3546
3548
|
contactLog?: Array<{
|
|
3547
3549
|
__typename?: 'ContactLogObject';
|
|
3548
3550
|
id?: string | null;
|
|
@@ -4473,6 +4475,7 @@ export type CreateContactMutation = {
|
|
|
4473
4475
|
ownedByUser?: boolean | null;
|
|
4474
4476
|
companyName?: string | null;
|
|
4475
4477
|
companyId?: string | null;
|
|
4478
|
+
isProspect?: boolean | null;
|
|
4476
4479
|
contactLog?: Array<{
|
|
4477
4480
|
__typename?: 'ContactLogObject';
|
|
4478
4481
|
id?: string | null;
|
|
@@ -5569,6 +5572,7 @@ export type SendEmailToContactMutation = {
|
|
|
5569
5572
|
ownedByUser?: boolean | null;
|
|
5570
5573
|
companyName?: string | null;
|
|
5571
5574
|
companyId?: string | null;
|
|
5575
|
+
isProspect?: boolean | null;
|
|
5572
5576
|
contactLog?: Array<{
|
|
5573
5577
|
__typename?: 'ContactLogObject';
|
|
5574
5578
|
id?: string | null;
|
|
@@ -6118,6 +6122,7 @@ export type UpdateCompanyMutation = {
|
|
|
6118
6122
|
ownedByUser?: boolean | null;
|
|
6119
6123
|
companyName?: string | null;
|
|
6120
6124
|
companyId?: string | null;
|
|
6125
|
+
isProspect?: boolean | null;
|
|
6121
6126
|
contactLog?: Array<{
|
|
6122
6127
|
__typename?: 'ContactLogObject';
|
|
6123
6128
|
id?: string | null;
|
|
@@ -7048,6 +7053,7 @@ export type UpdateContactMutation = {
|
|
|
7048
7053
|
ownedByUser?: boolean | null;
|
|
7049
7054
|
companyName?: string | null;
|
|
7050
7055
|
companyId?: string | null;
|
|
7056
|
+
isProspect?: boolean | null;
|
|
7051
7057
|
contactLog?: Array<{
|
|
7052
7058
|
__typename?: 'ContactLogObject';
|
|
7053
7059
|
id?: string | null;
|
|
@@ -8028,6 +8034,7 @@ export type CampaignLogsQuery = {
|
|
|
8028
8034
|
ownedByUser?: boolean | null;
|
|
8029
8035
|
companyName?: string | null;
|
|
8030
8036
|
companyId?: string | null;
|
|
8037
|
+
isProspect?: boolean | null;
|
|
8031
8038
|
contactLog?: Array<{
|
|
8032
8039
|
__typename?: 'ContactLogObject';
|
|
8033
8040
|
id?: string | null;
|
|
@@ -8177,6 +8184,7 @@ export type CampaignLogsQuery = {
|
|
|
8177
8184
|
ownedByUser?: boolean | null;
|
|
8178
8185
|
companyName?: string | null;
|
|
8179
8186
|
companyId?: string | null;
|
|
8187
|
+
isProspect?: boolean | null;
|
|
8180
8188
|
contactLog?: Array<{
|
|
8181
8189
|
__typename?: 'ContactLogObject';
|
|
8182
8190
|
id?: string | null;
|
|
@@ -8426,6 +8434,7 @@ export type CompaniesQuery = {
|
|
|
8426
8434
|
ownedByUser?: boolean | null;
|
|
8427
8435
|
companyName?: string | null;
|
|
8428
8436
|
companyId?: string | null;
|
|
8437
|
+
isProspect?: boolean | null;
|
|
8429
8438
|
contactLog?: Array<{
|
|
8430
8439
|
__typename?: 'ContactLogObject';
|
|
8431
8440
|
id?: string | null;
|
|
@@ -9002,6 +9011,7 @@ export type CompanyQuery = {
|
|
|
9002
9011
|
ownedByUser?: boolean | null;
|
|
9003
9012
|
companyName?: string | null;
|
|
9004
9013
|
companyId?: string | null;
|
|
9014
|
+
isProspect?: boolean | null;
|
|
9005
9015
|
contactLog?: Array<{
|
|
9006
9016
|
__typename?: 'ContactLogObject';
|
|
9007
9017
|
id?: string | null;
|
|
@@ -10247,6 +10257,7 @@ export type ContactQuery = {
|
|
|
10247
10257
|
ownedByUser?: boolean | null;
|
|
10248
10258
|
companyName?: string | null;
|
|
10249
10259
|
companyId?: string | null;
|
|
10260
|
+
isProspect?: boolean | null;
|
|
10250
10261
|
contactLog?: Array<{
|
|
10251
10262
|
__typename?: 'ContactLogObject';
|
|
10252
10263
|
id?: string | null;
|
|
@@ -10298,6 +10309,7 @@ export type ContactsQuery = {
|
|
|
10298
10309
|
ownedByUser?: boolean | null;
|
|
10299
10310
|
companyName?: string | null;
|
|
10300
10311
|
companyId?: string | null;
|
|
10312
|
+
isProspect?: boolean | null;
|
|
10301
10313
|
contactLog?: Array<{
|
|
10302
10314
|
__typename?: 'ContactLogObject';
|
|
10303
10315
|
id?: string | null;
|
|
@@ -10352,6 +10364,7 @@ export type ContactsInSegmentQuery = {
|
|
|
10352
10364
|
ownedByUser?: boolean | null;
|
|
10353
10365
|
companyName?: string | null;
|
|
10354
10366
|
companyId?: string | null;
|
|
10367
|
+
isProspect?: boolean | null;
|
|
10355
10368
|
contactLog?: Array<{
|
|
10356
10369
|
__typename?: 'ContactLogObject';
|
|
10357
10370
|
id?: string | null;
|
|
@@ -10727,6 +10740,7 @@ export type RecentHistoryQuery = {
|
|
|
10727
10740
|
ownedByUser?: boolean | null;
|
|
10728
10741
|
companyName?: string | null;
|
|
10729
10742
|
companyId?: string | null;
|
|
10743
|
+
isProspect?: boolean | null;
|
|
10730
10744
|
contactLog?: Array<{
|
|
10731
10745
|
__typename?: 'ContactLogObject';
|
|
10732
10746
|
id?: string | null;
|
|
@@ -10846,6 +10860,7 @@ export type RecentHistoryQuery = {
|
|
|
10846
10860
|
ownedByUser?: boolean | null;
|
|
10847
10861
|
companyName?: string | null;
|
|
10848
10862
|
companyId?: string | null;
|
|
10863
|
+
isProspect?: boolean | null;
|
|
10849
10864
|
contactLog?: Array<{
|
|
10850
10865
|
__typename?: 'ContactLogObject';
|
|
10851
10866
|
id?: string | null;
|
|
@@ -11338,6 +11353,7 @@ export type SearchContactsQuery = {
|
|
|
11338
11353
|
ownedByUser?: boolean | null;
|
|
11339
11354
|
companyName?: string | null;
|
|
11340
11355
|
companyId?: string | null;
|
|
11356
|
+
isProspect?: boolean | null;
|
|
11341
11357
|
contactLog?: Array<{
|
|
11342
11358
|
__typename?: 'ContactLogObject';
|
|
11343
11359
|
id?: string | null;
|
|
@@ -1491,6 +1491,7 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
|
|
|
1491
1491
|
totalReplied
|
|
1492
1492
|
totalBounced
|
|
1493
1493
|
}
|
|
1494
|
+
isProspect
|
|
1494
1495
|
}
|
|
1495
1496
|
productMetalScores {
|
|
1496
1497
|
id
|
|
@@ -2394,6 +2395,7 @@ exports.CreateContactDocument = (0, client_1.gql) `
|
|
|
2394
2395
|
totalReplied
|
|
2395
2396
|
totalBounced
|
|
2396
2397
|
}
|
|
2398
|
+
isProspect
|
|
2397
2399
|
}
|
|
2398
2400
|
}
|
|
2399
2401
|
}
|
|
@@ -4046,6 +4048,7 @@ exports.SendEmailToContactDocument = (0, client_1.gql) `
|
|
|
4046
4048
|
totalReplied
|
|
4047
4049
|
totalBounced
|
|
4048
4050
|
}
|
|
4051
|
+
isProspect
|
|
4049
4052
|
}
|
|
4050
4053
|
sentAt
|
|
4051
4054
|
openedAt
|
|
@@ -4764,6 +4767,7 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
|
|
|
4764
4767
|
totalReplied
|
|
4765
4768
|
totalBounced
|
|
4766
4769
|
}
|
|
4770
|
+
isProspect
|
|
4767
4771
|
}
|
|
4768
4772
|
productMetalScores {
|
|
4769
4773
|
id
|
|
@@ -5667,6 +5671,7 @@ exports.UpdateContactDocument = (0, client_1.gql) `
|
|
|
5667
5671
|
totalReplied
|
|
5668
5672
|
totalBounced
|
|
5669
5673
|
}
|
|
5674
|
+
isProspect
|
|
5670
5675
|
}
|
|
5671
5676
|
}
|
|
5672
5677
|
}
|
|
@@ -6974,6 +6979,7 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
|
|
|
6974
6979
|
totalReplied
|
|
6975
6980
|
totalBounced
|
|
6976
6981
|
}
|
|
6982
|
+
isProspect
|
|
6977
6983
|
}
|
|
6978
6984
|
campaignStats {
|
|
6979
6985
|
totalSent
|
|
@@ -7097,6 +7103,7 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
|
|
|
7097
7103
|
totalReplied
|
|
7098
7104
|
totalBounced
|
|
7099
7105
|
}
|
|
7106
|
+
isProspect
|
|
7100
7107
|
}
|
|
7101
7108
|
sentAt
|
|
7102
7109
|
openedAt
|
|
@@ -7414,6 +7421,7 @@ exports.CompaniesDocument = (0, client_1.gql) `
|
|
|
7414
7421
|
totalReplied
|
|
7415
7422
|
totalBounced
|
|
7416
7423
|
}
|
|
7424
|
+
isProspect
|
|
7417
7425
|
}
|
|
7418
7426
|
productMetalScores {
|
|
7419
7427
|
id
|
|
@@ -7972,6 +7980,7 @@ exports.CompanyDocument = (0, client_1.gql) `
|
|
|
7972
7980
|
totalReplied
|
|
7973
7981
|
totalBounced
|
|
7974
7982
|
}
|
|
7983
|
+
isProspect
|
|
7975
7984
|
}
|
|
7976
7985
|
productMetalScores {
|
|
7977
7986
|
id
|
|
@@ -9210,6 +9219,7 @@ exports.ContactDocument = (0, client_1.gql) `
|
|
|
9210
9219
|
totalReplied
|
|
9211
9220
|
totalBounced
|
|
9212
9221
|
}
|
|
9222
|
+
isProspect
|
|
9213
9223
|
}
|
|
9214
9224
|
}
|
|
9215
9225
|
`;
|
|
@@ -9283,6 +9293,7 @@ exports.ContactsDocument = (0, client_1.gql) `
|
|
|
9283
9293
|
totalReplied
|
|
9284
9294
|
totalBounced
|
|
9285
9295
|
}
|
|
9296
|
+
isProspect
|
|
9286
9297
|
}
|
|
9287
9298
|
}
|
|
9288
9299
|
`;
|
|
@@ -9356,6 +9367,7 @@ exports.ContactsInSegmentDocument = (0, client_1.gql) `
|
|
|
9356
9367
|
totalReplied
|
|
9357
9368
|
totalBounced
|
|
9358
9369
|
}
|
|
9370
|
+
isProspect
|
|
9359
9371
|
}
|
|
9360
9372
|
pagination {
|
|
9361
9373
|
currentPage
|
|
@@ -10115,6 +10127,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
|
|
|
10115
10127
|
totalReplied
|
|
10116
10128
|
totalBounced
|
|
10117
10129
|
}
|
|
10130
|
+
isProspect
|
|
10118
10131
|
}
|
|
10119
10132
|
company {
|
|
10120
10133
|
id
|
|
@@ -10219,6 +10232,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
|
|
|
10219
10232
|
totalReplied
|
|
10220
10233
|
totalBounced
|
|
10221
10234
|
}
|
|
10235
|
+
isProspect
|
|
10222
10236
|
}
|
|
10223
10237
|
productMetalScores {
|
|
10224
10238
|
id
|
|
@@ -10742,6 +10756,7 @@ exports.SearchContactsDocument = (0, client_1.gql) `
|
|
|
10742
10756
|
totalReplied
|
|
10743
10757
|
totalBounced
|
|
10744
10758
|
}
|
|
10759
|
+
isProspect
|
|
10745
10760
|
}
|
|
10746
10761
|
pagination {
|
|
10747
10762
|
currentPage
|
package/dist/mutations.js
CHANGED
|
@@ -232,6 +232,7 @@ mutation CreateContact($input: ContactInput) {
|
|
|
232
232
|
totalReplied
|
|
233
233
|
totalBounced
|
|
234
234
|
}
|
|
235
|
+
isProspect
|
|
235
236
|
}
|
|
236
237
|
}
|
|
237
238
|
}`;
|
|
@@ -278,6 +279,7 @@ mutation UpdateContact($input: ContactInput) {
|
|
|
278
279
|
totalReplied
|
|
279
280
|
totalBounced
|
|
280
281
|
}
|
|
282
|
+
isProspect
|
|
281
283
|
}
|
|
282
284
|
}
|
|
283
285
|
}`;
|
|
@@ -393,6 +395,7 @@ mutation CreateCompany($input: CompanyInput) {
|
|
|
393
395
|
totalReplied
|
|
394
396
|
totalBounced
|
|
395
397
|
}
|
|
398
|
+
isProspect
|
|
396
399
|
}
|
|
397
400
|
productMetalScores {
|
|
398
401
|
id
|
|
@@ -1015,6 +1018,7 @@ mutation UpdateCompany($input: CompanyInput) {
|
|
|
1015
1018
|
totalReplied
|
|
1016
1019
|
totalBounced
|
|
1017
1020
|
}
|
|
1021
|
+
isProspect
|
|
1018
1022
|
}
|
|
1019
1023
|
productMetalScores {
|
|
1020
1024
|
id
|
|
@@ -2378,6 +2382,7 @@ mutation SendEmailToContact($campaignId: ID, $contactId: ID!, $segmentId: ID, $s
|
|
|
2378
2382
|
totalReplied
|
|
2379
2383
|
totalBounced
|
|
2380
2384
|
}
|
|
2385
|
+
isProspect
|
|
2381
2386
|
}
|
|
2382
2387
|
sentAt
|
|
2383
2388
|
openedAt
|
package/dist/queries.js
CHANGED
|
@@ -76,6 +76,7 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
|
|
|
76
76
|
totalReplied
|
|
77
77
|
totalBounced
|
|
78
78
|
}
|
|
79
|
+
isProspect
|
|
79
80
|
}
|
|
80
81
|
company {
|
|
81
82
|
id
|
|
@@ -180,6 +181,7 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
|
|
|
180
181
|
totalReplied
|
|
181
182
|
totalBounced
|
|
182
183
|
}
|
|
184
|
+
isProspect
|
|
183
185
|
}
|
|
184
186
|
productMetalScores {
|
|
185
187
|
id
|
|
@@ -2204,6 +2206,7 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
|
|
|
2204
2206
|
totalReplied
|
|
2205
2207
|
totalBounced
|
|
2206
2208
|
}
|
|
2209
|
+
isProspect
|
|
2207
2210
|
}
|
|
2208
2211
|
campaignStats {
|
|
2209
2212
|
totalSent
|
|
@@ -2327,6 +2330,7 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
|
|
|
2327
2330
|
totalReplied
|
|
2328
2331
|
totalBounced
|
|
2329
2332
|
}
|
|
2333
|
+
isProspect
|
|
2330
2334
|
}
|
|
2331
2335
|
sentAt
|
|
2332
2336
|
openedAt
|
|
@@ -2466,6 +2470,7 @@ query ContactsInSegment($segmentId: ID!, $pagination: PaginationInput) {
|
|
|
2466
2470
|
totalReplied
|
|
2467
2471
|
totalBounced
|
|
2468
2472
|
}
|
|
2473
|
+
isProspect
|
|
2469
2474
|
}
|
|
2470
2475
|
pagination {
|
|
2471
2476
|
currentPage
|
|
@@ -2583,6 +2588,7 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
|
|
|
2583
2588
|
totalReplied
|
|
2584
2589
|
totalBounced
|
|
2585
2590
|
}
|
|
2591
|
+
isProspect
|
|
2586
2592
|
}
|
|
2587
2593
|
productMetalScores {
|
|
2588
2594
|
id
|
|
@@ -3047,6 +3053,7 @@ query Contacts {
|
|
|
3047
3053
|
totalReplied
|
|
3048
3054
|
totalBounced
|
|
3049
3055
|
}
|
|
3056
|
+
isProspect
|
|
3050
3057
|
}
|
|
3051
3058
|
}`;
|
|
3052
3059
|
exports.SEARCH_CONTACTS = (0, client_1.gql) `
|
|
@@ -3092,6 +3099,7 @@ query SearchContacts($filters: ContactFilterInput, $pagination: PaginationInput,
|
|
|
3092
3099
|
totalReplied
|
|
3093
3100
|
totalBounced
|
|
3094
3101
|
}
|
|
3102
|
+
isProspect
|
|
3095
3103
|
}
|
|
3096
3104
|
pagination {
|
|
3097
3105
|
currentPage
|
|
@@ -3208,6 +3216,7 @@ query Company($id: String) {
|
|
|
3208
3216
|
totalReplied
|
|
3209
3217
|
totalBounced
|
|
3210
3218
|
}
|
|
3219
|
+
isProspect
|
|
3211
3220
|
}
|
|
3212
3221
|
productMetalScores {
|
|
3213
3222
|
id
|
|
@@ -3765,6 +3774,7 @@ query Contact($id: String) {
|
|
|
3765
3774
|
totalReplied
|
|
3766
3775
|
totalBounced
|
|
3767
3776
|
}
|
|
3777
|
+
isProspect
|
|
3768
3778
|
}
|
|
3769
3779
|
}`;
|
|
3770
3780
|
exports.INDUSTRY_TYPES = (0, client_1.gql) `
|