@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.
@@ -0,0 +1,8 @@
1
+ export interface DeployConfig {
2
+ githubToken?: string;
3
+ githubOwner?: string;
4
+ githubRepo?: string;
5
+ githubPreviewRepo?: string;
6
+ githubBranch?: string;
7
+ deployType?: string;
8
+ }
@@ -21,6 +21,7 @@ export interface ThemeConfig {
21
21
  icoIcon?: string;
22
22
  appleTouchIcon?: string;
23
23
  redirects?: string;
24
+ previewUrl?: string;
24
25
  contactAvatar?: Media;
25
26
  theme?: Theme;
26
27
  }
@@ -23,6 +23,7 @@ export interface ThemeConfigBoolExp {
23
23
  icoIcon?: StringComparisonExp;
24
24
  appleTouchIcon?: StringComparisonExp;
25
25
  redirects?: StringComparisonExp;
26
+ previewUrl?: StringComparisonExp;
26
27
  contactAvatar?: MediaBoolExp;
27
28
  theme?: ThemeBoolExp;
28
29
  }
@@ -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;
@@ -21,6 +21,7 @@ export interface ThemeConfigInput {
21
21
  icoIcon?: string;
22
22
  appleTouchIcon?: string;
23
23
  redirects?: string;
24
+ previewUrl?: string;
24
25
  contactAvatar?: SetHasOne<MediaInput>;
25
26
  theme?: SetHasOne<ThemeInput>;
26
27
  }
@@ -17,4 +17,5 @@ export interface ThemeConfigOrderBy {
17
17
  icoIcon?: OrderBy;
18
18
  appleTouchIcon?: OrderBy;
19
19
  redirects?: OrderBy;
20
+ previewUrl?: OrderBy;
20
21
  }
@@ -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
  }
@@ -14,5 +14,7 @@ export interface WebsiteSettingsBoolExp {
14
14
  createdAt?: DateTimeComparisonExp;
15
15
  updatedAt?: DateTimeComparisonExp;
16
16
  replyToEmail?: StringComparisonExp;
17
+ privateDeploy?: BooleanComparisonExp;
18
+ deployConfig?: unknown;
17
19
  website?: WebsiteBoolExp;
18
20
  }
@@ -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;
@@ -13,4 +13,6 @@ export interface WebsiteSettingsOrderBy {
13
13
  createdAt?: OrderBy;
14
14
  updatedAt?: OrderBy;
15
15
  replyToEmail?: OrderBy;
16
+ privateDeploy?: OrderBy;
17
+ deployConfig?: OrderBy;
16
18
  }
@@ -232,3 +232,4 @@ export * from './SearchIndexBoolExp';
232
232
  export * from './SearchIndexOrderBy';
233
233
  export * from './SearchIndexDistinctExp';
234
234
  export * from './SourceType';
235
+ export * from './DeployConfig';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/rxcms-models",
3
- "version": "0.3.60",
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/eslint-config-custom": "0.2.12",
16
- "@rxdrag/tsconfig": "0.2.0"
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.52"
20
+ "@rxdrag/entify-hooks": "0.2.53"
21
21
  },
22
22
  "scripts": {
23
23
  "lint": "eslint . --ext .ts,tsx",