@rxdrag/rxcms-models 0.3.49 → 0.3.50

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,10 @@
1
+ import { Website } from './Website';
2
+ export declare const ChangeLogEntityName = "ChangeLog";
3
+ export declare const ChangeLogEntityLabel = "";
4
+ export interface ChangeLog {
5
+ id?: string | null;
6
+ title?: string;
7
+ description?: string;
8
+ createdAt?: Date;
9
+ website?: Website;
10
+ }
@@ -0,0 +1,14 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
+ import { WebsiteBoolExp } from './WebsiteBoolExp';
5
+ export interface ChangeLogBoolExp {
6
+ _and?: ChangeLogBoolExp[];
7
+ _or?: ChangeLogBoolExp[];
8
+ _not?: ChangeLogBoolExp;
9
+ id?: IdComparisonExp;
10
+ title?: StringComparisonExp;
11
+ description?: StringComparisonExp;
12
+ createdAt?: DateTimeComparisonExp;
13
+ website?: WebsiteBoolExp;
14
+ }
@@ -0,0 +1,7 @@
1
+ export declare enum ChangeLogDistinctEnum {
2
+ id = "id",
3
+ title = "title",
4
+ description = "description",
5
+ createdAt = "createdAt"
6
+ }
7
+ export type ChangeLogDistinctExp = ChangeLogDistinctEnum;
@@ -0,0 +1,12 @@
1
+ import { ChangeLog } from './ChangeLog';
2
+ import { WebsiteInput } from './WebsiteInput';
3
+ import { SetHasOne } from '@rxdrag/entify-hooks';
4
+ export interface ChangeLogInput {
5
+ id?: string | null;
6
+ title?: string;
7
+ description?: string;
8
+ createdAt?: Date;
9
+ website?: SetHasOne<WebsiteInput>;
10
+ }
11
+ export declare const changeLogToInputCascade: (entity: ChangeLog) => ChangeLogInput;
12
+ export declare const changeLogToInput: (entity: ChangeLog) => ChangeLogInput;
@@ -0,0 +1,7 @@
1
+ import { OrderBy } from '@rxdrag/entify-hooks';
2
+ export interface ChangeLogOrderBy {
3
+ id?: OrderBy;
4
+ title?: OrderBy;
5
+ description?: OrderBy;
6
+ createdAt?: OrderBy;
7
+ }
@@ -20,6 +20,7 @@ export interface Enquiry extends WebsitePart {
20
20
  fromCta?: string;
21
21
  read?: boolean;
22
22
  spam?: boolean;
23
+ mobile?: string;
23
24
  lang?: Lang;
24
25
  customer?: Customer;
25
26
  website?: Website;
@@ -21,6 +21,7 @@ export interface EnquiryBoolExp extends WebsitePartBoolExp {
21
21
  fromCta?: StringComparisonExp;
22
22
  read?: BooleanComparisonExp;
23
23
  spam?: BooleanComparisonExp;
24
+ mobile?: StringComparisonExp;
24
25
  lang?: LangBoolExp;
25
26
  customer?: CustomerBoolExp;
26
27
  website?: WebsiteBoolExp;
@@ -15,6 +15,7 @@ export declare enum EnquiryDistinctEnum {
15
15
  fromCta = "fromCta",
16
16
  read = "read",
17
17
  spam = "spam",
18
+ mobile = "mobile",
18
19
  createdAt = "createdAt",
19
20
  updatedAt = "updatedAt",
20
21
  content = "content"
@@ -20,6 +20,7 @@ export interface EnquiryInput extends WebsitePart {
20
20
  fromCta?: string;
21
21
  read?: boolean;
22
22
  spam?: boolean;
23
+ mobile?: string;
23
24
  lang?: SetHasOne<LangInput>;
24
25
  customer?: SetHasOne<CustomerInput>;
25
26
  website?: SetHasOne<WebsiteInput>;
@@ -16,4 +16,5 @@ export interface EnquiryOrderBy extends WebsitePartOrderBy {
16
16
  fromCta?: OrderBy;
17
17
  read?: OrderBy;
18
18
  spam?: OrderBy;
19
+ mobile?: OrderBy;
19
20
  }
@@ -14,6 +14,7 @@ import { Lang } from './Lang';
14
14
  import { Theme } from './Theme';
15
15
  import { AnalyticsConfig } from './AnalyticsConfig';
16
16
  import { WebsiteSettings } from './WebsiteSettings';
17
+ import { ChangeLog } from './ChangeLog';
17
18
  import { Aggregate } from './Aggregate';
18
19
  export declare const WebsiteEntityName = "Website";
19
20
  export declare const WebsiteEntityLabel = "\u7AD9\u70B9";
@@ -71,6 +72,7 @@ export interface Website {
71
72
  themes?: Theme[];
72
73
  analyticsConfig?: AnalyticsConfig;
73
74
  settings?: WebsiteSettings;
75
+ changelogs?: ChangeLog[];
74
76
  usersAggregate?: Aggregate;
75
77
  partsOfMediaFolderAggregate?: Aggregate;
76
78
  partsOfEnquiryAggregate?: Aggregate;
@@ -84,4 +86,5 @@ export interface Website {
84
86
  partsOfMediaAggregate?: Aggregate;
85
87
  langsAggregate?: Aggregate;
86
88
  themesAggregate?: Aggregate;
89
+ changelogsAggregate?: Aggregate;
87
90
  }
@@ -17,6 +17,7 @@ import { LangBoolExp } from './LangBoolExp';
17
17
  import { ThemeBoolExp } from './ThemeBoolExp';
18
18
  import { AnalyticsConfigBoolExp } from './AnalyticsConfigBoolExp';
19
19
  import { WebsiteSettingsBoolExp } from './WebsiteSettingsBoolExp';
20
+ import { ChangeLogBoolExp } from './ChangeLogBoolExp';
20
21
  /**
21
22
  * 站点
22
23
  * 网站实体
@@ -53,4 +54,5 @@ export interface WebsiteBoolExp {
53
54
  themes?: ThemeBoolExp;
54
55
  analyticsConfig?: AnalyticsConfigBoolExp;
55
56
  settings?: WebsiteSettingsBoolExp;
57
+ changelogs?: ChangeLogBoolExp;
56
58
  }
@@ -15,6 +15,7 @@ import { LangInput } from './LangInput';
15
15
  import { ThemeInput } from './ThemeInput';
16
16
  import { AnalyticsConfigInput } from './AnalyticsConfigInput';
17
17
  import { WebsiteSettingsInput } from './WebsiteSettingsInput';
18
+ import { ChangeLogInput } from './ChangeLogInput';
18
19
  import { SetHasMany } from '@rxdrag/entify-hooks';
19
20
  import { SetHasOne } from '@rxdrag/entify-hooks';
20
21
  /**
@@ -71,6 +72,7 @@ export interface WebsiteInput {
71
72
  themes?: SetHasMany<ThemeInput>;
72
73
  analyticsConfig?: SetHasOne<AnalyticsConfigInput>;
73
74
  settings?: SetHasOne<WebsiteSettingsInput>;
75
+ changelogs?: SetHasMany<ChangeLogInput>;
74
76
  }
75
77
  export declare const websiteToInputCascade: (entity: Website) => WebsiteInput;
76
78
  export declare const websiteToInput: (entity: Website) => WebsiteInput;
@@ -221,3 +221,8 @@ export * from './StyleConfigBoolExp';
221
221
  export * from './StyleConfigOrderBy';
222
222
  export * from './StyleConfigDistinctExp';
223
223
  export * from './CookieConsentStrategy';
224
+ export * from './ChangeLog';
225
+ export * from './ChangeLogInput';
226
+ export * from './ChangeLogBoolExp';
227
+ export * from './ChangeLogOrderBy';
228
+ export * from './ChangeLogDistinctExp';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/rxcms-models",
3
- "version": "0.3.49",
3
+ "version": "0.3.50",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "files": [