@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.
Files changed (53) hide show
  1. package/dist/classes/LangQueryOptions.d.ts +4 -1
  2. package/dist/classes/PostQueryOptions.d.ts +4 -1
  3. package/dist/classes/ProductQueryOptions.d.ts +4 -1
  4. package/dist/classes/SeoBacklinkQueryOptions.d.ts +28 -0
  5. package/dist/classes/SeoKeywordClusterQueryOptions.d.ts +20 -0
  6. package/dist/classes/SeoKeywordQueryOptions.d.ts +22 -0
  7. package/dist/classes/WebsiteQueryOptions.d.ts +8 -1
  8. package/dist/classes/index.d.ts +3 -0
  9. package/dist/entries/index.d.ts +3 -0
  10. package/dist/entries/seoBacklinkEntry.d.ts +3 -0
  11. package/dist/entries/seoKeywordClusterEntry.d.ts +3 -0
  12. package/dist/entries/seoKeywordEntry.d.ts +3 -0
  13. package/dist/fields/LangFields.d.ts +3 -1
  14. package/dist/fields/PostFields.d.ts +3 -1
  15. package/dist/fields/ProductFields.d.ts +3 -1
  16. package/dist/fields/SeoBacklinkFields.d.ts +22 -0
  17. package/dist/fields/SeoKeywordClusterFields.d.ts +14 -0
  18. package/dist/fields/SeoKeywordFields.d.ts +18 -0
  19. package/dist/fields/WebsiteFields.d.ts +6 -1
  20. package/dist/fields/index.d.ts +3 -0
  21. package/dist/index.mjs +525 -22
  22. package/dist/index.mjs.map +1 -1
  23. package/dist/interfaces/Lang.d.ts +3 -0
  24. package/dist/interfaces/LangBoolExp.d.ts +2 -0
  25. package/dist/interfaces/LangInput.d.ts +2 -0
  26. package/dist/interfaces/Post.d.ts +3 -0
  27. package/dist/interfaces/PostBoolExp.d.ts +2 -0
  28. package/dist/interfaces/PostInput.d.ts +2 -0
  29. package/dist/interfaces/Product.d.ts +3 -0
  30. package/dist/interfaces/ProductBoolExp.d.ts +2 -0
  31. package/dist/interfaces/ProductInput.d.ts +2 -0
  32. package/dist/interfaces/SeoBacklink.d.ts +26 -0
  33. package/dist/interfaces/SeoBacklinkBoolExp.d.ts +31 -0
  34. package/dist/interfaces/SeoBacklinkDistinctExp.d.ts +18 -0
  35. package/dist/interfaces/SeoBacklinkInput.d.ts +28 -0
  36. package/dist/interfaces/SeoBacklinkOrderBy.d.ts +19 -0
  37. package/dist/interfaces/SeoKeyword.d.ts +20 -0
  38. package/dist/interfaces/SeoKeywordBoolExp.d.ts +26 -0
  39. package/dist/interfaces/SeoKeywordCluster.d.ts +19 -0
  40. package/dist/interfaces/SeoKeywordClusterBoolExp.d.ts +21 -0
  41. package/dist/interfaces/SeoKeywordClusterDistinctExp.d.ts +9 -0
  42. package/dist/interfaces/SeoKeywordClusterInput.d.ts +19 -0
  43. package/dist/interfaces/SeoKeywordClusterOrderBy.d.ts +10 -0
  44. package/dist/interfaces/SeoKeywordDistinctExp.d.ts +16 -0
  45. package/dist/interfaces/SeoKeywordInput.d.ts +22 -0
  46. package/dist/interfaces/SeoKeywordOrderBy.d.ts +17 -0
  47. package/dist/interfaces/Website.d.ts +7 -0
  48. package/dist/interfaces/WebsiteBoolExp.d.ts +5 -0
  49. package/dist/interfaces/WebsiteDistinctExp.d.ts +2 -1
  50. package/dist/interfaces/WebsiteInput.d.ts +5 -0
  51. package/dist/interfaces/WebsiteOrderBy.d.ts +1 -0
  52. package/dist/interfaces/index.d.ts +15 -0
  53. package/package.json +3 -3
@@ -11,6 +11,7 @@ import { Website } from './Website';
11
11
  import { Bulletin } from './Bulletin';
12
12
  import { Tag } from './Tag';
13
13
  import { TagCategory } from './TagCategory';
14
+ import { SeoKeywordCluster } from './SeoKeywordCluster';
14
15
  import { Aggregate } from './Aggregate';
15
16
 
16
17
  export declare const LangEntityName = "Lang";
@@ -60,6 +61,7 @@ export interface Lang {
60
61
  bulletins?: Bulletin[];
61
62
  tags?: Tag[];
62
63
  tagCategories?: TagCategory[];
64
+ keywordCluster?: SeoKeywordCluster[];
63
65
  webPartsOfMediaFolderAggregate?: Aggregate;
64
66
  webPartsOfEnquiryAggregate?: Aggregate;
65
67
  webPartsOfProductAggregate?: Aggregate;
@@ -74,4 +76,5 @@ export interface Lang {
74
76
  bulletinsAggregate?: Aggregate;
75
77
  tagsAggregate?: Aggregate;
76
78
  tagCategoriesAggregate?: Aggregate;
79
+ keywordClusterAggregate?: Aggregate;
77
80
  }
@@ -13,6 +13,7 @@ import { WebsiteBoolExp } from './WebsiteBoolExp';
13
13
  import { BulletinBoolExp } from './BulletinBoolExp';
14
14
  import { TagBoolExp } from './TagBoolExp';
15
15
  import { TagCategoryBoolExp } from './TagCategoryBoolExp';
16
+ import { SeoKeywordClusterBoolExp } from './SeoKeywordClusterBoolExp';
16
17
 
17
18
  /**
18
19
  * 语言
@@ -47,4 +48,5 @@ export interface LangBoolExp {
47
48
  bulletins?: BulletinBoolExp;
48
49
  tags?: TagBoolExp;
49
50
  tagCategories?: TagCategoryBoolExp;
51
+ keywordCluster?: SeoKeywordClusterBoolExp;
50
52
  }
@@ -12,6 +12,7 @@ import { WebsiteInput } from './WebsiteInput';
12
12
  import { BulletinInput } from './BulletinInput';
13
13
  import { TagInput } from './TagInput';
14
14
  import { TagCategoryInput } from './TagCategoryInput';
15
+ import { SeoKeywordClusterInput } from './SeoKeywordClusterInput';
15
16
  import { SetHasMany } from '@rxdrag/entify-lib';
16
17
 
17
18
  /**
@@ -59,6 +60,7 @@ export interface LangInput {
59
60
  bulletins?: SetHasMany<BulletinInput>;
60
61
  tags?: SetHasMany<TagInput>;
61
62
  tagCategories?: SetHasMany<TagCategoryInput>;
63
+ keywordCluster?: SetHasMany<SeoKeywordClusterInput>;
62
64
  }
63
65
  export declare const langToInputCascade: (entity: Lang) => LangInput;
64
66
  export declare const langToInput: (entity: Lang) => LangInput;
@@ -5,6 +5,7 @@ import { Lang } from './Lang';
5
5
  import { PageMeta } from './PageMeta';
6
6
  import { PostCategory } from './PostCategory';
7
7
  import { Website } from './Website';
8
+ import { SeoBacklink } from './SeoBacklink';
8
9
  import { Aggregate } from './Aggregate';
9
10
  import { Publishable } from './Publishable';
10
11
  import { Softable } from './Softable';
@@ -30,5 +31,7 @@ export interface Post extends Publishable, Softable {
30
31
  meta?: PageMeta;
31
32
  category?: PostCategory;
32
33
  website?: Website;
34
+ backlinks?: SeoBacklink[];
33
35
  tagsAggregate?: Aggregate;
36
+ backlinksAggregate?: Aggregate;
34
37
  }
@@ -11,6 +11,7 @@ import { LangBoolExp } from './LangBoolExp';
11
11
  import { PageMetaBoolExp } from './PageMetaBoolExp';
12
12
  import { PostCategoryBoolExp } from './PostCategoryBoolExp';
13
13
  import { WebsiteBoolExp } from './WebsiteBoolExp';
14
+ import { SeoBacklinkBoolExp } from './SeoBacklinkBoolExp';
14
15
 
15
16
  /**
16
17
  * 文章
@@ -31,4 +32,5 @@ export interface PostBoolExp extends PublishableBoolExp, SoftableBoolExp {
31
32
  meta?: PageMetaBoolExp;
32
33
  category?: PostCategoryBoolExp;
33
34
  website?: WebsiteBoolExp;
35
+ backlinks?: SeoBacklinkBoolExp;
34
36
  }
@@ -6,6 +6,7 @@ import { LangInput } from './LangInput';
6
6
  import { PageMetaInput } from './PageMetaInput';
7
7
  import { PostCategoryInput } from './PostCategoryInput';
8
8
  import { WebsiteInput } from './WebsiteInput';
9
+ import { SeoBacklinkInput } from './SeoBacklinkInput';
9
10
  import { SetHasMany, SetHasOne } from '@rxdrag/entify-lib';
10
11
  import { Publishable } from './Publishable';
11
12
  import { Softable } from './Softable';
@@ -29,6 +30,7 @@ export interface PostInput extends Publishable, Softable {
29
30
  meta?: SetHasOne<PageMetaInput>;
30
31
  category?: SetHasOne<PostCategoryInput>;
31
32
  website?: SetHasOne<WebsiteInput>;
33
+ backlinks?: SetHasMany<SeoBacklinkInput>;
32
34
  }
33
35
  export declare const postToInputCascade: (entity: Post) => PostInput;
34
36
  export declare const postToInput: (entity: Post) => PostInput;
@@ -8,6 +8,7 @@ import { FAQ } from './FAQ';
8
8
  import { ProductRelatedPivot } from './ProductRelatedPivot';
9
9
  import { User } from './User';
10
10
  import { Website } from './Website';
11
+ import { SeoBacklink } from './SeoBacklink';
11
12
  import { Aggregate } from './Aggregate';
12
13
  import { Publishable } from './Publishable';
13
14
  import { Softable } from './Softable';
@@ -43,10 +44,12 @@ export interface Product extends Publishable, Softable {
43
44
  creator?: User;
44
45
  website?: Website;
45
46
  relatedByPovit?: ProductRelatedPivot[];
47
+ backlinks?: SeoBacklink[];
46
48
  tagsAggregate?: Aggregate;
47
49
  mediaPivotsAggregate?: Aggregate;
48
50
  attachmentPivotsAggregate?: Aggregate;
49
51
  faqsAggregate?: Aggregate;
50
52
  relatedPivotsAggregate?: Aggregate;
51
53
  relatedByPovitAggregate?: Aggregate;
54
+ backlinksAggregate?: Aggregate;
52
55
  }
@@ -14,6 +14,7 @@ import { FAQBoolExp } from './FAQBoolExp';
14
14
  import { ProductRelatedPivotBoolExp } from './ProductRelatedPivotBoolExp';
15
15
  import { UserBoolExp } from './UserBoolExp';
16
16
  import { WebsiteBoolExp } from './WebsiteBoolExp';
17
+ import { SeoBacklinkBoolExp } from './SeoBacklinkBoolExp';
17
18
 
18
19
  export interface ProductBoolExp extends PublishableBoolExp, SoftableBoolExp {
19
20
  _and?: ProductBoolExp[];
@@ -41,4 +42,5 @@ export interface ProductBoolExp extends PublishableBoolExp, SoftableBoolExp {
41
42
  creator?: UserBoolExp;
42
43
  website?: WebsiteBoolExp;
43
44
  relatedByPovit?: ProductRelatedPivotBoolExp;
45
+ backlinks?: SeoBacklinkBoolExp;
44
46
  }
@@ -9,6 +9,7 @@ import { FAQInput } from './FAQInput';
9
9
  import { ProductRelatedPivotInput } from './ProductRelatedPivotInput';
10
10
  import { UserInput } from './UserInput';
11
11
  import { WebsiteInput } from './WebsiteInput';
12
+ import { SeoBacklinkInput } from './SeoBacklinkInput';
12
13
  import { SetHasMany, SetHasOne } from '@rxdrag/entify-lib';
13
14
  import { Publishable } from './Publishable';
14
15
  import { Softable } from './Softable';
@@ -42,6 +43,7 @@ export interface ProductInput extends Publishable, Softable {
42
43
  creator?: SetHasOne<UserInput>;
43
44
  website?: SetHasOne<WebsiteInput>;
44
45
  relatedByPovit?: SetHasMany<ProductRelatedPivotInput>;
46
+ backlinks?: SetHasMany<SeoBacklinkInput>;
45
47
  }
46
48
  export declare const productToInputCascade: (entity: Product) => ProductInput;
47
49
  export declare const productToInput: (entity: Product) => ProductInput;
@@ -0,0 +1,26 @@
1
+ import { Post } from './Post';
2
+ import { Product } from './Product';
3
+ import { Website } from './Website';
4
+
5
+ export declare const SeoBacklinkEntityName = "SeoBacklink";
6
+ export declare const SeoBacklinkEntityLabel = "";
7
+ export interface SeoBacklink {
8
+ id?: string | null;
9
+ url?: string;
10
+ anchorText?: string;
11
+ sourceDomain?: string;
12
+ targetPath?: string;
13
+ status?: string;
14
+ rel?: string;
15
+ domainAuthority?: number;
16
+ firstSeenAt?: Date;
17
+ lastCheckedAt?: Date;
18
+ createdAt?: Date;
19
+ updatedAt?: Date;
20
+ contactEmail?: string;
21
+ contactedAt?: Date;
22
+ notes?: string;
23
+ post?: Post;
24
+ product?: Product;
25
+ website?: Website;
26
+ }
@@ -0,0 +1,31 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { NumberComparisonExp } from './NumberComparisonExp';
4
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
5
+ import { PostBoolExp } from './PostBoolExp';
6
+ import { ProductBoolExp } from './ProductBoolExp';
7
+ import { WebsiteBoolExp } from './WebsiteBoolExp';
8
+
9
+ export interface SeoBacklinkBoolExp {
10
+ _and?: SeoBacklinkBoolExp[];
11
+ _or?: SeoBacklinkBoolExp[];
12
+ _not?: SeoBacklinkBoolExp;
13
+ id?: IdComparisonExp;
14
+ url?: StringComparisonExp;
15
+ anchorText?: StringComparisonExp;
16
+ sourceDomain?: StringComparisonExp;
17
+ targetPath?: StringComparisonExp;
18
+ status?: StringComparisonExp;
19
+ rel?: StringComparisonExp;
20
+ domainAuthority?: NumberComparisonExp;
21
+ firstSeenAt?: DateTimeComparisonExp;
22
+ lastCheckedAt?: DateTimeComparisonExp;
23
+ createdAt?: DateTimeComparisonExp;
24
+ updatedAt?: DateTimeComparisonExp;
25
+ contactEmail?: StringComparisonExp;
26
+ contactedAt?: DateTimeComparisonExp;
27
+ notes?: StringComparisonExp;
28
+ post?: PostBoolExp;
29
+ product?: ProductBoolExp;
30
+ website?: WebsiteBoolExp;
31
+ }
@@ -0,0 +1,18 @@
1
+ export declare enum SeoBacklinkDistinctEnum {
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 type SeoBacklinkDistinctExp = SeoBacklinkDistinctEnum;
@@ -0,0 +1,28 @@
1
+ import { SeoBacklink } from './SeoBacklink';
2
+ import { PostInput } from './PostInput';
3
+ import { ProductInput } from './ProductInput';
4
+ import { WebsiteInput } from './WebsiteInput';
5
+ import { SetHasOne } from '@rxdrag/entify-lib';
6
+
7
+ export interface SeoBacklinkInput {
8
+ id?: string | null;
9
+ url?: string;
10
+ anchorText?: string;
11
+ sourceDomain?: string;
12
+ targetPath?: string;
13
+ status?: string;
14
+ rel?: string;
15
+ domainAuthority?: number;
16
+ firstSeenAt?: Date;
17
+ lastCheckedAt?: Date;
18
+ createdAt?: Date;
19
+ updatedAt?: Date;
20
+ contactEmail?: string;
21
+ contactedAt?: Date;
22
+ notes?: string;
23
+ post?: SetHasOne<PostInput>;
24
+ product?: SetHasOne<ProductInput>;
25
+ website?: SetHasOne<WebsiteInput>;
26
+ }
27
+ export declare const seoBacklinkToInputCascade: (entity: SeoBacklink) => SeoBacklinkInput;
28
+ export declare const seoBacklinkToInput: (entity: SeoBacklink) => SeoBacklinkInput;
@@ -0,0 +1,19 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+
3
+ export interface SeoBacklinkOrderBy {
4
+ id?: OrderBy;
5
+ url?: OrderBy;
6
+ anchorText?: OrderBy;
7
+ sourceDomain?: OrderBy;
8
+ targetPath?: OrderBy;
9
+ status?: OrderBy;
10
+ rel?: OrderBy;
11
+ domainAuthority?: OrderBy;
12
+ firstSeenAt?: OrderBy;
13
+ lastCheckedAt?: OrderBy;
14
+ createdAt?: OrderBy;
15
+ updatedAt?: OrderBy;
16
+ contactEmail?: OrderBy;
17
+ contactedAt?: OrderBy;
18
+ notes?: OrderBy;
19
+ }
@@ -0,0 +1,20 @@
1
+ import { SeoKeywordCluster } from './SeoKeywordCluster';
2
+
3
+ export declare const SeoKeywordEntityName = "SeoKeyword";
4
+ export declare const SeoKeywordEntityLabel = "";
5
+ export interface SeoKeyword {
6
+ id?: string | null;
7
+ keyword?: string;
8
+ searchIntent?: string;
9
+ volume?: number;
10
+ difficulty?: number;
11
+ priority?: number;
12
+ status?: string;
13
+ createdAt?: Date;
14
+ updatedAt?: Date;
15
+ isPrimary?: boolean;
16
+ url?: string;
17
+ funnelStage?: string;
18
+ keywordType?: string;
19
+ cluster?: SeoKeywordCluster;
20
+ }
@@ -0,0 +1,26 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { NumberComparisonExp } from './NumberComparisonExp';
4
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
5
+ import { BooleanComparisonExp } from './BooleanComparisonExp';
6
+ import { SeoKeywordClusterBoolExp } from './SeoKeywordClusterBoolExp';
7
+
8
+ export interface SeoKeywordBoolExp {
9
+ _and?: SeoKeywordBoolExp[];
10
+ _or?: SeoKeywordBoolExp[];
11
+ _not?: SeoKeywordBoolExp;
12
+ id?: IdComparisonExp;
13
+ keyword?: StringComparisonExp;
14
+ searchIntent?: StringComparisonExp;
15
+ volume?: NumberComparisonExp;
16
+ difficulty?: NumberComparisonExp;
17
+ priority?: NumberComparisonExp;
18
+ status?: StringComparisonExp;
19
+ createdAt?: DateTimeComparisonExp;
20
+ updatedAt?: DateTimeComparisonExp;
21
+ isPrimary?: BooleanComparisonExp;
22
+ url?: StringComparisonExp;
23
+ funnelStage?: StringComparisonExp;
24
+ keywordType?: StringComparisonExp;
25
+ cluster?: SeoKeywordClusterBoolExp;
26
+ }
@@ -0,0 +1,19 @@
1
+ import { SeoKeyword } from './SeoKeyword';
2
+ import { Lang } from './Lang';
3
+ import { Website } from './Website';
4
+ import { Aggregate } from './Aggregate';
5
+
6
+ export declare const SeoKeywordClusterEntityName = "SeoKeywordCluster";
7
+ export declare const SeoKeywordClusterEntityLabel = "";
8
+ export interface SeoKeywordCluster {
9
+ id?: string | null;
10
+ name?: string;
11
+ summary?: string;
12
+ status?: string;
13
+ createdAt?: Date;
14
+ updatedAt?: Date;
15
+ seoKeywords?: SeoKeyword[];
16
+ lang?: Lang;
17
+ website?: Website;
18
+ seoKeywordsAggregate?: Aggregate;
19
+ }
@@ -0,0 +1,21 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
+ import { SeoKeywordBoolExp } from './SeoKeywordBoolExp';
5
+ import { LangBoolExp } from './LangBoolExp';
6
+ import { WebsiteBoolExp } from './WebsiteBoolExp';
7
+
8
+ export interface SeoKeywordClusterBoolExp {
9
+ _and?: SeoKeywordClusterBoolExp[];
10
+ _or?: SeoKeywordClusterBoolExp[];
11
+ _not?: SeoKeywordClusterBoolExp;
12
+ id?: IdComparisonExp;
13
+ name?: StringComparisonExp;
14
+ summary?: StringComparisonExp;
15
+ status?: StringComparisonExp;
16
+ createdAt?: DateTimeComparisonExp;
17
+ updatedAt?: DateTimeComparisonExp;
18
+ seoKeywords?: SeoKeywordBoolExp;
19
+ lang?: LangBoolExp;
20
+ website?: WebsiteBoolExp;
21
+ }
@@ -0,0 +1,9 @@
1
+ export declare enum SeoKeywordClusterDistinctEnum {
2
+ id = "id",
3
+ name = "name",
4
+ summary = "summary",
5
+ status = "status",
6
+ createdAt = "createdAt",
7
+ updatedAt = "updatedAt"
8
+ }
9
+ export type SeoKeywordClusterDistinctExp = SeoKeywordClusterDistinctEnum;
@@ -0,0 +1,19 @@
1
+ import { SeoKeywordCluster } from './SeoKeywordCluster';
2
+ import { SeoKeywordInput } from './SeoKeywordInput';
3
+ import { LangInput } from './LangInput';
4
+ import { WebsiteInput } from './WebsiteInput';
5
+ import { SetHasMany, SetHasOne } from '@rxdrag/entify-lib';
6
+
7
+ export interface SeoKeywordClusterInput {
8
+ id?: string | null;
9
+ name?: string;
10
+ summary?: string;
11
+ status?: string;
12
+ createdAt?: Date;
13
+ updatedAt?: Date;
14
+ seoKeywords?: SetHasMany<SeoKeywordInput>;
15
+ lang?: SetHasOne<LangInput>;
16
+ website?: SetHasOne<WebsiteInput>;
17
+ }
18
+ export declare const seoKeywordClusterToInputCascade: (entity: SeoKeywordCluster) => SeoKeywordClusterInput;
19
+ export declare const seoKeywordClusterToInput: (entity: SeoKeywordCluster) => SeoKeywordClusterInput;
@@ -0,0 +1,10 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+
3
+ export interface SeoKeywordClusterOrderBy {
4
+ id?: OrderBy;
5
+ name?: OrderBy;
6
+ summary?: OrderBy;
7
+ status?: OrderBy;
8
+ createdAt?: OrderBy;
9
+ updatedAt?: OrderBy;
10
+ }
@@ -0,0 +1,16 @@
1
+ export declare enum SeoKeywordDistinctEnum {
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 type SeoKeywordDistinctExp = SeoKeywordDistinctEnum;
@@ -0,0 +1,22 @@
1
+ import { SeoKeyword } from './SeoKeyword';
2
+ import { SeoKeywordClusterInput } from './SeoKeywordClusterInput';
3
+ import { SetHasOne } from '@rxdrag/entify-lib';
4
+
5
+ export interface SeoKeywordInput {
6
+ id?: string | null;
7
+ keyword?: string;
8
+ searchIntent?: string;
9
+ volume?: number;
10
+ difficulty?: number;
11
+ priority?: number;
12
+ status?: string;
13
+ createdAt?: Date;
14
+ updatedAt?: Date;
15
+ isPrimary?: boolean;
16
+ url?: string;
17
+ funnelStage?: string;
18
+ keywordType?: string;
19
+ cluster?: SetHasOne<SeoKeywordClusterInput>;
20
+ }
21
+ export declare const seoKeywordToInputCascade: (entity: SeoKeyword) => SeoKeywordInput;
22
+ export declare const seoKeywordToInput: (entity: SeoKeyword) => SeoKeywordInput;
@@ -0,0 +1,17 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+
3
+ export interface SeoKeywordOrderBy {
4
+ id?: OrderBy;
5
+ keyword?: OrderBy;
6
+ searchIntent?: OrderBy;
7
+ volume?: OrderBy;
8
+ difficulty?: OrderBy;
9
+ priority?: OrderBy;
10
+ status?: OrderBy;
11
+ createdAt?: OrderBy;
12
+ updatedAt?: OrderBy;
13
+ isPrimary?: OrderBy;
14
+ url?: OrderBy;
15
+ funnelStage?: OrderBy;
16
+ keywordType?: OrderBy;
17
+ }
@@ -23,6 +23,8 @@ import { AgentThread } from './AgentThread';
23
23
  import { TempFile } from './TempFile';
24
24
  import { AgentMemoFolder } from './AgentMemoFolder';
25
25
  import { AgentMemoFile } from './AgentMemoFile';
26
+ import { SeoKeywordCluster } from './SeoKeywordCluster';
27
+ import { SeoBacklink } from './SeoBacklink';
26
28
  import { Aggregate } from './Aggregate';
27
29
 
28
30
  export declare const WebsiteEntityName = "Website";
@@ -63,6 +65,7 @@ export interface Website {
63
65
  updatedBy?: string | null;
64
66
  description?: string;
65
67
  title?: string;
68
+ studioVersion?: string;
66
69
  websiteType?: WebsiteType;
67
70
  owner?: User;
68
71
  users?: User[];
@@ -90,6 +93,8 @@ export interface Website {
90
93
  tempFiles?: TempFile[];
91
94
  memoFolders?: AgentMemoFolder[];
92
95
  memoFiles?: AgentMemoFile[];
96
+ keywordClusters?: SeoKeywordCluster[];
97
+ backLinks?: SeoBacklink[];
93
98
  mockBranch?: ThemeBranch;
94
99
  usersAggregate?: Aggregate;
95
100
  partsOfMediaFolderAggregate?: Aggregate;
@@ -112,4 +117,6 @@ export interface Website {
112
117
  tempFilesAggregate?: Aggregate;
113
118
  memoFoldersAggregate?: Aggregate;
114
119
  memoFilesAggregate?: Aggregate;
120
+ keywordClustersAggregate?: Aggregate;
121
+ backLinksAggregate?: Aggregate;
115
122
  }
@@ -26,6 +26,8 @@ import { AgentThreadBoolExp } from './AgentThreadBoolExp';
26
26
  import { TempFileBoolExp } from './TempFileBoolExp';
27
27
  import { AgentMemoFolderBoolExp } from './AgentMemoFolderBoolExp';
28
28
  import { AgentMemoFileBoolExp } from './AgentMemoFileBoolExp';
29
+ import { SeoKeywordClusterBoolExp } from './SeoKeywordClusterBoolExp';
30
+ import { SeoBacklinkBoolExp } from './SeoBacklinkBoolExp';
29
31
 
30
32
  /**
31
33
  * 站点
@@ -45,6 +47,7 @@ export interface WebsiteBoolExp {
45
47
  updatedBy?: IdComparisonExp;
46
48
  description?: StringComparisonExp;
47
49
  title?: StringComparisonExp;
50
+ studioVersion?: StringComparisonExp;
48
51
  websiteType?: WebsiteTypeBoolExp;
49
52
  owner?: UserBoolExp;
50
53
  users?: UserBoolExp;
@@ -72,5 +75,7 @@ export interface WebsiteBoolExp {
72
75
  tempFiles?: TempFileBoolExp;
73
76
  memoFolders?: AgentMemoFolderBoolExp;
74
77
  memoFiles?: AgentMemoFileBoolExp;
78
+ keywordClusters?: SeoKeywordClusterBoolExp;
79
+ backLinks?: SeoBacklinkBoolExp;
75
80
  mockBranch?: ThemeBranchBoolExp;
76
81
  }
@@ -29,6 +29,7 @@ export declare enum WebsiteDistinctEnum {
29
29
  */
30
30
  updatedBy = "updatedBy",
31
31
  description = "description",
32
- title = "title"
32
+ title = "title",
33
+ studioVersion = "studioVersion"
33
34
  }
34
35
  export type WebsiteDistinctExp = WebsiteDistinctEnum;
@@ -24,6 +24,8 @@ import { AgentThreadInput } from './AgentThreadInput';
24
24
  import { TempFileInput } from './TempFileInput';
25
25
  import { AgentMemoFolderInput } from './AgentMemoFolderInput';
26
26
  import { AgentMemoFileInput } from './AgentMemoFileInput';
27
+ import { SeoKeywordClusterInput } from './SeoKeywordClusterInput';
28
+ import { SeoBacklinkInput } from './SeoBacklinkInput';
27
29
  import { SetHasMany, SetHasOne } from '@rxdrag/entify-lib';
28
30
 
29
31
  /**
@@ -62,6 +64,7 @@ export interface WebsiteInput {
62
64
  updatedBy?: string | null;
63
65
  description?: string;
64
66
  title?: string;
67
+ studioVersion?: string;
65
68
  websiteType?: SetHasOne<WebsiteTypeInput>;
66
69
  owner?: SetHasOne<UserInput>;
67
70
  users?: SetHasMany<UserInput>;
@@ -89,6 +92,8 @@ export interface WebsiteInput {
89
92
  tempFiles?: SetHasMany<TempFileInput>;
90
93
  memoFolders?: SetHasMany<AgentMemoFolderInput>;
91
94
  memoFiles?: SetHasMany<AgentMemoFileInput>;
95
+ keywordClusters?: SetHasMany<SeoKeywordClusterInput>;
96
+ backLinks?: SetHasMany<SeoBacklinkInput>;
92
97
  mockBranch?: SetHasOne<ThemeBranchInput>;
93
98
  }
94
99
  export declare const websiteToInputCascade: (entity: Website) => WebsiteInput;
@@ -36,4 +36,5 @@ export interface WebsiteOrderBy {
36
36
  updatedBy?: OrderBy;
37
37
  description?: OrderBy;
38
38
  title?: OrderBy;
39
+ studioVersion?: OrderBy;
39
40
  }
@@ -321,3 +321,18 @@ export * from './AgentMemoFolderInput';
321
321
  export * from './AgentMemoFolderBoolExp';
322
322
  export * from './AgentMemoFolderOrderBy';
323
323
  export * from './AgentMemoFolderDistinctExp';
324
+ export * from './SeoKeywordCluster';
325
+ export * from './SeoKeywordClusterInput';
326
+ export * from './SeoKeywordClusterBoolExp';
327
+ export * from './SeoKeywordClusterOrderBy';
328
+ export * from './SeoKeywordClusterDistinctExp';
329
+ export * from './SeoKeyword';
330
+ export * from './SeoKeywordInput';
331
+ export * from './SeoKeywordBoolExp';
332
+ export * from './SeoKeywordOrderBy';
333
+ export * from './SeoKeywordDistinctExp';
334
+ export * from './SeoBacklink';
335
+ export * from './SeoBacklinkInput';
336
+ export * from './SeoBacklinkBoolExp';
337
+ export * from './SeoBacklinkOrderBy';
338
+ export * from './SeoBacklinkDistinctExp';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/rxcms-models",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "files": [
@@ -12,8 +12,8 @@
12
12
  "devDependencies": {
13
13
  "eslint": "^9.39.2",
14
14
  "typescript": "^5",
15
- "@rxdrag/eslint-config-custom": "0.3.0",
16
- "@rxdrag/tsconfig": "0.3.0"
15
+ "@rxdrag/tsconfig": "0.3.0",
16
+ "@rxdrag/eslint-config-custom": "0.3.0"
17
17
  },
18
18
  "dependencies": {
19
19
  "@rxdrag/entify-lib": "0.1.0"