@rxdrag/rxcms-models 0.3.60 → 0.3.62
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/ThemeConfigQueryOptions.d.ts +1 -0
- package/dist/classes/WebsiteSettingsQueryOptions.d.ts +2 -0
- package/dist/fields/ThemeConfigFields.d.ts +2 -1
- package/dist/fields/WebsiteSettingsFields.d.ts +3 -1
- package/dist/index.mjs +18 -0
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/DeployConfig.d.ts +8 -0
- package/dist/interfaces/ThemeConfig.d.ts +1 -0
- package/dist/interfaces/ThemeConfigBoolExp.d.ts +1 -0
- package/dist/interfaces/ThemeConfigDistinctExp.d.ts +2 -1
- package/dist/interfaces/ThemeConfigInput.d.ts +1 -0
- package/dist/interfaces/ThemeConfigOrderBy.d.ts +1 -0
- package/dist/interfaces/WebsiteSettings.d.ts +3 -0
- package/dist/interfaces/WebsiteSettingsBoolExp.d.ts +2 -0
- package/dist/interfaces/WebsiteSettingsDistinctExp.d.ts +3 -1
- package/dist/interfaces/WebsiteSettingsInput.d.ts +3 -0
- package/dist/interfaces/WebsiteSettingsOrderBy.d.ts +2 -0
- package/dist/interfaces/index.d.ts +1 -0
- package/package.json +4 -4
|
@@ -15,6 +15,7 @@ export declare enum ThemeConfigDistinctEnum {
|
|
|
15
15
|
pngIcon = "pngIcon",
|
|
16
16
|
icoIcon = "icoIcon",
|
|
17
17
|
appleTouchIcon = "appleTouchIcon",
|
|
18
|
-
redirects = "redirects"
|
|
18
|
+
redirects = "redirects",
|
|
19
|
+
previewUrl = "previewUrl"
|
|
19
20
|
}
|
|
20
21
|
export type ThemeConfigDistinctExp = ThemeConfigDistinctEnum;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SmtpConfig } from './SmtpConfig';
|
|
2
|
+
import { DeployConfig } from './DeployConfig';
|
|
2
3
|
import { Website } from './Website';
|
|
3
4
|
export declare const WebsiteSettingsEntityName = "WebsiteSettings";
|
|
4
5
|
export declare const WebsiteSettingsEntityLabel = "";
|
|
@@ -16,5 +17,7 @@ export interface WebsiteSettings {
|
|
|
16
17
|
createdAt?: Date;
|
|
17
18
|
updatedAt?: Date;
|
|
18
19
|
replyToEmail?: string;
|
|
20
|
+
privateDeploy?: boolean;
|
|
21
|
+
deployConfig?: DeployConfig;
|
|
19
22
|
website?: Website;
|
|
20
23
|
}
|
|
@@ -11,6 +11,8 @@ export declare enum WebsiteSettingsDistinctEnum {
|
|
|
11
11
|
useCustomizedSmtp = "useCustomizedSmtp",
|
|
12
12
|
createdAt = "createdAt",
|
|
13
13
|
updatedAt = "updatedAt",
|
|
14
|
-
replyToEmail = "replyToEmail"
|
|
14
|
+
replyToEmail = "replyToEmail",
|
|
15
|
+
privateDeploy = "privateDeploy",
|
|
16
|
+
deployConfig = "deployConfig"
|
|
15
17
|
}
|
|
16
18
|
export type WebsiteSettingsDistinctExp = WebsiteSettingsDistinctEnum;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { WebsiteSettings } from './WebsiteSettings';
|
|
2
2
|
import { SmtpConfig } from './SmtpConfig';
|
|
3
|
+
import { DeployConfig } from './DeployConfig';
|
|
3
4
|
import { WebsiteInput } from './WebsiteInput';
|
|
4
5
|
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
5
6
|
export interface WebsiteSettingsInput {
|
|
@@ -16,6 +17,8 @@ export interface WebsiteSettingsInput {
|
|
|
16
17
|
createdAt?: Date;
|
|
17
18
|
updatedAt?: Date;
|
|
18
19
|
replyToEmail?: string;
|
|
20
|
+
privateDeploy?: boolean;
|
|
21
|
+
deployConfig?: DeployConfig;
|
|
19
22
|
website?: SetHasOne<WebsiteInput>;
|
|
20
23
|
}
|
|
21
24
|
export declare const websiteSettingsToInputCascade: (entity: WebsiteSettings) => WebsiteSettingsInput;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdrag/rxcms-models",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.62",
|
|
4
4
|
"main": "dist/index.mjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"files": [
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"eslint": "^7.32.0",
|
|
14
14
|
"typescript": "^5",
|
|
15
|
-
"@rxdrag/
|
|
16
|
-
"@rxdrag/
|
|
15
|
+
"@rxdrag/tsconfig": "0.2.0",
|
|
16
|
+
"@rxdrag/eslint-config-custom": "0.2.12"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"swr": "^2.2.4",
|
|
20
|
-
"@rxdrag/entify-hooks": "0.2.
|
|
20
|
+
"@rxdrag/entify-hooks": "0.2.53"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"lint": "eslint . --ext .ts,tsx",
|