@rxdrag/rxcms-models 0.3.115 → 0.4.1
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/classes/LangQueryOptions.d.ts +4 -1
- package/dist/classes/PostQueryOptions.d.ts +4 -1
- package/dist/classes/ProductQueryOptions.d.ts +4 -1
- package/dist/classes/SeoBacklinkQueryOptions.d.ts +28 -0
- package/dist/classes/SeoKeywordClusterQueryOptions.d.ts +20 -0
- package/dist/classes/SeoKeywordQueryOptions.d.ts +22 -0
- package/dist/classes/WebsiteQueryOptions.d.ts +8 -1
- package/dist/classes/index.d.ts +3 -0
- package/dist/entries/index.d.ts +3 -0
- package/dist/entries/seoBacklinkEntry.d.ts +3 -0
- package/dist/entries/seoKeywordClusterEntry.d.ts +3 -0
- package/dist/entries/seoKeywordEntry.d.ts +3 -0
- package/dist/fields/LangFields.d.ts +3 -1
- package/dist/fields/PostFields.d.ts +3 -1
- package/dist/fields/ProductFields.d.ts +3 -1
- package/dist/fields/SeoBacklinkFields.d.ts +22 -0
- package/dist/fields/SeoKeywordClusterFields.d.ts +14 -0
- package/dist/fields/SeoKeywordFields.d.ts +18 -0
- package/dist/fields/WebsiteFields.d.ts +6 -1
- package/dist/fields/index.d.ts +3 -0
- package/dist/index.mjs +525 -22
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Lang.d.ts +3 -0
- package/dist/interfaces/LangBoolExp.d.ts +2 -0
- package/dist/interfaces/LangInput.d.ts +2 -0
- package/dist/interfaces/Post.d.ts +3 -0
- package/dist/interfaces/PostBoolExp.d.ts +2 -0
- package/dist/interfaces/PostInput.d.ts +2 -0
- package/dist/interfaces/Product.d.ts +3 -0
- package/dist/interfaces/ProductBoolExp.d.ts +2 -0
- package/dist/interfaces/ProductInput.d.ts +2 -0
- package/dist/interfaces/SeoBacklink.d.ts +26 -0
- package/dist/interfaces/SeoBacklinkBoolExp.d.ts +31 -0
- package/dist/interfaces/SeoBacklinkDistinctExp.d.ts +18 -0
- package/dist/interfaces/SeoBacklinkInput.d.ts +28 -0
- package/dist/interfaces/SeoBacklinkOrderBy.d.ts +19 -0
- package/dist/interfaces/SeoKeyword.d.ts +20 -0
- package/dist/interfaces/SeoKeywordBoolExp.d.ts +26 -0
- package/dist/interfaces/SeoKeywordCluster.d.ts +19 -0
- package/dist/interfaces/SeoKeywordClusterBoolExp.d.ts +21 -0
- package/dist/interfaces/SeoKeywordClusterDistinctExp.d.ts +9 -0
- package/dist/interfaces/SeoKeywordClusterInput.d.ts +19 -0
- package/dist/interfaces/SeoKeywordClusterOrderBy.d.ts +10 -0
- package/dist/interfaces/SeoKeywordDistinctExp.d.ts +16 -0
- package/dist/interfaces/SeoKeywordInput.d.ts +22 -0
- package/dist/interfaces/SeoKeywordOrderBy.d.ts +17 -0
- package/dist/interfaces/Website.d.ts +7 -0
- package/dist/interfaces/WebsiteBoolExp.d.ts +5 -0
- package/dist/interfaces/WebsiteDistinctExp.d.ts +2 -1
- package/dist/interfaces/WebsiteInput.d.ts +5 -0
- package/dist/interfaces/WebsiteOrderBy.d.ts +1 -0
- package/dist/interfaces/index.d.ts +15 -0
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -50,7 +50,9 @@ const aggregateEntities = {
|
|
|
50
50
|
agentThreadsAggregate: "AgentThread",
|
|
51
51
|
tempFilesAggregate: "TempFile",
|
|
52
52
|
memoFoldersAggregate: "AgentMemoFolder",
|
|
53
|
-
memoFilesAggregate: "AgentMemoFile"
|
|
53
|
+
memoFilesAggregate: "AgentMemoFile",
|
|
54
|
+
keywordClustersAggregate: "SeoKeywordCluster",
|
|
55
|
+
backLinksAggregate: "SeoBacklink"
|
|
54
56
|
},
|
|
55
57
|
Lang: {
|
|
56
58
|
webPartsOfMediaFolderAggregate: "MediaFolder",
|
|
@@ -66,13 +68,15 @@ const aggregateEntities = {
|
|
|
66
68
|
baseLangOfAggregate: "Website",
|
|
67
69
|
bulletinsAggregate: "Bulletin",
|
|
68
70
|
tagsAggregate: "Tag",
|
|
69
|
-
tagCategoriesAggregate: "TagCategory"
|
|
71
|
+
tagCategoriesAggregate: "TagCategory",
|
|
72
|
+
keywordClusterAggregate: "SeoKeywordCluster"
|
|
70
73
|
},
|
|
71
74
|
WebsiteType: {
|
|
72
75
|
websitesAggregate: "Website"
|
|
73
76
|
},
|
|
74
77
|
Post: {
|
|
75
|
-
tagsAggregate: "Tag"
|
|
78
|
+
tagsAggregate: "Tag",
|
|
79
|
+
backlinksAggregate: "SeoBacklink"
|
|
76
80
|
},
|
|
77
81
|
Product: {
|
|
78
82
|
tagsAggregate: "Tag",
|
|
@@ -80,7 +84,8 @@ const aggregateEntities = {
|
|
|
80
84
|
attachmentPivotsAggregate: "AttachmentOnProduct",
|
|
81
85
|
faqsAggregate: "FAQ",
|
|
82
86
|
relatedPivotsAggregate: "ProductRelatedPivot",
|
|
83
|
-
relatedByPovitAggregate: "ProductRelatedPivot"
|
|
87
|
+
relatedByPovitAggregate: "ProductRelatedPivot",
|
|
88
|
+
backlinksAggregate: "SeoBacklink"
|
|
84
89
|
},
|
|
85
90
|
Enquiry: {
|
|
86
91
|
attachmentsAggregate: "Media"
|
|
@@ -142,6 +147,9 @@ const aggregateEntities = {
|
|
|
142
147
|
AgentMemoFolder: {
|
|
143
148
|
filesAggregate: "AgentMemoFile",
|
|
144
149
|
childrenAggregate: "AgentMemoFolder"
|
|
150
|
+
},
|
|
151
|
+
SeoKeywordCluster: {
|
|
152
|
+
seoKeywordsAggregate: "SeoKeyword"
|
|
145
153
|
}
|
|
146
154
|
};
|
|
147
155
|
class QueryOptions {
|
|
@@ -413,9 +421,25 @@ const postCategoryToInput = (entity) => {
|
|
|
413
421
|
website: convertHasOneToInput(entity.website)
|
|
414
422
|
};
|
|
415
423
|
};
|
|
424
|
+
const seoBacklinkToInputCascade = (entity) => {
|
|
425
|
+
return {
|
|
426
|
+
...entity,
|
|
427
|
+
post: entity.post ? processHasOneClear({ sync: postToInputCascade(entity.post) }) : void 0,
|
|
428
|
+
product: entity.product ? processHasOneClear({ sync: productToInputCascade(entity.product) }) : void 0,
|
|
429
|
+
website: entity.website ? processHasOneClear({ sync: websiteToInputCascade(entity.website) }) : void 0
|
|
430
|
+
};
|
|
431
|
+
};
|
|
432
|
+
const seoBacklinkToInput = (entity) => {
|
|
433
|
+
return {
|
|
434
|
+
...entity,
|
|
435
|
+
post: convertHasOneToInput(entity.post),
|
|
436
|
+
product: convertHasOneToInput(entity.product),
|
|
437
|
+
website: convertHasOneToInput(entity.website)
|
|
438
|
+
};
|
|
439
|
+
};
|
|
416
440
|
const postToInputCascade = (entity) => {
|
|
417
|
-
var _a;
|
|
418
|
-
const { tagsAggregate, ...rest } = entity;
|
|
441
|
+
var _a, _b;
|
|
442
|
+
const { tagsAggregate, backlinksAggregate, ...rest } = entity;
|
|
419
443
|
return {
|
|
420
444
|
...rest,
|
|
421
445
|
tags: entity.tags ? processHasManyClear({ sync: (_a = entity.tags) == null ? void 0 : _a.map((ent) => tagToInputCascade(ent)) }) : void 0,
|
|
@@ -424,11 +448,12 @@ const postToInputCascade = (entity) => {
|
|
|
424
448
|
lang: entity.lang ? processHasOneClear({ sync: langToInputCascade(entity.lang) }) : void 0,
|
|
425
449
|
meta: entity.meta ? processHasOneClear({ sync: pageMetaToInputCascade(entity.meta) }) : void 0,
|
|
426
450
|
category: entity.category ? processHasOneClear({ sync: postCategoryToInputCascade(entity.category) }) : void 0,
|
|
427
|
-
website: entity.website ? processHasOneClear({ sync: websiteToInputCascade(entity.website) }) : void 0
|
|
451
|
+
website: entity.website ? processHasOneClear({ sync: websiteToInputCascade(entity.website) }) : void 0,
|
|
452
|
+
backlinks: entity.backlinks ? processHasManyClear({ sync: (_b = entity.backlinks) == null ? void 0 : _b.map((ent) => seoBacklinkToInputCascade(ent)) }) : void 0
|
|
428
453
|
};
|
|
429
454
|
};
|
|
430
455
|
const postToInput = (entity) => {
|
|
431
|
-
const { tagsAggregate, ...rest } = entity;
|
|
456
|
+
const { tagsAggregate, backlinksAggregate, ...rest } = entity;
|
|
432
457
|
return {
|
|
433
458
|
...rest,
|
|
434
459
|
tags: convertHasManyToInput(entity.tags),
|
|
@@ -437,7 +462,8 @@ const postToInput = (entity) => {
|
|
|
437
462
|
lang: convertHasOneToInput(entity.lang),
|
|
438
463
|
meta: convertHasOneToInput(entity.meta),
|
|
439
464
|
category: convertHasOneToInput(entity.category),
|
|
440
|
-
website: convertHasOneToInput(entity.website)
|
|
465
|
+
website: convertHasOneToInput(entity.website),
|
|
466
|
+
backlinks: convertHasManyToInput(entity.backlinks)
|
|
441
467
|
};
|
|
442
468
|
};
|
|
443
469
|
const tagCategoryToInputCascade = (entity) => {
|
|
@@ -539,8 +565,8 @@ const productRelatedPivotToInput = (entity) => {
|
|
|
539
565
|
};
|
|
540
566
|
};
|
|
541
567
|
const productToInputCascade = (entity) => {
|
|
542
|
-
var _a, _b, _c, _d, _e, _f;
|
|
543
|
-
const { tagsAggregate, mediaPivotsAggregate, attachmentPivotsAggregate, faqsAggregate, relatedPivotsAggregate, relatedByPovitAggregate, ...rest } = entity;
|
|
568
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
569
|
+
const { tagsAggregate, mediaPivotsAggregate, attachmentPivotsAggregate, faqsAggregate, relatedPivotsAggregate, relatedByPovitAggregate, backlinksAggregate, ...rest } = entity;
|
|
544
570
|
return {
|
|
545
571
|
...rest,
|
|
546
572
|
category: entity.category ? processHasOneClear({ sync: productCategoryToInputCascade(entity.category) }) : void 0,
|
|
@@ -553,11 +579,12 @@ const productToInputCascade = (entity) => {
|
|
|
553
579
|
relatedPivots: entity.relatedPivots ? processHasManyClear({ sync: (_e = entity.relatedPivots) == null ? void 0 : _e.map((ent) => productRelatedPivotToInputCascade(ent)) }) : void 0,
|
|
554
580
|
creator: entity.creator ? processHasOneClear({ sync: userToInputCascade(entity.creator) }) : void 0,
|
|
555
581
|
website: entity.website ? processHasOneClear({ sync: websiteToInputCascade(entity.website) }) : void 0,
|
|
556
|
-
relatedByPovit: entity.relatedByPovit ? processHasManyClear({ sync: (_f = entity.relatedByPovit) == null ? void 0 : _f.map((ent) => productRelatedPivotToInputCascade(ent)) }) : void 0
|
|
582
|
+
relatedByPovit: entity.relatedByPovit ? processHasManyClear({ sync: (_f = entity.relatedByPovit) == null ? void 0 : _f.map((ent) => productRelatedPivotToInputCascade(ent)) }) : void 0,
|
|
583
|
+
backlinks: entity.backlinks ? processHasManyClear({ sync: (_g = entity.backlinks) == null ? void 0 : _g.map((ent) => seoBacklinkToInputCascade(ent)) }) : void 0
|
|
557
584
|
};
|
|
558
585
|
};
|
|
559
586
|
const productToInput = (entity) => {
|
|
560
|
-
const { tagsAggregate, mediaPivotsAggregate, attachmentPivotsAggregate, faqsAggregate, relatedPivotsAggregate, relatedByPovitAggregate, ...rest } = entity;
|
|
587
|
+
const { tagsAggregate, mediaPivotsAggregate, attachmentPivotsAggregate, faqsAggregate, relatedPivotsAggregate, relatedByPovitAggregate, backlinksAggregate, ...rest } = entity;
|
|
561
588
|
return {
|
|
562
589
|
...rest,
|
|
563
590
|
category: convertHasOneToInput(entity.category),
|
|
@@ -570,7 +597,8 @@ const productToInput = (entity) => {
|
|
|
570
597
|
relatedPivots: convertHasManyToInput(entity.relatedPivots),
|
|
571
598
|
creator: convertHasOneToInput(entity.creator),
|
|
572
599
|
website: convertHasOneToInput(entity.website),
|
|
573
|
-
relatedByPovit: convertHasManyToInput(entity.relatedByPovit)
|
|
600
|
+
relatedByPovit: convertHasManyToInput(entity.relatedByPovit),
|
|
601
|
+
backlinks: convertHasManyToInput(entity.backlinks)
|
|
574
602
|
};
|
|
575
603
|
};
|
|
576
604
|
const spamFilterRuleToInputCascade = (entity) => {
|
|
@@ -933,9 +961,40 @@ const agentMemoFolderToInput = (entity) => {
|
|
|
933
961
|
website: convertHasOneToInput(entity.website)
|
|
934
962
|
};
|
|
935
963
|
};
|
|
964
|
+
const seoKeywordToInputCascade = (entity) => {
|
|
965
|
+
return {
|
|
966
|
+
...entity,
|
|
967
|
+
cluster: entity.cluster ? processHasOneClear({ sync: seoKeywordClusterToInputCascade(entity.cluster) }) : void 0
|
|
968
|
+
};
|
|
969
|
+
};
|
|
970
|
+
const seoKeywordToInput = (entity) => {
|
|
971
|
+
return {
|
|
972
|
+
...entity,
|
|
973
|
+
cluster: convertHasOneToInput(entity.cluster)
|
|
974
|
+
};
|
|
975
|
+
};
|
|
976
|
+
const seoKeywordClusterToInputCascade = (entity) => {
|
|
977
|
+
var _a;
|
|
978
|
+
const { seoKeywordsAggregate, ...rest } = entity;
|
|
979
|
+
return {
|
|
980
|
+
...rest,
|
|
981
|
+
seoKeywords: entity.seoKeywords ? processHasManyClear({ sync: (_a = entity.seoKeywords) == null ? void 0 : _a.map((ent) => seoKeywordToInputCascade(ent)) }) : void 0,
|
|
982
|
+
lang: entity.lang ? processHasOneClear({ sync: langToInputCascade(entity.lang) }) : void 0,
|
|
983
|
+
website: entity.website ? processHasOneClear({ sync: websiteToInputCascade(entity.website) }) : void 0
|
|
984
|
+
};
|
|
985
|
+
};
|
|
986
|
+
const seoKeywordClusterToInput = (entity) => {
|
|
987
|
+
const { seoKeywordsAggregate, ...rest } = entity;
|
|
988
|
+
return {
|
|
989
|
+
...rest,
|
|
990
|
+
seoKeywords: convertHasManyToInput(entity.seoKeywords),
|
|
991
|
+
lang: convertHasOneToInput(entity.lang),
|
|
992
|
+
website: convertHasOneToInput(entity.website)
|
|
993
|
+
};
|
|
994
|
+
};
|
|
936
995
|
const websiteToInputCascade = (entity) => {
|
|
937
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u;
|
|
938
|
-
const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, changelogsAggregate, searchIndexesAggregate, bulletinsAggregate, snapshotsAggregate, userOperationsAggregate, tagsAggregate, agentThreadsAggregate, tempFilesAggregate, memoFoldersAggregate, memoFilesAggregate, ...rest } = entity;
|
|
996
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w;
|
|
997
|
+
const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, changelogsAggregate, searchIndexesAggregate, bulletinsAggregate, snapshotsAggregate, userOperationsAggregate, tagsAggregate, agentThreadsAggregate, tempFilesAggregate, memoFoldersAggregate, memoFilesAggregate, keywordClustersAggregate, backLinksAggregate, ...rest } = entity;
|
|
939
998
|
return {
|
|
940
999
|
...rest,
|
|
941
1000
|
websiteType: entity.websiteType ? processHasOneClear({ sync: websiteTypeToInputCascade(entity.websiteType) }) : void 0,
|
|
@@ -965,11 +1024,13 @@ const websiteToInputCascade = (entity) => {
|
|
|
965
1024
|
tempFiles: entity.tempFiles ? processHasManyClear({ sync: (_s = entity.tempFiles) == null ? void 0 : _s.map((ent) => tempFileToInputCascade(ent)) }) : void 0,
|
|
966
1025
|
memoFolders: entity.memoFolders ? processHasManyClear({ sync: (_t = entity.memoFolders) == null ? void 0 : _t.map((ent) => agentMemoFolderToInputCascade(ent)) }) : void 0,
|
|
967
1026
|
memoFiles: entity.memoFiles ? processHasManyClear({ sync: (_u = entity.memoFiles) == null ? void 0 : _u.map((ent) => agentMemoFileToInputCascade(ent)) }) : void 0,
|
|
1027
|
+
keywordClusters: entity.keywordClusters ? processHasManyClear({ sync: (_v = entity.keywordClusters) == null ? void 0 : _v.map((ent) => seoKeywordClusterToInputCascade(ent)) }) : void 0,
|
|
1028
|
+
backLinks: entity.backLinks ? processHasManyClear({ sync: (_w = entity.backLinks) == null ? void 0 : _w.map((ent) => seoBacklinkToInputCascade(ent)) }) : void 0,
|
|
968
1029
|
mockBranch: entity.mockBranch ? processHasOneClear({ sync: themeBranchToInputCascade(entity.mockBranch) }) : void 0
|
|
969
1030
|
};
|
|
970
1031
|
};
|
|
971
1032
|
const websiteToInput = (entity) => {
|
|
972
|
-
const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, changelogsAggregate, searchIndexesAggregate, bulletinsAggregate, snapshotsAggregate, userOperationsAggregate, tagsAggregate, agentThreadsAggregate, tempFilesAggregate, memoFoldersAggregate, memoFilesAggregate, ...rest } = entity;
|
|
1033
|
+
const { usersAggregate, partsOfMediaFolderAggregate, partsOfEnquiryAggregate, partsOfProductAggregate, partsOfPostAggregate, partsOfPostCategoryAggregate, partsOfCustomerAggregate, partsOfProductCategoryAggregate, partsOfSpamFilterRuleAggregate, partsOfMediaAggregate, langsAggregate, changelogsAggregate, searchIndexesAggregate, bulletinsAggregate, snapshotsAggregate, userOperationsAggregate, tagsAggregate, agentThreadsAggregate, tempFilesAggregate, memoFoldersAggregate, memoFilesAggregate, keywordClustersAggregate, backLinksAggregate, ...rest } = entity;
|
|
973
1034
|
return {
|
|
974
1035
|
...rest,
|
|
975
1036
|
websiteType: convertHasOneToInput(entity.websiteType),
|
|
@@ -999,6 +1060,8 @@ const websiteToInput = (entity) => {
|
|
|
999
1060
|
tempFiles: convertHasManyToInput(entity.tempFiles),
|
|
1000
1061
|
memoFolders: convertHasManyToInput(entity.memoFolders),
|
|
1001
1062
|
memoFiles: convertHasManyToInput(entity.memoFiles),
|
|
1063
|
+
keywordClusters: convertHasManyToInput(entity.keywordClusters),
|
|
1064
|
+
backLinks: convertHasManyToInput(entity.backLinks),
|
|
1002
1065
|
mockBranch: convertHasOneToInput(entity.mockBranch)
|
|
1003
1066
|
};
|
|
1004
1067
|
};
|
|
@@ -1043,8 +1106,8 @@ const enquiryToInput = (entity) => {
|
|
|
1043
1106
|
};
|
|
1044
1107
|
};
|
|
1045
1108
|
const langToInputCascade = (entity) => {
|
|
1046
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n;
|
|
1047
|
-
const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, websitesAggregate, baseLangOfAggregate, bulletinsAggregate, tagsAggregate, tagCategoriesAggregate, ...rest } = entity;
|
|
1109
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o;
|
|
1110
|
+
const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, websitesAggregate, baseLangOfAggregate, bulletinsAggregate, tagsAggregate, tagCategoriesAggregate, keywordClusterAggregate, ...rest } = entity;
|
|
1048
1111
|
return {
|
|
1049
1112
|
...rest,
|
|
1050
1113
|
webPartsOfMediaFolder: entity.webPartsOfMediaFolder ? processHasManyClear({ sync: (_a = entity.webPartsOfMediaFolder) == null ? void 0 : _a.map((ent) => mediaFolderToInputCascade(ent)) }) : void 0,
|
|
@@ -1060,11 +1123,12 @@ const langToInputCascade = (entity) => {
|
|
|
1060
1123
|
baseLangOf: entity.baseLangOf ? processHasManyClear({ sync: (_k = entity.baseLangOf) == null ? void 0 : _k.map((ent) => websiteToInputCascade(ent)) }) : void 0,
|
|
1061
1124
|
bulletins: entity.bulletins ? processHasManyClear({ sync: (_l = entity.bulletins) == null ? void 0 : _l.map((ent) => bulletinToInputCascade(ent)) }) : void 0,
|
|
1062
1125
|
tags: entity.tags ? processHasManyClear({ sync: (_m = entity.tags) == null ? void 0 : _m.map((ent) => tagToInputCascade(ent)) }) : void 0,
|
|
1063
|
-
tagCategories: entity.tagCategories ? processHasManyClear({ sync: (_n = entity.tagCategories) == null ? void 0 : _n.map((ent) => tagCategoryToInputCascade(ent)) }) : void 0
|
|
1126
|
+
tagCategories: entity.tagCategories ? processHasManyClear({ sync: (_n = entity.tagCategories) == null ? void 0 : _n.map((ent) => tagCategoryToInputCascade(ent)) }) : void 0,
|
|
1127
|
+
keywordCluster: entity.keywordCluster ? processHasManyClear({ sync: (_o = entity.keywordCluster) == null ? void 0 : _o.map((ent) => seoKeywordClusterToInputCascade(ent)) }) : void 0
|
|
1064
1128
|
};
|
|
1065
1129
|
};
|
|
1066
1130
|
const langToInput = (entity) => {
|
|
1067
|
-
const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, websitesAggregate, baseLangOfAggregate, bulletinsAggregate, tagsAggregate, tagCategoriesAggregate, ...rest } = entity;
|
|
1131
|
+
const { webPartsOfMediaFolderAggregate, webPartsOfEnquiryAggregate, webPartsOfProductAggregate, webPartsOfPostAggregate, webPartsOfPostCategoryAggregate, webPartsOfCustomerAggregate, webPartsOfProductCategoryAggregate, webPartsOfSpamFilterRuleAggregate, webPartsOfMediaAggregate, websitesAggregate, baseLangOfAggregate, bulletinsAggregate, tagsAggregate, tagCategoriesAggregate, keywordClusterAggregate, ...rest } = entity;
|
|
1068
1132
|
return {
|
|
1069
1133
|
...rest,
|
|
1070
1134
|
webPartsOfMediaFolder: convertHasManyToInput(entity.webPartsOfMediaFolder),
|
|
@@ -1080,7 +1144,8 @@ const langToInput = (entity) => {
|
|
|
1080
1144
|
baseLangOf: convertHasManyToInput(entity.baseLangOf),
|
|
1081
1145
|
bulletins: convertHasManyToInput(entity.bulletins),
|
|
1082
1146
|
tags: convertHasManyToInput(entity.tags),
|
|
1083
|
-
tagCategories: convertHasManyToInput(entity.tagCategories)
|
|
1147
|
+
tagCategories: convertHasManyToInput(entity.tagCategories),
|
|
1148
|
+
keywordCluster: convertHasManyToInput(entity.keywordCluster)
|
|
1084
1149
|
};
|
|
1085
1150
|
};
|
|
1086
1151
|
const mediaFolderToInputCascade = (entity) => {
|
|
@@ -1359,6 +1424,7 @@ var WebsiteDistinctEnum = /* @__PURE__ */ ((WebsiteDistinctEnum2) => {
|
|
|
1359
1424
|
WebsiteDistinctEnum2["updatedBy"] = "updatedBy";
|
|
1360
1425
|
WebsiteDistinctEnum2["description"] = "description";
|
|
1361
1426
|
WebsiteDistinctEnum2["title"] = "title";
|
|
1427
|
+
WebsiteDistinctEnum2["studioVersion"] = "studioVersion";
|
|
1362
1428
|
return WebsiteDistinctEnum2;
|
|
1363
1429
|
})(WebsiteDistinctEnum || {});
|
|
1364
1430
|
const LangEntityName = "Lang";
|
|
@@ -2128,6 +2194,55 @@ var AgentMemoFolderDistinctEnum = /* @__PURE__ */ ((AgentMemoFolderDistinctEnum2
|
|
|
2128
2194
|
AgentMemoFolderDistinctEnum2["updatedAt"] = "updatedAt";
|
|
2129
2195
|
return AgentMemoFolderDistinctEnum2;
|
|
2130
2196
|
})(AgentMemoFolderDistinctEnum || {});
|
|
2197
|
+
const SeoKeywordClusterEntityName = "SeoKeywordCluster";
|
|
2198
|
+
const SeoKeywordClusterEntityLabel = "";
|
|
2199
|
+
var SeoKeywordClusterDistinctEnum = /* @__PURE__ */ ((SeoKeywordClusterDistinctEnum2) => {
|
|
2200
|
+
SeoKeywordClusterDistinctEnum2["id"] = "id";
|
|
2201
|
+
SeoKeywordClusterDistinctEnum2["name"] = "name";
|
|
2202
|
+
SeoKeywordClusterDistinctEnum2["summary"] = "summary";
|
|
2203
|
+
SeoKeywordClusterDistinctEnum2["status"] = "status";
|
|
2204
|
+
SeoKeywordClusterDistinctEnum2["createdAt"] = "createdAt";
|
|
2205
|
+
SeoKeywordClusterDistinctEnum2["updatedAt"] = "updatedAt";
|
|
2206
|
+
return SeoKeywordClusterDistinctEnum2;
|
|
2207
|
+
})(SeoKeywordClusterDistinctEnum || {});
|
|
2208
|
+
const SeoKeywordEntityName = "SeoKeyword";
|
|
2209
|
+
const SeoKeywordEntityLabel = "";
|
|
2210
|
+
var SeoKeywordDistinctEnum = /* @__PURE__ */ ((SeoKeywordDistinctEnum2) => {
|
|
2211
|
+
SeoKeywordDistinctEnum2["id"] = "id";
|
|
2212
|
+
SeoKeywordDistinctEnum2["keyword"] = "keyword";
|
|
2213
|
+
SeoKeywordDistinctEnum2["searchIntent"] = "searchIntent";
|
|
2214
|
+
SeoKeywordDistinctEnum2["volume"] = "volume";
|
|
2215
|
+
SeoKeywordDistinctEnum2["difficulty"] = "difficulty";
|
|
2216
|
+
SeoKeywordDistinctEnum2["priority"] = "priority";
|
|
2217
|
+
SeoKeywordDistinctEnum2["status"] = "status";
|
|
2218
|
+
SeoKeywordDistinctEnum2["createdAt"] = "createdAt";
|
|
2219
|
+
SeoKeywordDistinctEnum2["updatedAt"] = "updatedAt";
|
|
2220
|
+
SeoKeywordDistinctEnum2["isPrimary"] = "isPrimary";
|
|
2221
|
+
SeoKeywordDistinctEnum2["url"] = "url";
|
|
2222
|
+
SeoKeywordDistinctEnum2["funnelStage"] = "funnelStage";
|
|
2223
|
+
SeoKeywordDistinctEnum2["keywordType"] = "keywordType";
|
|
2224
|
+
return SeoKeywordDistinctEnum2;
|
|
2225
|
+
})(SeoKeywordDistinctEnum || {});
|
|
2226
|
+
const SeoBacklinkEntityName = "SeoBacklink";
|
|
2227
|
+
const SeoBacklinkEntityLabel = "";
|
|
2228
|
+
var SeoBacklinkDistinctEnum = /* @__PURE__ */ ((SeoBacklinkDistinctEnum2) => {
|
|
2229
|
+
SeoBacklinkDistinctEnum2["id"] = "id";
|
|
2230
|
+
SeoBacklinkDistinctEnum2["url"] = "url";
|
|
2231
|
+
SeoBacklinkDistinctEnum2["anchorText"] = "anchorText";
|
|
2232
|
+
SeoBacklinkDistinctEnum2["sourceDomain"] = "sourceDomain";
|
|
2233
|
+
SeoBacklinkDistinctEnum2["targetPath"] = "targetPath";
|
|
2234
|
+
SeoBacklinkDistinctEnum2["status"] = "status";
|
|
2235
|
+
SeoBacklinkDistinctEnum2["rel"] = "rel";
|
|
2236
|
+
SeoBacklinkDistinctEnum2["domainAuthority"] = "domainAuthority";
|
|
2237
|
+
SeoBacklinkDistinctEnum2["firstSeenAt"] = "firstSeenAt";
|
|
2238
|
+
SeoBacklinkDistinctEnum2["lastCheckedAt"] = "lastCheckedAt";
|
|
2239
|
+
SeoBacklinkDistinctEnum2["createdAt"] = "createdAt";
|
|
2240
|
+
SeoBacklinkDistinctEnum2["updatedAt"] = "updatedAt";
|
|
2241
|
+
SeoBacklinkDistinctEnum2["contactEmail"] = "contactEmail";
|
|
2242
|
+
SeoBacklinkDistinctEnum2["contactedAt"] = "contactedAt";
|
|
2243
|
+
SeoBacklinkDistinctEnum2["notes"] = "notes";
|
|
2244
|
+
return SeoBacklinkDistinctEnum2;
|
|
2245
|
+
})(SeoBacklinkDistinctEnum || {});
|
|
2131
2246
|
class RoleVariableQueryOptions extends QueryOptions {
|
|
2132
2247
|
constructor(fields, queryArgs) {
|
|
2133
2248
|
super(RoleVariableEntityName, fields, queryArgs);
|
|
@@ -2562,6 +2677,95 @@ class PostCategoryQueryOptions extends QueryOptions {
|
|
|
2562
2677
|
return this;
|
|
2563
2678
|
}
|
|
2564
2679
|
}
|
|
2680
|
+
class SeoBacklinkQueryOptions extends QueryOptions {
|
|
2681
|
+
constructor(fields, queryArgs) {
|
|
2682
|
+
super(SeoBacklinkEntityName, fields, queryArgs);
|
|
2683
|
+
}
|
|
2684
|
+
id() {
|
|
2685
|
+
this.addField("id");
|
|
2686
|
+
return this;
|
|
2687
|
+
}
|
|
2688
|
+
url() {
|
|
2689
|
+
this.addField("url");
|
|
2690
|
+
return this;
|
|
2691
|
+
}
|
|
2692
|
+
anchorText() {
|
|
2693
|
+
this.addField("anchorText");
|
|
2694
|
+
return this;
|
|
2695
|
+
}
|
|
2696
|
+
sourceDomain() {
|
|
2697
|
+
this.addField("sourceDomain");
|
|
2698
|
+
return this;
|
|
2699
|
+
}
|
|
2700
|
+
targetPath() {
|
|
2701
|
+
this.addField("targetPath");
|
|
2702
|
+
return this;
|
|
2703
|
+
}
|
|
2704
|
+
status() {
|
|
2705
|
+
this.addField("status");
|
|
2706
|
+
return this;
|
|
2707
|
+
}
|
|
2708
|
+
rel() {
|
|
2709
|
+
this.addField("rel");
|
|
2710
|
+
return this;
|
|
2711
|
+
}
|
|
2712
|
+
domainAuthority() {
|
|
2713
|
+
this.addField("domainAuthority");
|
|
2714
|
+
return this;
|
|
2715
|
+
}
|
|
2716
|
+
firstSeenAt() {
|
|
2717
|
+
this.addField("firstSeenAt");
|
|
2718
|
+
return this;
|
|
2719
|
+
}
|
|
2720
|
+
lastCheckedAt() {
|
|
2721
|
+
this.addField("lastCheckedAt");
|
|
2722
|
+
return this;
|
|
2723
|
+
}
|
|
2724
|
+
createdAt() {
|
|
2725
|
+
this.addField("createdAt");
|
|
2726
|
+
return this;
|
|
2727
|
+
}
|
|
2728
|
+
updatedAt() {
|
|
2729
|
+
this.addField("updatedAt");
|
|
2730
|
+
return this;
|
|
2731
|
+
}
|
|
2732
|
+
contactEmail() {
|
|
2733
|
+
this.addField("contactEmail");
|
|
2734
|
+
return this;
|
|
2735
|
+
}
|
|
2736
|
+
contactedAt() {
|
|
2737
|
+
this.addField("contactedAt");
|
|
2738
|
+
return this;
|
|
2739
|
+
}
|
|
2740
|
+
notes() {
|
|
2741
|
+
this.addField("notes");
|
|
2742
|
+
return this;
|
|
2743
|
+
}
|
|
2744
|
+
post(options) {
|
|
2745
|
+
if (Array.isArray(options)) {
|
|
2746
|
+
this._associations["post"] = new PostQueryOptions(options);
|
|
2747
|
+
} else {
|
|
2748
|
+
this._associations["post"] = options || new PostQueryOptions(["id"]);
|
|
2749
|
+
}
|
|
2750
|
+
return this;
|
|
2751
|
+
}
|
|
2752
|
+
product(options) {
|
|
2753
|
+
if (Array.isArray(options)) {
|
|
2754
|
+
this._associations["product"] = new ProductQueryOptions(options);
|
|
2755
|
+
} else {
|
|
2756
|
+
this._associations["product"] = options || new ProductQueryOptions(["id"]);
|
|
2757
|
+
}
|
|
2758
|
+
return this;
|
|
2759
|
+
}
|
|
2760
|
+
website(options) {
|
|
2761
|
+
if (Array.isArray(options)) {
|
|
2762
|
+
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
2763
|
+
} else {
|
|
2764
|
+
this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
|
|
2765
|
+
}
|
|
2766
|
+
return this;
|
|
2767
|
+
}
|
|
2768
|
+
}
|
|
2565
2769
|
class PostQueryOptions extends QueryOptions {
|
|
2566
2770
|
constructor(fields, queryArgs) {
|
|
2567
2771
|
super(PostEntityName, fields, queryArgs);
|
|
@@ -2689,6 +2893,18 @@ class PostQueryOptions extends QueryOptions {
|
|
|
2689
2893
|
}
|
|
2690
2894
|
return this;
|
|
2691
2895
|
}
|
|
2896
|
+
backlinks(options) {
|
|
2897
|
+
if (Array.isArray(options)) {
|
|
2898
|
+
this._associations["backlinks"] = new SeoBacklinkQueryOptions(options);
|
|
2899
|
+
} else {
|
|
2900
|
+
this._associations["backlinks"] = options || new SeoBacklinkQueryOptions(["id"]);
|
|
2901
|
+
}
|
|
2902
|
+
return this;
|
|
2903
|
+
}
|
|
2904
|
+
backlinksAggregate(aggregate) {
|
|
2905
|
+
this._aggregates["backlinksAggregate"] = aggregate;
|
|
2906
|
+
return this;
|
|
2907
|
+
}
|
|
2692
2908
|
}
|
|
2693
2909
|
class TagCategoryQueryOptions extends QueryOptions {
|
|
2694
2910
|
constructor(fields, queryArgs) {
|
|
@@ -3165,6 +3381,18 @@ class ProductQueryOptions extends QueryOptions {
|
|
|
3165
3381
|
this._aggregates["relatedByPovitAggregate"] = aggregate;
|
|
3166
3382
|
return this;
|
|
3167
3383
|
}
|
|
3384
|
+
backlinks(options) {
|
|
3385
|
+
if (Array.isArray(options)) {
|
|
3386
|
+
this._associations["backlinks"] = new SeoBacklinkQueryOptions(options);
|
|
3387
|
+
} else {
|
|
3388
|
+
this._associations["backlinks"] = options || new SeoBacklinkQueryOptions(["id"]);
|
|
3389
|
+
}
|
|
3390
|
+
return this;
|
|
3391
|
+
}
|
|
3392
|
+
backlinksAggregate(aggregate) {
|
|
3393
|
+
this._aggregates["backlinksAggregate"] = aggregate;
|
|
3394
|
+
return this;
|
|
3395
|
+
}
|
|
3168
3396
|
}
|
|
3169
3397
|
class SpamFilterRuleQueryOptions extends QueryOptions {
|
|
3170
3398
|
constructor(fields, queryArgs) {
|
|
@@ -4344,6 +4572,128 @@ class AgentMemoFolderQueryOptions extends QueryOptions {
|
|
|
4344
4572
|
return this;
|
|
4345
4573
|
}
|
|
4346
4574
|
}
|
|
4575
|
+
class SeoKeywordQueryOptions extends QueryOptions {
|
|
4576
|
+
constructor(fields, queryArgs) {
|
|
4577
|
+
super(SeoKeywordEntityName, fields, queryArgs);
|
|
4578
|
+
}
|
|
4579
|
+
id() {
|
|
4580
|
+
this.addField("id");
|
|
4581
|
+
return this;
|
|
4582
|
+
}
|
|
4583
|
+
keyword() {
|
|
4584
|
+
this.addField("keyword");
|
|
4585
|
+
return this;
|
|
4586
|
+
}
|
|
4587
|
+
searchIntent() {
|
|
4588
|
+
this.addField("searchIntent");
|
|
4589
|
+
return this;
|
|
4590
|
+
}
|
|
4591
|
+
volume() {
|
|
4592
|
+
this.addField("volume");
|
|
4593
|
+
return this;
|
|
4594
|
+
}
|
|
4595
|
+
difficulty() {
|
|
4596
|
+
this.addField("difficulty");
|
|
4597
|
+
return this;
|
|
4598
|
+
}
|
|
4599
|
+
priority() {
|
|
4600
|
+
this.addField("priority");
|
|
4601
|
+
return this;
|
|
4602
|
+
}
|
|
4603
|
+
status() {
|
|
4604
|
+
this.addField("status");
|
|
4605
|
+
return this;
|
|
4606
|
+
}
|
|
4607
|
+
createdAt() {
|
|
4608
|
+
this.addField("createdAt");
|
|
4609
|
+
return this;
|
|
4610
|
+
}
|
|
4611
|
+
updatedAt() {
|
|
4612
|
+
this.addField("updatedAt");
|
|
4613
|
+
return this;
|
|
4614
|
+
}
|
|
4615
|
+
isPrimary() {
|
|
4616
|
+
this.addField("isPrimary");
|
|
4617
|
+
return this;
|
|
4618
|
+
}
|
|
4619
|
+
url() {
|
|
4620
|
+
this.addField("url");
|
|
4621
|
+
return this;
|
|
4622
|
+
}
|
|
4623
|
+
funnelStage() {
|
|
4624
|
+
this.addField("funnelStage");
|
|
4625
|
+
return this;
|
|
4626
|
+
}
|
|
4627
|
+
keywordType() {
|
|
4628
|
+
this.addField("keywordType");
|
|
4629
|
+
return this;
|
|
4630
|
+
}
|
|
4631
|
+
cluster(options) {
|
|
4632
|
+
if (Array.isArray(options)) {
|
|
4633
|
+
this._associations["cluster"] = new SeoKeywordClusterQueryOptions(options);
|
|
4634
|
+
} else {
|
|
4635
|
+
this._associations["cluster"] = options || new SeoKeywordClusterQueryOptions(["id"]);
|
|
4636
|
+
}
|
|
4637
|
+
return this;
|
|
4638
|
+
}
|
|
4639
|
+
}
|
|
4640
|
+
class SeoKeywordClusterQueryOptions extends QueryOptions {
|
|
4641
|
+
constructor(fields, queryArgs) {
|
|
4642
|
+
super(SeoKeywordClusterEntityName, fields, queryArgs);
|
|
4643
|
+
}
|
|
4644
|
+
id() {
|
|
4645
|
+
this.addField("id");
|
|
4646
|
+
return this;
|
|
4647
|
+
}
|
|
4648
|
+
name() {
|
|
4649
|
+
this.addField("name");
|
|
4650
|
+
return this;
|
|
4651
|
+
}
|
|
4652
|
+
summary() {
|
|
4653
|
+
this.addField("summary");
|
|
4654
|
+
return this;
|
|
4655
|
+
}
|
|
4656
|
+
status() {
|
|
4657
|
+
this.addField("status");
|
|
4658
|
+
return this;
|
|
4659
|
+
}
|
|
4660
|
+
createdAt() {
|
|
4661
|
+
this.addField("createdAt");
|
|
4662
|
+
return this;
|
|
4663
|
+
}
|
|
4664
|
+
updatedAt() {
|
|
4665
|
+
this.addField("updatedAt");
|
|
4666
|
+
return this;
|
|
4667
|
+
}
|
|
4668
|
+
seoKeywords(options) {
|
|
4669
|
+
if (Array.isArray(options)) {
|
|
4670
|
+
this._associations["seoKeywords"] = new SeoKeywordQueryOptions(options);
|
|
4671
|
+
} else {
|
|
4672
|
+
this._associations["seoKeywords"] = options || new SeoKeywordQueryOptions(["id"]);
|
|
4673
|
+
}
|
|
4674
|
+
return this;
|
|
4675
|
+
}
|
|
4676
|
+
seoKeywordsAggregate(aggregate) {
|
|
4677
|
+
this._aggregates["seoKeywordsAggregate"] = aggregate;
|
|
4678
|
+
return this;
|
|
4679
|
+
}
|
|
4680
|
+
lang(options) {
|
|
4681
|
+
if (Array.isArray(options)) {
|
|
4682
|
+
this._associations["lang"] = new LangQueryOptions(options);
|
|
4683
|
+
} else {
|
|
4684
|
+
this._associations["lang"] = options || new LangQueryOptions(["id"]);
|
|
4685
|
+
}
|
|
4686
|
+
return this;
|
|
4687
|
+
}
|
|
4688
|
+
website(options) {
|
|
4689
|
+
if (Array.isArray(options)) {
|
|
4690
|
+
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
4691
|
+
} else {
|
|
4692
|
+
this._associations["website"] = options || new WebsiteQueryOptions(["id"]);
|
|
4693
|
+
}
|
|
4694
|
+
return this;
|
|
4695
|
+
}
|
|
4696
|
+
}
|
|
4347
4697
|
class WebsiteQueryOptions extends QueryOptions {
|
|
4348
4698
|
constructor(fields, queryArgs) {
|
|
4349
4699
|
super(WebsiteEntityName, fields, queryArgs);
|
|
@@ -4409,6 +4759,10 @@ class WebsiteQueryOptions extends QueryOptions {
|
|
|
4409
4759
|
this.addField("title");
|
|
4410
4760
|
return this;
|
|
4411
4761
|
}
|
|
4762
|
+
studioVersion() {
|
|
4763
|
+
this.addField("studioVersion");
|
|
4764
|
+
return this;
|
|
4765
|
+
}
|
|
4412
4766
|
websiteType(options) {
|
|
4413
4767
|
if (Array.isArray(options)) {
|
|
4414
4768
|
this._associations["websiteType"] = new WebsiteTypeQueryOptions(options);
|
|
@@ -4709,6 +5063,30 @@ class WebsiteQueryOptions extends QueryOptions {
|
|
|
4709
5063
|
this._aggregates["memoFilesAggregate"] = aggregate;
|
|
4710
5064
|
return this;
|
|
4711
5065
|
}
|
|
5066
|
+
keywordClusters(options) {
|
|
5067
|
+
if (Array.isArray(options)) {
|
|
5068
|
+
this._associations["keywordClusters"] = new SeoKeywordClusterQueryOptions(options);
|
|
5069
|
+
} else {
|
|
5070
|
+
this._associations["keywordClusters"] = options || new SeoKeywordClusterQueryOptions(["id"]);
|
|
5071
|
+
}
|
|
5072
|
+
return this;
|
|
5073
|
+
}
|
|
5074
|
+
keywordClustersAggregate(aggregate) {
|
|
5075
|
+
this._aggregates["keywordClustersAggregate"] = aggregate;
|
|
5076
|
+
return this;
|
|
5077
|
+
}
|
|
5078
|
+
backLinks(options) {
|
|
5079
|
+
if (Array.isArray(options)) {
|
|
5080
|
+
this._associations["backLinks"] = new SeoBacklinkQueryOptions(options);
|
|
5081
|
+
} else {
|
|
5082
|
+
this._associations["backLinks"] = options || new SeoBacklinkQueryOptions(["id"]);
|
|
5083
|
+
}
|
|
5084
|
+
return this;
|
|
5085
|
+
}
|
|
5086
|
+
backLinksAggregate(aggregate) {
|
|
5087
|
+
this._aggregates["backLinksAggregate"] = aggregate;
|
|
5088
|
+
return this;
|
|
5089
|
+
}
|
|
4712
5090
|
mockBranch(options) {
|
|
4713
5091
|
if (Array.isArray(options)) {
|
|
4714
5092
|
this._associations["mockBranch"] = new ThemeBranchQueryOptions(options);
|
|
@@ -5182,6 +5560,18 @@ class LangQueryOptions extends QueryOptions {
|
|
|
5182
5560
|
this._aggregates["tagCategoriesAggregate"] = aggregate;
|
|
5183
5561
|
return this;
|
|
5184
5562
|
}
|
|
5563
|
+
keywordCluster(options) {
|
|
5564
|
+
if (Array.isArray(options)) {
|
|
5565
|
+
this._associations["keywordCluster"] = new SeoKeywordClusterQueryOptions(options);
|
|
5566
|
+
} else {
|
|
5567
|
+
this._associations["keywordCluster"] = options || new SeoKeywordClusterQueryOptions(["id"]);
|
|
5568
|
+
}
|
|
5569
|
+
return this;
|
|
5570
|
+
}
|
|
5571
|
+
keywordClusterAggregate(aggregate) {
|
|
5572
|
+
this._aggregates["keywordClusterAggregate"] = aggregate;
|
|
5573
|
+
return this;
|
|
5574
|
+
}
|
|
5185
5575
|
}
|
|
5186
5576
|
class MediaFolderQueryOptions extends QueryOptions {
|
|
5187
5577
|
constructor(fields, queryArgs) {
|
|
@@ -6258,6 +6648,21 @@ const agentMemoFolderEntry = {
|
|
|
6258
6648
|
entityLabel: AgentMemoFolderEntityLabel,
|
|
6259
6649
|
toInput: agentMemoFolderToInput
|
|
6260
6650
|
};
|
|
6651
|
+
const seoKeywordClusterEntry = {
|
|
6652
|
+
entityName: SeoKeywordClusterEntityName,
|
|
6653
|
+
entityLabel: SeoKeywordClusterEntityLabel,
|
|
6654
|
+
toInput: seoKeywordClusterToInput
|
|
6655
|
+
};
|
|
6656
|
+
const seoKeywordEntry = {
|
|
6657
|
+
entityName: SeoKeywordEntityName,
|
|
6658
|
+
entityLabel: SeoKeywordEntityLabel,
|
|
6659
|
+
toInput: seoKeywordToInput
|
|
6660
|
+
};
|
|
6661
|
+
const seoBacklinkEntry = {
|
|
6662
|
+
entityName: SeoBacklinkEntityName,
|
|
6663
|
+
entityLabel: SeoBacklinkEntityLabel,
|
|
6664
|
+
toInput: seoBacklinkToInput
|
|
6665
|
+
};
|
|
6261
6666
|
var UserFields = /* @__PURE__ */ ((UserFields2) => {
|
|
6262
6667
|
UserFields2["id"] = "id";
|
|
6263
6668
|
UserFields2["loginName"] = "loginName";
|
|
@@ -6427,6 +6832,7 @@ var WebsiteFields = /* @__PURE__ */ ((WebsiteFields2) => {
|
|
|
6427
6832
|
WebsiteFields2["updatedBy"] = "updatedBy";
|
|
6428
6833
|
WebsiteFields2["description"] = "description";
|
|
6429
6834
|
WebsiteFields2["title"] = "title";
|
|
6835
|
+
WebsiteFields2["studioVersion"] = "studioVersion";
|
|
6430
6836
|
return WebsiteFields2;
|
|
6431
6837
|
})(WebsiteFields || {});
|
|
6432
6838
|
var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
|
|
@@ -6478,6 +6884,10 @@ var WebsiteAssciations = /* @__PURE__ */ ((WebsiteAssciations2) => {
|
|
|
6478
6884
|
WebsiteAssciations2["memoFoldersAggregate"] = "memoFoldersAggregate";
|
|
6479
6885
|
WebsiteAssciations2["memoFiles"] = "memoFiles";
|
|
6480
6886
|
WebsiteAssciations2["memoFilesAggregate"] = "memoFilesAggregate";
|
|
6887
|
+
WebsiteAssciations2["keywordClusters"] = "keywordClusters";
|
|
6888
|
+
WebsiteAssciations2["keywordClustersAggregate"] = "keywordClustersAggregate";
|
|
6889
|
+
WebsiteAssciations2["backLinks"] = "backLinks";
|
|
6890
|
+
WebsiteAssciations2["backLinksAggregate"] = "backLinksAggregate";
|
|
6481
6891
|
WebsiteAssciations2["mockBranch"] = "mockBranch";
|
|
6482
6892
|
return WebsiteAssciations2;
|
|
6483
6893
|
})(WebsiteAssciations || {});
|
|
@@ -6524,6 +6934,8 @@ var LangAssciations = /* @__PURE__ */ ((LangAssciations2) => {
|
|
|
6524
6934
|
LangAssciations2["tagsAggregate"] = "tagsAggregate";
|
|
6525
6935
|
LangAssciations2["tagCategories"] = "tagCategories";
|
|
6526
6936
|
LangAssciations2["tagCategoriesAggregate"] = "tagCategoriesAggregate";
|
|
6937
|
+
LangAssciations2["keywordCluster"] = "keywordCluster";
|
|
6938
|
+
LangAssciations2["keywordClusterAggregate"] = "keywordClusterAggregate";
|
|
6527
6939
|
return LangAssciations2;
|
|
6528
6940
|
})(LangAssciations || {});
|
|
6529
6941
|
var WebsiteTypeFields = /* @__PURE__ */ ((WebsiteTypeFields2) => {
|
|
@@ -6571,6 +6983,8 @@ var PostAssciations = /* @__PURE__ */ ((PostAssciations2) => {
|
|
|
6571
6983
|
PostAssciations2["meta"] = "meta";
|
|
6572
6984
|
PostAssciations2["category"] = "category";
|
|
6573
6985
|
PostAssciations2["website"] = "website";
|
|
6986
|
+
PostAssciations2["backlinks"] = "backlinks";
|
|
6987
|
+
PostAssciations2["backlinksAggregate"] = "backlinksAggregate";
|
|
6574
6988
|
return PostAssciations2;
|
|
6575
6989
|
})(PostAssciations || {});
|
|
6576
6990
|
var ProductFields = /* @__PURE__ */ ((ProductFields2) => {
|
|
@@ -6616,6 +7030,8 @@ var ProductAssciations = /* @__PURE__ */ ((ProductAssciations2) => {
|
|
|
6616
7030
|
ProductAssciations2["website"] = "website";
|
|
6617
7031
|
ProductAssciations2["relatedByPovit"] = "relatedByPovit";
|
|
6618
7032
|
ProductAssciations2["relatedByPovitAggregate"] = "relatedByPovitAggregate";
|
|
7033
|
+
ProductAssciations2["backlinks"] = "backlinks";
|
|
7034
|
+
ProductAssciations2["backlinksAggregate"] = "backlinksAggregate";
|
|
6619
7035
|
return ProductAssciations2;
|
|
6620
7036
|
})(ProductAssciations || {});
|
|
6621
7037
|
var EnquiryFields = /* @__PURE__ */ ((EnquiryFields2) => {
|
|
@@ -7245,6 +7661,66 @@ var AgentMemoFolderAssciations = /* @__PURE__ */ ((AgentMemoFolderAssciations2)
|
|
|
7245
7661
|
AgentMemoFolderAssciations2["website"] = "website";
|
|
7246
7662
|
return AgentMemoFolderAssciations2;
|
|
7247
7663
|
})(AgentMemoFolderAssciations || {});
|
|
7664
|
+
var SeoKeywordClusterFields = /* @__PURE__ */ ((SeoKeywordClusterFields2) => {
|
|
7665
|
+
SeoKeywordClusterFields2["id"] = "id";
|
|
7666
|
+
SeoKeywordClusterFields2["name"] = "name";
|
|
7667
|
+
SeoKeywordClusterFields2["summary"] = "summary";
|
|
7668
|
+
SeoKeywordClusterFields2["status"] = "status";
|
|
7669
|
+
SeoKeywordClusterFields2["createdAt"] = "createdAt";
|
|
7670
|
+
SeoKeywordClusterFields2["updatedAt"] = "updatedAt";
|
|
7671
|
+
return SeoKeywordClusterFields2;
|
|
7672
|
+
})(SeoKeywordClusterFields || {});
|
|
7673
|
+
var SeoKeywordClusterAssciations = /* @__PURE__ */ ((SeoKeywordClusterAssciations2) => {
|
|
7674
|
+
SeoKeywordClusterAssciations2["seoKeywords"] = "seoKeywords";
|
|
7675
|
+
SeoKeywordClusterAssciations2["seoKeywordsAggregate"] = "seoKeywordsAggregate";
|
|
7676
|
+
SeoKeywordClusterAssciations2["lang"] = "lang";
|
|
7677
|
+
SeoKeywordClusterAssciations2["website"] = "website";
|
|
7678
|
+
return SeoKeywordClusterAssciations2;
|
|
7679
|
+
})(SeoKeywordClusterAssciations || {});
|
|
7680
|
+
var SeoKeywordFields = /* @__PURE__ */ ((SeoKeywordFields2) => {
|
|
7681
|
+
SeoKeywordFields2["id"] = "id";
|
|
7682
|
+
SeoKeywordFields2["keyword"] = "keyword";
|
|
7683
|
+
SeoKeywordFields2["searchIntent"] = "searchIntent";
|
|
7684
|
+
SeoKeywordFields2["volume"] = "volume";
|
|
7685
|
+
SeoKeywordFields2["difficulty"] = "difficulty";
|
|
7686
|
+
SeoKeywordFields2["priority"] = "priority";
|
|
7687
|
+
SeoKeywordFields2["status"] = "status";
|
|
7688
|
+
SeoKeywordFields2["createdAt"] = "createdAt";
|
|
7689
|
+
SeoKeywordFields2["updatedAt"] = "updatedAt";
|
|
7690
|
+
SeoKeywordFields2["isPrimary"] = "isPrimary";
|
|
7691
|
+
SeoKeywordFields2["url"] = "url";
|
|
7692
|
+
SeoKeywordFields2["funnelStage"] = "funnelStage";
|
|
7693
|
+
SeoKeywordFields2["keywordType"] = "keywordType";
|
|
7694
|
+
return SeoKeywordFields2;
|
|
7695
|
+
})(SeoKeywordFields || {});
|
|
7696
|
+
var SeoKeywordAssciations = /* @__PURE__ */ ((SeoKeywordAssciations2) => {
|
|
7697
|
+
SeoKeywordAssciations2["cluster"] = "cluster";
|
|
7698
|
+
return SeoKeywordAssciations2;
|
|
7699
|
+
})(SeoKeywordAssciations || {});
|
|
7700
|
+
var SeoBacklinkFields = /* @__PURE__ */ ((SeoBacklinkFields2) => {
|
|
7701
|
+
SeoBacklinkFields2["id"] = "id";
|
|
7702
|
+
SeoBacklinkFields2["url"] = "url";
|
|
7703
|
+
SeoBacklinkFields2["anchorText"] = "anchorText";
|
|
7704
|
+
SeoBacklinkFields2["sourceDomain"] = "sourceDomain";
|
|
7705
|
+
SeoBacklinkFields2["targetPath"] = "targetPath";
|
|
7706
|
+
SeoBacklinkFields2["status"] = "status";
|
|
7707
|
+
SeoBacklinkFields2["rel"] = "rel";
|
|
7708
|
+
SeoBacklinkFields2["domainAuthority"] = "domainAuthority";
|
|
7709
|
+
SeoBacklinkFields2["firstSeenAt"] = "firstSeenAt";
|
|
7710
|
+
SeoBacklinkFields2["lastCheckedAt"] = "lastCheckedAt";
|
|
7711
|
+
SeoBacklinkFields2["createdAt"] = "createdAt";
|
|
7712
|
+
SeoBacklinkFields2["updatedAt"] = "updatedAt";
|
|
7713
|
+
SeoBacklinkFields2["contactEmail"] = "contactEmail";
|
|
7714
|
+
SeoBacklinkFields2["contactedAt"] = "contactedAt";
|
|
7715
|
+
SeoBacklinkFields2["notes"] = "notes";
|
|
7716
|
+
return SeoBacklinkFields2;
|
|
7717
|
+
})(SeoBacklinkFields || {});
|
|
7718
|
+
var SeoBacklinkAssciations = /* @__PURE__ */ ((SeoBacklinkAssciations2) => {
|
|
7719
|
+
SeoBacklinkAssciations2["post"] = "post";
|
|
7720
|
+
SeoBacklinkAssciations2["product"] = "product";
|
|
7721
|
+
SeoBacklinkAssciations2["website"] = "website";
|
|
7722
|
+
return SeoBacklinkAssciations2;
|
|
7723
|
+
})(SeoBacklinkAssciations || {});
|
|
7248
7724
|
export {
|
|
7249
7725
|
AbilityAssciations,
|
|
7250
7726
|
AbilityDistinctEnum,
|
|
@@ -7435,6 +7911,24 @@ export {
|
|
|
7435
7911
|
SearchIndexEntityName,
|
|
7436
7912
|
SearchIndexFields,
|
|
7437
7913
|
SearchIndexQueryOptions,
|
|
7914
|
+
SeoBacklinkAssciations,
|
|
7915
|
+
SeoBacklinkDistinctEnum,
|
|
7916
|
+
SeoBacklinkEntityLabel,
|
|
7917
|
+
SeoBacklinkEntityName,
|
|
7918
|
+
SeoBacklinkFields,
|
|
7919
|
+
SeoBacklinkQueryOptions,
|
|
7920
|
+
SeoKeywordAssciations,
|
|
7921
|
+
SeoKeywordClusterAssciations,
|
|
7922
|
+
SeoKeywordClusterDistinctEnum,
|
|
7923
|
+
SeoKeywordClusterEntityLabel,
|
|
7924
|
+
SeoKeywordClusterEntityName,
|
|
7925
|
+
SeoKeywordClusterFields,
|
|
7926
|
+
SeoKeywordClusterQueryOptions,
|
|
7927
|
+
SeoKeywordDistinctEnum,
|
|
7928
|
+
SeoKeywordEntityLabel,
|
|
7929
|
+
SeoKeywordEntityName,
|
|
7930
|
+
SeoKeywordFields,
|
|
7931
|
+
SeoKeywordQueryOptions,
|
|
7438
7932
|
SlugableDistinctEnum,
|
|
7439
7933
|
SoftableDistinctEnum,
|
|
7440
7934
|
SourceType,
|
|
@@ -7656,6 +8150,15 @@ export {
|
|
|
7656
8150
|
searchIndexEntry,
|
|
7657
8151
|
searchIndexToInput,
|
|
7658
8152
|
searchIndexToInputCascade,
|
|
8153
|
+
seoBacklinkEntry,
|
|
8154
|
+
seoBacklinkToInput,
|
|
8155
|
+
seoBacklinkToInputCascade,
|
|
8156
|
+
seoKeywordClusterEntry,
|
|
8157
|
+
seoKeywordClusterToInput,
|
|
8158
|
+
seoKeywordClusterToInputCascade,
|
|
8159
|
+
seoKeywordEntry,
|
|
8160
|
+
seoKeywordToInput,
|
|
8161
|
+
seoKeywordToInputCascade,
|
|
7659
8162
|
spamFilterRuleEntry,
|
|
7660
8163
|
spamFilterRuleToInput,
|
|
7661
8164
|
spamFilterRuleToInputCascade,
|