@rxdrag/rxcms-models 0.3.95 → 0.3.97
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 +235 -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/MediaType.d.ts +5 -1
- 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 +5 -5
- 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
|
@@ -14,7 +14,6 @@ import { PageMeta } from './PageMeta';
|
|
|
14
14
|
import { SearchIndex } from './SearchIndex';
|
|
15
15
|
import { WebsiteSnapshot } from './WebsiteSnapshot';
|
|
16
16
|
import { FrontComponent } from './FrontComponent';
|
|
17
|
-
import { SectionTemplate } from './SectionTemplate';
|
|
18
17
|
import { Enquiry } from './Enquiry';
|
|
19
18
|
import { Theme } from './Theme';
|
|
20
19
|
import { Aggregate } from './Aggregate';
|
|
@@ -53,7 +52,6 @@ export interface Media extends WebsitePart, Softable {
|
|
|
53
52
|
searchIndex?: SearchIndex[];
|
|
54
53
|
snapshot?: WebsiteSnapshot[];
|
|
55
54
|
coverOfComponent?: FrontComponent[];
|
|
56
|
-
coverOfSectionTemplate?: SectionTemplate[];
|
|
57
55
|
attachmentOfEnquiry?: Enquiry;
|
|
58
56
|
coverOfTheme?: Theme;
|
|
59
57
|
owner?: User;
|
|
@@ -66,5 +64,4 @@ export interface Media extends WebsitePart, Softable {
|
|
|
66
64
|
searchIndexAggregate?: Aggregate;
|
|
67
65
|
snapshotAggregate?: Aggregate;
|
|
68
66
|
coverOfComponentAggregate?: Aggregate;
|
|
69
|
-
coverOfSectionTemplateAggregate?: Aggregate;
|
|
70
67
|
}
|
|
@@ -20,7 +20,6 @@ import { PageMetaBoolExp } from './PageMetaBoolExp';
|
|
|
20
20
|
import { SearchIndexBoolExp } from './SearchIndexBoolExp';
|
|
21
21
|
import { WebsiteSnapshotBoolExp } from './WebsiteSnapshotBoolExp';
|
|
22
22
|
import { FrontComponentBoolExp } from './FrontComponentBoolExp';
|
|
23
|
-
import { SectionTemplateBoolExp } from './SectionTemplateBoolExp';
|
|
24
23
|
import { EnquiryBoolExp } from './EnquiryBoolExp';
|
|
25
24
|
import { ThemeBoolExp } from './ThemeBoolExp';
|
|
26
25
|
export interface MediaBoolExp extends WebsitePartBoolExp, SoftableBoolExp {
|
|
@@ -53,7 +52,6 @@ export interface MediaBoolExp extends WebsitePartBoolExp, SoftableBoolExp {
|
|
|
53
52
|
searchIndex?: SearchIndexBoolExp;
|
|
54
53
|
snapshot?: WebsiteSnapshotBoolExp;
|
|
55
54
|
coverOfComponent?: FrontComponentBoolExp;
|
|
56
|
-
coverOfSectionTemplate?: SectionTemplateBoolExp;
|
|
57
55
|
attachmentOfEnquiry?: EnquiryBoolExp;
|
|
58
56
|
coverOfTheme?: ThemeBoolExp;
|
|
59
57
|
owner?: UserBoolExp;
|
|
@@ -15,7 +15,6 @@ import { PageMetaInput } from './PageMetaInput';
|
|
|
15
15
|
import { SearchIndexInput } from './SearchIndexInput';
|
|
16
16
|
import { WebsiteSnapshotInput } from './WebsiteSnapshotInput';
|
|
17
17
|
import { FrontComponentInput } from './FrontComponentInput';
|
|
18
|
-
import { SectionTemplateInput } from './SectionTemplateInput';
|
|
19
18
|
import { EnquiryInput } from './EnquiryInput';
|
|
20
19
|
import { ThemeInput } from './ThemeInput';
|
|
21
20
|
import { SetHasMany } from '@rxdrag/entify-lib';
|
|
@@ -53,7 +52,6 @@ export interface MediaInput extends WebsitePart, Softable {
|
|
|
53
52
|
searchIndex?: SetHasMany<SearchIndexInput>;
|
|
54
53
|
snapshot?: SetHasMany<WebsiteSnapshotInput>;
|
|
55
54
|
coverOfComponent?: SetHasMany<FrontComponentInput>;
|
|
56
|
-
coverOfSectionTemplate?: SetHasMany<SectionTemplateInput>;
|
|
57
55
|
attachmentOfEnquiry?: SetHasOne<EnquiryInput>;
|
|
58
56
|
coverOfTheme?: SetHasOne<ThemeInput>;
|
|
59
57
|
owner?: SetHasOne<UserInput>;
|
|
@@ -4,10 +4,10 @@ import { ComponentCategory } from './ComponentCategory';
|
|
|
4
4
|
import { Page } from './Page';
|
|
5
5
|
import { Lang } from './Lang';
|
|
6
6
|
import { ThemeConfig } from './ThemeConfig';
|
|
7
|
-
import { SectionTemplate } from './SectionTemplate';
|
|
8
|
-
import { TemplateCategory } from './TemplateCategory';
|
|
9
7
|
import { StyleConfig } from './StyleConfig';
|
|
10
8
|
import { Website } from './Website';
|
|
9
|
+
import { ThemeFile } from './ThemeFile';
|
|
10
|
+
import { ThemeFileFolder } from './ThemeFileFolder';
|
|
11
11
|
import { ThemeVersion } from './ThemeVersion';
|
|
12
12
|
import { Theme } from './Theme';
|
|
13
13
|
import { Aggregate } from './Aggregate';
|
|
@@ -31,16 +31,16 @@ export interface ThemeBranch {
|
|
|
31
31
|
pages?: Page[];
|
|
32
32
|
lang?: Lang;
|
|
33
33
|
config?: ThemeConfig;
|
|
34
|
-
templates?: SectionTemplate[];
|
|
35
|
-
templateCategories?: TemplateCategory[];
|
|
36
34
|
styleConfig?: StyleConfig;
|
|
37
35
|
mockWebsite?: Website;
|
|
36
|
+
files?: ThemeFile[];
|
|
37
|
+
folders?: ThemeFileFolder[];
|
|
38
38
|
marketVersion?: ThemeVersion;
|
|
39
39
|
website?: Website;
|
|
40
40
|
belongsToMain?: Theme;
|
|
41
41
|
componentsAggregate?: Aggregate;
|
|
42
42
|
componentCategoriesAggregate?: Aggregate;
|
|
43
43
|
pagesAggregate?: Aggregate;
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
filesAggregate?: Aggregate;
|
|
45
|
+
foldersAggregate?: Aggregate;
|
|
46
46
|
}
|
|
@@ -6,10 +6,10 @@ import { ComponentCategoryBoolExp } from './ComponentCategoryBoolExp';
|
|
|
6
6
|
import { PageBoolExp } from './PageBoolExp';
|
|
7
7
|
import { LangBoolExp } from './LangBoolExp';
|
|
8
8
|
import { ThemeConfigBoolExp } from './ThemeConfigBoolExp';
|
|
9
|
-
import { SectionTemplateBoolExp } from './SectionTemplateBoolExp';
|
|
10
|
-
import { TemplateCategoryBoolExp } from './TemplateCategoryBoolExp';
|
|
11
9
|
import { StyleConfigBoolExp } from './StyleConfigBoolExp';
|
|
12
10
|
import { WebsiteBoolExp } from './WebsiteBoolExp';
|
|
11
|
+
import { ThemeFileBoolExp } from './ThemeFileBoolExp';
|
|
12
|
+
import { ThemeFileFolderBoolExp } from './ThemeFileFolderBoolExp';
|
|
13
13
|
import { ThemeVersionBoolExp } from './ThemeVersionBoolExp';
|
|
14
14
|
import { ThemeBoolExp } from './ThemeBoolExp';
|
|
15
15
|
export interface ThemeBranchBoolExp {
|
|
@@ -30,10 +30,10 @@ export interface ThemeBranchBoolExp {
|
|
|
30
30
|
pages?: PageBoolExp;
|
|
31
31
|
lang?: LangBoolExp;
|
|
32
32
|
config?: ThemeConfigBoolExp;
|
|
33
|
-
templates?: SectionTemplateBoolExp;
|
|
34
|
-
templateCategories?: TemplateCategoryBoolExp;
|
|
35
33
|
styleConfig?: StyleConfigBoolExp;
|
|
36
34
|
mockWebsite?: WebsiteBoolExp;
|
|
35
|
+
files?: ThemeFileBoolExp;
|
|
36
|
+
folders?: ThemeFileFolderBoolExp;
|
|
37
37
|
marketVersion?: ThemeVersionBoolExp;
|
|
38
38
|
website?: WebsiteBoolExp;
|
|
39
39
|
belongsToMain?: ThemeBoolExp;
|
|
@@ -5,10 +5,10 @@ import { ComponentCategoryInput } from './ComponentCategoryInput';
|
|
|
5
5
|
import { PageInput } from './PageInput';
|
|
6
6
|
import { LangInput } from './LangInput';
|
|
7
7
|
import { ThemeConfigInput } from './ThemeConfigInput';
|
|
8
|
-
import { SectionTemplateInput } from './SectionTemplateInput';
|
|
9
|
-
import { TemplateCategoryInput } from './TemplateCategoryInput';
|
|
10
8
|
import { StyleConfigInput } from './StyleConfigInput';
|
|
11
9
|
import { WebsiteInput } from './WebsiteInput';
|
|
10
|
+
import { ThemeFileInput } from './ThemeFileInput';
|
|
11
|
+
import { ThemeFileFolderInput } from './ThemeFileFolderInput';
|
|
12
12
|
import { ThemeVersionInput } from './ThemeVersionInput';
|
|
13
13
|
import { ThemeInput } from './ThemeInput';
|
|
14
14
|
import { SetHasMany } from '@rxdrag/entify-lib';
|
|
@@ -31,10 +31,10 @@ export interface ThemeBranchInput {
|
|
|
31
31
|
pages?: SetHasMany<PageInput>;
|
|
32
32
|
lang?: SetHasOne<LangInput>;
|
|
33
33
|
config?: SetHasOne<ThemeConfigInput>;
|
|
34
|
-
templates?: SetHasMany<SectionTemplateInput>;
|
|
35
|
-
templateCategories?: SetHasMany<TemplateCategoryInput>;
|
|
36
34
|
styleConfig?: SetHasOne<StyleConfigInput>;
|
|
37
35
|
mockWebsite?: SetHasOne<WebsiteInput>;
|
|
36
|
+
files?: SetHasMany<ThemeFileInput>;
|
|
37
|
+
folders?: SetHasMany<ThemeFileFolderInput>;
|
|
38
38
|
marketVersion?: SetHasOne<ThemeVersionInput>;
|
|
39
39
|
website?: SetHasOne<WebsiteInput>;
|
|
40
40
|
belongsToMain?: SetHasOne<ThemeInput>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { FileRef } from './FileRef';
|
|
2
|
+
import { ThemeBranch } from './ThemeBranch';
|
|
3
|
+
import { ThemeFileFolder } from './ThemeFileFolder';
|
|
4
|
+
export declare const ThemeFileEntityName = "ThemeFile";
|
|
5
|
+
export declare const ThemeFileEntityLabel = "";
|
|
6
|
+
export interface ThemeFile {
|
|
7
|
+
id?: string | null;
|
|
8
|
+
name?: string;
|
|
9
|
+
code?: string;
|
|
10
|
+
updatedAt?: Date;
|
|
11
|
+
createdAt?: Date;
|
|
12
|
+
storageMeta?: FileRef;
|
|
13
|
+
size?: number;
|
|
14
|
+
mimelype?: string;
|
|
15
|
+
extName?: string;
|
|
16
|
+
mediaType?: string;
|
|
17
|
+
themeBranch?: ThemeBranch;
|
|
18
|
+
folder?: ThemeFileFolder;
|
|
19
|
+
}
|
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
import { IdComparisonExp } from './IdComparisonExp';
|
|
2
2
|
import { StringComparisonExp } from './StringComparisonExp';
|
|
3
|
-
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
4
3
|
import { DateTimeComparisonExp } from './DateTimeComparisonExp';
|
|
5
|
-
import {
|
|
4
|
+
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
6
5
|
import { ThemeBranchBoolExp } from './ThemeBranchBoolExp';
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
import { ThemeFileFolderBoolExp } from './ThemeFileFolderBoolExp';
|
|
7
|
+
export interface ThemeFileBoolExp {
|
|
8
|
+
_and?: ThemeFileBoolExp[];
|
|
9
|
+
_or?: ThemeFileBoolExp[];
|
|
10
|
+
_not?: ThemeFileBoolExp;
|
|
11
11
|
id?: IdComparisonExp;
|
|
12
12
|
name?: StringComparisonExp;
|
|
13
|
-
|
|
14
|
-
seqValue?: NumberComparisonExp;
|
|
15
|
-
createdAt?: DateTimeComparisonExp;
|
|
13
|
+
code?: StringComparisonExp;
|
|
16
14
|
updatedAt?: DateTimeComparisonExp;
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
createdAt?: DateTimeComparisonExp;
|
|
16
|
+
size?: NumberComparisonExp;
|
|
17
|
+
mimelype?: StringComparisonExp;
|
|
18
|
+
extName?: StringComparisonExp;
|
|
19
|
+
mediaType?: StringComparisonExp;
|
|
20
|
+
themeBranch?: ThemeBranchBoolExp;
|
|
21
|
+
folder?: ThemeFileFolderBoolExp;
|
|
19
22
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare enum ThemeFileDistinctEnum {
|
|
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 type ThemeFileDistinctExp = ThemeFileDistinctEnum;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ThemeFile } from './ThemeFile';
|
|
2
|
+
import { ThemeBranch } from './ThemeBranch';
|
|
3
|
+
import { Aggregate } from './Aggregate';
|
|
4
|
+
export declare const ThemeFileFolderEntityName = "ThemeFileFolder";
|
|
5
|
+
export declare const ThemeFileFolderEntityLabel = "";
|
|
6
|
+
export interface ThemeFileFolder {
|
|
7
|
+
id?: string | null;
|
|
8
|
+
name?: string;
|
|
9
|
+
upadteAt?: Date;
|
|
10
|
+
createdAt?: Date;
|
|
11
|
+
folders?: ThemeFileFolder[];
|
|
12
|
+
files?: ThemeFile[];
|
|
13
|
+
themeBranch?: ThemeBranch;
|
|
14
|
+
parent?: ThemeFileFolder;
|
|
15
|
+
foldersAggregate?: Aggregate;
|
|
16
|
+
filesAggregate?: Aggregate;
|
|
17
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IdComparisonExp } from './IdComparisonExp';
|
|
2
|
+
import { StringComparisonExp } from './StringComparisonExp';
|
|
3
|
+
import { DateTimeComparisonExp } from './DateTimeComparisonExp';
|
|
4
|
+
import { ThemeFileBoolExp } from './ThemeFileBoolExp';
|
|
5
|
+
import { ThemeBranchBoolExp } from './ThemeBranchBoolExp';
|
|
6
|
+
export interface ThemeFileFolderBoolExp {
|
|
7
|
+
_and?: ThemeFileFolderBoolExp[];
|
|
8
|
+
_or?: ThemeFileFolderBoolExp[];
|
|
9
|
+
_not?: ThemeFileFolderBoolExp;
|
|
10
|
+
id?: IdComparisonExp;
|
|
11
|
+
name?: StringComparisonExp;
|
|
12
|
+
upadteAt?: DateTimeComparisonExp;
|
|
13
|
+
createdAt?: DateTimeComparisonExp;
|
|
14
|
+
folders?: ThemeFileFolderBoolExp;
|
|
15
|
+
files?: ThemeFileBoolExp;
|
|
16
|
+
themeBranch?: ThemeBranchBoolExp;
|
|
17
|
+
parent?: ThemeFileFolderBoolExp;
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ThemeFileFolder } from './ThemeFileFolder';
|
|
2
|
+
import { ThemeFileInput } from './ThemeFileInput';
|
|
3
|
+
import { ThemeBranchInput } from './ThemeBranchInput';
|
|
4
|
+
import { SetHasMany } from '@rxdrag/entify-lib';
|
|
5
|
+
import { SetHasOne } from '@rxdrag/entify-lib';
|
|
6
|
+
export interface ThemeFileFolderInput {
|
|
7
|
+
id?: string | null;
|
|
8
|
+
name?: string;
|
|
9
|
+
upadteAt?: Date;
|
|
10
|
+
createdAt?: Date;
|
|
11
|
+
folders?: SetHasMany<ThemeFileFolderInput>;
|
|
12
|
+
files?: SetHasMany<ThemeFileInput>;
|
|
13
|
+
themeBranch?: SetHasOne<ThemeBranchInput>;
|
|
14
|
+
parent?: SetHasOne<ThemeFileFolderInput>;
|
|
15
|
+
}
|
|
16
|
+
export declare const themeFileFolderToInputCascade: (entity: ThemeFileFolder) => ThemeFileFolderInput;
|
|
17
|
+
export declare const themeFileFolderToInput: (entity: ThemeFileFolder) => ThemeFileFolderInput;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ThemeFile } from './ThemeFile';
|
|
2
|
+
import { FileRefInput } from './FileRefInput';
|
|
3
|
+
import { ThemeBranchInput } from './ThemeBranchInput';
|
|
4
|
+
import { ThemeFileFolderInput } from './ThemeFileFolderInput';
|
|
5
|
+
import { SetHasOne } from '@rxdrag/entify-lib';
|
|
6
|
+
export interface ThemeFileInput {
|
|
7
|
+
id?: string | null;
|
|
8
|
+
name?: string;
|
|
9
|
+
code?: string;
|
|
10
|
+
updatedAt?: Date;
|
|
11
|
+
createdAt?: Date;
|
|
12
|
+
storageMeta?: FileRefInput;
|
|
13
|
+
size?: number;
|
|
14
|
+
mimelype?: string;
|
|
15
|
+
extName?: string;
|
|
16
|
+
mediaType?: string;
|
|
17
|
+
themeBranch?: SetHasOne<ThemeBranchInput>;
|
|
18
|
+
folder?: SetHasOne<ThemeFileFolderInput>;
|
|
19
|
+
}
|
|
20
|
+
export declare const themeFileToInputCascade: (entity: ThemeFile) => ThemeFileInput;
|
|
21
|
+
export declare const themeFileToInput: (entity: ThemeFile) => ThemeFileInput;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-lib';
|
|
2
|
+
export interface ThemeFileOrderBy {
|
|
3
|
+
id?: OrderBy;
|
|
4
|
+
name?: OrderBy;
|
|
5
|
+
code?: OrderBy;
|
|
6
|
+
updatedAt?: OrderBy;
|
|
7
|
+
createdAt?: OrderBy;
|
|
8
|
+
storageMeta?: OrderBy;
|
|
9
|
+
size?: OrderBy;
|
|
10
|
+
mimelype?: OrderBy;
|
|
11
|
+
extName?: OrderBy;
|
|
12
|
+
mediaType?: OrderBy;
|
|
13
|
+
}
|
|
@@ -212,21 +212,11 @@ export * from './PageMetaInput';
|
|
|
212
212
|
export * from './PageMetaBoolExp';
|
|
213
213
|
export * from './PageMetaOrderBy';
|
|
214
214
|
export * from './PageMetaDistinctExp';
|
|
215
|
-
export * from './SectionTemplate';
|
|
216
|
-
export * from './SectionTemplateInput';
|
|
217
|
-
export * from './SectionTemplateBoolExp';
|
|
218
|
-
export * from './SectionTemplateOrderBy';
|
|
219
|
-
export * from './SectionTemplateDistinctExp';
|
|
220
215
|
export * from './ThemeCategory';
|
|
221
216
|
export * from './ThemeCategoryInput';
|
|
222
217
|
export * from './ThemeCategoryBoolExp';
|
|
223
218
|
export * from './ThemeCategoryOrderBy';
|
|
224
219
|
export * from './ThemeCategoryDistinctExp';
|
|
225
|
-
export * from './TemplateCategory';
|
|
226
|
-
export * from './TemplateCategoryInput';
|
|
227
|
-
export * from './TemplateCategoryBoolExp';
|
|
228
|
-
export * from './TemplateCategoryOrderBy';
|
|
229
|
-
export * from './TemplateCategoryDistinctExp';
|
|
230
220
|
export * from './StyleConfig';
|
|
231
221
|
export * from './StyleConfigInput';
|
|
232
222
|
export * from './StyleConfigBoolExp';
|
|
@@ -308,3 +298,13 @@ export * from './SvgIconInput';
|
|
|
308
298
|
export * from './SvgIconBoolExp';
|
|
309
299
|
export * from './SvgIconOrderBy';
|
|
310
300
|
export * from './SvgIconDistinctExp';
|
|
301
|
+
export * from './ThemeFile';
|
|
302
|
+
export * from './ThemeFileInput';
|
|
303
|
+
export * from './ThemeFileBoolExp';
|
|
304
|
+
export * from './ThemeFileOrderBy';
|
|
305
|
+
export * from './ThemeFileDistinctExp';
|
|
306
|
+
export * from './ThemeFileFolder';
|
|
307
|
+
export * from './ThemeFileFolderInput';
|
|
308
|
+
export * from './ThemeFileFolderBoolExp';
|
|
309
|
+
export * from './ThemeFileFolderOrderBy';
|
|
310
|
+
export * from './ThemeFileFolderDistinctExp';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdrag/rxcms-models",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.97",
|
|
4
4
|
"main": "dist/index.mjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"files": [
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"eslint": "^
|
|
13
|
+
"eslint": "^9.39.2",
|
|
14
14
|
"typescript": "^5",
|
|
15
|
-
"@rxdrag/
|
|
16
|
-
"@rxdrag/
|
|
15
|
+
"@rxdrag/tsconfig": "0.2.1",
|
|
16
|
+
"@rxdrag/eslint-config-custom": "0.2.13"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@rxdrag/entify-lib": "0.0.
|
|
19
|
+
"@rxdrag/entify-lib": "0.0.24"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"lint": "eslint . --ext .ts,tsx",
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
-
import { QueryOptions } from "./QueryOptions";
|
|
3
|
-
import { SectionTemplate, SectionTemplateBoolExp, SectionTemplateDistinctExp, SectionTemplateOrderBy } from "../interfaces";
|
|
4
|
-
import { MediaQueryOptions } from './MediaQueryOptions';
|
|
5
|
-
import { Media } from '../interfaces';
|
|
6
|
-
import { TemplateCategoryQueryOptions } from './TemplateCategoryQueryOptions';
|
|
7
|
-
import { TemplateCategory } from '../interfaces';
|
|
8
|
-
import { ThemeBranchQueryOptions } from './ThemeBranchQueryOptions';
|
|
9
|
-
import { ThemeBranch } from '../interfaces';
|
|
10
|
-
export declare class SectionTemplateQueryOptions extends QueryOptions<SectionTemplate, SectionTemplateBoolExp, SectionTemplateOrderBy, SectionTemplateDistinctExp> {
|
|
11
|
-
constructor(fields?: (keyof SectionTemplate)[], queryArgs?: IQueryArgs<SectionTemplateBoolExp, SectionTemplateOrderBy, SectionTemplateDistinctExp>);
|
|
12
|
-
id(): this;
|
|
13
|
-
title(): this;
|
|
14
|
-
code(): this;
|
|
15
|
-
description(): this;
|
|
16
|
-
seqValue(): this;
|
|
17
|
-
createdAt(): this;
|
|
18
|
-
updatedAt(): this;
|
|
19
|
-
cover(options?: MediaQueryOptions | (keyof Media)[]): this;
|
|
20
|
-
category(options?: TemplateCategoryQueryOptions | (keyof TemplateCategory)[]): this;
|
|
21
|
-
theme(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
22
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { IAggregate, IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
-
import { QueryOptions } from "./QueryOptions";
|
|
3
|
-
import { TemplateCategory, TemplateCategoryBoolExp, TemplateCategoryDistinctExp, TemplateCategoryOrderBy } from "../interfaces";
|
|
4
|
-
import { SectionTemplateQueryOptions } from './SectionTemplateQueryOptions';
|
|
5
|
-
import { SectionTemplate } from '../interfaces';
|
|
6
|
-
import { SectionTemplateBoolExp } from '../interfaces';
|
|
7
|
-
import { ThemeBranchQueryOptions } from './ThemeBranchQueryOptions';
|
|
8
|
-
import { ThemeBranch } from '../interfaces';
|
|
9
|
-
export declare class TemplateCategoryQueryOptions extends QueryOptions<TemplateCategory, TemplateCategoryBoolExp, TemplateCategoryOrderBy, TemplateCategoryDistinctExp> {
|
|
10
|
-
constructor(fields?: (keyof TemplateCategory)[], queryArgs?: IQueryArgs<TemplateCategoryBoolExp, TemplateCategoryOrderBy, TemplateCategoryDistinctExp>);
|
|
11
|
-
id(): this;
|
|
12
|
-
name(): this;
|
|
13
|
-
description(): this;
|
|
14
|
-
seqValue(): this;
|
|
15
|
-
createdAt(): this;
|
|
16
|
-
updatedAt(): this;
|
|
17
|
-
templates(options?: SectionTemplateQueryOptions | (keyof SectionTemplate)[]): this;
|
|
18
|
-
templatesAggregate(aggregate: IAggregate<SectionTemplateBoolExp>): this;
|
|
19
|
-
theme(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
20
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export declare enum SectionTemplateFields {
|
|
2
|
-
id = "id",
|
|
3
|
-
title = "title",
|
|
4
|
-
code = "code",
|
|
5
|
-
description = "description",
|
|
6
|
-
seqValue = "seqValue",
|
|
7
|
-
createdAt = "createdAt",
|
|
8
|
-
updatedAt = "updatedAt"
|
|
9
|
-
}
|
|
10
|
-
export declare enum SectionTemplateAssciations {
|
|
11
|
-
cover = "cover",
|
|
12
|
-
category = "category",
|
|
13
|
-
theme = "theme"
|
|
14
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export declare enum TemplateCategoryFields {
|
|
2
|
-
id = "id",
|
|
3
|
-
name = "name",
|
|
4
|
-
description = "description",
|
|
5
|
-
seqValue = "seqValue",
|
|
6
|
-
createdAt = "createdAt",
|
|
7
|
-
updatedAt = "updatedAt"
|
|
8
|
-
}
|
|
9
|
-
export declare enum TemplateCategoryAssciations {
|
|
10
|
-
templates = "templates",
|
|
11
|
-
templatesAggregate = "templatesAggregate",
|
|
12
|
-
theme = "theme"
|
|
13
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Media } from './Media';
|
|
2
|
-
import { TemplateCategory } from './TemplateCategory';
|
|
3
|
-
import { ThemeBranch } from './ThemeBranch';
|
|
4
|
-
export declare const SectionTemplateEntityName = "SectionTemplate";
|
|
5
|
-
export declare const SectionTemplateEntityLabel = "";
|
|
6
|
-
export interface SectionTemplate {
|
|
7
|
-
id?: string | null;
|
|
8
|
-
title?: string;
|
|
9
|
-
code?: string;
|
|
10
|
-
description?: string;
|
|
11
|
-
seqValue?: number;
|
|
12
|
-
createdAt?: Date;
|
|
13
|
-
updatedAt?: Date;
|
|
14
|
-
cover?: Media;
|
|
15
|
-
category?: TemplateCategory;
|
|
16
|
-
theme?: ThemeBranch;
|
|
17
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { IdComparisonExp } from './IdComparisonExp';
|
|
2
|
-
import { StringComparisonExp } from './StringComparisonExp';
|
|
3
|
-
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
4
|
-
import { DateTimeComparisonExp } from './DateTimeComparisonExp';
|
|
5
|
-
import { MediaBoolExp } from './MediaBoolExp';
|
|
6
|
-
import { TemplateCategoryBoolExp } from './TemplateCategoryBoolExp';
|
|
7
|
-
import { ThemeBranchBoolExp } from './ThemeBranchBoolExp';
|
|
8
|
-
export interface SectionTemplateBoolExp {
|
|
9
|
-
_and?: SectionTemplateBoolExp[];
|
|
10
|
-
_or?: SectionTemplateBoolExp[];
|
|
11
|
-
_not?: SectionTemplateBoolExp;
|
|
12
|
-
id?: IdComparisonExp;
|
|
13
|
-
title?: StringComparisonExp;
|
|
14
|
-
code?: StringComparisonExp;
|
|
15
|
-
description?: StringComparisonExp;
|
|
16
|
-
seqValue?: NumberComparisonExp;
|
|
17
|
-
createdAt?: DateTimeComparisonExp;
|
|
18
|
-
updatedAt?: DateTimeComparisonExp;
|
|
19
|
-
cover?: MediaBoolExp;
|
|
20
|
-
category?: TemplateCategoryBoolExp;
|
|
21
|
-
theme?: ThemeBranchBoolExp;
|
|
22
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare enum SectionTemplateDistinctEnum {
|
|
2
|
-
id = "id",
|
|
3
|
-
title = "title",
|
|
4
|
-
code = "code",
|
|
5
|
-
description = "description",
|
|
6
|
-
seqValue = "seqValue",
|
|
7
|
-
createdAt = "createdAt",
|
|
8
|
-
updatedAt = "updatedAt"
|
|
9
|
-
}
|
|
10
|
-
export type SectionTemplateDistinctExp = SectionTemplateDistinctEnum;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { SectionTemplate } from './SectionTemplate';
|
|
2
|
-
import { MediaInput } from './MediaInput';
|
|
3
|
-
import { TemplateCategoryInput } from './TemplateCategoryInput';
|
|
4
|
-
import { ThemeBranchInput } from './ThemeBranchInput';
|
|
5
|
-
import { SetHasOne } from '@rxdrag/entify-lib';
|
|
6
|
-
export interface SectionTemplateInput {
|
|
7
|
-
id?: string | null;
|
|
8
|
-
title?: string;
|
|
9
|
-
code?: string;
|
|
10
|
-
description?: string;
|
|
11
|
-
seqValue?: number;
|
|
12
|
-
createdAt?: Date;
|
|
13
|
-
updatedAt?: Date;
|
|
14
|
-
cover?: SetHasOne<MediaInput>;
|
|
15
|
-
category?: SetHasOne<TemplateCategoryInput>;
|
|
16
|
-
theme?: SetHasOne<ThemeBranchInput>;
|
|
17
|
-
}
|
|
18
|
-
export declare const sectionTemplateToInputCascade: (entity: SectionTemplate) => SectionTemplateInput;
|
|
19
|
-
export declare const sectionTemplateToInput: (entity: SectionTemplate) => SectionTemplateInput;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { SectionTemplate } from './SectionTemplate';
|
|
2
|
-
import { ThemeBranch } from './ThemeBranch';
|
|
3
|
-
import { Aggregate } from './Aggregate';
|
|
4
|
-
export declare const TemplateCategoryEntityName = "TemplateCategory";
|
|
5
|
-
export declare const TemplateCategoryEntityLabel = "";
|
|
6
|
-
export interface TemplateCategory {
|
|
7
|
-
id?: string | null;
|
|
8
|
-
name?: string;
|
|
9
|
-
description?: string;
|
|
10
|
-
seqValue?: number;
|
|
11
|
-
createdAt?: Date;
|
|
12
|
-
updatedAt?: Date;
|
|
13
|
-
templates?: SectionTemplate[];
|
|
14
|
-
theme?: ThemeBranch;
|
|
15
|
-
templatesAggregate?: Aggregate;
|
|
16
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export declare enum TemplateCategoryDistinctEnum {
|
|
2
|
-
id = "id",
|
|
3
|
-
name = "name",
|
|
4
|
-
description = "description",
|
|
5
|
-
seqValue = "seqValue",
|
|
6
|
-
createdAt = "createdAt",
|
|
7
|
-
updatedAt = "updatedAt"
|
|
8
|
-
}
|
|
9
|
-
export type TemplateCategoryDistinctExp = TemplateCategoryDistinctEnum;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { TemplateCategory } from './TemplateCategory';
|
|
2
|
-
import { SectionTemplateInput } from './SectionTemplateInput';
|
|
3
|
-
import { ThemeBranchInput } from './ThemeBranchInput';
|
|
4
|
-
import { SetHasMany } from '@rxdrag/entify-lib';
|
|
5
|
-
import { SetHasOne } from '@rxdrag/entify-lib';
|
|
6
|
-
export interface TemplateCategoryInput {
|
|
7
|
-
id?: string | null;
|
|
8
|
-
name?: string;
|
|
9
|
-
description?: string;
|
|
10
|
-
seqValue?: number;
|
|
11
|
-
createdAt?: Date;
|
|
12
|
-
updatedAt?: Date;
|
|
13
|
-
templates?: SetHasMany<SectionTemplateInput>;
|
|
14
|
-
theme?: SetHasOne<ThemeBranchInput>;
|
|
15
|
-
}
|
|
16
|
-
export declare const templateCategoryToInputCascade: (entity: TemplateCategory) => TemplateCategoryInput;
|
|
17
|
-
export declare const templateCategoryToInput: (entity: TemplateCategory) => TemplateCategoryInput;
|