@rxdrag/rxcms-models 0.3.95 → 0.3.96
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/MediaQueryOptions.d.ts +0 -5
- package/dist/classes/ThemeBranchQueryOptions.d.ts +10 -10
- package/dist/classes/ThemeFileFolderQueryOptions.d.ts +21 -0
- package/dist/classes/ThemeFileQueryOptions.d.ts +22 -0
- package/dist/classes/index.d.ts +2 -2
- package/dist/entries/index.d.ts +2 -2
- package/dist/entries/themeFileEntry.d.ts +2 -0
- package/dist/entries/themeFileFolderEntry.d.ts +2 -0
- package/dist/fields/MediaFields.d.ts +0 -2
- package/dist/fields/ThemeBranchFields.d.ts +4 -4
- package/dist/fields/ThemeFileFields.d.ts +16 -0
- package/dist/fields/ThemeFileFolderFields.d.ts +14 -0
- package/dist/fields/index.d.ts +2 -2
- package/dist/index.mjs +234 -226
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Media.d.ts +0 -3
- package/dist/interfaces/MediaBoolExp.d.ts +0 -2
- package/dist/interfaces/MediaInput.d.ts +0 -2
- package/dist/interfaces/ThemeBranch.d.ts +6 -6
- package/dist/interfaces/ThemeBranchBoolExp.d.ts +4 -4
- package/dist/interfaces/ThemeBranchInput.d.ts +4 -4
- package/dist/interfaces/ThemeFile.d.ts +19 -0
- package/dist/interfaces/{TemplateCategoryBoolExp.d.ts → ThemeFileBoolExp.d.ts} +14 -11
- package/dist/interfaces/ThemeFileDistinctExp.d.ts +13 -0
- package/dist/interfaces/ThemeFileFolder.d.ts +17 -0
- package/dist/interfaces/ThemeFileFolderBoolExp.d.ts +18 -0
- package/dist/interfaces/ThemeFileFolderDistinctExp.d.ts +7 -0
- package/dist/interfaces/ThemeFileFolderInput.d.ts +17 -0
- package/dist/interfaces/ThemeFileFolderOrderBy.d.ts +7 -0
- package/dist/interfaces/ThemeFileInput.d.ts +21 -0
- package/dist/interfaces/ThemeFileOrderBy.d.ts +13 -0
- package/dist/interfaces/index.d.ts +10 -10
- package/package.json +1 -1
- package/dist/classes/SectionTemplateQueryOptions.d.ts +0 -22
- package/dist/classes/TemplateCategoryQueryOptions.d.ts +0 -20
- package/dist/entries/sectionTemplateEntry.d.ts +0 -2
- package/dist/entries/templateCategoryEntry.d.ts +0 -2
- package/dist/fields/SectionTemplateFields.d.ts +0 -14
- package/dist/fields/TemplateCategoryFields.d.ts +0 -13
- package/dist/interfaces/SectionTemplate.d.ts +0 -17
- package/dist/interfaces/SectionTemplateBoolExp.d.ts +0 -22
- package/dist/interfaces/SectionTemplateDistinctExp.d.ts +0 -10
- package/dist/interfaces/SectionTemplateInput.d.ts +0 -19
- package/dist/interfaces/SectionTemplateOrderBy.d.ts +0 -10
- package/dist/interfaces/TemplateCategory.d.ts +0 -16
- package/dist/interfaces/TemplateCategoryDistinctExp.d.ts +0 -9
- package/dist/interfaces/TemplateCategoryInput.d.ts +0 -17
- package/dist/interfaces/TemplateCategoryOrderBy.d.ts +0 -9
|
@@ -38,9 +38,6 @@ import { WebsiteSnapshotBoolExp } from '../interfaces';
|
|
|
38
38
|
import { FrontComponentQueryOptions } from './FrontComponentQueryOptions';
|
|
39
39
|
import { FrontComponent } from '../interfaces';
|
|
40
40
|
import { FrontComponentBoolExp } from '../interfaces';
|
|
41
|
-
import { SectionTemplateQueryOptions } from './SectionTemplateQueryOptions';
|
|
42
|
-
import { SectionTemplate } from '../interfaces';
|
|
43
|
-
import { SectionTemplateBoolExp } from '../interfaces';
|
|
44
41
|
import { EnquiryQueryOptions } from './EnquiryQueryOptions';
|
|
45
42
|
import { Enquiry } from '../interfaces';
|
|
46
43
|
import { ThemeQueryOptions } from './ThemeQueryOptions';
|
|
@@ -89,8 +86,6 @@ export declare class MediaQueryOptions extends QueryOptions<Media, MediaBoolExp,
|
|
|
89
86
|
snapshotAggregate(aggregate: IAggregate<WebsiteSnapshotBoolExp>): this;
|
|
90
87
|
coverOfComponent(options?: FrontComponentQueryOptions | (keyof FrontComponent)[]): this;
|
|
91
88
|
coverOfComponentAggregate(aggregate: IAggregate<FrontComponentBoolExp>): this;
|
|
92
|
-
coverOfSectionTemplate(options?: SectionTemplateQueryOptions | (keyof SectionTemplate)[]): this;
|
|
93
|
-
coverOfSectionTemplateAggregate(aggregate: IAggregate<SectionTemplateBoolExp>): this;
|
|
94
89
|
attachmentOfEnquiry(options?: EnquiryQueryOptions | (keyof Enquiry)[]): this;
|
|
95
90
|
coverOfTheme(options?: ThemeQueryOptions | (keyof Theme)[]): this;
|
|
96
91
|
owner(options?: UserQueryOptions | (keyof User)[]): this;
|
|
@@ -14,16 +14,16 @@ import { LangQueryOptions } from './LangQueryOptions';
|
|
|
14
14
|
import { Lang } from '../interfaces';
|
|
15
15
|
import { ThemeConfigQueryOptions } from './ThemeConfigQueryOptions';
|
|
16
16
|
import { ThemeConfig } from '../interfaces';
|
|
17
|
-
import { SectionTemplateQueryOptions } from './SectionTemplateQueryOptions';
|
|
18
|
-
import { SectionTemplate } from '../interfaces';
|
|
19
|
-
import { SectionTemplateBoolExp } from '../interfaces';
|
|
20
|
-
import { TemplateCategoryQueryOptions } from './TemplateCategoryQueryOptions';
|
|
21
|
-
import { TemplateCategory } from '../interfaces';
|
|
22
|
-
import { TemplateCategoryBoolExp } from '../interfaces';
|
|
23
17
|
import { StyleConfigQueryOptions } from './StyleConfigQueryOptions';
|
|
24
18
|
import { StyleConfig } from '../interfaces';
|
|
25
19
|
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
26
20
|
import { Website } from '../interfaces';
|
|
21
|
+
import { ThemeFileQueryOptions } from './ThemeFileQueryOptions';
|
|
22
|
+
import { ThemeFile } from '../interfaces';
|
|
23
|
+
import { ThemeFileBoolExp } from '../interfaces';
|
|
24
|
+
import { ThemeFileFolderQueryOptions } from './ThemeFileFolderQueryOptions';
|
|
25
|
+
import { ThemeFileFolder } from '../interfaces';
|
|
26
|
+
import { ThemeFileFolderBoolExp } from '../interfaces';
|
|
27
27
|
import { ThemeVersionQueryOptions } from './ThemeVersionQueryOptions';
|
|
28
28
|
import { ThemeVersion } from '../interfaces';
|
|
29
29
|
import { ThemeQueryOptions } from './ThemeQueryOptions';
|
|
@@ -50,12 +50,12 @@ export declare class ThemeBranchQueryOptions extends QueryOptions<ThemeBranch, T
|
|
|
50
50
|
pagesAggregate(aggregate: IAggregate<PageBoolExp>): this;
|
|
51
51
|
lang(options?: LangQueryOptions | (keyof Lang)[]): this;
|
|
52
52
|
config(options?: ThemeConfigQueryOptions | (keyof ThemeConfig)[]): this;
|
|
53
|
-
templates(options?: SectionTemplateQueryOptions | (keyof SectionTemplate)[]): this;
|
|
54
|
-
templatesAggregate(aggregate: IAggregate<SectionTemplateBoolExp>): this;
|
|
55
|
-
templateCategories(options?: TemplateCategoryQueryOptions | (keyof TemplateCategory)[]): this;
|
|
56
|
-
templateCategoriesAggregate(aggregate: IAggregate<TemplateCategoryBoolExp>): this;
|
|
57
53
|
styleConfig(options?: StyleConfigQueryOptions | (keyof StyleConfig)[]): this;
|
|
58
54
|
mockWebsite(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
55
|
+
files(options?: ThemeFileQueryOptions | (keyof ThemeFile)[]): this;
|
|
56
|
+
filesAggregate(aggregate: IAggregate<ThemeFileBoolExp>): this;
|
|
57
|
+
folders(options?: ThemeFileFolderQueryOptions | (keyof ThemeFileFolder)[]): this;
|
|
58
|
+
foldersAggregate(aggregate: IAggregate<ThemeFileFolderBoolExp>): this;
|
|
59
59
|
marketVersion(options?: ThemeVersionQueryOptions | (keyof ThemeVersion)[]): this;
|
|
60
60
|
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
61
61
|
belongsToMain(options?: ThemeQueryOptions | (keyof Theme)[]): this;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { IAggregate, IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
+
import { QueryOptions } from "./QueryOptions";
|
|
3
|
+
import { ThemeFileFolder, ThemeFileFolderBoolExp, ThemeFileFolderDistinctExp, ThemeFileFolderOrderBy } from "../interfaces";
|
|
4
|
+
import { ThemeFileQueryOptions } from './ThemeFileQueryOptions';
|
|
5
|
+
import { ThemeFile } from '../interfaces';
|
|
6
|
+
import { ThemeFileBoolExp } from '../interfaces';
|
|
7
|
+
import { ThemeBranchQueryOptions } from './ThemeBranchQueryOptions';
|
|
8
|
+
import { ThemeBranch } from '../interfaces';
|
|
9
|
+
export declare class ThemeFileFolderQueryOptions extends QueryOptions<ThemeFileFolder, ThemeFileFolderBoolExp, ThemeFileFolderOrderBy, ThemeFileFolderDistinctExp> {
|
|
10
|
+
constructor(fields?: (keyof ThemeFileFolder)[], queryArgs?: IQueryArgs<ThemeFileFolderBoolExp, ThemeFileFolderOrderBy, ThemeFileFolderDistinctExp>);
|
|
11
|
+
id(): this;
|
|
12
|
+
name(): this;
|
|
13
|
+
upadteAt(): this;
|
|
14
|
+
createdAt(): this;
|
|
15
|
+
folders(options?: ThemeFileFolderQueryOptions | (keyof ThemeFileFolder)[]): this;
|
|
16
|
+
foldersAggregate(aggregate: IAggregate<ThemeFileFolderBoolExp>): this;
|
|
17
|
+
files(options?: ThemeFileQueryOptions | (keyof ThemeFile)[]): this;
|
|
18
|
+
filesAggregate(aggregate: IAggregate<ThemeFileBoolExp>): this;
|
|
19
|
+
themeBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
20
|
+
parent(options?: ThemeFileFolderQueryOptions | (keyof ThemeFileFolder)[]): this;
|
|
21
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
+
import { QueryOptions } from "./QueryOptions";
|
|
3
|
+
import { ThemeFile, ThemeFileBoolExp, ThemeFileDistinctExp, ThemeFileOrderBy } from "../interfaces";
|
|
4
|
+
import { ThemeBranchQueryOptions } from './ThemeBranchQueryOptions';
|
|
5
|
+
import { ThemeBranch } from '../interfaces';
|
|
6
|
+
import { ThemeFileFolderQueryOptions } from './ThemeFileFolderQueryOptions';
|
|
7
|
+
import { ThemeFileFolder } from '../interfaces';
|
|
8
|
+
export declare class ThemeFileQueryOptions extends QueryOptions<ThemeFile, ThemeFileBoolExp, ThemeFileOrderBy, ThemeFileDistinctExp> {
|
|
9
|
+
constructor(fields?: (keyof ThemeFile)[], queryArgs?: IQueryArgs<ThemeFileBoolExp, ThemeFileOrderBy, ThemeFileDistinctExp>);
|
|
10
|
+
id(): this;
|
|
11
|
+
name(): this;
|
|
12
|
+
code(): this;
|
|
13
|
+
updatedAt(): this;
|
|
14
|
+
createdAt(): this;
|
|
15
|
+
storageMeta(fields: string[]): this;
|
|
16
|
+
size(): this;
|
|
17
|
+
mimelype(): this;
|
|
18
|
+
extName(): this;
|
|
19
|
+
mediaType(): this;
|
|
20
|
+
themeBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
21
|
+
folder(options?: ThemeFileFolderQueryOptions | (keyof ThemeFileFolder)[]): this;
|
|
22
|
+
}
|
package/dist/classes/index.d.ts
CHANGED
|
@@ -29,9 +29,7 @@ export * from './ThemeInMarketQueryOptions';
|
|
|
29
29
|
export * from './ThemeConfigQueryOptions';
|
|
30
30
|
export * from './AnalyticsConfigQueryOptions';
|
|
31
31
|
export * from './PageMetaQueryOptions';
|
|
32
|
-
export * from './SectionTemplateQueryOptions';
|
|
33
32
|
export * from './ThemeCategoryQueryOptions';
|
|
34
|
-
export * from './TemplateCategoryQueryOptions';
|
|
35
33
|
export * from './StyleConfigQueryOptions';
|
|
36
34
|
export * from './ChangeLogQueryOptions';
|
|
37
35
|
export * from './SearchIndexQueryOptions';
|
|
@@ -45,5 +43,7 @@ export * from './VisitorLogQueryOptions';
|
|
|
45
43
|
export * from './UserOperationQueryOptions';
|
|
46
44
|
export * from './ThemeQueryOptions';
|
|
47
45
|
export * from './SvgIconQueryOptions';
|
|
46
|
+
export * from './ThemeFileQueryOptions';
|
|
47
|
+
export * from './ThemeFileFolderQueryOptions';
|
|
48
48
|
export * from './QueryOptions';
|
|
49
49
|
export * from './metainfo';
|
package/dist/entries/index.d.ts
CHANGED
|
@@ -29,9 +29,7 @@ export * from './themeInMarketEntry';
|
|
|
29
29
|
export * from './themeConfigEntry';
|
|
30
30
|
export * from './analyticsConfigEntry';
|
|
31
31
|
export * from './pageMetaEntry';
|
|
32
|
-
export * from './sectionTemplateEntry';
|
|
33
32
|
export * from './themeCategoryEntry';
|
|
34
|
-
export * from './templateCategoryEntry';
|
|
35
33
|
export * from './styleConfigEntry';
|
|
36
34
|
export * from './changeLogEntry';
|
|
37
35
|
export * from './searchIndexEntry';
|
|
@@ -45,3 +43,5 @@ export * from './visitorLogEntry';
|
|
|
45
43
|
export * from './userOperationEntry';
|
|
46
44
|
export * from './themeEntry';
|
|
47
45
|
export * from './svgIconEntry';
|
|
46
|
+
export * from './themeFileEntry';
|
|
47
|
+
export * from './themeFileFolderEntry';
|
|
@@ -43,8 +43,6 @@ export declare enum MediaAssciations {
|
|
|
43
43
|
snapshotAggregate = "snapshotAggregate",
|
|
44
44
|
coverOfComponent = "coverOfComponent",
|
|
45
45
|
coverOfComponentAggregate = "coverOfComponentAggregate",
|
|
46
|
-
coverOfSectionTemplate = "coverOfSectionTemplate",
|
|
47
|
-
coverOfSectionTemplateAggregate = "coverOfSectionTemplateAggregate",
|
|
48
46
|
attachmentOfEnquiry = "attachmentOfEnquiry",
|
|
49
47
|
coverOfTheme = "coverOfTheme",
|
|
50
48
|
owner = "owner"
|
|
@@ -21,12 +21,12 @@ export declare enum ThemeBranchAssciations {
|
|
|
21
21
|
pagesAggregate = "pagesAggregate",
|
|
22
22
|
lang = "lang",
|
|
23
23
|
config = "config",
|
|
24
|
-
templates = "templates",
|
|
25
|
-
templatesAggregate = "templatesAggregate",
|
|
26
|
-
templateCategories = "templateCategories",
|
|
27
|
-
templateCategoriesAggregate = "templateCategoriesAggregate",
|
|
28
24
|
styleConfig = "styleConfig",
|
|
29
25
|
mockWebsite = "mockWebsite",
|
|
26
|
+
files = "files",
|
|
27
|
+
filesAggregate = "filesAggregate",
|
|
28
|
+
folders = "folders",
|
|
29
|
+
foldersAggregate = "foldersAggregate",
|
|
30
30
|
marketVersion = "marketVersion",
|
|
31
31
|
website = "website",
|
|
32
32
|
belongsToMain = "belongsToMain"
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare enum ThemeFileFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
name = "name",
|
|
4
|
+
code = "code",
|
|
5
|
+
updatedAt = "updatedAt",
|
|
6
|
+
createdAt = "createdAt",
|
|
7
|
+
storageMeta = "storageMeta",
|
|
8
|
+
size = "size",
|
|
9
|
+
mimelype = "mimelype",
|
|
10
|
+
extName = "extName",
|
|
11
|
+
mediaType = "mediaType"
|
|
12
|
+
}
|
|
13
|
+
export declare enum ThemeFileAssciations {
|
|
14
|
+
themeBranch = "themeBranch",
|
|
15
|
+
folder = "folder"
|
|
16
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare enum ThemeFileFolderFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
name = "name",
|
|
4
|
+
upadteAt = "upadteAt",
|
|
5
|
+
createdAt = "createdAt"
|
|
6
|
+
}
|
|
7
|
+
export declare enum ThemeFileFolderAssciations {
|
|
8
|
+
folders = "folders",
|
|
9
|
+
foldersAggregate = "foldersAggregate",
|
|
10
|
+
files = "files",
|
|
11
|
+
filesAggregate = "filesAggregate",
|
|
12
|
+
themeBranch = "themeBranch",
|
|
13
|
+
parent = "parent"
|
|
14
|
+
}
|
package/dist/fields/index.d.ts
CHANGED
|
@@ -29,9 +29,7 @@ export * from './ThemeInMarketFields';
|
|
|
29
29
|
export * from './ThemeConfigFields';
|
|
30
30
|
export * from './AnalyticsConfigFields';
|
|
31
31
|
export * from './PageMetaFields';
|
|
32
|
-
export * from './SectionTemplateFields';
|
|
33
32
|
export * from './ThemeCategoryFields';
|
|
34
|
-
export * from './TemplateCategoryFields';
|
|
35
33
|
export * from './StyleConfigFields';
|
|
36
34
|
export * from './ChangeLogFields';
|
|
37
35
|
export * from './SearchIndexFields';
|
|
@@ -45,3 +43,5 @@ export * from './VisitorLogFields';
|
|
|
45
43
|
export * from './UserOperationFields';
|
|
46
44
|
export * from './ThemeFields';
|
|
47
45
|
export * from './SvgIconFields';
|
|
46
|
+
export * from './ThemeFileFields';
|
|
47
|
+
export * from './ThemeFileFolderFields';
|