cf-service-sdk 0.1.6 → 0.1.8
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 +1003 -22
- package/dist/generated/graphql.js +663 -5
- package/dist/mutations.d.ts +9 -0
- package/dist/mutations.js +194 -1
- package/dist/queries.d.ts +4 -0
- package/dist/queries.js +102 -1
- package/dist/sdk.d.ts +14 -1
- package/dist/sdk.js +78 -0
- package/package.json +4 -2
|
@@ -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>;
|
|
@@ -2608,6 +2710,8 @@ export type Mutation = {
|
|
|
2608
2710
|
requestProAccess?: Maybe<RequestProAccess>;
|
|
2609
2711
|
/** Resume a paused combined campaign */
|
|
2610
2712
|
resumeCombinedCampaign?: Maybe<ResumeCombinedCampaign>;
|
|
2713
|
+
/** Create or update the automated prospecting config for a user/account, running LLM parsing. */
|
|
2714
|
+
saveAutomatedProspectingConfig?: Maybe<SaveAutomatedProspectingConfig>;
|
|
2611
2715
|
/** SaveNylasConnection - Save Nylas connection details after OAuth flow */
|
|
2612
2716
|
saveNylasConnection?: Maybe<SaveNylasConnection>;
|
|
2613
2717
|
scheduleCampaign?: Maybe<ScheduleCampaign>;
|
|
@@ -2633,6 +2737,8 @@ export type Mutation = {
|
|
|
2633
2737
|
setLeadNotInterested?: Maybe<SetLeadAsNotInterestedMutation>;
|
|
2634
2738
|
/** Signup - Register a new user and create their account */
|
|
2635
2739
|
signup?: Maybe<Signup>;
|
|
2740
|
+
/** Skip a queued or draft campaign and advance next_scheduled_at on the config. */
|
|
2741
|
+
skipAutomatedProspecting?: Maybe<SkipAutomatedProspecting>;
|
|
2636
2742
|
startCampaign?: Maybe<StartCampaign>;
|
|
2637
2743
|
/** Start a combined campaign */
|
|
2638
2744
|
startCombinedCampaign?: Maybe<StartCombinedCampaign>;
|
|
@@ -2640,8 +2746,14 @@ export type Mutation = {
|
|
|
2640
2746
|
submitFeedback?: Maybe<SubmitFeedback>;
|
|
2641
2747
|
/** Mutation to unhide a previously hidden record */
|
|
2642
2748
|
unhideRecord?: Maybe<UnhideRecord>;
|
|
2749
|
+
/** Restore a skipped campaign back to queued so the user can still send it. */
|
|
2750
|
+
unskipAutomatedProspecting?: Maybe<UnskipAutomatedProspecting>;
|
|
2643
2751
|
/** UnsubscribeFromEmails - Unsubscribe an email from specific types of emails */
|
|
2644
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>;
|
|
2645
2757
|
updateCallCampaign?: Maybe<UpdateCallCampaign>;
|
|
2646
2758
|
updateCallCampaignLog?: Maybe<UpdateCallCampaignLog>;
|
|
2647
2759
|
/** Update an existing call script template owned by the user's account. */
|
|
@@ -2684,6 +2796,11 @@ export type MutationAcceptInvitationArgs = {
|
|
|
2684
2796
|
input: InvitationResponseInput;
|
|
2685
2797
|
};
|
|
2686
2798
|
/** Mutations */
|
|
2799
|
+
export type MutationAddContactToAutomatedProspectingArgs = {
|
|
2800
|
+
campaignId: Scalars['ID']['input'];
|
|
2801
|
+
contactId: Scalars['ID']['input'];
|
|
2802
|
+
};
|
|
2803
|
+
/** Mutations */
|
|
2687
2804
|
export type MutationAddContactToSupplierListArgs = {
|
|
2688
2805
|
input: AddContactToSupplierListInput;
|
|
2689
2806
|
};
|
|
@@ -2754,6 +2871,10 @@ export type MutationCompleteRfqArgs = {
|
|
|
2754
2871
|
input: CompleteRfqInput;
|
|
2755
2872
|
};
|
|
2756
2873
|
/** Mutations */
|
|
2874
|
+
export type MutationComposeAutomatedProspectingEmailArgs = {
|
|
2875
|
+
configId: Scalars['ID']['input'];
|
|
2876
|
+
};
|
|
2877
|
+
/** Mutations */
|
|
2757
2878
|
export type MutationCreateCallCampaignArgs = {
|
|
2758
2879
|
input: CallCampaignInput;
|
|
2759
2880
|
};
|
|
@@ -2930,6 +3051,11 @@ export type MutationInviteUserArgs = {
|
|
|
2930
3051
|
input: InviteUserInput;
|
|
2931
3052
|
};
|
|
2932
3053
|
/** Mutations */
|
|
3054
|
+
export type MutationLaunchAutomatedProspectingArgs = {
|
|
3055
|
+
campaignId: Scalars['ID']['input'];
|
|
3056
|
+
scheduledFor?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3057
|
+
};
|
|
3058
|
+
/** Mutations */
|
|
2933
3059
|
export type MutationLoginArgs = {
|
|
2934
3060
|
email: Scalars['String']['input'];
|
|
2935
3061
|
password: Scalars['String']['input'];
|
|
@@ -2972,6 +3098,11 @@ export type MutationRejectInvitationArgs = {
|
|
|
2972
3098
|
input: InvitationResponseInput;
|
|
2973
3099
|
};
|
|
2974
3100
|
/** Mutations */
|
|
3101
|
+
export type MutationRemoveContactFromAutomatedProspectingArgs = {
|
|
3102
|
+
campaignId: Scalars['ID']['input'];
|
|
3103
|
+
contactId: Scalars['ID']['input'];
|
|
3104
|
+
};
|
|
3105
|
+
/** Mutations */
|
|
2975
3106
|
export type MutationRemoveContactFromMySupplierArgs = {
|
|
2976
3107
|
input: RemoveContactFromMySupplierInput;
|
|
2977
3108
|
};
|
|
@@ -3024,6 +3155,11 @@ export type MutationResumeCombinedCampaignArgs = {
|
|
|
3024
3155
|
id: Scalars['ID']['input'];
|
|
3025
3156
|
};
|
|
3026
3157
|
/** Mutations */
|
|
3158
|
+
export type MutationSaveAutomatedProspectingConfigArgs = {
|
|
3159
|
+
accountId: Scalars['ID']['input'];
|
|
3160
|
+
input: AutomatedProspectingCampaignInput;
|
|
3161
|
+
};
|
|
3162
|
+
/** Mutations */
|
|
3027
3163
|
export type MutationSaveNylasConnectionArgs = {
|
|
3028
3164
|
input: SaveNylasConnectionInput;
|
|
3029
3165
|
};
|
|
@@ -3099,6 +3235,10 @@ export type MutationSignupArgs = {
|
|
|
3099
3235
|
input: SignupInput;
|
|
3100
3236
|
};
|
|
3101
3237
|
/** Mutations */
|
|
3238
|
+
export type MutationSkipAutomatedProspectingArgs = {
|
|
3239
|
+
campaignId: Scalars['ID']['input'];
|
|
3240
|
+
};
|
|
3241
|
+
/** Mutations */
|
|
3102
3242
|
export type MutationStartCampaignArgs = {
|
|
3103
3243
|
id: Scalars['ID']['input'];
|
|
3104
3244
|
};
|
|
@@ -3115,11 +3255,28 @@ export type MutationUnhideRecordArgs = {
|
|
|
3115
3255
|
input: HiddenRecordInput;
|
|
3116
3256
|
};
|
|
3117
3257
|
/** Mutations */
|
|
3258
|
+
export type MutationUnskipAutomatedProspectingArgs = {
|
|
3259
|
+
campaignId: Scalars['ID']['input'];
|
|
3260
|
+
};
|
|
3261
|
+
/** Mutations */
|
|
3118
3262
|
export type MutationUnsubscribeFromEmailsArgs = {
|
|
3119
3263
|
emailHash: Scalars['String']['input'];
|
|
3120
3264
|
source: Scalars['String']['input'];
|
|
3121
3265
|
};
|
|
3122
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 */
|
|
3123
3280
|
export type MutationUpdateCallCampaignArgs = {
|
|
3124
3281
|
id: Scalars['ID']['input'];
|
|
3125
3282
|
input: CallCampaignInput;
|
|
@@ -3287,6 +3444,11 @@ export type NylasConnectionResponseType = {
|
|
|
3287
3444
|
/** Email provider (e.g., gmail, outlook) */
|
|
3288
3445
|
provider?: Maybe<Scalars['String']['output']>;
|
|
3289
3446
|
};
|
|
3447
|
+
export type PaginatedAutomatedProspectingCampaigns = {
|
|
3448
|
+
__typename?: 'PaginatedAutomatedProspectingCampaigns';
|
|
3449
|
+
items?: Maybe<Array<Maybe<AutomatedProspectingCampaignObject>>>;
|
|
3450
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
3451
|
+
};
|
|
3290
3452
|
export type PaginatedCallCampaignList = {
|
|
3291
3453
|
__typename?: 'PaginatedCallCampaignList';
|
|
3292
3454
|
items?: Maybe<Array<Maybe<CallCampaignObject>>>;
|
|
@@ -3747,10 +3909,14 @@ export type ProductTypeObject = {
|
|
|
3747
3909
|
/** Query */
|
|
3748
3910
|
export type Query = {
|
|
3749
3911
|
__typename?: 'Query';
|
|
3912
|
+
accountFeatureFlags?: Maybe<Scalars['GenericScalar']['output']>;
|
|
3750
3913
|
accountMembers?: Maybe<Array<Maybe<AccountMemberType>>>;
|
|
3751
3914
|
accountProfile?: Maybe<AccountProfileType>;
|
|
3752
3915
|
/** Get the current account's subscription */
|
|
3753
3916
|
accountSubscription?: Maybe<SubscriptionType>;
|
|
3917
|
+
automatedProspectingCampaign?: Maybe<AutomatedProspectingCampaignObject>;
|
|
3918
|
+
automatedProspectingCampaigns?: Maybe<PaginatedAutomatedProspectingCampaigns>;
|
|
3919
|
+
automatedProspectingConfig?: Maybe<AutomatedProspectingConfigObject>;
|
|
3754
3920
|
businessProfile?: Maybe<BusinessProfileType>;
|
|
3755
3921
|
/** Get a specific call campaign by ID */
|
|
3756
3922
|
callCampaign?: Maybe<CallCampaignObject>;
|
|
@@ -3887,6 +4053,25 @@ export type Query = {
|
|
|
3887
4053
|
userProfile?: Maybe<UserProfileType>;
|
|
3888
4054
|
};
|
|
3889
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 */
|
|
3890
4075
|
export type QueryCallCampaignArgs = {
|
|
3891
4076
|
id: Scalars['ID']['input'];
|
|
3892
4077
|
};
|
|
@@ -4358,6 +4543,12 @@ export type RejectInvitation = {
|
|
|
4358
4543
|
message?: Maybe<Scalars['String']['output']>;
|
|
4359
4544
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
4360
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
|
+
};
|
|
4361
4552
|
export type RemoveContactFromMySupplier = {
|
|
4362
4553
|
__typename?: 'RemoveContactFromMySupplier';
|
|
4363
4554
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -4572,6 +4763,13 @@ export type SalespersonStatsObject = {
|
|
|
4572
4763
|
user?: Maybe<UserType>;
|
|
4573
4764
|
userId?: Maybe<Scalars['Int']['output']>;
|
|
4574
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
|
+
};
|
|
4575
4773
|
/** SaveNylasConnection - Save Nylas connection details after OAuth flow */
|
|
4576
4774
|
export type SaveNylasConnection = {
|
|
4577
4775
|
__typename?: 'SaveNylasConnection';
|
|
@@ -4772,6 +4970,12 @@ export type SignupInput = {
|
|
|
4772
4970
|
password: Scalars['String']['input'];
|
|
4773
4971
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
4774
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
|
+
};
|
|
4775
4979
|
export declare enum SortDirection {
|
|
4776
4980
|
Asc = "ASC",
|
|
4777
4981
|
Desc = "DESC"
|
|
@@ -4959,12 +5163,31 @@ export type UnhideRecord = {
|
|
|
4959
5163
|
message?: Maybe<Scalars['String']['output']>;
|
|
4960
5164
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
4961
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
|
+
};
|
|
4962
5172
|
/** UnsubscribeFromEmails - Unsubscribe an email from specific types of emails */
|
|
4963
5173
|
export type UnsubscribeFromEmails = {
|
|
4964
5174
|
__typename?: 'UnsubscribeFromEmails';
|
|
4965
5175
|
message?: Maybe<Scalars['String']['output']>;
|
|
4966
5176
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
4967
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
|
+
};
|
|
4968
5191
|
export type UpdateCallCampaign = {
|
|
4969
5192
|
__typename?: 'UpdateCallCampaign';
|
|
4970
5193
|
callCampaign?: Maybe<CallCampaignObject>;
|
|
@@ -5347,6 +5570,31 @@ export type AcceptInvitationMutation = {
|
|
|
5347
5570
|
} | null;
|
|
5348
5571
|
} | null;
|
|
5349
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
|
+
};
|
|
5350
5598
|
export type AddContactToSupplierListMutationVariables = Exact<{
|
|
5351
5599
|
input: AddContactToSupplierListInput;
|
|
5352
5600
|
}>;
|
|
@@ -6223,6 +6471,52 @@ export type CompleteRfqMutation = {
|
|
|
6223
6471
|
} | null;
|
|
6224
6472
|
} | null;
|
|
6225
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
|
+
};
|
|
6226
6520
|
export type CreateCallCampaignMutationVariables = Exact<{
|
|
6227
6521
|
input: CallCampaignInput;
|
|
6228
6522
|
}>;
|
|
@@ -9872,6 +10166,53 @@ export type InviteUserMutation = {
|
|
|
9872
10166
|
} | null;
|
|
9873
10167
|
} | null;
|
|
9874
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
|
+
};
|
|
9875
10216
|
export type LoginMutationVariables = Exact<{
|
|
9876
10217
|
email: Scalars['String']['input'];
|
|
9877
10218
|
password: Scalars['String']['input'];
|
|
@@ -10213,6 +10554,18 @@ export type RejectInvitationMutation = {
|
|
|
10213
10554
|
message?: string | null;
|
|
10214
10555
|
} | null;
|
|
10215
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
|
+
};
|
|
10216
10569
|
export type RemoveContactFromMySupplierMutationVariables = Exact<{
|
|
10217
10570
|
input: RemoveContactFromMySupplierInput;
|
|
10218
10571
|
}>;
|
|
@@ -10726,6 +11079,38 @@ export type ResumeCombinedCampaignMutation = {
|
|
|
10726
11079
|
} | null;
|
|
10727
11080
|
} | null;
|
|
10728
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
|
+
};
|
|
10729
11114
|
export type SaveNylasConnectionMutationVariables = Exact<{
|
|
10730
11115
|
input: SaveNylasConnectionInput;
|
|
10731
11116
|
}>;
|
|
@@ -11894,6 +12279,17 @@ export type SignupMutation = {
|
|
|
11894
12279
|
userId?: string | null;
|
|
11895
12280
|
} | null;
|
|
11896
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
|
+
};
|
|
11897
12293
|
export type StartCampaignMutationVariables = Exact<{
|
|
11898
12294
|
id: Scalars['ID']['input'];
|
|
11899
12295
|
}>;
|
|
@@ -12084,6 +12480,17 @@ export type UnhideRecordMutation = {
|
|
|
12084
12480
|
message?: string | null;
|
|
12085
12481
|
} | null;
|
|
12086
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
|
+
};
|
|
12087
12494
|
export type UnsubscribeFromEmailsMutationVariables = Exact<{
|
|
12088
12495
|
emailHash: Scalars['String']['input'];
|
|
12089
12496
|
source: Scalars['String']['input'];
|
|
@@ -12096,6 +12503,68 @@ export type UnsubscribeFromEmailsMutation = {
|
|
|
12096
12503
|
message?: string | null;
|
|
12097
12504
|
} | null;
|
|
12098
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
|
+
};
|
|
12099
12568
|
export type UpdateCallCampaignMutationVariables = Exact<{
|
|
12100
12569
|
id: Scalars['ID']['input'];
|
|
12101
12570
|
input: CallCampaignInput;
|
|
@@ -15818,6 +16287,13 @@ export type ValidateOtpAndResetPasswordMutation = {
|
|
|
15818
16287
|
message?: string | null;
|
|
15819
16288
|
} | null;
|
|
15820
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
|
+
};
|
|
15821
16297
|
export type AccountMembersQueryVariables = Exact<{
|
|
15822
16298
|
[key: string]: never;
|
|
15823
16299
|
}>;
|
|
@@ -15853,30 +16329,145 @@ export type AccountProfileQuery = {
|
|
|
15853
16329
|
export type AccountSubscriptionQueryVariables = Exact<{
|
|
15854
16330
|
[key: string]: never;
|
|
15855
16331
|
}>;
|
|
15856
|
-
export type AccountSubscriptionQuery = {
|
|
16332
|
+
export type AccountSubscriptionQuery = {
|
|
16333
|
+
__typename?: 'Query';
|
|
16334
|
+
accountSubscription?: {
|
|
16335
|
+
__typename?: 'SubscriptionType';
|
|
16336
|
+
id: string;
|
|
16337
|
+
status: SaasSubscriptionStatusChoices;
|
|
16338
|
+
startedAt: any;
|
|
16339
|
+
endedAt?: any | null;
|
|
16340
|
+
isActive?: boolean | null;
|
|
16341
|
+
isEnterprise?: boolean | null;
|
|
16342
|
+
isFree?: boolean | null;
|
|
16343
|
+
plan?: {
|
|
16344
|
+
__typename?: 'PlanType';
|
|
16345
|
+
id: string;
|
|
16346
|
+
name: string;
|
|
16347
|
+
planType: SaasPlanPlanTypeChoices;
|
|
16348
|
+
description: string;
|
|
16349
|
+
isActive: boolean;
|
|
16350
|
+
limitations?: {
|
|
16351
|
+
__typename?: 'PlanLimitationsType';
|
|
16352
|
+
maxCompanySearchResults?: number | null;
|
|
16353
|
+
includeContacts?: boolean | null;
|
|
16354
|
+
} | null;
|
|
16355
|
+
} | null;
|
|
16356
|
+
} | null;
|
|
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 = {
|
|
15857
16451
|
__typename?: 'Query';
|
|
15858
|
-
|
|
15859
|
-
__typename?: '
|
|
15860
|
-
id
|
|
15861
|
-
|
|
15862
|
-
|
|
15863
|
-
|
|
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;
|
|
15864
16465
|
isActive?: boolean | null;
|
|
15865
|
-
|
|
15866
|
-
|
|
15867
|
-
|
|
15868
|
-
|
|
15869
|
-
|
|
15870
|
-
name: string;
|
|
15871
|
-
planType: SaasPlanPlanTypeChoices;
|
|
15872
|
-
description: string;
|
|
15873
|
-
isActive: boolean;
|
|
15874
|
-
limitations?: {
|
|
15875
|
-
__typename?: 'PlanLimitationsType';
|
|
15876
|
-
maxCompanySearchResults?: number | null;
|
|
15877
|
-
includeContacts?: boolean | null;
|
|
15878
|
-
} | null;
|
|
15879
|
-
} | null;
|
|
16466
|
+
llmParsedIndustries?: any | null;
|
|
16467
|
+
llmParsedStates?: any | null;
|
|
16468
|
+
nextScheduledAt?: any | null;
|
|
16469
|
+
createdAt?: any | null;
|
|
16470
|
+
updatedAt?: any | null;
|
|
15880
16471
|
} | null;
|
|
15881
16472
|
};
|
|
15882
16473
|
export type BusinessProfileQueryVariables = Exact<{
|
|
@@ -28478,6 +29069,33 @@ export declare function useAcceptInvitationMutation(baseOptions?: Apollo.Mutatio
|
|
|
28478
29069
|
export type AcceptInvitationMutationHookResult = ReturnType<typeof useAcceptInvitationMutation>;
|
|
28479
29070
|
export type AcceptInvitationMutationResult = Apollo.MutationResult<AcceptInvitationMutation>;
|
|
28480
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>;
|
|
28481
29099
|
export declare const AddContactToSupplierListDocument: Apollo.DocumentNode;
|
|
28482
29100
|
export type AddContactToSupplierListMutationFn = Apollo.MutationFunction<AddContactToSupplierListMutation, AddContactToSupplierListMutationVariables>;
|
|
28483
29101
|
/**
|
|
@@ -28938,6 +29556,31 @@ export declare function useCompleteRfqMutation(baseOptions?: Apollo.MutationHook
|
|
|
28938
29556
|
export type CompleteRfqMutationHookResult = ReturnType<typeof useCompleteRfqMutation>;
|
|
28939
29557
|
export type CompleteRfqMutationResult = Apollo.MutationResult<CompleteRfqMutation>;
|
|
28940
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>;
|
|
28941
29584
|
export declare const CreateCallCampaignDocument: Apollo.DocumentNode;
|
|
28942
29585
|
export type CreateCallCampaignMutationFn = Apollo.MutationFunction<CreateCallCampaignMutation, CreateCallCampaignMutationVariables>;
|
|
28943
29586
|
/**
|
|
@@ -30045,6 +30688,33 @@ export declare function useInviteUserMutation(baseOptions?: Apollo.MutationHookO
|
|
|
30045
30688
|
export type InviteUserMutationHookResult = ReturnType<typeof useInviteUserMutation>;
|
|
30046
30689
|
export type InviteUserMutationResult = Apollo.MutationResult<InviteUserMutation>;
|
|
30047
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>;
|
|
30048
30718
|
export declare const LoginDocument: Apollo.DocumentNode;
|
|
30049
30719
|
export type LoginMutationFn = Apollo.MutationFunction<LoginMutation, LoginMutationVariables>;
|
|
30050
30720
|
/**
|
|
@@ -30306,6 +30976,33 @@ export declare function useRejectInvitationMutation(baseOptions?: Apollo.Mutatio
|
|
|
30306
30976
|
export type RejectInvitationMutationHookResult = ReturnType<typeof useRejectInvitationMutation>;
|
|
30307
30977
|
export type RejectInvitationMutationResult = Apollo.MutationResult<RejectInvitationMutation>;
|
|
30308
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>;
|
|
30309
31006
|
export declare const RemoveContactFromMySupplierDocument: Apollo.DocumentNode;
|
|
30310
31007
|
export type RemoveContactFromMySupplierMutationFn = Apollo.MutationFunction<RemoveContactFromMySupplierMutation, RemoveContactFromMySupplierMutationVariables>;
|
|
30311
31008
|
/**
|
|
@@ -30621,6 +31318,33 @@ export declare function useResumeCombinedCampaignMutation(baseOptions?: Apollo.M
|
|
|
30621
31318
|
export type ResumeCombinedCampaignMutationHookResult = ReturnType<typeof useResumeCombinedCampaignMutation>;
|
|
30622
31319
|
export type ResumeCombinedCampaignMutationResult = Apollo.MutationResult<ResumeCombinedCampaignMutation>;
|
|
30623
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>;
|
|
30624
31348
|
export declare const SaveNylasConnectionDocument: Apollo.DocumentNode;
|
|
30625
31349
|
export type SaveNylasConnectionMutationFn = Apollo.MutationFunction<SaveNylasConnectionMutation, SaveNylasConnectionMutationVariables>;
|
|
30626
31350
|
/**
|
|
@@ -30992,6 +31716,31 @@ export declare function useSignupMutation(baseOptions?: Apollo.MutationHookOptio
|
|
|
30992
31716
|
export type SignupMutationHookResult = ReturnType<typeof useSignupMutation>;
|
|
30993
31717
|
export type SignupMutationResult = Apollo.MutationResult<SignupMutation>;
|
|
30994
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>;
|
|
30995
31744
|
export declare const StartCampaignDocument: Apollo.DocumentNode;
|
|
30996
31745
|
export type StartCampaignMutationFn = Apollo.MutationFunction<StartCampaignMutation, StartCampaignMutationVariables>;
|
|
30997
31746
|
/**
|
|
@@ -31092,6 +31841,31 @@ export declare function useUnhideRecordMutation(baseOptions?: Apollo.MutationHoo
|
|
|
31092
31841
|
export type UnhideRecordMutationHookResult = ReturnType<typeof useUnhideRecordMutation>;
|
|
31093
31842
|
export type UnhideRecordMutationResult = Apollo.MutationResult<UnhideRecordMutation>;
|
|
31094
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>;
|
|
31095
31869
|
export declare const UnsubscribeFromEmailsDocument: Apollo.DocumentNode;
|
|
31096
31870
|
export type UnsubscribeFromEmailsMutationFn = Apollo.MutationFunction<UnsubscribeFromEmailsMutation, UnsubscribeFromEmailsMutationVariables>;
|
|
31097
31871
|
/**
|
|
@@ -31119,6 +31893,66 @@ export declare function useUnsubscribeFromEmailsMutation(baseOptions?: Apollo.Mu
|
|
|
31119
31893
|
export type UnsubscribeFromEmailsMutationHookResult = ReturnType<typeof useUnsubscribeFromEmailsMutation>;
|
|
31120
31894
|
export type UnsubscribeFromEmailsMutationResult = Apollo.MutationResult<UnsubscribeFromEmailsMutation>;
|
|
31121
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>;
|
|
31122
31956
|
export declare const UpdateCallCampaignDocument: Apollo.DocumentNode;
|
|
31123
31957
|
export type UpdateCallCampaignMutationFn = Apollo.MutationFunction<UpdateCallCampaignMutation, UpdateCallCampaignMutationVariables>;
|
|
31124
31958
|
/**
|
|
@@ -31755,6 +32589,36 @@ export declare function useValidateOtpAndResetPasswordMutation(baseOptions?: Apo
|
|
|
31755
32589
|
export type ValidateOtpAndResetPasswordMutationHookResult = ReturnType<typeof useValidateOtpAndResetPasswordMutation>;
|
|
31756
32590
|
export type ValidateOtpAndResetPasswordMutationResult = Apollo.MutationResult<ValidateOtpAndResetPasswordMutation>;
|
|
31757
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>;
|
|
31758
32622
|
export declare const AccountMembersDocument: Apollo.DocumentNode;
|
|
31759
32623
|
/**
|
|
31760
32624
|
* __useAccountMembersQuery__
|
|
@@ -31842,6 +32706,123 @@ export type AccountSubscriptionQueryHookResult = ReturnType<typeof useAccountSub
|
|
|
31842
32706
|
export type AccountSubscriptionLazyQueryHookResult = ReturnType<typeof useAccountSubscriptionLazyQuery>;
|
|
31843
32707
|
export type AccountSubscriptionSuspenseQueryHookResult = ReturnType<typeof useAccountSubscriptionSuspenseQuery>;
|
|
31844
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>;
|
|
31845
32826
|
export declare const BusinessProfileDocument: Apollo.DocumentNode;
|
|
31846
32827
|
/**
|
|
31847
32828
|
* __useBusinessProfileQuery__
|