@rxdrag/rxcms-models 0.3.48 → 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.
Files changed (53) hide show
  1. package/dist/classes/ChangeLogQueryOptions.d.ts +13 -0
  2. package/dist/classes/EnquiryQueryOptions.d.ts +1 -0
  3. package/dist/classes/LangQueryOptions.d.ts +1 -5
  4. package/dist/classes/ThemeConfigQueryOptions.d.ts +7 -0
  5. package/dist/classes/WebsiteQueryOptions.d.ts +9 -5
  6. package/dist/classes/WebsiteSettingsQueryOptions.d.ts +2 -28
  7. package/dist/classes/index.d.ts +1 -0
  8. package/dist/entries/changeLogEntry.d.ts +2 -0
  9. package/dist/entries/index.d.ts +1 -0
  10. package/dist/fields/ChangeLogFields.d.ts +9 -0
  11. package/dist/fields/EnquiryFields.d.ts +1 -0
  12. package/dist/fields/LangFields.d.ts +2 -3
  13. package/dist/fields/ThemeConfigFields.d.ts +8 -1
  14. package/dist/fields/WebsiteFields.d.ts +6 -4
  15. package/dist/fields/WebsiteSettingsFields.d.ts +2 -26
  16. package/dist/fields/index.d.ts +1 -0
  17. package/dist/index.mjs +424 -363
  18. package/dist/index.mjs.map +1 -1
  19. package/dist/interfaces/ChangeLog.d.ts +10 -0
  20. package/dist/interfaces/ChangeLogBoolExp.d.ts +14 -0
  21. package/dist/interfaces/ChangeLogDistinctExp.d.ts +7 -0
  22. package/dist/interfaces/ChangeLogInput.d.ts +12 -0
  23. package/dist/interfaces/ChangeLogOrderBy.d.ts +7 -0
  24. package/dist/interfaces/CookieConsentStrategy.d.ts +10 -0
  25. package/dist/interfaces/Enquiry.d.ts +1 -0
  26. package/dist/interfaces/EnquiryBoolExp.d.ts +1 -0
  27. package/dist/interfaces/EnquiryDistinctExp.d.ts +1 -0
  28. package/dist/interfaces/EnquiryInput.d.ts +1 -0
  29. package/dist/interfaces/EnquiryOrderBy.d.ts +1 -0
  30. package/dist/interfaces/GaConfig.d.ts +2 -0
  31. package/dist/interfaces/Lang.d.ts +1 -3
  32. package/dist/interfaces/LangBoolExp.d.ts +1 -2
  33. package/dist/interfaces/LangDistinctExp.d.ts +2 -1
  34. package/dist/interfaces/LangInput.d.ts +1 -2
  35. package/dist/interfaces/LangOrderBy.d.ts +1 -0
  36. package/dist/interfaces/SmtpConfig.d.ts +0 -4
  37. package/dist/interfaces/ThemeConfig.d.ts +7 -0
  38. package/dist/interfaces/ThemeConfigBoolExp.d.ts +7 -0
  39. package/dist/interfaces/ThemeConfigDistinctExp.d.ts +8 -1
  40. package/dist/interfaces/ThemeConfigInput.d.ts +7 -0
  41. package/dist/interfaces/ThemeConfigOrderBy.d.ts +7 -0
  42. package/dist/interfaces/Website.d.ts +6 -3
  43. package/dist/interfaces/WebsiteBoolExp.d.ts +5 -2
  44. package/dist/interfaces/WebsiteDistinctExp.d.ts +2 -1
  45. package/dist/interfaces/WebsiteInput.d.ts +5 -2
  46. package/dist/interfaces/WebsiteOrderBy.d.ts +1 -0
  47. package/dist/interfaces/WebsiteSettings.d.ts +5 -28
  48. package/dist/interfaces/WebsiteSettingsBoolExp.d.ts +6 -13
  49. package/dist/interfaces/WebsiteSettingsDistinctExp.d.ts +3 -27
  50. package/dist/interfaces/WebsiteSettingsInput.d.ts +5 -28
  51. package/dist/interfaces/WebsiteSettingsOrderBy.d.ts +5 -26
  52. package/dist/interfaces/index.d.ts +6 -0
  53. package/package.json +4 -4
@@ -0,0 +1,13 @@
1
+ import { IQueryArgs } from "@rxdrag/entify-hooks";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { ChangeLog, ChangeLogBoolExp, ChangeLogDistinctExp, ChangeLogOrderBy } from "../interfaces";
4
+ import { WebsiteQueryOptions } from './WebsiteQueryOptions';
5
+ import { Website } from '../interfaces';
6
+ export declare class ChangeLogQueryOptions extends QueryOptions<ChangeLog, ChangeLogBoolExp, ChangeLogOrderBy, ChangeLogDistinctExp> {
7
+ constructor(fields?: (keyof ChangeLog)[], queryArgs?: IQueryArgs<ChangeLogBoolExp, ChangeLogOrderBy, ChangeLogDistinctExp>);
8
+ id(): this;
9
+ title(): this;
10
+ description(): this;
11
+ createdAt(): this;
12
+ website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
13
+ }
@@ -24,6 +24,7 @@ export declare class EnquiryQueryOptions extends QueryOptions<Enquiry, EnquiryBo
24
24
  fromCta(): this;
25
25
  read(): this;
26
26
  spam(): this;
27
+ mobile(): this;
27
28
  createdAt(): this;
28
29
  updatedAt(): this;
29
30
  content(): this;
@@ -1,9 +1,6 @@
1
1
  import { IAggregate, IQueryArgs } from "@rxdrag/entify-hooks";
2
2
  import { QueryOptions } from "./QueryOptions";
3
3
  import { Lang, LangBoolExp, LangDistinctExp, LangOrderBy } from "../interfaces";
4
- import { WebsiteSettingsQueryOptions } from './WebsiteSettingsQueryOptions';
5
- import { WebsiteSettings } from '../interfaces';
6
- import { WebsiteSettingsBoolExp } from '../interfaces';
7
4
  import { MediaFolderQueryOptions } from './MediaFolderQueryOptions';
8
5
  import { MediaFolder } from '../interfaces';
9
6
  import { MediaFolderBoolExp } from '../interfaces';
@@ -66,8 +63,7 @@ export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, La
66
63
  circleIcon(): this;
67
64
  cnName(): this;
68
65
  htmlLang(): this;
69
- webPartsOfWebsiteSettings(options?: WebsiteSettingsQueryOptions | (keyof WebsiteSettings)[]): this;
70
- webPartsOfWebsiteSettingsAggregate(aggregate: IAggregate<WebsiteSettingsBoolExp>): this;
66
+ urlFragment(): this;
71
67
  webPartsOfMediaFolder(options?: MediaFolderQueryOptions | (keyof MediaFolder)[]): this;
72
68
  webPartsOfMediaFolderAggregate(aggregate: IAggregate<MediaFolderBoolExp>): this;
73
69
  webPartsOfEnquiry(options?: EnquiryQueryOptions | (keyof Enquiry)[]): this;
@@ -17,6 +17,13 @@ export declare class ThemeConfigQueryOptions extends QueryOptions<ThemeConfig, T
17
17
  fax(): this;
18
18
  mobile(): this;
19
19
  wechat(): this;
20
+ domain(): this;
21
+ svgIcon(): this;
22
+ themeColor(): this;
23
+ pngIcon(): this;
24
+ icoIcon(): this;
25
+ appleTouchIcon(): this;
26
+ redirects(): this;
20
27
  contactAvatar(options?: MediaQueryOptions | (keyof Media)[]): this;
21
28
  theme(options?: ThemeQueryOptions | (keyof Theme)[]): this;
22
29
  }
@@ -6,9 +6,6 @@ import { WebsiteType } from '../interfaces';
6
6
  import { UserQueryOptions } from './UserQueryOptions';
7
7
  import { User } from '../interfaces';
8
8
  import { UserBoolExp } from '../interfaces';
9
- import { WebsiteSettingsQueryOptions } from './WebsiteSettingsQueryOptions';
10
- import { WebsiteSettings } from '../interfaces';
11
- import { WebsiteSettingsBoolExp } from '../interfaces';
12
9
  import { MediaFolderQueryOptions } from './MediaFolderQueryOptions';
13
10
  import { MediaFolder } from '../interfaces';
14
11
  import { MediaFolderBoolExp } from '../interfaces';
@@ -47,6 +44,11 @@ import { Theme } from '../interfaces';
47
44
  import { ThemeBoolExp } from '../interfaces';
48
45
  import { AnalyticsConfigQueryOptions } from './AnalyticsConfigQueryOptions';
49
46
  import { AnalyticsConfig } from '../interfaces';
47
+ import { WebsiteSettingsQueryOptions } from './WebsiteSettingsQueryOptions';
48
+ import { WebsiteSettings } from '../interfaces';
49
+ import { ChangeLogQueryOptions } from './ChangeLogQueryOptions';
50
+ import { ChangeLog } from '../interfaces';
51
+ import { ChangeLogBoolExp } from '../interfaces';
50
52
  export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
51
53
  constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
52
54
  id(): this;
@@ -79,12 +81,11 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
79
81
  */
80
82
  updatedBy(): this;
81
83
  description(): this;
84
+ title(): this;
82
85
  websiteType(options?: WebsiteTypeQueryOptions | (keyof WebsiteType)[]): this;
83
86
  owner(options?: UserQueryOptions | (keyof User)[]): this;
84
87
  users(options?: UserQueryOptions | (keyof User)[]): this;
85
88
  usersAggregate(aggregate: IAggregate<UserBoolExp>): this;
86
- partsOfWebsiteSettings(options?: WebsiteSettingsQueryOptions | (keyof WebsiteSettings)[]): this;
87
- partsOfWebsiteSettingsAggregate(aggregate: IAggregate<WebsiteSettingsBoolExp>): this;
88
89
  partsOfMediaFolder(options?: MediaFolderQueryOptions | (keyof MediaFolder)[]): this;
89
90
  partsOfMediaFolderAggregate(aggregate: IAggregate<MediaFolderBoolExp>): this;
90
91
  partsOfEnquiry(options?: EnquiryQueryOptions | (keyof Enquiry)[]): this;
@@ -111,4 +112,7 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
111
112
  themes(options?: ThemeQueryOptions | (keyof Theme)[]): this;
112
113
  themesAggregate(aggregate: IAggregate<ThemeBoolExp>): this;
113
114
  analyticsConfig(options?: AnalyticsConfigQueryOptions | (keyof AnalyticsConfig)[]): this;
115
+ settings(options?: WebsiteSettingsQueryOptions | (keyof WebsiteSettings)[]): this;
116
+ changelogs(options?: ChangeLogQueryOptions | (keyof ChangeLog)[]): this;
117
+ changelogsAggregate(aggregate: IAggregate<ChangeLogBoolExp>): this;
114
118
  }
@@ -1,8 +1,6 @@
1
1
  import { IQueryArgs } from "@rxdrag/entify-hooks";
2
2
  import { QueryOptions } from "./QueryOptions";
3
3
  import { WebsiteSettings, WebsiteSettingsBoolExp, WebsiteSettingsDistinctExp, WebsiteSettingsOrderBy } from "../interfaces";
4
- import { LangQueryOptions } from './LangQueryOptions';
5
- import { Lang } from '../interfaces';
6
4
  import { WebsiteQueryOptions } from './WebsiteQueryOptions';
7
5
  import { Website } from '../interfaces';
8
6
  export declare class WebsiteSettingsQueryOptions extends QueryOptions<WebsiteSettings, WebsiteSettingsBoolExp, WebsiteSettingsOrderBy, WebsiteSettingsDistinctExp> {
@@ -12,37 +10,13 @@ export declare class WebsiteSettingsQueryOptions extends QueryOptions<WebsiteSet
12
10
  * 邮件配置
13
11
  */
14
12
  smtpConfig(): this;
15
- whatsapp(): this;
16
- robots(): this;
17
- /**
18
- * 站点名称
19
- */
20
- websiteName(): this;
21
- /**
22
- * 域名
23
- */
24
- domain(): this;
25
- /**
26
- * 打开iRobots
27
- */
28
- openRobots(): this;
29
- /**
30
- * 301映射表
31
- */
32
- map301(): this;
33
- headerCode(): this;
34
- footerCode(): this;
35
- /**
36
- * GA跟踪码
37
- */
38
- gaTrackingId(): this;
39
13
  /**
40
14
  * 通知邮箱
41
15
  */
42
16
  noticeEmail(): this;
17
+ useCustomizedSmtp(): this;
43
18
  createdAt(): this;
44
19
  updatedAt(): this;
45
- content(): this;
46
- lang(options?: LangQueryOptions | (keyof Lang)[]): this;
20
+ replyToEmail(): this;
47
21
  website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
48
22
  }
@@ -31,5 +31,6 @@ export * from './SectionTemplateQueryOptions';
31
31
  export * from './ThemeCategoryQueryOptions';
32
32
  export * from './TemplateCategoryQueryOptions';
33
33
  export * from './StyleConfigQueryOptions';
34
+ export * from './ChangeLogQueryOptions';
34
35
  export * from './QueryOptions';
35
36
  export * from './metainfo';
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-hooks";
2
+ export declare const changeLogEntry: EntityEntry;
@@ -31,3 +31,4 @@ export * from './sectionTemplateEntry';
31
31
  export * from './themeCategoryEntry';
32
32
  export * from './templateCategoryEntry';
33
33
  export * from './styleConfigEntry';
34
+ export * from './changeLogEntry';
@@ -0,0 +1,9 @@
1
+ export declare enum ChangeLogFields {
2
+ id = "id",
3
+ title = "title",
4
+ description = "description",
5
+ createdAt = "createdAt"
6
+ }
7
+ export declare enum ChangeLogAssciations {
8
+ website = "website"
9
+ }
@@ -14,6 +14,7 @@ export declare enum EnquiryFields {
14
14
  fromCta = "fromCta",
15
15
  read = "read",
16
16
  spam = "spam",
17
+ mobile = "mobile",
17
18
  createdAt = "createdAt",
18
19
  updatedAt = "updatedAt",
19
20
  content = "content"
@@ -22,11 +22,10 @@ export declare enum LangFields {
22
22
  description = "description",
23
23
  circleIcon = "circleIcon",
24
24
  cnName = "cnName",
25
- htmlLang = "htmlLang"
25
+ htmlLang = "htmlLang",
26
+ urlFragment = "urlFragment"
26
27
  }
27
28
  export declare enum LangAssciations {
28
- webPartsOfWebsiteSettings = "webPartsOfWebsiteSettings",
29
- webPartsOfWebsiteSettingsAggregate = "webPartsOfWebsiteSettingsAggregate",
30
29
  webPartsOfMediaFolder = "webPartsOfMediaFolder",
31
30
  webPartsOfMediaFolderAggregate = "webPartsOfMediaFolderAggregate",
32
31
  webPartsOfEnquiry = "webPartsOfEnquiry",
@@ -8,7 +8,14 @@ export declare enum ThemeConfigFields {
8
8
  tel = "tel",
9
9
  fax = "fax",
10
10
  mobile = "mobile",
11
- wechat = "wechat"
11
+ wechat = "wechat",
12
+ domain = "domain",
13
+ svgIcon = "svgIcon",
14
+ themeColor = "themeColor",
15
+ pngIcon = "pngIcon",
16
+ icoIcon = "icoIcon",
17
+ appleTouchIcon = "appleTouchIcon",
18
+ redirects = "redirects"
12
19
  }
13
20
  export declare enum ThemeConfigAssciations {
14
21
  contactAvatar = "contactAvatar",
@@ -28,15 +28,14 @@ export declare enum WebsiteFields {
28
28
  * 更新者ID
29
29
  */
30
30
  updatedBy = "updatedBy",
31
- description = "description"
31
+ description = "description",
32
+ title = "title"
32
33
  }
33
34
  export declare enum WebsiteAssciations {
34
35
  websiteType = "websiteType",
35
36
  owner = "owner",
36
37
  users = "users",
37
38
  usersAggregate = "usersAggregate",
38
- partsOfWebsiteSettings = "partsOfWebsiteSettings",
39
- partsOfWebsiteSettingsAggregate = "partsOfWebsiteSettingsAggregate",
40
39
  partsOfMediaFolder = "partsOfMediaFolder",
41
40
  partsOfMediaFolderAggregate = "partsOfMediaFolderAggregate",
42
41
  partsOfEnquiry = "partsOfEnquiry",
@@ -62,5 +61,8 @@ export declare enum WebsiteAssciations {
62
61
  baseLang = "baseLang",
63
62
  themes = "themes",
64
63
  themesAggregate = "themesAggregate",
65
- analyticsConfig = "analyticsConfig"
64
+ analyticsConfig = "analyticsConfig",
65
+ settings = "settings",
66
+ changelogs = "changelogs",
67
+ changelogsAggregate = "changelogsAggregate"
66
68
  }
@@ -4,39 +4,15 @@ export declare enum WebsiteSettingsFields {
4
4
  * 邮件配置
5
5
  */
6
6
  smtpConfig = "smtpConfig",
7
- whatsapp = "whatsapp",
8
- robots = "robots",
9
- /**
10
- * 站点名称
11
- */
12
- websiteName = "websiteName",
13
- /**
14
- * 域名
15
- */
16
- domain = "domain",
17
- /**
18
- * 打开iRobots
19
- */
20
- openRobots = "openRobots",
21
- /**
22
- * 301映射表
23
- */
24
- map301 = "map301",
25
- headerCode = "headerCode",
26
- footerCode = "footerCode",
27
- /**
28
- * GA跟踪码
29
- */
30
- gaTrackingId = "gaTrackingId",
31
7
  /**
32
8
  * 通知邮箱
33
9
  */
34
10
  noticeEmail = "noticeEmail",
11
+ useCustomizedSmtp = "useCustomizedSmtp",
35
12
  createdAt = "createdAt",
36
13
  updatedAt = "updatedAt",
37
- content = "content"
14
+ replyToEmail = "replyToEmail"
38
15
  }
39
16
  export declare enum WebsiteSettingsAssciations {
40
- lang = "lang",
41
17
  website = "website"
42
18
  }
@@ -31,3 +31,4 @@ export * from './SectionTemplateFields';
31
31
  export * from './ThemeCategoryFields';
32
32
  export * from './TemplateCategoryFields';
33
33
  export * from './StyleConfigFields';
34
+ export * from './ChangeLogFields';