@rxdrag/rxcms-models 0.4.0 → 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 +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IAggregate, IQueryArgs } from '@rxdrag/entify-lib';
|
|
2
2
|
import { QueryOptions } from './QueryOptions';
|
|
3
|
-
import { Lang, LangBoolExp, LangDistinctExp, LangOrderBy, MediaFolder, MediaFolderBoolExp, Enquiry, EnquiryBoolExp, Product, ProductBoolExp, Post, PostBoolExp, PostCategory, PostCategoryBoolExp, Customer, CustomerBoolExp, ProductCategory, ProductCategoryBoolExp, SpamFilterRule, SpamFilterRuleBoolExp, Media, MediaBoolExp, Website, WebsiteBoolExp, Bulletin, BulletinBoolExp, Tag, TagBoolExp, TagCategory, TagCategoryBoolExp } from '../interfaces';
|
|
3
|
+
import { Lang, LangBoolExp, LangDistinctExp, LangOrderBy, MediaFolder, MediaFolderBoolExp, Enquiry, EnquiryBoolExp, Product, ProductBoolExp, Post, PostBoolExp, PostCategory, PostCategoryBoolExp, Customer, CustomerBoolExp, ProductCategory, ProductCategoryBoolExp, SpamFilterRule, SpamFilterRuleBoolExp, Media, MediaBoolExp, Website, WebsiteBoolExp, Bulletin, BulletinBoolExp, Tag, TagBoolExp, TagCategory, TagCategoryBoolExp, SeoKeywordCluster, SeoKeywordClusterBoolExp } from '../interfaces';
|
|
4
4
|
import { MediaFolderQueryOptions } from './MediaFolderQueryOptions';
|
|
5
5
|
import { EnquiryQueryOptions } from './EnquiryQueryOptions';
|
|
6
6
|
import { ProductQueryOptions } from './ProductQueryOptions';
|
|
@@ -14,6 +14,7 @@ import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
|
14
14
|
import { BulletinQueryOptions } from './BulletinQueryOptions';
|
|
15
15
|
import { TagQueryOptions } from './TagQueryOptions';
|
|
16
16
|
import { TagCategoryQueryOptions } from './TagCategoryQueryOptions';
|
|
17
|
+
import { SeoKeywordClusterQueryOptions } from './SeoKeywordClusterQueryOptions';
|
|
17
18
|
|
|
18
19
|
export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, LangOrderBy, LangDistinctExp> {
|
|
19
20
|
constructor(fields?: (keyof Lang)[], queryArgs?: IQueryArgs<LangBoolExp, LangOrderBy, LangDistinctExp>);
|
|
@@ -71,4 +72,6 @@ export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, La
|
|
|
71
72
|
tagsAggregate(aggregate: IAggregate<TagBoolExp>): this;
|
|
72
73
|
tagCategories(options?: TagCategoryQueryOptions | (keyof TagCategory)[]): this;
|
|
73
74
|
tagCategoriesAggregate(aggregate: IAggregate<TagCategoryBoolExp>): this;
|
|
75
|
+
keywordCluster(options?: SeoKeywordClusterQueryOptions | (keyof SeoKeywordCluster)[]): this;
|
|
76
|
+
keywordClusterAggregate(aggregate: IAggregate<SeoKeywordClusterBoolExp>): this;
|
|
74
77
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IAggregate, IQueryArgs } from '@rxdrag/entify-lib';
|
|
2
2
|
import { QueryOptions } from './QueryOptions';
|
|
3
|
-
import { Post, PostBoolExp, PostDistinctExp, PostOrderBy, Tag, TagBoolExp, User, Media, Lang, PageMeta, PostCategory, Website } from '../interfaces';
|
|
3
|
+
import { Post, PostBoolExp, PostDistinctExp, PostOrderBy, Tag, TagBoolExp, User, Media, Lang, PageMeta, PostCategory, Website, SeoBacklink, SeoBacklinkBoolExp } from '../interfaces';
|
|
4
4
|
import { TagQueryOptions } from './TagQueryOptions';
|
|
5
5
|
import { UserQueryOptions } from './UserQueryOptions';
|
|
6
6
|
import { MediaQueryOptions } from './MediaQueryOptions';
|
|
@@ -8,6 +8,7 @@ import { LangQueryOptions } from './LangQueryOptions';
|
|
|
8
8
|
import { PageMetaQueryOptions } from './PageMetaQueryOptions';
|
|
9
9
|
import { PostCategoryQueryOptions } from './PostCategoryQueryOptions';
|
|
10
10
|
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
11
|
+
import { SeoBacklinkQueryOptions } from './SeoBacklinkQueryOptions';
|
|
11
12
|
|
|
12
13
|
export declare class PostQueryOptions extends QueryOptions<Post, PostBoolExp, PostOrderBy, PostDistinctExp> {
|
|
13
14
|
constructor(fields?: (keyof Post)[], queryArgs?: IQueryArgs<PostBoolExp, PostOrderBy, PostDistinctExp>);
|
|
@@ -37,4 +38,6 @@ export declare class PostQueryOptions extends QueryOptions<Post, PostBoolExp, Po
|
|
|
37
38
|
meta(options?: PageMetaQueryOptions | (keyof PageMeta)[]): this;
|
|
38
39
|
category(options?: PostCategoryQueryOptions | (keyof PostCategory)[]): this;
|
|
39
40
|
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
41
|
+
backlinks(options?: SeoBacklinkQueryOptions | (keyof SeoBacklink)[]): this;
|
|
42
|
+
backlinksAggregate(aggregate: IAggregate<SeoBacklinkBoolExp>): this;
|
|
40
43
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IAggregate, IQueryArgs } from '@rxdrag/entify-lib';
|
|
2
2
|
import { QueryOptions } from './QueryOptions';
|
|
3
|
-
import { Product, ProductBoolExp, ProductDistinctExp, ProductOrderBy, ProductCategory, Tag, TagBoolExp, MediaOnProduct, MediaOnProductBoolExp, AttachmentOnProduct, AttachmentOnProductBoolExp, Lang, PageMeta, FAQ, FAQBoolExp, ProductRelatedPivot, ProductRelatedPivotBoolExp, User, Website } from '../interfaces';
|
|
3
|
+
import { Product, ProductBoolExp, ProductDistinctExp, ProductOrderBy, ProductCategory, Tag, TagBoolExp, MediaOnProduct, MediaOnProductBoolExp, AttachmentOnProduct, AttachmentOnProductBoolExp, Lang, PageMeta, FAQ, FAQBoolExp, ProductRelatedPivot, ProductRelatedPivotBoolExp, User, Website, SeoBacklink, SeoBacklinkBoolExp } from '../interfaces';
|
|
4
4
|
import { ProductCategoryQueryOptions } from './ProductCategoryQueryOptions';
|
|
5
5
|
import { TagQueryOptions } from './TagQueryOptions';
|
|
6
6
|
import { MediaOnProductQueryOptions } from './MediaOnProductQueryOptions';
|
|
@@ -11,6 +11,7 @@ import { FAQQueryOptions } from './FAQQueryOptions';
|
|
|
11
11
|
import { ProductRelatedPivotQueryOptions } from './ProductRelatedPivotQueryOptions';
|
|
12
12
|
import { UserQueryOptions } from './UserQueryOptions';
|
|
13
13
|
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
14
|
+
import { SeoBacklinkQueryOptions } from './SeoBacklinkQueryOptions';
|
|
14
15
|
|
|
15
16
|
export declare class ProductQueryOptions extends QueryOptions<Product, ProductBoolExp, ProductOrderBy, ProductDistinctExp> {
|
|
16
17
|
constructor(fields?: (keyof Product)[], queryArgs?: IQueryArgs<ProductBoolExp, ProductOrderBy, ProductDistinctExp>);
|
|
@@ -59,4 +60,6 @@ export declare class ProductQueryOptions extends QueryOptions<Product, ProductBo
|
|
|
59
60
|
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
60
61
|
relatedByPovit(options?: ProductRelatedPivotQueryOptions | (keyof ProductRelatedPivot)[]): this;
|
|
61
62
|
relatedByPovitAggregate(aggregate: IAggregate<ProductRelatedPivotBoolExp>): this;
|
|
63
|
+
backlinks(options?: SeoBacklinkQueryOptions | (keyof SeoBacklink)[]): this;
|
|
64
|
+
backlinksAggregate(aggregate: IAggregate<SeoBacklinkBoolExp>): this;
|
|
62
65
|
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { IQueryArgs } from '@rxdrag/entify-lib';
|
|
2
|
+
import { QueryOptions } from './QueryOptions';
|
|
3
|
+
import { SeoBacklink, SeoBacklinkBoolExp, SeoBacklinkDistinctExp, SeoBacklinkOrderBy, Post, Product, Website } from '../interfaces';
|
|
4
|
+
import { PostQueryOptions } from './PostQueryOptions';
|
|
5
|
+
import { ProductQueryOptions } from './ProductQueryOptions';
|
|
6
|
+
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
7
|
+
|
|
8
|
+
export declare class SeoBacklinkQueryOptions extends QueryOptions<SeoBacklink, SeoBacklinkBoolExp, SeoBacklinkOrderBy, SeoBacklinkDistinctExp> {
|
|
9
|
+
constructor(fields?: (keyof SeoBacklink)[], queryArgs?: IQueryArgs<SeoBacklinkBoolExp, SeoBacklinkOrderBy, SeoBacklinkDistinctExp>);
|
|
10
|
+
id(): this;
|
|
11
|
+
url(): this;
|
|
12
|
+
anchorText(): this;
|
|
13
|
+
sourceDomain(): this;
|
|
14
|
+
targetPath(): this;
|
|
15
|
+
status(): this;
|
|
16
|
+
rel(): this;
|
|
17
|
+
domainAuthority(): this;
|
|
18
|
+
firstSeenAt(): this;
|
|
19
|
+
lastCheckedAt(): this;
|
|
20
|
+
createdAt(): this;
|
|
21
|
+
updatedAt(): this;
|
|
22
|
+
contactEmail(): this;
|
|
23
|
+
contactedAt(): this;
|
|
24
|
+
notes(): this;
|
|
25
|
+
post(options?: PostQueryOptions | (keyof Post)[]): this;
|
|
26
|
+
product(options?: ProductQueryOptions | (keyof Product)[]): this;
|
|
27
|
+
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
28
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { IAggregate, IQueryArgs } from '@rxdrag/entify-lib';
|
|
2
|
+
import { QueryOptions } from './QueryOptions';
|
|
3
|
+
import { SeoKeywordCluster, SeoKeywordClusterBoolExp, SeoKeywordClusterDistinctExp, SeoKeywordClusterOrderBy, SeoKeyword, SeoKeywordBoolExp, Lang, Website } from '../interfaces';
|
|
4
|
+
import { SeoKeywordQueryOptions } from './SeoKeywordQueryOptions';
|
|
5
|
+
import { LangQueryOptions } from './LangQueryOptions';
|
|
6
|
+
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
7
|
+
|
|
8
|
+
export declare class SeoKeywordClusterQueryOptions extends QueryOptions<SeoKeywordCluster, SeoKeywordClusterBoolExp, SeoKeywordClusterOrderBy, SeoKeywordClusterDistinctExp> {
|
|
9
|
+
constructor(fields?: (keyof SeoKeywordCluster)[], queryArgs?: IQueryArgs<SeoKeywordClusterBoolExp, SeoKeywordClusterOrderBy, SeoKeywordClusterDistinctExp>);
|
|
10
|
+
id(): this;
|
|
11
|
+
name(): this;
|
|
12
|
+
summary(): this;
|
|
13
|
+
status(): this;
|
|
14
|
+
createdAt(): this;
|
|
15
|
+
updatedAt(): this;
|
|
16
|
+
seoKeywords(options?: SeoKeywordQueryOptions | (keyof SeoKeyword)[]): this;
|
|
17
|
+
seoKeywordsAggregate(aggregate: IAggregate<SeoKeywordBoolExp>): this;
|
|
18
|
+
lang(options?: LangQueryOptions | (keyof Lang)[]): this;
|
|
19
|
+
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
20
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IQueryArgs } from '@rxdrag/entify-lib';
|
|
2
|
+
import { QueryOptions } from './QueryOptions';
|
|
3
|
+
import { SeoKeyword, SeoKeywordBoolExp, SeoKeywordDistinctExp, SeoKeywordOrderBy, SeoKeywordCluster } from '../interfaces';
|
|
4
|
+
import { SeoKeywordClusterQueryOptions } from './SeoKeywordClusterQueryOptions';
|
|
5
|
+
|
|
6
|
+
export declare class SeoKeywordQueryOptions extends QueryOptions<SeoKeyword, SeoKeywordBoolExp, SeoKeywordOrderBy, SeoKeywordDistinctExp> {
|
|
7
|
+
constructor(fields?: (keyof SeoKeyword)[], queryArgs?: IQueryArgs<SeoKeywordBoolExp, SeoKeywordOrderBy, SeoKeywordDistinctExp>);
|
|
8
|
+
id(): this;
|
|
9
|
+
keyword(): this;
|
|
10
|
+
searchIntent(): this;
|
|
11
|
+
volume(): this;
|
|
12
|
+
difficulty(): this;
|
|
13
|
+
priority(): this;
|
|
14
|
+
status(): this;
|
|
15
|
+
createdAt(): this;
|
|
16
|
+
updatedAt(): this;
|
|
17
|
+
isPrimary(): this;
|
|
18
|
+
url(): this;
|
|
19
|
+
funnelStage(): this;
|
|
20
|
+
keywordType(): this;
|
|
21
|
+
cluster(options?: SeoKeywordClusterQueryOptions | (keyof SeoKeywordCluster)[]): this;
|
|
22
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IAggregate, IQueryArgs } from '@rxdrag/entify-lib';
|
|
2
2
|
import { QueryOptions } from './QueryOptions';
|
|
3
|
-
import { Website, WebsiteBoolExp, WebsiteDistinctExp, WebsiteOrderBy, WebsiteType, User, UserBoolExp, MediaFolder, MediaFolderBoolExp, Enquiry, EnquiryBoolExp, Product, ProductBoolExp, Post, PostBoolExp, PostCategory, PostCategoryBoolExp, Customer, CustomerBoolExp, ProductCategory, ProductCategoryBoolExp, SpamFilterRule, SpamFilterRuleBoolExp, Media, MediaBoolExp, Lang, LangBoolExp, ThemeBranch, AnalyticsConfig, WebsiteSettings, ChangeLog, ChangeLogBoolExp, SearchIndex, SearchIndexBoolExp, Bulletin, BulletinBoolExp, WebsiteSnapshot, WebsiteSnapshotBoolExp, UserOperation, UserOperationBoolExp, Tag, TagBoolExp, AgentThread, AgentThreadBoolExp, TempFile, TempFileBoolExp, AgentMemoFolder, AgentMemoFolderBoolExp, AgentMemoFile, AgentMemoFileBoolExp } from '../interfaces';
|
|
3
|
+
import { Website, WebsiteBoolExp, WebsiteDistinctExp, WebsiteOrderBy, WebsiteType, User, UserBoolExp, MediaFolder, MediaFolderBoolExp, Enquiry, EnquiryBoolExp, Product, ProductBoolExp, Post, PostBoolExp, PostCategory, PostCategoryBoolExp, Customer, CustomerBoolExp, ProductCategory, ProductCategoryBoolExp, SpamFilterRule, SpamFilterRuleBoolExp, Media, MediaBoolExp, Lang, LangBoolExp, ThemeBranch, AnalyticsConfig, WebsiteSettings, ChangeLog, ChangeLogBoolExp, SearchIndex, SearchIndexBoolExp, Bulletin, BulletinBoolExp, WebsiteSnapshot, WebsiteSnapshotBoolExp, UserOperation, UserOperationBoolExp, Tag, TagBoolExp, AgentThread, AgentThreadBoolExp, TempFile, TempFileBoolExp, AgentMemoFolder, AgentMemoFolderBoolExp, AgentMemoFile, AgentMemoFileBoolExp, SeoKeywordCluster, SeoKeywordClusterBoolExp, SeoBacklink, SeoBacklinkBoolExp } from '../interfaces';
|
|
4
4
|
import { WebsiteTypeQueryOptions } from './WebsiteTypeQueryOptions';
|
|
5
5
|
import { UserQueryOptions } from './UserQueryOptions';
|
|
6
6
|
import { MediaFolderQueryOptions } from './MediaFolderQueryOptions';
|
|
@@ -26,6 +26,8 @@ import { AgentThreadQueryOptions } from './AgentThreadQueryOptions';
|
|
|
26
26
|
import { TempFileQueryOptions } from './TempFileQueryOptions';
|
|
27
27
|
import { AgentMemoFolderQueryOptions } from './AgentMemoFolderQueryOptions';
|
|
28
28
|
import { AgentMemoFileQueryOptions } from './AgentMemoFileQueryOptions';
|
|
29
|
+
import { SeoKeywordClusterQueryOptions } from './SeoKeywordClusterQueryOptions';
|
|
30
|
+
import { SeoBacklinkQueryOptions } from './SeoBacklinkQueryOptions';
|
|
29
31
|
|
|
30
32
|
export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
|
|
31
33
|
constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
|
|
@@ -60,6 +62,7 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
|
|
|
60
62
|
updatedBy(): this;
|
|
61
63
|
description(): this;
|
|
62
64
|
title(): this;
|
|
65
|
+
studioVersion(): this;
|
|
63
66
|
websiteType(options?: WebsiteTypeQueryOptions | (keyof WebsiteType)[]): this;
|
|
64
67
|
owner(options?: UserQueryOptions | (keyof User)[]): this;
|
|
65
68
|
users(options?: UserQueryOptions | (keyof User)[]): this;
|
|
@@ -108,5 +111,9 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
|
|
|
108
111
|
memoFoldersAggregate(aggregate: IAggregate<AgentMemoFolderBoolExp>): this;
|
|
109
112
|
memoFiles(options?: AgentMemoFileQueryOptions | (keyof AgentMemoFile)[]): this;
|
|
110
113
|
memoFilesAggregate(aggregate: IAggregate<AgentMemoFileBoolExp>): this;
|
|
114
|
+
keywordClusters(options?: SeoKeywordClusterQueryOptions | (keyof SeoKeywordCluster)[]): this;
|
|
115
|
+
keywordClustersAggregate(aggregate: IAggregate<SeoKeywordClusterBoolExp>): this;
|
|
116
|
+
backLinks(options?: SeoBacklinkQueryOptions | (keyof SeoBacklink)[]): this;
|
|
117
|
+
backLinksAggregate(aggregate: IAggregate<SeoBacklinkBoolExp>): this;
|
|
111
118
|
mockBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
112
119
|
}
|
package/dist/classes/index.d.ts
CHANGED
|
@@ -47,5 +47,8 @@ export * from './AgentAttachmentQueryOptions';
|
|
|
47
47
|
export * from './TempFileQueryOptions';
|
|
48
48
|
export * from './AgentMemoFileQueryOptions';
|
|
49
49
|
export * from './AgentMemoFolderQueryOptions';
|
|
50
|
+
export * from './SeoKeywordClusterQueryOptions';
|
|
51
|
+
export * from './SeoKeywordQueryOptions';
|
|
52
|
+
export * from './SeoBacklinkQueryOptions';
|
|
50
53
|
export * from './QueryOptions';
|
|
51
54
|
export * from './metainfo';
|
package/dist/entries/index.d.ts
CHANGED
|
@@ -47,3 +47,6 @@ export * from './agentAttachmentEntry';
|
|
|
47
47
|
export * from './tempFileEntry';
|
|
48
48
|
export * from './agentMemoFileEntry';
|
|
49
49
|
export * from './agentMemoFolderEntry';
|
|
50
|
+
export * from './seoKeywordClusterEntry';
|
|
51
|
+
export * from './seoKeywordEntry';
|
|
52
|
+
export * from './seoBacklinkEntry';
|
|
@@ -54,5 +54,7 @@ export declare enum LangAssciations {
|
|
|
54
54
|
tags = "tags",
|
|
55
55
|
tagsAggregate = "tagsAggregate",
|
|
56
56
|
tagCategories = "tagCategories",
|
|
57
|
-
tagCategoriesAggregate = "tagCategoriesAggregate"
|
|
57
|
+
tagCategoriesAggregate = "tagCategoriesAggregate",
|
|
58
|
+
keywordCluster = "keywordCluster",
|
|
59
|
+
keywordClusterAggregate = "keywordClusterAggregate"
|
|
58
60
|
}
|
|
@@ -45,5 +45,7 @@ export declare enum ProductAssciations {
|
|
|
45
45
|
creator = "creator",
|
|
46
46
|
website = "website",
|
|
47
47
|
relatedByPovit = "relatedByPovit",
|
|
48
|
-
relatedByPovitAggregate = "relatedByPovitAggregate"
|
|
48
|
+
relatedByPovitAggregate = "relatedByPovitAggregate",
|
|
49
|
+
backlinks = "backlinks",
|
|
50
|
+
backlinksAggregate = "backlinksAggregate"
|
|
49
51
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare enum SeoBacklinkFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
url = "url",
|
|
4
|
+
anchorText = "anchorText",
|
|
5
|
+
sourceDomain = "sourceDomain",
|
|
6
|
+
targetPath = "targetPath",
|
|
7
|
+
status = "status",
|
|
8
|
+
rel = "rel",
|
|
9
|
+
domainAuthority = "domainAuthority",
|
|
10
|
+
firstSeenAt = "firstSeenAt",
|
|
11
|
+
lastCheckedAt = "lastCheckedAt",
|
|
12
|
+
createdAt = "createdAt",
|
|
13
|
+
updatedAt = "updatedAt",
|
|
14
|
+
contactEmail = "contactEmail",
|
|
15
|
+
contactedAt = "contactedAt",
|
|
16
|
+
notes = "notes"
|
|
17
|
+
}
|
|
18
|
+
export declare enum SeoBacklinkAssciations {
|
|
19
|
+
post = "post",
|
|
20
|
+
product = "product",
|
|
21
|
+
website = "website"
|
|
22
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare enum SeoKeywordClusterFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
name = "name",
|
|
4
|
+
summary = "summary",
|
|
5
|
+
status = "status",
|
|
6
|
+
createdAt = "createdAt",
|
|
7
|
+
updatedAt = "updatedAt"
|
|
8
|
+
}
|
|
9
|
+
export declare enum SeoKeywordClusterAssciations {
|
|
10
|
+
seoKeywords = "seoKeywords",
|
|
11
|
+
seoKeywordsAggregate = "seoKeywordsAggregate",
|
|
12
|
+
lang = "lang",
|
|
13
|
+
website = "website"
|
|
14
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare enum SeoKeywordFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
keyword = "keyword",
|
|
4
|
+
searchIntent = "searchIntent",
|
|
5
|
+
volume = "volume",
|
|
6
|
+
difficulty = "difficulty",
|
|
7
|
+
priority = "priority",
|
|
8
|
+
status = "status",
|
|
9
|
+
createdAt = "createdAt",
|
|
10
|
+
updatedAt = "updatedAt",
|
|
11
|
+
isPrimary = "isPrimary",
|
|
12
|
+
url = "url",
|
|
13
|
+
funnelStage = "funnelStage",
|
|
14
|
+
keywordType = "keywordType"
|
|
15
|
+
}
|
|
16
|
+
export declare enum SeoKeywordAssciations {
|
|
17
|
+
cluster = "cluster"
|
|
18
|
+
}
|
|
@@ -29,7 +29,8 @@ export declare enum WebsiteFields {
|
|
|
29
29
|
*/
|
|
30
30
|
updatedBy = "updatedBy",
|
|
31
31
|
description = "description",
|
|
32
|
-
title = "title"
|
|
32
|
+
title = "title",
|
|
33
|
+
studioVersion = "studioVersion"
|
|
33
34
|
}
|
|
34
35
|
export declare enum WebsiteAssciations {
|
|
35
36
|
websiteType = "websiteType",
|
|
@@ -80,5 +81,9 @@ export declare enum WebsiteAssciations {
|
|
|
80
81
|
memoFoldersAggregate = "memoFoldersAggregate",
|
|
81
82
|
memoFiles = "memoFiles",
|
|
82
83
|
memoFilesAggregate = "memoFilesAggregate",
|
|
84
|
+
keywordClusters = "keywordClusters",
|
|
85
|
+
keywordClustersAggregate = "keywordClustersAggregate",
|
|
86
|
+
backLinks = "backLinks",
|
|
87
|
+
backLinksAggregate = "backLinksAggregate",
|
|
83
88
|
mockBranch = "mockBranch"
|
|
84
89
|
}
|
package/dist/fields/index.d.ts
CHANGED
|
@@ -47,3 +47,6 @@ export * from './AgentAttachmentFields';
|
|
|
47
47
|
export * from './TempFileFields';
|
|
48
48
|
export * from './AgentMemoFileFields';
|
|
49
49
|
export * from './AgentMemoFolderFields';
|
|
50
|
+
export * from './SeoKeywordClusterFields';
|
|
51
|
+
export * from './SeoKeywordFields';
|
|
52
|
+
export * from './SeoBacklinkFields';
|