@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.
- package/dist/classes/LangQueryOptions.d.ts +5 -5
- package/dist/classes/SvgIconQueryOptions.d.ts +16 -0
- package/dist/classes/TagQueryOptions.d.ts +1 -2
- package/dist/classes/WebsiteQueryOptions.d.ts +10 -5
- package/dist/classes/index.d.ts +1 -0
- package/dist/entries/index.d.ts +1 -0
- package/dist/entries/svgIconEntry.d.ts +2 -0
- package/dist/fields/LangFields.d.ts +3 -3
- package/dist/fields/SvgIconFields.d.ts +12 -0
- package/dist/fields/TagFields.d.ts +1 -2
- package/dist/fields/WebsiteFields.d.ts +4 -2
- package/dist/fields/index.d.ts +1 -0
- package/dist/index.mjs +175 -71
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Lang.d.ts +3 -3
- package/dist/interfaces/LangBoolExp.d.ts +2 -2
- package/dist/interfaces/LangInput.d.ts +2 -2
- package/dist/interfaces/SvgIcon.d.ts +13 -0
- package/dist/interfaces/SvgIconBoolExp.d.ts +17 -0
- package/dist/interfaces/SvgIconDistinctExp.d.ts +10 -0
- package/dist/interfaces/SvgIconInput.d.ts +15 -0
- package/dist/interfaces/SvgIconOrderBy.d.ts +10 -0
- package/dist/interfaces/Tag.d.ts +3 -2
- package/dist/interfaces/TagBoolExp.d.ts +4 -2
- package/dist/interfaces/TagDistinctExp.d.ts +2 -4
- package/dist/interfaces/TagInput.d.ts +3 -2
- package/dist/interfaces/TagOrderBy.d.ts +3 -2
- package/dist/interfaces/Website.d.ts +6 -3
- package/dist/interfaces/WebsiteBoolExp.d.ts +4 -2
- package/dist/interfaces/WebsiteInput.d.ts +4 -2
- package/dist/interfaces/index.d.ts +5 -0
- package/package.json +4 -4
|
@@ -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
|
-
|
|
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
|
}
|
package/dist/classes/index.d.ts
CHANGED
|
@@ -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';
|
package/dist/entries/index.d.ts
CHANGED
|
@@ -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
|
+
}
|
|
@@ -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
|
}
|
package/dist/fields/index.d.ts
CHANGED