cf-service-sdk 0.0.93 → 0.0.95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/graphql.d.ts +261 -25
- package/dist/generated/graphql.js +172 -15
- package/dist/mutations.d.ts +3 -0
- package/dist/mutations.js +39 -7
- package/dist/queries.d.ts +1 -0
- package/dist/queries.js +26 -6
- package/dist/sdk.d.ts +4 -0
- package/dist/sdk.js +22 -0
- package/package.json +1 -1
|
@@ -558,6 +558,8 @@ export type CampaignContactItemType = {
|
|
|
558
558
|
logs?: Maybe<Array<Maybe<CombinedCampaignLogObject>>>;
|
|
559
559
|
/** Phone of the contact */
|
|
560
560
|
phone?: Maybe<Scalars['String']['output']>;
|
|
561
|
+
populatedBody?: Maybe<Scalars['String']['output']>;
|
|
562
|
+
populatedSubject?: Maybe<Scalars['String']['output']>;
|
|
561
563
|
/** Step ID for combined campaign contacts */
|
|
562
564
|
stepId?: Maybe<Scalars['ID']['output']>;
|
|
563
565
|
/** Step order for combined campaign contacts */
|
|
@@ -819,6 +821,13 @@ export type ClearAllNotifications = {
|
|
|
819
821
|
message?: Maybe<Scalars['String']['output']>;
|
|
820
822
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
821
823
|
};
|
|
824
|
+
/** Bulk-delete all saved spots for the requesting user. Used by the "Clear All" button in the popover. */
|
|
825
|
+
export type ClearAllSavedSearchSpots = {
|
|
826
|
+
__typename?: 'ClearAllSavedSearchSpots';
|
|
827
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
828
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
829
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
830
|
+
};
|
|
822
831
|
/** Filter input for campaign logs */
|
|
823
832
|
export type CombinedCampaignFilterInput = {
|
|
824
833
|
dateFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -865,6 +874,8 @@ export type CombinedCampaignLogObject = {
|
|
|
865
874
|
outcome?: Maybe<Scalars['String']['output']>;
|
|
866
875
|
productsOfInterest?: Maybe<Scalars['GenericScalar']['output']>;
|
|
867
876
|
scheduledFor?: Maybe<Scalars['DateTime']['output']>;
|
|
877
|
+
/** Actual subject from sent email (populated from ContactLog) */
|
|
878
|
+
sentSubject?: Maybe<Scalars['String']['output']>;
|
|
868
879
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
869
880
|
status?: Maybe<Scalars['String']['output']>;
|
|
870
881
|
step?: Maybe<CombinedCampaignStepObject>;
|
|
@@ -1681,6 +1692,16 @@ export type CreateNotificationInput = {
|
|
|
1681
1692
|
title: Scalars['String']['input'];
|
|
1682
1693
|
userId: Scalars['ID']['input'];
|
|
1683
1694
|
};
|
|
1695
|
+
/**
|
|
1696
|
+
* Save the current prospecting engine state (filters + page + scroll position) as a named bookmark.
|
|
1697
|
+
* Enforces a per-user limit (MAX_SPOTS_PER_USER) to prevent unbounded storage.
|
|
1698
|
+
*/
|
|
1699
|
+
export type CreateSavedSearchSpot = {
|
|
1700
|
+
__typename?: 'CreateSavedSearchSpot';
|
|
1701
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
1702
|
+
spot?: Maybe<SavedSearchSpotType>;
|
|
1703
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
1704
|
+
};
|
|
1684
1705
|
export type CreateSegment = {
|
|
1685
1706
|
__typename?: 'CreateSegment';
|
|
1686
1707
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -1847,6 +1868,12 @@ export type DeleteNotification = {
|
|
|
1847
1868
|
message?: Maybe<Scalars['String']['output']>;
|
|
1848
1869
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
1849
1870
|
};
|
|
1871
|
+
/** Delete a single saved spot. Scoped to the requesting user for safety. */
|
|
1872
|
+
export type DeleteSavedSearchSpot = {
|
|
1873
|
+
__typename?: 'DeleteSavedSearchSpot';
|
|
1874
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
1875
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
1876
|
+
};
|
|
1850
1877
|
export type DeleteSegment = {
|
|
1851
1878
|
__typename?: 'DeleteSegment';
|
|
1852
1879
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -2344,6 +2371,8 @@ export type Mutation = {
|
|
|
2344
2371
|
changePassword?: Maybe<ChangePassword>;
|
|
2345
2372
|
/** Clear (delete) all notifications for the current user */
|
|
2346
2373
|
clearAllNotifications?: Maybe<ClearAllNotifications>;
|
|
2374
|
+
/** Bulk-delete all saved spots for the requesting user. Used by the "Clear All" button in the popover. */
|
|
2375
|
+
clearAllSavedSearchSpots?: Maybe<ClearAllSavedSearchSpots>;
|
|
2347
2376
|
completeCampaign?: Maybe<CompleteCampaign>;
|
|
2348
2377
|
/**
|
|
2349
2378
|
* Complete an RFQ by marking it as completed.
|
|
@@ -2368,6 +2397,11 @@ export type Mutation = {
|
|
|
2368
2397
|
createNotification?: Maybe<CreateNotification>;
|
|
2369
2398
|
createRfq?: Maybe<Procurement_RfqType>;
|
|
2370
2399
|
createRfqlineitem?: Maybe<Procurement_RfqLineItemType>;
|
|
2400
|
+
/**
|
|
2401
|
+
* Save the current prospecting engine state (filters + page + scroll position) as a named bookmark.
|
|
2402
|
+
* Enforces a per-user limit (MAX_SPOTS_PER_USER) to prevent unbounded storage.
|
|
2403
|
+
*/
|
|
2404
|
+
createSavedSearchSpot?: Maybe<CreateSavedSearchSpot>;
|
|
2371
2405
|
createSegment?: Maybe<CreateSegment>;
|
|
2372
2406
|
createSupplierlist?: Maybe<Procurement_SupplierListType>;
|
|
2373
2407
|
/** Mutation to create a new task */
|
|
@@ -2388,6 +2422,8 @@ export type Mutation = {
|
|
|
2388
2422
|
deleteNotification?: Maybe<DeleteNotification>;
|
|
2389
2423
|
deleteRfq?: Maybe<DeleteMutation>;
|
|
2390
2424
|
deleteRfqlineitem?: Maybe<DeleteMutation>;
|
|
2425
|
+
/** Delete a single saved spot. Scoped to the requesting user for safety. */
|
|
2426
|
+
deleteSavedSearchSpot?: Maybe<DeleteSavedSearchSpot>;
|
|
2391
2427
|
deleteSegment?: Maybe<DeleteSegment>;
|
|
2392
2428
|
deleteSupplierlist?: Maybe<DeleteMutation>;
|
|
2393
2429
|
/** Mutation to delete a task */
|
|
@@ -2635,6 +2671,12 @@ export type MutationCreateRfqlineitemArgs = {
|
|
|
2635
2671
|
input: RfqLineItemInput;
|
|
2636
2672
|
};
|
|
2637
2673
|
/** Mutations */
|
|
2674
|
+
export type MutationCreateSavedSearchSpotArgs = {
|
|
2675
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
2676
|
+
name: Scalars['String']['input'];
|
|
2677
|
+
urlParams: Scalars['String']['input'];
|
|
2678
|
+
};
|
|
2679
|
+
/** Mutations */
|
|
2638
2680
|
export type MutationCreateSegmentArgs = {
|
|
2639
2681
|
input: SegmentInput;
|
|
2640
2682
|
};
|
|
@@ -2695,6 +2737,10 @@ export type MutationDeleteRfqlineitemArgs = {
|
|
|
2695
2737
|
id: Scalars['ID']['input'];
|
|
2696
2738
|
};
|
|
2697
2739
|
/** Mutations */
|
|
2740
|
+
export type MutationDeleteSavedSearchSpotArgs = {
|
|
2741
|
+
id: Scalars['ID']['input'];
|
|
2742
|
+
};
|
|
2743
|
+
/** Mutations */
|
|
2698
2744
|
export type MutationDeleteSegmentArgs = {
|
|
2699
2745
|
id: Scalars['ID']['input'];
|
|
2700
2746
|
};
|
|
@@ -3336,10 +3382,10 @@ export type Procurement_RfqFilterInput = {
|
|
|
3336
3382
|
deliveryLocation?: InputMaybe<Scalars['String']['input']>;
|
|
3337
3383
|
emailBody?: InputMaybe<Scalars['String']['input']>;
|
|
3338
3384
|
emailSubject?: InputMaybe<Scalars['String']['input']>;
|
|
3385
|
+
fob?: InputMaybe<Scalars['String']['input']>;
|
|
3339
3386
|
freeFormItems?: InputMaybe<Scalars['String']['input']>;
|
|
3340
3387
|
includeItemsTable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3341
3388
|
includeTerms?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3342
|
-
incoterm?: InputMaybe<Scalars['String']['input']>;
|
|
3343
3389
|
internalReferenceNumber?: InputMaybe<Scalars['String']['input']>;
|
|
3344
3390
|
partialShipmentsAllowed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3345
3391
|
paymentTerms?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3441,15 +3487,15 @@ export type Procurement_RfqType = {
|
|
|
3441
3487
|
deliveryLocation?: Maybe<Scalars['String']['output']>;
|
|
3442
3488
|
emailBody?: Maybe<Scalars['String']['output']>;
|
|
3443
3489
|
emailSubject?: Maybe<Scalars['String']['output']>;
|
|
3490
|
+
fob?: Maybe<Scalars['String']['output']>;
|
|
3444
3491
|
freeFormItems?: Maybe<Scalars['String']['output']>;
|
|
3445
3492
|
id: Scalars['ID']['output'];
|
|
3446
3493
|
includeItemsTable: Scalars['Boolean']['output'];
|
|
3447
3494
|
includeTerms: Scalars['Boolean']['output'];
|
|
3448
|
-
incoterm: Scalars['String']['output'];
|
|
3449
3495
|
internalReferenceNumber?: Maybe<Scalars['String']['output']>;
|
|
3450
3496
|
packagingRequirements: Scalars['JSONString']['output'];
|
|
3451
3497
|
partialShipmentsAllowed: Scalars['Boolean']['output'];
|
|
3452
|
-
paymentTerms
|
|
3498
|
+
paymentTerms?: Maybe<Scalars['String']['output']>;
|
|
3453
3499
|
priority: Scalars['String']['output'];
|
|
3454
3500
|
products: Scalars['JSONString']['output'];
|
|
3455
3501
|
qualityRequirements: Scalars['JSONString']['output'];
|
|
@@ -3640,6 +3686,8 @@ export type Query = {
|
|
|
3640
3686
|
rfqSuppliers?: Maybe<Array<RfqSupplierObject>>;
|
|
3641
3687
|
rfqlineitem?: Maybe<Procurement_RfqLineItemType>;
|
|
3642
3688
|
rfqlineitemList?: Maybe<PaginatedProcurement_RfqLineItemResponse>;
|
|
3689
|
+
/** Get all saved search spots for the current user */
|
|
3690
|
+
savedSearchSpots?: Maybe<Array<Maybe<SavedSearchSpotType>>>;
|
|
3643
3691
|
searchContacts?: Maybe<PaginatedContactList>;
|
|
3644
3692
|
/** Get a specific segment by ID */
|
|
3645
3693
|
segment?: Maybe<SegmentObject>;
|
|
@@ -4198,14 +4246,14 @@ export type RfqInput = {
|
|
|
4198
4246
|
deliveryLocation?: InputMaybe<Scalars['String']['input']>;
|
|
4199
4247
|
emailBody?: InputMaybe<Scalars['String']['input']>;
|
|
4200
4248
|
emailSubject?: InputMaybe<Scalars['String']['input']>;
|
|
4249
|
+
fob?: InputMaybe<Scalars['String']['input']>;
|
|
4201
4250
|
freeFormItems?: InputMaybe<Scalars['String']['input']>;
|
|
4202
4251
|
includeItemsTable: Scalars['Boolean']['input'];
|
|
4203
4252
|
includeTerms: Scalars['Boolean']['input'];
|
|
4204
|
-
incoterm: Scalars['String']['input'];
|
|
4205
4253
|
internalReferenceNumber?: InputMaybe<Scalars['String']['input']>;
|
|
4206
4254
|
packagingRequirements?: InputMaybe<Scalars['String']['input']>;
|
|
4207
4255
|
partialShipmentsAllowed: Scalars['Boolean']['input'];
|
|
4208
|
-
paymentTerms
|
|
4256
|
+
paymentTerms?: InputMaybe<Scalars['String']['input']>;
|
|
4209
4257
|
priority: Scalars['String']['input'];
|
|
4210
4258
|
products?: InputMaybe<Scalars['String']['input']>;
|
|
4211
4259
|
qualityRequirements?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4276,6 +4324,15 @@ export type SaveNylasConnectionInput = {
|
|
|
4276
4324
|
/** Email provider (e.g., gmail, outlook) */
|
|
4277
4325
|
provider: Scalars['String']['input'];
|
|
4278
4326
|
};
|
|
4327
|
+
export type SavedSearchSpotType = {
|
|
4328
|
+
__typename?: 'SavedSearchSpotType';
|
|
4329
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4330
|
+
description: Scalars['String']['output'];
|
|
4331
|
+
id: Scalars['ID']['output'];
|
|
4332
|
+
name: Scalars['String']['output'];
|
|
4333
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4334
|
+
urlParams: Scalars['String']['output'];
|
|
4335
|
+
};
|
|
4279
4336
|
export type ScheduleCampaign = {
|
|
4280
4337
|
__typename?: 'ScheduleCampaign';
|
|
4281
4338
|
campaign?: Maybe<CampaignObject>;
|
|
@@ -4502,6 +4559,7 @@ export type SupplierObject = {
|
|
|
4502
4559
|
employeeSize?: Maybe<Scalars['String']['output']>;
|
|
4503
4560
|
id: Scalars['ID']['output'];
|
|
4504
4561
|
location?: Maybe<Scalars['String']['output']>;
|
|
4562
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
4505
4563
|
mySupplierId?: Maybe<Scalars['ID']['output']>;
|
|
4506
4564
|
name: Scalars['String']['output'];
|
|
4507
4565
|
productsSold?: Maybe<Array<Maybe<SupplierProductObject>>>;
|
|
@@ -5617,6 +5675,18 @@ export type ClearAllNotificationsMutation = {
|
|
|
5617
5675
|
message?: string | null;
|
|
5618
5676
|
} | null;
|
|
5619
5677
|
};
|
|
5678
|
+
export type ClearAllSavedSearchSpotsMutationVariables = Exact<{
|
|
5679
|
+
[key: string]: never;
|
|
5680
|
+
}>;
|
|
5681
|
+
export type ClearAllSavedSearchSpotsMutation = {
|
|
5682
|
+
__typename?: 'Mutation';
|
|
5683
|
+
clearAllSavedSearchSpots?: {
|
|
5684
|
+
__typename?: 'ClearAllSavedSearchSpots';
|
|
5685
|
+
count?: number | null;
|
|
5686
|
+
success?: boolean | null;
|
|
5687
|
+
message?: string | null;
|
|
5688
|
+
} | null;
|
|
5689
|
+
};
|
|
5620
5690
|
export type CompleteCampaignMutationVariables = Exact<{
|
|
5621
5691
|
id: Scalars['ID']['input'];
|
|
5622
5692
|
}>;
|
|
@@ -5720,8 +5790,8 @@ export type CompleteRfqMutation = {
|
|
|
5720
5790
|
quoteDeadline?: any | null;
|
|
5721
5791
|
deliveryDeadline?: any | null;
|
|
5722
5792
|
products: any;
|
|
5723
|
-
|
|
5724
|
-
paymentTerms
|
|
5793
|
+
fob?: string | null;
|
|
5794
|
+
paymentTerms?: string | null;
|
|
5725
5795
|
partialShipmentsAllowed: boolean;
|
|
5726
5796
|
deliveryLocation?: string | null;
|
|
5727
5797
|
packagingRequirements: any;
|
|
@@ -7960,8 +8030,8 @@ export type CreateRfqMutation = {
|
|
|
7960
8030
|
quoteDeadline?: any | null;
|
|
7961
8031
|
deliveryDeadline?: any | null;
|
|
7962
8032
|
products: any;
|
|
7963
|
-
|
|
7964
|
-
paymentTerms
|
|
8033
|
+
fob?: string | null;
|
|
8034
|
+
paymentTerms?: string | null;
|
|
7965
8035
|
partialShipmentsAllowed: boolean;
|
|
7966
8036
|
deliveryLocation?: string | null;
|
|
7967
8037
|
packagingRequirements: any;
|
|
@@ -8139,8 +8209,8 @@ export type CreateRfqlineitemMutation = {
|
|
|
8139
8209
|
quoteDeadline?: any | null;
|
|
8140
8210
|
deliveryDeadline?: any | null;
|
|
8141
8211
|
products: any;
|
|
8142
|
-
|
|
8143
|
-
paymentTerms
|
|
8212
|
+
fob?: string | null;
|
|
8213
|
+
paymentTerms?: string | null;
|
|
8144
8214
|
partialShipmentsAllowed: boolean;
|
|
8145
8215
|
deliveryLocation?: string | null;
|
|
8146
8216
|
packagingRequirements: any;
|
|
@@ -8264,6 +8334,28 @@ export type CreateRfqlineitemMutation = {
|
|
|
8264
8334
|
};
|
|
8265
8335
|
} | null;
|
|
8266
8336
|
};
|
|
8337
|
+
export type CreateSavedSearchSpotMutationVariables = Exact<{
|
|
8338
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
8339
|
+
name: Scalars['String']['input'];
|
|
8340
|
+
urlParams: Scalars['String']['input'];
|
|
8341
|
+
}>;
|
|
8342
|
+
export type CreateSavedSearchSpotMutation = {
|
|
8343
|
+
__typename?: 'Mutation';
|
|
8344
|
+
createSavedSearchSpot?: {
|
|
8345
|
+
__typename?: 'CreateSavedSearchSpot';
|
|
8346
|
+
success?: boolean | null;
|
|
8347
|
+
message?: string | null;
|
|
8348
|
+
spot?: {
|
|
8349
|
+
__typename?: 'SavedSearchSpotType';
|
|
8350
|
+
id: string;
|
|
8351
|
+
createdAt: any;
|
|
8352
|
+
updatedAt: any;
|
|
8353
|
+
name: string;
|
|
8354
|
+
urlParams: string;
|
|
8355
|
+
description: string;
|
|
8356
|
+
} | null;
|
|
8357
|
+
} | null;
|
|
8358
|
+
};
|
|
8267
8359
|
export type CreateSegmentMutationVariables = Exact<{
|
|
8268
8360
|
input: SegmentInput;
|
|
8269
8361
|
}>;
|
|
@@ -9256,6 +9348,17 @@ export type DeleteRfqlineitemMutation = {
|
|
|
9256
9348
|
message?: string | null;
|
|
9257
9349
|
} | null;
|
|
9258
9350
|
};
|
|
9351
|
+
export type DeleteSavedSearchSpotMutationVariables = Exact<{
|
|
9352
|
+
id: Scalars['ID']['input'];
|
|
9353
|
+
}>;
|
|
9354
|
+
export type DeleteSavedSearchSpotMutation = {
|
|
9355
|
+
__typename?: 'Mutation';
|
|
9356
|
+
deleteSavedSearchSpot?: {
|
|
9357
|
+
__typename?: 'DeleteSavedSearchSpot';
|
|
9358
|
+
success?: boolean | null;
|
|
9359
|
+
message?: string | null;
|
|
9360
|
+
} | null;
|
|
9361
|
+
};
|
|
9259
9362
|
export type DeleteSegmentMutationVariables = Exact<{
|
|
9260
9363
|
id: Scalars['ID']['input'];
|
|
9261
9364
|
}>;
|
|
@@ -10426,8 +10529,8 @@ export type ScheduleRfqMutation = {
|
|
|
10426
10529
|
quoteDeadline?: any | null;
|
|
10427
10530
|
deliveryDeadline?: any | null;
|
|
10428
10531
|
products: any;
|
|
10429
|
-
|
|
10430
|
-
paymentTerms
|
|
10532
|
+
fob?: string | null;
|
|
10533
|
+
paymentTerms?: string | null;
|
|
10431
10534
|
partialShipmentsAllowed: boolean;
|
|
10432
10535
|
deliveryLocation?: string | null;
|
|
10433
10536
|
packagingRequirements: any;
|
|
@@ -10859,6 +10962,7 @@ export type SendManualEmailMutation = {
|
|
|
10859
10962
|
taskId?: string | null;
|
|
10860
10963
|
draftSubject?: string | null;
|
|
10861
10964
|
draftBody?: string | null;
|
|
10965
|
+
sentSubject?: string | null;
|
|
10862
10966
|
createdAt?: any | null;
|
|
10863
10967
|
updatedAt?: any | null;
|
|
10864
10968
|
contactName?: string | null;
|
|
@@ -12024,6 +12128,7 @@ export type UpdateCombinedCampaignLogMutation = {
|
|
|
12024
12128
|
taskId?: string | null;
|
|
12025
12129
|
draftSubject?: string | null;
|
|
12026
12130
|
draftBody?: string | null;
|
|
12131
|
+
sentSubject?: string | null;
|
|
12027
12132
|
createdAt?: any | null;
|
|
12028
12133
|
updatedAt?: any | null;
|
|
12029
12134
|
contactName?: string | null;
|
|
@@ -13996,8 +14101,8 @@ export type UpdateRfqMutation = {
|
|
|
13996
14101
|
quoteDeadline?: any | null;
|
|
13997
14102
|
deliveryDeadline?: any | null;
|
|
13998
14103
|
products: any;
|
|
13999
|
-
|
|
14000
|
-
paymentTerms
|
|
14104
|
+
fob?: string | null;
|
|
14105
|
+
paymentTerms?: string | null;
|
|
14001
14106
|
partialShipmentsAllowed: boolean;
|
|
14002
14107
|
deliveryLocation?: string | null;
|
|
14003
14108
|
packagingRequirements: any;
|
|
@@ -14176,8 +14281,8 @@ export type UpdateRfqlineitemMutation = {
|
|
|
14176
14281
|
quoteDeadline?: any | null;
|
|
14177
14282
|
deliveryDeadline?: any | null;
|
|
14178
14283
|
products: any;
|
|
14179
|
-
|
|
14180
|
-
paymentTerms
|
|
14284
|
+
fob?: string | null;
|
|
14285
|
+
paymentTerms?: string | null;
|
|
14181
14286
|
partialShipmentsAllowed: boolean;
|
|
14182
14287
|
deliveryLocation?: string | null;
|
|
14183
14288
|
packagingRequirements: any;
|
|
@@ -16200,6 +16305,8 @@ export type CampaignContactsQuery = {
|
|
|
16200
16305
|
lastContactedAt?: any | null;
|
|
16201
16306
|
stepId?: string | null;
|
|
16202
16307
|
stepOrder?: number | null;
|
|
16308
|
+
populatedSubject?: string | null;
|
|
16309
|
+
populatedBody?: string | null;
|
|
16203
16310
|
lastContactedBy?: {
|
|
16204
16311
|
__typename?: 'UserType';
|
|
16205
16312
|
id?: string | null;
|
|
@@ -16260,6 +16367,7 @@ export type CampaignContactsQuery = {
|
|
|
16260
16367
|
taskId?: string | null;
|
|
16261
16368
|
draftSubject?: string | null;
|
|
16262
16369
|
draftBody?: string | null;
|
|
16370
|
+
sentSubject?: string | null;
|
|
16263
16371
|
createdAt?: any | null;
|
|
16264
16372
|
updatedAt?: any | null;
|
|
16265
16373
|
contactName?: string | null;
|
|
@@ -17076,6 +17184,8 @@ export type CombinedCampaignContactsQuery = {
|
|
|
17076
17184
|
lastContactedAt?: any | null;
|
|
17077
17185
|
stepId?: string | null;
|
|
17078
17186
|
stepOrder?: number | null;
|
|
17187
|
+
populatedSubject?: string | null;
|
|
17188
|
+
populatedBody?: string | null;
|
|
17079
17189
|
lastContactedBy?: {
|
|
17080
17190
|
__typename?: 'UserType';
|
|
17081
17191
|
id?: string | null;
|
|
@@ -17136,6 +17246,7 @@ export type CombinedCampaignContactsQuery = {
|
|
|
17136
17246
|
taskId?: string | null;
|
|
17137
17247
|
draftSubject?: string | null;
|
|
17138
17248
|
draftBody?: string | null;
|
|
17249
|
+
sentSubject?: string | null;
|
|
17139
17250
|
createdAt?: any | null;
|
|
17140
17251
|
updatedAt?: any | null;
|
|
17141
17252
|
contactName?: string | null;
|
|
@@ -17442,6 +17553,7 @@ export type CombinedCampaignLogsQuery = {
|
|
|
17442
17553
|
taskId?: string | null;
|
|
17443
17554
|
draftSubject?: string | null;
|
|
17444
17555
|
draftBody?: string | null;
|
|
17556
|
+
sentSubject?: string | null;
|
|
17445
17557
|
createdAt?: any | null;
|
|
17446
17558
|
updatedAt?: any | null;
|
|
17447
17559
|
contactName?: string | null;
|
|
@@ -23366,8 +23478,8 @@ export type RfqQuery = {
|
|
|
23366
23478
|
quoteDeadline?: any | null;
|
|
23367
23479
|
deliveryDeadline?: any | null;
|
|
23368
23480
|
products: any;
|
|
23369
|
-
|
|
23370
|
-
paymentTerms
|
|
23481
|
+
fob?: string | null;
|
|
23482
|
+
paymentTerms?: string | null;
|
|
23371
23483
|
partialShipmentsAllowed: boolean;
|
|
23372
23484
|
deliveryLocation?: string | null;
|
|
23373
23485
|
packagingRequirements: any;
|
|
@@ -23530,8 +23642,8 @@ export type RfqListQuery = {
|
|
|
23530
23642
|
quoteDeadline?: any | null;
|
|
23531
23643
|
deliveryDeadline?: any | null;
|
|
23532
23644
|
products: any;
|
|
23533
|
-
|
|
23534
|
-
paymentTerms
|
|
23645
|
+
fob?: string | null;
|
|
23646
|
+
paymentTerms?: string | null;
|
|
23535
23647
|
partialShipmentsAllowed: boolean;
|
|
23536
23648
|
deliveryLocation?: string | null;
|
|
23537
23649
|
packagingRequirements: any;
|
|
@@ -23730,8 +23842,8 @@ export type RfqlineitemQuery = {
|
|
|
23730
23842
|
quoteDeadline?: any | null;
|
|
23731
23843
|
deliveryDeadline?: any | null;
|
|
23732
23844
|
products: any;
|
|
23733
|
-
|
|
23734
|
-
paymentTerms
|
|
23845
|
+
fob?: string | null;
|
|
23846
|
+
paymentTerms?: string | null;
|
|
23735
23847
|
partialShipmentsAllowed: boolean;
|
|
23736
23848
|
deliveryLocation?: string | null;
|
|
23737
23849
|
packagingRequirements: any;
|
|
@@ -23894,8 +24006,8 @@ export type RfqlineitemListQuery = {
|
|
|
23894
24006
|
quoteDeadline?: any | null;
|
|
23895
24007
|
deliveryDeadline?: any | null;
|
|
23896
24008
|
products: any;
|
|
23897
|
-
|
|
23898
|
-
paymentTerms
|
|
24009
|
+
fob?: string | null;
|
|
24010
|
+
paymentTerms?: string | null;
|
|
23899
24011
|
partialShipmentsAllowed: boolean;
|
|
23900
24012
|
deliveryLocation?: string | null;
|
|
23901
24013
|
packagingRequirements: any;
|
|
@@ -24029,6 +24141,21 @@ export type RfqlineitemListQuery = {
|
|
|
24029
24141
|
};
|
|
24030
24142
|
} | null;
|
|
24031
24143
|
};
|
|
24144
|
+
export type SavedSearchSpotsQueryVariables = Exact<{
|
|
24145
|
+
[key: string]: never;
|
|
24146
|
+
}>;
|
|
24147
|
+
export type SavedSearchSpotsQuery = {
|
|
24148
|
+
__typename?: 'Query';
|
|
24149
|
+
savedSearchSpots?: Array<{
|
|
24150
|
+
__typename?: 'SavedSearchSpotType';
|
|
24151
|
+
id: string;
|
|
24152
|
+
createdAt: any;
|
|
24153
|
+
updatedAt: any;
|
|
24154
|
+
name: string;
|
|
24155
|
+
urlParams: string;
|
|
24156
|
+
description: string;
|
|
24157
|
+
} | null> | null;
|
|
24158
|
+
};
|
|
24032
24159
|
export type SearchContactsQueryVariables = Exact<{
|
|
24033
24160
|
filters?: InputMaybe<ContactFilterInput>;
|
|
24034
24161
|
pagination?: InputMaybe<PaginationInput>;
|
|
@@ -24203,6 +24330,7 @@ export type SupplierQuery = {
|
|
|
24203
24330
|
website?: string | null;
|
|
24204
24331
|
description?: string | null;
|
|
24205
24332
|
mySupplierId?: string | null;
|
|
24333
|
+
logoUrl?: string | null;
|
|
24206
24334
|
contacts?: Array<{
|
|
24207
24335
|
__typename?: 'ContactObject';
|
|
24208
24336
|
id?: string | null;
|
|
@@ -26446,6 +26574,7 @@ export type SuppliersQuery = {
|
|
|
26446
26574
|
website?: string | null;
|
|
26447
26575
|
description?: string | null;
|
|
26448
26576
|
mySupplierId?: string | null;
|
|
26577
|
+
logoUrl?: string | null;
|
|
26449
26578
|
contacts?: Array<{
|
|
26450
26579
|
__typename?: 'ContactObject';
|
|
26451
26580
|
id?: string | null;
|
|
@@ -28016,6 +28145,30 @@ export declare function useClearAllNotificationsMutation(baseOptions?: Apollo.Mu
|
|
|
28016
28145
|
export type ClearAllNotificationsMutationHookResult = ReturnType<typeof useClearAllNotificationsMutation>;
|
|
28017
28146
|
export type ClearAllNotificationsMutationResult = Apollo.MutationResult<ClearAllNotificationsMutation>;
|
|
28018
28147
|
export type ClearAllNotificationsMutationOptions = Apollo.BaseMutationOptions<ClearAllNotificationsMutation, ClearAllNotificationsMutationVariables>;
|
|
28148
|
+
export declare const ClearAllSavedSearchSpotsDocument: Apollo.DocumentNode;
|
|
28149
|
+
export type ClearAllSavedSearchSpotsMutationFn = Apollo.MutationFunction<ClearAllSavedSearchSpotsMutation, ClearAllSavedSearchSpotsMutationVariables>;
|
|
28150
|
+
/**
|
|
28151
|
+
* __useClearAllSavedSearchSpotsMutation__
|
|
28152
|
+
*
|
|
28153
|
+
* To run a mutation, you first call `useClearAllSavedSearchSpotsMutation` within a React component and pass it any options that fit your needs.
|
|
28154
|
+
* When your component renders, `useClearAllSavedSearchSpotsMutation` returns a tuple that includes:
|
|
28155
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
28156
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
28157
|
+
*
|
|
28158
|
+
* @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;
|
|
28159
|
+
*
|
|
28160
|
+
* @example
|
|
28161
|
+
* const [clearAllSavedSearchSpotsMutation, { data, loading, error }] = useClearAllSavedSearchSpotsMutation({
|
|
28162
|
+
* variables: {
|
|
28163
|
+
* },
|
|
28164
|
+
* });
|
|
28165
|
+
*/
|
|
28166
|
+
export declare function useClearAllSavedSearchSpotsMutation(baseOptions?: Apollo.MutationHookOptions<ClearAllSavedSearchSpotsMutation, ClearAllSavedSearchSpotsMutationVariables>): Apollo.MutationTuple<ClearAllSavedSearchSpotsMutation, Exact<{
|
|
28167
|
+
[key: string]: never;
|
|
28168
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
28169
|
+
export type ClearAllSavedSearchSpotsMutationHookResult = ReturnType<typeof useClearAllSavedSearchSpotsMutation>;
|
|
28170
|
+
export type ClearAllSavedSearchSpotsMutationResult = Apollo.MutationResult<ClearAllSavedSearchSpotsMutation>;
|
|
28171
|
+
export type ClearAllSavedSearchSpotsMutationOptions = Apollo.BaseMutationOptions<ClearAllSavedSearchSpotsMutation, ClearAllSavedSearchSpotsMutationVariables>;
|
|
28019
28172
|
export declare const CompleteCampaignDocument: Apollo.DocumentNode;
|
|
28020
28173
|
export type CompleteCampaignMutationFn = Apollo.MutationFunction<CompleteCampaignMutation, CompleteCampaignMutationVariables>;
|
|
28021
28174
|
/**
|
|
@@ -28393,6 +28546,35 @@ export declare function useCreateRfqlineitemMutation(baseOptions?: Apollo.Mutati
|
|
|
28393
28546
|
export type CreateRfqlineitemMutationHookResult = ReturnType<typeof useCreateRfqlineitemMutation>;
|
|
28394
28547
|
export type CreateRfqlineitemMutationResult = Apollo.MutationResult<CreateRfqlineitemMutation>;
|
|
28395
28548
|
export type CreateRfqlineitemMutationOptions = Apollo.BaseMutationOptions<CreateRfqlineitemMutation, CreateRfqlineitemMutationVariables>;
|
|
28549
|
+
export declare const CreateSavedSearchSpotDocument: Apollo.DocumentNode;
|
|
28550
|
+
export type CreateSavedSearchSpotMutationFn = Apollo.MutationFunction<CreateSavedSearchSpotMutation, CreateSavedSearchSpotMutationVariables>;
|
|
28551
|
+
/**
|
|
28552
|
+
* __useCreateSavedSearchSpotMutation__
|
|
28553
|
+
*
|
|
28554
|
+
* To run a mutation, you first call `useCreateSavedSearchSpotMutation` within a React component and pass it any options that fit your needs.
|
|
28555
|
+
* When your component renders, `useCreateSavedSearchSpotMutation` returns a tuple that includes:
|
|
28556
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
28557
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
28558
|
+
*
|
|
28559
|
+
* @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;
|
|
28560
|
+
*
|
|
28561
|
+
* @example
|
|
28562
|
+
* const [createSavedSearchSpotMutation, { data, loading, error }] = useCreateSavedSearchSpotMutation({
|
|
28563
|
+
* variables: {
|
|
28564
|
+
* description: // value for 'description'
|
|
28565
|
+
* name: // value for 'name'
|
|
28566
|
+
* urlParams: // value for 'urlParams'
|
|
28567
|
+
* },
|
|
28568
|
+
* });
|
|
28569
|
+
*/
|
|
28570
|
+
export declare function useCreateSavedSearchSpotMutation(baseOptions?: Apollo.MutationHookOptions<CreateSavedSearchSpotMutation, CreateSavedSearchSpotMutationVariables>): Apollo.MutationTuple<CreateSavedSearchSpotMutation, Exact<{
|
|
28571
|
+
description?: InputMaybe<Scalars["String"]["input"]>;
|
|
28572
|
+
name: Scalars["String"]["input"];
|
|
28573
|
+
urlParams: Scalars["String"]["input"];
|
|
28574
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
28575
|
+
export type CreateSavedSearchSpotMutationHookResult = ReturnType<typeof useCreateSavedSearchSpotMutation>;
|
|
28576
|
+
export type CreateSavedSearchSpotMutationResult = Apollo.MutationResult<CreateSavedSearchSpotMutation>;
|
|
28577
|
+
export type CreateSavedSearchSpotMutationOptions = Apollo.BaseMutationOptions<CreateSavedSearchSpotMutation, CreateSavedSearchSpotMutationVariables>;
|
|
28396
28578
|
export declare const CreateSegmentDocument: Apollo.DocumentNode;
|
|
28397
28579
|
export type CreateSegmentMutationFn = Apollo.MutationFunction<CreateSegmentMutation, CreateSegmentMutationVariables>;
|
|
28398
28580
|
/**
|
|
@@ -28768,6 +28950,31 @@ export declare function useDeleteRfqlineitemMutation(baseOptions?: Apollo.Mutati
|
|
|
28768
28950
|
export type DeleteRfqlineitemMutationHookResult = ReturnType<typeof useDeleteRfqlineitemMutation>;
|
|
28769
28951
|
export type DeleteRfqlineitemMutationResult = Apollo.MutationResult<DeleteRfqlineitemMutation>;
|
|
28770
28952
|
export type DeleteRfqlineitemMutationOptions = Apollo.BaseMutationOptions<DeleteRfqlineitemMutation, DeleteRfqlineitemMutationVariables>;
|
|
28953
|
+
export declare const DeleteSavedSearchSpotDocument: Apollo.DocumentNode;
|
|
28954
|
+
export type DeleteSavedSearchSpotMutationFn = Apollo.MutationFunction<DeleteSavedSearchSpotMutation, DeleteSavedSearchSpotMutationVariables>;
|
|
28955
|
+
/**
|
|
28956
|
+
* __useDeleteSavedSearchSpotMutation__
|
|
28957
|
+
*
|
|
28958
|
+
* To run a mutation, you first call `useDeleteSavedSearchSpotMutation` within a React component and pass it any options that fit your needs.
|
|
28959
|
+
* When your component renders, `useDeleteSavedSearchSpotMutation` returns a tuple that includes:
|
|
28960
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
28961
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
28962
|
+
*
|
|
28963
|
+
* @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;
|
|
28964
|
+
*
|
|
28965
|
+
* @example
|
|
28966
|
+
* const [deleteSavedSearchSpotMutation, { data, loading, error }] = useDeleteSavedSearchSpotMutation({
|
|
28967
|
+
* variables: {
|
|
28968
|
+
* id: // value for 'id'
|
|
28969
|
+
* },
|
|
28970
|
+
* });
|
|
28971
|
+
*/
|
|
28972
|
+
export declare function useDeleteSavedSearchSpotMutation(baseOptions?: Apollo.MutationHookOptions<DeleteSavedSearchSpotMutation, DeleteSavedSearchSpotMutationVariables>): Apollo.MutationTuple<DeleteSavedSearchSpotMutation, Exact<{
|
|
28973
|
+
id: Scalars["ID"]["input"];
|
|
28974
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
28975
|
+
export type DeleteSavedSearchSpotMutationHookResult = ReturnType<typeof useDeleteSavedSearchSpotMutation>;
|
|
28976
|
+
export type DeleteSavedSearchSpotMutationResult = Apollo.MutationResult<DeleteSavedSearchSpotMutation>;
|
|
28977
|
+
export type DeleteSavedSearchSpotMutationOptions = Apollo.BaseMutationOptions<DeleteSavedSearchSpotMutation, DeleteSavedSearchSpotMutationVariables>;
|
|
28771
28978
|
export declare const DeleteSegmentDocument: Apollo.DocumentNode;
|
|
28772
28979
|
export type DeleteSegmentMutationFn = Apollo.MutationFunction<DeleteSegmentMutation, DeleteSegmentMutationVariables>;
|
|
28773
28980
|
/**
|
|
@@ -33021,6 +33228,35 @@ export type RfqlineitemListQueryHookResult = ReturnType<typeof useRfqlineitemLis
|
|
|
33021
33228
|
export type RfqlineitemListLazyQueryHookResult = ReturnType<typeof useRfqlineitemListLazyQuery>;
|
|
33022
33229
|
export type RfqlineitemListSuspenseQueryHookResult = ReturnType<typeof useRfqlineitemListSuspenseQuery>;
|
|
33023
33230
|
export type RfqlineitemListQueryResult = Apollo.QueryResult<RfqlineitemListQuery, RfqlineitemListQueryVariables>;
|
|
33231
|
+
export declare const SavedSearchSpotsDocument: Apollo.DocumentNode;
|
|
33232
|
+
/**
|
|
33233
|
+
* __useSavedSearchSpotsQuery__
|
|
33234
|
+
*
|
|
33235
|
+
* To run a query within a React component, call `useSavedSearchSpotsQuery` and pass it any options that fit your needs.
|
|
33236
|
+
* When your component renders, `useSavedSearchSpotsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
33237
|
+
* you can use to render your UI.
|
|
33238
|
+
*
|
|
33239
|
+
* @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;
|
|
33240
|
+
*
|
|
33241
|
+
* @example
|
|
33242
|
+
* const { data, loading, error } = useSavedSearchSpotsQuery({
|
|
33243
|
+
* variables: {
|
|
33244
|
+
* },
|
|
33245
|
+
* });
|
|
33246
|
+
*/
|
|
33247
|
+
export declare function useSavedSearchSpotsQuery(baseOptions?: Apollo.QueryHookOptions<SavedSearchSpotsQuery, SavedSearchSpotsQueryVariables>): Apollo.QueryResult<SavedSearchSpotsQuery, Exact<{
|
|
33248
|
+
[key: string]: never;
|
|
33249
|
+
}>>;
|
|
33250
|
+
export declare function useSavedSearchSpotsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<SavedSearchSpotsQuery, SavedSearchSpotsQueryVariables>): Apollo.LazyQueryResultTuple<SavedSearchSpotsQuery, Exact<{
|
|
33251
|
+
[key: string]: never;
|
|
33252
|
+
}>>;
|
|
33253
|
+
export declare function useSavedSearchSpotsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<SavedSearchSpotsQuery, SavedSearchSpotsQueryVariables>): Apollo.UseSuspenseQueryResult<SavedSearchSpotsQuery | undefined, Exact<{
|
|
33254
|
+
[key: string]: never;
|
|
33255
|
+
}>>;
|
|
33256
|
+
export type SavedSearchSpotsQueryHookResult = ReturnType<typeof useSavedSearchSpotsQuery>;
|
|
33257
|
+
export type SavedSearchSpotsLazyQueryHookResult = ReturnType<typeof useSavedSearchSpotsLazyQuery>;
|
|
33258
|
+
export type SavedSearchSpotsSuspenseQueryHookResult = ReturnType<typeof useSavedSearchSpotsSuspenseQuery>;
|
|
33259
|
+
export type SavedSearchSpotsQueryResult = Apollo.QueryResult<SavedSearchSpotsQuery, SavedSearchSpotsQueryVariables>;
|
|
33024
33260
|
export declare const SearchContactsDocument: Apollo.DocumentNode;
|
|
33025
33261
|
/**
|
|
33026
33262
|
* __useSearchContactsQuery__
|
|
@@ -33,11 +33,11 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.
|
|
37
|
-
exports.
|
|
38
|
-
exports.
|
|
39
|
-
exports.
|
|
40
|
-
exports.UserProfileDocument = exports.UsStatesDocument = exports.UnreadNotificationsCountDocument = exports.TasksDocument = exports.TaskDocument = exports.SuppliersDocument = exports.SupplierlistListDocument = exports.SupplierlistDocument = exports.SupplierListCustomContactsDocument = exports.SupplierListContactsDocument = exports.SupplierDocument = exports.SegmentsDocument = void 0;
|
|
36
|
+
exports.CreateTaskDocument = exports.CreateSupplierlistDocument = exports.CreateSegmentDocument = exports.CreateSavedSearchSpotDocument = exports.CreateRfqlineitemDocument = exports.CreateRfqDocument = exports.CreateNotificationDocument = exports.CreateMysupplierDocument = exports.CreateEmailTemplateDocument = exports.CreateContactDocument = exports.CreateCompanyNoteDocument = exports.CreateCompanyDocument = exports.CreateCombinedCampaignTemplateDocument = exports.CreateCombinedCampaignDocument = exports.CreateCampaignDocument = exports.CreateCallCampaignLogDocument = exports.CreateCallCampaignDocument = exports.CompleteRfqDocument = exports.CompleteCampaignDocument = exports.ClearAllSavedSearchSpotsDocument = exports.ClearAllNotificationsDocument = exports.ChangePasswordDocument = exports.CancelInvitationDocument = exports.CancelCombinedCampaignDocument = exports.CancelCampaignDocument = exports.BulkAssignCompanyOwnersDocument = exports.AddSupplierToSupplierListDocument = exports.AddSupplierToMySuppliersDocument = exports.AddSegmentToCampaignDocument = exports.AddSegmentToCallCampaignDocument = exports.AddCustomContactToSupplierListDocument = exports.AddContactsToSegmentDocument = exports.AddContactsToCombinedCampaignDocument = exports.AddContactsToCampaignDocument = exports.AddContactToSupplierListDocument = exports.AcceptInvitationDocument = exports.UserBusinessProfileStateChoices = exports.UserAccountInvitationStatusChoices = exports.SortDirection = exports.SaasSubscriptionStatusChoices = exports.SaasPlanPlanTypeChoices = exports.RecentHistorySortField = exports.NotificationTypeEnum = exports.MailLogTypeEnum = exports.DateRangeEnum = exports.ContactSortField = exports.CompanySortField = exports.CompanyNoteSortField = exports.CampaignEmailTemplateCampaignTypeChoices = exports.CallCampaignLogOutcomeEnum = void 0;
|
|
37
|
+
exports.SendManualEmailDocument = exports.SendEmailToEmailThreadDocument = exports.SendEmailToContactDocument = exports.ScheduleRfqDocument = exports.ScheduleCombinedCampaignDocument = exports.ScheduleCampaignDocument = exports.SaveNylasConnectionDocument = exports.ResumeCombinedCampaignDocument = exports.RemoveSupplierFromSupplierListDocument = exports.RemoveSegmentFromCampaignDocument = exports.RemoveSegmentFromCallCampaignDocument = exports.RemoveMemberDocument = exports.RemoveCustomContactFromSupplierListDocument = exports.RemoveContactsFromSegmentDocument = exports.RemoveContactsFromCombinedCampaignDocument = exports.RemoveContactsFromCampaignDocument = exports.RemoveContactFromSupplierListDocument = exports.RemoveContactFromMySupplierDocument = exports.RejectInvitationDocument = exports.ReduceSpamDocument = exports.PreviewCampaignEmailDocument = exports.PauseCombinedCampaignDocument = exports.PauseCampaignDocument = exports.MarkNotificationAsReadDocument = exports.MarkAllNotificationsAsReadDocument = exports.LoginWithMicrosoftDocument = exports.LoginWithGoogleDocument = exports.LoginDocument = exports.InviteUserDocument = exports.HideRecordDocument = exports.GenerateNewEmailDocument = exports.ForgotPasswordDocument = exports.EmailToneDocument = exports.DisconnectNylasIntegrationDocument = exports.DeleteTaskDocument = exports.DeleteSupplierlistDocument = exports.DeleteSegmentDocument = exports.DeleteSavedSearchSpotDocument = exports.DeleteRfqlineitemDocument = exports.DeleteRfqDocument = exports.DeleteNotificationDocument = exports.DeleteMysupplierDocument = exports.DeleteEmailTemplateDocument = exports.DeleteContactDocument = exports.DeleteCompanyNoteDocument = exports.DeleteCompanyDocument = exports.DeleteCombinedCampaignTemplateDocument = exports.DeleteCombinedCampaignDocument = exports.DeleteCampaignDocument = exports.DeleteCallCampaignDocument = void 0;
|
|
38
|
+
exports.CombinedCampaignDocument = exports.CampaignsDocument = exports.CampaignStatsDocument = exports.CampaignLogsDocument = exports.CampaignContactsDocument = exports.CampaignAnalyticsDocument = exports.CampaignDocument = exports.CallCampaignsDocument = exports.CallCampaignReportDocument = exports.CallCampaignLogsDocument = exports.CallCampaignLogDocument = exports.CallCampaignAnalyticsDocument = exports.CallCampaignDocument = exports.BusinessProfileDocument = exports.AccountSubscriptionDocument = exports.AccountProfileDocument = exports.AccountMembersDocument = exports.ValidateOtpAndResetPasswordDocument = exports.UploadFileDocument = exports.UpdateUserProfileDocument = exports.UpdateTaskDocument = exports.UpdateSupplierlistDocument = exports.UpdateSegmentDocument = exports.UpdateRfqlineitemDocument = exports.UpdateRfqDocument = exports.UpdateMysupplierDocument = exports.UpdateEmailTemplateDocument = exports.UpdateContactDocument = exports.UpdateCompanyProfileDocument = exports.UpdateCompanyNoteDocument = exports.UpdateCompanyExternalIdentifierDocument = exports.UpdateCompanyDocument = exports.UpdateCombinedCampaignTemplateDocument = exports.UpdateCombinedCampaignLogsDocument = exports.UpdateCombinedCampaignLogDocument = exports.UpdateCombinedCampaignDocument = exports.UpdateCampaignDocument = exports.UpdateCallCampaignLogDocument = exports.UpdateCallCampaignDocument = exports.UnsubscribeFromEmailsDocument = exports.UnhideRecordDocument = exports.SubmitFeedbackDocument = exports.StartCombinedCampaignDocument = exports.StartCampaignDocument = exports.SignupDocument = exports.SetLeadNotInterestedDocument = exports.SendTestEmailCombinedDocument = exports.SendTestEmailDocument = exports.SendRfqTestEmailDocument = exports.SendRfqDocument = void 0;
|
|
39
|
+
exports.RfqlineitemDocument = exports.RfqSuppliersDocument = exports.RfqListDocument = exports.RfqDocument = exports.RecentNotificationsDocument = exports.RecentHistoryDocument = exports.ProductTypesDocument = exports.ProductCategoriesDocument = exports.PendingInvitationsDocument = exports.NylasConnectionDocument = exports.NotificationsDocument = exports.NotificationDocument = exports.MysupplierListDocument = exports.MysupplierDocument = exports.MyInvitationsDocument = exports.MetalTypesDocument = exports.MetalGradesDocument = exports.MailLogsDocument = exports.MailLogDocument = exports.IndustryTypesDocument = exports.IndustrySectorsDocument = exports.EmployeeSizesDocument = exports.EmailThreadsByCompanyDocument = exports.EmailThreadDocument = exports.EmailTemplatesDocument = exports.EmailTemplateDocument = exports.EmailCampaignReportStatsDocument = exports.EmailCampaignReportOverviewDocument = exports.EmailCampaignReportByCampaignDocument = exports.DashboardStatsDocument = exports.CurrentPipelineTotalDocument = exports.CurrentAccountDocument = exports.CrmFunnelReportDocument = exports.ContactsInSegmentDocument = exports.ContactsDocument = exports.ContactDocument = exports.CompanySearchDocument = exports.CompanyNotesDocument = exports.CompanyNoteDocument = exports.CompanyMetadataDocument = exports.CompanyExternalIdentifierDocument = exports.CompanyAudiencesAndCampaignsDocument = exports.CompanyDocument = exports.CompaniesDocument = exports.CombinedCampaignsDocument = exports.CombinedCampaignTemplatesDocument = exports.CombinedCampaignTemplateDocument = exports.CombinedCampaignStepsDocument = exports.CombinedCampaignLogsDocument = exports.CombinedCampaignContactsDocument = void 0;
|
|
40
|
+
exports.UserProfileDocument = exports.UsStatesDocument = exports.UnreadNotificationsCountDocument = exports.TasksDocument = exports.TaskDocument = exports.SuppliersDocument = exports.SupplierlistListDocument = exports.SupplierlistDocument = exports.SupplierListCustomContactsDocument = exports.SupplierListContactsDocument = exports.SupplierDocument = exports.SegmentsDocument = exports.SegmentDocument = exports.SearchContactsDocument = exports.SavedSearchSpotsDocument = exports.RfqlineitemListDocument = void 0;
|
|
41
41
|
exports.useAcceptInvitationMutation = useAcceptInvitationMutation;
|
|
42
42
|
exports.useAddContactToSupplierListMutation = useAddContactToSupplierListMutation;
|
|
43
43
|
exports.useAddContactsToCampaignMutation = useAddContactsToCampaignMutation;
|
|
@@ -54,6 +54,7 @@ exports.useCancelCombinedCampaignMutation = useCancelCombinedCampaignMutation;
|
|
|
54
54
|
exports.useCancelInvitationMutation = useCancelInvitationMutation;
|
|
55
55
|
exports.useChangePasswordMutation = useChangePasswordMutation;
|
|
56
56
|
exports.useClearAllNotificationsMutation = useClearAllNotificationsMutation;
|
|
57
|
+
exports.useClearAllSavedSearchSpotsMutation = useClearAllSavedSearchSpotsMutation;
|
|
57
58
|
exports.useCompleteCampaignMutation = useCompleteCampaignMutation;
|
|
58
59
|
exports.useCompleteRfqMutation = useCompleteRfqMutation;
|
|
59
60
|
exports.useCreateCallCampaignMutation = useCreateCallCampaignMutation;
|
|
@@ -69,6 +70,7 @@ exports.useCreateMysupplierMutation = useCreateMysupplierMutation;
|
|
|
69
70
|
exports.useCreateNotificationMutation = useCreateNotificationMutation;
|
|
70
71
|
exports.useCreateRfqMutation = useCreateRfqMutation;
|
|
71
72
|
exports.useCreateRfqlineitemMutation = useCreateRfqlineitemMutation;
|
|
73
|
+
exports.useCreateSavedSearchSpotMutation = useCreateSavedSearchSpotMutation;
|
|
72
74
|
exports.useCreateSegmentMutation = useCreateSegmentMutation;
|
|
73
75
|
exports.useCreateSupplierlistMutation = useCreateSupplierlistMutation;
|
|
74
76
|
exports.useCreateTaskMutation = useCreateTaskMutation;
|
|
@@ -84,6 +86,7 @@ exports.useDeleteMysupplierMutation = useDeleteMysupplierMutation;
|
|
|
84
86
|
exports.useDeleteNotificationMutation = useDeleteNotificationMutation;
|
|
85
87
|
exports.useDeleteRfqMutation = useDeleteRfqMutation;
|
|
86
88
|
exports.useDeleteRfqlineitemMutation = useDeleteRfqlineitemMutation;
|
|
89
|
+
exports.useDeleteSavedSearchSpotMutation = useDeleteSavedSearchSpotMutation;
|
|
87
90
|
exports.useDeleteSegmentMutation = useDeleteSegmentMutation;
|
|
88
91
|
exports.useDeleteSupplierlistMutation = useDeleteSupplierlistMutation;
|
|
89
92
|
exports.useDeleteTaskMutation = useDeleteTaskMutation;
|
|
@@ -358,6 +361,9 @@ exports.useRfqlineitemSuspenseQuery = useRfqlineitemSuspenseQuery;
|
|
|
358
361
|
exports.useRfqlineitemListQuery = useRfqlineitemListQuery;
|
|
359
362
|
exports.useRfqlineitemListLazyQuery = useRfqlineitemListLazyQuery;
|
|
360
363
|
exports.useRfqlineitemListSuspenseQuery = useRfqlineitemListSuspenseQuery;
|
|
364
|
+
exports.useSavedSearchSpotsQuery = useSavedSearchSpotsQuery;
|
|
365
|
+
exports.useSavedSearchSpotsLazyQuery = useSavedSearchSpotsLazyQuery;
|
|
366
|
+
exports.useSavedSearchSpotsSuspenseQuery = useSavedSearchSpotsSuspenseQuery;
|
|
361
367
|
exports.useSearchContactsQuery = useSearchContactsQuery;
|
|
362
368
|
exports.useSearchContactsLazyQuery = useSearchContactsLazyQuery;
|
|
363
369
|
exports.useSearchContactsSuspenseQuery = useSearchContactsSuspenseQuery;
|
|
@@ -1554,6 +1560,35 @@ function useClearAllNotificationsMutation(baseOptions) {
|
|
|
1554
1560
|
const options = { ...defaultOptions, ...baseOptions };
|
|
1555
1561
|
return Apollo.useMutation(exports.ClearAllNotificationsDocument, options);
|
|
1556
1562
|
}
|
|
1563
|
+
exports.ClearAllSavedSearchSpotsDocument = (0, client_1.gql) `
|
|
1564
|
+
mutation ClearAllSavedSearchSpots {
|
|
1565
|
+
clearAllSavedSearchSpots {
|
|
1566
|
+
count
|
|
1567
|
+
success
|
|
1568
|
+
message
|
|
1569
|
+
}
|
|
1570
|
+
}
|
|
1571
|
+
`;
|
|
1572
|
+
/**
|
|
1573
|
+
* __useClearAllSavedSearchSpotsMutation__
|
|
1574
|
+
*
|
|
1575
|
+
* To run a mutation, you first call `useClearAllSavedSearchSpotsMutation` within a React component and pass it any options that fit your needs.
|
|
1576
|
+
* When your component renders, `useClearAllSavedSearchSpotsMutation` returns a tuple that includes:
|
|
1577
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1578
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1579
|
+
*
|
|
1580
|
+
* @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;
|
|
1581
|
+
*
|
|
1582
|
+
* @example
|
|
1583
|
+
* const [clearAllSavedSearchSpotsMutation, { data, loading, error }] = useClearAllSavedSearchSpotsMutation({
|
|
1584
|
+
* variables: {
|
|
1585
|
+
* },
|
|
1586
|
+
* });
|
|
1587
|
+
*/
|
|
1588
|
+
function useClearAllSavedSearchSpotsMutation(baseOptions) {
|
|
1589
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1590
|
+
return Apollo.useMutation(exports.ClearAllSavedSearchSpotsDocument, options);
|
|
1591
|
+
}
|
|
1557
1592
|
exports.CompleteCampaignDocument = (0, client_1.gql) `
|
|
1558
1593
|
mutation CompleteCampaign($id: ID!) {
|
|
1559
1594
|
completeCampaign(id: $id) {
|
|
@@ -1665,7 +1700,7 @@ exports.CompleteRfqDocument = (0, client_1.gql) `
|
|
|
1665
1700
|
quoteDeadline
|
|
1666
1701
|
deliveryDeadline
|
|
1667
1702
|
products
|
|
1668
|
-
|
|
1703
|
+
fob
|
|
1669
1704
|
paymentTerms
|
|
1670
1705
|
partialShipmentsAllowed
|
|
1671
1706
|
deliveryLocation
|
|
@@ -3947,7 +3982,7 @@ exports.CreateRfqDocument = (0, client_1.gql) `
|
|
|
3947
3982
|
quoteDeadline
|
|
3948
3983
|
deliveryDeadline
|
|
3949
3984
|
products
|
|
3950
|
-
|
|
3985
|
+
fob
|
|
3951
3986
|
paymentTerms
|
|
3952
3987
|
partialShipmentsAllowed
|
|
3953
3988
|
deliveryLocation
|
|
@@ -4132,7 +4167,7 @@ exports.CreateRfqlineitemDocument = (0, client_1.gql) `
|
|
|
4132
4167
|
quoteDeadline
|
|
4133
4168
|
deliveryDeadline
|
|
4134
4169
|
products
|
|
4135
|
-
|
|
4170
|
+
fob
|
|
4136
4171
|
paymentTerms
|
|
4137
4172
|
partialShipmentsAllowed
|
|
4138
4173
|
deliveryLocation
|
|
@@ -4271,6 +4306,49 @@ function useCreateRfqlineitemMutation(baseOptions) {
|
|
|
4271
4306
|
const options = { ...defaultOptions, ...baseOptions };
|
|
4272
4307
|
return Apollo.useMutation(exports.CreateRfqlineitemDocument, options);
|
|
4273
4308
|
}
|
|
4309
|
+
exports.CreateSavedSearchSpotDocument = (0, client_1.gql) `
|
|
4310
|
+
mutation CreateSavedSearchSpot($description: String, $name: String!, $urlParams: String!) {
|
|
4311
|
+
createSavedSearchSpot(
|
|
4312
|
+
description: $description
|
|
4313
|
+
name: $name
|
|
4314
|
+
urlParams: $urlParams
|
|
4315
|
+
) {
|
|
4316
|
+
spot {
|
|
4317
|
+
id
|
|
4318
|
+
createdAt
|
|
4319
|
+
updatedAt
|
|
4320
|
+
name
|
|
4321
|
+
urlParams
|
|
4322
|
+
description
|
|
4323
|
+
}
|
|
4324
|
+
success
|
|
4325
|
+
message
|
|
4326
|
+
}
|
|
4327
|
+
}
|
|
4328
|
+
`;
|
|
4329
|
+
/**
|
|
4330
|
+
* __useCreateSavedSearchSpotMutation__
|
|
4331
|
+
*
|
|
4332
|
+
* To run a mutation, you first call `useCreateSavedSearchSpotMutation` within a React component and pass it any options that fit your needs.
|
|
4333
|
+
* When your component renders, `useCreateSavedSearchSpotMutation` returns a tuple that includes:
|
|
4334
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
4335
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
4336
|
+
*
|
|
4337
|
+
* @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;
|
|
4338
|
+
*
|
|
4339
|
+
* @example
|
|
4340
|
+
* const [createSavedSearchSpotMutation, { data, loading, error }] = useCreateSavedSearchSpotMutation({
|
|
4341
|
+
* variables: {
|
|
4342
|
+
* description: // value for 'description'
|
|
4343
|
+
* name: // value for 'name'
|
|
4344
|
+
* urlParams: // value for 'urlParams'
|
|
4345
|
+
* },
|
|
4346
|
+
* });
|
|
4347
|
+
*/
|
|
4348
|
+
function useCreateSavedSearchSpotMutation(baseOptions) {
|
|
4349
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
4350
|
+
return Apollo.useMutation(exports.CreateSavedSearchSpotDocument, options);
|
|
4351
|
+
}
|
|
4274
4352
|
exports.CreateSegmentDocument = (0, client_1.gql) `
|
|
4275
4353
|
mutation CreateSegment($input: SegmentInput!) {
|
|
4276
4354
|
createSegment(input: $input) {
|
|
@@ -5463,6 +5541,35 @@ function useDeleteRfqlineitemMutation(baseOptions) {
|
|
|
5463
5541
|
const options = { ...defaultOptions, ...baseOptions };
|
|
5464
5542
|
return Apollo.useMutation(exports.DeleteRfqlineitemDocument, options);
|
|
5465
5543
|
}
|
|
5544
|
+
exports.DeleteSavedSearchSpotDocument = (0, client_1.gql) `
|
|
5545
|
+
mutation DeleteSavedSearchSpot($id: ID!) {
|
|
5546
|
+
deleteSavedSearchSpot(id: $id) {
|
|
5547
|
+
success
|
|
5548
|
+
message
|
|
5549
|
+
}
|
|
5550
|
+
}
|
|
5551
|
+
`;
|
|
5552
|
+
/**
|
|
5553
|
+
* __useDeleteSavedSearchSpotMutation__
|
|
5554
|
+
*
|
|
5555
|
+
* To run a mutation, you first call `useDeleteSavedSearchSpotMutation` within a React component and pass it any options that fit your needs.
|
|
5556
|
+
* When your component renders, `useDeleteSavedSearchSpotMutation` returns a tuple that includes:
|
|
5557
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
5558
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
5559
|
+
*
|
|
5560
|
+
* @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;
|
|
5561
|
+
*
|
|
5562
|
+
* @example
|
|
5563
|
+
* const [deleteSavedSearchSpotMutation, { data, loading, error }] = useDeleteSavedSearchSpotMutation({
|
|
5564
|
+
* variables: {
|
|
5565
|
+
* id: // value for 'id'
|
|
5566
|
+
* },
|
|
5567
|
+
* });
|
|
5568
|
+
*/
|
|
5569
|
+
function useDeleteSavedSearchSpotMutation(baseOptions) {
|
|
5570
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
5571
|
+
return Apollo.useMutation(exports.DeleteSavedSearchSpotDocument, options);
|
|
5572
|
+
}
|
|
5466
5573
|
exports.DeleteSegmentDocument = (0, client_1.gql) `
|
|
5467
5574
|
mutation DeleteSegment($id: ID!) {
|
|
5468
5575
|
deleteSegment(id: $id) {
|
|
@@ -7180,7 +7287,7 @@ exports.ScheduleRfqDocument = (0, client_1.gql) `
|
|
|
7180
7287
|
quoteDeadline
|
|
7181
7288
|
deliveryDeadline
|
|
7182
7289
|
products
|
|
7183
|
-
|
|
7290
|
+
fob
|
|
7184
7291
|
paymentTerms
|
|
7185
7292
|
partialShipmentsAllowed
|
|
7186
7293
|
deliveryLocation
|
|
@@ -7891,6 +7998,7 @@ exports.SendManualEmailDocument = (0, client_1.gql) `
|
|
|
7891
7998
|
}
|
|
7892
7999
|
draftSubject
|
|
7893
8000
|
draftBody
|
|
8001
|
+
sentSubject
|
|
7894
8002
|
createdAt
|
|
7895
8003
|
updatedAt
|
|
7896
8004
|
contactName
|
|
@@ -9286,6 +9394,7 @@ exports.UpdateCombinedCampaignLogDocument = (0, client_1.gql) `
|
|
|
9286
9394
|
}
|
|
9287
9395
|
draftSubject
|
|
9288
9396
|
draftBody
|
|
9397
|
+
sentSubject
|
|
9289
9398
|
createdAt
|
|
9290
9399
|
updatedAt
|
|
9291
9400
|
contactName
|
|
@@ -11055,7 +11164,7 @@ exports.UpdateRfqDocument = (0, client_1.gql) `
|
|
|
11055
11164
|
quoteDeadline
|
|
11056
11165
|
deliveryDeadline
|
|
11057
11166
|
products
|
|
11058
|
-
|
|
11167
|
+
fob
|
|
11059
11168
|
paymentTerms
|
|
11060
11169
|
partialShipmentsAllowed
|
|
11061
11170
|
deliveryLocation
|
|
@@ -11241,7 +11350,7 @@ exports.UpdateRfqlineitemDocument = (0, client_1.gql) `
|
|
|
11241
11350
|
quoteDeadline
|
|
11242
11351
|
deliveryDeadline
|
|
11243
11352
|
products
|
|
11244
|
-
|
|
11353
|
+
fob
|
|
11245
11354
|
paymentTerms
|
|
11246
11355
|
partialShipmentsAllowed
|
|
11247
11356
|
deliveryLocation
|
|
@@ -13850,12 +13959,15 @@ exports.CampaignContactsDocument = (0, client_1.gql) `
|
|
|
13850
13959
|
}
|
|
13851
13960
|
draftSubject
|
|
13852
13961
|
draftBody
|
|
13962
|
+
sentSubject
|
|
13853
13963
|
createdAt
|
|
13854
13964
|
updatedAt
|
|
13855
13965
|
contactName
|
|
13856
13966
|
contactEmail
|
|
13857
13967
|
companyName
|
|
13858
13968
|
}
|
|
13969
|
+
populatedSubject
|
|
13970
|
+
populatedBody
|
|
13859
13971
|
}
|
|
13860
13972
|
pagination {
|
|
13861
13973
|
currentPage
|
|
@@ -14797,12 +14909,15 @@ exports.CombinedCampaignContactsDocument = (0, client_1.gql) `
|
|
|
14797
14909
|
}
|
|
14798
14910
|
draftSubject
|
|
14799
14911
|
draftBody
|
|
14912
|
+
sentSubject
|
|
14800
14913
|
createdAt
|
|
14801
14914
|
updatedAt
|
|
14802
14915
|
contactName
|
|
14803
14916
|
contactEmail
|
|
14804
14917
|
companyName
|
|
14805
14918
|
}
|
|
14919
|
+
populatedSubject
|
|
14920
|
+
populatedBody
|
|
14806
14921
|
}
|
|
14807
14922
|
pagination {
|
|
14808
14923
|
currentPage
|
|
@@ -15117,6 +15232,7 @@ exports.CombinedCampaignLogsDocument = (0, client_1.gql) `
|
|
|
15117
15232
|
}
|
|
15118
15233
|
draftSubject
|
|
15119
15234
|
draftBody
|
|
15235
|
+
sentSubject
|
|
15120
15236
|
createdAt
|
|
15121
15237
|
updatedAt
|
|
15122
15238
|
contactName
|
|
@@ -21478,7 +21594,7 @@ exports.RfqDocument = (0, client_1.gql) `
|
|
|
21478
21594
|
quoteDeadline
|
|
21479
21595
|
deliveryDeadline
|
|
21480
21596
|
products
|
|
21481
|
-
|
|
21597
|
+
fob
|
|
21482
21598
|
paymentTerms
|
|
21483
21599
|
partialShipmentsAllowed
|
|
21484
21600
|
deliveryLocation
|
|
@@ -21655,7 +21771,7 @@ exports.RfqListDocument = (0, client_1.gql) `
|
|
|
21655
21771
|
quoteDeadline
|
|
21656
21772
|
deliveryDeadline
|
|
21657
21773
|
products
|
|
21658
|
-
|
|
21774
|
+
fob
|
|
21659
21775
|
paymentTerms
|
|
21660
21776
|
partialShipmentsAllowed
|
|
21661
21777
|
deliveryLocation
|
|
@@ -21893,7 +22009,7 @@ exports.RfqlineitemDocument = (0, client_1.gql) `
|
|
|
21893
22009
|
quoteDeadline
|
|
21894
22010
|
deliveryDeadline
|
|
21895
22011
|
products
|
|
21896
|
-
|
|
22012
|
+
fob
|
|
21897
22013
|
paymentTerms
|
|
21898
22014
|
partialShipmentsAllowed
|
|
21899
22015
|
deliveryLocation
|
|
@@ -22070,7 +22186,7 @@ exports.RfqlineitemListDocument = (0, client_1.gql) `
|
|
|
22070
22186
|
quoteDeadline
|
|
22071
22187
|
deliveryDeadline
|
|
22072
22188
|
products
|
|
22073
|
-
|
|
22189
|
+
fob
|
|
22074
22190
|
paymentTerms
|
|
22075
22191
|
partialShipmentsAllowed
|
|
22076
22192
|
deliveryLocation
|
|
@@ -22226,6 +22342,45 @@ function useRfqlineitemListSuspenseQuery(baseOptions) {
|
|
|
22226
22342
|
const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions };
|
|
22227
22343
|
return Apollo.useSuspenseQuery(exports.RfqlineitemListDocument, options);
|
|
22228
22344
|
}
|
|
22345
|
+
exports.SavedSearchSpotsDocument = (0, client_1.gql) `
|
|
22346
|
+
query SavedSearchSpots {
|
|
22347
|
+
savedSearchSpots {
|
|
22348
|
+
id
|
|
22349
|
+
createdAt
|
|
22350
|
+
updatedAt
|
|
22351
|
+
name
|
|
22352
|
+
urlParams
|
|
22353
|
+
description
|
|
22354
|
+
}
|
|
22355
|
+
}
|
|
22356
|
+
`;
|
|
22357
|
+
/**
|
|
22358
|
+
* __useSavedSearchSpotsQuery__
|
|
22359
|
+
*
|
|
22360
|
+
* To run a query within a React component, call `useSavedSearchSpotsQuery` and pass it any options that fit your needs.
|
|
22361
|
+
* When your component renders, `useSavedSearchSpotsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
22362
|
+
* you can use to render your UI.
|
|
22363
|
+
*
|
|
22364
|
+
* @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;
|
|
22365
|
+
*
|
|
22366
|
+
* @example
|
|
22367
|
+
* const { data, loading, error } = useSavedSearchSpotsQuery({
|
|
22368
|
+
* variables: {
|
|
22369
|
+
* },
|
|
22370
|
+
* });
|
|
22371
|
+
*/
|
|
22372
|
+
function useSavedSearchSpotsQuery(baseOptions) {
|
|
22373
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
22374
|
+
return Apollo.useQuery(exports.SavedSearchSpotsDocument, options);
|
|
22375
|
+
}
|
|
22376
|
+
function useSavedSearchSpotsLazyQuery(baseOptions) {
|
|
22377
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
22378
|
+
return Apollo.useLazyQuery(exports.SavedSearchSpotsDocument, options);
|
|
22379
|
+
}
|
|
22380
|
+
function useSavedSearchSpotsSuspenseQuery(baseOptions) {
|
|
22381
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions };
|
|
22382
|
+
return Apollo.useSuspenseQuery(exports.SavedSearchSpotsDocument, options);
|
|
22383
|
+
}
|
|
22229
22384
|
exports.SearchContactsDocument = (0, client_1.gql) `
|
|
22230
22385
|
query SearchContacts($filters: ContactFilterInput, $pagination: PaginationInput, $sort: ContactSortInput) {
|
|
22231
22386
|
searchContacts(filters: $filters, pagination: $pagination, sort: $sort) {
|
|
@@ -22535,6 +22690,7 @@ exports.SupplierDocument = (0, client_1.gql) `
|
|
|
22535
22690
|
website
|
|
22536
22691
|
description
|
|
22537
22692
|
mySupplierId
|
|
22693
|
+
logoUrl
|
|
22538
22694
|
productsSold {
|
|
22539
22695
|
id
|
|
22540
22696
|
metalType
|
|
@@ -24706,6 +24862,7 @@ exports.SuppliersDocument = (0, client_1.gql) `
|
|
|
24706
24862
|
website
|
|
24707
24863
|
description
|
|
24708
24864
|
mySupplierId
|
|
24865
|
+
logoUrl
|
|
24709
24866
|
productsSold {
|
|
24710
24867
|
id
|
|
24711
24868
|
metalType
|
package/dist/mutations.d.ts
CHANGED
|
@@ -114,3 +114,6 @@ export declare const UNHIDE_RECORD: import("@apollo/client").DocumentNode;
|
|
|
114
114
|
export declare const BULK_ASSIGN_COMPANY_OWNERS: import("@apollo/client").DocumentNode;
|
|
115
115
|
export declare const SET_LEAD_NOT_INTERESTED: import("@apollo/client").DocumentNode;
|
|
116
116
|
export declare const UPDATE_COMPANY_EXTERNAL_IDENTIFIER: import("@apollo/client").DocumentNode;
|
|
117
|
+
export declare const CREATE_SAVED_SEARCH_SPOT: import("@apollo/client").DocumentNode;
|
|
118
|
+
export declare const DELETE_SAVED_SEARCH_SPOT: import("@apollo/client").DocumentNode;
|
|
119
|
+
export declare const CLEAR_ALL_SAVED_SEARCH_SPOTS: import("@apollo/client").DocumentNode;
|
package/dist/mutations.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CANCEL_INVITATION = exports.REMOVE_MEMBER = exports.REJECT_INVITATION = exports.ACCEPT_INVITATION = exports.INVITE_USER = exports.UPLOAD_FILE = exports.FORGOT_PASSWORD = exports.SIGNUP = exports.DELETE_COMBINED_CAMPAIGN_TEMPLATE = exports.UPDATE_COMBINED_CAMPAIGN_TEMPLATE = exports.CREATE_COMBINED_CAMPAIGN_TEMPLATE = exports.REMOVE_CONTACTS_FROM_COMBINED_CAMPAIGN = exports.ADD_CONTACTS_TO_COMBINED_CAMPAIGN = exports.SEND_TEST_EMAIL_COMBINED = exports.SEND_MANUAL_EMAIL = exports.UPDATE_COMBINED_CAMPAIGN_LOGS = exports.UPDATE_COMBINED_CAMPAIGN_LOG = exports.CANCEL_COMBINED_CAMPAIGN = exports.RESUME_COMBINED_CAMPAIGN = exports.PAUSE_COMBINED_CAMPAIGN = exports.SCHEDULE_COMBINED_CAMPAIGN = exports.START_COMBINED_CAMPAIGN = exports.DELETE_COMBINED_CAMPAIGN = exports.UPDATE_COMBINED_CAMPAIGN = exports.CREATE_COMBINED_CAMPAIGN = exports.SEND_EMAIL_TO_EMAIL_THREAD = exports.COMPLETE_RFQ = exports.SCHEDULE_RFQ = exports.SEND_RFQ = exports.REMOVE_CONTACT_FROM_MY_SUPPLIER = exports.ADD_SUPPLIER_TO_MY_SUPPLIERS = exports.SEND_RFQ_TEST_EMAIL = exports.REMOVE_SUPPLIER_FROM_SUPPLIER_LIST = exports.ADD_SUPPLIER_TO_SUPPLIER_LIST = exports.REMOVE_CUSTOM_CONTACT_FROM_SUPPLIER_LIST = exports.ADD_CUSTOM_CONTACT_TO_SUPPLIER_LIST = exports.REMOVE_CONTACT_FROM_SUPPLIER_LIST = exports.ADD_CONTACT_TO_SUPPLIER_LIST = exports.UPDATE_RFQLINEITEM = exports.DELETE_RFQLINEITEM = exports.CREATE_RFQLINEITEM = exports.UPDATE_SUPPLIERLIST = exports.DELETE_SUPPLIERLIST = exports.CREATE_SUPPLIERLIST = exports.UPDATE_RFQ = exports.DELETE_RFQ = exports.CREATE_RFQ = exports.UPDATE_MYSUPPLIER = exports.DELETE_MYSUPPLIER = exports.CREATE_MYSUPPLIER = void 0;
|
|
4
4
|
exports.UPDATE_TASK = exports.CREATE_TASK = exports.CLEAR_ALL_NOTIFICATIONS = exports.DELETE_NOTIFICATION = exports.MARK_ALL_NOTIFICATIONS_AS_READ = exports.MARK_NOTIFICATION_AS_READ = exports.CREATE_NOTIFICATION = exports.DISCONNECT_NYLAS_INTEGRATION = exports.SAVE_NYLAS_CONNECTION = exports.GENERATE_NEW_EMAIL = exports.REDUCE_SPAM = exports.EMAIL_TONE = exports.DELETE_EMAIL_TEMPLATE = exports.UPDATE_EMAIL_TEMPLATE = exports.CREATE_EMAIL_TEMPLATE = exports.PREVIEW_CAMPAIGN_EMAIL = exports.SCHEDULE_CAMPAIGN = exports.SEND_EMAIL_TO_CONTACT = exports.SEND_TEST_EMAIL = exports.CANCEL_CAMPAIGN = exports.COMPLETE_CAMPAIGN = exports.PAUSE_CAMPAIGN = exports.START_CAMPAIGN = exports.REMOVE_SEGMENT_FROM_CAMPAIGN = exports.ADD_SEGMENT_TO_CAMPAIGN = exports.DELETE_CAMPAIGN = exports.UPDATE_CAMPAIGN = exports.CREATE_CAMPAIGN = exports.REMOVE_CONTACTS_FROM_CAMPAIGN = exports.ADD_CONTACTS_TO_CAMPAIGN = exports.REMOVE_CONTACTS_FROM_SEGMENT = exports.ADD_CONTACTS_TO_SEGMENT = exports.DELETE_SEGMENT = exports.UPDATE_SEGMENT = exports.CREATE_SEGMENT = exports.DELETE_COMPANY = exports.UPDATE_COMPANY = exports.CREATE_COMPANY = exports.DELETE_CONTACT = exports.UPDATE_CONTACT = exports.CREATE_CONTACT = exports.UPDATE_COMPANY_PROFILE = exports.SUBMIT_FEEDBACK = exports.LOGIN_WITH_MICROSOFT = exports.LOGIN_WITH_GOOGLE = exports.UNSUBSCRIBE_FROM_EMAILS = exports.VALIDATE_OTP_AND_RESET_PASSWORD = exports.CHANGE_PASSWORD = exports.UPDATE_USER_PROFILE = exports.LOGIN = void 0;
|
|
5
|
-
exports.UPDATE_COMPANY_EXTERNAL_IDENTIFIER = exports.SET_LEAD_NOT_INTERESTED = exports.BULK_ASSIGN_COMPANY_OWNERS = exports.UNHIDE_RECORD = exports.HIDE_RECORD = exports.DELETE_COMPANY_NOTE = exports.UPDATE_COMPANY_NOTE = exports.CREATE_COMPANY_NOTE = exports.UPDATE_CALL_CAMPAIGN_LOG = exports.CREATE_CALL_CAMPAIGN_LOG = exports.REMOVE_SEGMENT_FROM_CALL_CAMPAIGN = exports.ADD_SEGMENT_TO_CALL_CAMPAIGN = exports.DELETE_CALL_CAMPAIGN = exports.UPDATE_CALL_CAMPAIGN = exports.CREATE_CALL_CAMPAIGN = exports.DELETE_TASK = void 0;
|
|
5
|
+
exports.CLEAR_ALL_SAVED_SEARCH_SPOTS = exports.DELETE_SAVED_SEARCH_SPOT = exports.CREATE_SAVED_SEARCH_SPOT = exports.UPDATE_COMPANY_EXTERNAL_IDENTIFIER = exports.SET_LEAD_NOT_INTERESTED = exports.BULK_ASSIGN_COMPANY_OWNERS = exports.UNHIDE_RECORD = exports.HIDE_RECORD = exports.DELETE_COMPANY_NOTE = exports.UPDATE_COMPANY_NOTE = exports.CREATE_COMPANY_NOTE = exports.UPDATE_CALL_CAMPAIGN_LOG = exports.CREATE_CALL_CAMPAIGN_LOG = exports.REMOVE_SEGMENT_FROM_CALL_CAMPAIGN = exports.ADD_SEGMENT_TO_CALL_CAMPAIGN = exports.DELETE_CALL_CAMPAIGN = exports.UPDATE_CALL_CAMPAIGN = exports.CREATE_CALL_CAMPAIGN = exports.DELETE_TASK = void 0;
|
|
6
6
|
const client_1 = require("@apollo/client");
|
|
7
7
|
exports.CREATE_MYSUPPLIER = (0, client_1.gql) `
|
|
8
8
|
mutation CreateMysupplier($input: MySupplierInput!) {
|
|
@@ -1245,7 +1245,7 @@ mutation CreateRfq($input: RfqInput!) {
|
|
|
1245
1245
|
quoteDeadline
|
|
1246
1246
|
deliveryDeadline
|
|
1247
1247
|
products
|
|
1248
|
-
|
|
1248
|
+
fob
|
|
1249
1249
|
paymentTerms
|
|
1250
1250
|
partialShipmentsAllowed
|
|
1251
1251
|
deliveryLocation
|
|
@@ -1399,7 +1399,7 @@ mutation UpdateRfq($id: ID!, $input: RfqInput!) {
|
|
|
1399
1399
|
quoteDeadline
|
|
1400
1400
|
deliveryDeadline
|
|
1401
1401
|
products
|
|
1402
|
-
|
|
1402
|
+
fob
|
|
1403
1403
|
paymentTerms
|
|
1404
1404
|
partialShipmentsAllowed
|
|
1405
1405
|
deliveryLocation
|
|
@@ -2789,7 +2789,7 @@ mutation CreateRfqlineitem($input: RfqLineItemInput!) {
|
|
|
2789
2789
|
quoteDeadline
|
|
2790
2790
|
deliveryDeadline
|
|
2791
2791
|
products
|
|
2792
|
-
|
|
2792
|
+
fob
|
|
2793
2793
|
paymentTerms
|
|
2794
2794
|
partialShipmentsAllowed
|
|
2795
2795
|
deliveryLocation
|
|
@@ -2943,7 +2943,7 @@ mutation UpdateRfqlineitem($id: ID!, $input: RfqLineItemInput!) {
|
|
|
2943
2943
|
quoteDeadline
|
|
2944
2944
|
deliveryDeadline
|
|
2945
2945
|
products
|
|
2946
|
-
|
|
2946
|
+
fob
|
|
2947
2947
|
paymentTerms
|
|
2948
2948
|
partialShipmentsAllowed
|
|
2949
2949
|
deliveryLocation
|
|
@@ -3151,7 +3151,7 @@ mutation ScheduleRfq($input: ScheduleRfqInput!) {
|
|
|
3151
3151
|
quoteDeadline
|
|
3152
3152
|
deliveryDeadline
|
|
3153
3153
|
products
|
|
3154
|
-
|
|
3154
|
+
fob
|
|
3155
3155
|
paymentTerms
|
|
3156
3156
|
partialShipmentsAllowed
|
|
3157
3157
|
deliveryLocation
|
|
@@ -3302,7 +3302,7 @@ mutation CompleteRfq($input: CompleteRfqInput!) {
|
|
|
3302
3302
|
quoteDeadline
|
|
3303
3303
|
deliveryDeadline
|
|
3304
3304
|
products
|
|
3305
|
-
|
|
3305
|
+
fob
|
|
3306
3306
|
paymentTerms
|
|
3307
3307
|
partialShipmentsAllowed
|
|
3308
3308
|
deliveryLocation
|
|
@@ -4296,6 +4296,7 @@ mutation UpdateCombinedCampaignLog($id: ID!, $input: UpdateCombinedCampaignLogIn
|
|
|
4296
4296
|
}
|
|
4297
4297
|
draftSubject
|
|
4298
4298
|
draftBody
|
|
4299
|
+
sentSubject
|
|
4299
4300
|
createdAt
|
|
4300
4301
|
updatedAt
|
|
4301
4302
|
contactName
|
|
@@ -4578,6 +4579,7 @@ mutation SendManualEmail($bcc: [String], $body: String!, $cc: [String], $logId:
|
|
|
4578
4579
|
}
|
|
4579
4580
|
draftSubject
|
|
4580
4581
|
draftBody
|
|
4582
|
+
sentSubject
|
|
4581
4583
|
createdAt
|
|
4582
4584
|
updatedAt
|
|
4583
4585
|
contactName
|
|
@@ -9022,3 +9024,33 @@ mutation UpdateCompanyExternalIdentifier($input: UpdateCompanyExternalIdentifier
|
|
|
9022
9024
|
error
|
|
9023
9025
|
}
|
|
9024
9026
|
}`;
|
|
9027
|
+
exports.CREATE_SAVED_SEARCH_SPOT = (0, client_1.gql) `
|
|
9028
|
+
mutation CreateSavedSearchSpot($description: String, $name: String!, $urlParams: String!) {
|
|
9029
|
+
createSavedSearchSpot(description: $description, name: $name, urlParams: $urlParams) {
|
|
9030
|
+
spot {
|
|
9031
|
+
id
|
|
9032
|
+
createdAt
|
|
9033
|
+
updatedAt
|
|
9034
|
+
name
|
|
9035
|
+
urlParams
|
|
9036
|
+
description
|
|
9037
|
+
}
|
|
9038
|
+
success
|
|
9039
|
+
message
|
|
9040
|
+
}
|
|
9041
|
+
}`;
|
|
9042
|
+
exports.DELETE_SAVED_SEARCH_SPOT = (0, client_1.gql) `
|
|
9043
|
+
mutation DeleteSavedSearchSpot($id: ID!) {
|
|
9044
|
+
deleteSavedSearchSpot(id: $id) {
|
|
9045
|
+
success
|
|
9046
|
+
message
|
|
9047
|
+
}
|
|
9048
|
+
}`;
|
|
9049
|
+
exports.CLEAR_ALL_SAVED_SEARCH_SPOTS = (0, client_1.gql) `
|
|
9050
|
+
mutation ClearAllSavedSearchSpots {
|
|
9051
|
+
clearAllSavedSearchSpots {
|
|
9052
|
+
count
|
|
9053
|
+
success
|
|
9054
|
+
message
|
|
9055
|
+
}
|
|
9056
|
+
}`;
|
package/dist/queries.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export declare const SAVED_SEARCH_SPOTS: import("@apollo/client").DocumentNode;
|
|
1
2
|
export declare const METAL_TYPES: import("@apollo/client").DocumentNode;
|
|
2
3
|
export declare const METAL_GRADES: import("@apollo/client").DocumentNode;
|
|
3
4
|
export declare const INDUSTRY_TYPES: import("@apollo/client").DocumentNode;
|
package/dist/queries.js
CHANGED
|
@@ -1,8 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.ACCOUNT_PROFILE = exports.USER_PROFILE = exports.MY_INVITATIONS = exports.BUSINESS_PROFILE = exports.PENDING_INVITATIONS = exports.ACCOUNT_MEMBERS = exports.CURRENT_ACCOUNT = exports.COMPANY_EXTERNAL_IDENTIFIER = exports.COMPANY_AUDIENCES_AND_CAMPAIGNS = exports.EMPLOYEE_SIZES = exports.US_STATES = exports.COMPANY_METADATA = exports.CONTACT = exports.COMPANY = exports.SEARCH_CONTACTS = exports.CONTACTS = exports.COMPANY_SEARCH = exports.COMPANIES = exports.CONTACTS_IN_SEGMENT = exports.SEGMENT = exports.SEGMENTS = exports.EMAIL_CAMPAIGN_REPORT_BY_CAMPAIGN = exports.EMAIL_CAMPAIGN_REPORT_OVERVIEW = exports.EMAIL_CAMPAIGN_REPORT_STATS = exports.CAMPAIGN_CONTACTS = exports.CAMPAIGN_LOGS = exports.CAMPAIGN_ANALYTICS = exports.CAMPAIGN_STATS = exports.CAMPAIGN = exports.CAMPAIGNS = exports.EMAIL_TEMPLATES = exports.EMAIL_TEMPLATE = void 0;
|
|
3
|
+
exports.RECENT_NOTIFICATIONS = exports.NOTIFICATION = exports.NOTIFICATIONS = exports.UNREAD_NOTIFICATIONS_COUNT = exports.TASK = exports.TASKS = exports.CALL_CAMPAIGN_REPORT = exports.CALL_CAMPAIGN_LOG = exports.CALL_CAMPAIGN_LOGS = exports.CALL_CAMPAIGN_ANALYTICS = exports.CALL_CAMPAIGN = exports.CALL_CAMPAIGNS = exports.COMPANY_NOTE = exports.COMPANY_NOTES = exports.RECENT_HISTORY = exports.CURRENT_PIPELINE_TOTAL = exports.CRM_FUNNEL_REPORT = exports.DASHBOARD_STATS = exports.EMAIL_THREADS_BY_COMPANY = exports.EMAIL_THREAD = exports.MAIL_LOG = exports.MAIL_LOGS = exports.COMBINED_CAMPAIGN_TEMPLATE = exports.COMBINED_CAMPAIGN_TEMPLATES = exports.COMBINED_CAMPAIGN_STEPS = exports.COMBINED_CAMPAIGN_CONTACTS = exports.COMBINED_CAMPAIGN_LOGS = exports.COMBINED_CAMPAIGN = exports.COMBINED_CAMPAIGNS = exports.ACCOUNT_SUBSCRIPTION = exports.SUPPLIER_LIST_CUSTOM_CONTACTS = exports.SUPPLIER_LIST_CONTACTS = exports.RFQ_SUPPLIERS = exports.SUPPLIER = exports.SUPPLIERS = exports.RFQLINEITEM_LIST = exports.RFQLINEITEM = exports.SUPPLIERLIST_LIST = exports.SUPPLIERLIST = exports.RFQ_LIST = exports.RFQ = exports.MYSUPPLIER_LIST = exports.MYSUPPLIER = exports.PRODUCT_TYPES = exports.PRODUCT_CATEGORIES = exports.INDUSTRY_SECTORS = exports.INDUSTRY_TYPES = exports.METAL_GRADES = exports.METAL_TYPES = exports.SAVED_SEARCH_SPOTS = void 0;
|
|
4
|
+
exports.ACCOUNT_PROFILE = exports.USER_PROFILE = exports.MY_INVITATIONS = exports.BUSINESS_PROFILE = exports.PENDING_INVITATIONS = exports.ACCOUNT_MEMBERS = exports.CURRENT_ACCOUNT = exports.COMPANY_EXTERNAL_IDENTIFIER = exports.COMPANY_AUDIENCES_AND_CAMPAIGNS = exports.EMPLOYEE_SIZES = exports.US_STATES = exports.COMPANY_METADATA = exports.CONTACT = exports.COMPANY = exports.SEARCH_CONTACTS = exports.CONTACTS = exports.COMPANY_SEARCH = exports.COMPANIES = exports.CONTACTS_IN_SEGMENT = exports.SEGMENT = exports.SEGMENTS = exports.EMAIL_CAMPAIGN_REPORT_BY_CAMPAIGN = exports.EMAIL_CAMPAIGN_REPORT_OVERVIEW = exports.EMAIL_CAMPAIGN_REPORT_STATS = exports.CAMPAIGN_CONTACTS = exports.CAMPAIGN_LOGS = exports.CAMPAIGN_ANALYTICS = exports.CAMPAIGN_STATS = exports.CAMPAIGN = exports.CAMPAIGNS = exports.EMAIL_TEMPLATES = exports.EMAIL_TEMPLATE = exports.NYLAS_CONNECTION = void 0;
|
|
5
5
|
const client_1 = require("@apollo/client");
|
|
6
|
+
exports.SAVED_SEARCH_SPOTS = (0, client_1.gql) `
|
|
7
|
+
query SavedSearchSpots {
|
|
8
|
+
savedSearchSpots {
|
|
9
|
+
id
|
|
10
|
+
createdAt
|
|
11
|
+
updatedAt
|
|
12
|
+
name
|
|
13
|
+
urlParams
|
|
14
|
+
description
|
|
15
|
+
}
|
|
16
|
+
}`;
|
|
6
17
|
exports.METAL_TYPES = (0, client_1.gql) `
|
|
7
18
|
query MetalTypes($ids: [ID], $name: String) {
|
|
8
19
|
metalTypes(ids: $ids, name: $name) {
|
|
@@ -1337,7 +1348,7 @@ query Rfq($id: ID!) {
|
|
|
1337
1348
|
quoteDeadline
|
|
1338
1349
|
deliveryDeadline
|
|
1339
1350
|
products
|
|
1340
|
-
|
|
1351
|
+
fob
|
|
1341
1352
|
paymentTerms
|
|
1342
1353
|
partialShipmentsAllowed
|
|
1343
1354
|
deliveryLocation
|
|
@@ -1485,7 +1496,7 @@ query RfqList($filters: Procurement_RfqFilterInput, $pagination: PaginationInput
|
|
|
1485
1496
|
quoteDeadline
|
|
1486
1497
|
deliveryDeadline
|
|
1487
1498
|
products
|
|
1488
|
-
|
|
1499
|
+
fob
|
|
1489
1500
|
paymentTerms
|
|
1490
1501
|
partialShipmentsAllowed
|
|
1491
1502
|
deliveryLocation
|
|
@@ -2887,7 +2898,7 @@ query Rfqlineitem($id: ID!) {
|
|
|
2887
2898
|
quoteDeadline
|
|
2888
2899
|
deliveryDeadline
|
|
2889
2900
|
products
|
|
2890
|
-
|
|
2901
|
+
fob
|
|
2891
2902
|
paymentTerms
|
|
2892
2903
|
partialShipmentsAllowed
|
|
2893
2904
|
deliveryLocation
|
|
@@ -3035,7 +3046,7 @@ query RfqlineitemList($filters: Procurement_RfqLineItemFilterInput, $pagination:
|
|
|
3035
3046
|
quoteDeadline
|
|
3036
3047
|
deliveryDeadline
|
|
3037
3048
|
products
|
|
3038
|
-
|
|
3049
|
+
fob
|
|
3039
3050
|
paymentTerms
|
|
3040
3051
|
partialShipmentsAllowed
|
|
3041
3052
|
deliveryLocation
|
|
@@ -3246,6 +3257,7 @@ query Suppliers($filters: SupplierSearchFilterInput, $pagination: PaginationInpu
|
|
|
3246
3257
|
website
|
|
3247
3258
|
description
|
|
3248
3259
|
mySupplierId
|
|
3260
|
+
logoUrl
|
|
3249
3261
|
productsSold {
|
|
3250
3262
|
id
|
|
3251
3263
|
metalType
|
|
@@ -3963,6 +3975,7 @@ query Supplier($id: ID!) {
|
|
|
3963
3975
|
website
|
|
3964
3976
|
description
|
|
3965
3977
|
mySupplierId
|
|
3978
|
+
logoUrl
|
|
3966
3979
|
productsSold {
|
|
3967
3980
|
id
|
|
3968
3981
|
metalType
|
|
@@ -5132,6 +5145,7 @@ query CombinedCampaignLogs($campaignId: ID!, $filters: CombinedCampaignFilterInp
|
|
|
5132
5145
|
}
|
|
5133
5146
|
draftSubject
|
|
5134
5147
|
draftBody
|
|
5148
|
+
sentSubject
|
|
5135
5149
|
createdAt
|
|
5136
5150
|
updatedAt
|
|
5137
5151
|
contactName
|
|
@@ -5469,12 +5483,15 @@ query CombinedCampaignContacts($campaignUuid: ID!, $activityType: String, $page:
|
|
|
5469
5483
|
}
|
|
5470
5484
|
draftSubject
|
|
5471
5485
|
draftBody
|
|
5486
|
+
sentSubject
|
|
5472
5487
|
createdAt
|
|
5473
5488
|
updatedAt
|
|
5474
5489
|
contactName
|
|
5475
5490
|
contactEmail
|
|
5476
5491
|
companyName
|
|
5477
5492
|
}
|
|
5493
|
+
populatedSubject
|
|
5494
|
+
populatedBody
|
|
5478
5495
|
}
|
|
5479
5496
|
pagination {
|
|
5480
5497
|
currentPage
|
|
@@ -8624,12 +8641,15 @@ query CampaignContacts($campaignUuid: ID!, $page: Int, $pageSize: Int) {
|
|
|
8624
8641
|
}
|
|
8625
8642
|
draftSubject
|
|
8626
8643
|
draftBody
|
|
8644
|
+
sentSubject
|
|
8627
8645
|
createdAt
|
|
8628
8646
|
updatedAt
|
|
8629
8647
|
contactName
|
|
8630
8648
|
contactEmail
|
|
8631
8649
|
companyName
|
|
8632
8650
|
}
|
|
8651
|
+
populatedSubject
|
|
8652
|
+
populatedBody
|
|
8633
8653
|
}
|
|
8634
8654
|
pagination {
|
|
8635
8655
|
currentPage
|
package/dist/sdk.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export declare class CloudForgeSDK {
|
|
|
24
24
|
cancelInvitation(invitationId: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
25
25
|
changePassword(newPassword: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
26
26
|
clearAllNotifications(): Promise<import("@apollo/client").FetchResult<any>>;
|
|
27
|
+
clearAllSavedSearchSpots(): Promise<import("@apollo/client").FetchResult<any>>;
|
|
27
28
|
completeCampaign(id: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
28
29
|
completeRfq(input: CompleteRfqInput): Promise<import("@apollo/client").FetchResult<any>>;
|
|
29
30
|
createCallCampaign(input: CreateCallCampaignMutationVariables): Promise<import("@apollo/client").FetchResult<any>>;
|
|
@@ -39,6 +40,7 @@ export declare class CloudForgeSDK {
|
|
|
39
40
|
createNotification(input: CreateNotificationMutationVariables): Promise<import("@apollo/client").FetchResult<any>>;
|
|
40
41
|
createRfq(input: RfqInput): Promise<import("@apollo/client").FetchResult<any>>;
|
|
41
42
|
createRfqlineitem(input: RfqLineItemInput): Promise<import("@apollo/client").FetchResult<any>>;
|
|
43
|
+
createSavedSearchSpot(name: string, urlParams: string, description?: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
42
44
|
createSegment(input: CreateSegmentMutationVariables): Promise<import("@apollo/client").FetchResult<any>>;
|
|
43
45
|
createSupplierlist(input: SupplierListInput): Promise<import("@apollo/client").FetchResult<any>>;
|
|
44
46
|
createTask(input: CreateTaskMutationVariables): Promise<import("@apollo/client").FetchResult<any>>;
|
|
@@ -54,6 +56,7 @@ export declare class CloudForgeSDK {
|
|
|
54
56
|
deleteNotification(notificationId: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
55
57
|
deleteRfq(id: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
56
58
|
deleteRfqlineitem(id: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
59
|
+
deleteSavedSearchSpot(id: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
57
60
|
deleteSegment(id: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
58
61
|
deleteSupplierlist(id: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
59
62
|
deleteTask(id: number): Promise<import("@apollo/client").FetchResult<any>>;
|
|
@@ -192,6 +195,7 @@ export declare class CloudForgeSDK {
|
|
|
192
195
|
rfqSuppliers(search?: string): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
193
196
|
rfqlineitem(id: string): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
194
197
|
rfqlineitemList(filters?: Procurement_RfqLineItemFilterInput, pagination?: PaginationInput): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
198
|
+
savedSearchSpots(): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
195
199
|
searchContacts(filters?: ContactFilterInput, pagination?: PaginationInput, sort?: ContactSortInput): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
196
200
|
segment(id: string): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
197
201
|
segments(pagination?: PaginationInput, includeSystemTemplates?: boolean, filters?: SegmentFilterInput): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
package/dist/sdk.js
CHANGED
|
@@ -128,6 +128,11 @@ class CloudForgeSDK {
|
|
|
128
128
|
mutation: mutations_1.CLEAR_ALL_NOTIFICATIONS
|
|
129
129
|
});
|
|
130
130
|
}
|
|
131
|
+
async clearAllSavedSearchSpots() {
|
|
132
|
+
return this.apolloClient.mutate({
|
|
133
|
+
mutation: mutations_1.CLEAR_ALL_SAVED_SEARCH_SPOTS
|
|
134
|
+
});
|
|
135
|
+
}
|
|
131
136
|
async completeCampaign(id) {
|
|
132
137
|
return this.apolloClient.mutate({
|
|
133
138
|
mutation: mutations_1.COMPLETE_CAMPAIGN,
|
|
@@ -218,6 +223,12 @@ class CloudForgeSDK {
|
|
|
218
223
|
variables: { ...input }
|
|
219
224
|
});
|
|
220
225
|
}
|
|
226
|
+
async createSavedSearchSpot(name, urlParams, description) {
|
|
227
|
+
return this.apolloClient.mutate({
|
|
228
|
+
mutation: mutations_1.CREATE_SAVED_SEARCH_SPOT,
|
|
229
|
+
variables: { name, urlParams, description }
|
|
230
|
+
});
|
|
231
|
+
}
|
|
221
232
|
async createSegment(input) {
|
|
222
233
|
return this.apolloClient.mutate({
|
|
223
234
|
mutation: mutations_1.CREATE_SEGMENT,
|
|
@@ -308,6 +319,12 @@ class CloudForgeSDK {
|
|
|
308
319
|
variables: { id }
|
|
309
320
|
});
|
|
310
321
|
}
|
|
322
|
+
async deleteSavedSearchSpot(id) {
|
|
323
|
+
return this.apolloClient.mutate({
|
|
324
|
+
mutation: mutations_1.DELETE_SAVED_SEARCH_SPOT,
|
|
325
|
+
variables: { id }
|
|
326
|
+
});
|
|
327
|
+
}
|
|
311
328
|
async deleteSegment(id) {
|
|
312
329
|
return this.apolloClient.mutate({
|
|
313
330
|
mutation: mutations_1.DELETE_SEGMENT,
|
|
@@ -1124,6 +1141,11 @@ class CloudForgeSDK {
|
|
|
1124
1141
|
variables: { filters, pagination }
|
|
1125
1142
|
});
|
|
1126
1143
|
}
|
|
1144
|
+
async savedSearchSpots() {
|
|
1145
|
+
return this.apolloClient.query({
|
|
1146
|
+
query: queries_1.SAVED_SEARCH_SPOTS
|
|
1147
|
+
});
|
|
1148
|
+
}
|
|
1127
1149
|
async searchContacts(filters, pagination, sort) {
|
|
1128
1150
|
return this.apolloClient.query({
|
|
1129
1151
|
query: queries_1.SEARCH_CONTACTS,
|