cf-service-sdk 0.1.42 → 0.1.44
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 +30 -0
- package/dist/generated/graphql.js +30 -6
- package/dist/mutations.js +6 -0
- package/dist/queries.js +10 -0
- package/package.json +1 -1
|
@@ -1599,6 +1599,7 @@ export type CompanyObject = {
|
|
|
1599
1599
|
tasks?: Maybe<Array<Maybe<TaskObject>>>;
|
|
1600
1600
|
twitterUrl?: Maybe<Scalars['String']['output']>;
|
|
1601
1601
|
updatedAt: Scalars['DateTime']['output'];
|
|
1602
|
+
version: CrmCompanyVersionChoices;
|
|
1602
1603
|
website?: Maybe<Scalars['String']['output']>;
|
|
1603
1604
|
zipCode?: Maybe<Scalars['String']['output']>;
|
|
1604
1605
|
};
|
|
@@ -2024,6 +2025,13 @@ export type CreateTaskInput = {
|
|
|
2024
2025
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
2025
2026
|
title: Scalars['String']['input'];
|
|
2026
2027
|
};
|
|
2028
|
+
/** An enumeration. */
|
|
2029
|
+
export declare enum CrmCompanyVersionChoices {
|
|
2030
|
+
/** V1 */
|
|
2031
|
+
V1 = "V1",
|
|
2032
|
+
/** V2 */
|
|
2033
|
+
V2 = "V2"
|
|
2034
|
+
}
|
|
2027
2035
|
/** Input filters for current pipeline totals report */
|
|
2028
2036
|
export type CrmCurrentPipelineFilterInput = {
|
|
2029
2037
|
/** Filter by specific user IDs */
|
|
@@ -5238,6 +5246,8 @@ export type SegmentObject = {
|
|
|
5238
5246
|
export type SemanticSearchConfigInput = {
|
|
5239
5247
|
/** BM25 text relevance weight (0.0-1.0, default 0.4) */
|
|
5240
5248
|
bm25Weight?: InputMaybe<Scalars['Float']['input']>;
|
|
5249
|
+
/** When true, run Claude over the raw query to extract structured filters (state, industries, metals, etc.) and rewrite the text with filter terms stripped. When false, skip extraction even if the server default has it on. When omitted, falls through to the USE_CF_SEARCH_FILTER_EXTRACTION env default. */
|
|
5250
|
+
extractFilters?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5241
5251
|
/** k-NN semantic similarity weight (0.0-1.0, default 0.6) */
|
|
5242
5252
|
knnWeight?: InputMaybe<Scalars['Float']['input']>;
|
|
5243
5253
|
/**
|
|
@@ -5247,6 +5257,10 @@ export type SemanticSearchConfigInput = {
|
|
|
5247
5257
|
provider?: InputMaybe<Scalars['String']['input']>;
|
|
5248
5258
|
/** Natural language search query. */
|
|
5249
5259
|
query: Scalars['String']['input'];
|
|
5260
|
+
/** When true, re-rank top semantic hits via Claude (adds ~1-2s latency). When false, skip re-ranking even if the server default has it on. When omitted, falls through to the USE_CF_SEARCH_RERANK env default. */
|
|
5261
|
+
rerank?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5262
|
+
/** When true, expand the raw query via Claude before embedding to improve recall on short/vague queries. When false, skip rewriting even if the server default has it on. When omitted, falls through to the USE_CF_SEARCH_QUERY_REWRITE env default. */
|
|
5263
|
+
rewriteQuery?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5250
5264
|
};
|
|
5251
5265
|
export type SendEmailToContact = {
|
|
5252
5266
|
__typename?: 'SendEmailToContact';
|
|
@@ -7652,6 +7666,7 @@ export type CreateCompanyMutation = {
|
|
|
7652
7666
|
phone?: string | null;
|
|
7653
7667
|
email?: string | null;
|
|
7654
7668
|
annualRevenue?: string | null;
|
|
7669
|
+
version: CrmCompanyVersionChoices;
|
|
7655
7670
|
externalIdentifiers?: Array<string | null> | null;
|
|
7656
7671
|
mailLogs?: Array<string | null> | null;
|
|
7657
7672
|
productsSold?: Array<string | null> | null;
|
|
@@ -8635,6 +8650,7 @@ export type CreateMysupplierMutation = {
|
|
|
8635
8650
|
phone?: string | null;
|
|
8636
8651
|
email?: string | null;
|
|
8637
8652
|
annualRevenue?: string | null;
|
|
8653
|
+
version: CrmCompanyVersionChoices;
|
|
8638
8654
|
externalIdentifiers?: Array<string | null> | null;
|
|
8639
8655
|
mailLogs?: Array<string | null> | null;
|
|
8640
8656
|
productsSold?: Array<string | null> | null;
|
|
@@ -9765,6 +9781,7 @@ export type CreateSupplierlistMutation = {
|
|
|
9765
9781
|
phone?: string | null;
|
|
9766
9782
|
email?: string | null;
|
|
9767
9783
|
annualRevenue?: string | null;
|
|
9784
|
+
version: CrmCompanyVersionChoices;
|
|
9768
9785
|
externalIdentifiers?: Array<string | null> | null;
|
|
9769
9786
|
mailLogs?: Array<string | null> | null;
|
|
9770
9787
|
productsSold?: Array<string | null> | null;
|
|
@@ -14250,6 +14267,7 @@ export type UpdateCompanyMutation = {
|
|
|
14250
14267
|
phone?: string | null;
|
|
14251
14268
|
email?: string | null;
|
|
14252
14269
|
annualRevenue?: string | null;
|
|
14270
|
+
version: CrmCompanyVersionChoices;
|
|
14253
14271
|
externalIdentifiers?: Array<string | null> | null;
|
|
14254
14272
|
mailLogs?: Array<string | null> | null;
|
|
14255
14273
|
productsSold?: Array<string | null> | null;
|
|
@@ -15301,6 +15319,7 @@ export type UpdateMysupplierMutation = {
|
|
|
15301
15319
|
phone?: string | null;
|
|
15302
15320
|
email?: string | null;
|
|
15303
15321
|
annualRevenue?: string | null;
|
|
15322
|
+
version: CrmCompanyVersionChoices;
|
|
15304
15323
|
externalIdentifiers?: Array<string | null> | null;
|
|
15305
15324
|
mailLogs?: Array<string | null> | null;
|
|
15306
15325
|
productsSold?: Array<string | null> | null;
|
|
@@ -16388,6 +16407,7 @@ export type UpdateSupplierlistMutation = {
|
|
|
16388
16407
|
phone?: string | null;
|
|
16389
16408
|
email?: string | null;
|
|
16390
16409
|
annualRevenue?: string | null;
|
|
16410
|
+
version: CrmCompanyVersionChoices;
|
|
16391
16411
|
externalIdentifiers?: Array<string | null> | null;
|
|
16392
16412
|
mailLogs?: Array<string | null> | null;
|
|
16393
16413
|
productsSold?: Array<string | null> | null;
|
|
@@ -20316,6 +20336,7 @@ export type CompaniesQuery = {
|
|
|
20316
20336
|
phone?: string | null;
|
|
20317
20337
|
email?: string | null;
|
|
20318
20338
|
annualRevenue?: string | null;
|
|
20339
|
+
version: CrmCompanyVersionChoices;
|
|
20319
20340
|
externalIdentifiers?: Array<string | null> | null;
|
|
20320
20341
|
mailLogs?: Array<string | null> | null;
|
|
20321
20342
|
productsSold?: Array<string | null> | null;
|
|
@@ -21020,6 +21041,7 @@ export type CompanyQuery = {
|
|
|
21020
21041
|
phone?: string | null;
|
|
21021
21042
|
email?: string | null;
|
|
21022
21043
|
annualRevenue?: string | null;
|
|
21044
|
+
version: CrmCompanyVersionChoices;
|
|
21023
21045
|
externalIdentifiers?: Array<string | null> | null;
|
|
21024
21046
|
mailLogs?: Array<string | null> | null;
|
|
21025
21047
|
productsSold?: Array<string | null> | null;
|
|
@@ -22124,6 +22146,7 @@ export type CompanySearchQuery = {
|
|
|
22124
22146
|
phone?: string | null;
|
|
22125
22147
|
email?: string | null;
|
|
22126
22148
|
annualRevenue?: string | null;
|
|
22149
|
+
version: CrmCompanyVersionChoices;
|
|
22127
22150
|
externalIdentifiers?: Array<string | null> | null;
|
|
22128
22151
|
mailLogs?: Array<string | null> | null;
|
|
22129
22152
|
productsSold?: Array<string | null> | null;
|
|
@@ -23649,6 +23672,7 @@ export type MysupplierQuery = {
|
|
|
23649
23672
|
phone?: string | null;
|
|
23650
23673
|
email?: string | null;
|
|
23651
23674
|
annualRevenue?: string | null;
|
|
23675
|
+
version: CrmCompanyVersionChoices;
|
|
23652
23676
|
externalIdentifiers?: Array<string | null> | null;
|
|
23653
23677
|
mailLogs?: Array<string | null> | null;
|
|
23654
23678
|
productsSold?: Array<string | null> | null;
|
|
@@ -24345,6 +24369,7 @@ export type MysupplierListQuery = {
|
|
|
24345
24369
|
phone?: string | null;
|
|
24346
24370
|
email?: string | null;
|
|
24347
24371
|
annualRevenue?: string | null;
|
|
24372
|
+
version: CrmCompanyVersionChoices;
|
|
24348
24373
|
externalIdentifiers?: Array<string | null> | null;
|
|
24349
24374
|
mailLogs?: Array<string | null> | null;
|
|
24350
24375
|
productsSold?: Array<string | null> | null;
|
|
@@ -25275,6 +25300,7 @@ export type RecentHistoryQuery = {
|
|
|
25275
25300
|
phone?: string | null;
|
|
25276
25301
|
email?: string | null;
|
|
25277
25302
|
annualRevenue?: string | null;
|
|
25303
|
+
version: CrmCompanyVersionChoices;
|
|
25278
25304
|
externalIdentifiers?: Array<string | null> | null;
|
|
25279
25305
|
mailLogs?: Array<string | null> | null;
|
|
25280
25306
|
productsSold?: Array<string | null> | null;
|
|
@@ -27184,6 +27210,7 @@ export type SupplierQuery = {
|
|
|
27184
27210
|
phone?: string | null;
|
|
27185
27211
|
email?: string | null;
|
|
27186
27212
|
annualRevenue?: string | null;
|
|
27213
|
+
version: CrmCompanyVersionChoices;
|
|
27187
27214
|
externalIdentifiers?: Array<string | null> | null;
|
|
27188
27215
|
mailLogs?: Array<string | null> | null;
|
|
27189
27216
|
productsSold?: Array<string | null> | null;
|
|
@@ -27990,6 +28017,7 @@ export type SupplierlistQuery = {
|
|
|
27990
28017
|
phone?: string | null;
|
|
27991
28018
|
email?: string | null;
|
|
27992
28019
|
annualRevenue?: string | null;
|
|
28020
|
+
version: CrmCompanyVersionChoices;
|
|
27993
28021
|
externalIdentifiers?: Array<string | null> | null;
|
|
27994
28022
|
mailLogs?: Array<string | null> | null;
|
|
27995
28023
|
productsSold?: Array<string | null> | null;
|
|
@@ -28686,6 +28714,7 @@ export type SupplierlistListQuery = {
|
|
|
28686
28714
|
phone?: string | null;
|
|
28687
28715
|
email?: string | null;
|
|
28688
28716
|
annualRevenue?: string | null;
|
|
28717
|
+
version: CrmCompanyVersionChoices;
|
|
28689
28718
|
externalIdentifiers?: Array<string | null> | null;
|
|
28690
28719
|
mailLogs?: Array<string | null> | null;
|
|
28691
28720
|
productsSold?: Array<string | null> | null;
|
|
@@ -29493,6 +29522,7 @@ export type SuppliersQuery = {
|
|
|
29493
29522
|
phone?: string | null;
|
|
29494
29523
|
email?: string | null;
|
|
29495
29524
|
annualRevenue?: string | null;
|
|
29525
|
+
version: CrmCompanyVersionChoices;
|
|
29496
29526
|
externalIdentifiers?: Array<string | null> | null;
|
|
29497
29527
|
mailLogs?: Array<string | null> | null;
|
|
29498
29528
|
productsSold?: Array<string | null> | null;
|
|
@@ -33,12 +33,12 @@ 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.
|
|
41
|
-
exports.UserProfileDocument = exports.UsStatesDocument = exports.UnreadNotificationsCountDocument = exports.TasksDocument = exports.TaskDocument = exports.SuppliersDocument = exports.SupplierlistListDocument = exports.SupplierlistDocument = exports.SupplierListCustomContactsDocument = void 0;
|
|
36
|
+
exports.CreateNotificationDocument = exports.CreateMysupplierDocument = exports.CreateEmailTemplateDocument = exports.CreateContactDocument = exports.CreateCompanyNoteDocument = exports.CreateCompanyDocument = exports.CreateCombinedCampaignTemplateDocument = exports.CreateCombinedCampaignDocument = exports.CreateCampaignDocument = exports.CreateCallScriptTemplateDocument = exports.CreateCallCampaignLogDocument = exports.CreateCallCampaignDocument = exports.ComposeAutomatedProspectingEmailDocument = 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.AddContactsToSegmentsDocument = exports.AddContactsToSegmentDocument = exports.AddContactsToCombinedCampaignDocument = exports.AddContactsToCampaignDocument = exports.AddContactToSupplierListDocument = exports.AddContactToAutomatedProspectingDocument = exports.AcceptInvitationDocument = exports.UserBusinessProfileStateChoices = exports.UserAccountInvitationStatusChoices = exports.SortDirection = exports.SaasSubscriptionStatusChoices = exports.SaasPlanPlanTypeChoices = exports.RecentHistorySortField = exports.NotificationTypeEnum = exports.MailLogTypeEnum = exports.DateRangeEnum = exports.CrmCompanyVersionChoices = exports.ContactSortField = exports.CompanySortField = exports.CompanyNoteSortField = exports.CampaignEmailTemplateCampaignTypeChoices = exports.CallCampaignLogOutcomeEnum = exports.AppSalesGoalTypeChoices = void 0;
|
|
37
|
+
exports.RemoveCustomContactFromSupplierListDocument = exports.RemoveContactsFromSegmentDocument = exports.RemoveContactsFromCombinedCampaignDocument = exports.RemoveContactsFromCampaignDocument = exports.RemoveContactFromSupplierListDocument = exports.RemoveContactFromMySupplierDocument = exports.RemoveContactFromAutomatedProspectingDocument = exports.RejectInvitationDocument = exports.ReduceSpamDocument = exports.PreviewCampaignEmailDocument = exports.PauseCombinedCampaignDocument = exports.PauseCampaignDocument = exports.MarkNotificationAsReadDocument = exports.MarkAllNotificationsAsReadDocument = exports.LoginWithMicrosoftDocument = exports.LoginWithGoogleDocument = exports.LoginDocument = exports.LaunchAutomatedProspectingDocument = exports.InviteUserDocument = exports.HideRecordDocument = exports.GenerateNewEmailDocument = exports.GenerateCallCampaignScriptDocument = exports.ForgotPasswordDocument = exports.EmailToneDocument = exports.DisconnectNylasIntegrationDocument = exports.DeleteTaskDocument = exports.DeleteSupplierlistDocument = exports.DeleteSegmentDocument = exports.DeleteSavedSearchSpotDocument = exports.DeleteSalesGoalDocument = exports.DeleteRfqlineitemDocument = exports.DeleteRfqDocument = exports.DeleteNotificationDocument = exports.DeleteMysupplierDocument = exports.DeleteEmailTemplateDocument = exports.DeleteContactDocument = exports.DeleteCompanyNoteDocument = exports.DeleteCompanyDocument = exports.DeleteCombinedCampaignTemplateDocument = exports.DeleteCombinedCampaignDocument = exports.DeleteCampaignDocument = exports.DeleteCallScriptTemplateDocument = exports.DeleteCallCampaignDocument = exports.CreateTaskDocument = exports.CreateSupplierlistDocument = exports.CreateSegmentDocument = exports.CreateSavedSearchSpotDocument = exports.CreateSalesGoalDocument = exports.CreateRfqlineitemDocument = exports.CreateRfqDocument = void 0;
|
|
38
|
+
exports.UpdateRfqlineitemDocument = exports.UpdateRfqDocument = exports.UpdateMysupplierDocument = exports.UpdateEmailTemplateDocument = exports.UpdateEmailScheduleDocument = exports.UpdateEmailReportSettingsDocument = exports.UpdateContactDocument = exports.UpdateCompanyProfileDocument = exports.UpdateCompanyNoteDocument = exports.UpdateCompanyExternalIdentifierDocument = exports.UpdateCompanyDocument = exports.UpdateCombinedCampaignTemplateDocument = exports.UpdateCombinedCampaignLogsDocument = exports.UpdateCombinedCampaignLogDocument = exports.UpdateCombinedCampaignDocument = exports.UpdateCampaignDocument = exports.UpdateCallScriptTemplateDocument = exports.UpdateCallCampaignLogDocument = exports.UpdateCallCampaignDocument = exports.UpdateAutomatedProspectingIndustriesDocument = exports.UpdateAutomatedProspectingCampaignDocument = exports.UnsubscribeFromEmailsDocument = exports.UnskipAutomatedProspectingDocument = exports.UnhideRecordDocument = exports.SubmitFeedbackDocument = exports.StartCombinedCampaignDocument = exports.StartCampaignDocument = exports.SkipAutomatedProspectingDocument = exports.SignupDocument = exports.SetLeadNotInterestedDocument = exports.SendTestEmailReportDocument = exports.SendTestEmailCombinedDocument = exports.SendTestEmailDocument = exports.SendRfqTestEmailDocument = exports.SendRfqDocument = exports.SendManualEmailDocument = exports.SendEmailToEmailThreadDocument = exports.SendEmailToContactDocument = exports.ScheduleRfqDocument = exports.ScheduleCombinedCampaignDocument = exports.ScheduleCampaignDocument = exports.SaveNylasConnectionDocument = exports.SaveContactsToCrmDocument = exports.SaveAutomatedProspectingConfigDocument = exports.ResumeCombinedCampaignDocument = exports.RequestProAccessDocument = exports.RemoveSupplierFromSupplierListDocument = exports.RemoveSegmentFromCampaignDocument = exports.RemoveSegmentFromCallCampaignDocument = exports.RemoveMemberDocument = void 0;
|
|
39
|
+
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 = exports.CombinedCampaignDocument = exports.CampaignsDocument = exports.CampaignStatsDocument = exports.CampaignLogsDocument = exports.CampaignContactsDocument = exports.CampaignAnalyticsDocument = exports.CampaignDocument = exports.CallScriptTemplatesDocument = exports.CallScriptTemplateDocument = exports.CallCampaignsDocument = exports.CallCampaignScriptPreviewDocument = exports.CallCampaignReportDocument = exports.CallCampaignLogsDocument = exports.CallCampaignLogDocument = exports.CallCampaignAnalyticsDocument = exports.CallCampaignDocument = exports.BusinessProfileDocument = exports.AutomatedProspectingStatsDocument = exports.AutomatedProspectingConfigDocument = exports.AutomatedProspectingCampaignsDocument = exports.AutomatedProspectingCampaignDocument = exports.AccountSubscriptionDocument = exports.AccountProfileDocument = exports.AccountMembersDocument = exports.AccountFeatureFlagsDocument = exports.ValidateOtpAndResetPasswordDocument = exports.UploadFileDocument = exports.UpdateUserProfileDocument = exports.UpdateTaskDocument = exports.UpdateSupplierlistDocument = exports.UpdateSegmentDocument = exports.UpdateSalesGoalDocument = void 0;
|
|
40
|
+
exports.SupplierDocument = exports.SuggestedCompanyFiltersDocument = exports.StatesOptionsDocument = exports.SiteVisitReportSummaryDocument = exports.SiteVisitLogDocument = exports.SiteVisitBreakdownByUserDocument = exports.SegmentsDocument = exports.SegmentDocument = exports.SearchContactsDocument = exports.SavedSearchSpotsDocument = exports.SalesGoalsDocument = exports.SalesGoalReportDocument = exports.SalesGoalDocument = exports.RfqlineitemListDocument = 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.NaicsCodesDocument = exports.MysupplierListDocument = exports.MysupplierDocument = exports.MyInvitationsDocument = exports.MetalTypesDocument = exports.MetalGradesDocument = exports.MailLogsDocument = exports.MailLogDocument = exports.IndustryTypesDocument = exports.IndustrySectorsDocument = exports.GoogleReverseGeocodeDocument = exports.GooglePlacesAutocompleteDocument = exports.GooglePlaceDetailsDocument = exports.EmployeeSizesDocument = exports.EmailThreadsByCompanyDocument = exports.EmailThreadDocument = exports.EmailTemplatesDocument = exports.EmailTemplateDocument = exports.EmailCampaignReportStatsDocument = exports.EmailCampaignReportOverviewDocument = exports.EmailCampaignReportByCampaignDocument = exports.DashboardStatsDocument = exports.CurrentPipelineTotalDocument = exports.CurrentAccountDocument = void 0;
|
|
41
|
+
exports.UserProfileDocument = exports.UsStatesDocument = exports.UnreadNotificationsCountDocument = exports.TasksDocument = exports.TaskDocument = exports.SuppliersDocument = exports.SupplierlistListDocument = exports.SupplierlistDocument = exports.SupplierListCustomContactsDocument = exports.SupplierListContactsDocument = void 0;
|
|
42
42
|
exports.useAcceptInvitationMutation = useAcceptInvitationMutation;
|
|
43
43
|
exports.useAddContactToAutomatedProspectingMutation = useAddContactToAutomatedProspectingMutation;
|
|
44
44
|
exports.useAddContactToSupplierListMutation = useAddContactToSupplierListMutation;
|
|
@@ -569,6 +569,14 @@ var ContactSortField;
|
|
|
569
569
|
ContactSortField["Title"] = "TITLE";
|
|
570
570
|
ContactSortField["UpdatedAt"] = "UPDATED_AT";
|
|
571
571
|
})(ContactSortField || (exports.ContactSortField = ContactSortField = {}));
|
|
572
|
+
/** An enumeration. */
|
|
573
|
+
var CrmCompanyVersionChoices;
|
|
574
|
+
(function (CrmCompanyVersionChoices) {
|
|
575
|
+
/** V1 */
|
|
576
|
+
CrmCompanyVersionChoices["V1"] = "V1";
|
|
577
|
+
/** V2 */
|
|
578
|
+
CrmCompanyVersionChoices["V2"] = "V2";
|
|
579
|
+
})(CrmCompanyVersionChoices || (exports.CrmCompanyVersionChoices = CrmCompanyVersionChoices = {}));
|
|
572
580
|
/** Date range options for reports */
|
|
573
581
|
var DateRangeEnum;
|
|
574
582
|
(function (DateRangeEnum) {
|
|
@@ -2774,6 +2782,7 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
|
|
|
2774
2782
|
name
|
|
2775
2783
|
description
|
|
2776
2784
|
}
|
|
2785
|
+
version
|
|
2777
2786
|
owners {
|
|
2778
2787
|
id
|
|
2779
2788
|
user {
|
|
@@ -3750,6 +3759,7 @@ exports.CreateMysupplierDocument = (0, client_1.gql) `
|
|
|
3750
3759
|
name
|
|
3751
3760
|
description
|
|
3752
3761
|
}
|
|
3762
|
+
version
|
|
3753
3763
|
owners {
|
|
3754
3764
|
id
|
|
3755
3765
|
user {
|
|
@@ -4927,6 +4937,7 @@ exports.CreateSupplierlistDocument = (0, client_1.gql) `
|
|
|
4927
4937
|
name
|
|
4928
4938
|
description
|
|
4929
4939
|
}
|
|
4940
|
+
version
|
|
4930
4941
|
owners {
|
|
4931
4942
|
id
|
|
4932
4943
|
user {
|
|
@@ -10739,6 +10750,7 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
|
|
|
10739
10750
|
name
|
|
10740
10751
|
description
|
|
10741
10752
|
}
|
|
10753
|
+
version
|
|
10742
10754
|
owners {
|
|
10743
10755
|
id
|
|
10744
10756
|
user {
|
|
@@ -11851,6 +11863,7 @@ exports.UpdateMysupplierDocument = (0, client_1.gql) `
|
|
|
11851
11863
|
name
|
|
11852
11864
|
description
|
|
11853
11865
|
}
|
|
11866
|
+
version
|
|
11854
11867
|
owners {
|
|
11855
11868
|
id
|
|
11856
11869
|
user {
|
|
@@ -12947,6 +12960,7 @@ exports.UpdateSupplierlistDocument = (0, client_1.gql) `
|
|
|
12947
12960
|
name
|
|
12948
12961
|
description
|
|
12949
12962
|
}
|
|
12963
|
+
version
|
|
12950
12964
|
owners {
|
|
12951
12965
|
id
|
|
12952
12966
|
user {
|
|
@@ -17531,6 +17545,7 @@ exports.CompaniesDocument = (0, client_1.gql) `
|
|
|
17531
17545
|
name
|
|
17532
17546
|
description
|
|
17533
17547
|
}
|
|
17548
|
+
version
|
|
17534
17549
|
owners {
|
|
17535
17550
|
id
|
|
17536
17551
|
user {
|
|
@@ -18203,6 +18218,7 @@ exports.CompanyDocument = (0, client_1.gql) `
|
|
|
18203
18218
|
name
|
|
18204
18219
|
description
|
|
18205
18220
|
}
|
|
18221
|
+
version
|
|
18206
18222
|
owners {
|
|
18207
18223
|
id
|
|
18208
18224
|
user {
|
|
@@ -19377,6 +19393,7 @@ exports.CompanySearchDocument = (0, client_1.gql) `
|
|
|
19377
19393
|
name
|
|
19378
19394
|
description
|
|
19379
19395
|
}
|
|
19396
|
+
version
|
|
19380
19397
|
owners {
|
|
19381
19398
|
id
|
|
19382
19399
|
user {
|
|
@@ -21452,6 +21469,7 @@ exports.MysupplierDocument = (0, client_1.gql) `
|
|
|
21452
21469
|
name
|
|
21453
21470
|
description
|
|
21454
21471
|
}
|
|
21472
|
+
version
|
|
21455
21473
|
owners {
|
|
21456
21474
|
id
|
|
21457
21475
|
user {
|
|
@@ -22113,6 +22131,7 @@ exports.MysupplierListDocument = (0, client_1.gql) `
|
|
|
22113
22131
|
name
|
|
22114
22132
|
description
|
|
22115
22133
|
}
|
|
22134
|
+
version
|
|
22116
22135
|
owners {
|
|
22117
22136
|
id
|
|
22118
22137
|
user {
|
|
@@ -23154,6 +23173,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
|
|
|
23154
23173
|
name
|
|
23155
23174
|
description
|
|
23156
23175
|
}
|
|
23176
|
+
version
|
|
23157
23177
|
owners {
|
|
23158
23178
|
id
|
|
23159
23179
|
user {
|
|
@@ -25422,6 +25442,7 @@ exports.SupplierDocument = (0, client_1.gql) `
|
|
|
25422
25442
|
name
|
|
25423
25443
|
description
|
|
25424
25444
|
}
|
|
25445
|
+
version
|
|
25425
25446
|
owners {
|
|
25426
25447
|
id
|
|
25427
25448
|
user {
|
|
@@ -26238,6 +26259,7 @@ exports.SupplierlistDocument = (0, client_1.gql) `
|
|
|
26238
26259
|
name
|
|
26239
26260
|
description
|
|
26240
26261
|
}
|
|
26262
|
+
version
|
|
26241
26263
|
owners {
|
|
26242
26264
|
id
|
|
26243
26265
|
user {
|
|
@@ -26899,6 +26921,7 @@ exports.SupplierlistListDocument = (0, client_1.gql) `
|
|
|
26899
26921
|
name
|
|
26900
26922
|
description
|
|
26901
26923
|
}
|
|
26924
|
+
version
|
|
26902
26925
|
owners {
|
|
26903
26926
|
id
|
|
26904
26927
|
user {
|
|
@@ -27659,6 +27682,7 @@ exports.SuppliersDocument = (0, client_1.gql) `
|
|
|
27659
27682
|
name
|
|
27660
27683
|
description
|
|
27661
27684
|
}
|
|
27685
|
+
version
|
|
27662
27686
|
owners {
|
|
27663
27687
|
id
|
|
27664
27688
|
user {
|
package/dist/mutations.js
CHANGED
|
@@ -39,6 +39,7 @@ mutation CreateMysupplier($input: MySupplierInput!) {
|
|
|
39
39
|
name
|
|
40
40
|
description
|
|
41
41
|
}
|
|
42
|
+
version
|
|
42
43
|
owners {
|
|
43
44
|
id
|
|
44
45
|
user {
|
|
@@ -677,6 +678,7 @@ mutation UpdateMysupplier($id: ID!, $input: MySupplierInput!) {
|
|
|
677
678
|
name
|
|
678
679
|
description
|
|
679
680
|
}
|
|
681
|
+
version
|
|
680
682
|
owners {
|
|
681
683
|
id
|
|
682
684
|
user {
|
|
@@ -1615,6 +1617,7 @@ mutation CreateSupplierlist($input: SupplierListInput!) {
|
|
|
1615
1617
|
name
|
|
1616
1618
|
description
|
|
1617
1619
|
}
|
|
1620
|
+
version
|
|
1618
1621
|
owners {
|
|
1619
1622
|
id
|
|
1620
1623
|
user {
|
|
@@ -2253,6 +2256,7 @@ mutation UpdateSupplierlist($id: ID!, $input: SupplierListInput!) {
|
|
|
2253
2256
|
name
|
|
2254
2257
|
description
|
|
2255
2258
|
}
|
|
2259
|
+
version
|
|
2256
2260
|
owners {
|
|
2257
2261
|
id
|
|
2258
2262
|
user {
|
|
@@ -5327,6 +5331,7 @@ mutation CreateCompany($input: CompanyInput) {
|
|
|
5327
5331
|
name
|
|
5328
5332
|
description
|
|
5329
5333
|
}
|
|
5334
|
+
version
|
|
5330
5335
|
owners {
|
|
5331
5336
|
id
|
|
5332
5337
|
user {
|
|
@@ -5960,6 +5965,7 @@ mutation UpdateCompany($input: CompanyInput) {
|
|
|
5960
5965
|
name
|
|
5961
5966
|
description
|
|
5962
5967
|
}
|
|
5968
|
+
version
|
|
5963
5969
|
owners {
|
|
5964
5970
|
id
|
|
5965
5971
|
user {
|
package/dist/queries.js
CHANGED
|
@@ -140,6 +140,7 @@ query Mysupplier($id: ID!) {
|
|
|
140
140
|
name
|
|
141
141
|
description
|
|
142
142
|
}
|
|
143
|
+
version
|
|
143
144
|
owners {
|
|
144
145
|
id
|
|
145
146
|
user {
|
|
@@ -772,6 +773,7 @@ query MysupplierList($filters: Procurement_MySupplierFilterInput, $pagination: P
|
|
|
772
773
|
name
|
|
773
774
|
description
|
|
774
775
|
}
|
|
776
|
+
version
|
|
775
777
|
owners {
|
|
776
778
|
id
|
|
777
779
|
user {
|
|
@@ -1722,6 +1724,7 @@ query Supplierlist($id: ID!) {
|
|
|
1722
1724
|
name
|
|
1723
1725
|
description
|
|
1724
1726
|
}
|
|
1727
|
+
version
|
|
1725
1728
|
owners {
|
|
1726
1729
|
id
|
|
1727
1730
|
user {
|
|
@@ -2354,6 +2357,7 @@ query SupplierlistList($filters: Procurement_SupplierListFilterInput, $paginatio
|
|
|
2354
2357
|
name
|
|
2355
2358
|
description
|
|
2356
2359
|
}
|
|
2360
|
+
version
|
|
2357
2361
|
owners {
|
|
2358
2362
|
id
|
|
2359
2363
|
user {
|
|
@@ -3390,6 +3394,7 @@ query Suppliers($filters: SupplierSearchFilterInput, $pagination: PaginationInpu
|
|
|
3390
3394
|
name
|
|
3391
3395
|
description
|
|
3392
3396
|
}
|
|
3397
|
+
version
|
|
3393
3398
|
owners {
|
|
3394
3399
|
id
|
|
3395
3400
|
user {
|
|
@@ -4130,6 +4135,7 @@ query Supplier($id: ID!) {
|
|
|
4130
4135
|
name
|
|
4131
4136
|
description
|
|
4132
4137
|
}
|
|
4138
|
+
version
|
|
4133
4139
|
owners {
|
|
4134
4140
|
id
|
|
4135
4141
|
user {
|
|
@@ -6154,6 +6160,7 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
|
|
|
6154
6160
|
name
|
|
6155
6161
|
description
|
|
6156
6162
|
}
|
|
6163
|
+
version
|
|
6157
6164
|
owners {
|
|
6158
6165
|
id
|
|
6159
6166
|
user {
|
|
@@ -9536,6 +9543,7 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
|
|
|
9536
9543
|
name
|
|
9537
9544
|
description
|
|
9538
9545
|
}
|
|
9546
|
+
version
|
|
9539
9547
|
owners {
|
|
9540
9548
|
id
|
|
9541
9549
|
user {
|
|
@@ -10178,6 +10186,7 @@ query CompanySearch($filters: CompanyFilterInput, $pagination: PaginationInput,
|
|
|
10178
10186
|
name
|
|
10179
10187
|
description
|
|
10180
10188
|
}
|
|
10189
|
+
version
|
|
10181
10190
|
owners {
|
|
10182
10191
|
id
|
|
10183
10192
|
user {
|
|
@@ -10979,6 +10988,7 @@ query Company($id: String) {
|
|
|
10979
10988
|
name
|
|
10980
10989
|
description
|
|
10981
10990
|
}
|
|
10991
|
+
version
|
|
10982
10992
|
owners {
|
|
10983
10993
|
id
|
|
10984
10994
|
user {
|