@rxdrag/rxcms-models 0.3.110 → 0.3.111
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 +2 -4
- package/dist/classes/MediaQueryOptions.d.ts +1 -7
- package/dist/classes/PageMetaQueryOptions.d.ts +1 -3
- package/dist/classes/ThemeBranchQueryOptions.d.ts +1 -16
- package/dist/classes/WebsiteQueryOptions.d.ts +2 -6
- package/dist/classes/index.d.ts +0 -6
- package/dist/entries/index.d.ts +0 -6
- package/dist/fields/LangFields.d.ts +2 -3
- package/dist/fields/MediaFields.d.ts +0 -4
- package/dist/fields/PageMetaFields.d.ts +0 -1
- package/dist/fields/ThemeBranchFields.d.ts +0 -9
- package/dist/fields/WebsiteFields.d.ts +1 -4
- package/dist/fields/index.d.ts +0 -6
- package/dist/index.mjs +935 -1902
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Lang.d.ts +1 -3
- package/dist/interfaces/LangBoolExp.d.ts +1 -2
- package/dist/interfaces/LangDistinctExp.d.ts +2 -1
- package/dist/interfaces/LangInput.d.ts +1 -2
- package/dist/interfaces/LangOrderBy.d.ts +1 -0
- package/dist/interfaces/Media.d.ts +0 -6
- package/dist/interfaces/MediaBoolExp.d.ts +0 -4
- package/dist/interfaces/MediaInput.d.ts +0 -4
- package/dist/interfaces/PageMeta.d.ts +0 -2
- package/dist/interfaces/PageMetaBoolExp.d.ts +0 -2
- package/dist/interfaces/PageMetaInput.d.ts +0 -2
- package/dist/interfaces/ThemeBranch.d.ts +0 -15
- package/dist/interfaces/ThemeBranchBoolExp.d.ts +0 -12
- package/dist/interfaces/ThemeBranchInput.d.ts +0 -12
- package/dist/interfaces/ThemeSettings.d.ts +1 -0
- package/dist/interfaces/Website.d.ts +1 -5
- package/dist/interfaces/WebsiteBoolExp.d.ts +1 -3
- package/dist/interfaces/WebsiteInput.d.ts +1 -3
- package/dist/interfaces/index.d.ts +0 -30
- package/package.json +1 -1
- package/dist/classes/ComponentCategoryQueryOptions.d.ts +0 -20
- package/dist/classes/FrontComponentQueryOptions.d.ts +0 -31
- package/dist/classes/PageQueryOptions.d.ts +0 -25
- package/dist/classes/StyleConfigQueryOptions.d.ts +0 -21
- package/dist/classes/SvgIconQueryOptions.d.ts +0 -16
- package/dist/classes/ThemeConfigQueryOptions.d.ts +0 -29
- package/dist/entries/componentCategoryEntry.d.ts +0 -3
- package/dist/entries/frontComponentEntry.d.ts +0 -3
- package/dist/entries/pageEntry.d.ts +0 -3
- package/dist/entries/styleConfigEntry.d.ts +0 -3
- package/dist/entries/svgIconEntry.d.ts +0 -3
- package/dist/entries/themeConfigEntry.d.ts +0 -3
- package/dist/fields/ComponentCategoryFields.d.ts +0 -15
- package/dist/fields/FrontComponentFields.d.ts +0 -25
- package/dist/fields/PageFields.d.ts +0 -20
- package/dist/fields/StyleConfigFields.d.ts +0 -17
- package/dist/fields/SvgIconFields.d.ts +0 -12
- package/dist/fields/ThemeConfigFields.d.ts +0 -24
- package/dist/interfaces/ComponentCategory.d.ts +0 -19
- package/dist/interfaces/ComponentCategoryBoolExp.d.ts +0 -23
- package/dist/interfaces/ComponentCategoryDistinctExp.d.ts +0 -11
- package/dist/interfaces/ComponentCategoryInput.d.ts +0 -19
- package/dist/interfaces/ComponentCategoryOrderBy.d.ts +0 -12
- package/dist/interfaces/FrontComponent.d.ts +0 -30
- package/dist/interfaces/FrontComponentBoolExp.d.ts +0 -32
- package/dist/interfaces/FrontComponentDistinctExp.d.ts +0 -21
- package/dist/interfaces/FrontComponentInput.d.ts +0 -32
- package/dist/interfaces/FrontComponentOrderBy.d.ts +0 -22
- package/dist/interfaces/Page.d.ts +0 -24
- package/dist/interfaces/PageBoolExp.d.ts +0 -26
- package/dist/interfaces/PageDistinctExp.d.ts +0 -17
- package/dist/interfaces/PageInput.d.ts +0 -26
- package/dist/interfaces/PageOrderBy.d.ts +0 -18
- package/dist/interfaces/StyleConfig.d.ts +0 -20
- package/dist/interfaces/StyleConfigBoolExp.d.ts +0 -24
- package/dist/interfaces/StyleConfigDistinctExp.d.ts +0 -15
- package/dist/interfaces/StyleConfigInput.d.ts +0 -22
- package/dist/interfaces/StyleConfigOrderBy.d.ts +0 -16
- package/dist/interfaces/SvgIcon.d.ts +0 -14
- package/dist/interfaces/SvgIconBoolExp.d.ts +0 -18
- package/dist/interfaces/SvgIconDistinctExp.d.ts +0 -10
- package/dist/interfaces/SvgIconInput.d.ts +0 -16
- package/dist/interfaces/SvgIconOrderBy.d.ts +0 -11
- package/dist/interfaces/ThemeConfig.d.ts +0 -28
- package/dist/interfaces/ThemeConfigBoolExp.d.ts +0 -30
- package/dist/interfaces/ThemeConfigDistinctExp.d.ts +0 -21
- package/dist/interfaces/ThemeConfigInput.d.ts +0 -30
- package/dist/interfaces/ThemeConfigOrderBy.d.ts +0 -22
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { EmailTemplates } from './EmailTemplates';
|
|
2
|
-
import { Media } from './Media';
|
|
3
|
-
import { ThemeBranch } from './ThemeBranch';
|
|
4
|
-
|
|
5
|
-
export declare const ThemeConfigEntityName = "ThemeConfig";
|
|
6
|
-
export declare const ThemeConfigEntityLabel = "";
|
|
7
|
-
export interface ThemeConfig {
|
|
8
|
-
id?: string | null;
|
|
9
|
-
websiteTitle?: string;
|
|
10
|
-
emailTemplates?: EmailTemplates;
|
|
11
|
-
contact?: string;
|
|
12
|
-
address?: string;
|
|
13
|
-
email?: string;
|
|
14
|
-
tel?: string;
|
|
15
|
-
fax?: string;
|
|
16
|
-
mobile?: string;
|
|
17
|
-
wechat?: string;
|
|
18
|
-
domain?: string;
|
|
19
|
-
svgIcon?: string;
|
|
20
|
-
themeColor?: string;
|
|
21
|
-
pngIcon?: string;
|
|
22
|
-
icoIcon?: string;
|
|
23
|
-
appleTouchIcon?: string;
|
|
24
|
-
redirects?: string;
|
|
25
|
-
previewUrl?: string;
|
|
26
|
-
contactAvatar?: Media;
|
|
27
|
-
theme?: ThemeBranch;
|
|
28
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { IdComparisonExp } from './IdComparisonExp';
|
|
2
|
-
import { StringComparisonExp } from './StringComparisonExp';
|
|
3
|
-
import { MediaBoolExp } from './MediaBoolExp';
|
|
4
|
-
import { ThemeBranchBoolExp } from './ThemeBranchBoolExp';
|
|
5
|
-
|
|
6
|
-
export interface ThemeConfigBoolExp {
|
|
7
|
-
_and?: ThemeConfigBoolExp[];
|
|
8
|
-
_or?: ThemeConfigBoolExp[];
|
|
9
|
-
_not?: ThemeConfigBoolExp;
|
|
10
|
-
id?: IdComparisonExp;
|
|
11
|
-
websiteTitle?: StringComparisonExp;
|
|
12
|
-
emailTemplates?: unknown;
|
|
13
|
-
contact?: StringComparisonExp;
|
|
14
|
-
address?: StringComparisonExp;
|
|
15
|
-
email?: StringComparisonExp;
|
|
16
|
-
tel?: StringComparisonExp;
|
|
17
|
-
fax?: StringComparisonExp;
|
|
18
|
-
mobile?: StringComparisonExp;
|
|
19
|
-
wechat?: StringComparisonExp;
|
|
20
|
-
domain?: StringComparisonExp;
|
|
21
|
-
svgIcon?: StringComparisonExp;
|
|
22
|
-
themeColor?: StringComparisonExp;
|
|
23
|
-
pngIcon?: StringComparisonExp;
|
|
24
|
-
icoIcon?: StringComparisonExp;
|
|
25
|
-
appleTouchIcon?: StringComparisonExp;
|
|
26
|
-
redirects?: StringComparisonExp;
|
|
27
|
-
previewUrl?: StringComparisonExp;
|
|
28
|
-
contactAvatar?: MediaBoolExp;
|
|
29
|
-
theme?: ThemeBranchBoolExp;
|
|
30
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export declare enum ThemeConfigDistinctEnum {
|
|
2
|
-
id = "id",
|
|
3
|
-
websiteTitle = "websiteTitle",
|
|
4
|
-
emailTemplates = "emailTemplates",
|
|
5
|
-
contact = "contact",
|
|
6
|
-
address = "address",
|
|
7
|
-
email = "email",
|
|
8
|
-
tel = "tel",
|
|
9
|
-
fax = "fax",
|
|
10
|
-
mobile = "mobile",
|
|
11
|
-
wechat = "wechat",
|
|
12
|
-
domain = "domain",
|
|
13
|
-
svgIcon = "svgIcon",
|
|
14
|
-
themeColor = "themeColor",
|
|
15
|
-
pngIcon = "pngIcon",
|
|
16
|
-
icoIcon = "icoIcon",
|
|
17
|
-
appleTouchIcon = "appleTouchIcon",
|
|
18
|
-
redirects = "redirects",
|
|
19
|
-
previewUrl = "previewUrl"
|
|
20
|
-
}
|
|
21
|
-
export type ThemeConfigDistinctExp = ThemeConfigDistinctEnum;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { ThemeConfig } from './ThemeConfig';
|
|
2
|
-
import { EmailTemplates } from './EmailTemplates';
|
|
3
|
-
import { MediaInput } from './MediaInput';
|
|
4
|
-
import { ThemeBranchInput } from './ThemeBranchInput';
|
|
5
|
-
import { SetHasOne } from '@rxdrag/entify-lib';
|
|
6
|
-
|
|
7
|
-
export interface ThemeConfigInput {
|
|
8
|
-
id?: string | null;
|
|
9
|
-
websiteTitle?: string;
|
|
10
|
-
emailTemplates?: EmailTemplates;
|
|
11
|
-
contact?: string;
|
|
12
|
-
address?: string;
|
|
13
|
-
email?: string;
|
|
14
|
-
tel?: string;
|
|
15
|
-
fax?: string;
|
|
16
|
-
mobile?: string;
|
|
17
|
-
wechat?: string;
|
|
18
|
-
domain?: string;
|
|
19
|
-
svgIcon?: string;
|
|
20
|
-
themeColor?: string;
|
|
21
|
-
pngIcon?: string;
|
|
22
|
-
icoIcon?: string;
|
|
23
|
-
appleTouchIcon?: string;
|
|
24
|
-
redirects?: string;
|
|
25
|
-
previewUrl?: string;
|
|
26
|
-
contactAvatar?: SetHasOne<MediaInput>;
|
|
27
|
-
theme?: SetHasOne<ThemeBranchInput>;
|
|
28
|
-
}
|
|
29
|
-
export declare const themeConfigToInputCascade: (entity: ThemeConfig) => ThemeConfigInput;
|
|
30
|
-
export declare const themeConfigToInput: (entity: ThemeConfig) => ThemeConfigInput;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { OrderBy } from '@rxdrag/entify-lib';
|
|
2
|
-
|
|
3
|
-
export interface ThemeConfigOrderBy {
|
|
4
|
-
id?: OrderBy;
|
|
5
|
-
websiteTitle?: OrderBy;
|
|
6
|
-
emailTemplates?: OrderBy;
|
|
7
|
-
contact?: OrderBy;
|
|
8
|
-
address?: OrderBy;
|
|
9
|
-
email?: OrderBy;
|
|
10
|
-
tel?: OrderBy;
|
|
11
|
-
fax?: OrderBy;
|
|
12
|
-
mobile?: OrderBy;
|
|
13
|
-
wechat?: OrderBy;
|
|
14
|
-
domain?: OrderBy;
|
|
15
|
-
svgIcon?: OrderBy;
|
|
16
|
-
themeColor?: OrderBy;
|
|
17
|
-
pngIcon?: OrderBy;
|
|
18
|
-
icoIcon?: OrderBy;
|
|
19
|
-
appleTouchIcon?: OrderBy;
|
|
20
|
-
redirects?: OrderBy;
|
|
21
|
-
previewUrl?: OrderBy;
|
|
22
|
-
}
|