@rxdrag/rxcms-models 0.3.93 → 0.3.95

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.
@@ -16,9 +16,6 @@ import { PostBoolExp } from '../interfaces';
16
16
  import { PostCategoryQueryOptions } from './PostCategoryQueryOptions';
17
17
  import { PostCategory } from '../interfaces';
18
18
  import { PostCategoryBoolExp } from '../interfaces';
19
- import { TagQueryOptions } from './TagQueryOptions';
20
- import { Tag } from '../interfaces';
21
- import { TagBoolExp } from '../interfaces';
22
19
  import { CustomerQueryOptions } from './CustomerQueryOptions';
23
20
  import { Customer } from '../interfaces';
24
21
  import { CustomerBoolExp } from '../interfaces';
@@ -40,6 +37,9 @@ import { ThemeBranchBoolExp } from '../interfaces';
40
37
  import { BulletinQueryOptions } from './BulletinQueryOptions';
41
38
  import { Bulletin } from '../interfaces';
42
39
  import { BulletinBoolExp } from '../interfaces';
40
+ import { TagQueryOptions } from './TagQueryOptions';
41
+ import { Tag } from '../interfaces';
42
+ import { TagBoolExp } from '../interfaces';
43
43
  export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, LangOrderBy, LangDistinctExp> {
44
44
  constructor(fields?: (keyof Lang)[], queryArgs?: IQueryArgs<LangBoolExp, LangOrderBy, LangDistinctExp>);
45
45
  id(): this;
@@ -77,8 +77,6 @@ export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, La
77
77
  webPartsOfPostAggregate(aggregate: IAggregate<PostBoolExp>): this;
78
78
  webPartsOfPostCategory(options?: PostCategoryQueryOptions | (keyof PostCategory)[]): this;
79
79
  webPartsOfPostCategoryAggregate(aggregate: IAggregate<PostCategoryBoolExp>): this;
80
- webPartsOfTag(options?: TagQueryOptions | (keyof Tag)[]): this;
81
- webPartsOfTagAggregate(aggregate: IAggregate<TagBoolExp>): this;
82
80
  webPartsOfCustomer(options?: CustomerQueryOptions | (keyof Customer)[]): this;
83
81
  webPartsOfCustomerAggregate(aggregate: IAggregate<CustomerBoolExp>): this;
84
82
  webPartsOfProductCategory(options?: ProductCategoryQueryOptions | (keyof ProductCategory)[]): this;
@@ -95,4 +93,6 @@ export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, La
95
93
  themesAggregate(aggregate: IAggregate<ThemeBranchBoolExp>): this;
96
94
  bulletins(options?: BulletinQueryOptions | (keyof Bulletin)[]): this;
97
95
  bulletinsAggregate(aggregate: IAggregate<BulletinBoolExp>): this;
96
+ tags(options?: TagQueryOptions | (keyof Tag)[]): this;
97
+ tagsAggregate(aggregate: IAggregate<TagBoolExp>): this;
98
98
  }
@@ -0,0 +1,16 @@
1
+ import { IQueryArgs } from "@rxdrag/entify-lib";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { SvgIcon, SvgIconBoolExp, SvgIconDistinctExp, SvgIconOrderBy } from "../interfaces";
4
+ import { WebsiteQueryOptions } from './WebsiteQueryOptions';
5
+ import { Website } from '../interfaces';
6
+ export declare class SvgIconQueryOptions extends QueryOptions<SvgIcon, SvgIconBoolExp, SvgIconOrderBy, SvgIconDistinctExp> {
7
+ constructor(fields?: (keyof SvgIcon)[], queryArgs?: IQueryArgs<SvgIconBoolExp, SvgIconOrderBy, SvgIconDistinctExp>);
8
+ id(): this;
9
+ name(): this;
10
+ title(): this;
11
+ code(): this;
12
+ description(): this;
13
+ createdAt(): this;
14
+ updatedAt(): this;
15
+ website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
16
+ }
@@ -19,9 +19,8 @@ export declare class TagQueryOptions extends QueryOptions<Tag, TagBoolExp, TagOr
19
19
  */
20
20
  name(): this;
21
21
  color(): this;
22
- createdAt(): this;
23
22
  updatedAt(): this;
24
- content(): this;
23
+ createdAt(): this;
25
24
  lang(options?: LangQueryOptions | (keyof Lang)[]): this;
26
25
  posts(options?: PostQueryOptions | (keyof Post)[]): this;
27
26
  postsAggregate(aggregate: IAggregate<PostBoolExp>): this;
@@ -21,9 +21,6 @@ import { PostBoolExp } from '../interfaces';
21
21
  import { PostCategoryQueryOptions } from './PostCategoryQueryOptions';
22
22
  import { PostCategory } from '../interfaces';
23
23
  import { PostCategoryBoolExp } from '../interfaces';
24
- import { TagQueryOptions } from './TagQueryOptions';
25
- import { Tag } from '../interfaces';
26
- import { TagBoolExp } from '../interfaces';
27
24
  import { CustomerQueryOptions } from './CustomerQueryOptions';
28
25
  import { Customer } from '../interfaces';
29
26
  import { CustomerBoolExp } from '../interfaces';
@@ -61,6 +58,12 @@ import { WebsiteSnapshotBoolExp } from '../interfaces';
61
58
  import { UserOperationQueryOptions } from './UserOperationQueryOptions';
62
59
  import { UserOperation } from '../interfaces';
63
60
  import { UserOperationBoolExp } from '../interfaces';
61
+ import { SvgIconQueryOptions } from './SvgIconQueryOptions';
62
+ import { SvgIcon } from '../interfaces';
63
+ import { SvgIconBoolExp } from '../interfaces';
64
+ import { TagQueryOptions } from './TagQueryOptions';
65
+ import { Tag } from '../interfaces';
66
+ import { TagBoolExp } from '../interfaces';
64
67
  export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
65
68
  constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
66
69
  id(): this;
@@ -108,8 +111,6 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
108
111
  partsOfPostAggregate(aggregate: IAggregate<PostBoolExp>): this;
109
112
  partsOfPostCategory(options?: PostCategoryQueryOptions | (keyof PostCategory)[]): this;
110
113
  partsOfPostCategoryAggregate(aggregate: IAggregate<PostCategoryBoolExp>): this;
111
- partsOfTag(options?: TagQueryOptions | (keyof Tag)[]): this;
112
- partsOfTagAggregate(aggregate: IAggregate<TagBoolExp>): this;
113
114
  partsOfCustomer(options?: CustomerQueryOptions | (keyof Customer)[]): this;
114
115
  partsOfCustomerAggregate(aggregate: IAggregate<CustomerBoolExp>): this;
115
116
  partsOfProductCategory(options?: ProductCategoryQueryOptions | (keyof ProductCategory)[]): this;
@@ -135,5 +136,9 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
135
136
  snapshotsAggregate(aggregate: IAggregate<WebsiteSnapshotBoolExp>): this;
136
137
  userOperations(options?: UserOperationQueryOptions | (keyof UserOperation)[]): this;
137
138
  userOperationsAggregate(aggregate: IAggregate<UserOperationBoolExp>): this;
139
+ svgIcons(options?: SvgIconQueryOptions | (keyof SvgIcon)[]): this;
140
+ svgIconsAggregate(aggregate: IAggregate<SvgIconBoolExp>): this;
141
+ tags(options?: TagQueryOptions | (keyof Tag)[]): this;
142
+ tagsAggregate(aggregate: IAggregate<TagBoolExp>): this;
138
143
  mockBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
139
144
  }
@@ -44,5 +44,6 @@ export * from './WebsiteSnapshotQueryOptions';
44
44
  export * from './VisitorLogQueryOptions';
45
45
  export * from './UserOperationQueryOptions';
46
46
  export * from './ThemeQueryOptions';
47
+ export * from './SvgIconQueryOptions';
47
48
  export * from './QueryOptions';
48
49
  export * from './metainfo';
@@ -44,3 +44,4 @@ export * from './websiteSnapshotEntry';
44
44
  export * from './visitorLogEntry';
45
45
  export * from './userOperationEntry';
46
46
  export * from './themeEntry';
47
+ export * from './svgIconEntry';
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const svgIconEntry: EntityEntry;
@@ -36,8 +36,6 @@ export declare enum LangAssciations {
36
36
  webPartsOfPostAggregate = "webPartsOfPostAggregate",
37
37
  webPartsOfPostCategory = "webPartsOfPostCategory",
38
38
  webPartsOfPostCategoryAggregate = "webPartsOfPostCategoryAggregate",
39
- webPartsOfTag = "webPartsOfTag",
40
- webPartsOfTagAggregate = "webPartsOfTagAggregate",
41
39
  webPartsOfCustomer = "webPartsOfCustomer",
42
40
  webPartsOfCustomerAggregate = "webPartsOfCustomerAggregate",
43
41
  webPartsOfProductCategory = "webPartsOfProductCategory",
@@ -53,5 +51,7 @@ export declare enum LangAssciations {
53
51
  themes = "themes",
54
52
  themesAggregate = "themesAggregate",
55
53
  bulletins = "bulletins",
56
- bulletinsAggregate = "bulletinsAggregate"
54
+ bulletinsAggregate = "bulletinsAggregate",
55
+ tags = "tags",
56
+ tagsAggregate = "tagsAggregate"
57
57
  }
@@ -0,0 +1,12 @@
1
+ export declare enum SvgIconFields {
2
+ id = "id",
3
+ name = "name",
4
+ title = "title",
5
+ code = "code",
6
+ description = "description",
7
+ createdAt = "createdAt",
8
+ updatedAt = "updatedAt"
9
+ }
10
+ export declare enum SvgIconAssciations {
11
+ website = "website"
12
+ }
@@ -5,9 +5,8 @@ export declare enum TagFields {
5
5
  */
6
6
  name = "name",
7
7
  color = "color",
8
- createdAt = "createdAt",
9
8
  updatedAt = "updatedAt",
10
- content = "content"
9
+ createdAt = "createdAt"
11
10
  }
12
11
  export declare enum TagAssciations {
13
12
  lang = "lang",
@@ -46,8 +46,6 @@ export declare enum WebsiteAssciations {
46
46
  partsOfPostAggregate = "partsOfPostAggregate",
47
47
  partsOfPostCategory = "partsOfPostCategory",
48
48
  partsOfPostCategoryAggregate = "partsOfPostCategoryAggregate",
49
- partsOfTag = "partsOfTag",
50
- partsOfTagAggregate = "partsOfTagAggregate",
51
49
  partsOfCustomer = "partsOfCustomer",
52
50
  partsOfCustomerAggregate = "partsOfCustomerAggregate",
53
51
  partsOfProductCategory = "partsOfProductCategory",
@@ -73,5 +71,9 @@ export declare enum WebsiteAssciations {
73
71
  snapshotsAggregate = "snapshotsAggregate",
74
72
  userOperations = "userOperations",
75
73
  userOperationsAggregate = "userOperationsAggregate",
74
+ svgIcons = "svgIcons",
75
+ svgIconsAggregate = "svgIconsAggregate",
76
+ tags = "tags",
77
+ tagsAggregate = "tagsAggregate",
76
78
  mockBranch = "mockBranch"
77
79
  }
@@ -44,3 +44,4 @@ export * from './WebsiteSnapshotFields';
44
44
  export * from './VisitorLogFields';
45
45
  export * from './UserOperationFields';
46
46
  export * from './ThemeFields';
47
+ export * from './SvgIconFields';