cf-service-sdk 0.1.42 → 0.1.43
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 +24 -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 */
|
|
@@ -7652,6 +7660,7 @@ export type CreateCompanyMutation = {
|
|
|
7652
7660
|
phone?: string | null;
|
|
7653
7661
|
email?: string | null;
|
|
7654
7662
|
annualRevenue?: string | null;
|
|
7663
|
+
version: CrmCompanyVersionChoices;
|
|
7655
7664
|
externalIdentifiers?: Array<string | null> | null;
|
|
7656
7665
|
mailLogs?: Array<string | null> | null;
|
|
7657
7666
|
productsSold?: Array<string | null> | null;
|
|
@@ -8635,6 +8644,7 @@ export type CreateMysupplierMutation = {
|
|
|
8635
8644
|
phone?: string | null;
|
|
8636
8645
|
email?: string | null;
|
|
8637
8646
|
annualRevenue?: string | null;
|
|
8647
|
+
version: CrmCompanyVersionChoices;
|
|
8638
8648
|
externalIdentifiers?: Array<string | null> | null;
|
|
8639
8649
|
mailLogs?: Array<string | null> | null;
|
|
8640
8650
|
productsSold?: Array<string | null> | null;
|
|
@@ -9765,6 +9775,7 @@ export type CreateSupplierlistMutation = {
|
|
|
9765
9775
|
phone?: string | null;
|
|
9766
9776
|
email?: string | null;
|
|
9767
9777
|
annualRevenue?: string | null;
|
|
9778
|
+
version: CrmCompanyVersionChoices;
|
|
9768
9779
|
externalIdentifiers?: Array<string | null> | null;
|
|
9769
9780
|
mailLogs?: Array<string | null> | null;
|
|
9770
9781
|
productsSold?: Array<string | null> | null;
|
|
@@ -14250,6 +14261,7 @@ export type UpdateCompanyMutation = {
|
|
|
14250
14261
|
phone?: string | null;
|
|
14251
14262
|
email?: string | null;
|
|
14252
14263
|
annualRevenue?: string | null;
|
|
14264
|
+
version: CrmCompanyVersionChoices;
|
|
14253
14265
|
externalIdentifiers?: Array<string | null> | null;
|
|
14254
14266
|
mailLogs?: Array<string | null> | null;
|
|
14255
14267
|
productsSold?: Array<string | null> | null;
|
|
@@ -15301,6 +15313,7 @@ export type UpdateMysupplierMutation = {
|
|
|
15301
15313
|
phone?: string | null;
|
|
15302
15314
|
email?: string | null;
|
|
15303
15315
|
annualRevenue?: string | null;
|
|
15316
|
+
version: CrmCompanyVersionChoices;
|
|
15304
15317
|
externalIdentifiers?: Array<string | null> | null;
|
|
15305
15318
|
mailLogs?: Array<string | null> | null;
|
|
15306
15319
|
productsSold?: Array<string | null> | null;
|
|
@@ -16388,6 +16401,7 @@ export type UpdateSupplierlistMutation = {
|
|
|
16388
16401
|
phone?: string | null;
|
|
16389
16402
|
email?: string | null;
|
|
16390
16403
|
annualRevenue?: string | null;
|
|
16404
|
+
version: CrmCompanyVersionChoices;
|
|
16391
16405
|
externalIdentifiers?: Array<string | null> | null;
|
|
16392
16406
|
mailLogs?: Array<string | null> | null;
|
|
16393
16407
|
productsSold?: Array<string | null> | null;
|
|
@@ -20316,6 +20330,7 @@ export type CompaniesQuery = {
|
|
|
20316
20330
|
phone?: string | null;
|
|
20317
20331
|
email?: string | null;
|
|
20318
20332
|
annualRevenue?: string | null;
|
|
20333
|
+
version: CrmCompanyVersionChoices;
|
|
20319
20334
|
externalIdentifiers?: Array<string | null> | null;
|
|
20320
20335
|
mailLogs?: Array<string | null> | null;
|
|
20321
20336
|
productsSold?: Array<string | null> | null;
|
|
@@ -21020,6 +21035,7 @@ export type CompanyQuery = {
|
|
|
21020
21035
|
phone?: string | null;
|
|
21021
21036
|
email?: string | null;
|
|
21022
21037
|
annualRevenue?: string | null;
|
|
21038
|
+
version: CrmCompanyVersionChoices;
|
|
21023
21039
|
externalIdentifiers?: Array<string | null> | null;
|
|
21024
21040
|
mailLogs?: Array<string | null> | null;
|
|
21025
21041
|
productsSold?: Array<string | null> | null;
|
|
@@ -22124,6 +22140,7 @@ export type CompanySearchQuery = {
|
|
|
22124
22140
|
phone?: string | null;
|
|
22125
22141
|
email?: string | null;
|
|
22126
22142
|
annualRevenue?: string | null;
|
|
22143
|
+
version: CrmCompanyVersionChoices;
|
|
22127
22144
|
externalIdentifiers?: Array<string | null> | null;
|
|
22128
22145
|
mailLogs?: Array<string | null> | null;
|
|
22129
22146
|
productsSold?: Array<string | null> | null;
|
|
@@ -23649,6 +23666,7 @@ export type MysupplierQuery = {
|
|
|
23649
23666
|
phone?: string | null;
|
|
23650
23667
|
email?: string | null;
|
|
23651
23668
|
annualRevenue?: string | null;
|
|
23669
|
+
version: CrmCompanyVersionChoices;
|
|
23652
23670
|
externalIdentifiers?: Array<string | null> | null;
|
|
23653
23671
|
mailLogs?: Array<string | null> | null;
|
|
23654
23672
|
productsSold?: Array<string | null> | null;
|
|
@@ -24345,6 +24363,7 @@ export type MysupplierListQuery = {
|
|
|
24345
24363
|
phone?: string | null;
|
|
24346
24364
|
email?: string | null;
|
|
24347
24365
|
annualRevenue?: string | null;
|
|
24366
|
+
version: CrmCompanyVersionChoices;
|
|
24348
24367
|
externalIdentifiers?: Array<string | null> | null;
|
|
24349
24368
|
mailLogs?: Array<string | null> | null;
|
|
24350
24369
|
productsSold?: Array<string | null> | null;
|
|
@@ -25275,6 +25294,7 @@ export type RecentHistoryQuery = {
|
|
|
25275
25294
|
phone?: string | null;
|
|
25276
25295
|
email?: string | null;
|
|
25277
25296
|
annualRevenue?: string | null;
|
|
25297
|
+
version: CrmCompanyVersionChoices;
|
|
25278
25298
|
externalIdentifiers?: Array<string | null> | null;
|
|
25279
25299
|
mailLogs?: Array<string | null> | null;
|
|
25280
25300
|
productsSold?: Array<string | null> | null;
|
|
@@ -27184,6 +27204,7 @@ export type SupplierQuery = {
|
|
|
27184
27204
|
phone?: string | null;
|
|
27185
27205
|
email?: string | null;
|
|
27186
27206
|
annualRevenue?: string | null;
|
|
27207
|
+
version: CrmCompanyVersionChoices;
|
|
27187
27208
|
externalIdentifiers?: Array<string | null> | null;
|
|
27188
27209
|
mailLogs?: Array<string | null> | null;
|
|
27189
27210
|
productsSold?: Array<string | null> | null;
|
|
@@ -27990,6 +28011,7 @@ export type SupplierlistQuery = {
|
|
|
27990
28011
|
phone?: string | null;
|
|
27991
28012
|
email?: string | null;
|
|
27992
28013
|
annualRevenue?: string | null;
|
|
28014
|
+
version: CrmCompanyVersionChoices;
|
|
27993
28015
|
externalIdentifiers?: Array<string | null> | null;
|
|
27994
28016
|
mailLogs?: Array<string | null> | null;
|
|
27995
28017
|
productsSold?: Array<string | null> | null;
|
|
@@ -28686,6 +28708,7 @@ export type SupplierlistListQuery = {
|
|
|
28686
28708
|
phone?: string | null;
|
|
28687
28709
|
email?: string | null;
|
|
28688
28710
|
annualRevenue?: string | null;
|
|
28711
|
+
version: CrmCompanyVersionChoices;
|
|
28689
28712
|
externalIdentifiers?: Array<string | null> | null;
|
|
28690
28713
|
mailLogs?: Array<string | null> | null;
|
|
28691
28714
|
productsSold?: Array<string | null> | null;
|
|
@@ -29493,6 +29516,7 @@ export type SuppliersQuery = {
|
|
|
29493
29516
|
phone?: string | null;
|
|
29494
29517
|
email?: string | null;
|
|
29495
29518
|
annualRevenue?: string | null;
|
|
29519
|
+
version: CrmCompanyVersionChoices;
|
|
29496
29520
|
externalIdentifiers?: Array<string | null> | null;
|
|
29497
29521
|
mailLogs?: Array<string | null> | null;
|
|
29498
29522
|
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 {
|