cf-service-sdk 0.0.67 → 0.0.68

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.
@@ -1015,6 +1015,8 @@ export type CombinedCampaignStepStatsObject = {
1015
1015
  export type CompanyFilterInput = {
1016
1016
  /** Filter by city(ies) - searches all company locations */
1017
1017
  city?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1018
+ /** Filter to include only companies that have ALL of these IDs (AND logic) */
1019
+ companyIdsAndFilter?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
1018
1020
  /** Filter by company name (case-insensitive partial match) */
1019
1021
  companyName?: InputMaybe<Scalars['String']['input']>;
1020
1022
  /** Filter by employee size(s) */
@@ -1266,6 +1268,10 @@ export type CompanyObject = {
1266
1268
  keywords?: Maybe<Scalars['String']['output']>;
1267
1269
  /** Most recent contact date across all contacts and company notes */
1268
1270
  lastContactedAt?: Maybe<Scalars['DateTime']['output']>;
1271
+ /** User who performed the last contact action for this company */
1272
+ lastContactedBy?: Maybe<UserType>;
1273
+ /** Information about the last contact action for this company */
1274
+ lastContactedVia?: Maybe<LastContactedViaType>;
1269
1275
  linkedinUrl?: Maybe<Scalars['String']['output']>;
1270
1276
  location?: Maybe<Scalars['String']['output']>;
1271
1277
  /** List of all company locations */
@@ -5310,6 +5316,27 @@ export type CreateCompanyMutation = {
5310
5316
  updatedAt?: any | null;
5311
5317
  fullAddress?: string | null;
5312
5318
  } | null;
5319
+ lastContactedBy?: {
5320
+ __typename?: 'UserType';
5321
+ id?: string | null;
5322
+ email?: string | null;
5323
+ firstName?: string | null;
5324
+ lastName?: string | null;
5325
+ picture?: string | null;
5326
+ } | null;
5327
+ lastContactedVia?: {
5328
+ __typename?: 'LastContactedViaType';
5329
+ actionType?: string | null;
5330
+ actionId?: string | null;
5331
+ campaignName?: string | null;
5332
+ campaignId?: string | null;
5333
+ callCampaignId?: string | null;
5334
+ combinedCampaignId?: string | null;
5335
+ stepType?: string | null;
5336
+ stepOrder?: number | null;
5337
+ noteType?: string | null;
5338
+ noteId?: string | null;
5339
+ } | null;
5313
5340
  } | null;
5314
5341
  } | null;
5315
5342
  };
@@ -9339,6 +9366,27 @@ export type UpdateCompanyMutation = {
9339
9366
  updatedAt?: any | null;
9340
9367
  fullAddress?: string | null;
9341
9368
  } | null;
9369
+ lastContactedBy?: {
9370
+ __typename?: 'UserType';
9371
+ id?: string | null;
9372
+ email?: string | null;
9373
+ firstName?: string | null;
9374
+ lastName?: string | null;
9375
+ picture?: string | null;
9376
+ } | null;
9377
+ lastContactedVia?: {
9378
+ __typename?: 'LastContactedViaType';
9379
+ actionType?: string | null;
9380
+ actionId?: string | null;
9381
+ campaignName?: string | null;
9382
+ campaignId?: string | null;
9383
+ callCampaignId?: string | null;
9384
+ combinedCampaignId?: string | null;
9385
+ stepType?: string | null;
9386
+ stepOrder?: number | null;
9387
+ noteType?: string | null;
9388
+ noteId?: string | null;
9389
+ } | null;
9342
9390
  } | null;
9343
9391
  } | null;
9344
9392
  };
@@ -12587,6 +12635,27 @@ export type CompaniesQuery = {
12587
12635
  updatedAt?: any | null;
12588
12636
  fullAddress?: string | null;
12589
12637
  } | null;
12638
+ lastContactedBy?: {
12639
+ __typename?: 'UserType';
12640
+ id?: string | null;
12641
+ email?: string | null;
12642
+ firstName?: string | null;
12643
+ lastName?: string | null;
12644
+ picture?: string | null;
12645
+ } | null;
12646
+ lastContactedVia?: {
12647
+ __typename?: 'LastContactedViaType';
12648
+ actionType?: string | null;
12649
+ actionId?: string | null;
12650
+ campaignName?: string | null;
12651
+ campaignId?: string | null;
12652
+ callCampaignId?: string | null;
12653
+ combinedCampaignId?: string | null;
12654
+ stepType?: string | null;
12655
+ stepOrder?: number | null;
12656
+ noteType?: string | null;
12657
+ noteId?: string | null;
12658
+ } | null;
12590
12659
  } | null> | null;
12591
12660
  pagination?: {
12592
12661
  __typename?: 'CompanyPaginationInfo';
@@ -13359,6 +13428,27 @@ export type CompanyQuery = {
13359
13428
  updatedAt?: any | null;
13360
13429
  fullAddress?: string | null;
13361
13430
  } | null;
13431
+ lastContactedBy?: {
13432
+ __typename?: 'UserType';
13433
+ id?: string | null;
13434
+ email?: string | null;
13435
+ firstName?: string | null;
13436
+ lastName?: string | null;
13437
+ picture?: string | null;
13438
+ } | null;
13439
+ lastContactedVia?: {
13440
+ __typename?: 'LastContactedViaType';
13441
+ actionType?: string | null;
13442
+ actionId?: string | null;
13443
+ campaignName?: string | null;
13444
+ campaignId?: string | null;
13445
+ callCampaignId?: string | null;
13446
+ combinedCampaignId?: string | null;
13447
+ stepType?: string | null;
13448
+ stepOrder?: number | null;
13449
+ noteType?: string | null;
13450
+ noteId?: string | null;
13451
+ } | null;
13362
13452
  } | null;
13363
13453
  };
13364
13454
  export type CompanyNoteQueryVariables = Exact<{
@@ -15302,6 +15392,27 @@ export type RecentHistoryQuery = {
15302
15392
  updatedAt?: any | null;
15303
15393
  fullAddress?: string | null;
15304
15394
  } | null;
15395
+ lastContactedBy?: {
15396
+ __typename?: 'UserType';
15397
+ id?: string | null;
15398
+ email?: string | null;
15399
+ firstName?: string | null;
15400
+ lastName?: string | null;
15401
+ picture?: string | null;
15402
+ } | null;
15403
+ lastContactedVia?: {
15404
+ __typename?: 'LastContactedViaType';
15405
+ actionType?: string | null;
15406
+ actionId?: string | null;
15407
+ campaignName?: string | null;
15408
+ campaignId?: string | null;
15409
+ callCampaignId?: string | null;
15410
+ combinedCampaignId?: string | null;
15411
+ stepType?: string | null;
15412
+ stepOrder?: number | null;
15413
+ noteType?: string | null;
15414
+ noteId?: string | null;
15415
+ } | null;
15305
15416
  } | null;
15306
15417
  } | null> | null;
15307
15418
  pagination?: {
@@ -2390,6 +2390,25 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
2390
2390
  isProspect
2391
2391
  purchaseMetalConfidence
2392
2392
  lastContactedAt
2393
+ lastContactedBy {
2394
+ id
2395
+ email
2396
+ firstName
2397
+ lastName
2398
+ picture
2399
+ }
2400
+ lastContactedVia {
2401
+ actionType
2402
+ actionId
2403
+ campaignName
2404
+ campaignId
2405
+ callCampaignId
2406
+ combinedCampaignId
2407
+ stepType
2408
+ stepOrder
2409
+ noteType
2410
+ noteId
2411
+ }
2393
2412
  status
2394
2413
  }
2395
2414
  }
@@ -7280,6 +7299,25 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
7280
7299
  isProspect
7281
7300
  purchaseMetalConfidence
7282
7301
  lastContactedAt
7302
+ lastContactedBy {
7303
+ id
7304
+ email
7305
+ firstName
7306
+ lastName
7307
+ picture
7308
+ }
7309
+ lastContactedVia {
7310
+ actionType
7311
+ actionId
7312
+ campaignName
7313
+ campaignId
7314
+ callCampaignId
7315
+ combinedCampaignId
7316
+ stepType
7317
+ stepOrder
7318
+ noteType
7319
+ noteId
7320
+ }
7283
7321
  status
7284
7322
  }
7285
7323
  }
@@ -10964,6 +11002,25 @@ exports.CompaniesDocument = (0, client_1.gql) `
10964
11002
  isProspect
10965
11003
  purchaseMetalConfidence
10966
11004
  lastContactedAt
11005
+ lastContactedBy {
11006
+ id
11007
+ email
11008
+ firstName
11009
+ lastName
11010
+ picture
11011
+ }
11012
+ lastContactedVia {
11013
+ actionType
11014
+ actionId
11015
+ campaignName
11016
+ campaignId
11017
+ callCampaignId
11018
+ combinedCampaignId
11019
+ stepType
11020
+ stepOrder
11021
+ noteType
11022
+ noteId
11023
+ }
10967
11024
  status
10968
11025
  }
10969
11026
  pagination {
@@ -11701,6 +11758,25 @@ exports.CompanyDocument = (0, client_1.gql) `
11701
11758
  isProspect
11702
11759
  purchaseMetalConfidence
11703
11760
  lastContactedAt
11761
+ lastContactedBy {
11762
+ id
11763
+ email
11764
+ firstName
11765
+ lastName
11766
+ picture
11767
+ }
11768
+ lastContactedVia {
11769
+ actionType
11770
+ actionId
11771
+ campaignName
11772
+ campaignId
11773
+ callCampaignId
11774
+ combinedCampaignId
11775
+ stepType
11776
+ stepOrder
11777
+ noteType
11778
+ noteId
11779
+ }
11704
11780
  status
11705
11781
  }
11706
11782
  }
@@ -14032,6 +14108,25 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
14032
14108
  isProspect
14033
14109
  purchaseMetalConfidence
14034
14110
  lastContactedAt
14111
+ lastContactedBy {
14112
+ id
14113
+ email
14114
+ firstName
14115
+ lastName
14116
+ picture
14117
+ }
14118
+ lastContactedVia {
14119
+ actionType
14120
+ actionId
14121
+ campaignName
14122
+ campaignId
14123
+ callCampaignId
14124
+ combinedCampaignId
14125
+ stepType
14126
+ stepOrder
14127
+ noteType
14128
+ noteId
14129
+ }
14035
14130
  status
14036
14131
  }
14037
14132
  contactName
package/dist/mutations.js CHANGED
@@ -2370,6 +2370,25 @@ mutation CreateCompany($input: CompanyInput) {
2370
2370
  isProspect
2371
2371
  purchaseMetalConfidence
2372
2372
  lastContactedAt
2373
+ lastContactedBy {
2374
+ id
2375
+ email
2376
+ firstName
2377
+ lastName
2378
+ picture
2379
+ }
2380
+ lastContactedVia {
2381
+ actionType
2382
+ actionId
2383
+ campaignName
2384
+ campaignId
2385
+ callCampaignId
2386
+ combinedCampaignId
2387
+ stepType
2388
+ stepOrder
2389
+ noteType
2390
+ noteId
2391
+ }
2373
2392
  status
2374
2393
  }
2375
2394
  }
@@ -3068,6 +3087,25 @@ mutation UpdateCompany($input: CompanyInput) {
3068
3087
  isProspect
3069
3088
  purchaseMetalConfidence
3070
3089
  lastContactedAt
3090
+ lastContactedBy {
3091
+ id
3092
+ email
3093
+ firstName
3094
+ lastName
3095
+ picture
3096
+ }
3097
+ lastContactedVia {
3098
+ actionType
3099
+ actionId
3100
+ campaignName
3101
+ campaignId
3102
+ callCampaignId
3103
+ combinedCampaignId
3104
+ stepType
3105
+ stepOrder
3106
+ noteType
3107
+ noteId
3108
+ }
3071
3109
  status
3072
3110
  }
3073
3111
  }
package/dist/queries.js CHANGED
@@ -1170,6 +1170,25 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
1170
1170
  isProspect
1171
1171
  purchaseMetalConfidence
1172
1172
  lastContactedAt
1173
+ lastContactedBy {
1174
+ id
1175
+ email
1176
+ firstName
1177
+ lastName
1178
+ picture
1179
+ }
1180
+ lastContactedVia {
1181
+ actionType
1182
+ actionId
1183
+ campaignName
1184
+ campaignId
1185
+ callCampaignId
1186
+ combinedCampaignId
1187
+ stepType
1188
+ stepOrder
1189
+ noteType
1190
+ noteId
1191
+ }
1173
1192
  status
1174
1193
  }
1175
1194
  contactName
@@ -4041,6 +4060,25 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
4041
4060
  isProspect
4042
4061
  purchaseMetalConfidence
4043
4062
  lastContactedAt
4063
+ lastContactedBy {
4064
+ id
4065
+ email
4066
+ firstName
4067
+ lastName
4068
+ picture
4069
+ }
4070
+ lastContactedVia {
4071
+ actionType
4072
+ actionId
4073
+ campaignName
4074
+ campaignId
4075
+ callCampaignId
4076
+ combinedCampaignId
4077
+ stepType
4078
+ stepOrder
4079
+ noteType
4080
+ noteId
4081
+ }
4044
4082
  status
4045
4083
  }
4046
4084
  pagination {
@@ -4905,6 +4943,25 @@ query Company($id: String) {
4905
4943
  isProspect
4906
4944
  purchaseMetalConfidence
4907
4945
  lastContactedAt
4946
+ lastContactedBy {
4947
+ id
4948
+ email
4949
+ firstName
4950
+ lastName
4951
+ picture
4952
+ }
4953
+ lastContactedVia {
4954
+ actionType
4955
+ actionId
4956
+ campaignName
4957
+ campaignId
4958
+ callCampaignId
4959
+ combinedCampaignId
4960
+ stepType
4961
+ stepOrder
4962
+ noteType
4963
+ noteId
4964
+ }
4908
4965
  status
4909
4966
  }
4910
4967
  }`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.0.67",
3
+ "version": "0.0.68",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",