cf-service-sdk 0.1.5 → 0.1.7
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 +1029 -1
- package/dist/generated/graphql.js +694 -5
- package/dist/mutations.d.ts +10 -0
- package/dist/mutations.js +202 -2
- package/dist/queries.d.ts +4 -0
- package/dist/queries.js +103 -1
- package/dist/sdk.d.ts +15 -1
- package/dist/sdk.js +83 -0
- package/package.json +1 -1
|
@@ -143,6 +143,13 @@ export type AccountType = {
|
|
|
143
143
|
name?: Maybe<Scalars['String']['output']>;
|
|
144
144
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
145
145
|
};
|
|
146
|
+
/** Add a contact to an existing draft campaign. */
|
|
147
|
+
export type AddContactToAutomatedProspecting = {
|
|
148
|
+
__typename?: 'AddContactToAutomatedProspecting';
|
|
149
|
+
contact?: Maybe<AutomatedProspectingContactObject>;
|
|
150
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
151
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
152
|
+
};
|
|
146
153
|
export type AddContactToSupplierList = {
|
|
147
154
|
__typename?: 'AddContactToSupplierList';
|
|
148
155
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -234,6 +241,73 @@ export type AuditLogItemType = {
|
|
|
234
241
|
title: Scalars['String']['output'];
|
|
235
242
|
type: Scalars['String']['output'];
|
|
236
243
|
};
|
|
244
|
+
export type AutomatedProspectingCampaignInput = {
|
|
245
|
+
additionalNotes?: InputMaybe<Scalars['String']['input']>;
|
|
246
|
+
buyerDescription: Scalars['String']['input'];
|
|
247
|
+
emailTone?: InputMaybe<Scalars['String']['input']>;
|
|
248
|
+
emailsPerBatch: Scalars['Int']['input'];
|
|
249
|
+
frequency: Scalars['String']['input'];
|
|
250
|
+
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
251
|
+
notificationTime?: InputMaybe<Scalars['String']['input']>;
|
|
252
|
+
notificationTimezone?: InputMaybe<Scalars['String']['input']>;
|
|
253
|
+
targetStates: Scalars['GenericScalar']['input'];
|
|
254
|
+
};
|
|
255
|
+
export type AutomatedProspectingCampaignObject = {
|
|
256
|
+
__typename?: 'AutomatedProspectingCampaignObject';
|
|
257
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
258
|
+
attachments?: Maybe<Scalars['GenericScalar']['output']>;
|
|
259
|
+
configId?: Maybe<Scalars['ID']['output']>;
|
|
260
|
+
contactCount?: Maybe<Scalars['Int']['output']>;
|
|
261
|
+
contacts?: Maybe<Array<Maybe<AutomatedProspectingContactObject>>>;
|
|
262
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
263
|
+
emailBody?: Maybe<Scalars['String']['output']>;
|
|
264
|
+
emailBodyPreview?: Maybe<Scalars['String']['output']>;
|
|
265
|
+
emailSubject?: Maybe<Scalars['String']['output']>;
|
|
266
|
+
emailSubjectPreview?: Maybe<Scalars['String']['output']>;
|
|
267
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
268
|
+
notificationSentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
269
|
+
replyCount?: Maybe<Scalars['Int']['output']>;
|
|
270
|
+
scheduledFor?: Maybe<Scalars['DateTime']['output']>;
|
|
271
|
+
sentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
272
|
+
sentCount?: Maybe<Scalars['Int']['output']>;
|
|
273
|
+
skippedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
274
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
275
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
276
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
277
|
+
};
|
|
278
|
+
export type AutomatedProspectingConfigObject = {
|
|
279
|
+
__typename?: 'AutomatedProspectingConfigObject';
|
|
280
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
281
|
+
additionalNotes?: Maybe<Scalars['String']['output']>;
|
|
282
|
+
buyerDescription?: Maybe<Scalars['String']['output']>;
|
|
283
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
284
|
+
emailTone?: Maybe<Scalars['String']['output']>;
|
|
285
|
+
emailsPerBatch?: Maybe<Scalars['Int']['output']>;
|
|
286
|
+
frequency?: Maybe<Scalars['String']['output']>;
|
|
287
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
288
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
289
|
+
llmParsedIndustries?: Maybe<Scalars['GenericScalar']['output']>;
|
|
290
|
+
llmParsedStates?: Maybe<Scalars['GenericScalar']['output']>;
|
|
291
|
+
nextScheduledAt?: Maybe<Scalars['DateTime']['output']>;
|
|
292
|
+
notificationTime?: Maybe<Scalars['String']['output']>;
|
|
293
|
+
notificationTimezone?: Maybe<Scalars['String']['output']>;
|
|
294
|
+
targetStates?: Maybe<Scalars['GenericScalar']['output']>;
|
|
295
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
296
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
297
|
+
};
|
|
298
|
+
export type AutomatedProspectingContactObject = {
|
|
299
|
+
__typename?: 'AutomatedProspectingContactObject';
|
|
300
|
+
contactCompanyName?: Maybe<Scalars['String']['output']>;
|
|
301
|
+
contactEmail?: Maybe<Scalars['String']['output']>;
|
|
302
|
+
contactFirstName?: Maybe<Scalars['String']['output']>;
|
|
303
|
+
contactId?: Maybe<Scalars['ID']['output']>;
|
|
304
|
+
contactLastName?: Maybe<Scalars['String']['output']>;
|
|
305
|
+
contactLogId?: Maybe<Scalars['ID']['output']>;
|
|
306
|
+
contactTitle?: Maybe<Scalars['String']['output']>;
|
|
307
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
308
|
+
hasReplied?: Maybe<Scalars['Boolean']['output']>;
|
|
309
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
310
|
+
};
|
|
237
311
|
export type BulkAssignCompanyOwnerMutation = {
|
|
238
312
|
__typename?: 'BulkAssignCompanyOwnerMutation';
|
|
239
313
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -1531,6 +1605,13 @@ export type CompleteRfqInput = {
|
|
|
1531
1605
|
/** The RFQ ID to complete */
|
|
1532
1606
|
rfqId: Scalars['ID']['input'];
|
|
1533
1607
|
};
|
|
1608
|
+
/** Select contacts and compose an email draft for a given config. */
|
|
1609
|
+
export type ComposeAutomatedProspectingEmail = {
|
|
1610
|
+
__typename?: 'ComposeAutomatedProspectingEmail';
|
|
1611
|
+
campaign?: Maybe<AutomatedProspectingCampaignObject>;
|
|
1612
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
1613
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
1614
|
+
};
|
|
1534
1615
|
/** Input type for filtering contacts */
|
|
1535
1616
|
export type ContactFilterInput = {
|
|
1536
1617
|
/** Filter by company IDs */
|
|
@@ -2296,6 +2377,16 @@ export type LastContactedViaType = {
|
|
|
2296
2377
|
/** Step type for combined campaigns (manual_call, manual_email, automated_email, task) */
|
|
2297
2378
|
stepType?: Maybe<Scalars['String']['output']>;
|
|
2298
2379
|
};
|
|
2380
|
+
/**
|
|
2381
|
+
* Launch a draft/queued campaign: create ContactLog entries for each contact,
|
|
2382
|
+
* triggering the existing email delivery pipeline.
|
|
2383
|
+
*/
|
|
2384
|
+
export type LaunchAutomatedProspecting = {
|
|
2385
|
+
__typename?: 'LaunchAutomatedProspecting';
|
|
2386
|
+
campaign?: Maybe<AutomatedProspectingCampaignObject>;
|
|
2387
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
2388
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
2389
|
+
};
|
|
2299
2390
|
/** Custom token auth mutation that includes account member isAdmin flag */
|
|
2300
2391
|
export type Login = {
|
|
2301
2392
|
__typename?: 'Login';
|
|
@@ -2466,6 +2557,8 @@ export type Mutation = {
|
|
|
2466
2557
|
__typename?: 'Mutation';
|
|
2467
2558
|
/** AcceptInvitation - Accept an invitation to join an account */
|
|
2468
2559
|
acceptInvitation?: Maybe<AcceptInvitation>;
|
|
2560
|
+
/** Add a contact to an existing draft campaign. */
|
|
2561
|
+
addContactToAutomatedProspecting?: Maybe<AddContactToAutomatedProspecting>;
|
|
2469
2562
|
addContactToSupplierList?: Maybe<AddContactToSupplierList>;
|
|
2470
2563
|
addContactsToCampaign?: Maybe<AddContactsToCampaign>;
|
|
2471
2564
|
/** Add contacts to a combined campaign using CustomContact */
|
|
@@ -2495,6 +2588,8 @@ export type Mutation = {
|
|
|
2495
2588
|
* All fields except rfq_id are optional.
|
|
2496
2589
|
*/
|
|
2497
2590
|
completeRfq?: Maybe<CompleteRfq>;
|
|
2591
|
+
/** Select contacts and compose an email draft for a given config. */
|
|
2592
|
+
composeAutomatedProspectingEmail?: Maybe<ComposeAutomatedProspectingEmail>;
|
|
2498
2593
|
createCallCampaign?: Maybe<CreateCallCampaign>;
|
|
2499
2594
|
createCallCampaignLog?: Maybe<CreateCallCampaignLog>;
|
|
2500
2595
|
/** Create a new call script template. */
|
|
@@ -2573,6 +2668,11 @@ export type Mutation = {
|
|
|
2573
2668
|
hideRecord?: Maybe<HideRecord>;
|
|
2574
2669
|
/** InviteUser - Invite a user to join an account */
|
|
2575
2670
|
inviteUser?: Maybe<InviteUser>;
|
|
2671
|
+
/**
|
|
2672
|
+
* Launch a draft/queued campaign: create ContactLog entries for each contact,
|
|
2673
|
+
* triggering the existing email delivery pipeline.
|
|
2674
|
+
*/
|
|
2675
|
+
launchAutomatedProspecting?: Maybe<LaunchAutomatedProspecting>;
|
|
2576
2676
|
/** Custom token auth mutation that includes account member isAdmin flag */
|
|
2577
2677
|
login?: Maybe<Login>;
|
|
2578
2678
|
/** LoginWithGoogle - Login with Google */
|
|
@@ -2592,6 +2692,8 @@ export type Mutation = {
|
|
|
2592
2692
|
reduceSpam?: Maybe<ReduceSpam>;
|
|
2593
2693
|
/** RejectInvitation - Reject an invitation to join an account */
|
|
2594
2694
|
rejectInvitation?: Maybe<RejectInvitation>;
|
|
2695
|
+
/** Remove a contact from a draft campaign. */
|
|
2696
|
+
removeContactFromAutomatedProspecting?: Maybe<RemoveContactFromAutomatedProspecting>;
|
|
2595
2697
|
removeContactFromMySupplier?: Maybe<RemoveContactFromMySupplier>;
|
|
2596
2698
|
removeContactFromSupplierList?: Maybe<RemoveContactFromSupplierList>;
|
|
2597
2699
|
removeContactsFromCampaign?: Maybe<RemoveContactsFromCampaign>;
|
|
@@ -2604,8 +2706,12 @@ export type Mutation = {
|
|
|
2604
2706
|
removeSegmentFromCallCampaign?: Maybe<RemoveSegmentFromCallCampaign>;
|
|
2605
2707
|
removeSegmentFromCampaign?: Maybe<RemoveSegmentFromCampaign>;
|
|
2606
2708
|
removeSupplierFromSupplierList?: Maybe<RemoveSupplierFromSupplierList>;
|
|
2709
|
+
/** RequestProAccess - Request upgrade to pro plan (sends notification email) */
|
|
2710
|
+
requestProAccess?: Maybe<RequestProAccess>;
|
|
2607
2711
|
/** Resume a paused combined campaign */
|
|
2608
2712
|
resumeCombinedCampaign?: Maybe<ResumeCombinedCampaign>;
|
|
2713
|
+
/** Create or update the automated prospecting config for a user/account, running LLM parsing. */
|
|
2714
|
+
saveAutomatedProspectingConfig?: Maybe<SaveAutomatedProspectingConfig>;
|
|
2609
2715
|
/** SaveNylasConnection - Save Nylas connection details after OAuth flow */
|
|
2610
2716
|
saveNylasConnection?: Maybe<SaveNylasConnection>;
|
|
2611
2717
|
scheduleCampaign?: Maybe<ScheduleCampaign>;
|
|
@@ -2631,6 +2737,8 @@ export type Mutation = {
|
|
|
2631
2737
|
setLeadNotInterested?: Maybe<SetLeadAsNotInterestedMutation>;
|
|
2632
2738
|
/** Signup - Register a new user and create their account */
|
|
2633
2739
|
signup?: Maybe<Signup>;
|
|
2740
|
+
/** Skip a queued or draft campaign and advance next_scheduled_at on the config. */
|
|
2741
|
+
skipAutomatedProspecting?: Maybe<SkipAutomatedProspecting>;
|
|
2634
2742
|
startCampaign?: Maybe<StartCampaign>;
|
|
2635
2743
|
/** Start a combined campaign */
|
|
2636
2744
|
startCombinedCampaign?: Maybe<StartCombinedCampaign>;
|
|
@@ -2638,8 +2746,14 @@ export type Mutation = {
|
|
|
2638
2746
|
submitFeedback?: Maybe<SubmitFeedback>;
|
|
2639
2747
|
/** Mutation to unhide a previously hidden record */
|
|
2640
2748
|
unhideRecord?: Maybe<UnhideRecord>;
|
|
2749
|
+
/** Restore a skipped campaign back to queued so the user can still send it. */
|
|
2750
|
+
unskipAutomatedProspecting?: Maybe<UnskipAutomatedProspecting>;
|
|
2641
2751
|
/** UnsubscribeFromEmails - Unsubscribe an email from specific types of emails */
|
|
2642
2752
|
unsubscribeFromEmails?: Maybe<UnsubscribeFromEmails>;
|
|
2753
|
+
/** Update the email subject, body, attachments, or scheduled_for time of a draft/queued campaign. */
|
|
2754
|
+
updateAutomatedProspectingCampaign?: Maybe<UpdateAutomatedProspectingCampaign>;
|
|
2755
|
+
/** Directly set the llm_parsed_industries on a config without re-running LLM parsing. */
|
|
2756
|
+
updateAutomatedProspectingIndustries?: Maybe<UpdateAutomatedProspectingIndustries>;
|
|
2643
2757
|
updateCallCampaign?: Maybe<UpdateCallCampaign>;
|
|
2644
2758
|
updateCallCampaignLog?: Maybe<UpdateCallCampaignLog>;
|
|
2645
2759
|
/** Update an existing call script template owned by the user's account. */
|
|
@@ -2682,6 +2796,11 @@ export type MutationAcceptInvitationArgs = {
|
|
|
2682
2796
|
input: InvitationResponseInput;
|
|
2683
2797
|
};
|
|
2684
2798
|
/** Mutations */
|
|
2799
|
+
export type MutationAddContactToAutomatedProspectingArgs = {
|
|
2800
|
+
campaignId: Scalars['ID']['input'];
|
|
2801
|
+
contactId: Scalars['ID']['input'];
|
|
2802
|
+
};
|
|
2803
|
+
/** Mutations */
|
|
2685
2804
|
export type MutationAddContactToSupplierListArgs = {
|
|
2686
2805
|
input: AddContactToSupplierListInput;
|
|
2687
2806
|
};
|
|
@@ -2752,6 +2871,10 @@ export type MutationCompleteRfqArgs = {
|
|
|
2752
2871
|
input: CompleteRfqInput;
|
|
2753
2872
|
};
|
|
2754
2873
|
/** Mutations */
|
|
2874
|
+
export type MutationComposeAutomatedProspectingEmailArgs = {
|
|
2875
|
+
configId: Scalars['ID']['input'];
|
|
2876
|
+
};
|
|
2877
|
+
/** Mutations */
|
|
2755
2878
|
export type MutationCreateCallCampaignArgs = {
|
|
2756
2879
|
input: CallCampaignInput;
|
|
2757
2880
|
};
|
|
@@ -2928,6 +3051,11 @@ export type MutationInviteUserArgs = {
|
|
|
2928
3051
|
input: InviteUserInput;
|
|
2929
3052
|
};
|
|
2930
3053
|
/** Mutations */
|
|
3054
|
+
export type MutationLaunchAutomatedProspectingArgs = {
|
|
3055
|
+
campaignId: Scalars['ID']['input'];
|
|
3056
|
+
scheduledFor?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3057
|
+
};
|
|
3058
|
+
/** Mutations */
|
|
2931
3059
|
export type MutationLoginArgs = {
|
|
2932
3060
|
email: Scalars['String']['input'];
|
|
2933
3061
|
password: Scalars['String']['input'];
|
|
@@ -2970,6 +3098,11 @@ export type MutationRejectInvitationArgs = {
|
|
|
2970
3098
|
input: InvitationResponseInput;
|
|
2971
3099
|
};
|
|
2972
3100
|
/** Mutations */
|
|
3101
|
+
export type MutationRemoveContactFromAutomatedProspectingArgs = {
|
|
3102
|
+
campaignId: Scalars['ID']['input'];
|
|
3103
|
+
contactId: Scalars['ID']['input'];
|
|
3104
|
+
};
|
|
3105
|
+
/** Mutations */
|
|
2973
3106
|
export type MutationRemoveContactFromMySupplierArgs = {
|
|
2974
3107
|
input: RemoveContactFromMySupplierInput;
|
|
2975
3108
|
};
|
|
@@ -3022,6 +3155,11 @@ export type MutationResumeCombinedCampaignArgs = {
|
|
|
3022
3155
|
id: Scalars['ID']['input'];
|
|
3023
3156
|
};
|
|
3024
3157
|
/** Mutations */
|
|
3158
|
+
export type MutationSaveAutomatedProspectingConfigArgs = {
|
|
3159
|
+
accountId: Scalars['ID']['input'];
|
|
3160
|
+
input: AutomatedProspectingCampaignInput;
|
|
3161
|
+
};
|
|
3162
|
+
/** Mutations */
|
|
3025
3163
|
export type MutationSaveNylasConnectionArgs = {
|
|
3026
3164
|
input: SaveNylasConnectionInput;
|
|
3027
3165
|
};
|
|
@@ -3097,6 +3235,10 @@ export type MutationSignupArgs = {
|
|
|
3097
3235
|
input: SignupInput;
|
|
3098
3236
|
};
|
|
3099
3237
|
/** Mutations */
|
|
3238
|
+
export type MutationSkipAutomatedProspectingArgs = {
|
|
3239
|
+
campaignId: Scalars['ID']['input'];
|
|
3240
|
+
};
|
|
3241
|
+
/** Mutations */
|
|
3100
3242
|
export type MutationStartCampaignArgs = {
|
|
3101
3243
|
id: Scalars['ID']['input'];
|
|
3102
3244
|
};
|
|
@@ -3113,11 +3255,28 @@ export type MutationUnhideRecordArgs = {
|
|
|
3113
3255
|
input: HiddenRecordInput;
|
|
3114
3256
|
};
|
|
3115
3257
|
/** Mutations */
|
|
3258
|
+
export type MutationUnskipAutomatedProspectingArgs = {
|
|
3259
|
+
campaignId: Scalars['ID']['input'];
|
|
3260
|
+
};
|
|
3261
|
+
/** Mutations */
|
|
3116
3262
|
export type MutationUnsubscribeFromEmailsArgs = {
|
|
3117
3263
|
emailHash: Scalars['String']['input'];
|
|
3118
3264
|
source: Scalars['String']['input'];
|
|
3119
3265
|
};
|
|
3120
3266
|
/** Mutations */
|
|
3267
|
+
export type MutationUpdateAutomatedProspectingCampaignArgs = {
|
|
3268
|
+
attachments?: InputMaybe<Scalars['String']['input']>;
|
|
3269
|
+
campaignId: Scalars['ID']['input'];
|
|
3270
|
+
emailBody?: InputMaybe<Scalars['String']['input']>;
|
|
3271
|
+
emailSubject?: InputMaybe<Scalars['String']['input']>;
|
|
3272
|
+
scheduledFor?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3273
|
+
};
|
|
3274
|
+
/** Mutations */
|
|
3275
|
+
export type MutationUpdateAutomatedProspectingIndustriesArgs = {
|
|
3276
|
+
configId: Scalars['ID']['input'];
|
|
3277
|
+
industryIds: Array<InputMaybe<Scalars['Int']['input']>>;
|
|
3278
|
+
};
|
|
3279
|
+
/** Mutations */
|
|
3121
3280
|
export type MutationUpdateCallCampaignArgs = {
|
|
3122
3281
|
id: Scalars['ID']['input'];
|
|
3123
3282
|
input: CallCampaignInput;
|
|
@@ -3285,6 +3444,11 @@ export type NylasConnectionResponseType = {
|
|
|
3285
3444
|
/** Email provider (e.g., gmail, outlook) */
|
|
3286
3445
|
provider?: Maybe<Scalars['String']['output']>;
|
|
3287
3446
|
};
|
|
3447
|
+
export type PaginatedAutomatedProspectingCampaigns = {
|
|
3448
|
+
__typename?: 'PaginatedAutomatedProspectingCampaigns';
|
|
3449
|
+
items?: Maybe<Array<Maybe<AutomatedProspectingCampaignObject>>>;
|
|
3450
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
3451
|
+
};
|
|
3288
3452
|
export type PaginatedCallCampaignList = {
|
|
3289
3453
|
__typename?: 'PaginatedCallCampaignList';
|
|
3290
3454
|
items?: Maybe<Array<Maybe<CallCampaignObject>>>;
|
|
@@ -3745,10 +3909,14 @@ export type ProductTypeObject = {
|
|
|
3745
3909
|
/** Query */
|
|
3746
3910
|
export type Query = {
|
|
3747
3911
|
__typename?: 'Query';
|
|
3912
|
+
accountFeatureFlags?: Maybe<Scalars['GenericScalar']['output']>;
|
|
3748
3913
|
accountMembers?: Maybe<Array<Maybe<AccountMemberType>>>;
|
|
3749
3914
|
accountProfile?: Maybe<AccountProfileType>;
|
|
3750
3915
|
/** Get the current account's subscription */
|
|
3751
3916
|
accountSubscription?: Maybe<SubscriptionType>;
|
|
3917
|
+
automatedProspectingCampaign?: Maybe<AutomatedProspectingCampaignObject>;
|
|
3918
|
+
automatedProspectingCampaigns?: Maybe<PaginatedAutomatedProspectingCampaigns>;
|
|
3919
|
+
automatedProspectingConfig?: Maybe<AutomatedProspectingConfigObject>;
|
|
3752
3920
|
businessProfile?: Maybe<BusinessProfileType>;
|
|
3753
3921
|
/** Get a specific call campaign by ID */
|
|
3754
3922
|
callCampaign?: Maybe<CallCampaignObject>;
|
|
@@ -3885,6 +4053,25 @@ export type Query = {
|
|
|
3885
4053
|
userProfile?: Maybe<UserProfileType>;
|
|
3886
4054
|
};
|
|
3887
4055
|
/** Query */
|
|
4056
|
+
export type QueryAccountFeatureFlagsArgs = {
|
|
4057
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
4058
|
+
};
|
|
4059
|
+
/** Query */
|
|
4060
|
+
export type QueryAutomatedProspectingCampaignArgs = {
|
|
4061
|
+
campaignId: Scalars['ID']['input'];
|
|
4062
|
+
};
|
|
4063
|
+
/** Query */
|
|
4064
|
+
export type QueryAutomatedProspectingCampaignsArgs = {
|
|
4065
|
+
accountId: Scalars['ID']['input'];
|
|
4066
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
4067
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
4068
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
4069
|
+
};
|
|
4070
|
+
/** Query */
|
|
4071
|
+
export type QueryAutomatedProspectingConfigArgs = {
|
|
4072
|
+
accountId: Scalars['ID']['input'];
|
|
4073
|
+
};
|
|
4074
|
+
/** Query */
|
|
3888
4075
|
export type QueryCallCampaignArgs = {
|
|
3889
4076
|
id: Scalars['ID']['input'];
|
|
3890
4077
|
};
|
|
@@ -4281,6 +4468,8 @@ export type RecentHistoryItemType = {
|
|
|
4281
4468
|
contactName?: Maybe<Scalars['String']['output']>;
|
|
4282
4469
|
/** Job title of the contact */
|
|
4283
4470
|
contactTitle?: Maybe<Scalars['String']['output']>;
|
|
4471
|
+
/** The date and time the activity was created */
|
|
4472
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
4284
4473
|
/** Date when email was opened */
|
|
4285
4474
|
dateOpened?: Maybe<Scalars['DateTime']['output']>;
|
|
4286
4475
|
/** Date when email was replied to */
|
|
@@ -4302,7 +4491,8 @@ export declare enum RecentHistorySortField {
|
|
|
4302
4491
|
ActivityDate = "ACTIVITY_DATE",
|
|
4303
4492
|
ActivityType = "ACTIVITY_TYPE",
|
|
4304
4493
|
CompanyName = "COMPANY_NAME",
|
|
4305
|
-
ContactName = "CONTACT_NAME"
|
|
4494
|
+
ContactName = "CONTACT_NAME",
|
|
4495
|
+
CreatedAt = "CREATED_AT"
|
|
4306
4496
|
}
|
|
4307
4497
|
/** Sort input for recent history queries */
|
|
4308
4498
|
export type RecentHistorySortInput = {
|
|
@@ -4353,6 +4543,12 @@ export type RejectInvitation = {
|
|
|
4353
4543
|
message?: Maybe<Scalars['String']['output']>;
|
|
4354
4544
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
4355
4545
|
};
|
|
4546
|
+
/** Remove a contact from a draft campaign. */
|
|
4547
|
+
export type RemoveContactFromAutomatedProspecting = {
|
|
4548
|
+
__typename?: 'RemoveContactFromAutomatedProspecting';
|
|
4549
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4550
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
4551
|
+
};
|
|
4356
4552
|
export type RemoveContactFromMySupplier = {
|
|
4357
4553
|
__typename?: 'RemoveContactFromMySupplier';
|
|
4358
4554
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -4429,6 +4625,12 @@ export type RemoveSupplierFromSupplierListInput = {
|
|
|
4429
4625
|
companyId: Scalars['ID']['input'];
|
|
4430
4626
|
supplierListId: Scalars['ID']['input'];
|
|
4431
4627
|
};
|
|
4628
|
+
/** RequestProAccess - Request upgrade to pro plan (sends notification email) */
|
|
4629
|
+
export type RequestProAccess = {
|
|
4630
|
+
__typename?: 'RequestProAccess';
|
|
4631
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4632
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
4633
|
+
};
|
|
4432
4634
|
/** Resume a paused combined campaign */
|
|
4433
4635
|
export type ResumeCombinedCampaign = {
|
|
4434
4636
|
__typename?: 'ResumeCombinedCampaign';
|
|
@@ -4561,6 +4763,13 @@ export type SalespersonStatsObject = {
|
|
|
4561
4763
|
user?: Maybe<UserType>;
|
|
4562
4764
|
userId?: Maybe<Scalars['Int']['output']>;
|
|
4563
4765
|
};
|
|
4766
|
+
/** Create or update the automated prospecting config for a user/account, running LLM parsing. */
|
|
4767
|
+
export type SaveAutomatedProspectingConfig = {
|
|
4768
|
+
__typename?: 'SaveAutomatedProspectingConfig';
|
|
4769
|
+
config?: Maybe<AutomatedProspectingConfigObject>;
|
|
4770
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4771
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
4772
|
+
};
|
|
4564
4773
|
/** SaveNylasConnection - Save Nylas connection details after OAuth flow */
|
|
4565
4774
|
export type SaveNylasConnection = {
|
|
4566
4775
|
__typename?: 'SaveNylasConnection';
|
|
@@ -4761,6 +4970,12 @@ export type SignupInput = {
|
|
|
4761
4970
|
password: Scalars['String']['input'];
|
|
4762
4971
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
4763
4972
|
};
|
|
4973
|
+
/** Skip a queued or draft campaign and advance next_scheduled_at on the config. */
|
|
4974
|
+
export type SkipAutomatedProspecting = {
|
|
4975
|
+
__typename?: 'SkipAutomatedProspecting';
|
|
4976
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4977
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
4978
|
+
};
|
|
4764
4979
|
export declare enum SortDirection {
|
|
4765
4980
|
Asc = "ASC",
|
|
4766
4981
|
Desc = "DESC"
|
|
@@ -4948,12 +5163,31 @@ export type UnhideRecord = {
|
|
|
4948
5163
|
message?: Maybe<Scalars['String']['output']>;
|
|
4949
5164
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
4950
5165
|
};
|
|
5166
|
+
/** Restore a skipped campaign back to queued so the user can still send it. */
|
|
5167
|
+
export type UnskipAutomatedProspecting = {
|
|
5168
|
+
__typename?: 'UnskipAutomatedProspecting';
|
|
5169
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
5170
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
5171
|
+
};
|
|
4951
5172
|
/** UnsubscribeFromEmails - Unsubscribe an email from specific types of emails */
|
|
4952
5173
|
export type UnsubscribeFromEmails = {
|
|
4953
5174
|
__typename?: 'UnsubscribeFromEmails';
|
|
4954
5175
|
message?: Maybe<Scalars['String']['output']>;
|
|
4955
5176
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
4956
5177
|
};
|
|
5178
|
+
/** Update the email subject, body, attachments, or scheduled_for time of a draft/queued campaign. */
|
|
5179
|
+
export type UpdateAutomatedProspectingCampaign = {
|
|
5180
|
+
__typename?: 'UpdateAutomatedProspectingCampaign';
|
|
5181
|
+
campaign?: Maybe<AutomatedProspectingCampaignObject>;
|
|
5182
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
5183
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
5184
|
+
};
|
|
5185
|
+
/** Directly set the llm_parsed_industries on a config without re-running LLM parsing. */
|
|
5186
|
+
export type UpdateAutomatedProspectingIndustries = {
|
|
5187
|
+
__typename?: 'UpdateAutomatedProspectingIndustries';
|
|
5188
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
5189
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
5190
|
+
};
|
|
4957
5191
|
export type UpdateCallCampaign = {
|
|
4958
5192
|
__typename?: 'UpdateCallCampaign';
|
|
4959
5193
|
callCampaign?: Maybe<CallCampaignObject>;
|
|
@@ -5336,6 +5570,31 @@ export type AcceptInvitationMutation = {
|
|
|
5336
5570
|
} | null;
|
|
5337
5571
|
} | null;
|
|
5338
5572
|
};
|
|
5573
|
+
export type AddContactToAutomatedProspectingMutationVariables = Exact<{
|
|
5574
|
+
campaignId: Scalars['ID']['input'];
|
|
5575
|
+
contactId: Scalars['ID']['input'];
|
|
5576
|
+
}>;
|
|
5577
|
+
export type AddContactToAutomatedProspectingMutation = {
|
|
5578
|
+
__typename?: 'Mutation';
|
|
5579
|
+
addContactToAutomatedProspecting?: {
|
|
5580
|
+
__typename?: 'AddContactToAutomatedProspecting';
|
|
5581
|
+
success?: boolean | null;
|
|
5582
|
+
message?: string | null;
|
|
5583
|
+
contact?: {
|
|
5584
|
+
__typename?: 'AutomatedProspectingContactObject';
|
|
5585
|
+
id?: string | null;
|
|
5586
|
+
contactId?: string | null;
|
|
5587
|
+
contactLogId?: string | null;
|
|
5588
|
+
contactFirstName?: string | null;
|
|
5589
|
+
contactLastName?: string | null;
|
|
5590
|
+
contactEmail?: string | null;
|
|
5591
|
+
contactTitle?: string | null;
|
|
5592
|
+
contactCompanyName?: string | null;
|
|
5593
|
+
hasReplied?: boolean | null;
|
|
5594
|
+
createdAt?: any | null;
|
|
5595
|
+
} | null;
|
|
5596
|
+
} | null;
|
|
5597
|
+
};
|
|
5339
5598
|
export type AddContactToSupplierListMutationVariables = Exact<{
|
|
5340
5599
|
input: AddContactToSupplierListInput;
|
|
5341
5600
|
}>;
|
|
@@ -6212,6 +6471,52 @@ export type CompleteRfqMutation = {
|
|
|
6212
6471
|
} | null;
|
|
6213
6472
|
} | null;
|
|
6214
6473
|
};
|
|
6474
|
+
export type ComposeAutomatedProspectingEmailMutationVariables = Exact<{
|
|
6475
|
+
configId: Scalars['ID']['input'];
|
|
6476
|
+
}>;
|
|
6477
|
+
export type ComposeAutomatedProspectingEmailMutation = {
|
|
6478
|
+
__typename?: 'Mutation';
|
|
6479
|
+
composeAutomatedProspectingEmail?: {
|
|
6480
|
+
__typename?: 'ComposeAutomatedProspectingEmail';
|
|
6481
|
+
success?: boolean | null;
|
|
6482
|
+
message?: string | null;
|
|
6483
|
+
campaign?: {
|
|
6484
|
+
__typename?: 'AutomatedProspectingCampaignObject';
|
|
6485
|
+
id?: string | null;
|
|
6486
|
+
configId?: string | null;
|
|
6487
|
+
userId?: string | null;
|
|
6488
|
+
accountId?: string | null;
|
|
6489
|
+
status?: string | null;
|
|
6490
|
+
emailSubject?: string | null;
|
|
6491
|
+
emailBody?: string | null;
|
|
6492
|
+
emailSubjectPreview?: string | null;
|
|
6493
|
+
emailBodyPreview?: string | null;
|
|
6494
|
+
attachments?: any | null;
|
|
6495
|
+
contactCount?: number | null;
|
|
6496
|
+
scheduledFor?: any | null;
|
|
6497
|
+
notificationSentAt?: any | null;
|
|
6498
|
+
sentAt?: any | null;
|
|
6499
|
+
skippedAt?: any | null;
|
|
6500
|
+
createdAt?: any | null;
|
|
6501
|
+
updatedAt?: any | null;
|
|
6502
|
+
sentCount?: number | null;
|
|
6503
|
+
replyCount?: number | null;
|
|
6504
|
+
contacts?: Array<{
|
|
6505
|
+
__typename?: 'AutomatedProspectingContactObject';
|
|
6506
|
+
id?: string | null;
|
|
6507
|
+
contactId?: string | null;
|
|
6508
|
+
contactLogId?: string | null;
|
|
6509
|
+
contactFirstName?: string | null;
|
|
6510
|
+
contactLastName?: string | null;
|
|
6511
|
+
contactEmail?: string | null;
|
|
6512
|
+
contactTitle?: string | null;
|
|
6513
|
+
contactCompanyName?: string | null;
|
|
6514
|
+
hasReplied?: boolean | null;
|
|
6515
|
+
createdAt?: any | null;
|
|
6516
|
+
} | null> | null;
|
|
6517
|
+
} | null;
|
|
6518
|
+
} | null;
|
|
6519
|
+
};
|
|
6215
6520
|
export type CreateCallCampaignMutationVariables = Exact<{
|
|
6216
6521
|
input: CallCampaignInput;
|
|
6217
6522
|
}>;
|
|
@@ -9861,6 +10166,53 @@ export type InviteUserMutation = {
|
|
|
9861
10166
|
} | null;
|
|
9862
10167
|
} | null;
|
|
9863
10168
|
};
|
|
10169
|
+
export type LaunchAutomatedProspectingMutationVariables = Exact<{
|
|
10170
|
+
campaignId: Scalars['ID']['input'];
|
|
10171
|
+
scheduledFor?: InputMaybe<Scalars['DateTime']['input']>;
|
|
10172
|
+
}>;
|
|
10173
|
+
export type LaunchAutomatedProspectingMutation = {
|
|
10174
|
+
__typename?: 'Mutation';
|
|
10175
|
+
launchAutomatedProspecting?: {
|
|
10176
|
+
__typename?: 'LaunchAutomatedProspecting';
|
|
10177
|
+
success?: boolean | null;
|
|
10178
|
+
message?: string | null;
|
|
10179
|
+
campaign?: {
|
|
10180
|
+
__typename?: 'AutomatedProspectingCampaignObject';
|
|
10181
|
+
id?: string | null;
|
|
10182
|
+
configId?: string | null;
|
|
10183
|
+
userId?: string | null;
|
|
10184
|
+
accountId?: string | null;
|
|
10185
|
+
status?: string | null;
|
|
10186
|
+
emailSubject?: string | null;
|
|
10187
|
+
emailBody?: string | null;
|
|
10188
|
+
emailSubjectPreview?: string | null;
|
|
10189
|
+
emailBodyPreview?: string | null;
|
|
10190
|
+
attachments?: any | null;
|
|
10191
|
+
contactCount?: number | null;
|
|
10192
|
+
scheduledFor?: any | null;
|
|
10193
|
+
notificationSentAt?: any | null;
|
|
10194
|
+
sentAt?: any | null;
|
|
10195
|
+
skippedAt?: any | null;
|
|
10196
|
+
createdAt?: any | null;
|
|
10197
|
+
updatedAt?: any | null;
|
|
10198
|
+
sentCount?: number | null;
|
|
10199
|
+
replyCount?: number | null;
|
|
10200
|
+
contacts?: Array<{
|
|
10201
|
+
__typename?: 'AutomatedProspectingContactObject';
|
|
10202
|
+
id?: string | null;
|
|
10203
|
+
contactId?: string | null;
|
|
10204
|
+
contactLogId?: string | null;
|
|
10205
|
+
contactFirstName?: string | null;
|
|
10206
|
+
contactLastName?: string | null;
|
|
10207
|
+
contactEmail?: string | null;
|
|
10208
|
+
contactTitle?: string | null;
|
|
10209
|
+
contactCompanyName?: string | null;
|
|
10210
|
+
hasReplied?: boolean | null;
|
|
10211
|
+
createdAt?: any | null;
|
|
10212
|
+
} | null> | null;
|
|
10213
|
+
} | null;
|
|
10214
|
+
} | null;
|
|
10215
|
+
};
|
|
9864
10216
|
export type LoginMutationVariables = Exact<{
|
|
9865
10217
|
email: Scalars['String']['input'];
|
|
9866
10218
|
password: Scalars['String']['input'];
|
|
@@ -10202,6 +10554,18 @@ export type RejectInvitationMutation = {
|
|
|
10202
10554
|
message?: string | null;
|
|
10203
10555
|
} | null;
|
|
10204
10556
|
};
|
|
10557
|
+
export type RemoveContactFromAutomatedProspectingMutationVariables = Exact<{
|
|
10558
|
+
campaignId: Scalars['ID']['input'];
|
|
10559
|
+
contactId: Scalars['ID']['input'];
|
|
10560
|
+
}>;
|
|
10561
|
+
export type RemoveContactFromAutomatedProspectingMutation = {
|
|
10562
|
+
__typename?: 'Mutation';
|
|
10563
|
+
removeContactFromAutomatedProspecting?: {
|
|
10564
|
+
__typename?: 'RemoveContactFromAutomatedProspecting';
|
|
10565
|
+
success?: boolean | null;
|
|
10566
|
+
message?: string | null;
|
|
10567
|
+
} | null;
|
|
10568
|
+
};
|
|
10205
10569
|
export type RemoveContactFromMySupplierMutationVariables = Exact<{
|
|
10206
10570
|
input: RemoveContactFromMySupplierInput;
|
|
10207
10571
|
}>;
|
|
@@ -10616,6 +10980,17 @@ export type RemoveSupplierFromSupplierListMutation = {
|
|
|
10616
10980
|
message?: string | null;
|
|
10617
10981
|
} | null;
|
|
10618
10982
|
};
|
|
10983
|
+
export type RequestProAccessMutationVariables = Exact<{
|
|
10984
|
+
[key: string]: never;
|
|
10985
|
+
}>;
|
|
10986
|
+
export type RequestProAccessMutation = {
|
|
10987
|
+
__typename?: 'Mutation';
|
|
10988
|
+
requestProAccess?: {
|
|
10989
|
+
__typename?: 'RequestProAccess';
|
|
10990
|
+
success?: boolean | null;
|
|
10991
|
+
message?: string | null;
|
|
10992
|
+
} | null;
|
|
10993
|
+
};
|
|
10619
10994
|
export type ResumeCombinedCampaignMutationVariables = Exact<{
|
|
10620
10995
|
id: Scalars['ID']['input'];
|
|
10621
10996
|
}>;
|
|
@@ -10704,6 +11079,38 @@ export type ResumeCombinedCampaignMutation = {
|
|
|
10704
11079
|
} | null;
|
|
10705
11080
|
} | null;
|
|
10706
11081
|
};
|
|
11082
|
+
export type SaveAutomatedProspectingConfigMutationVariables = Exact<{
|
|
11083
|
+
accountId: Scalars['ID']['input'];
|
|
11084
|
+
input: AutomatedProspectingCampaignInput;
|
|
11085
|
+
}>;
|
|
11086
|
+
export type SaveAutomatedProspectingConfigMutation = {
|
|
11087
|
+
__typename?: 'Mutation';
|
|
11088
|
+
saveAutomatedProspectingConfig?: {
|
|
11089
|
+
__typename?: 'SaveAutomatedProspectingConfig';
|
|
11090
|
+
success?: boolean | null;
|
|
11091
|
+
message?: string | null;
|
|
11092
|
+
config?: {
|
|
11093
|
+
__typename?: 'AutomatedProspectingConfigObject';
|
|
11094
|
+
id?: string | null;
|
|
11095
|
+
userId?: string | null;
|
|
11096
|
+
accountId?: string | null;
|
|
11097
|
+
buyerDescription?: string | null;
|
|
11098
|
+
targetStates?: any | null;
|
|
11099
|
+
frequency?: string | null;
|
|
11100
|
+
notificationTime?: string | null;
|
|
11101
|
+
notificationTimezone?: string | null;
|
|
11102
|
+
emailsPerBatch?: number | null;
|
|
11103
|
+
additionalNotes?: string | null;
|
|
11104
|
+
emailTone?: string | null;
|
|
11105
|
+
isActive?: boolean | null;
|
|
11106
|
+
llmParsedIndustries?: any | null;
|
|
11107
|
+
llmParsedStates?: any | null;
|
|
11108
|
+
nextScheduledAt?: any | null;
|
|
11109
|
+
createdAt?: any | null;
|
|
11110
|
+
updatedAt?: any | null;
|
|
11111
|
+
} | null;
|
|
11112
|
+
} | null;
|
|
11113
|
+
};
|
|
10707
11114
|
export type SaveNylasConnectionMutationVariables = Exact<{
|
|
10708
11115
|
input: SaveNylasConnectionInput;
|
|
10709
11116
|
}>;
|
|
@@ -11872,6 +12279,17 @@ export type SignupMutation = {
|
|
|
11872
12279
|
userId?: string | null;
|
|
11873
12280
|
} | null;
|
|
11874
12281
|
};
|
|
12282
|
+
export type SkipAutomatedProspectingMutationVariables = Exact<{
|
|
12283
|
+
campaignId: Scalars['ID']['input'];
|
|
12284
|
+
}>;
|
|
12285
|
+
export type SkipAutomatedProspectingMutation = {
|
|
12286
|
+
__typename?: 'Mutation';
|
|
12287
|
+
skipAutomatedProspecting?: {
|
|
12288
|
+
__typename?: 'SkipAutomatedProspecting';
|
|
12289
|
+
success?: boolean | null;
|
|
12290
|
+
message?: string | null;
|
|
12291
|
+
} | null;
|
|
12292
|
+
};
|
|
11875
12293
|
export type StartCampaignMutationVariables = Exact<{
|
|
11876
12294
|
id: Scalars['ID']['input'];
|
|
11877
12295
|
}>;
|
|
@@ -12062,6 +12480,17 @@ export type UnhideRecordMutation = {
|
|
|
12062
12480
|
message?: string | null;
|
|
12063
12481
|
} | null;
|
|
12064
12482
|
};
|
|
12483
|
+
export type UnskipAutomatedProspectingMutationVariables = Exact<{
|
|
12484
|
+
campaignId: Scalars['ID']['input'];
|
|
12485
|
+
}>;
|
|
12486
|
+
export type UnskipAutomatedProspectingMutation = {
|
|
12487
|
+
__typename?: 'Mutation';
|
|
12488
|
+
unskipAutomatedProspecting?: {
|
|
12489
|
+
__typename?: 'UnskipAutomatedProspecting';
|
|
12490
|
+
success?: boolean | null;
|
|
12491
|
+
message?: string | null;
|
|
12492
|
+
} | null;
|
|
12493
|
+
};
|
|
12065
12494
|
export type UnsubscribeFromEmailsMutationVariables = Exact<{
|
|
12066
12495
|
emailHash: Scalars['String']['input'];
|
|
12067
12496
|
source: Scalars['String']['input'];
|
|
@@ -12074,6 +12503,68 @@ export type UnsubscribeFromEmailsMutation = {
|
|
|
12074
12503
|
message?: string | null;
|
|
12075
12504
|
} | null;
|
|
12076
12505
|
};
|
|
12506
|
+
export type UpdateAutomatedProspectingCampaignMutationVariables = Exact<{
|
|
12507
|
+
attachments?: InputMaybe<Scalars['String']['input']>;
|
|
12508
|
+
campaignId: Scalars['ID']['input'];
|
|
12509
|
+
emailBody?: InputMaybe<Scalars['String']['input']>;
|
|
12510
|
+
emailSubject?: InputMaybe<Scalars['String']['input']>;
|
|
12511
|
+
scheduledFor?: InputMaybe<Scalars['DateTime']['input']>;
|
|
12512
|
+
}>;
|
|
12513
|
+
export type UpdateAutomatedProspectingCampaignMutation = {
|
|
12514
|
+
__typename?: 'Mutation';
|
|
12515
|
+
updateAutomatedProspectingCampaign?: {
|
|
12516
|
+
__typename?: 'UpdateAutomatedProspectingCampaign';
|
|
12517
|
+
success?: boolean | null;
|
|
12518
|
+
message?: string | null;
|
|
12519
|
+
campaign?: {
|
|
12520
|
+
__typename?: 'AutomatedProspectingCampaignObject';
|
|
12521
|
+
id?: string | null;
|
|
12522
|
+
configId?: string | null;
|
|
12523
|
+
userId?: string | null;
|
|
12524
|
+
accountId?: string | null;
|
|
12525
|
+
status?: string | null;
|
|
12526
|
+
emailSubject?: string | null;
|
|
12527
|
+
emailBody?: string | null;
|
|
12528
|
+
emailSubjectPreview?: string | null;
|
|
12529
|
+
emailBodyPreview?: string | null;
|
|
12530
|
+
attachments?: any | null;
|
|
12531
|
+
contactCount?: number | null;
|
|
12532
|
+
scheduledFor?: any | null;
|
|
12533
|
+
notificationSentAt?: any | null;
|
|
12534
|
+
sentAt?: any | null;
|
|
12535
|
+
skippedAt?: any | null;
|
|
12536
|
+
createdAt?: any | null;
|
|
12537
|
+
updatedAt?: any | null;
|
|
12538
|
+
sentCount?: number | null;
|
|
12539
|
+
replyCount?: number | null;
|
|
12540
|
+
contacts?: Array<{
|
|
12541
|
+
__typename?: 'AutomatedProspectingContactObject';
|
|
12542
|
+
id?: string | null;
|
|
12543
|
+
contactId?: string | null;
|
|
12544
|
+
contactLogId?: string | null;
|
|
12545
|
+
contactFirstName?: string | null;
|
|
12546
|
+
contactLastName?: string | null;
|
|
12547
|
+
contactEmail?: string | null;
|
|
12548
|
+
contactTitle?: string | null;
|
|
12549
|
+
contactCompanyName?: string | null;
|
|
12550
|
+
hasReplied?: boolean | null;
|
|
12551
|
+
createdAt?: any | null;
|
|
12552
|
+
} | null> | null;
|
|
12553
|
+
} | null;
|
|
12554
|
+
} | null;
|
|
12555
|
+
};
|
|
12556
|
+
export type UpdateAutomatedProspectingIndustriesMutationVariables = Exact<{
|
|
12557
|
+
configId: Scalars['ID']['input'];
|
|
12558
|
+
industryIds: Array<InputMaybe<Scalars['Int']['input']>> | InputMaybe<Scalars['Int']['input']>;
|
|
12559
|
+
}>;
|
|
12560
|
+
export type UpdateAutomatedProspectingIndustriesMutation = {
|
|
12561
|
+
__typename?: 'Mutation';
|
|
12562
|
+
updateAutomatedProspectingIndustries?: {
|
|
12563
|
+
__typename?: 'UpdateAutomatedProspectingIndustries';
|
|
12564
|
+
success?: boolean | null;
|
|
12565
|
+
message?: string | null;
|
|
12566
|
+
} | null;
|
|
12567
|
+
};
|
|
12077
12568
|
export type UpdateCallCampaignMutationVariables = Exact<{
|
|
12078
12569
|
id: Scalars['ID']['input'];
|
|
12079
12570
|
input: CallCampaignInput;
|
|
@@ -15796,6 +16287,13 @@ export type ValidateOtpAndResetPasswordMutation = {
|
|
|
15796
16287
|
message?: string | null;
|
|
15797
16288
|
} | null;
|
|
15798
16289
|
};
|
|
16290
|
+
export type AccountFeatureFlagsQueryVariables = Exact<{
|
|
16291
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
16292
|
+
}>;
|
|
16293
|
+
export type AccountFeatureFlagsQuery = {
|
|
16294
|
+
__typename?: 'Query';
|
|
16295
|
+
accountFeatureFlags?: any | null;
|
|
16296
|
+
};
|
|
15799
16297
|
export type AccountMembersQueryVariables = Exact<{
|
|
15800
16298
|
[key: string]: never;
|
|
15801
16299
|
}>;
|
|
@@ -15857,6 +16355,121 @@ export type AccountSubscriptionQuery = {
|
|
|
15857
16355
|
} | null;
|
|
15858
16356
|
} | null;
|
|
15859
16357
|
};
|
|
16358
|
+
export type AutomatedProspectingCampaignQueryVariables = Exact<{
|
|
16359
|
+
campaignId: Scalars['ID']['input'];
|
|
16360
|
+
}>;
|
|
16361
|
+
export type AutomatedProspectingCampaignQuery = {
|
|
16362
|
+
__typename?: 'Query';
|
|
16363
|
+
automatedProspectingCampaign?: {
|
|
16364
|
+
__typename?: 'AutomatedProspectingCampaignObject';
|
|
16365
|
+
id?: string | null;
|
|
16366
|
+
configId?: string | null;
|
|
16367
|
+
userId?: string | null;
|
|
16368
|
+
accountId?: string | null;
|
|
16369
|
+
status?: string | null;
|
|
16370
|
+
emailSubject?: string | null;
|
|
16371
|
+
emailBody?: string | null;
|
|
16372
|
+
emailSubjectPreview?: string | null;
|
|
16373
|
+
emailBodyPreview?: string | null;
|
|
16374
|
+
attachments?: any | null;
|
|
16375
|
+
contactCount?: number | null;
|
|
16376
|
+
scheduledFor?: any | null;
|
|
16377
|
+
notificationSentAt?: any | null;
|
|
16378
|
+
sentAt?: any | null;
|
|
16379
|
+
skippedAt?: any | null;
|
|
16380
|
+
createdAt?: any | null;
|
|
16381
|
+
updatedAt?: any | null;
|
|
16382
|
+
sentCount?: number | null;
|
|
16383
|
+
replyCount?: number | null;
|
|
16384
|
+
contacts?: Array<{
|
|
16385
|
+
__typename?: 'AutomatedProspectingContactObject';
|
|
16386
|
+
id?: string | null;
|
|
16387
|
+
contactId?: string | null;
|
|
16388
|
+
contactLogId?: string | null;
|
|
16389
|
+
contactFirstName?: string | null;
|
|
16390
|
+
contactLastName?: string | null;
|
|
16391
|
+
contactEmail?: string | null;
|
|
16392
|
+
contactTitle?: string | null;
|
|
16393
|
+
contactCompanyName?: string | null;
|
|
16394
|
+
hasReplied?: boolean | null;
|
|
16395
|
+
createdAt?: any | null;
|
|
16396
|
+
} | null> | null;
|
|
16397
|
+
} | null;
|
|
16398
|
+
};
|
|
16399
|
+
export type AutomatedProspectingCampaignsQueryVariables = Exact<{
|
|
16400
|
+
accountId: Scalars['ID']['input'];
|
|
16401
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
16402
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
16403
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
16404
|
+
}>;
|
|
16405
|
+
export type AutomatedProspectingCampaignsQuery = {
|
|
16406
|
+
__typename?: 'Query';
|
|
16407
|
+
automatedProspectingCampaigns?: {
|
|
16408
|
+
__typename?: 'PaginatedAutomatedProspectingCampaigns';
|
|
16409
|
+
totalCount?: number | null;
|
|
16410
|
+
items?: Array<{
|
|
16411
|
+
__typename?: 'AutomatedProspectingCampaignObject';
|
|
16412
|
+
id?: string | null;
|
|
16413
|
+
configId?: string | null;
|
|
16414
|
+
userId?: string | null;
|
|
16415
|
+
accountId?: string | null;
|
|
16416
|
+
status?: string | null;
|
|
16417
|
+
emailSubject?: string | null;
|
|
16418
|
+
emailBody?: string | null;
|
|
16419
|
+
emailSubjectPreview?: string | null;
|
|
16420
|
+
emailBodyPreview?: string | null;
|
|
16421
|
+
attachments?: any | null;
|
|
16422
|
+
contactCount?: number | null;
|
|
16423
|
+
scheduledFor?: any | null;
|
|
16424
|
+
notificationSentAt?: any | null;
|
|
16425
|
+
sentAt?: any | null;
|
|
16426
|
+
skippedAt?: any | null;
|
|
16427
|
+
createdAt?: any | null;
|
|
16428
|
+
updatedAt?: any | null;
|
|
16429
|
+
sentCount?: number | null;
|
|
16430
|
+
replyCount?: number | null;
|
|
16431
|
+
contacts?: Array<{
|
|
16432
|
+
__typename?: 'AutomatedProspectingContactObject';
|
|
16433
|
+
id?: string | null;
|
|
16434
|
+
contactId?: string | null;
|
|
16435
|
+
contactLogId?: string | null;
|
|
16436
|
+
contactFirstName?: string | null;
|
|
16437
|
+
contactLastName?: string | null;
|
|
16438
|
+
contactEmail?: string | null;
|
|
16439
|
+
contactTitle?: string | null;
|
|
16440
|
+
contactCompanyName?: string | null;
|
|
16441
|
+
hasReplied?: boolean | null;
|
|
16442
|
+
createdAt?: any | null;
|
|
16443
|
+
} | null> | null;
|
|
16444
|
+
} | null> | null;
|
|
16445
|
+
} | null;
|
|
16446
|
+
};
|
|
16447
|
+
export type AutomatedProspectingConfigQueryVariables = Exact<{
|
|
16448
|
+
accountId: Scalars['ID']['input'];
|
|
16449
|
+
}>;
|
|
16450
|
+
export type AutomatedProspectingConfigQuery = {
|
|
16451
|
+
__typename?: 'Query';
|
|
16452
|
+
automatedProspectingConfig?: {
|
|
16453
|
+
__typename?: 'AutomatedProspectingConfigObject';
|
|
16454
|
+
id?: string | null;
|
|
16455
|
+
userId?: string | null;
|
|
16456
|
+
accountId?: string | null;
|
|
16457
|
+
buyerDescription?: string | null;
|
|
16458
|
+
targetStates?: any | null;
|
|
16459
|
+
frequency?: string | null;
|
|
16460
|
+
notificationTime?: string | null;
|
|
16461
|
+
notificationTimezone?: string | null;
|
|
16462
|
+
emailsPerBatch?: number | null;
|
|
16463
|
+
additionalNotes?: string | null;
|
|
16464
|
+
emailTone?: string | null;
|
|
16465
|
+
isActive?: boolean | null;
|
|
16466
|
+
llmParsedIndustries?: any | null;
|
|
16467
|
+
llmParsedStates?: any | null;
|
|
16468
|
+
nextScheduledAt?: any | null;
|
|
16469
|
+
createdAt?: any | null;
|
|
16470
|
+
updatedAt?: any | null;
|
|
16471
|
+
} | null;
|
|
16472
|
+
};
|
|
15860
16473
|
export type BusinessProfileQueryVariables = Exact<{
|
|
15861
16474
|
[key: string]: never;
|
|
15862
16475
|
}>;
|
|
@@ -23230,6 +23843,7 @@ export type RecentHistoryQuery = {
|
|
|
23230
23843
|
siteVisitNotes?: string | null;
|
|
23231
23844
|
siteVisitType?: string | null;
|
|
23232
23845
|
metadata?: any | null;
|
|
23846
|
+
createdAt?: any | null;
|
|
23233
23847
|
contact?: {
|
|
23234
23848
|
__typename?: 'ContactObject';
|
|
23235
23849
|
id?: string | null;
|
|
@@ -28455,6 +29069,33 @@ export declare function useAcceptInvitationMutation(baseOptions?: Apollo.Mutatio
|
|
|
28455
29069
|
export type AcceptInvitationMutationHookResult = ReturnType<typeof useAcceptInvitationMutation>;
|
|
28456
29070
|
export type AcceptInvitationMutationResult = Apollo.MutationResult<AcceptInvitationMutation>;
|
|
28457
29071
|
export type AcceptInvitationMutationOptions = Apollo.BaseMutationOptions<AcceptInvitationMutation, AcceptInvitationMutationVariables>;
|
|
29072
|
+
export declare const AddContactToAutomatedProspectingDocument: Apollo.DocumentNode;
|
|
29073
|
+
export type AddContactToAutomatedProspectingMutationFn = Apollo.MutationFunction<AddContactToAutomatedProspectingMutation, AddContactToAutomatedProspectingMutationVariables>;
|
|
29074
|
+
/**
|
|
29075
|
+
* __useAddContactToAutomatedProspectingMutation__
|
|
29076
|
+
*
|
|
29077
|
+
* To run a mutation, you first call `useAddContactToAutomatedProspectingMutation` within a React component and pass it any options that fit your needs.
|
|
29078
|
+
* When your component renders, `useAddContactToAutomatedProspectingMutation` returns a tuple that includes:
|
|
29079
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
29080
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
29081
|
+
*
|
|
29082
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
29083
|
+
*
|
|
29084
|
+
* @example
|
|
29085
|
+
* const [addContactToAutomatedProspectingMutation, { data, loading, error }] = useAddContactToAutomatedProspectingMutation({
|
|
29086
|
+
* variables: {
|
|
29087
|
+
* campaignId: // value for 'campaignId'
|
|
29088
|
+
* contactId: // value for 'contactId'
|
|
29089
|
+
* },
|
|
29090
|
+
* });
|
|
29091
|
+
*/
|
|
29092
|
+
export declare function useAddContactToAutomatedProspectingMutation(baseOptions?: Apollo.MutationHookOptions<AddContactToAutomatedProspectingMutation, AddContactToAutomatedProspectingMutationVariables>): Apollo.MutationTuple<AddContactToAutomatedProspectingMutation, Exact<{
|
|
29093
|
+
campaignId: Scalars["ID"]["input"];
|
|
29094
|
+
contactId: Scalars["ID"]["input"];
|
|
29095
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
29096
|
+
export type AddContactToAutomatedProspectingMutationHookResult = ReturnType<typeof useAddContactToAutomatedProspectingMutation>;
|
|
29097
|
+
export type AddContactToAutomatedProspectingMutationResult = Apollo.MutationResult<AddContactToAutomatedProspectingMutation>;
|
|
29098
|
+
export type AddContactToAutomatedProspectingMutationOptions = Apollo.BaseMutationOptions<AddContactToAutomatedProspectingMutation, AddContactToAutomatedProspectingMutationVariables>;
|
|
28458
29099
|
export declare const AddContactToSupplierListDocument: Apollo.DocumentNode;
|
|
28459
29100
|
export type AddContactToSupplierListMutationFn = Apollo.MutationFunction<AddContactToSupplierListMutation, AddContactToSupplierListMutationVariables>;
|
|
28460
29101
|
/**
|
|
@@ -28915,6 +29556,31 @@ export declare function useCompleteRfqMutation(baseOptions?: Apollo.MutationHook
|
|
|
28915
29556
|
export type CompleteRfqMutationHookResult = ReturnType<typeof useCompleteRfqMutation>;
|
|
28916
29557
|
export type CompleteRfqMutationResult = Apollo.MutationResult<CompleteRfqMutation>;
|
|
28917
29558
|
export type CompleteRfqMutationOptions = Apollo.BaseMutationOptions<CompleteRfqMutation, CompleteRfqMutationVariables>;
|
|
29559
|
+
export declare const ComposeAutomatedProspectingEmailDocument: Apollo.DocumentNode;
|
|
29560
|
+
export type ComposeAutomatedProspectingEmailMutationFn = Apollo.MutationFunction<ComposeAutomatedProspectingEmailMutation, ComposeAutomatedProspectingEmailMutationVariables>;
|
|
29561
|
+
/**
|
|
29562
|
+
* __useComposeAutomatedProspectingEmailMutation__
|
|
29563
|
+
*
|
|
29564
|
+
* To run a mutation, you first call `useComposeAutomatedProspectingEmailMutation` within a React component and pass it any options that fit your needs.
|
|
29565
|
+
* When your component renders, `useComposeAutomatedProspectingEmailMutation` returns a tuple that includes:
|
|
29566
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
29567
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
29568
|
+
*
|
|
29569
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
29570
|
+
*
|
|
29571
|
+
* @example
|
|
29572
|
+
* const [composeAutomatedProspectingEmailMutation, { data, loading, error }] = useComposeAutomatedProspectingEmailMutation({
|
|
29573
|
+
* variables: {
|
|
29574
|
+
* configId: // value for 'configId'
|
|
29575
|
+
* },
|
|
29576
|
+
* });
|
|
29577
|
+
*/
|
|
29578
|
+
export declare function useComposeAutomatedProspectingEmailMutation(baseOptions?: Apollo.MutationHookOptions<ComposeAutomatedProspectingEmailMutation, ComposeAutomatedProspectingEmailMutationVariables>): Apollo.MutationTuple<ComposeAutomatedProspectingEmailMutation, Exact<{
|
|
29579
|
+
configId: Scalars["ID"]["input"];
|
|
29580
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
29581
|
+
export type ComposeAutomatedProspectingEmailMutationHookResult = ReturnType<typeof useComposeAutomatedProspectingEmailMutation>;
|
|
29582
|
+
export type ComposeAutomatedProspectingEmailMutationResult = Apollo.MutationResult<ComposeAutomatedProspectingEmailMutation>;
|
|
29583
|
+
export type ComposeAutomatedProspectingEmailMutationOptions = Apollo.BaseMutationOptions<ComposeAutomatedProspectingEmailMutation, ComposeAutomatedProspectingEmailMutationVariables>;
|
|
28918
29584
|
export declare const CreateCallCampaignDocument: Apollo.DocumentNode;
|
|
28919
29585
|
export type CreateCallCampaignMutationFn = Apollo.MutationFunction<CreateCallCampaignMutation, CreateCallCampaignMutationVariables>;
|
|
28920
29586
|
/**
|
|
@@ -30022,6 +30688,33 @@ export declare function useInviteUserMutation(baseOptions?: Apollo.MutationHookO
|
|
|
30022
30688
|
export type InviteUserMutationHookResult = ReturnType<typeof useInviteUserMutation>;
|
|
30023
30689
|
export type InviteUserMutationResult = Apollo.MutationResult<InviteUserMutation>;
|
|
30024
30690
|
export type InviteUserMutationOptions = Apollo.BaseMutationOptions<InviteUserMutation, InviteUserMutationVariables>;
|
|
30691
|
+
export declare const LaunchAutomatedProspectingDocument: Apollo.DocumentNode;
|
|
30692
|
+
export type LaunchAutomatedProspectingMutationFn = Apollo.MutationFunction<LaunchAutomatedProspectingMutation, LaunchAutomatedProspectingMutationVariables>;
|
|
30693
|
+
/**
|
|
30694
|
+
* __useLaunchAutomatedProspectingMutation__
|
|
30695
|
+
*
|
|
30696
|
+
* To run a mutation, you first call `useLaunchAutomatedProspectingMutation` within a React component and pass it any options that fit your needs.
|
|
30697
|
+
* When your component renders, `useLaunchAutomatedProspectingMutation` returns a tuple that includes:
|
|
30698
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
30699
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
30700
|
+
*
|
|
30701
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
30702
|
+
*
|
|
30703
|
+
* @example
|
|
30704
|
+
* const [launchAutomatedProspectingMutation, { data, loading, error }] = useLaunchAutomatedProspectingMutation({
|
|
30705
|
+
* variables: {
|
|
30706
|
+
* campaignId: // value for 'campaignId'
|
|
30707
|
+
* scheduledFor: // value for 'scheduledFor'
|
|
30708
|
+
* },
|
|
30709
|
+
* });
|
|
30710
|
+
*/
|
|
30711
|
+
export declare function useLaunchAutomatedProspectingMutation(baseOptions?: Apollo.MutationHookOptions<LaunchAutomatedProspectingMutation, LaunchAutomatedProspectingMutationVariables>): Apollo.MutationTuple<LaunchAutomatedProspectingMutation, Exact<{
|
|
30712
|
+
campaignId: Scalars["ID"]["input"];
|
|
30713
|
+
scheduledFor?: InputMaybe<Scalars["DateTime"]["input"]>;
|
|
30714
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
30715
|
+
export type LaunchAutomatedProspectingMutationHookResult = ReturnType<typeof useLaunchAutomatedProspectingMutation>;
|
|
30716
|
+
export type LaunchAutomatedProspectingMutationResult = Apollo.MutationResult<LaunchAutomatedProspectingMutation>;
|
|
30717
|
+
export type LaunchAutomatedProspectingMutationOptions = Apollo.BaseMutationOptions<LaunchAutomatedProspectingMutation, LaunchAutomatedProspectingMutationVariables>;
|
|
30025
30718
|
export declare const LoginDocument: Apollo.DocumentNode;
|
|
30026
30719
|
export type LoginMutationFn = Apollo.MutationFunction<LoginMutation, LoginMutationVariables>;
|
|
30027
30720
|
/**
|
|
@@ -30283,6 +30976,33 @@ export declare function useRejectInvitationMutation(baseOptions?: Apollo.Mutatio
|
|
|
30283
30976
|
export type RejectInvitationMutationHookResult = ReturnType<typeof useRejectInvitationMutation>;
|
|
30284
30977
|
export type RejectInvitationMutationResult = Apollo.MutationResult<RejectInvitationMutation>;
|
|
30285
30978
|
export type RejectInvitationMutationOptions = Apollo.BaseMutationOptions<RejectInvitationMutation, RejectInvitationMutationVariables>;
|
|
30979
|
+
export declare const RemoveContactFromAutomatedProspectingDocument: Apollo.DocumentNode;
|
|
30980
|
+
export type RemoveContactFromAutomatedProspectingMutationFn = Apollo.MutationFunction<RemoveContactFromAutomatedProspectingMutation, RemoveContactFromAutomatedProspectingMutationVariables>;
|
|
30981
|
+
/**
|
|
30982
|
+
* __useRemoveContactFromAutomatedProspectingMutation__
|
|
30983
|
+
*
|
|
30984
|
+
* To run a mutation, you first call `useRemoveContactFromAutomatedProspectingMutation` within a React component and pass it any options that fit your needs.
|
|
30985
|
+
* When your component renders, `useRemoveContactFromAutomatedProspectingMutation` returns a tuple that includes:
|
|
30986
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
30987
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
30988
|
+
*
|
|
30989
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
30990
|
+
*
|
|
30991
|
+
* @example
|
|
30992
|
+
* const [removeContactFromAutomatedProspectingMutation, { data, loading, error }] = useRemoveContactFromAutomatedProspectingMutation({
|
|
30993
|
+
* variables: {
|
|
30994
|
+
* campaignId: // value for 'campaignId'
|
|
30995
|
+
* contactId: // value for 'contactId'
|
|
30996
|
+
* },
|
|
30997
|
+
* });
|
|
30998
|
+
*/
|
|
30999
|
+
export declare function useRemoveContactFromAutomatedProspectingMutation(baseOptions?: Apollo.MutationHookOptions<RemoveContactFromAutomatedProspectingMutation, RemoveContactFromAutomatedProspectingMutationVariables>): Apollo.MutationTuple<RemoveContactFromAutomatedProspectingMutation, Exact<{
|
|
31000
|
+
campaignId: Scalars["ID"]["input"];
|
|
31001
|
+
contactId: Scalars["ID"]["input"];
|
|
31002
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
31003
|
+
export type RemoveContactFromAutomatedProspectingMutationHookResult = ReturnType<typeof useRemoveContactFromAutomatedProspectingMutation>;
|
|
31004
|
+
export type RemoveContactFromAutomatedProspectingMutationResult = Apollo.MutationResult<RemoveContactFromAutomatedProspectingMutation>;
|
|
31005
|
+
export type RemoveContactFromAutomatedProspectingMutationOptions = Apollo.BaseMutationOptions<RemoveContactFromAutomatedProspectingMutation, RemoveContactFromAutomatedProspectingMutationVariables>;
|
|
30286
31006
|
export declare const RemoveContactFromMySupplierDocument: Apollo.DocumentNode;
|
|
30287
31007
|
export type RemoveContactFromMySupplierMutationFn = Apollo.MutationFunction<RemoveContactFromMySupplierMutation, RemoveContactFromMySupplierMutationVariables>;
|
|
30288
31008
|
/**
|
|
@@ -30549,6 +31269,30 @@ export declare function useRemoveSupplierFromSupplierListMutation(baseOptions?:
|
|
|
30549
31269
|
export type RemoveSupplierFromSupplierListMutationHookResult = ReturnType<typeof useRemoveSupplierFromSupplierListMutation>;
|
|
30550
31270
|
export type RemoveSupplierFromSupplierListMutationResult = Apollo.MutationResult<RemoveSupplierFromSupplierListMutation>;
|
|
30551
31271
|
export type RemoveSupplierFromSupplierListMutationOptions = Apollo.BaseMutationOptions<RemoveSupplierFromSupplierListMutation, RemoveSupplierFromSupplierListMutationVariables>;
|
|
31272
|
+
export declare const RequestProAccessDocument: Apollo.DocumentNode;
|
|
31273
|
+
export type RequestProAccessMutationFn = Apollo.MutationFunction<RequestProAccessMutation, RequestProAccessMutationVariables>;
|
|
31274
|
+
/**
|
|
31275
|
+
* __useRequestProAccessMutation__
|
|
31276
|
+
*
|
|
31277
|
+
* To run a mutation, you first call `useRequestProAccessMutation` within a React component and pass it any options that fit your needs.
|
|
31278
|
+
* When your component renders, `useRequestProAccessMutation` returns a tuple that includes:
|
|
31279
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
31280
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
31281
|
+
*
|
|
31282
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
31283
|
+
*
|
|
31284
|
+
* @example
|
|
31285
|
+
* const [requestProAccessMutation, { data, loading, error }] = useRequestProAccessMutation({
|
|
31286
|
+
* variables: {
|
|
31287
|
+
* },
|
|
31288
|
+
* });
|
|
31289
|
+
*/
|
|
31290
|
+
export declare function useRequestProAccessMutation(baseOptions?: Apollo.MutationHookOptions<RequestProAccessMutation, RequestProAccessMutationVariables>): Apollo.MutationTuple<RequestProAccessMutation, Exact<{
|
|
31291
|
+
[key: string]: never;
|
|
31292
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
31293
|
+
export type RequestProAccessMutationHookResult = ReturnType<typeof useRequestProAccessMutation>;
|
|
31294
|
+
export type RequestProAccessMutationResult = Apollo.MutationResult<RequestProAccessMutation>;
|
|
31295
|
+
export type RequestProAccessMutationOptions = Apollo.BaseMutationOptions<RequestProAccessMutation, RequestProAccessMutationVariables>;
|
|
30552
31296
|
export declare const ResumeCombinedCampaignDocument: Apollo.DocumentNode;
|
|
30553
31297
|
export type ResumeCombinedCampaignMutationFn = Apollo.MutationFunction<ResumeCombinedCampaignMutation, ResumeCombinedCampaignMutationVariables>;
|
|
30554
31298
|
/**
|
|
@@ -30574,6 +31318,33 @@ export declare function useResumeCombinedCampaignMutation(baseOptions?: Apollo.M
|
|
|
30574
31318
|
export type ResumeCombinedCampaignMutationHookResult = ReturnType<typeof useResumeCombinedCampaignMutation>;
|
|
30575
31319
|
export type ResumeCombinedCampaignMutationResult = Apollo.MutationResult<ResumeCombinedCampaignMutation>;
|
|
30576
31320
|
export type ResumeCombinedCampaignMutationOptions = Apollo.BaseMutationOptions<ResumeCombinedCampaignMutation, ResumeCombinedCampaignMutationVariables>;
|
|
31321
|
+
export declare const SaveAutomatedProspectingConfigDocument: Apollo.DocumentNode;
|
|
31322
|
+
export type SaveAutomatedProspectingConfigMutationFn = Apollo.MutationFunction<SaveAutomatedProspectingConfigMutation, SaveAutomatedProspectingConfigMutationVariables>;
|
|
31323
|
+
/**
|
|
31324
|
+
* __useSaveAutomatedProspectingConfigMutation__
|
|
31325
|
+
*
|
|
31326
|
+
* To run a mutation, you first call `useSaveAutomatedProspectingConfigMutation` within a React component and pass it any options that fit your needs.
|
|
31327
|
+
* When your component renders, `useSaveAutomatedProspectingConfigMutation` returns a tuple that includes:
|
|
31328
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
31329
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
31330
|
+
*
|
|
31331
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
31332
|
+
*
|
|
31333
|
+
* @example
|
|
31334
|
+
* const [saveAutomatedProspectingConfigMutation, { data, loading, error }] = useSaveAutomatedProspectingConfigMutation({
|
|
31335
|
+
* variables: {
|
|
31336
|
+
* accountId: // value for 'accountId'
|
|
31337
|
+
* input: // value for 'input'
|
|
31338
|
+
* },
|
|
31339
|
+
* });
|
|
31340
|
+
*/
|
|
31341
|
+
export declare function useSaveAutomatedProspectingConfigMutation(baseOptions?: Apollo.MutationHookOptions<SaveAutomatedProspectingConfigMutation, SaveAutomatedProspectingConfigMutationVariables>): Apollo.MutationTuple<SaveAutomatedProspectingConfigMutation, Exact<{
|
|
31342
|
+
accountId: Scalars["ID"]["input"];
|
|
31343
|
+
input: AutomatedProspectingCampaignInput;
|
|
31344
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
31345
|
+
export type SaveAutomatedProspectingConfigMutationHookResult = ReturnType<typeof useSaveAutomatedProspectingConfigMutation>;
|
|
31346
|
+
export type SaveAutomatedProspectingConfigMutationResult = Apollo.MutationResult<SaveAutomatedProspectingConfigMutation>;
|
|
31347
|
+
export type SaveAutomatedProspectingConfigMutationOptions = Apollo.BaseMutationOptions<SaveAutomatedProspectingConfigMutation, SaveAutomatedProspectingConfigMutationVariables>;
|
|
30577
31348
|
export declare const SaveNylasConnectionDocument: Apollo.DocumentNode;
|
|
30578
31349
|
export type SaveNylasConnectionMutationFn = Apollo.MutationFunction<SaveNylasConnectionMutation, SaveNylasConnectionMutationVariables>;
|
|
30579
31350
|
/**
|
|
@@ -30945,6 +31716,31 @@ export declare function useSignupMutation(baseOptions?: Apollo.MutationHookOptio
|
|
|
30945
31716
|
export type SignupMutationHookResult = ReturnType<typeof useSignupMutation>;
|
|
30946
31717
|
export type SignupMutationResult = Apollo.MutationResult<SignupMutation>;
|
|
30947
31718
|
export type SignupMutationOptions = Apollo.BaseMutationOptions<SignupMutation, SignupMutationVariables>;
|
|
31719
|
+
export declare const SkipAutomatedProspectingDocument: Apollo.DocumentNode;
|
|
31720
|
+
export type SkipAutomatedProspectingMutationFn = Apollo.MutationFunction<SkipAutomatedProspectingMutation, SkipAutomatedProspectingMutationVariables>;
|
|
31721
|
+
/**
|
|
31722
|
+
* __useSkipAutomatedProspectingMutation__
|
|
31723
|
+
*
|
|
31724
|
+
* To run a mutation, you first call `useSkipAutomatedProspectingMutation` within a React component and pass it any options that fit your needs.
|
|
31725
|
+
* When your component renders, `useSkipAutomatedProspectingMutation` returns a tuple that includes:
|
|
31726
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
31727
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
31728
|
+
*
|
|
31729
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
31730
|
+
*
|
|
31731
|
+
* @example
|
|
31732
|
+
* const [skipAutomatedProspectingMutation, { data, loading, error }] = useSkipAutomatedProspectingMutation({
|
|
31733
|
+
* variables: {
|
|
31734
|
+
* campaignId: // value for 'campaignId'
|
|
31735
|
+
* },
|
|
31736
|
+
* });
|
|
31737
|
+
*/
|
|
31738
|
+
export declare function useSkipAutomatedProspectingMutation(baseOptions?: Apollo.MutationHookOptions<SkipAutomatedProspectingMutation, SkipAutomatedProspectingMutationVariables>): Apollo.MutationTuple<SkipAutomatedProspectingMutation, Exact<{
|
|
31739
|
+
campaignId: Scalars["ID"]["input"];
|
|
31740
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
31741
|
+
export type SkipAutomatedProspectingMutationHookResult = ReturnType<typeof useSkipAutomatedProspectingMutation>;
|
|
31742
|
+
export type SkipAutomatedProspectingMutationResult = Apollo.MutationResult<SkipAutomatedProspectingMutation>;
|
|
31743
|
+
export type SkipAutomatedProspectingMutationOptions = Apollo.BaseMutationOptions<SkipAutomatedProspectingMutation, SkipAutomatedProspectingMutationVariables>;
|
|
30948
31744
|
export declare const StartCampaignDocument: Apollo.DocumentNode;
|
|
30949
31745
|
export type StartCampaignMutationFn = Apollo.MutationFunction<StartCampaignMutation, StartCampaignMutationVariables>;
|
|
30950
31746
|
/**
|
|
@@ -31045,6 +31841,31 @@ export declare function useUnhideRecordMutation(baseOptions?: Apollo.MutationHoo
|
|
|
31045
31841
|
export type UnhideRecordMutationHookResult = ReturnType<typeof useUnhideRecordMutation>;
|
|
31046
31842
|
export type UnhideRecordMutationResult = Apollo.MutationResult<UnhideRecordMutation>;
|
|
31047
31843
|
export type UnhideRecordMutationOptions = Apollo.BaseMutationOptions<UnhideRecordMutation, UnhideRecordMutationVariables>;
|
|
31844
|
+
export declare const UnskipAutomatedProspectingDocument: Apollo.DocumentNode;
|
|
31845
|
+
export type UnskipAutomatedProspectingMutationFn = Apollo.MutationFunction<UnskipAutomatedProspectingMutation, UnskipAutomatedProspectingMutationVariables>;
|
|
31846
|
+
/**
|
|
31847
|
+
* __useUnskipAutomatedProspectingMutation__
|
|
31848
|
+
*
|
|
31849
|
+
* To run a mutation, you first call `useUnskipAutomatedProspectingMutation` within a React component and pass it any options that fit your needs.
|
|
31850
|
+
* When your component renders, `useUnskipAutomatedProspectingMutation` returns a tuple that includes:
|
|
31851
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
31852
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
31853
|
+
*
|
|
31854
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
31855
|
+
*
|
|
31856
|
+
* @example
|
|
31857
|
+
* const [unskipAutomatedProspectingMutation, { data, loading, error }] = useUnskipAutomatedProspectingMutation({
|
|
31858
|
+
* variables: {
|
|
31859
|
+
* campaignId: // value for 'campaignId'
|
|
31860
|
+
* },
|
|
31861
|
+
* });
|
|
31862
|
+
*/
|
|
31863
|
+
export declare function useUnskipAutomatedProspectingMutation(baseOptions?: Apollo.MutationHookOptions<UnskipAutomatedProspectingMutation, UnskipAutomatedProspectingMutationVariables>): Apollo.MutationTuple<UnskipAutomatedProspectingMutation, Exact<{
|
|
31864
|
+
campaignId: Scalars["ID"]["input"];
|
|
31865
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
31866
|
+
export type UnskipAutomatedProspectingMutationHookResult = ReturnType<typeof useUnskipAutomatedProspectingMutation>;
|
|
31867
|
+
export type UnskipAutomatedProspectingMutationResult = Apollo.MutationResult<UnskipAutomatedProspectingMutation>;
|
|
31868
|
+
export type UnskipAutomatedProspectingMutationOptions = Apollo.BaseMutationOptions<UnskipAutomatedProspectingMutation, UnskipAutomatedProspectingMutationVariables>;
|
|
31048
31869
|
export declare const UnsubscribeFromEmailsDocument: Apollo.DocumentNode;
|
|
31049
31870
|
export type UnsubscribeFromEmailsMutationFn = Apollo.MutationFunction<UnsubscribeFromEmailsMutation, UnsubscribeFromEmailsMutationVariables>;
|
|
31050
31871
|
/**
|
|
@@ -31072,6 +31893,66 @@ export declare function useUnsubscribeFromEmailsMutation(baseOptions?: Apollo.Mu
|
|
|
31072
31893
|
export type UnsubscribeFromEmailsMutationHookResult = ReturnType<typeof useUnsubscribeFromEmailsMutation>;
|
|
31073
31894
|
export type UnsubscribeFromEmailsMutationResult = Apollo.MutationResult<UnsubscribeFromEmailsMutation>;
|
|
31074
31895
|
export type UnsubscribeFromEmailsMutationOptions = Apollo.BaseMutationOptions<UnsubscribeFromEmailsMutation, UnsubscribeFromEmailsMutationVariables>;
|
|
31896
|
+
export declare const UpdateAutomatedProspectingCampaignDocument: Apollo.DocumentNode;
|
|
31897
|
+
export type UpdateAutomatedProspectingCampaignMutationFn = Apollo.MutationFunction<UpdateAutomatedProspectingCampaignMutation, UpdateAutomatedProspectingCampaignMutationVariables>;
|
|
31898
|
+
/**
|
|
31899
|
+
* __useUpdateAutomatedProspectingCampaignMutation__
|
|
31900
|
+
*
|
|
31901
|
+
* To run a mutation, you first call `useUpdateAutomatedProspectingCampaignMutation` within a React component and pass it any options that fit your needs.
|
|
31902
|
+
* When your component renders, `useUpdateAutomatedProspectingCampaignMutation` returns a tuple that includes:
|
|
31903
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
31904
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
31905
|
+
*
|
|
31906
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
31907
|
+
*
|
|
31908
|
+
* @example
|
|
31909
|
+
* const [updateAutomatedProspectingCampaignMutation, { data, loading, error }] = useUpdateAutomatedProspectingCampaignMutation({
|
|
31910
|
+
* variables: {
|
|
31911
|
+
* attachments: // value for 'attachments'
|
|
31912
|
+
* campaignId: // value for 'campaignId'
|
|
31913
|
+
* emailBody: // value for 'emailBody'
|
|
31914
|
+
* emailSubject: // value for 'emailSubject'
|
|
31915
|
+
* scheduledFor: // value for 'scheduledFor'
|
|
31916
|
+
* },
|
|
31917
|
+
* });
|
|
31918
|
+
*/
|
|
31919
|
+
export declare function useUpdateAutomatedProspectingCampaignMutation(baseOptions?: Apollo.MutationHookOptions<UpdateAutomatedProspectingCampaignMutation, UpdateAutomatedProspectingCampaignMutationVariables>): Apollo.MutationTuple<UpdateAutomatedProspectingCampaignMutation, Exact<{
|
|
31920
|
+
attachments?: InputMaybe<Scalars["String"]["input"]>;
|
|
31921
|
+
campaignId: Scalars["ID"]["input"];
|
|
31922
|
+
emailBody?: InputMaybe<Scalars["String"]["input"]>;
|
|
31923
|
+
emailSubject?: InputMaybe<Scalars["String"]["input"]>;
|
|
31924
|
+
scheduledFor?: InputMaybe<Scalars["DateTime"]["input"]>;
|
|
31925
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
31926
|
+
export type UpdateAutomatedProspectingCampaignMutationHookResult = ReturnType<typeof useUpdateAutomatedProspectingCampaignMutation>;
|
|
31927
|
+
export type UpdateAutomatedProspectingCampaignMutationResult = Apollo.MutationResult<UpdateAutomatedProspectingCampaignMutation>;
|
|
31928
|
+
export type UpdateAutomatedProspectingCampaignMutationOptions = Apollo.BaseMutationOptions<UpdateAutomatedProspectingCampaignMutation, UpdateAutomatedProspectingCampaignMutationVariables>;
|
|
31929
|
+
export declare const UpdateAutomatedProspectingIndustriesDocument: Apollo.DocumentNode;
|
|
31930
|
+
export type UpdateAutomatedProspectingIndustriesMutationFn = Apollo.MutationFunction<UpdateAutomatedProspectingIndustriesMutation, UpdateAutomatedProspectingIndustriesMutationVariables>;
|
|
31931
|
+
/**
|
|
31932
|
+
* __useUpdateAutomatedProspectingIndustriesMutation__
|
|
31933
|
+
*
|
|
31934
|
+
* To run a mutation, you first call `useUpdateAutomatedProspectingIndustriesMutation` within a React component and pass it any options that fit your needs.
|
|
31935
|
+
* When your component renders, `useUpdateAutomatedProspectingIndustriesMutation` returns a tuple that includes:
|
|
31936
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
31937
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
31938
|
+
*
|
|
31939
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
31940
|
+
*
|
|
31941
|
+
* @example
|
|
31942
|
+
* const [updateAutomatedProspectingIndustriesMutation, { data, loading, error }] = useUpdateAutomatedProspectingIndustriesMutation({
|
|
31943
|
+
* variables: {
|
|
31944
|
+
* configId: // value for 'configId'
|
|
31945
|
+
* industryIds: // value for 'industryIds'
|
|
31946
|
+
* },
|
|
31947
|
+
* });
|
|
31948
|
+
*/
|
|
31949
|
+
export declare function useUpdateAutomatedProspectingIndustriesMutation(baseOptions?: Apollo.MutationHookOptions<UpdateAutomatedProspectingIndustriesMutation, UpdateAutomatedProspectingIndustriesMutationVariables>): Apollo.MutationTuple<UpdateAutomatedProspectingIndustriesMutation, Exact<{
|
|
31950
|
+
configId: Scalars["ID"]["input"];
|
|
31951
|
+
industryIds: Array<InputMaybe<Scalars["Int"]["input"]>> | InputMaybe<Scalars["Int"]["input"]>;
|
|
31952
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
31953
|
+
export type UpdateAutomatedProspectingIndustriesMutationHookResult = ReturnType<typeof useUpdateAutomatedProspectingIndustriesMutation>;
|
|
31954
|
+
export type UpdateAutomatedProspectingIndustriesMutationResult = Apollo.MutationResult<UpdateAutomatedProspectingIndustriesMutation>;
|
|
31955
|
+
export type UpdateAutomatedProspectingIndustriesMutationOptions = Apollo.BaseMutationOptions<UpdateAutomatedProspectingIndustriesMutation, UpdateAutomatedProspectingIndustriesMutationVariables>;
|
|
31075
31956
|
export declare const UpdateCallCampaignDocument: Apollo.DocumentNode;
|
|
31076
31957
|
export type UpdateCallCampaignMutationFn = Apollo.MutationFunction<UpdateCallCampaignMutation, UpdateCallCampaignMutationVariables>;
|
|
31077
31958
|
/**
|
|
@@ -31708,6 +32589,36 @@ export declare function useValidateOtpAndResetPasswordMutation(baseOptions?: Apo
|
|
|
31708
32589
|
export type ValidateOtpAndResetPasswordMutationHookResult = ReturnType<typeof useValidateOtpAndResetPasswordMutation>;
|
|
31709
32590
|
export type ValidateOtpAndResetPasswordMutationResult = Apollo.MutationResult<ValidateOtpAndResetPasswordMutation>;
|
|
31710
32591
|
export type ValidateOtpAndResetPasswordMutationOptions = Apollo.BaseMutationOptions<ValidateOtpAndResetPasswordMutation, ValidateOtpAndResetPasswordMutationVariables>;
|
|
32592
|
+
export declare const AccountFeatureFlagsDocument: Apollo.DocumentNode;
|
|
32593
|
+
/**
|
|
32594
|
+
* __useAccountFeatureFlagsQuery__
|
|
32595
|
+
*
|
|
32596
|
+
* To run a query within a React component, call `useAccountFeatureFlagsQuery` and pass it any options that fit your needs.
|
|
32597
|
+
* When your component renders, `useAccountFeatureFlagsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
32598
|
+
* you can use to render your UI.
|
|
32599
|
+
*
|
|
32600
|
+
* @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;
|
|
32601
|
+
*
|
|
32602
|
+
* @example
|
|
32603
|
+
* const { data, loading, error } = useAccountFeatureFlagsQuery({
|
|
32604
|
+
* variables: {
|
|
32605
|
+
* accountId: // value for 'accountId'
|
|
32606
|
+
* },
|
|
32607
|
+
* });
|
|
32608
|
+
*/
|
|
32609
|
+
export declare function useAccountFeatureFlagsQuery(baseOptions?: Apollo.QueryHookOptions<AccountFeatureFlagsQuery, AccountFeatureFlagsQueryVariables>): Apollo.QueryResult<AccountFeatureFlagsQuery, Exact<{
|
|
32610
|
+
accountId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
32611
|
+
}>>;
|
|
32612
|
+
export declare function useAccountFeatureFlagsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<AccountFeatureFlagsQuery, AccountFeatureFlagsQueryVariables>): Apollo.LazyQueryResultTuple<AccountFeatureFlagsQuery, Exact<{
|
|
32613
|
+
accountId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
32614
|
+
}>>;
|
|
32615
|
+
export declare function useAccountFeatureFlagsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<AccountFeatureFlagsQuery, AccountFeatureFlagsQueryVariables>): Apollo.UseSuspenseQueryResult<AccountFeatureFlagsQuery | undefined, Exact<{
|
|
32616
|
+
accountId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
32617
|
+
}>>;
|
|
32618
|
+
export type AccountFeatureFlagsQueryHookResult = ReturnType<typeof useAccountFeatureFlagsQuery>;
|
|
32619
|
+
export type AccountFeatureFlagsLazyQueryHookResult = ReturnType<typeof useAccountFeatureFlagsLazyQuery>;
|
|
32620
|
+
export type AccountFeatureFlagsSuspenseQueryHookResult = ReturnType<typeof useAccountFeatureFlagsSuspenseQuery>;
|
|
32621
|
+
export type AccountFeatureFlagsQueryResult = Apollo.QueryResult<AccountFeatureFlagsQuery, AccountFeatureFlagsQueryVariables>;
|
|
31711
32622
|
export declare const AccountMembersDocument: Apollo.DocumentNode;
|
|
31712
32623
|
/**
|
|
31713
32624
|
* __useAccountMembersQuery__
|
|
@@ -31795,6 +32706,123 @@ export type AccountSubscriptionQueryHookResult = ReturnType<typeof useAccountSub
|
|
|
31795
32706
|
export type AccountSubscriptionLazyQueryHookResult = ReturnType<typeof useAccountSubscriptionLazyQuery>;
|
|
31796
32707
|
export type AccountSubscriptionSuspenseQueryHookResult = ReturnType<typeof useAccountSubscriptionSuspenseQuery>;
|
|
31797
32708
|
export type AccountSubscriptionQueryResult = Apollo.QueryResult<AccountSubscriptionQuery, AccountSubscriptionQueryVariables>;
|
|
32709
|
+
export declare const AutomatedProspectingCampaignDocument: Apollo.DocumentNode;
|
|
32710
|
+
/**
|
|
32711
|
+
* __useAutomatedProspectingCampaignQuery__
|
|
32712
|
+
*
|
|
32713
|
+
* To run a query within a React component, call `useAutomatedProspectingCampaignQuery` and pass it any options that fit your needs.
|
|
32714
|
+
* When your component renders, `useAutomatedProspectingCampaignQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
32715
|
+
* you can use to render your UI.
|
|
32716
|
+
*
|
|
32717
|
+
* @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;
|
|
32718
|
+
*
|
|
32719
|
+
* @example
|
|
32720
|
+
* const { data, loading, error } = useAutomatedProspectingCampaignQuery({
|
|
32721
|
+
* variables: {
|
|
32722
|
+
* campaignId: // value for 'campaignId'
|
|
32723
|
+
* },
|
|
32724
|
+
* });
|
|
32725
|
+
*/
|
|
32726
|
+
export declare function useAutomatedProspectingCampaignQuery(baseOptions: Apollo.QueryHookOptions<AutomatedProspectingCampaignQuery, AutomatedProspectingCampaignQueryVariables> & ({
|
|
32727
|
+
variables: AutomatedProspectingCampaignQueryVariables;
|
|
32728
|
+
skip?: boolean;
|
|
32729
|
+
} | {
|
|
32730
|
+
skip: boolean;
|
|
32731
|
+
})): Apollo.QueryResult<AutomatedProspectingCampaignQuery, Exact<{
|
|
32732
|
+
campaignId: Scalars["ID"]["input"];
|
|
32733
|
+
}>>;
|
|
32734
|
+
export declare function useAutomatedProspectingCampaignLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<AutomatedProspectingCampaignQuery, AutomatedProspectingCampaignQueryVariables>): Apollo.LazyQueryResultTuple<AutomatedProspectingCampaignQuery, Exact<{
|
|
32735
|
+
campaignId: Scalars["ID"]["input"];
|
|
32736
|
+
}>>;
|
|
32737
|
+
export declare function useAutomatedProspectingCampaignSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<AutomatedProspectingCampaignQuery, AutomatedProspectingCampaignQueryVariables>): Apollo.UseSuspenseQueryResult<AutomatedProspectingCampaignQuery | undefined, Exact<{
|
|
32738
|
+
campaignId: Scalars["ID"]["input"];
|
|
32739
|
+
}>>;
|
|
32740
|
+
export type AutomatedProspectingCampaignQueryHookResult = ReturnType<typeof useAutomatedProspectingCampaignQuery>;
|
|
32741
|
+
export type AutomatedProspectingCampaignLazyQueryHookResult = ReturnType<typeof useAutomatedProspectingCampaignLazyQuery>;
|
|
32742
|
+
export type AutomatedProspectingCampaignSuspenseQueryHookResult = ReturnType<typeof useAutomatedProspectingCampaignSuspenseQuery>;
|
|
32743
|
+
export type AutomatedProspectingCampaignQueryResult = Apollo.QueryResult<AutomatedProspectingCampaignQuery, AutomatedProspectingCampaignQueryVariables>;
|
|
32744
|
+
export declare const AutomatedProspectingCampaignsDocument: Apollo.DocumentNode;
|
|
32745
|
+
/**
|
|
32746
|
+
* __useAutomatedProspectingCampaignsQuery__
|
|
32747
|
+
*
|
|
32748
|
+
* To run a query within a React component, call `useAutomatedProspectingCampaignsQuery` and pass it any options that fit your needs.
|
|
32749
|
+
* When your component renders, `useAutomatedProspectingCampaignsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
32750
|
+
* you can use to render your UI.
|
|
32751
|
+
*
|
|
32752
|
+
* @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;
|
|
32753
|
+
*
|
|
32754
|
+
* @example
|
|
32755
|
+
* const { data, loading, error } = useAutomatedProspectingCampaignsQuery({
|
|
32756
|
+
* variables: {
|
|
32757
|
+
* accountId: // value for 'accountId'
|
|
32758
|
+
* status: // value for 'status'
|
|
32759
|
+
* page: // value for 'page'
|
|
32760
|
+
* pageSize: // value for 'pageSize'
|
|
32761
|
+
* },
|
|
32762
|
+
* });
|
|
32763
|
+
*/
|
|
32764
|
+
export declare function useAutomatedProspectingCampaignsQuery(baseOptions: Apollo.QueryHookOptions<AutomatedProspectingCampaignsQuery, AutomatedProspectingCampaignsQueryVariables> & ({
|
|
32765
|
+
variables: AutomatedProspectingCampaignsQueryVariables;
|
|
32766
|
+
skip?: boolean;
|
|
32767
|
+
} | {
|
|
32768
|
+
skip: boolean;
|
|
32769
|
+
})): Apollo.QueryResult<AutomatedProspectingCampaignsQuery, Exact<{
|
|
32770
|
+
accountId: Scalars["ID"]["input"];
|
|
32771
|
+
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
32772
|
+
page?: InputMaybe<Scalars["Int"]["input"]>;
|
|
32773
|
+
pageSize?: InputMaybe<Scalars["Int"]["input"]>;
|
|
32774
|
+
}>>;
|
|
32775
|
+
export declare function useAutomatedProspectingCampaignsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<AutomatedProspectingCampaignsQuery, AutomatedProspectingCampaignsQueryVariables>): Apollo.LazyQueryResultTuple<AutomatedProspectingCampaignsQuery, Exact<{
|
|
32776
|
+
accountId: Scalars["ID"]["input"];
|
|
32777
|
+
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
32778
|
+
page?: InputMaybe<Scalars["Int"]["input"]>;
|
|
32779
|
+
pageSize?: InputMaybe<Scalars["Int"]["input"]>;
|
|
32780
|
+
}>>;
|
|
32781
|
+
export declare function useAutomatedProspectingCampaignsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<AutomatedProspectingCampaignsQuery, AutomatedProspectingCampaignsQueryVariables>): Apollo.UseSuspenseQueryResult<AutomatedProspectingCampaignsQuery | undefined, Exact<{
|
|
32782
|
+
accountId: Scalars["ID"]["input"];
|
|
32783
|
+
status?: InputMaybe<Scalars["String"]["input"]>;
|
|
32784
|
+
page?: InputMaybe<Scalars["Int"]["input"]>;
|
|
32785
|
+
pageSize?: InputMaybe<Scalars["Int"]["input"]>;
|
|
32786
|
+
}>>;
|
|
32787
|
+
export type AutomatedProspectingCampaignsQueryHookResult = ReturnType<typeof useAutomatedProspectingCampaignsQuery>;
|
|
32788
|
+
export type AutomatedProspectingCampaignsLazyQueryHookResult = ReturnType<typeof useAutomatedProspectingCampaignsLazyQuery>;
|
|
32789
|
+
export type AutomatedProspectingCampaignsSuspenseQueryHookResult = ReturnType<typeof useAutomatedProspectingCampaignsSuspenseQuery>;
|
|
32790
|
+
export type AutomatedProspectingCampaignsQueryResult = Apollo.QueryResult<AutomatedProspectingCampaignsQuery, AutomatedProspectingCampaignsQueryVariables>;
|
|
32791
|
+
export declare const AutomatedProspectingConfigDocument: Apollo.DocumentNode;
|
|
32792
|
+
/**
|
|
32793
|
+
* __useAutomatedProspectingConfigQuery__
|
|
32794
|
+
*
|
|
32795
|
+
* To run a query within a React component, call `useAutomatedProspectingConfigQuery` and pass it any options that fit your needs.
|
|
32796
|
+
* When your component renders, `useAutomatedProspectingConfigQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
32797
|
+
* you can use to render your UI.
|
|
32798
|
+
*
|
|
32799
|
+
* @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;
|
|
32800
|
+
*
|
|
32801
|
+
* @example
|
|
32802
|
+
* const { data, loading, error } = useAutomatedProspectingConfigQuery({
|
|
32803
|
+
* variables: {
|
|
32804
|
+
* accountId: // value for 'accountId'
|
|
32805
|
+
* },
|
|
32806
|
+
* });
|
|
32807
|
+
*/
|
|
32808
|
+
export declare function useAutomatedProspectingConfigQuery(baseOptions: Apollo.QueryHookOptions<AutomatedProspectingConfigQuery, AutomatedProspectingConfigQueryVariables> & ({
|
|
32809
|
+
variables: AutomatedProspectingConfigQueryVariables;
|
|
32810
|
+
skip?: boolean;
|
|
32811
|
+
} | {
|
|
32812
|
+
skip: boolean;
|
|
32813
|
+
})): Apollo.QueryResult<AutomatedProspectingConfigQuery, Exact<{
|
|
32814
|
+
accountId: Scalars["ID"]["input"];
|
|
32815
|
+
}>>;
|
|
32816
|
+
export declare function useAutomatedProspectingConfigLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<AutomatedProspectingConfigQuery, AutomatedProspectingConfigQueryVariables>): Apollo.LazyQueryResultTuple<AutomatedProspectingConfigQuery, Exact<{
|
|
32817
|
+
accountId: Scalars["ID"]["input"];
|
|
32818
|
+
}>>;
|
|
32819
|
+
export declare function useAutomatedProspectingConfigSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<AutomatedProspectingConfigQuery, AutomatedProspectingConfigQueryVariables>): Apollo.UseSuspenseQueryResult<AutomatedProspectingConfigQuery | undefined, Exact<{
|
|
32820
|
+
accountId: Scalars["ID"]["input"];
|
|
32821
|
+
}>>;
|
|
32822
|
+
export type AutomatedProspectingConfigQueryHookResult = ReturnType<typeof useAutomatedProspectingConfigQuery>;
|
|
32823
|
+
export type AutomatedProspectingConfigLazyQueryHookResult = ReturnType<typeof useAutomatedProspectingConfigLazyQuery>;
|
|
32824
|
+
export type AutomatedProspectingConfigSuspenseQueryHookResult = ReturnType<typeof useAutomatedProspectingConfigSuspenseQuery>;
|
|
32825
|
+
export type AutomatedProspectingConfigQueryResult = Apollo.QueryResult<AutomatedProspectingConfigQuery, AutomatedProspectingConfigQueryVariables>;
|
|
31798
32826
|
export declare const BusinessProfileDocument: Apollo.DocumentNode;
|
|
31799
32827
|
/**
|
|
31800
32828
|
* __useBusinessProfileQuery__
|