cf-service-sdk 0.1.1 → 0.1.3

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.
@@ -100,6 +100,16 @@ export type AcceptInvitation = {
100
100
  message?: Maybe<Scalars['String']['output']>;
101
101
  success?: Maybe<Scalars['Boolean']['output']>;
102
102
  };
103
+ export type AccountDjangoType = {
104
+ __typename?: 'AccountDjangoType';
105
+ createdAt: Scalars['DateTime']['output'];
106
+ id: Scalars['ID']['output'];
107
+ /** Whether this account is active */
108
+ isActive: Scalars['Boolean']['output'];
109
+ /** Name of the account */
110
+ name: Scalars['String']['output'];
111
+ updatedAt: Scalars['DateTime']['output'];
112
+ };
103
113
  /** GraphQL type for AccountInvitation model */
104
114
  export type AccountInvitationType = {
105
115
  __typename?: 'AccountInvitationType';
@@ -117,6 +127,13 @@ export type AccountMemberType = {
117
127
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
118
128
  user?: Maybe<UserType>;
119
129
  };
130
+ /** AccountProfileType - GraphQL type for AccountProfile model */
131
+ export type AccountProfileType = {
132
+ __typename?: 'AccountProfileType';
133
+ /** Additional company profile information in JSON format to be user in Email Generation */
134
+ companyProfile?: Maybe<Scalars['JSONString']['output']>;
135
+ id: Scalars['ID']['output'];
136
+ };
120
137
  /** AccountType */
121
138
  export type AccountType = {
122
139
  __typename?: 'AccountType';
@@ -198,6 +215,17 @@ export type AddSupplierToSupplierListInput = {
198
215
  companyId: Scalars['ID']['input'];
199
216
  supplierListId: Scalars['ID']['input'];
200
217
  };
218
+ /** An enumeration. */
219
+ export declare enum AppSalesGoalTypeChoices {
220
+ /** Custom */
221
+ Custom = "CUSTOM",
222
+ /** Month */
223
+ Month = "MONTH",
224
+ /** Quarter */
225
+ Quarter = "QUARTER",
226
+ /** Year */
227
+ Year = "YEAR"
228
+ }
201
229
  export type AuditLogItemType = {
202
230
  __typename?: 'AuditLogItemType';
203
231
  description?: Maybe<Scalars['String']['output']>;
@@ -404,6 +432,8 @@ export type CallCampaignObject = {
404
432
  /** Total number of contacts in the call campaign */
405
433
  contacts?: Maybe<Scalars['Int']['output']>;
406
434
  createdAt?: Maybe<Scalars['DateTime']['output']>;
435
+ /** User who created this call campaign */
436
+ createdBy?: Maybe<UserType>;
407
437
  /** Description of the call campaign */
408
438
  description?: Maybe<Scalars['String']['output']>;
409
439
  id?: Maybe<Scalars['ID']['output']>;
@@ -652,6 +682,8 @@ export type CampaignObject = {
652
682
  completedAt?: Maybe<Scalars['DateTime']['output']>;
653
683
  /** Creation date and time of the campaign */
654
684
  createdAt?: Maybe<Scalars['DateTime']['output']>;
685
+ /** User who created this campaign */
686
+ createdBy?: Maybe<UserType>;
655
687
  /** Description of the campaign */
656
688
  description?: Maybe<Scalars['String']['output']>;
657
689
  /** Preview of the email content */
@@ -680,6 +712,10 @@ export type CampaignObject = {
680
712
  status?: Maybe<Scalars['String']['output']>;
681
713
  /** Preview of the campaign steps */
682
714
  stepsPreview?: Maybe<Scalars['GenericScalar']['output']>;
715
+ /** Primary subject line for this campaign (first email step) */
716
+ subjectLine?: Maybe<Scalars['String']['output']>;
717
+ /** All email step subject lines for this campaign */
718
+ subjectLines?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
683
719
  /** Total emails bounced for this campaign */
684
720
  totalBounced?: Maybe<Scalars['Int']['output']>;
685
721
  /** Total emails clicked for this campaign */
@@ -806,6 +842,13 @@ export type ClearAllNotifications = {
806
842
  message?: Maybe<Scalars['String']['output']>;
807
843
  success?: Maybe<Scalars['Boolean']['output']>;
808
844
  };
845
+ /** Bulk-delete all saved spots for the requesting user. Used by the "Clear All" button in the popover. */
846
+ export type ClearAllSavedSearchSpots = {
847
+ __typename?: 'ClearAllSavedSearchSpots';
848
+ count?: Maybe<Scalars['Int']['output']>;
849
+ message?: Maybe<Scalars['String']['output']>;
850
+ success?: Maybe<Scalars['Boolean']['output']>;
851
+ };
809
852
  /** Filter input for campaign logs */
810
853
  export type CombinedCampaignFilterInput = {
811
854
  dateFrom?: InputMaybe<Scalars['DateTime']['input']>;
@@ -889,6 +932,8 @@ export type CombinedCampaignObject = {
889
932
  completedAt?: Maybe<Scalars['DateTime']['output']>;
890
933
  completedContacts?: Maybe<Scalars['Int']['output']>;
891
934
  createdAt?: Maybe<Scalars['DateTime']['output']>;
935
+ /** User who created this combined campaign */
936
+ createdBy?: Maybe<UserType>;
892
937
  description?: Maybe<Scalars['String']['output']>;
893
938
  id?: Maybe<Scalars['ID']['output']>;
894
939
  lastActivity?: Maybe<Scalars['DateTime']['output']>;
@@ -902,6 +947,10 @@ export type CombinedCampaignObject = {
902
947
  stepStats?: Maybe<Array<Maybe<CombinedCampaignStepStatsObject>>>;
903
948
  steps?: Maybe<Array<Maybe<CombinedCampaignStepObject>>>;
904
949
  stepsPreview?: Maybe<Scalars['GenericScalar']['output']>;
950
+ /** Primary subject line (from first email step) */
951
+ subjectLine?: Maybe<Scalars['String']['output']>;
952
+ /** All email step subject lines (automated_email + manual_email steps) */
953
+ subjectLines?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
905
954
  totalContacts?: Maybe<Scalars['Int']['output']>;
906
955
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
907
956
  uuid?: Maybe<Scalars['String']['output']>;
@@ -1388,6 +1437,11 @@ export type CompanyProductMetalScoreObject = {
1388
1437
  /** User last name who assigned this product metal */
1389
1438
  userLastName?: Maybe<Scalars['String']['output']>;
1390
1439
  };
1440
+ /** CompanyProfileInput for updating company profile JSON field */
1441
+ export type CompanyProfileInput = {
1442
+ /** Company profile JSON data */
1443
+ companyProfile: Scalars['JSONString']['input'];
1444
+ };
1391
1445
  export type CompanyServiceType = {
1392
1446
  __typename?: 'CompanyServiceType';
1393
1447
  id: Scalars['ID']['output'];
@@ -1659,6 +1713,42 @@ export type CreateNotificationInput = {
1659
1713
  title: Scalars['String']['input'];
1660
1714
  userId: Scalars['ID']['input'];
1661
1715
  };
1716
+ /** Mutation to create a new sales goal */
1717
+ export type CreateSalesGoal = {
1718
+ __typename?: 'CreateSalesGoal';
1719
+ errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
1720
+ salesGoal?: Maybe<SalesGoalObject>;
1721
+ success?: Maybe<Scalars['Boolean']['output']>;
1722
+ };
1723
+ /** Input type for creating a sales goal */
1724
+ export type CreateSalesGoalInput = {
1725
+ description?: InputMaybe<Scalars['String']['input']>;
1726
+ /** Custom end date (for CUSTOM type) */
1727
+ endDate?: InputMaybe<Scalars['Date']['input']>;
1728
+ /** Goals JSON: {user_id: {metric: value}} */
1729
+ goals: Scalars['JSONString']['input'];
1730
+ /** Month (1-12) for MONTH type goals */
1731
+ month?: InputMaybe<Scalars['Int']['input']>;
1732
+ name: Scalars['String']['input'];
1733
+ /** Quarter (1-4) for QUARTER type goals */
1734
+ quarter?: InputMaybe<Scalars['Int']['input']>;
1735
+ /** Custom start date (for CUSTOM type) */
1736
+ startDate?: InputMaybe<Scalars['Date']['input']>;
1737
+ /** Type of sales goal: CUSTOM, MONTH, QUARTER, YEAR */
1738
+ type: Scalars['String']['input'];
1739
+ /** Year for MONTH, QUARTER, or YEAR type goals */
1740
+ year?: InputMaybe<Scalars['Int']['input']>;
1741
+ };
1742
+ /**
1743
+ * Save the current prospecting engine state (filters + page + scroll position) as a named bookmark.
1744
+ * Enforces a per-user limit (MAX_SPOTS_PER_USER) to prevent unbounded storage.
1745
+ */
1746
+ export type CreateSavedSearchSpot = {
1747
+ __typename?: 'CreateSavedSearchSpot';
1748
+ message?: Maybe<Scalars['String']['output']>;
1749
+ spot?: Maybe<SavedSearchSpotType>;
1750
+ success?: Maybe<Scalars['Boolean']['output']>;
1751
+ };
1662
1752
  export type CreateSegment = {
1663
1753
  __typename?: 'CreateSegment';
1664
1754
  message?: Maybe<Scalars['String']['output']>;
@@ -1825,6 +1915,18 @@ export type DeleteNotification = {
1825
1915
  message?: Maybe<Scalars['String']['output']>;
1826
1916
  success?: Maybe<Scalars['Boolean']['output']>;
1827
1917
  };
1918
+ /** Mutation to delete a sales goal */
1919
+ export type DeleteSalesGoal = {
1920
+ __typename?: 'DeleteSalesGoal';
1921
+ errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
1922
+ success?: Maybe<Scalars['Boolean']['output']>;
1923
+ };
1924
+ /** Delete a single saved spot. Scoped to the requesting user for safety. */
1925
+ export type DeleteSavedSearchSpot = {
1926
+ __typename?: 'DeleteSavedSearchSpot';
1927
+ message?: Maybe<Scalars['String']['output']>;
1928
+ success?: Maybe<Scalars['Boolean']['output']>;
1929
+ };
1828
1930
  export type DeleteSegment = {
1829
1931
  __typename?: 'DeleteSegment';
1830
1932
  message?: Maybe<Scalars['String']['output']>;
@@ -2240,6 +2342,8 @@ export type MailLogObject = {
2240
2342
  };
2241
2343
  /** Email communication type */
2242
2344
  export declare enum MailLogTypeEnum {
2345
+ CampaignEmail = "CAMPAIGN_EMAIL",
2346
+ CampaignReply = "CAMPAIGN_REPLY",
2243
2347
  IncomingEmail = "INCOMING_EMAIL",
2244
2348
  OutgoingEmail = "OUTGOING_EMAIL"
2245
2349
  }
@@ -2320,6 +2424,8 @@ export type Mutation = {
2320
2424
  changePassword?: Maybe<ChangePassword>;
2321
2425
  /** Clear (delete) all notifications for the current user */
2322
2426
  clearAllNotifications?: Maybe<ClearAllNotifications>;
2427
+ /** Bulk-delete all saved spots for the requesting user. Used by the "Clear All" button in the popover. */
2428
+ clearAllSavedSearchSpots?: Maybe<ClearAllSavedSearchSpots>;
2323
2429
  completeCampaign?: Maybe<CompleteCampaign>;
2324
2430
  /**
2325
2431
  * Complete an RFQ by marking it as completed.
@@ -2344,6 +2450,13 @@ export type Mutation = {
2344
2450
  createNotification?: Maybe<CreateNotification>;
2345
2451
  createRfq?: Maybe<Procurement_RfqType>;
2346
2452
  createRfqlineitem?: Maybe<Procurement_RfqLineItemType>;
2453
+ /** Mutation to create a new sales goal */
2454
+ createSalesGoal?: Maybe<CreateSalesGoal>;
2455
+ /**
2456
+ * Save the current prospecting engine state (filters + page + scroll position) as a named bookmark.
2457
+ * Enforces a per-user limit (MAX_SPOTS_PER_USER) to prevent unbounded storage.
2458
+ */
2459
+ createSavedSearchSpot?: Maybe<CreateSavedSearchSpot>;
2347
2460
  createSegment?: Maybe<CreateSegment>;
2348
2461
  createSupplierlist?: Maybe<Procurement_SupplierListType>;
2349
2462
  /** Mutation to create a new task */
@@ -2364,6 +2477,10 @@ export type Mutation = {
2364
2477
  deleteNotification?: Maybe<DeleteNotification>;
2365
2478
  deleteRfq?: Maybe<DeleteMutation>;
2366
2479
  deleteRfqlineitem?: Maybe<DeleteMutation>;
2480
+ /** Mutation to delete a sales goal */
2481
+ deleteSalesGoal?: Maybe<DeleteSalesGoal>;
2482
+ /** Delete a single saved spot. Scoped to the requesting user for safety. */
2483
+ deleteSavedSearchSpot?: Maybe<DeleteSavedSearchSpot>;
2367
2484
  deleteSegment?: Maybe<DeleteSegment>;
2368
2485
  deleteSupplierlist?: Maybe<DeleteMutation>;
2369
2486
  /** Mutation to delete a task */
@@ -2425,9 +2542,7 @@ export type Mutation = {
2425
2542
  sendEmailToContact?: Maybe<SendEmailToContact>;
2426
2543
  /**
2427
2544
  * Send an email as a reply, reply all, or forward from an email thread.
2428
- * Supports both:
2429
- * - External emails (MailLog): Gmail/Outlook emails via Nylas integration
2430
- * - Campaign emails (ContactLog): Emails sent from campaigns, combined campaigns, or CRM contacts
2545
+ * All emails are tracked in MailLog for unified email thread view.
2431
2546
  *
2432
2547
  * Follows Gmail rules for Re: and Fwd: subject prefixes.
2433
2548
  * Creates an async Celery task for email delivery and webhook notifications.
@@ -2466,12 +2581,16 @@ export type Mutation = {
2466
2581
  updateCompany?: Maybe<UpdateCompany>;
2467
2582
  updateCompanyExternalIdentifier?: Maybe<UpdateCompanyExternalIdentifier>;
2468
2583
  updateCompanyNote?: Maybe<UpdateCompanyNote>;
2584
+ /** UpdateCompanyProfile - Update the company profile JSON field for the user's account */
2585
+ updateCompanyProfile?: Maybe<UpdateCompanyProfile>;
2469
2586
  updateContact?: Maybe<UpdateContact>;
2470
2587
  /** UpdateEmailTemplate - Update an existing email template (only if owned by user's account) */
2471
2588
  updateEmailTemplate?: Maybe<UpdateEmailTemplate>;
2472
2589
  updateMysupplier?: Maybe<Procurement_MySupplierType>;
2473
2590
  updateRfq?: Maybe<Procurement_RfqType>;
2474
2591
  updateRfqlineitem?: Maybe<Procurement_RfqLineItemType>;
2592
+ /** Mutation to update an existing sales goal */
2593
+ updateSalesGoal?: Maybe<UpdateSalesGoal>;
2475
2594
  updateSegment?: Maybe<UpdateSegment>;
2476
2595
  updateSupplierlist?: Maybe<Procurement_SupplierListType>;
2477
2596
  /** Mutation to update an existing task */
@@ -2611,6 +2730,16 @@ export type MutationCreateRfqlineitemArgs = {
2611
2730
  input: RfqLineItemInput;
2612
2731
  };
2613
2732
  /** Mutations */
2733
+ export type MutationCreateSalesGoalArgs = {
2734
+ input: CreateSalesGoalInput;
2735
+ };
2736
+ /** Mutations */
2737
+ export type MutationCreateSavedSearchSpotArgs = {
2738
+ description?: InputMaybe<Scalars['String']['input']>;
2739
+ name: Scalars['String']['input'];
2740
+ urlParams: Scalars['String']['input'];
2741
+ };
2742
+ /** Mutations */
2614
2743
  export type MutationCreateSegmentArgs = {
2615
2744
  input: SegmentInput;
2616
2745
  };
@@ -2671,6 +2800,14 @@ export type MutationDeleteRfqlineitemArgs = {
2671
2800
  id: Scalars['ID']['input'];
2672
2801
  };
2673
2802
  /** Mutations */
2803
+ export type MutationDeleteSalesGoalArgs = {
2804
+ id: Scalars['Int']['input'];
2805
+ };
2806
+ /** Mutations */
2807
+ export type MutationDeleteSavedSearchSpotArgs = {
2808
+ id: Scalars['ID']['input'];
2809
+ };
2810
+ /** Mutations */
2674
2811
  export type MutationDeleteSegmentArgs = {
2675
2812
  id: Scalars['ID']['input'];
2676
2813
  };
@@ -2831,8 +2968,7 @@ export type MutationSendEmailToEmailThreadArgs = {
2831
2968
  bccEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
2832
2969
  body: Scalars['String']['input'];
2833
2970
  ccEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
2834
- contactLogId?: InputMaybe<Scalars['Int']['input']>;
2835
- mailLogId?: InputMaybe<Scalars['Int']['input']>;
2971
+ mailLogId: Scalars['Int']['input'];
2836
2972
  subject?: InputMaybe<Scalars['String']['input']>;
2837
2973
  toEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
2838
2974
  };
@@ -2943,6 +3079,10 @@ export type MutationUpdateCompanyNoteArgs = {
2943
3079
  input: CompanyNoteInput;
2944
3080
  };
2945
3081
  /** Mutations */
3082
+ export type MutationUpdateCompanyProfileArgs = {
3083
+ input: CompanyProfileInput;
3084
+ };
3085
+ /** Mutations */
2946
3086
  export type MutationUpdateContactArgs = {
2947
3087
  input?: InputMaybe<ContactInput>;
2948
3088
  };
@@ -2967,6 +3107,11 @@ export type MutationUpdateRfqlineitemArgs = {
2967
3107
  input: RfqLineItemInput;
2968
3108
  };
2969
3109
  /** Mutations */
3110
+ export type MutationUpdateSalesGoalArgs = {
3111
+ id: Scalars['Int']['input'];
3112
+ input: UpdateSalesGoalInput;
3113
+ };
3114
+ /** Mutations */
2970
3115
  export type MutationUpdateSegmentArgs = {
2971
3116
  input: SegmentInput;
2972
3117
  };
@@ -3309,10 +3454,10 @@ export type Procurement_RfqFilterInput = {
3309
3454
  deliveryLocation?: InputMaybe<Scalars['String']['input']>;
3310
3455
  emailBody?: InputMaybe<Scalars['String']['input']>;
3311
3456
  emailSubject?: InputMaybe<Scalars['String']['input']>;
3457
+ fob?: InputMaybe<Scalars['String']['input']>;
3312
3458
  freeFormItems?: InputMaybe<Scalars['String']['input']>;
3313
3459
  includeItemsTable?: InputMaybe<Scalars['Boolean']['input']>;
3314
3460
  includeTerms?: InputMaybe<Scalars['Boolean']['input']>;
3315
- incoterm?: InputMaybe<Scalars['String']['input']>;
3316
3461
  internalReferenceNumber?: InputMaybe<Scalars['String']['input']>;
3317
3462
  partialShipmentsAllowed?: InputMaybe<Scalars['Boolean']['input']>;
3318
3463
  paymentTerms?: InputMaybe<Scalars['String']['input']>;
@@ -3414,15 +3559,15 @@ export type Procurement_RfqType = {
3414
3559
  deliveryLocation?: Maybe<Scalars['String']['output']>;
3415
3560
  emailBody?: Maybe<Scalars['String']['output']>;
3416
3561
  emailSubject?: Maybe<Scalars['String']['output']>;
3562
+ fob?: Maybe<Scalars['String']['output']>;
3417
3563
  freeFormItems?: Maybe<Scalars['String']['output']>;
3418
3564
  id: Scalars['ID']['output'];
3419
3565
  includeItemsTable: Scalars['Boolean']['output'];
3420
3566
  includeTerms: Scalars['Boolean']['output'];
3421
- incoterm: Scalars['String']['output'];
3422
3567
  internalReferenceNumber?: Maybe<Scalars['String']['output']>;
3423
3568
  packagingRequirements: Scalars['JSONString']['output'];
3424
3569
  partialShipmentsAllowed: Scalars['Boolean']['output'];
3425
- paymentTerms: Scalars['String']['output'];
3570
+ paymentTerms?: Maybe<Scalars['String']['output']>;
3426
3571
  priority: Scalars['String']['output'];
3427
3572
  products: Scalars['JSONString']['output'];
3428
3573
  qualityRequirements: Scalars['JSONString']['output'];
@@ -3509,6 +3654,7 @@ export type ProductTypeObject = {
3509
3654
  export type Query = {
3510
3655
  __typename?: 'Query';
3511
3656
  accountMembers?: Maybe<Array<Maybe<AccountMemberType>>>;
3657
+ accountProfile?: Maybe<AccountProfileType>;
3512
3658
  /** Get the current account's subscription */
3513
3659
  accountSubscription?: Maybe<SubscriptionType>;
3514
3660
  businessProfile?: Maybe<BusinessProfileType>;
@@ -3612,6 +3758,14 @@ export type Query = {
3612
3758
  rfqSuppliers?: Maybe<Array<RfqSupplierObject>>;
3613
3759
  rfqlineitem?: Maybe<Procurement_RfqLineItemType>;
3614
3760
  rfqlineitemList?: Maybe<PaginatedProcurement_RfqLineItemResponse>;
3761
+ /** Get a specific sales goal by ID */
3762
+ salesGoal?: Maybe<SalesGoalObject>;
3763
+ /** Get sales goal performance report with actuals vs goals for a given sales goal and optional user */
3764
+ salesGoalReport?: Maybe<SalesGoalReportType>;
3765
+ /** List all sales goals with optional year filter */
3766
+ salesGoals?: Maybe<Array<Maybe<SalesGoalObject>>>;
3767
+ /** Get all saved search spots for the current user */
3768
+ savedSearchSpots?: Maybe<Array<Maybe<SavedSearchSpotType>>>;
3615
3769
  searchContacts?: Maybe<PaginatedContactList>;
3616
3770
  /** Get a specific segment by ID */
3617
3771
  segment?: Maybe<SegmentObject>;
@@ -3660,6 +3814,7 @@ export type QueryCallCampaignReportArgs = {
3660
3814
  };
3661
3815
  /** Query */
3662
3816
  export type QueryCallCampaignsArgs = {
3817
+ createdById?: InputMaybe<Scalars['String']['input']>;
3663
3818
  pagination: PaginationInput;
3664
3819
  sortBy?: InputMaybe<Scalars['String']['input']>;
3665
3820
  status?: InputMaybe<Scalars['String']['input']>;
@@ -3691,6 +3846,7 @@ export type QueryCampaignStatsArgs = {
3691
3846
  };
3692
3847
  /** Query */
3693
3848
  export type QueryCampaignsArgs = {
3849
+ createdById?: InputMaybe<Scalars['String']['input']>;
3694
3850
  pagination: PaginationInput;
3695
3851
  sortBy?: InputMaybe<Scalars['String']['input']>;
3696
3852
  status?: InputMaybe<Scalars['String']['input']>;
@@ -3726,6 +3882,7 @@ export type QueryCombinedCampaignTemplateArgs = {
3726
3882
  };
3727
3883
  /** Query */
3728
3884
  export type QueryCombinedCampaignsArgs = {
3885
+ createdById?: InputMaybe<Scalars['String']['input']>;
3729
3886
  pagination?: InputMaybe<PaginationInput>;
3730
3887
  sortBy?: InputMaybe<Scalars['String']['input']>;
3731
3888
  status?: InputMaybe<Scalars['String']['input']>;
@@ -3902,6 +4059,19 @@ export type QueryRfqlineitemListArgs = {
3902
4059
  pagination?: InputMaybe<PaginationInput>;
3903
4060
  };
3904
4061
  /** Query */
4062
+ export type QuerySalesGoalArgs = {
4063
+ id: Scalars['Int']['input'];
4064
+ };
4065
+ /** Query */
4066
+ export type QuerySalesGoalReportArgs = {
4067
+ forUser?: InputMaybe<Scalars['Int']['input']>;
4068
+ salesGoalId: Scalars['Int']['input'];
4069
+ };
4070
+ /** Query */
4071
+ export type QuerySalesGoalsArgs = {
4072
+ filters?: InputMaybe<SalesGoalFilterInput>;
4073
+ };
4074
+ /** Query */
3905
4075
  export type QuerySearchContactsArgs = {
3906
4076
  filters?: InputMaybe<ContactFilterInput>;
3907
4077
  pagination?: InputMaybe<PaginationInput>;
@@ -4167,14 +4337,14 @@ export type RfqInput = {
4167
4337
  deliveryLocation?: InputMaybe<Scalars['String']['input']>;
4168
4338
  emailBody?: InputMaybe<Scalars['String']['input']>;
4169
4339
  emailSubject?: InputMaybe<Scalars['String']['input']>;
4340
+ fob?: InputMaybe<Scalars['String']['input']>;
4170
4341
  freeFormItems?: InputMaybe<Scalars['String']['input']>;
4171
4342
  includeItemsTable: Scalars['Boolean']['input'];
4172
4343
  includeTerms: Scalars['Boolean']['input'];
4173
- incoterm: Scalars['String']['input'];
4174
4344
  internalReferenceNumber?: InputMaybe<Scalars['String']['input']>;
4175
4345
  packagingRequirements?: InputMaybe<Scalars['String']['input']>;
4176
4346
  partialShipmentsAllowed: Scalars['Boolean']['input'];
4177
- paymentTerms: Scalars['String']['input'];
4347
+ paymentTerms?: InputMaybe<Scalars['String']['input']>;
4178
4348
  priority: Scalars['String']['input'];
4179
4349
  products?: InputMaybe<Scalars['String']['input']>;
4180
4350
  qualityRequirements?: InputMaybe<Scalars['String']['input']>;
@@ -4214,6 +4384,65 @@ export declare enum SaasSubscriptionStatusChoices {
4214
4384
  /** Cancelled */
4215
4385
  Cancelled = "CANCELLED"
4216
4386
  }
4387
+ /** Input type for filtering sales goals */
4388
+ export type SalesGoalFilterInput = {
4389
+ /** Filter by year */
4390
+ year?: InputMaybe<Scalars['Int']['input']>;
4391
+ };
4392
+ /** Represents a single metric with actual and goal values. */
4393
+ export type SalesGoalMetricType = {
4394
+ __typename?: 'SalesGoalMetricType';
4395
+ /** Indicates whether the metric goal was met or exceeded */
4396
+ achieved?: Maybe<Scalars['Boolean']['output']>;
4397
+ /** Actual value achieved for the metric */
4398
+ actual?: Maybe<Scalars['Int']['output']>;
4399
+ /** Completion percentage for this metric (actual / goal * 100) */
4400
+ completedPercentage?: Maybe<Scalars['Float']['output']>;
4401
+ /** Goal value set for the metric */
4402
+ goal?: Maybe<Scalars['Int']['output']>;
4403
+ };
4404
+ /** GraphQL type for SalesGoal model */
4405
+ export type SalesGoalObject = {
4406
+ __typename?: 'SalesGoalObject';
4407
+ account: AccountDjangoType;
4408
+ createdAt: Scalars['DateTime']['output'];
4409
+ description?: Maybe<Scalars['String']['output']>;
4410
+ endDate: Scalars['Date']['output'];
4411
+ goals: Scalars['JSONString']['output'];
4412
+ id: Scalars['ID']['output'];
4413
+ /** Month (1-12) for MONTH type goals */
4414
+ month?: Maybe<Scalars['Int']['output']>;
4415
+ name: Scalars['String']['output'];
4416
+ /** Quarter (1-4) for QUARTER type goals */
4417
+ quarter?: Maybe<Scalars['Int']['output']>;
4418
+ startDate: Scalars['Date']['output'];
4419
+ type: AppSalesGoalTypeChoices;
4420
+ updatedAt: Scalars['DateTime']['output'];
4421
+ /** Year for MONTH, QUARTER, or YEAR type goals */
4422
+ year?: Maybe<Scalars['Int']['output']>;
4423
+ };
4424
+ /** Sales goal performance report with actuals vs goals for each metric. */
4425
+ export type SalesGoalReportType = {
4426
+ __typename?: 'SalesGoalReportType';
4427
+ /** Leads moved to Outreach during the goal period */
4428
+ addedToOutreach?: Maybe<SalesGoalMetricType>;
4429
+ /** Calls made during the goal period */
4430
+ calls?: Maybe<SalesGoalMetricType>;
4431
+ /** Customers won during the goal period */
4432
+ customersWon?: Maybe<SalesGoalMetricType>;
4433
+ /** Emails sent during the goal period */
4434
+ emailsSent?: Maybe<SalesGoalMetricType>;
4435
+ /** Leads saved during the goal period */
4436
+ leadsSaved?: Maybe<SalesGoalMetricType>;
4437
+ /** Meeting connections during the goal period */
4438
+ meetingConnections?: Maybe<SalesGoalMetricType>;
4439
+ /** Leads moved to Conversation during the goal period */
4440
+ movedToConversation?: Maybe<SalesGoalMetricType>;
4441
+ /** Weighted overall completion percentage across all sales goal metrics */
4442
+ overallCompletedPercentage?: Maybe<Scalars['Float']['output']>;
4443
+ /** RFQs created during the goal period */
4444
+ rfqs?: Maybe<SalesGoalMetricType>;
4445
+ };
4217
4446
  /** Per-salesperson statistics */
4218
4447
  export type SalespersonStatsObject = {
4219
4448
  __typename?: 'SalespersonStatsObject';
@@ -4245,6 +4474,15 @@ export type SaveNylasConnectionInput = {
4245
4474
  /** Email provider (e.g., gmail, outlook) */
4246
4475
  provider: Scalars['String']['input'];
4247
4476
  };
4477
+ export type SavedSearchSpotType = {
4478
+ __typename?: 'SavedSearchSpotType';
4479
+ createdAt: Scalars['DateTime']['output'];
4480
+ description: Scalars['String']['output'];
4481
+ id: Scalars['ID']['output'];
4482
+ name: Scalars['String']['output'];
4483
+ updatedAt: Scalars['DateTime']['output'];
4484
+ urlParams: Scalars['String']['output'];
4485
+ };
4248
4486
  export type ScheduleCampaign = {
4249
4487
  __typename?: 'ScheduleCampaign';
4250
4488
  campaign?: Maybe<CampaignObject>;
@@ -4336,18 +4574,14 @@ export type SendEmailToContact = {
4336
4574
  };
4337
4575
  /**
4338
4576
  * Send an email as a reply, reply all, or forward from an email thread.
4339
- * Supports both:
4340
- * - External emails (MailLog): Gmail/Outlook emails via Nylas integration
4341
- * - Campaign emails (ContactLog): Emails sent from campaigns, combined campaigns, or CRM contacts
4577
+ * All emails are tracked in MailLog for unified email thread view.
4342
4578
  *
4343
4579
  * Follows Gmail rules for Re: and Fwd: subject prefixes.
4344
4580
  * Creates an async Celery task for email delivery and webhook notifications.
4345
4581
  */
4346
4582
  export type SendEmailToEmailThread = {
4347
4583
  __typename?: 'SendEmailToEmailThread';
4348
- /** The created ContactLog ID for sent campaign/CRM emails */
4349
- contactLogId?: Maybe<Scalars['Int']['output']>;
4350
- /** The created MailLog entry for sent external emails */
4584
+ /** The created MailLog entry for the sent email */
4351
4585
  mailLog?: Maybe<MailLogObject>;
4352
4586
  message?: Maybe<Scalars['String']['output']>;
4353
4587
  success?: Maybe<Scalars['Boolean']['output']>;
@@ -4475,6 +4709,7 @@ export type SupplierObject = {
4475
4709
  employeeSize?: Maybe<Scalars['String']['output']>;
4476
4710
  id: Scalars['ID']['output'];
4477
4711
  location?: Maybe<Scalars['String']['output']>;
4712
+ logoUrl?: Maybe<Scalars['String']['output']>;
4478
4713
  mySupplierId?: Maybe<Scalars['ID']['output']>;
4479
4714
  name: Scalars['String']['output'];
4480
4715
  productsSold?: Maybe<Array<Maybe<SupplierProductObject>>>;
@@ -4713,6 +4948,13 @@ export type UpdateCompanyNote = {
4713
4948
  __typename?: 'UpdateCompanyNote';
4714
4949
  companyNote?: Maybe<CompanyNoteObject>;
4715
4950
  };
4951
+ /** UpdateCompanyProfile - Update the company profile JSON field for the user's account */
4952
+ export type UpdateCompanyProfile = {
4953
+ __typename?: 'UpdateCompanyProfile';
4954
+ accountProfile?: Maybe<AccountProfileType>;
4955
+ message?: Maybe<Scalars['String']['output']>;
4956
+ success?: Maybe<Scalars['Boolean']['output']>;
4957
+ };
4716
4958
  export type UpdateContact = {
4717
4959
  __typename?: 'UpdateContact';
4718
4960
  contact?: Maybe<ContactObject>;
@@ -4724,6 +4966,18 @@ export type UpdateEmailTemplate = {
4724
4966
  message?: Maybe<Scalars['String']['output']>;
4725
4967
  success?: Maybe<Scalars['Boolean']['output']>;
4726
4968
  };
4969
+ /** Mutation to update an existing sales goal */
4970
+ export type UpdateSalesGoal = {
4971
+ __typename?: 'UpdateSalesGoal';
4972
+ errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
4973
+ salesGoal?: Maybe<SalesGoalObject>;
4974
+ success?: Maybe<Scalars['Boolean']['output']>;
4975
+ };
4976
+ /** Input type for updating a sales goal */
4977
+ export type UpdateSalesGoalInput = {
4978
+ /** Goals JSON: {user_id: {metric: value}} */
4979
+ goals: Scalars['JSONString']['input'];
4980
+ };
4727
4981
  export type UpdateSegment = {
4728
4982
  __typename?: 'UpdateSegment';
4729
4983
  message?: Maybe<Scalars['String']['output']>;
@@ -5020,6 +5274,8 @@ export type AddContactsToCampaignMutation = {
5020
5274
  bounceRate?: number | null;
5021
5275
  reasonForPause?: string | null;
5022
5276
  pausedUntil?: any | null;
5277
+ subjectLine?: string | null;
5278
+ subjectLines?: Array<string | null> | null;
5023
5279
  segments?: Array<{
5024
5280
  __typename?: 'SegmentObject';
5025
5281
  id?: string | null;
@@ -5047,6 +5303,14 @@ export type AddContactsToCampaignMutation = {
5047
5303
  updatedAt?: any | null;
5048
5304
  campaignType?: string | null;
5049
5305
  } | null;
5306
+ createdBy?: {
5307
+ __typename?: 'UserType';
5308
+ id?: string | null;
5309
+ email?: string | null;
5310
+ firstName?: string | null;
5311
+ lastName?: string | null;
5312
+ picture?: string | null;
5313
+ } | null;
5050
5314
  } | null;
5051
5315
  } | null;
5052
5316
  };
@@ -5078,6 +5342,8 @@ export type AddContactsToCombinedCampaignMutation = {
5078
5342
  completedContacts?: number | null;
5079
5343
  lastActivity?: any | null;
5080
5344
  stepsPreview?: any | null;
5345
+ subjectLine?: string | null;
5346
+ subjectLines?: Array<string | null> | null;
5081
5347
  createdAt?: any | null;
5082
5348
  updatedAt?: any | null;
5083
5349
  steps?: Array<{
@@ -5127,6 +5393,14 @@ export type AddContactsToCombinedCampaignMutation = {
5127
5393
  total?: number | null;
5128
5394
  completionRate?: number | null;
5129
5395
  } | null> | null;
5396
+ createdBy?: {
5397
+ __typename?: 'UserType';
5398
+ id?: string | null;
5399
+ email?: string | null;
5400
+ firstName?: string | null;
5401
+ lastName?: string | null;
5402
+ picture?: string | null;
5403
+ } | null;
5130
5404
  } | null;
5131
5405
  } | null;
5132
5406
  };
@@ -5233,6 +5507,14 @@ export type AddSegmentToCallCampaignMutation = {
5233
5507
  lastActivity?: any | null;
5234
5508
  statusCounts?: any | null;
5235
5509
  } | null;
5510
+ createdBy?: {
5511
+ __typename?: 'UserType';
5512
+ id?: string | null;
5513
+ email?: string | null;
5514
+ firstName?: string | null;
5515
+ lastName?: string | null;
5516
+ picture?: string | null;
5517
+ } | null;
5236
5518
  } | null;
5237
5519
  } | null;
5238
5520
  };
@@ -5277,6 +5559,8 @@ export type AddSegmentToCampaignMutation = {
5277
5559
  bounceRate?: number | null;
5278
5560
  reasonForPause?: string | null;
5279
5561
  pausedUntil?: any | null;
5562
+ subjectLine?: string | null;
5563
+ subjectLines?: Array<string | null> | null;
5280
5564
  segments?: Array<{
5281
5565
  __typename?: 'SegmentObject';
5282
5566
  id?: string | null;
@@ -5304,6 +5588,14 @@ export type AddSegmentToCampaignMutation = {
5304
5588
  updatedAt?: any | null;
5305
5589
  campaignType?: string | null;
5306
5590
  } | null;
5591
+ createdBy?: {
5592
+ __typename?: 'UserType';
5593
+ id?: string | null;
5594
+ email?: string | null;
5595
+ firstName?: string | null;
5596
+ lastName?: string | null;
5597
+ picture?: string | null;
5598
+ } | null;
5307
5599
  } | null;
5308
5600
  } | null;
5309
5601
  };
@@ -5383,6 +5675,8 @@ export type CancelCampaignMutation = {
5383
5675
  bounceRate?: number | null;
5384
5676
  reasonForPause?: string | null;
5385
5677
  pausedUntil?: any | null;
5678
+ subjectLine?: string | null;
5679
+ subjectLines?: Array<string | null> | null;
5386
5680
  segments?: Array<{
5387
5681
  __typename?: 'SegmentObject';
5388
5682
  id?: string | null;
@@ -5410,6 +5704,14 @@ export type CancelCampaignMutation = {
5410
5704
  updatedAt?: any | null;
5411
5705
  campaignType?: string | null;
5412
5706
  } | null;
5707
+ createdBy?: {
5708
+ __typename?: 'UserType';
5709
+ id?: string | null;
5710
+ email?: string | null;
5711
+ firstName?: string | null;
5712
+ lastName?: string | null;
5713
+ picture?: string | null;
5714
+ } | null;
5413
5715
  } | null;
5414
5716
  } | null;
5415
5717
  };
@@ -5439,6 +5741,8 @@ export type CancelCombinedCampaignMutation = {
5439
5741
  completedContacts?: number | null;
5440
5742
  lastActivity?: any | null;
5441
5743
  stepsPreview?: any | null;
5744
+ subjectLine?: string | null;
5745
+ subjectLines?: Array<string | null> | null;
5442
5746
  createdAt?: any | null;
5443
5747
  updatedAt?: any | null;
5444
5748
  steps?: Array<{
@@ -5488,6 +5792,14 @@ export type CancelCombinedCampaignMutation = {
5488
5792
  total?: number | null;
5489
5793
  completionRate?: number | null;
5490
5794
  } | null> | null;
5795
+ createdBy?: {
5796
+ __typename?: 'UserType';
5797
+ id?: string | null;
5798
+ email?: string | null;
5799
+ firstName?: string | null;
5800
+ lastName?: string | null;
5801
+ picture?: string | null;
5802
+ } | null;
5491
5803
  } | null;
5492
5804
  } | null;
5493
5805
  };
@@ -5525,6 +5837,18 @@ export type ClearAllNotificationsMutation = {
5525
5837
  message?: string | null;
5526
5838
  } | null;
5527
5839
  };
5840
+ export type ClearAllSavedSearchSpotsMutationVariables = Exact<{
5841
+ [key: string]: never;
5842
+ }>;
5843
+ export type ClearAllSavedSearchSpotsMutation = {
5844
+ __typename?: 'Mutation';
5845
+ clearAllSavedSearchSpots?: {
5846
+ __typename?: 'ClearAllSavedSearchSpots';
5847
+ count?: number | null;
5848
+ success?: boolean | null;
5849
+ message?: string | null;
5850
+ } | null;
5851
+ };
5528
5852
  export type CompleteCampaignMutationVariables = Exact<{
5529
5853
  id: Scalars['ID']['input'];
5530
5854
  }>;
@@ -5565,6 +5889,8 @@ export type CompleteCampaignMutation = {
5565
5889
  bounceRate?: number | null;
5566
5890
  reasonForPause?: string | null;
5567
5891
  pausedUntil?: any | null;
5892
+ subjectLine?: string | null;
5893
+ subjectLines?: Array<string | null> | null;
5568
5894
  segments?: Array<{
5569
5895
  __typename?: 'SegmentObject';
5570
5896
  id?: string | null;
@@ -5592,6 +5918,14 @@ export type CompleteCampaignMutation = {
5592
5918
  updatedAt?: any | null;
5593
5919
  campaignType?: string | null;
5594
5920
  } | null;
5921
+ createdBy?: {
5922
+ __typename?: 'UserType';
5923
+ id?: string | null;
5924
+ email?: string | null;
5925
+ firstName?: string | null;
5926
+ lastName?: string | null;
5927
+ picture?: string | null;
5928
+ } | null;
5595
5929
  } | null;
5596
5930
  } | null;
5597
5931
  };
@@ -5618,8 +5952,8 @@ export type CompleteRfqMutation = {
5618
5952
  quoteDeadline?: any | null;
5619
5953
  deliveryDeadline?: any | null;
5620
5954
  products: any;
5621
- incoterm: string;
5622
- paymentTerms: string;
5955
+ fob?: string | null;
5956
+ paymentTerms?: string | null;
5623
5957
  partialShipmentsAllowed: boolean;
5624
5958
  deliveryLocation?: string | null;
5625
5959
  packagingRequirements: any;
@@ -5824,6 +6158,14 @@ export type CreateCallCampaignMutation = {
5824
6158
  lastActivity?: any | null;
5825
6159
  statusCounts?: any | null;
5826
6160
  } | null;
6161
+ createdBy?: {
6162
+ __typename?: 'UserType';
6163
+ id?: string | null;
6164
+ email?: string | null;
6165
+ firstName?: string | null;
6166
+ lastName?: string | null;
6167
+ picture?: string | null;
6168
+ } | null;
5827
6169
  } | null;
5828
6170
  } | null;
5829
6171
  };
@@ -5942,6 +6284,14 @@ export type CreateCallCampaignLogMutation = {
5942
6284
  lastActivity?: any | null;
5943
6285
  statusCounts?: any | null;
5944
6286
  } | null;
6287
+ createdBy?: {
6288
+ __typename?: 'UserType';
6289
+ id?: string | null;
6290
+ email?: string | null;
6291
+ firstName?: string | null;
6292
+ lastName?: string | null;
6293
+ picture?: string | null;
6294
+ } | null;
5945
6295
  } | null;
5946
6296
  companyNote?: {
5947
6297
  __typename?: 'CompanyNoteObject';
@@ -6023,6 +6373,8 @@ export type CreateCampaignMutation = {
6023
6373
  bounceRate?: number | null;
6024
6374
  reasonForPause?: string | null;
6025
6375
  pausedUntil?: any | null;
6376
+ subjectLine?: string | null;
6377
+ subjectLines?: Array<string | null> | null;
6026
6378
  segments?: Array<{
6027
6379
  __typename?: 'SegmentObject';
6028
6380
  id?: string | null;
@@ -6050,6 +6402,14 @@ export type CreateCampaignMutation = {
6050
6402
  updatedAt?: any | null;
6051
6403
  campaignType?: string | null;
6052
6404
  } | null;
6405
+ createdBy?: {
6406
+ __typename?: 'UserType';
6407
+ id?: string | null;
6408
+ email?: string | null;
6409
+ firstName?: string | null;
6410
+ lastName?: string | null;
6411
+ picture?: string | null;
6412
+ } | null;
6053
6413
  } | null;
6054
6414
  } | null;
6055
6415
  };
@@ -6080,6 +6440,8 @@ export type CreateCombinedCampaignMutation = {
6080
6440
  completedContacts?: number | null;
6081
6441
  lastActivity?: any | null;
6082
6442
  stepsPreview?: any | null;
6443
+ subjectLine?: string | null;
6444
+ subjectLines?: Array<string | null> | null;
6083
6445
  createdAt?: any | null;
6084
6446
  updatedAt?: any | null;
6085
6447
  steps?: Array<{
@@ -6129,6 +6491,14 @@ export type CreateCombinedCampaignMutation = {
6129
6491
  total?: number | null;
6130
6492
  completionRate?: number | null;
6131
6493
  } | null> | null;
6494
+ createdBy?: {
6495
+ __typename?: 'UserType';
6496
+ id?: string | null;
6497
+ email?: string | null;
6498
+ firstName?: string | null;
6499
+ lastName?: string | null;
6500
+ picture?: string | null;
6501
+ } | null;
6132
6502
  } | null;
6133
6503
  } | null;
6134
6504
  };
@@ -6353,6 +6723,14 @@ export type CreateCompanyMutation = {
6353
6723
  lastActivity?: any | null;
6354
6724
  statusCounts?: any | null;
6355
6725
  } | null;
6726
+ createdBy?: {
6727
+ __typename?: 'UserType';
6728
+ id?: string | null;
6729
+ email?: string | null;
6730
+ firstName?: string | null;
6731
+ lastName?: string | null;
6732
+ picture?: string | null;
6733
+ } | null;
6356
6734
  } | null;
6357
6735
  callCampaignLog?: {
6358
6736
  __typename?: 'CallCampaignLogObject';
@@ -6550,6 +6928,14 @@ export type CreateCompanyMutation = {
6550
6928
  lastActivity?: any | null;
6551
6929
  statusCounts?: any | null;
6552
6930
  } | null;
6931
+ createdBy?: {
6932
+ __typename?: 'UserType';
6933
+ id?: string | null;
6934
+ email?: string | null;
6935
+ firstName?: string | null;
6936
+ lastName?: string | null;
6937
+ picture?: string | null;
6938
+ } | null;
6553
6939
  } | null;
6554
6940
  callCampaignLog?: {
6555
6941
  __typename?: 'CallCampaignLogObject';
@@ -6930,6 +7316,14 @@ export type CreateCompanyNoteMutation = {
6930
7316
  lastActivity?: any | null;
6931
7317
  statusCounts?: any | null;
6932
7318
  } | null;
7319
+ createdBy?: {
7320
+ __typename?: 'UserType';
7321
+ id?: string | null;
7322
+ email?: string | null;
7323
+ firstName?: string | null;
7324
+ lastName?: string | null;
7325
+ picture?: string | null;
7326
+ } | null;
6933
7327
  } | null;
6934
7328
  callCampaignLog?: {
6935
7329
  __typename?: 'CallCampaignLogObject';
@@ -7281,6 +7675,14 @@ export type CreateMysupplierMutation = {
7281
7675
  lastActivity?: any | null;
7282
7676
  statusCounts?: any | null;
7283
7677
  } | null;
7678
+ createdBy?: {
7679
+ __typename?: 'UserType';
7680
+ id?: string | null;
7681
+ email?: string | null;
7682
+ firstName?: string | null;
7683
+ lastName?: string | null;
7684
+ picture?: string | null;
7685
+ } | null;
7284
7686
  } | null;
7285
7687
  callCampaignLog?: {
7286
7688
  __typename?: 'CallCampaignLogObject';
@@ -7478,6 +7880,14 @@ export type CreateMysupplierMutation = {
7478
7880
  lastActivity?: any | null;
7479
7881
  statusCounts?: any | null;
7480
7882
  } | null;
7883
+ createdBy?: {
7884
+ __typename?: 'UserType';
7885
+ id?: string | null;
7886
+ email?: string | null;
7887
+ firstName?: string | null;
7888
+ lastName?: string | null;
7889
+ picture?: string | null;
7890
+ } | null;
7481
7891
  } | null;
7482
7892
  callCampaignLog?: {
7483
7893
  __typename?: 'CallCampaignLogObject';
@@ -7782,8 +8192,8 @@ export type CreateRfqMutation = {
7782
8192
  quoteDeadline?: any | null;
7783
8193
  deliveryDeadline?: any | null;
7784
8194
  products: any;
7785
- incoterm: string;
7786
- paymentTerms: string;
8195
+ fob?: string | null;
8196
+ paymentTerms?: string | null;
7787
8197
  partialShipmentsAllowed: boolean;
7788
8198
  deliveryLocation?: string | null;
7789
8199
  packagingRequirements: any;
@@ -7961,8 +8371,8 @@ export type CreateRfqlineitemMutation = {
7961
8371
  quoteDeadline?: any | null;
7962
8372
  deliveryDeadline?: any | null;
7963
8373
  products: any;
7964
- incoterm: string;
7965
- paymentTerms: string;
8374
+ fob?: string | null;
8375
+ paymentTerms?: string | null;
7966
8376
  partialShipmentsAllowed: boolean;
7967
8377
  deliveryLocation?: string | null;
7968
8378
  packagingRequirements: any;
@@ -8086,6 +8496,62 @@ export type CreateRfqlineitemMutation = {
8086
8496
  };
8087
8497
  } | null;
8088
8498
  };
8499
+ export type CreateSalesGoalMutationVariables = Exact<{
8500
+ input: CreateSalesGoalInput;
8501
+ }>;
8502
+ export type CreateSalesGoalMutation = {
8503
+ __typename?: 'Mutation';
8504
+ createSalesGoal?: {
8505
+ __typename?: 'CreateSalesGoal';
8506
+ success?: boolean | null;
8507
+ errors?: Array<string | null> | null;
8508
+ salesGoal?: {
8509
+ __typename?: 'SalesGoalObject';
8510
+ id: string;
8511
+ createdAt: any;
8512
+ updatedAt: any;
8513
+ name: string;
8514
+ description?: string | null;
8515
+ startDate: any;
8516
+ endDate: any;
8517
+ type: AppSalesGoalTypeChoices;
8518
+ goals: any;
8519
+ month?: number | null;
8520
+ quarter?: number | null;
8521
+ year?: number | null;
8522
+ account: {
8523
+ __typename?: 'AccountDjangoType';
8524
+ id: string;
8525
+ createdAt: any;
8526
+ updatedAt: any;
8527
+ name: string;
8528
+ isActive: boolean;
8529
+ };
8530
+ } | null;
8531
+ } | null;
8532
+ };
8533
+ export type CreateSavedSearchSpotMutationVariables = Exact<{
8534
+ description?: InputMaybe<Scalars['String']['input']>;
8535
+ name: Scalars['String']['input'];
8536
+ urlParams: Scalars['String']['input'];
8537
+ }>;
8538
+ export type CreateSavedSearchSpotMutation = {
8539
+ __typename?: 'Mutation';
8540
+ createSavedSearchSpot?: {
8541
+ __typename?: 'CreateSavedSearchSpot';
8542
+ success?: boolean | null;
8543
+ message?: string | null;
8544
+ spot?: {
8545
+ __typename?: 'SavedSearchSpotType';
8546
+ id: string;
8547
+ createdAt: any;
8548
+ updatedAt: any;
8549
+ name: string;
8550
+ urlParams: string;
8551
+ description: string;
8552
+ } | null;
8553
+ } | null;
8554
+ };
8089
8555
  export type CreateSegmentMutationVariables = Exact<{
8090
8556
  input: SegmentInput;
8091
8557
  }>;
@@ -8315,11 +8781,19 @@ export type CreateSupplierlistMutation = {
8315
8781
  lastActivity?: any | null;
8316
8782
  statusCounts?: any | null;
8317
8783
  } | null;
8318
- } | null;
8319
- callCampaignLog?: {
8320
- __typename?: 'CallCampaignLogObject';
8321
- id?: string | null;
8322
- status?: string | null;
8784
+ createdBy?: {
8785
+ __typename?: 'UserType';
8786
+ id?: string | null;
8787
+ email?: string | null;
8788
+ firstName?: string | null;
8789
+ lastName?: string | null;
8790
+ picture?: string | null;
8791
+ } | null;
8792
+ } | null;
8793
+ callCampaignLog?: {
8794
+ __typename?: 'CallCampaignLogObject';
8795
+ id?: string | null;
8796
+ status?: string | null;
8323
8797
  outcome?: string | null;
8324
8798
  lastCalled?: any | null;
8325
8799
  notes?: string | null;
@@ -8512,6 +8986,14 @@ export type CreateSupplierlistMutation = {
8512
8986
  lastActivity?: any | null;
8513
8987
  statusCounts?: any | null;
8514
8988
  } | null;
8989
+ createdBy?: {
8990
+ __typename?: 'UserType';
8991
+ id?: string | null;
8992
+ email?: string | null;
8993
+ firstName?: string | null;
8994
+ lastName?: string | null;
8995
+ picture?: string | null;
8996
+ } | null;
8515
8997
  } | null;
8516
8998
  callCampaignLog?: {
8517
8999
  __typename?: 'CallCampaignLogObject';
@@ -8857,6 +9339,14 @@ export type CreateTaskMutation = {
8857
9339
  lastActivity?: any | null;
8858
9340
  statusCounts?: any | null;
8859
9341
  } | null;
9342
+ createdBy?: {
9343
+ __typename?: 'UserType';
9344
+ id?: string | null;
9345
+ email?: string | null;
9346
+ firstName?: string | null;
9347
+ lastName?: string | null;
9348
+ picture?: string | null;
9349
+ } | null;
8860
9350
  } | null;
8861
9351
  callCampaignLog?: {
8862
9352
  __typename?: 'CallCampaignLogObject';
@@ -9054,6 +9544,28 @@ export type DeleteRfqlineitemMutation = {
9054
9544
  message?: string | null;
9055
9545
  } | null;
9056
9546
  };
9547
+ export type DeleteSalesGoalMutationVariables = Exact<{
9548
+ id: Scalars['Int']['input'];
9549
+ }>;
9550
+ export type DeleteSalesGoalMutation = {
9551
+ __typename?: 'Mutation';
9552
+ deleteSalesGoal?: {
9553
+ __typename?: 'DeleteSalesGoal';
9554
+ success?: boolean | null;
9555
+ errors?: Array<string | null> | null;
9556
+ } | null;
9557
+ };
9558
+ export type DeleteSavedSearchSpotMutationVariables = Exact<{
9559
+ id: Scalars['ID']['input'];
9560
+ }>;
9561
+ export type DeleteSavedSearchSpotMutation = {
9562
+ __typename?: 'Mutation';
9563
+ deleteSavedSearchSpot?: {
9564
+ __typename?: 'DeleteSavedSearchSpot';
9565
+ success?: boolean | null;
9566
+ message?: string | null;
9567
+ } | null;
9568
+ };
9057
9569
  export type DeleteSegmentMutationVariables = Exact<{
9058
9570
  id: Scalars['ID']['input'];
9059
9571
  }>;
@@ -9329,6 +9841,8 @@ export type PauseCampaignMutation = {
9329
9841
  bounceRate?: number | null;
9330
9842
  reasonForPause?: string | null;
9331
9843
  pausedUntil?: any | null;
9844
+ subjectLine?: string | null;
9845
+ subjectLines?: Array<string | null> | null;
9332
9846
  segments?: Array<{
9333
9847
  __typename?: 'SegmentObject';
9334
9848
  id?: string | null;
@@ -9356,6 +9870,14 @@ export type PauseCampaignMutation = {
9356
9870
  updatedAt?: any | null;
9357
9871
  campaignType?: string | null;
9358
9872
  } | null;
9873
+ createdBy?: {
9874
+ __typename?: 'UserType';
9875
+ id?: string | null;
9876
+ email?: string | null;
9877
+ firstName?: string | null;
9878
+ lastName?: string | null;
9879
+ picture?: string | null;
9880
+ } | null;
9359
9881
  } | null;
9360
9882
  } | null;
9361
9883
  };
@@ -9385,6 +9907,8 @@ export type PauseCombinedCampaignMutation = {
9385
9907
  completedContacts?: number | null;
9386
9908
  lastActivity?: any | null;
9387
9909
  stepsPreview?: any | null;
9910
+ subjectLine?: string | null;
9911
+ subjectLines?: Array<string | null> | null;
9388
9912
  createdAt?: any | null;
9389
9913
  updatedAt?: any | null;
9390
9914
  steps?: Array<{
@@ -9434,6 +9958,14 @@ export type PauseCombinedCampaignMutation = {
9434
9958
  total?: number | null;
9435
9959
  completionRate?: number | null;
9436
9960
  } | null> | null;
9961
+ createdBy?: {
9962
+ __typename?: 'UserType';
9963
+ id?: string | null;
9964
+ email?: string | null;
9965
+ firstName?: string | null;
9966
+ lastName?: string | null;
9967
+ picture?: string | null;
9968
+ } | null;
9437
9969
  } | null;
9438
9970
  } | null;
9439
9971
  };
@@ -9554,6 +10086,8 @@ export type RemoveContactsFromCampaignMutation = {
9554
10086
  bounceRate?: number | null;
9555
10087
  reasonForPause?: string | null;
9556
10088
  pausedUntil?: any | null;
10089
+ subjectLine?: string | null;
10090
+ subjectLines?: Array<string | null> | null;
9557
10091
  segments?: Array<{
9558
10092
  __typename?: 'SegmentObject';
9559
10093
  id?: string | null;
@@ -9581,6 +10115,14 @@ export type RemoveContactsFromCampaignMutation = {
9581
10115
  updatedAt?: any | null;
9582
10116
  campaignType?: string | null;
9583
10117
  } | null;
10118
+ createdBy?: {
10119
+ __typename?: 'UserType';
10120
+ id?: string | null;
10121
+ email?: string | null;
10122
+ firstName?: string | null;
10123
+ lastName?: string | null;
10124
+ picture?: string | null;
10125
+ } | null;
9584
10126
  } | null;
9585
10127
  } | null;
9586
10128
  };
@@ -9613,6 +10155,8 @@ export type RemoveContactsFromCombinedCampaignMutation = {
9613
10155
  completedContacts?: number | null;
9614
10156
  lastActivity?: any | null;
9615
10157
  stepsPreview?: any | null;
10158
+ subjectLine?: string | null;
10159
+ subjectLines?: Array<string | null> | null;
9616
10160
  createdAt?: any | null;
9617
10161
  updatedAt?: any | null;
9618
10162
  steps?: Array<{
@@ -9662,6 +10206,14 @@ export type RemoveContactsFromCombinedCampaignMutation = {
9662
10206
  total?: number | null;
9663
10207
  completionRate?: number | null;
9664
10208
  } | null> | null;
10209
+ createdBy?: {
10210
+ __typename?: 'UserType';
10211
+ id?: string | null;
10212
+ email?: string | null;
10213
+ firstName?: string | null;
10214
+ lastName?: string | null;
10215
+ picture?: string | null;
10216
+ } | null;
9665
10217
  } | null;
9666
10218
  } | null;
9667
10219
  };
@@ -9779,6 +10331,14 @@ export type RemoveSegmentFromCallCampaignMutation = {
9779
10331
  lastActivity?: any | null;
9780
10332
  statusCounts?: any | null;
9781
10333
  } | null;
10334
+ createdBy?: {
10335
+ __typename?: 'UserType';
10336
+ id?: string | null;
10337
+ email?: string | null;
10338
+ firstName?: string | null;
10339
+ lastName?: string | null;
10340
+ picture?: string | null;
10341
+ } | null;
9782
10342
  } | null;
9783
10343
  } | null;
9784
10344
  };
@@ -9823,6 +10383,8 @@ export type RemoveSegmentFromCampaignMutation = {
9823
10383
  bounceRate?: number | null;
9824
10384
  reasonForPause?: string | null;
9825
10385
  pausedUntil?: any | null;
10386
+ subjectLine?: string | null;
10387
+ subjectLines?: Array<string | null> | null;
9826
10388
  segments?: Array<{
9827
10389
  __typename?: 'SegmentObject';
9828
10390
  id?: string | null;
@@ -9850,6 +10412,14 @@ export type RemoveSegmentFromCampaignMutation = {
9850
10412
  updatedAt?: any | null;
9851
10413
  campaignType?: string | null;
9852
10414
  } | null;
10415
+ createdBy?: {
10416
+ __typename?: 'UserType';
10417
+ id?: string | null;
10418
+ email?: string | null;
10419
+ firstName?: string | null;
10420
+ lastName?: string | null;
10421
+ picture?: string | null;
10422
+ } | null;
9853
10423
  } | null;
9854
10424
  } | null;
9855
10425
  };
@@ -9890,6 +10460,8 @@ export type ResumeCombinedCampaignMutation = {
9890
10460
  completedContacts?: number | null;
9891
10461
  lastActivity?: any | null;
9892
10462
  stepsPreview?: any | null;
10463
+ subjectLine?: string | null;
10464
+ subjectLines?: Array<string | null> | null;
9893
10465
  createdAt?: any | null;
9894
10466
  updatedAt?: any | null;
9895
10467
  steps?: Array<{
@@ -9939,6 +10511,14 @@ export type ResumeCombinedCampaignMutation = {
9939
10511
  total?: number | null;
9940
10512
  completionRate?: number | null;
9941
10513
  } | null> | null;
10514
+ createdBy?: {
10515
+ __typename?: 'UserType';
10516
+ id?: string | null;
10517
+ email?: string | null;
10518
+ firstName?: string | null;
10519
+ lastName?: string | null;
10520
+ picture?: string | null;
10521
+ } | null;
9942
10522
  } | null;
9943
10523
  } | null;
9944
10524
  };
@@ -10005,6 +10585,8 @@ export type ScheduleCampaignMutation = {
10005
10585
  bounceRate?: number | null;
10006
10586
  reasonForPause?: string | null;
10007
10587
  pausedUntil?: any | null;
10588
+ subjectLine?: string | null;
10589
+ subjectLines?: Array<string | null> | null;
10008
10590
  segments?: Array<{
10009
10591
  __typename?: 'SegmentObject';
10010
10592
  id?: string | null;
@@ -10032,6 +10614,14 @@ export type ScheduleCampaignMutation = {
10032
10614
  updatedAt?: any | null;
10033
10615
  campaignType?: string | null;
10034
10616
  } | null;
10617
+ createdBy?: {
10618
+ __typename?: 'UserType';
10619
+ id?: string | null;
10620
+ email?: string | null;
10621
+ firstName?: string | null;
10622
+ lastName?: string | null;
10623
+ picture?: string | null;
10624
+ } | null;
10035
10625
  } | null;
10036
10626
  } | null;
10037
10627
  };
@@ -10062,6 +10652,8 @@ export type ScheduleCombinedCampaignMutation = {
10062
10652
  completedContacts?: number | null;
10063
10653
  lastActivity?: any | null;
10064
10654
  stepsPreview?: any | null;
10655
+ subjectLine?: string | null;
10656
+ subjectLines?: Array<string | null> | null;
10065
10657
  createdAt?: any | null;
10066
10658
  updatedAt?: any | null;
10067
10659
  steps?: Array<{
@@ -10111,6 +10703,14 @@ export type ScheduleCombinedCampaignMutation = {
10111
10703
  total?: number | null;
10112
10704
  completionRate?: number | null;
10113
10705
  } | null> | null;
10706
+ createdBy?: {
10707
+ __typename?: 'UserType';
10708
+ id?: string | null;
10709
+ email?: string | null;
10710
+ firstName?: string | null;
10711
+ lastName?: string | null;
10712
+ picture?: string | null;
10713
+ } | null;
10114
10714
  } | null;
10115
10715
  } | null;
10116
10716
  };
@@ -10136,8 +10736,8 @@ export type ScheduleRfqMutation = {
10136
10736
  quoteDeadline?: any | null;
10137
10737
  deliveryDeadline?: any | null;
10138
10738
  products: any;
10139
- incoterm: string;
10140
- paymentTerms: string;
10739
+ fob?: string | null;
10740
+ paymentTerms?: string | null;
10141
10741
  partialShipmentsAllowed: boolean;
10142
10742
  deliveryLocation?: string | null;
10143
10743
  packagingRequirements: any;
@@ -10344,6 +10944,8 @@ export type SendEmailToContactMutation = {
10344
10944
  bounceRate?: number | null;
10345
10945
  reasonForPause?: string | null;
10346
10946
  pausedUntil?: any | null;
10947
+ subjectLine?: string | null;
10948
+ subjectLines?: Array<string | null> | null;
10347
10949
  segments?: Array<{
10348
10950
  __typename?: 'SegmentObject';
10349
10951
  id?: string | null;
@@ -10371,6 +10973,14 @@ export type SendEmailToContactMutation = {
10371
10973
  updatedAt?: any | null;
10372
10974
  campaignType?: string | null;
10373
10975
  } | null;
10976
+ createdBy?: {
10977
+ __typename?: 'UserType';
10978
+ id?: string | null;
10979
+ email?: string | null;
10980
+ firstName?: string | null;
10981
+ lastName?: string | null;
10982
+ picture?: string | null;
10983
+ } | null;
10374
10984
  } | null;
10375
10985
  segment?: {
10376
10986
  __typename?: 'SegmentObject';
@@ -10476,8 +11086,7 @@ export type SendEmailToEmailThreadMutationVariables = Exact<{
10476
11086
  bccEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>> | InputMaybe<Scalars['String']['input']>>;
10477
11087
  body: Scalars['String']['input'];
10478
11088
  ccEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>> | InputMaybe<Scalars['String']['input']>>;
10479
- contactLogId?: InputMaybe<Scalars['Int']['input']>;
10480
- mailLogId?: InputMaybe<Scalars['Int']['input']>;
11089
+ mailLogId: Scalars['Int']['input'];
10481
11090
  subject?: InputMaybe<Scalars['String']['input']>;
10482
11091
  toEmails?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>> | InputMaybe<Scalars['String']['input']>>;
10483
11092
  }>;
@@ -10487,7 +11096,6 @@ export type SendEmailToEmailThreadMutation = {
10487
11096
  __typename?: 'SendEmailToEmailThread';
10488
11097
  success?: boolean | null;
10489
11098
  message?: string | null;
10490
- contactLogId?: number | null;
10491
11099
  mailLog?: {
10492
11100
  __typename?: 'MailLogObject';
10493
11101
  id?: number | null;
@@ -10584,6 +11192,8 @@ export type SendManualEmailMutation = {
10584
11192
  completedContacts?: number | null;
10585
11193
  lastActivity?: any | null;
10586
11194
  stepsPreview?: any | null;
11195
+ subjectLine?: string | null;
11196
+ subjectLines?: Array<string | null> | null;
10587
11197
  createdAt?: any | null;
10588
11198
  updatedAt?: any | null;
10589
11199
  steps?: Array<{
@@ -10633,6 +11243,14 @@ export type SendManualEmailMutation = {
10633
11243
  total?: number | null;
10634
11244
  completionRate?: number | null;
10635
11245
  } | null> | null;
11246
+ createdBy?: {
11247
+ __typename?: 'UserType';
11248
+ id?: string | null;
11249
+ email?: string | null;
11250
+ firstName?: string | null;
11251
+ lastName?: string | null;
11252
+ picture?: string | null;
11253
+ } | null;
10636
11254
  } | null;
10637
11255
  step?: {
10638
11256
  __typename?: 'CombinedCampaignStepObject';
@@ -10734,6 +11352,14 @@ export type SendManualEmailMutation = {
10734
11352
  lastActivity?: any | null;
10735
11353
  statusCounts?: any | null;
10736
11354
  } | null;
11355
+ createdBy?: {
11356
+ __typename?: 'UserType';
11357
+ id?: string | null;
11358
+ email?: string | null;
11359
+ firstName?: string | null;
11360
+ lastName?: string | null;
11361
+ picture?: string | null;
11362
+ } | null;
10737
11363
  } | null;
10738
11364
  callCampaignLog?: {
10739
11365
  __typename?: 'CallCampaignLogObject';
@@ -10851,6 +11477,8 @@ export type SendManualEmailMutation = {
10851
11477
  bounceRate?: number | null;
10852
11478
  reasonForPause?: string | null;
10853
11479
  pausedUntil?: any | null;
11480
+ subjectLine?: string | null;
11481
+ subjectLines?: Array<string | null> | null;
10854
11482
  segments?: Array<{
10855
11483
  __typename?: 'SegmentObject';
10856
11484
  id?: string | null;
@@ -10878,6 +11506,14 @@ export type SendManualEmailMutation = {
10878
11506
  updatedAt?: any | null;
10879
11507
  campaignType?: string | null;
10880
11508
  } | null;
11509
+ createdBy?: {
11510
+ __typename?: 'UserType';
11511
+ id?: string | null;
11512
+ email?: string | null;
11513
+ firstName?: string | null;
11514
+ lastName?: string | null;
11515
+ picture?: string | null;
11516
+ } | null;
10881
11517
  } | null;
10882
11518
  segment?: {
10883
11519
  __typename?: 'SegmentObject';
@@ -11092,6 +11728,8 @@ export type StartCampaignMutation = {
11092
11728
  bounceRate?: number | null;
11093
11729
  reasonForPause?: string | null;
11094
11730
  pausedUntil?: any | null;
11731
+ subjectLine?: string | null;
11732
+ subjectLines?: Array<string | null> | null;
11095
11733
  segments?: Array<{
11096
11734
  __typename?: 'SegmentObject';
11097
11735
  id?: string | null;
@@ -11119,6 +11757,14 @@ export type StartCampaignMutation = {
11119
11757
  updatedAt?: any | null;
11120
11758
  campaignType?: string | null;
11121
11759
  } | null;
11760
+ createdBy?: {
11761
+ __typename?: 'UserType';
11762
+ id?: string | null;
11763
+ email?: string | null;
11764
+ firstName?: string | null;
11765
+ lastName?: string | null;
11766
+ picture?: string | null;
11767
+ } | null;
11122
11768
  } | null;
11123
11769
  } | null;
11124
11770
  };
@@ -11148,6 +11794,8 @@ export type StartCombinedCampaignMutation = {
11148
11794
  completedContacts?: number | null;
11149
11795
  lastActivity?: any | null;
11150
11796
  stepsPreview?: any | null;
11797
+ subjectLine?: string | null;
11798
+ subjectLines?: Array<string | null> | null;
11151
11799
  createdAt?: any | null;
11152
11800
  updatedAt?: any | null;
11153
11801
  steps?: Array<{
@@ -11197,6 +11845,14 @@ export type StartCombinedCampaignMutation = {
11197
11845
  total?: number | null;
11198
11846
  completionRate?: number | null;
11199
11847
  } | null> | null;
11848
+ createdBy?: {
11849
+ __typename?: 'UserType';
11850
+ id?: string | null;
11851
+ email?: string | null;
11852
+ firstName?: string | null;
11853
+ lastName?: string | null;
11854
+ picture?: string | null;
11855
+ } | null;
11200
11856
  } | null;
11201
11857
  } | null;
11202
11858
  };
@@ -11297,6 +11953,14 @@ export type UpdateCallCampaignMutation = {
11297
11953
  lastActivity?: any | null;
11298
11954
  statusCounts?: any | null;
11299
11955
  } | null;
11956
+ createdBy?: {
11957
+ __typename?: 'UserType';
11958
+ id?: string | null;
11959
+ email?: string | null;
11960
+ firstName?: string | null;
11961
+ lastName?: string | null;
11962
+ picture?: string | null;
11963
+ } | null;
11300
11964
  } | null;
11301
11965
  } | null;
11302
11966
  };
@@ -11416,6 +12080,14 @@ export type UpdateCallCampaignLogMutation = {
11416
12080
  lastActivity?: any | null;
11417
12081
  statusCounts?: any | null;
11418
12082
  } | null;
12083
+ createdBy?: {
12084
+ __typename?: 'UserType';
12085
+ id?: string | null;
12086
+ email?: string | null;
12087
+ firstName?: string | null;
12088
+ lastName?: string | null;
12089
+ picture?: string | null;
12090
+ } | null;
11419
12091
  } | null;
11420
12092
  companyNote?: {
11421
12093
  __typename?: 'CompanyNoteObject';
@@ -11497,6 +12169,8 @@ export type UpdateCampaignMutation = {
11497
12169
  bounceRate?: number | null;
11498
12170
  reasonForPause?: string | null;
11499
12171
  pausedUntil?: any | null;
12172
+ subjectLine?: string | null;
12173
+ subjectLines?: Array<string | null> | null;
11500
12174
  segments?: Array<{
11501
12175
  __typename?: 'SegmentObject';
11502
12176
  id?: string | null;
@@ -11524,6 +12198,14 @@ export type UpdateCampaignMutation = {
11524
12198
  updatedAt?: any | null;
11525
12199
  campaignType?: string | null;
11526
12200
  } | null;
12201
+ createdBy?: {
12202
+ __typename?: 'UserType';
12203
+ id?: string | null;
12204
+ email?: string | null;
12205
+ firstName?: string | null;
12206
+ lastName?: string | null;
12207
+ picture?: string | null;
12208
+ } | null;
11527
12209
  } | null;
11528
12210
  } | null;
11529
12211
  };
@@ -11554,6 +12236,8 @@ export type UpdateCombinedCampaignMutation = {
11554
12236
  completedContacts?: number | null;
11555
12237
  lastActivity?: any | null;
11556
12238
  stepsPreview?: any | null;
12239
+ subjectLine?: string | null;
12240
+ subjectLines?: Array<string | null> | null;
11557
12241
  createdAt?: any | null;
11558
12242
  updatedAt?: any | null;
11559
12243
  steps?: Array<{
@@ -11603,6 +12287,14 @@ export type UpdateCombinedCampaignMutation = {
11603
12287
  total?: number | null;
11604
12288
  completionRate?: number | null;
11605
12289
  } | null> | null;
12290
+ createdBy?: {
12291
+ __typename?: 'UserType';
12292
+ id?: string | null;
12293
+ email?: string | null;
12294
+ firstName?: string | null;
12295
+ lastName?: string | null;
12296
+ picture?: string | null;
12297
+ } | null;
11606
12298
  } | null;
11607
12299
  } | null;
11608
12300
  };
@@ -11666,6 +12358,8 @@ export type UpdateCombinedCampaignLogMutation = {
11666
12358
  completedContacts?: number | null;
11667
12359
  lastActivity?: any | null;
11668
12360
  stepsPreview?: any | null;
12361
+ subjectLine?: string | null;
12362
+ subjectLines?: Array<string | null> | null;
11669
12363
  createdAt?: any | null;
11670
12364
  updatedAt?: any | null;
11671
12365
  steps?: Array<{
@@ -11715,6 +12409,14 @@ export type UpdateCombinedCampaignLogMutation = {
11715
12409
  total?: number | null;
11716
12410
  completionRate?: number | null;
11717
12411
  } | null> | null;
12412
+ createdBy?: {
12413
+ __typename?: 'UserType';
12414
+ id?: string | null;
12415
+ email?: string | null;
12416
+ firstName?: string | null;
12417
+ lastName?: string | null;
12418
+ picture?: string | null;
12419
+ } | null;
11718
12420
  } | null;
11719
12421
  step?: {
11720
12422
  __typename?: 'CombinedCampaignStepObject';
@@ -11816,6 +12518,14 @@ export type UpdateCombinedCampaignLogMutation = {
11816
12518
  lastActivity?: any | null;
11817
12519
  statusCounts?: any | null;
11818
12520
  } | null;
12521
+ createdBy?: {
12522
+ __typename?: 'UserType';
12523
+ id?: string | null;
12524
+ email?: string | null;
12525
+ firstName?: string | null;
12526
+ lastName?: string | null;
12527
+ picture?: string | null;
12528
+ } | null;
11819
12529
  } | null;
11820
12530
  callCampaignLog?: {
11821
12531
  __typename?: 'CallCampaignLogObject';
@@ -12123,6 +12833,14 @@ export type UpdateCompanyMutation = {
12123
12833
  lastActivity?: any | null;
12124
12834
  statusCounts?: any | null;
12125
12835
  } | null;
12836
+ createdBy?: {
12837
+ __typename?: 'UserType';
12838
+ id?: string | null;
12839
+ email?: string | null;
12840
+ firstName?: string | null;
12841
+ lastName?: string | null;
12842
+ picture?: string | null;
12843
+ } | null;
12126
12844
  } | null;
12127
12845
  callCampaignLog?: {
12128
12846
  __typename?: 'CallCampaignLogObject';
@@ -12320,6 +13038,14 @@ export type UpdateCompanyMutation = {
12320
13038
  lastActivity?: any | null;
12321
13039
  statusCounts?: any | null;
12322
13040
  } | null;
13041
+ createdBy?: {
13042
+ __typename?: 'UserType';
13043
+ id?: string | null;
13044
+ email?: string | null;
13045
+ firstName?: string | null;
13046
+ lastName?: string | null;
13047
+ picture?: string | null;
13048
+ } | null;
12323
13049
  } | null;
12324
13050
  callCampaignLog?: {
12325
13051
  __typename?: 'CallCampaignLogObject';
@@ -12712,6 +13438,14 @@ export type UpdateCompanyNoteMutation = {
12712
13438
  lastActivity?: any | null;
12713
13439
  statusCounts?: any | null;
12714
13440
  } | null;
13441
+ createdBy?: {
13442
+ __typename?: 'UserType';
13443
+ id?: string | null;
13444
+ email?: string | null;
13445
+ firstName?: string | null;
13446
+ lastName?: string | null;
13447
+ picture?: string | null;
13448
+ } | null;
12715
13449
  } | null;
12716
13450
  callCampaignLog?: {
12717
13451
  __typename?: 'CallCampaignLogObject';
@@ -12753,6 +13487,22 @@ export type UpdateCompanyNoteMutation = {
12753
13487
  } | null;
12754
13488
  } | null;
12755
13489
  };
13490
+ export type UpdateCompanyProfileMutationVariables = Exact<{
13491
+ input: CompanyProfileInput;
13492
+ }>;
13493
+ export type UpdateCompanyProfileMutation = {
13494
+ __typename?: 'Mutation';
13495
+ updateCompanyProfile?: {
13496
+ __typename?: 'UpdateCompanyProfile';
13497
+ success?: boolean | null;
13498
+ message?: string | null;
13499
+ accountProfile?: {
13500
+ __typename?: 'AccountProfileType';
13501
+ id: string;
13502
+ companyProfile?: any | null;
13503
+ } | null;
13504
+ } | null;
13505
+ };
12756
13506
  export type UpdateContactMutationVariables = Exact<{
12757
13507
  input?: InputMaybe<ContactInput>;
12758
13508
  }>;
@@ -13065,6 +13815,14 @@ export type UpdateMysupplierMutation = {
13065
13815
  lastActivity?: any | null;
13066
13816
  statusCounts?: any | null;
13067
13817
  } | null;
13818
+ createdBy?: {
13819
+ __typename?: 'UserType';
13820
+ id?: string | null;
13821
+ email?: string | null;
13822
+ firstName?: string | null;
13823
+ lastName?: string | null;
13824
+ picture?: string | null;
13825
+ } | null;
13068
13826
  } | null;
13069
13827
  callCampaignLog?: {
13070
13828
  __typename?: 'CallCampaignLogObject';
@@ -13262,6 +14020,14 @@ export type UpdateMysupplierMutation = {
13262
14020
  lastActivity?: any | null;
13263
14021
  statusCounts?: any | null;
13264
14022
  } | null;
14023
+ createdBy?: {
14024
+ __typename?: 'UserType';
14025
+ id?: string | null;
14026
+ email?: string | null;
14027
+ firstName?: string | null;
14028
+ lastName?: string | null;
14029
+ picture?: string | null;
14030
+ } | null;
13265
14031
  } | null;
13266
14032
  callCampaignLog?: {
13267
14033
  __typename?: 'CallCampaignLogObject';
@@ -13542,8 +14308,8 @@ export type UpdateRfqMutation = {
13542
14308
  quoteDeadline?: any | null;
13543
14309
  deliveryDeadline?: any | null;
13544
14310
  products: any;
13545
- incoterm: string;
13546
- paymentTerms: string;
14311
+ fob?: string | null;
14312
+ paymentTerms?: string | null;
13547
14313
  partialShipmentsAllowed: boolean;
13548
14314
  deliveryLocation?: string | null;
13549
14315
  packagingRequirements: any;
@@ -13722,8 +14488,8 @@ export type UpdateRfqlineitemMutation = {
13722
14488
  quoteDeadline?: any | null;
13723
14489
  deliveryDeadline?: any | null;
13724
14490
  products: any;
13725
- incoterm: string;
13726
- paymentTerms: string;
14491
+ fob?: string | null;
14492
+ paymentTerms?: string | null;
13727
14493
  partialShipmentsAllowed: boolean;
13728
14494
  deliveryLocation?: string | null;
13729
14495
  packagingRequirements: any;
@@ -13847,6 +14613,41 @@ export type UpdateRfqlineitemMutation = {
13847
14613
  };
13848
14614
  } | null;
13849
14615
  };
14616
+ export type UpdateSalesGoalMutationVariables = Exact<{
14617
+ id: Scalars['Int']['input'];
14618
+ input: UpdateSalesGoalInput;
14619
+ }>;
14620
+ export type UpdateSalesGoalMutation = {
14621
+ __typename?: 'Mutation';
14622
+ updateSalesGoal?: {
14623
+ __typename?: 'UpdateSalesGoal';
14624
+ success?: boolean | null;
14625
+ errors?: Array<string | null> | null;
14626
+ salesGoal?: {
14627
+ __typename?: 'SalesGoalObject';
14628
+ id: string;
14629
+ createdAt: any;
14630
+ updatedAt: any;
14631
+ name: string;
14632
+ description?: string | null;
14633
+ startDate: any;
14634
+ endDate: any;
14635
+ type: AppSalesGoalTypeChoices;
14636
+ goals: any;
14637
+ month?: number | null;
14638
+ quarter?: number | null;
14639
+ year?: number | null;
14640
+ account: {
14641
+ __typename?: 'AccountDjangoType';
14642
+ id: string;
14643
+ createdAt: any;
14644
+ updatedAt: any;
14645
+ name: string;
14646
+ isActive: boolean;
14647
+ };
14648
+ } | null;
14649
+ } | null;
14650
+ };
13850
14651
  export type UpdateSegmentMutationVariables = Exact<{
13851
14652
  input: SegmentInput;
13852
14653
  }>;
@@ -14077,6 +14878,14 @@ export type UpdateSupplierlistMutation = {
14077
14878
  lastActivity?: any | null;
14078
14879
  statusCounts?: any | null;
14079
14880
  } | null;
14881
+ createdBy?: {
14882
+ __typename?: 'UserType';
14883
+ id?: string | null;
14884
+ email?: string | null;
14885
+ firstName?: string | null;
14886
+ lastName?: string | null;
14887
+ picture?: string | null;
14888
+ } | null;
14080
14889
  } | null;
14081
14890
  callCampaignLog?: {
14082
14891
  __typename?: 'CallCampaignLogObject';
@@ -14274,6 +15083,14 @@ export type UpdateSupplierlistMutation = {
14274
15083
  lastActivity?: any | null;
14275
15084
  statusCounts?: any | null;
14276
15085
  } | null;
15086
+ createdBy?: {
15087
+ __typename?: 'UserType';
15088
+ id?: string | null;
15089
+ email?: string | null;
15090
+ firstName?: string | null;
15091
+ lastName?: string | null;
15092
+ picture?: string | null;
15093
+ } | null;
14277
15094
  } | null;
14278
15095
  callCampaignLog?: {
14279
15096
  __typename?: 'CallCampaignLogObject';
@@ -14620,6 +15437,14 @@ export type UpdateTaskMutation = {
14620
15437
  lastActivity?: any | null;
14621
15438
  statusCounts?: any | null;
14622
15439
  } | null;
15440
+ createdBy?: {
15441
+ __typename?: 'UserType';
15442
+ id?: string | null;
15443
+ email?: string | null;
15444
+ firstName?: string | null;
15445
+ lastName?: string | null;
15446
+ picture?: string | null;
15447
+ } | null;
14623
15448
  } | null;
14624
15449
  callCampaignLog?: {
14625
15450
  __typename?: 'CallCampaignLogObject';
@@ -14765,6 +15590,17 @@ export type AccountMembersQuery = {
14765
15590
  } | null;
14766
15591
  } | null> | null;
14767
15592
  };
15593
+ export type AccountProfileQueryVariables = Exact<{
15594
+ [key: string]: never;
15595
+ }>;
15596
+ export type AccountProfileQuery = {
15597
+ __typename?: 'Query';
15598
+ accountProfile?: {
15599
+ __typename?: 'AccountProfileType';
15600
+ id: string;
15601
+ companyProfile?: any | null;
15602
+ } | null;
15603
+ };
14768
15604
  export type AccountSubscriptionQueryVariables = Exact<{
14769
15605
  [key: string]: never;
14770
15606
  }>;
@@ -14876,6 +15712,14 @@ export type CallCampaignQuery = {
14876
15712
  lastActivity?: any | null;
14877
15713
  statusCounts?: any | null;
14878
15714
  } | null;
15715
+ createdBy?: {
15716
+ __typename?: 'UserType';
15717
+ id?: string | null;
15718
+ email?: string | null;
15719
+ firstName?: string | null;
15720
+ lastName?: string | null;
15721
+ picture?: string | null;
15722
+ } | null;
14879
15723
  } | null;
14880
15724
  };
14881
15725
  export type CallCampaignAnalyticsQueryVariables = Exact<{
@@ -15027,6 +15871,14 @@ export type CallCampaignLogQuery = {
15027
15871
  lastActivity?: any | null;
15028
15872
  statusCounts?: any | null;
15029
15873
  } | null;
15874
+ createdBy?: {
15875
+ __typename?: 'UserType';
15876
+ id?: string | null;
15877
+ email?: string | null;
15878
+ firstName?: string | null;
15879
+ lastName?: string | null;
15880
+ picture?: string | null;
15881
+ } | null;
15030
15882
  } | null;
15031
15883
  companyNote?: {
15032
15884
  __typename?: 'CompanyNoteObject';
@@ -15183,6 +16035,14 @@ export type CallCampaignLogsQuery = {
15183
16035
  lastActivity?: any | null;
15184
16036
  statusCounts?: any | null;
15185
16037
  } | null;
16038
+ createdBy?: {
16039
+ __typename?: 'UserType';
16040
+ id?: string | null;
16041
+ email?: string | null;
16042
+ firstName?: string | null;
16043
+ lastName?: string | null;
16044
+ picture?: string | null;
16045
+ } | null;
15186
16046
  } | null;
15187
16047
  companyNote?: {
15188
16048
  __typename?: 'CompanyNoteObject';
@@ -15353,6 +16213,14 @@ export type CallCampaignReportQuery = {
15353
16213
  lastActivity?: any | null;
15354
16214
  statusCounts?: any | null;
15355
16215
  } | null;
16216
+ createdBy?: {
16217
+ __typename?: 'UserType';
16218
+ id?: string | null;
16219
+ email?: string | null;
16220
+ firstName?: string | null;
16221
+ lastName?: string | null;
16222
+ picture?: string | null;
16223
+ } | null;
15356
16224
  } | null;
15357
16225
  callCampaignLog?: {
15358
16226
  __typename?: 'CallCampaignLogObject';
@@ -15459,6 +16327,7 @@ export type CallCampaignsQueryVariables = Exact<{
15459
16327
  pagination: PaginationInput;
15460
16328
  sortBy?: InputMaybe<Scalars['String']['input']>;
15461
16329
  status?: InputMaybe<Scalars['String']['input']>;
16330
+ createdById?: InputMaybe<Scalars['String']['input']>;
15462
16331
  }>;
15463
16332
  export type CallCampaignsQuery = {
15464
16333
  __typename?: 'Query';
@@ -15517,6 +16386,14 @@ export type CallCampaignsQuery = {
15517
16386
  lastActivity?: any | null;
15518
16387
  statusCounts?: any | null;
15519
16388
  } | null;
16389
+ createdBy?: {
16390
+ __typename?: 'UserType';
16391
+ id?: string | null;
16392
+ email?: string | null;
16393
+ firstName?: string | null;
16394
+ lastName?: string | null;
16395
+ picture?: string | null;
16396
+ } | null;
15520
16397
  } | null> | null;
15521
16398
  pagination?: {
15522
16399
  __typename?: 'PaginationInfo';
@@ -15565,6 +16442,8 @@ export type CampaignQuery = {
15565
16442
  bounceRate?: number | null;
15566
16443
  reasonForPause?: string | null;
15567
16444
  pausedUntil?: any | null;
16445
+ subjectLine?: string | null;
16446
+ subjectLines?: Array<string | null> | null;
15568
16447
  segments?: Array<{
15569
16448
  __typename?: 'SegmentObject';
15570
16449
  id?: string | null;
@@ -15592,6 +16471,14 @@ export type CampaignQuery = {
15592
16471
  updatedAt?: any | null;
15593
16472
  campaignType?: string | null;
15594
16473
  } | null;
16474
+ createdBy?: {
16475
+ __typename?: 'UserType';
16476
+ id?: string | null;
16477
+ email?: string | null;
16478
+ firstName?: string | null;
16479
+ lastName?: string | null;
16480
+ picture?: string | null;
16481
+ } | null;
15595
16482
  } | null;
15596
16483
  };
15597
16484
  export type CampaignAnalyticsQueryVariables = Exact<{
@@ -15745,6 +16632,8 @@ export type CampaignContactsQuery = {
15745
16632
  completedContacts?: number | null;
15746
16633
  lastActivity?: any | null;
15747
16634
  stepsPreview?: any | null;
16635
+ subjectLine?: string | null;
16636
+ subjectLines?: Array<string | null> | null;
15748
16637
  createdAt?: any | null;
15749
16638
  updatedAt?: any | null;
15750
16639
  steps?: Array<{
@@ -15794,6 +16683,14 @@ export type CampaignContactsQuery = {
15794
16683
  total?: number | null;
15795
16684
  completionRate?: number | null;
15796
16685
  } | null> | null;
16686
+ createdBy?: {
16687
+ __typename?: 'UserType';
16688
+ id?: string | null;
16689
+ email?: string | null;
16690
+ firstName?: string | null;
16691
+ lastName?: string | null;
16692
+ picture?: string | null;
16693
+ } | null;
15797
16694
  } | null;
15798
16695
  step?: {
15799
16696
  __typename?: 'CombinedCampaignStepObject';
@@ -15895,6 +16792,14 @@ export type CampaignContactsQuery = {
15895
16792
  lastActivity?: any | null;
15896
16793
  statusCounts?: any | null;
15897
16794
  } | null;
16795
+ createdBy?: {
16796
+ __typename?: 'UserType';
16797
+ id?: string | null;
16798
+ email?: string | null;
16799
+ firstName?: string | null;
16800
+ lastName?: string | null;
16801
+ picture?: string | null;
16802
+ } | null;
15898
16803
  } | null;
15899
16804
  callCampaignLog?: {
15900
16805
  __typename?: 'CallCampaignLogObject';
@@ -16126,6 +17031,8 @@ export type CampaignLogsQuery = {
16126
17031
  bounceRate?: number | null;
16127
17032
  reasonForPause?: string | null;
16128
17033
  pausedUntil?: any | null;
17034
+ subjectLine?: string | null;
17035
+ subjectLines?: Array<string | null> | null;
16129
17036
  segments?: Array<{
16130
17037
  __typename?: 'SegmentObject';
16131
17038
  id?: string | null;
@@ -16153,6 +17060,14 @@ export type CampaignLogsQuery = {
16153
17060
  updatedAt?: any | null;
16154
17061
  campaignType?: string | null;
16155
17062
  } | null;
17063
+ createdBy?: {
17064
+ __typename?: 'UserType';
17065
+ id?: string | null;
17066
+ email?: string | null;
17067
+ firstName?: string | null;
17068
+ lastName?: string | null;
17069
+ picture?: string | null;
17070
+ } | null;
16156
17071
  } | null;
16157
17072
  segment?: {
16158
17073
  __typename?: 'SegmentObject';
@@ -16310,6 +17225,7 @@ export type CampaignsQueryVariables = Exact<{
16310
17225
  pagination: PaginationInput;
16311
17226
  status?: InputMaybe<Scalars['String']['input']>;
16312
17227
  sortBy?: InputMaybe<Scalars['String']['input']>;
17228
+ createdById?: InputMaybe<Scalars['String']['input']>;
16313
17229
  }>;
16314
17230
  export type CampaignsQuery = {
16315
17231
  __typename?: 'Query';
@@ -16346,6 +17262,8 @@ export type CampaignsQuery = {
16346
17262
  bounceRate?: number | null;
16347
17263
  reasonForPause?: string | null;
16348
17264
  pausedUntil?: any | null;
17265
+ subjectLine?: string | null;
17266
+ subjectLines?: Array<string | null> | null;
16349
17267
  segments?: Array<{
16350
17268
  __typename?: 'SegmentObject';
16351
17269
  id?: string | null;
@@ -16373,6 +17291,14 @@ export type CampaignsQuery = {
16373
17291
  updatedAt?: any | null;
16374
17292
  campaignType?: string | null;
16375
17293
  } | null;
17294
+ createdBy?: {
17295
+ __typename?: 'UserType';
17296
+ id?: string | null;
17297
+ email?: string | null;
17298
+ firstName?: string | null;
17299
+ lastName?: string | null;
17300
+ picture?: string | null;
17301
+ } | null;
16376
17302
  } | null> | null;
16377
17303
  pagination?: {
16378
17304
  __typename?: 'PaginationInfo';
@@ -16407,6 +17333,8 @@ export type CombinedCampaignQuery = {
16407
17333
  completedContacts?: number | null;
16408
17334
  lastActivity?: any | null;
16409
17335
  stepsPreview?: any | null;
17336
+ subjectLine?: string | null;
17337
+ subjectLines?: Array<string | null> | null;
16410
17338
  createdAt?: any | null;
16411
17339
  updatedAt?: any | null;
16412
17340
  steps?: Array<{
@@ -16456,6 +17384,14 @@ export type CombinedCampaignQuery = {
16456
17384
  total?: number | null;
16457
17385
  completionRate?: number | null;
16458
17386
  } | null> | null;
17387
+ createdBy?: {
17388
+ __typename?: 'UserType';
17389
+ id?: string | null;
17390
+ email?: string | null;
17391
+ firstName?: string | null;
17392
+ lastName?: string | null;
17393
+ picture?: string | null;
17394
+ } | null;
16459
17395
  } | null;
16460
17396
  };
16461
17397
  export type CombinedCampaignContactsQueryVariables = Exact<{
@@ -16575,6 +17511,8 @@ export type CombinedCampaignContactsQuery = {
16575
17511
  completedContacts?: number | null;
16576
17512
  lastActivity?: any | null;
16577
17513
  stepsPreview?: any | null;
17514
+ subjectLine?: string | null;
17515
+ subjectLines?: Array<string | null> | null;
16578
17516
  createdAt?: any | null;
16579
17517
  updatedAt?: any | null;
16580
17518
  steps?: Array<{
@@ -16624,6 +17562,14 @@ export type CombinedCampaignContactsQuery = {
16624
17562
  total?: number | null;
16625
17563
  completionRate?: number | null;
16626
17564
  } | null> | null;
17565
+ createdBy?: {
17566
+ __typename?: 'UserType';
17567
+ id?: string | null;
17568
+ email?: string | null;
17569
+ firstName?: string | null;
17570
+ lastName?: string | null;
17571
+ picture?: string | null;
17572
+ } | null;
16627
17573
  } | null;
16628
17574
  step?: {
16629
17575
  __typename?: 'CombinedCampaignStepObject';
@@ -16725,6 +17671,14 @@ export type CombinedCampaignContactsQuery = {
16725
17671
  lastActivity?: any | null;
16726
17672
  statusCounts?: any | null;
16727
17673
  } | null;
17674
+ createdBy?: {
17675
+ __typename?: 'UserType';
17676
+ id?: string | null;
17677
+ email?: string | null;
17678
+ firstName?: string | null;
17679
+ lastName?: string | null;
17680
+ picture?: string | null;
17681
+ } | null;
16728
17682
  } | null;
16729
17683
  callCampaignLog?: {
16730
17684
  __typename?: 'CallCampaignLogObject';
@@ -16864,6 +17818,8 @@ export type CombinedCampaignLogsQuery = {
16864
17818
  completedContacts?: number | null;
16865
17819
  lastActivity?: any | null;
16866
17820
  stepsPreview?: any | null;
17821
+ subjectLine?: string | null;
17822
+ subjectLines?: Array<string | null> | null;
16867
17823
  createdAt?: any | null;
16868
17824
  updatedAt?: any | null;
16869
17825
  steps?: Array<{
@@ -16913,6 +17869,14 @@ export type CombinedCampaignLogsQuery = {
16913
17869
  total?: number | null;
16914
17870
  completionRate?: number | null;
16915
17871
  } | null> | null;
17872
+ createdBy?: {
17873
+ __typename?: 'UserType';
17874
+ id?: string | null;
17875
+ email?: string | null;
17876
+ firstName?: string | null;
17877
+ lastName?: string | null;
17878
+ picture?: string | null;
17879
+ } | null;
16916
17880
  } | null;
16917
17881
  step?: {
16918
17882
  __typename?: 'CombinedCampaignStepObject';
@@ -17014,6 +17978,14 @@ export type CombinedCampaignLogsQuery = {
17014
17978
  lastActivity?: any | null;
17015
17979
  statusCounts?: any | null;
17016
17980
  } | null;
17981
+ createdBy?: {
17982
+ __typename?: 'UserType';
17983
+ id?: string | null;
17984
+ email?: string | null;
17985
+ firstName?: string | null;
17986
+ lastName?: string | null;
17987
+ picture?: string | null;
17988
+ } | null;
17017
17989
  } | null;
17018
17990
  callCampaignLog?: {
17019
17991
  __typename?: 'CallCampaignLogObject';
@@ -17181,6 +18153,7 @@ export type CombinedCampaignsQueryVariables = Exact<{
17181
18153
  pagination?: InputMaybe<PaginationInput>;
17182
18154
  status?: InputMaybe<Scalars['String']['input']>;
17183
18155
  sortBy?: InputMaybe<Scalars['String']['input']>;
18156
+ createdById?: InputMaybe<Scalars['String']['input']>;
17184
18157
  }>;
17185
18158
  export type CombinedCampaignsQuery = {
17186
18159
  __typename?: 'Query';
@@ -17203,6 +18176,8 @@ export type CombinedCampaignsQuery = {
17203
18176
  completedContacts?: number | null;
17204
18177
  lastActivity?: any | null;
17205
18178
  stepsPreview?: any | null;
18179
+ subjectLine?: string | null;
18180
+ subjectLines?: Array<string | null> | null;
17206
18181
  createdAt?: any | null;
17207
18182
  updatedAt?: any | null;
17208
18183
  steps?: Array<{
@@ -17252,6 +18227,14 @@ export type CombinedCampaignsQuery = {
17252
18227
  total?: number | null;
17253
18228
  completionRate?: number | null;
17254
18229
  } | null> | null;
18230
+ createdBy?: {
18231
+ __typename?: 'UserType';
18232
+ id?: string | null;
18233
+ email?: string | null;
18234
+ firstName?: string | null;
18235
+ lastName?: string | null;
18236
+ picture?: string | null;
18237
+ } | null;
17255
18238
  } | null> | null;
17256
18239
  pagination?: {
17257
18240
  __typename?: 'PaginationInfo';
@@ -17468,6 +18451,14 @@ export type CompaniesQuery = {
17468
18451
  lastActivity?: any | null;
17469
18452
  statusCounts?: any | null;
17470
18453
  } | null;
18454
+ createdBy?: {
18455
+ __typename?: 'UserType';
18456
+ id?: string | null;
18457
+ email?: string | null;
18458
+ firstName?: string | null;
18459
+ lastName?: string | null;
18460
+ picture?: string | null;
18461
+ } | null;
17471
18462
  } | null;
17472
18463
  callCampaignLog?: {
17473
18464
  __typename?: 'CallCampaignLogObject';
@@ -17665,6 +18656,14 @@ export type CompaniesQuery = {
17665
18656
  lastActivity?: any | null;
17666
18657
  statusCounts?: any | null;
17667
18658
  } | null;
18659
+ createdBy?: {
18660
+ __typename?: 'UserType';
18661
+ id?: string | null;
18662
+ email?: string | null;
18663
+ firstName?: string | null;
18664
+ lastName?: string | null;
18665
+ picture?: string | null;
18666
+ } | null;
17668
18667
  } | null;
17669
18668
  callCampaignLog?: {
17670
18669
  __typename?: 'CallCampaignLogObject';
@@ -18135,6 +19134,14 @@ export type CompanyQuery = {
18135
19134
  lastActivity?: any | null;
18136
19135
  statusCounts?: any | null;
18137
19136
  } | null;
19137
+ createdBy?: {
19138
+ __typename?: 'UserType';
19139
+ id?: string | null;
19140
+ email?: string | null;
19141
+ firstName?: string | null;
19142
+ lastName?: string | null;
19143
+ picture?: string | null;
19144
+ } | null;
18138
19145
  } | null;
18139
19146
  callCampaignLog?: {
18140
19147
  __typename?: 'CallCampaignLogObject';
@@ -18332,6 +19339,14 @@ export type CompanyQuery = {
18332
19339
  lastActivity?: any | null;
18333
19340
  statusCounts?: any | null;
18334
19341
  } | null;
19342
+ createdBy?: {
19343
+ __typename?: 'UserType';
19344
+ id?: string | null;
19345
+ email?: string | null;
19346
+ firstName?: string | null;
19347
+ lastName?: string | null;
19348
+ picture?: string | null;
19349
+ } | null;
18335
19350
  } | null;
18336
19351
  callCampaignLog?: {
18337
19352
  __typename?: 'CallCampaignLogObject';
@@ -18763,6 +19778,14 @@ export type CompanyNoteQuery = {
18763
19778
  lastActivity?: any | null;
18764
19779
  statusCounts?: any | null;
18765
19780
  } | null;
19781
+ createdBy?: {
19782
+ __typename?: 'UserType';
19783
+ id?: string | null;
19784
+ email?: string | null;
19785
+ firstName?: string | null;
19786
+ lastName?: string | null;
19787
+ picture?: string | null;
19788
+ } | null;
18766
19789
  } | null;
18767
19790
  callCampaignLog?: {
18768
19791
  __typename?: 'CallCampaignLogObject';
@@ -18918,6 +19941,14 @@ export type CompanyNotesQuery = {
18918
19941
  lastActivity?: any | null;
18919
19942
  statusCounts?: any | null;
18920
19943
  } | null;
19944
+ createdBy?: {
19945
+ __typename?: 'UserType';
19946
+ id?: string | null;
19947
+ email?: string | null;
19948
+ firstName?: string | null;
19949
+ lastName?: string | null;
19950
+ picture?: string | null;
19951
+ } | null;
18921
19952
  } | null;
18922
19953
  callCampaignLog?: {
18923
19954
  __typename?: 'CallCampaignLogObject';
@@ -19165,6 +20196,14 @@ export type CompanySearchQuery = {
19165
20196
  lastActivity?: any | null;
19166
20197
  statusCounts?: any | null;
19167
20198
  } | null;
20199
+ createdBy?: {
20200
+ __typename?: 'UserType';
20201
+ id?: string | null;
20202
+ email?: string | null;
20203
+ firstName?: string | null;
20204
+ lastName?: string | null;
20205
+ picture?: string | null;
20206
+ } | null;
19168
20207
  } | null;
19169
20208
  callCampaignLog?: {
19170
20209
  __typename?: 'CallCampaignLogObject';
@@ -19362,6 +20401,14 @@ export type CompanySearchQuery = {
19362
20401
  lastActivity?: any | null;
19363
20402
  statusCounts?: any | null;
19364
20403
  } | null;
20404
+ createdBy?: {
20405
+ __typename?: 'UserType';
20406
+ id?: string | null;
20407
+ email?: string | null;
20408
+ firstName?: string | null;
20409
+ lastName?: string | null;
20410
+ picture?: string | null;
20411
+ } | null;
19365
20412
  } | null;
19366
20413
  callCampaignLog?: {
19367
20414
  __typename?: 'CallCampaignLogObject';
@@ -20576,6 +21623,14 @@ export type MysupplierQuery = {
20576
21623
  lastActivity?: any | null;
20577
21624
  statusCounts?: any | null;
20578
21625
  } | null;
21626
+ createdBy?: {
21627
+ __typename?: 'UserType';
21628
+ id?: string | null;
21629
+ email?: string | null;
21630
+ firstName?: string | null;
21631
+ lastName?: string | null;
21632
+ picture?: string | null;
21633
+ } | null;
20579
21634
  } | null;
20580
21635
  callCampaignLog?: {
20581
21636
  __typename?: 'CallCampaignLogObject';
@@ -20773,6 +21828,14 @@ export type MysupplierQuery = {
20773
21828
  lastActivity?: any | null;
20774
21829
  statusCounts?: any | null;
20775
21830
  } | null;
21831
+ createdBy?: {
21832
+ __typename?: 'UserType';
21833
+ id?: string | null;
21834
+ email?: string | null;
21835
+ firstName?: string | null;
21836
+ lastName?: string | null;
21837
+ picture?: string | null;
21838
+ } | null;
20776
21839
  } | null;
20777
21840
  callCampaignLog?: {
20778
21841
  __typename?: 'CallCampaignLogObject';
@@ -21235,6 +22298,14 @@ export type MysupplierListQuery = {
21235
22298
  lastActivity?: any | null;
21236
22299
  statusCounts?: any | null;
21237
22300
  } | null;
22301
+ createdBy?: {
22302
+ __typename?: 'UserType';
22303
+ id?: string | null;
22304
+ email?: string | null;
22305
+ firstName?: string | null;
22306
+ lastName?: string | null;
22307
+ picture?: string | null;
22308
+ } | null;
21238
22309
  } | null;
21239
22310
  callCampaignLog?: {
21240
22311
  __typename?: 'CallCampaignLogObject';
@@ -21432,6 +22503,14 @@ export type MysupplierListQuery = {
21432
22503
  lastActivity?: any | null;
21433
22504
  statusCounts?: any | null;
21434
22505
  } | null;
22506
+ createdBy?: {
22507
+ __typename?: 'UserType';
22508
+ id?: string | null;
22509
+ email?: string | null;
22510
+ firstName?: string | null;
22511
+ lastName?: string | null;
22512
+ picture?: string | null;
22513
+ } | null;
21435
22514
  } | null;
21436
22515
  callCampaignLog?: {
21437
22516
  __typename?: 'CallCampaignLogObject';
@@ -22113,6 +23192,14 @@ export type RecentHistoryQuery = {
22113
23192
  lastActivity?: any | null;
22114
23193
  statusCounts?: any | null;
22115
23194
  } | null;
23195
+ createdBy?: {
23196
+ __typename?: 'UserType';
23197
+ id?: string | null;
23198
+ email?: string | null;
23199
+ firstName?: string | null;
23200
+ lastName?: string | null;
23201
+ picture?: string | null;
23202
+ } | null;
22116
23203
  } | null;
22117
23204
  callCampaignLog?: {
22118
23205
  __typename?: 'CallCampaignLogObject';
@@ -22310,6 +23397,14 @@ export type RecentHistoryQuery = {
22310
23397
  lastActivity?: any | null;
22311
23398
  statusCounts?: any | null;
22312
23399
  } | null;
23400
+ createdBy?: {
23401
+ __typename?: 'UserType';
23402
+ id?: string | null;
23403
+ email?: string | null;
23404
+ firstName?: string | null;
23405
+ lastName?: string | null;
23406
+ picture?: string | null;
23407
+ } | null;
22313
23408
  } | null;
22314
23409
  callCampaignLog?: {
22315
23410
  __typename?: 'CallCampaignLogObject';
@@ -22625,8 +23720,8 @@ export type RfqQuery = {
22625
23720
  quoteDeadline?: any | null;
22626
23721
  deliveryDeadline?: any | null;
22627
23722
  products: any;
22628
- incoterm: string;
22629
- paymentTerms: string;
23723
+ fob?: string | null;
23724
+ paymentTerms?: string | null;
22630
23725
  partialShipmentsAllowed: boolean;
22631
23726
  deliveryLocation?: string | null;
22632
23727
  packagingRequirements: any;
@@ -22789,8 +23884,8 @@ export type RfqListQuery = {
22789
23884
  quoteDeadline?: any | null;
22790
23885
  deliveryDeadline?: any | null;
22791
23886
  products: any;
22792
- incoterm: string;
22793
- paymentTerms: string;
23887
+ fob?: string | null;
23888
+ paymentTerms?: string | null;
22794
23889
  partialShipmentsAllowed: boolean;
22795
23890
  deliveryLocation?: string | null;
22796
23891
  packagingRequirements: any;
@@ -22989,8 +24084,8 @@ export type RfqlineitemQuery = {
22989
24084
  quoteDeadline?: any | null;
22990
24085
  deliveryDeadline?: any | null;
22991
24086
  products: any;
22992
- incoterm: string;
22993
- paymentTerms: string;
24087
+ fob?: string | null;
24088
+ paymentTerms?: string | null;
22994
24089
  partialShipmentsAllowed: boolean;
22995
24090
  deliveryLocation?: string | null;
22996
24091
  packagingRequirements: any;
@@ -23153,8 +24248,8 @@ export type RfqlineitemListQuery = {
23153
24248
  quoteDeadline?: any | null;
23154
24249
  deliveryDeadline?: any | null;
23155
24250
  products: any;
23156
- incoterm: string;
23157
- paymentTerms: string;
24251
+ fob?: string | null;
24252
+ paymentTerms?: string | null;
23158
24253
  partialShipmentsAllowed: boolean;
23159
24254
  deliveryLocation?: string | null;
23160
24255
  packagingRequirements: any;
@@ -23288,6 +24383,146 @@ export type RfqlineitemListQuery = {
23288
24383
  };
23289
24384
  } | null;
23290
24385
  };
24386
+ export type SalesGoalQueryVariables = Exact<{
24387
+ id: Scalars['Int']['input'];
24388
+ }>;
24389
+ export type SalesGoalQuery = {
24390
+ __typename?: 'Query';
24391
+ salesGoal?: {
24392
+ __typename?: 'SalesGoalObject';
24393
+ id: string;
24394
+ createdAt: any;
24395
+ updatedAt: any;
24396
+ name: string;
24397
+ description?: string | null;
24398
+ startDate: any;
24399
+ endDate: any;
24400
+ type: AppSalesGoalTypeChoices;
24401
+ goals: any;
24402
+ month?: number | null;
24403
+ quarter?: number | null;
24404
+ year?: number | null;
24405
+ account: {
24406
+ __typename?: 'AccountDjangoType';
24407
+ id: string;
24408
+ createdAt: any;
24409
+ updatedAt: any;
24410
+ name: string;
24411
+ isActive: boolean;
24412
+ };
24413
+ } | null;
24414
+ };
24415
+ export type SalesGoalReportQueryVariables = Exact<{
24416
+ salesGoalId: Scalars['Int']['input'];
24417
+ forUser?: InputMaybe<Scalars['Int']['input']>;
24418
+ }>;
24419
+ export type SalesGoalReportQuery = {
24420
+ __typename?: 'Query';
24421
+ salesGoalReport?: {
24422
+ __typename?: 'SalesGoalReportType';
24423
+ overallCompletedPercentage?: number | null;
24424
+ rfqs?: {
24425
+ __typename?: 'SalesGoalMetricType';
24426
+ actual?: number | null;
24427
+ goal?: number | null;
24428
+ completedPercentage?: number | null;
24429
+ achieved?: boolean | null;
24430
+ } | null;
24431
+ calls?: {
24432
+ __typename?: 'SalesGoalMetricType';
24433
+ actual?: number | null;
24434
+ goal?: number | null;
24435
+ completedPercentage?: number | null;
24436
+ achieved?: boolean | null;
24437
+ } | null;
24438
+ emailsSent?: {
24439
+ __typename?: 'SalesGoalMetricType';
24440
+ actual?: number | null;
24441
+ goal?: number | null;
24442
+ completedPercentage?: number | null;
24443
+ achieved?: boolean | null;
24444
+ } | null;
24445
+ leadsSaved?: {
24446
+ __typename?: 'SalesGoalMetricType';
24447
+ actual?: number | null;
24448
+ goal?: number | null;
24449
+ completedPercentage?: number | null;
24450
+ achieved?: boolean | null;
24451
+ } | null;
24452
+ customersWon?: {
24453
+ __typename?: 'SalesGoalMetricType';
24454
+ actual?: number | null;
24455
+ goal?: number | null;
24456
+ completedPercentage?: number | null;
24457
+ achieved?: boolean | null;
24458
+ } | null;
24459
+ addedToOutreach?: {
24460
+ __typename?: 'SalesGoalMetricType';
24461
+ actual?: number | null;
24462
+ goal?: number | null;
24463
+ completedPercentage?: number | null;
24464
+ achieved?: boolean | null;
24465
+ } | null;
24466
+ meetingConnections?: {
24467
+ __typename?: 'SalesGoalMetricType';
24468
+ actual?: number | null;
24469
+ goal?: number | null;
24470
+ completedPercentage?: number | null;
24471
+ achieved?: boolean | null;
24472
+ } | null;
24473
+ movedToConversation?: {
24474
+ __typename?: 'SalesGoalMetricType';
24475
+ actual?: number | null;
24476
+ goal?: number | null;
24477
+ completedPercentage?: number | null;
24478
+ achieved?: boolean | null;
24479
+ } | null;
24480
+ } | null;
24481
+ };
24482
+ export type SalesGoalsQueryVariables = Exact<{
24483
+ filters?: InputMaybe<SalesGoalFilterInput>;
24484
+ }>;
24485
+ export type SalesGoalsQuery = {
24486
+ __typename?: 'Query';
24487
+ salesGoals?: Array<{
24488
+ __typename?: 'SalesGoalObject';
24489
+ id: string;
24490
+ createdAt: any;
24491
+ updatedAt: any;
24492
+ name: string;
24493
+ description?: string | null;
24494
+ startDate: any;
24495
+ endDate: any;
24496
+ type: AppSalesGoalTypeChoices;
24497
+ goals: any;
24498
+ month?: number | null;
24499
+ quarter?: number | null;
24500
+ year?: number | null;
24501
+ account: {
24502
+ __typename?: 'AccountDjangoType';
24503
+ id: string;
24504
+ createdAt: any;
24505
+ updatedAt: any;
24506
+ name: string;
24507
+ isActive: boolean;
24508
+ };
24509
+ } | null> | null;
24510
+ };
24511
+ export type SavedSearchSpotsQueryVariables = Exact<{
24512
+ [key: string]: never;
24513
+ }>;
24514
+ export type SavedSearchSpotsQuery = {
24515
+ __typename?: 'Query';
24516
+ savedSearchSpots?: Array<{
24517
+ __typename?: 'SavedSearchSpotType';
24518
+ id: string;
24519
+ createdAt: any;
24520
+ updatedAt: any;
24521
+ name: string;
24522
+ urlParams: string;
24523
+ description: string;
24524
+ } | null> | null;
24525
+ };
23291
24526
  export type SearchContactsQueryVariables = Exact<{
23292
24527
  filters?: InputMaybe<ContactFilterInput>;
23293
24528
  pagination?: InputMaybe<PaginationInput>;
@@ -23462,6 +24697,7 @@ export type SupplierQuery = {
23462
24697
  website?: string | null;
23463
24698
  description?: string | null;
23464
24699
  mySupplierId?: string | null;
24700
+ logoUrl?: string | null;
23465
24701
  contacts?: Array<{
23466
24702
  __typename?: 'ContactObject';
23467
24703
  id?: string | null;
@@ -23745,6 +24981,14 @@ export type SupplierQuery = {
23745
24981
  lastActivity?: any | null;
23746
24982
  statusCounts?: any | null;
23747
24983
  } | null;
24984
+ createdBy?: {
24985
+ __typename?: 'UserType';
24986
+ id?: string | null;
24987
+ email?: string | null;
24988
+ firstName?: string | null;
24989
+ lastName?: string | null;
24990
+ picture?: string | null;
24991
+ } | null;
23748
24992
  } | null;
23749
24993
  callCampaignLog?: {
23750
24994
  __typename?: 'CallCampaignLogObject';
@@ -23942,6 +25186,14 @@ export type SupplierQuery = {
23942
25186
  lastActivity?: any | null;
23943
25187
  statusCounts?: any | null;
23944
25188
  } | null;
25189
+ createdBy?: {
25190
+ __typename?: 'UserType';
25191
+ id?: string | null;
25192
+ email?: string | null;
25193
+ firstName?: string | null;
25194
+ lastName?: string | null;
25195
+ picture?: string | null;
25196
+ } | null;
23945
25197
  } | null;
23946
25198
  callCampaignLog?: {
23947
25199
  __typename?: 'CallCampaignLogObject';
@@ -24513,6 +25765,14 @@ export type SupplierlistQuery = {
24513
25765
  lastActivity?: any | null;
24514
25766
  statusCounts?: any | null;
24515
25767
  } | null;
25768
+ createdBy?: {
25769
+ __typename?: 'UserType';
25770
+ id?: string | null;
25771
+ email?: string | null;
25772
+ firstName?: string | null;
25773
+ lastName?: string | null;
25774
+ picture?: string | null;
25775
+ } | null;
24516
25776
  } | null;
24517
25777
  callCampaignLog?: {
24518
25778
  __typename?: 'CallCampaignLogObject';
@@ -24710,6 +25970,14 @@ export type SupplierlistQuery = {
24710
25970
  lastActivity?: any | null;
24711
25971
  statusCounts?: any | null;
24712
25972
  } | null;
25973
+ createdBy?: {
25974
+ __typename?: 'UserType';
25975
+ id?: string | null;
25976
+ email?: string | null;
25977
+ firstName?: string | null;
25978
+ lastName?: string | null;
25979
+ picture?: string | null;
25980
+ } | null;
24713
25981
  } | null;
24714
25982
  callCampaignLog?: {
24715
25983
  __typename?: 'CallCampaignLogObject';
@@ -25172,6 +26440,14 @@ export type SupplierlistListQuery = {
25172
26440
  lastActivity?: any | null;
25173
26441
  statusCounts?: any | null;
25174
26442
  } | null;
26443
+ createdBy?: {
26444
+ __typename?: 'UserType';
26445
+ id?: string | null;
26446
+ email?: string | null;
26447
+ firstName?: string | null;
26448
+ lastName?: string | null;
26449
+ picture?: string | null;
26450
+ } | null;
25175
26451
  } | null;
25176
26452
  callCampaignLog?: {
25177
26453
  __typename?: 'CallCampaignLogObject';
@@ -25369,6 +26645,14 @@ export type SupplierlistListQuery = {
25369
26645
  lastActivity?: any | null;
25370
26646
  statusCounts?: any | null;
25371
26647
  } | null;
26648
+ createdBy?: {
26649
+ __typename?: 'UserType';
26650
+ id?: string | null;
26651
+ email?: string | null;
26652
+ firstName?: string | null;
26653
+ lastName?: string | null;
26654
+ picture?: string | null;
26655
+ } | null;
25372
26656
  } | null;
25373
26657
  callCampaignLog?: {
25374
26658
  __typename?: 'CallCampaignLogObject';
@@ -25657,6 +26941,7 @@ export type SuppliersQuery = {
25657
26941
  website?: string | null;
25658
26942
  description?: string | null;
25659
26943
  mySupplierId?: string | null;
26944
+ logoUrl?: string | null;
25660
26945
  contacts?: Array<{
25661
26946
  __typename?: 'ContactObject';
25662
26947
  id?: string | null;
@@ -25940,6 +27225,14 @@ export type SuppliersQuery = {
25940
27225
  lastActivity?: any | null;
25941
27226
  statusCounts?: any | null;
25942
27227
  } | null;
27228
+ createdBy?: {
27229
+ __typename?: 'UserType';
27230
+ id?: string | null;
27231
+ email?: string | null;
27232
+ firstName?: string | null;
27233
+ lastName?: string | null;
27234
+ picture?: string | null;
27235
+ } | null;
25943
27236
  } | null;
25944
27237
  callCampaignLog?: {
25945
27238
  __typename?: 'CallCampaignLogObject';
@@ -26137,6 +27430,14 @@ export type SuppliersQuery = {
26137
27430
  lastActivity?: any | null;
26138
27431
  statusCounts?: any | null;
26139
27432
  } | null;
27433
+ createdBy?: {
27434
+ __typename?: 'UserType';
27435
+ id?: string | null;
27436
+ email?: string | null;
27437
+ firstName?: string | null;
27438
+ lastName?: string | null;
27439
+ picture?: string | null;
27440
+ } | null;
26140
27441
  } | null;
26141
27442
  callCampaignLog?: {
26142
27443
  __typename?: 'CallCampaignLogObject';
@@ -26499,6 +27800,14 @@ export type TaskQuery = {
26499
27800
  lastActivity?: any | null;
26500
27801
  statusCounts?: any | null;
26501
27802
  } | null;
27803
+ createdBy?: {
27804
+ __typename?: 'UserType';
27805
+ id?: string | null;
27806
+ email?: string | null;
27807
+ firstName?: string | null;
27808
+ lastName?: string | null;
27809
+ picture?: string | null;
27810
+ } | null;
26502
27811
  } | null;
26503
27812
  callCampaignLog?: {
26504
27813
  __typename?: 'CallCampaignLogObject';
@@ -26654,6 +27963,14 @@ export type TasksQuery = {
26654
27963
  lastActivity?: any | null;
26655
27964
  statusCounts?: any | null;
26656
27965
  } | null;
27966
+ createdBy?: {
27967
+ __typename?: 'UserType';
27968
+ id?: string | null;
27969
+ email?: string | null;
27970
+ firstName?: string | null;
27971
+ lastName?: string | null;
27972
+ picture?: string | null;
27973
+ } | null;
26657
27974
  } | null;
26658
27975
  callCampaignLog?: {
26659
27976
  __typename?: 'CallCampaignLogObject';
@@ -27195,6 +28512,30 @@ export declare function useClearAllNotificationsMutation(baseOptions?: Apollo.Mu
27195
28512
  export type ClearAllNotificationsMutationHookResult = ReturnType<typeof useClearAllNotificationsMutation>;
27196
28513
  export type ClearAllNotificationsMutationResult = Apollo.MutationResult<ClearAllNotificationsMutation>;
27197
28514
  export type ClearAllNotificationsMutationOptions = Apollo.BaseMutationOptions<ClearAllNotificationsMutation, ClearAllNotificationsMutationVariables>;
28515
+ export declare const ClearAllSavedSearchSpotsDocument: Apollo.DocumentNode;
28516
+ export type ClearAllSavedSearchSpotsMutationFn = Apollo.MutationFunction<ClearAllSavedSearchSpotsMutation, ClearAllSavedSearchSpotsMutationVariables>;
28517
+ /**
28518
+ * __useClearAllSavedSearchSpotsMutation__
28519
+ *
28520
+ * To run a mutation, you first call `useClearAllSavedSearchSpotsMutation` within a React component and pass it any options that fit your needs.
28521
+ * When your component renders, `useClearAllSavedSearchSpotsMutation` returns a tuple that includes:
28522
+ * - A mutate function that you can call at any time to execute the mutation
28523
+ * - An object with fields that represent the current status of the mutation's execution
28524
+ *
28525
+ * @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;
28526
+ *
28527
+ * @example
28528
+ * const [clearAllSavedSearchSpotsMutation, { data, loading, error }] = useClearAllSavedSearchSpotsMutation({
28529
+ * variables: {
28530
+ * },
28531
+ * });
28532
+ */
28533
+ export declare function useClearAllSavedSearchSpotsMutation(baseOptions?: Apollo.MutationHookOptions<ClearAllSavedSearchSpotsMutation, ClearAllSavedSearchSpotsMutationVariables>): Apollo.MutationTuple<ClearAllSavedSearchSpotsMutation, Exact<{
28534
+ [key: string]: never;
28535
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
28536
+ export type ClearAllSavedSearchSpotsMutationHookResult = ReturnType<typeof useClearAllSavedSearchSpotsMutation>;
28537
+ export type ClearAllSavedSearchSpotsMutationResult = Apollo.MutationResult<ClearAllSavedSearchSpotsMutation>;
28538
+ export type ClearAllSavedSearchSpotsMutationOptions = Apollo.BaseMutationOptions<ClearAllSavedSearchSpotsMutation, ClearAllSavedSearchSpotsMutationVariables>;
27198
28539
  export declare const CompleteCampaignDocument: Apollo.DocumentNode;
27199
28540
  export type CompleteCampaignMutationFn = Apollo.MutationFunction<CompleteCampaignMutation, CompleteCampaignMutationVariables>;
27200
28541
  /**
@@ -27572,6 +28913,60 @@ export declare function useCreateRfqlineitemMutation(baseOptions?: Apollo.Mutati
27572
28913
  export type CreateRfqlineitemMutationHookResult = ReturnType<typeof useCreateRfqlineitemMutation>;
27573
28914
  export type CreateRfqlineitemMutationResult = Apollo.MutationResult<CreateRfqlineitemMutation>;
27574
28915
  export type CreateRfqlineitemMutationOptions = Apollo.BaseMutationOptions<CreateRfqlineitemMutation, CreateRfqlineitemMutationVariables>;
28916
+ export declare const CreateSalesGoalDocument: Apollo.DocumentNode;
28917
+ export type CreateSalesGoalMutationFn = Apollo.MutationFunction<CreateSalesGoalMutation, CreateSalesGoalMutationVariables>;
28918
+ /**
28919
+ * __useCreateSalesGoalMutation__
28920
+ *
28921
+ * To run a mutation, you first call `useCreateSalesGoalMutation` within a React component and pass it any options that fit your needs.
28922
+ * When your component renders, `useCreateSalesGoalMutation` returns a tuple that includes:
28923
+ * - A mutate function that you can call at any time to execute the mutation
28924
+ * - An object with fields that represent the current status of the mutation's execution
28925
+ *
28926
+ * @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;
28927
+ *
28928
+ * @example
28929
+ * const [createSalesGoalMutation, { data, loading, error }] = useCreateSalesGoalMutation({
28930
+ * variables: {
28931
+ * input: // value for 'input'
28932
+ * },
28933
+ * });
28934
+ */
28935
+ export declare function useCreateSalesGoalMutation(baseOptions?: Apollo.MutationHookOptions<CreateSalesGoalMutation, CreateSalesGoalMutationVariables>): Apollo.MutationTuple<CreateSalesGoalMutation, Exact<{
28936
+ input: CreateSalesGoalInput;
28937
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
28938
+ export type CreateSalesGoalMutationHookResult = ReturnType<typeof useCreateSalesGoalMutation>;
28939
+ export type CreateSalesGoalMutationResult = Apollo.MutationResult<CreateSalesGoalMutation>;
28940
+ export type CreateSalesGoalMutationOptions = Apollo.BaseMutationOptions<CreateSalesGoalMutation, CreateSalesGoalMutationVariables>;
28941
+ export declare const CreateSavedSearchSpotDocument: Apollo.DocumentNode;
28942
+ export type CreateSavedSearchSpotMutationFn = Apollo.MutationFunction<CreateSavedSearchSpotMutation, CreateSavedSearchSpotMutationVariables>;
28943
+ /**
28944
+ * __useCreateSavedSearchSpotMutation__
28945
+ *
28946
+ * To run a mutation, you first call `useCreateSavedSearchSpotMutation` within a React component and pass it any options that fit your needs.
28947
+ * When your component renders, `useCreateSavedSearchSpotMutation` returns a tuple that includes:
28948
+ * - A mutate function that you can call at any time to execute the mutation
28949
+ * - An object with fields that represent the current status of the mutation's execution
28950
+ *
28951
+ * @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;
28952
+ *
28953
+ * @example
28954
+ * const [createSavedSearchSpotMutation, { data, loading, error }] = useCreateSavedSearchSpotMutation({
28955
+ * variables: {
28956
+ * description: // value for 'description'
28957
+ * name: // value for 'name'
28958
+ * urlParams: // value for 'urlParams'
28959
+ * },
28960
+ * });
28961
+ */
28962
+ export declare function useCreateSavedSearchSpotMutation(baseOptions?: Apollo.MutationHookOptions<CreateSavedSearchSpotMutation, CreateSavedSearchSpotMutationVariables>): Apollo.MutationTuple<CreateSavedSearchSpotMutation, Exact<{
28963
+ description?: InputMaybe<Scalars["String"]["input"]>;
28964
+ name: Scalars["String"]["input"];
28965
+ urlParams: Scalars["String"]["input"];
28966
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
28967
+ export type CreateSavedSearchSpotMutationHookResult = ReturnType<typeof useCreateSavedSearchSpotMutation>;
28968
+ export type CreateSavedSearchSpotMutationResult = Apollo.MutationResult<CreateSavedSearchSpotMutation>;
28969
+ export type CreateSavedSearchSpotMutationOptions = Apollo.BaseMutationOptions<CreateSavedSearchSpotMutation, CreateSavedSearchSpotMutationVariables>;
27575
28970
  export declare const CreateSegmentDocument: Apollo.DocumentNode;
27576
28971
  export type CreateSegmentMutationFn = Apollo.MutationFunction<CreateSegmentMutation, CreateSegmentMutationVariables>;
27577
28972
  /**
@@ -27947,6 +29342,56 @@ export declare function useDeleteRfqlineitemMutation(baseOptions?: Apollo.Mutati
27947
29342
  export type DeleteRfqlineitemMutationHookResult = ReturnType<typeof useDeleteRfqlineitemMutation>;
27948
29343
  export type DeleteRfqlineitemMutationResult = Apollo.MutationResult<DeleteRfqlineitemMutation>;
27949
29344
  export type DeleteRfqlineitemMutationOptions = Apollo.BaseMutationOptions<DeleteRfqlineitemMutation, DeleteRfqlineitemMutationVariables>;
29345
+ export declare const DeleteSalesGoalDocument: Apollo.DocumentNode;
29346
+ export type DeleteSalesGoalMutationFn = Apollo.MutationFunction<DeleteSalesGoalMutation, DeleteSalesGoalMutationVariables>;
29347
+ /**
29348
+ * __useDeleteSalesGoalMutation__
29349
+ *
29350
+ * To run a mutation, you first call `useDeleteSalesGoalMutation` within a React component and pass it any options that fit your needs.
29351
+ * When your component renders, `useDeleteSalesGoalMutation` returns a tuple that includes:
29352
+ * - A mutate function that you can call at any time to execute the mutation
29353
+ * - An object with fields that represent the current status of the mutation's execution
29354
+ *
29355
+ * @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;
29356
+ *
29357
+ * @example
29358
+ * const [deleteSalesGoalMutation, { data, loading, error }] = useDeleteSalesGoalMutation({
29359
+ * variables: {
29360
+ * id: // value for 'id'
29361
+ * },
29362
+ * });
29363
+ */
29364
+ export declare function useDeleteSalesGoalMutation(baseOptions?: Apollo.MutationHookOptions<DeleteSalesGoalMutation, DeleteSalesGoalMutationVariables>): Apollo.MutationTuple<DeleteSalesGoalMutation, Exact<{
29365
+ id: Scalars["Int"]["input"];
29366
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
29367
+ export type DeleteSalesGoalMutationHookResult = ReturnType<typeof useDeleteSalesGoalMutation>;
29368
+ export type DeleteSalesGoalMutationResult = Apollo.MutationResult<DeleteSalesGoalMutation>;
29369
+ export type DeleteSalesGoalMutationOptions = Apollo.BaseMutationOptions<DeleteSalesGoalMutation, DeleteSalesGoalMutationVariables>;
29370
+ export declare const DeleteSavedSearchSpotDocument: Apollo.DocumentNode;
29371
+ export type DeleteSavedSearchSpotMutationFn = Apollo.MutationFunction<DeleteSavedSearchSpotMutation, DeleteSavedSearchSpotMutationVariables>;
29372
+ /**
29373
+ * __useDeleteSavedSearchSpotMutation__
29374
+ *
29375
+ * To run a mutation, you first call `useDeleteSavedSearchSpotMutation` within a React component and pass it any options that fit your needs.
29376
+ * When your component renders, `useDeleteSavedSearchSpotMutation` returns a tuple that includes:
29377
+ * - A mutate function that you can call at any time to execute the mutation
29378
+ * - An object with fields that represent the current status of the mutation's execution
29379
+ *
29380
+ * @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;
29381
+ *
29382
+ * @example
29383
+ * const [deleteSavedSearchSpotMutation, { data, loading, error }] = useDeleteSavedSearchSpotMutation({
29384
+ * variables: {
29385
+ * id: // value for 'id'
29386
+ * },
29387
+ * });
29388
+ */
29389
+ export declare function useDeleteSavedSearchSpotMutation(baseOptions?: Apollo.MutationHookOptions<DeleteSavedSearchSpotMutation, DeleteSavedSearchSpotMutationVariables>): Apollo.MutationTuple<DeleteSavedSearchSpotMutation, Exact<{
29390
+ id: Scalars["ID"]["input"];
29391
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
29392
+ export type DeleteSavedSearchSpotMutationHookResult = ReturnType<typeof useDeleteSavedSearchSpotMutation>;
29393
+ export type DeleteSavedSearchSpotMutationResult = Apollo.MutationResult<DeleteSavedSearchSpotMutation>;
29394
+ export type DeleteSavedSearchSpotMutationOptions = Apollo.BaseMutationOptions<DeleteSavedSearchSpotMutation, DeleteSavedSearchSpotMutationVariables>;
27950
29395
  export declare const DeleteSegmentDocument: Apollo.DocumentNode;
27951
29396
  export type DeleteSegmentMutationFn = Apollo.MutationFunction<DeleteSegmentMutation, DeleteSegmentMutationVariables>;
27952
29397
  /**
@@ -28884,7 +30329,6 @@ export type SendEmailToEmailThreadMutationFn = Apollo.MutationFunction<SendEmail
28884
30329
  * bccEmails: // value for 'bccEmails'
28885
30330
  * body: // value for 'body'
28886
30331
  * ccEmails: // value for 'ccEmails'
28887
- * contactLogId: // value for 'contactLogId'
28888
30332
  * mailLogId: // value for 'mailLogId'
28889
30333
  * subject: // value for 'subject'
28890
30334
  * toEmails: // value for 'toEmails'
@@ -28897,8 +30341,7 @@ export declare function useSendEmailToEmailThreadMutation(baseOptions?: Apollo.M
28897
30341
  bccEmails?: InputMaybe<Array<InputMaybe<Scalars["String"]["input"]>> | InputMaybe<Scalars["String"]["input"]>>;
28898
30342
  body: Scalars["String"]["input"];
28899
30343
  ccEmails?: InputMaybe<Array<InputMaybe<Scalars["String"]["input"]>> | InputMaybe<Scalars["String"]["input"]>>;
28900
- contactLogId?: InputMaybe<Scalars["Int"]["input"]>;
28901
- mailLogId?: InputMaybe<Scalars["Int"]["input"]>;
30344
+ mailLogId: Scalars["Int"]["input"];
28902
30345
  subject?: InputMaybe<Scalars["String"]["input"]>;
28903
30346
  toEmails?: InputMaybe<Array<InputMaybe<Scalars["String"]["input"]>> | InputMaybe<Scalars["String"]["input"]>>;
28904
30347
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
@@ -29491,6 +30934,31 @@ export declare function useUpdateCompanyNoteMutation(baseOptions?: Apollo.Mutati
29491
30934
  export type UpdateCompanyNoteMutationHookResult = ReturnType<typeof useUpdateCompanyNoteMutation>;
29492
30935
  export type UpdateCompanyNoteMutationResult = Apollo.MutationResult<UpdateCompanyNoteMutation>;
29493
30936
  export type UpdateCompanyNoteMutationOptions = Apollo.BaseMutationOptions<UpdateCompanyNoteMutation, UpdateCompanyNoteMutationVariables>;
30937
+ export declare const UpdateCompanyProfileDocument: Apollo.DocumentNode;
30938
+ export type UpdateCompanyProfileMutationFn = Apollo.MutationFunction<UpdateCompanyProfileMutation, UpdateCompanyProfileMutationVariables>;
30939
+ /**
30940
+ * __useUpdateCompanyProfileMutation__
30941
+ *
30942
+ * To run a mutation, you first call `useUpdateCompanyProfileMutation` within a React component and pass it any options that fit your needs.
30943
+ * When your component renders, `useUpdateCompanyProfileMutation` returns a tuple that includes:
30944
+ * - A mutate function that you can call at any time to execute the mutation
30945
+ * - An object with fields that represent the current status of the mutation's execution
30946
+ *
30947
+ * @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;
30948
+ *
30949
+ * @example
30950
+ * const [updateCompanyProfileMutation, { data, loading, error }] = useUpdateCompanyProfileMutation({
30951
+ * variables: {
30952
+ * input: // value for 'input'
30953
+ * },
30954
+ * });
30955
+ */
30956
+ export declare function useUpdateCompanyProfileMutation(baseOptions?: Apollo.MutationHookOptions<UpdateCompanyProfileMutation, UpdateCompanyProfileMutationVariables>): Apollo.MutationTuple<UpdateCompanyProfileMutation, Exact<{
30957
+ input: CompanyProfileInput;
30958
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
30959
+ export type UpdateCompanyProfileMutationHookResult = ReturnType<typeof useUpdateCompanyProfileMutation>;
30960
+ export type UpdateCompanyProfileMutationResult = Apollo.MutationResult<UpdateCompanyProfileMutation>;
30961
+ export type UpdateCompanyProfileMutationOptions = Apollo.BaseMutationOptions<UpdateCompanyProfileMutation, UpdateCompanyProfileMutationVariables>;
29494
30962
  export declare const UpdateContactDocument: Apollo.DocumentNode;
29495
30963
  export type UpdateContactMutationFn = Apollo.MutationFunction<UpdateContactMutation, UpdateContactMutationVariables>;
29496
30964
  /**
@@ -29624,6 +31092,33 @@ export declare function useUpdateRfqlineitemMutation(baseOptions?: Apollo.Mutati
29624
31092
  export type UpdateRfqlineitemMutationHookResult = ReturnType<typeof useUpdateRfqlineitemMutation>;
29625
31093
  export type UpdateRfqlineitemMutationResult = Apollo.MutationResult<UpdateRfqlineitemMutation>;
29626
31094
  export type UpdateRfqlineitemMutationOptions = Apollo.BaseMutationOptions<UpdateRfqlineitemMutation, UpdateRfqlineitemMutationVariables>;
31095
+ export declare const UpdateSalesGoalDocument: Apollo.DocumentNode;
31096
+ export type UpdateSalesGoalMutationFn = Apollo.MutationFunction<UpdateSalesGoalMutation, UpdateSalesGoalMutationVariables>;
31097
+ /**
31098
+ * __useUpdateSalesGoalMutation__
31099
+ *
31100
+ * To run a mutation, you first call `useUpdateSalesGoalMutation` within a React component and pass it any options that fit your needs.
31101
+ * When your component renders, `useUpdateSalesGoalMutation` returns a tuple that includes:
31102
+ * - A mutate function that you can call at any time to execute the mutation
31103
+ * - An object with fields that represent the current status of the mutation's execution
31104
+ *
31105
+ * @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;
31106
+ *
31107
+ * @example
31108
+ * const [updateSalesGoalMutation, { data, loading, error }] = useUpdateSalesGoalMutation({
31109
+ * variables: {
31110
+ * id: // value for 'id'
31111
+ * input: // value for 'input'
31112
+ * },
31113
+ * });
31114
+ */
31115
+ export declare function useUpdateSalesGoalMutation(baseOptions?: Apollo.MutationHookOptions<UpdateSalesGoalMutation, UpdateSalesGoalMutationVariables>): Apollo.MutationTuple<UpdateSalesGoalMutation, Exact<{
31116
+ id: Scalars["Int"]["input"];
31117
+ input: UpdateSalesGoalInput;
31118
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
31119
+ export type UpdateSalesGoalMutationHookResult = ReturnType<typeof useUpdateSalesGoalMutation>;
31120
+ export type UpdateSalesGoalMutationResult = Apollo.MutationResult<UpdateSalesGoalMutation>;
31121
+ export type UpdateSalesGoalMutationOptions = Apollo.BaseMutationOptions<UpdateSalesGoalMutation, UpdateSalesGoalMutationVariables>;
29627
31122
  export declare const UpdateSegmentDocument: Apollo.DocumentNode;
29628
31123
  export type UpdateSegmentMutationFn = Apollo.MutationFunction<UpdateSegmentMutation, UpdateSegmentMutationVariables>;
29629
31124
  /**
@@ -29811,6 +31306,35 @@ export type AccountMembersQueryHookResult = ReturnType<typeof useAccountMembersQ
29811
31306
  export type AccountMembersLazyQueryHookResult = ReturnType<typeof useAccountMembersLazyQuery>;
29812
31307
  export type AccountMembersSuspenseQueryHookResult = ReturnType<typeof useAccountMembersSuspenseQuery>;
29813
31308
  export type AccountMembersQueryResult = Apollo.QueryResult<AccountMembersQuery, AccountMembersQueryVariables>;
31309
+ export declare const AccountProfileDocument: Apollo.DocumentNode;
31310
+ /**
31311
+ * __useAccountProfileQuery__
31312
+ *
31313
+ * To run a query within a React component, call `useAccountProfileQuery` and pass it any options that fit your needs.
31314
+ * When your component renders, `useAccountProfileQuery` returns an object from Apollo Client that contains loading, error, and data properties
31315
+ * you can use to render your UI.
31316
+ *
31317
+ * @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;
31318
+ *
31319
+ * @example
31320
+ * const { data, loading, error } = useAccountProfileQuery({
31321
+ * variables: {
31322
+ * },
31323
+ * });
31324
+ */
31325
+ export declare function useAccountProfileQuery(baseOptions?: Apollo.QueryHookOptions<AccountProfileQuery, AccountProfileQueryVariables>): Apollo.QueryResult<AccountProfileQuery, Exact<{
31326
+ [key: string]: never;
31327
+ }>>;
31328
+ export declare function useAccountProfileLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<AccountProfileQuery, AccountProfileQueryVariables>): Apollo.LazyQueryResultTuple<AccountProfileQuery, Exact<{
31329
+ [key: string]: never;
31330
+ }>>;
31331
+ export declare function useAccountProfileSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<AccountProfileQuery, AccountProfileQueryVariables>): Apollo.UseSuspenseQueryResult<AccountProfileQuery | undefined, Exact<{
31332
+ [key: string]: never;
31333
+ }>>;
31334
+ export type AccountProfileQueryHookResult = ReturnType<typeof useAccountProfileQuery>;
31335
+ export type AccountProfileLazyQueryHookResult = ReturnType<typeof useAccountProfileLazyQuery>;
31336
+ export type AccountProfileSuspenseQueryHookResult = ReturnType<typeof useAccountProfileSuspenseQuery>;
31337
+ export type AccountProfileQueryResult = Apollo.QueryResult<AccountProfileQuery, AccountProfileQueryVariables>;
29814
31338
  export declare const AccountSubscriptionDocument: Apollo.DocumentNode;
29815
31339
  /**
29816
31340
  * __useAccountSubscriptionQuery__
@@ -30079,6 +31603,7 @@ export declare const CallCampaignsDocument: Apollo.DocumentNode;
30079
31603
  * pagination: // value for 'pagination'
30080
31604
  * sortBy: // value for 'sortBy'
30081
31605
  * status: // value for 'status'
31606
+ * createdById: // value for 'createdById'
30082
31607
  * },
30083
31608
  * });
30084
31609
  */
@@ -30091,16 +31616,19 @@ export declare function useCallCampaignsQuery(baseOptions: Apollo.QueryHookOptio
30091
31616
  pagination: PaginationInput;
30092
31617
  sortBy?: InputMaybe<Scalars["String"]["input"]>;
30093
31618
  status?: InputMaybe<Scalars["String"]["input"]>;
31619
+ createdById?: InputMaybe<Scalars["String"]["input"]>;
30094
31620
  }>>;
30095
31621
  export declare function useCallCampaignsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CallCampaignsQuery, CallCampaignsQueryVariables>): Apollo.LazyQueryResultTuple<CallCampaignsQuery, Exact<{
30096
31622
  pagination: PaginationInput;
30097
31623
  sortBy?: InputMaybe<Scalars["String"]["input"]>;
30098
31624
  status?: InputMaybe<Scalars["String"]["input"]>;
31625
+ createdById?: InputMaybe<Scalars["String"]["input"]>;
30099
31626
  }>>;
30100
31627
  export declare function useCallCampaignsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CallCampaignsQuery, CallCampaignsQueryVariables>): Apollo.UseSuspenseQueryResult<CallCampaignsQuery | undefined, Exact<{
30101
31628
  pagination: PaginationInput;
30102
31629
  sortBy?: InputMaybe<Scalars["String"]["input"]>;
30103
31630
  status?: InputMaybe<Scalars["String"]["input"]>;
31631
+ createdById?: InputMaybe<Scalars["String"]["input"]>;
30104
31632
  }>>;
30105
31633
  export type CallCampaignsQueryHookResult = ReturnType<typeof useCallCampaignsQuery>;
30106
31634
  export type CallCampaignsLazyQueryHookResult = ReturnType<typeof useCallCampaignsLazyQuery>;
@@ -30312,6 +31840,7 @@ export declare const CampaignsDocument: Apollo.DocumentNode;
30312
31840
  * pagination: // value for 'pagination'
30313
31841
  * status: // value for 'status'
30314
31842
  * sortBy: // value for 'sortBy'
31843
+ * createdById: // value for 'createdById'
30315
31844
  * },
30316
31845
  * });
30317
31846
  */
@@ -30324,16 +31853,19 @@ export declare function useCampaignsQuery(baseOptions: Apollo.QueryHookOptions<C
30324
31853
  pagination: PaginationInput;
30325
31854
  status?: InputMaybe<Scalars["String"]["input"]>;
30326
31855
  sortBy?: InputMaybe<Scalars["String"]["input"]>;
31856
+ createdById?: InputMaybe<Scalars["String"]["input"]>;
30327
31857
  }>>;
30328
31858
  export declare function useCampaignsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CampaignsQuery, CampaignsQueryVariables>): Apollo.LazyQueryResultTuple<CampaignsQuery, Exact<{
30329
31859
  pagination: PaginationInput;
30330
31860
  status?: InputMaybe<Scalars["String"]["input"]>;
30331
31861
  sortBy?: InputMaybe<Scalars["String"]["input"]>;
31862
+ createdById?: InputMaybe<Scalars["String"]["input"]>;
30332
31863
  }>>;
30333
31864
  export declare function useCampaignsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CampaignsQuery, CampaignsQueryVariables>): Apollo.UseSuspenseQueryResult<CampaignsQuery | undefined, Exact<{
30334
31865
  pagination: PaginationInput;
30335
31866
  status?: InputMaybe<Scalars["String"]["input"]>;
30336
31867
  sortBy?: InputMaybe<Scalars["String"]["input"]>;
31868
+ createdById?: InputMaybe<Scalars["String"]["input"]>;
30337
31869
  }>>;
30338
31870
  export type CampaignsQueryHookResult = ReturnType<typeof useCampaignsQuery>;
30339
31871
  export type CampaignsLazyQueryHookResult = ReturnType<typeof useCampaignsLazyQuery>;
@@ -30595,6 +32127,7 @@ export declare const CombinedCampaignsDocument: Apollo.DocumentNode;
30595
32127
  * pagination: // value for 'pagination'
30596
32128
  * status: // value for 'status'
30597
32129
  * sortBy: // value for 'sortBy'
32130
+ * createdById: // value for 'createdById'
30598
32131
  * },
30599
32132
  * });
30600
32133
  */
@@ -30602,16 +32135,19 @@ export declare function useCombinedCampaignsQuery(baseOptions?: Apollo.QueryHook
30602
32135
  pagination?: InputMaybe<PaginationInput>;
30603
32136
  status?: InputMaybe<Scalars["String"]["input"]>;
30604
32137
  sortBy?: InputMaybe<Scalars["String"]["input"]>;
32138
+ createdById?: InputMaybe<Scalars["String"]["input"]>;
30605
32139
  }>>;
30606
32140
  export declare function useCombinedCampaignsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CombinedCampaignsQuery, CombinedCampaignsQueryVariables>): Apollo.LazyQueryResultTuple<CombinedCampaignsQuery, Exact<{
30607
32141
  pagination?: InputMaybe<PaginationInput>;
30608
32142
  status?: InputMaybe<Scalars["String"]["input"]>;
30609
32143
  sortBy?: InputMaybe<Scalars["String"]["input"]>;
32144
+ createdById?: InputMaybe<Scalars["String"]["input"]>;
30610
32145
  }>>;
30611
32146
  export declare function useCombinedCampaignsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CombinedCampaignsQuery, CombinedCampaignsQueryVariables>): Apollo.UseSuspenseQueryResult<CombinedCampaignsQuery | undefined, Exact<{
30612
32147
  pagination?: InputMaybe<PaginationInput>;
30613
32148
  status?: InputMaybe<Scalars["String"]["input"]>;
30614
32149
  sortBy?: InputMaybe<Scalars["String"]["input"]>;
32150
+ createdById?: InputMaybe<Scalars["String"]["input"]>;
30615
32151
  }>>;
30616
32152
  export type CombinedCampaignsQueryHookResult = ReturnType<typeof useCombinedCampaignsQuery>;
30617
32153
  export type CombinedCampaignsLazyQueryHookResult = ReturnType<typeof useCombinedCampaignsLazyQuery>;
@@ -32136,6 +33672,139 @@ export type RfqlineitemListQueryHookResult = ReturnType<typeof useRfqlineitemLis
32136
33672
  export type RfqlineitemListLazyQueryHookResult = ReturnType<typeof useRfqlineitemListLazyQuery>;
32137
33673
  export type RfqlineitemListSuspenseQueryHookResult = ReturnType<typeof useRfqlineitemListSuspenseQuery>;
32138
33674
  export type RfqlineitemListQueryResult = Apollo.QueryResult<RfqlineitemListQuery, RfqlineitemListQueryVariables>;
33675
+ export declare const SalesGoalDocument: Apollo.DocumentNode;
33676
+ /**
33677
+ * __useSalesGoalQuery__
33678
+ *
33679
+ * To run a query within a React component, call `useSalesGoalQuery` and pass it any options that fit your needs.
33680
+ * When your component renders, `useSalesGoalQuery` returns an object from Apollo Client that contains loading, error, and data properties
33681
+ * you can use to render your UI.
33682
+ *
33683
+ * @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;
33684
+ *
33685
+ * @example
33686
+ * const { data, loading, error } = useSalesGoalQuery({
33687
+ * variables: {
33688
+ * id: // value for 'id'
33689
+ * },
33690
+ * });
33691
+ */
33692
+ export declare function useSalesGoalQuery(baseOptions: Apollo.QueryHookOptions<SalesGoalQuery, SalesGoalQueryVariables> & ({
33693
+ variables: SalesGoalQueryVariables;
33694
+ skip?: boolean;
33695
+ } | {
33696
+ skip: boolean;
33697
+ })): Apollo.QueryResult<SalesGoalQuery, Exact<{
33698
+ id: Scalars["Int"]["input"];
33699
+ }>>;
33700
+ export declare function useSalesGoalLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<SalesGoalQuery, SalesGoalQueryVariables>): Apollo.LazyQueryResultTuple<SalesGoalQuery, Exact<{
33701
+ id: Scalars["Int"]["input"];
33702
+ }>>;
33703
+ export declare function useSalesGoalSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<SalesGoalQuery, SalesGoalQueryVariables>): Apollo.UseSuspenseQueryResult<SalesGoalQuery | undefined, Exact<{
33704
+ id: Scalars["Int"]["input"];
33705
+ }>>;
33706
+ export type SalesGoalQueryHookResult = ReturnType<typeof useSalesGoalQuery>;
33707
+ export type SalesGoalLazyQueryHookResult = ReturnType<typeof useSalesGoalLazyQuery>;
33708
+ export type SalesGoalSuspenseQueryHookResult = ReturnType<typeof useSalesGoalSuspenseQuery>;
33709
+ export type SalesGoalQueryResult = Apollo.QueryResult<SalesGoalQuery, SalesGoalQueryVariables>;
33710
+ export declare const SalesGoalReportDocument: Apollo.DocumentNode;
33711
+ /**
33712
+ * __useSalesGoalReportQuery__
33713
+ *
33714
+ * To run a query within a React component, call `useSalesGoalReportQuery` and pass it any options that fit your needs.
33715
+ * When your component renders, `useSalesGoalReportQuery` returns an object from Apollo Client that contains loading, error, and data properties
33716
+ * you can use to render your UI.
33717
+ *
33718
+ * @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;
33719
+ *
33720
+ * @example
33721
+ * const { data, loading, error } = useSalesGoalReportQuery({
33722
+ * variables: {
33723
+ * salesGoalId: // value for 'salesGoalId'
33724
+ * forUser: // value for 'forUser'
33725
+ * },
33726
+ * });
33727
+ */
33728
+ export declare function useSalesGoalReportQuery(baseOptions: Apollo.QueryHookOptions<SalesGoalReportQuery, SalesGoalReportQueryVariables> & ({
33729
+ variables: SalesGoalReportQueryVariables;
33730
+ skip?: boolean;
33731
+ } | {
33732
+ skip: boolean;
33733
+ })): Apollo.QueryResult<SalesGoalReportQuery, Exact<{
33734
+ salesGoalId: Scalars["Int"]["input"];
33735
+ forUser?: InputMaybe<Scalars["Int"]["input"]>;
33736
+ }>>;
33737
+ export declare function useSalesGoalReportLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<SalesGoalReportQuery, SalesGoalReportQueryVariables>): Apollo.LazyQueryResultTuple<SalesGoalReportQuery, Exact<{
33738
+ salesGoalId: Scalars["Int"]["input"];
33739
+ forUser?: InputMaybe<Scalars["Int"]["input"]>;
33740
+ }>>;
33741
+ export declare function useSalesGoalReportSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<SalesGoalReportQuery, SalesGoalReportQueryVariables>): Apollo.UseSuspenseQueryResult<SalesGoalReportQuery | undefined, Exact<{
33742
+ salesGoalId: Scalars["Int"]["input"];
33743
+ forUser?: InputMaybe<Scalars["Int"]["input"]>;
33744
+ }>>;
33745
+ export type SalesGoalReportQueryHookResult = ReturnType<typeof useSalesGoalReportQuery>;
33746
+ export type SalesGoalReportLazyQueryHookResult = ReturnType<typeof useSalesGoalReportLazyQuery>;
33747
+ export type SalesGoalReportSuspenseQueryHookResult = ReturnType<typeof useSalesGoalReportSuspenseQuery>;
33748
+ export type SalesGoalReportQueryResult = Apollo.QueryResult<SalesGoalReportQuery, SalesGoalReportQueryVariables>;
33749
+ export declare const SalesGoalsDocument: Apollo.DocumentNode;
33750
+ /**
33751
+ * __useSalesGoalsQuery__
33752
+ *
33753
+ * To run a query within a React component, call `useSalesGoalsQuery` and pass it any options that fit your needs.
33754
+ * When your component renders, `useSalesGoalsQuery` returns an object from Apollo Client that contains loading, error, and data properties
33755
+ * you can use to render your UI.
33756
+ *
33757
+ * @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;
33758
+ *
33759
+ * @example
33760
+ * const { data, loading, error } = useSalesGoalsQuery({
33761
+ * variables: {
33762
+ * filters: // value for 'filters'
33763
+ * },
33764
+ * });
33765
+ */
33766
+ export declare function useSalesGoalsQuery(baseOptions?: Apollo.QueryHookOptions<SalesGoalsQuery, SalesGoalsQueryVariables>): Apollo.QueryResult<SalesGoalsQuery, Exact<{
33767
+ filters?: InputMaybe<SalesGoalFilterInput>;
33768
+ }>>;
33769
+ export declare function useSalesGoalsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<SalesGoalsQuery, SalesGoalsQueryVariables>): Apollo.LazyQueryResultTuple<SalesGoalsQuery, Exact<{
33770
+ filters?: InputMaybe<SalesGoalFilterInput>;
33771
+ }>>;
33772
+ export declare function useSalesGoalsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<SalesGoalsQuery, SalesGoalsQueryVariables>): Apollo.UseSuspenseQueryResult<SalesGoalsQuery | undefined, Exact<{
33773
+ filters?: InputMaybe<SalesGoalFilterInput>;
33774
+ }>>;
33775
+ export type SalesGoalsQueryHookResult = ReturnType<typeof useSalesGoalsQuery>;
33776
+ export type SalesGoalsLazyQueryHookResult = ReturnType<typeof useSalesGoalsLazyQuery>;
33777
+ export type SalesGoalsSuspenseQueryHookResult = ReturnType<typeof useSalesGoalsSuspenseQuery>;
33778
+ export type SalesGoalsQueryResult = Apollo.QueryResult<SalesGoalsQuery, SalesGoalsQueryVariables>;
33779
+ export declare const SavedSearchSpotsDocument: Apollo.DocumentNode;
33780
+ /**
33781
+ * __useSavedSearchSpotsQuery__
33782
+ *
33783
+ * To run a query within a React component, call `useSavedSearchSpotsQuery` and pass it any options that fit your needs.
33784
+ * When your component renders, `useSavedSearchSpotsQuery` returns an object from Apollo Client that contains loading, error, and data properties
33785
+ * you can use to render your UI.
33786
+ *
33787
+ * @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;
33788
+ *
33789
+ * @example
33790
+ * const { data, loading, error } = useSavedSearchSpotsQuery({
33791
+ * variables: {
33792
+ * },
33793
+ * });
33794
+ */
33795
+ export declare function useSavedSearchSpotsQuery(baseOptions?: Apollo.QueryHookOptions<SavedSearchSpotsQuery, SavedSearchSpotsQueryVariables>): Apollo.QueryResult<SavedSearchSpotsQuery, Exact<{
33796
+ [key: string]: never;
33797
+ }>>;
33798
+ export declare function useSavedSearchSpotsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<SavedSearchSpotsQuery, SavedSearchSpotsQueryVariables>): Apollo.LazyQueryResultTuple<SavedSearchSpotsQuery, Exact<{
33799
+ [key: string]: never;
33800
+ }>>;
33801
+ export declare function useSavedSearchSpotsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<SavedSearchSpotsQuery, SavedSearchSpotsQueryVariables>): Apollo.UseSuspenseQueryResult<SavedSearchSpotsQuery | undefined, Exact<{
33802
+ [key: string]: never;
33803
+ }>>;
33804
+ export type SavedSearchSpotsQueryHookResult = ReturnType<typeof useSavedSearchSpotsQuery>;
33805
+ export type SavedSearchSpotsLazyQueryHookResult = ReturnType<typeof useSavedSearchSpotsLazyQuery>;
33806
+ export type SavedSearchSpotsSuspenseQueryHookResult = ReturnType<typeof useSavedSearchSpotsSuspenseQuery>;
33807
+ export type SavedSearchSpotsQueryResult = Apollo.QueryResult<SavedSearchSpotsQuery, SavedSearchSpotsQueryVariables>;
32139
33808
  export declare const SearchContactsDocument: Apollo.DocumentNode;
32140
33809
  /**
32141
33810
  * __useSearchContactsQuery__