@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.
- package/dist/classes/ChangeLogQueryOptions.d.ts +13 -0
- package/dist/classes/EnquiryQueryOptions.d.ts +1 -0
- package/dist/classes/WebsiteQueryOptions.d.ts +5 -0
- package/dist/classes/index.d.ts +1 -0
- package/dist/entries/changeLogEntry.d.ts +2 -0
- package/dist/entries/index.d.ts +1 -0
- package/dist/fields/ChangeLogFields.d.ts +9 -0
- package/dist/fields/EnquiryFields.d.ts +1 -0
- package/dist/fields/WebsiteFields.d.ts +3 -1
- package/dist/fields/index.d.ts +1 -0
- package/dist/index.mjs +104 -6
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/ChangeLog.d.ts +10 -0
- package/dist/interfaces/ChangeLogBoolExp.d.ts +14 -0
- package/dist/interfaces/ChangeLogDistinctExp.d.ts +7 -0
- package/dist/interfaces/ChangeLogInput.d.ts +12 -0
- package/dist/interfaces/ChangeLogOrderBy.d.ts +7 -0
- package/dist/interfaces/Enquiry.d.ts +1 -0
- package/dist/interfaces/EnquiryBoolExp.d.ts +1 -0
- package/dist/interfaces/EnquiryDistinctExp.d.ts +1 -0
- package/dist/interfaces/EnquiryInput.d.ts +1 -0
- package/dist/interfaces/EnquiryOrderBy.d.ts +1 -0
- package/dist/interfaces/Website.d.ts +3 -0
- package/dist/interfaces/WebsiteBoolExp.d.ts +2 -0
- package/dist/interfaces/WebsiteInput.d.ts +2 -0
- package/dist/interfaces/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -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,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;
|
|
@@ -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;
|
|
@@ -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';
|