@rxdrag/rxcms-models 0.2.6 → 0.2.8

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 (47) hide show
  1. package/dist/classes/MailQueryOptions.d.ts +20 -0
  2. package/dist/classes/MediaQueryOptions.d.ts +14 -0
  3. package/dist/classes/PageQueryOptions.d.ts +3 -0
  4. package/dist/classes/ThemeQueryOptions.d.ts +3 -0
  5. package/dist/classes/WebsiteSettingsQueryOptions.d.ts +8 -0
  6. package/dist/classes/index.d.ts +1 -1
  7. package/dist/entries/index.d.ts +1 -1
  8. package/dist/entries/{websiteMetaEntry.d.ts → mailEntry.d.ts} +1 -1
  9. package/dist/fields/MailFields.d.ts +18 -0
  10. package/dist/fields/MediaFields.d.ts +8 -0
  11. package/dist/fields/PageFields.d.ts +2 -1
  12. package/dist/fields/ThemeFields.d.ts +2 -1
  13. package/dist/fields/WebsiteSettingsFields.d.ts +8 -0
  14. package/dist/fields/index.d.ts +1 -1
  15. package/dist/index.mjs +685 -491
  16. package/dist/index.mjs.map +1 -1
  17. package/dist/interfaces/EmailTemplate.d.ts +4 -0
  18. package/dist/interfaces/EmailTemplates.d.ts +11 -0
  19. package/dist/interfaces/Mail.d.ts +18 -0
  20. package/dist/interfaces/MailBoolExp.d.ts +22 -0
  21. package/dist/interfaces/MailDistinctExp.d.ts +17 -0
  22. package/dist/interfaces/MailInput.d.ts +19 -0
  23. package/dist/interfaces/MailOrderBy.d.ts +17 -0
  24. package/dist/interfaces/MailType.d.ts +18 -0
  25. package/dist/interfaces/Media.d.ts +10 -0
  26. package/dist/interfaces/MediaBoolExp.d.ts +6 -0
  27. package/dist/interfaces/MediaInput.d.ts +6 -0
  28. package/dist/interfaces/Page.d.ts +2 -0
  29. package/dist/interfaces/PageBoolExp.d.ts +2 -0
  30. package/dist/interfaces/PageInput.d.ts +2 -0
  31. package/dist/interfaces/Theme.d.ts +2 -0
  32. package/dist/interfaces/ThemeBoolExp.d.ts +2 -0
  33. package/dist/interfaces/ThemeInput.d.ts +3 -0
  34. package/dist/interfaces/WebsiteSettings.d.ts +9 -0
  35. package/dist/interfaces/WebsiteSettingsBoolExp.d.ts +2 -0
  36. package/dist/interfaces/WebsiteSettingsDistinctExp.d.ts +8 -0
  37. package/dist/interfaces/WebsiteSettingsInput.d.ts +9 -0
  38. package/dist/interfaces/WebsiteSettingsOrderBy.d.ts +8 -0
  39. package/dist/interfaces/index.d.ts +8 -5
  40. package/package.json +4 -4
  41. package/dist/classes/WebsiteMetaQueryOptions.d.ts +0 -7
  42. package/dist/fields/WebsiteMetaFields.d.ts +0 -5
  43. package/dist/interfaces/WebsiteMeta.d.ts +0 -5
  44. package/dist/interfaces/WebsiteMetaBoolExp.d.ts +0 -7
  45. package/dist/interfaces/WebsiteMetaDistinctExp.d.ts +0 -4
  46. package/dist/interfaces/WebsiteMetaInput.d.ts +0 -6
  47. package/dist/interfaces/WebsiteMetaOrderBy.d.ts +0 -4
@@ -0,0 +1,4 @@
1
+ export interface EmailTemplate {
2
+ subject?: string;
3
+ content?: string;
4
+ }
@@ -0,0 +1,11 @@
1
+ import { EmailTemplate } from './EmailTemplate';
2
+ export interface EmailTemplates {
3
+ /**
4
+ * 客户邮件
5
+ */
6
+ customerEmail?: EmailTemplate;
7
+ /**
8
+ * 业务员邮件
9
+ */
10
+ employeeEmail?: EmailTemplate;
11
+ }
@@ -0,0 +1,18 @@
1
+ export declare const MailEntityName = "Mail";
2
+ export declare const MailEntityLabel = "";
3
+ export interface Mail {
4
+ id?: string;
5
+ createdAt?: Date;
6
+ updatedAt?: Date;
7
+ taskId?: string;
8
+ taskName?: string;
9
+ remark?: string;
10
+ subject?: string;
11
+ message?: string;
12
+ to?: string;
13
+ cc?: string;
14
+ label?: string;
15
+ name?: string;
16
+ company?: string;
17
+ mailType?: string;
18
+ }
@@ -0,0 +1,22 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
3
+ import { StringComparisonExp } from './StringComparisonExp';
4
+ export interface MailBoolExp {
5
+ _and?: MailBoolExp[];
6
+ _or?: MailBoolExp[];
7
+ _not?: MailBoolExp;
8
+ id?: IdComparisonExp;
9
+ createdAt?: DateTimeComparisonExp;
10
+ updatedAt?: DateTimeComparisonExp;
11
+ taskId?: StringComparisonExp;
12
+ taskName?: StringComparisonExp;
13
+ remark?: StringComparisonExp;
14
+ subject?: StringComparisonExp;
15
+ message?: StringComparisonExp;
16
+ to?: StringComparisonExp;
17
+ cc?: StringComparisonExp;
18
+ label?: StringComparisonExp;
19
+ name?: StringComparisonExp;
20
+ company?: StringComparisonExp;
21
+ mailType?: StringComparisonExp;
22
+ }
@@ -0,0 +1,17 @@
1
+ export declare enum MailDistinctEnum {
2
+ id = "id",
3
+ createdAt = "createdAt",
4
+ updatedAt = "updatedAt",
5
+ taskId = "taskId",
6
+ taskName = "taskName",
7
+ remark = "remark",
8
+ subject = "subject",
9
+ message = "message",
10
+ to = "to",
11
+ cc = "cc",
12
+ label = "label",
13
+ name = "name",
14
+ company = "company",
15
+ mailType = "mailType"
16
+ }
17
+ export type MailDistinctExp = MailDistinctEnum;
@@ -0,0 +1,19 @@
1
+ import { Mail } from './Mail';
2
+ export interface MailInput {
3
+ id?: string;
4
+ createdAt?: Date;
5
+ updatedAt?: Date;
6
+ taskId?: string;
7
+ taskName?: string;
8
+ remark?: string;
9
+ subject?: string;
10
+ message?: string;
11
+ to?: string;
12
+ cc?: string;
13
+ label?: string;
14
+ name?: string;
15
+ company?: string;
16
+ mailType?: string;
17
+ }
18
+ export declare const mailToInputCascade: (entity: Mail) => MailInput;
19
+ export declare const mailToInput: (entity: Mail) => MailInput;
@@ -0,0 +1,17 @@
1
+ import { OrderBy } from '@rxdrag/entify-hooks';
2
+ export interface MailOrderBy {
3
+ id?: OrderBy;
4
+ createdAt?: OrderBy;
5
+ updatedAt?: OrderBy;
6
+ taskId?: OrderBy;
7
+ taskName?: OrderBy;
8
+ remark?: OrderBy;
9
+ subject?: OrderBy;
10
+ message?: OrderBy;
11
+ to?: OrderBy;
12
+ cc?: OrderBy;
13
+ label?: OrderBy;
14
+ name?: OrderBy;
15
+ company?: OrderBy;
16
+ mailType?: OrderBy;
17
+ }
@@ -0,0 +1,18 @@
1
+ export declare enum MailType {
2
+ /**
3
+ * label: undefined
4
+ */
5
+ default = "default",
6
+ /**
7
+ * label: undefined
8
+ */
9
+ getPrice = "getPrice",
10
+ /**
11
+ * label: undefined
12
+ */
13
+ findPassword = "findPassword",
14
+ /**
15
+ * label: undefined
16
+ */
17
+ notice = "notice"
18
+ }
@@ -1,8 +1,10 @@
1
1
  import { MediaType } from './MediaType';
2
2
  import { FileRef } from './FileRef';
3
3
  import { MediaFolder } from './MediaFolder';
4
+ import { Post } from './Post';
4
5
  import { User } from './User';
5
6
  import { Product } from './Product';
7
+ import { Page } from './Page';
6
8
  import { ProductCategory } from './ProductCategory';
7
9
  import { MediaAddon } from './MediaAddon';
8
10
  import { AttachmentAddon } from './AttachmentAddon';
@@ -22,11 +24,19 @@ export interface Media extends CustomizeMedia {
22
24
  updatedAt?: Date;
23
25
  mediaType?: MediaType;
24
26
  folder?: MediaFolder;
27
+ coverOf?: Post[];
25
28
  avatarOfUser?: User;
26
29
  usedByProducts?: (Product & MediaAddon)[];
30
+ ogMetaOfPage?: Page[];
31
+ ogMetaOfProduct?: Product[];
32
+ ogMetaOfPost?: Post[];
27
33
  attachmentOf?: (Product & AttachmentAddon)[];
28
34
  meidaOfProduct?: ProductCategory[];
35
+ coverOfAggregate?: Aggregate;
29
36
  usedByProductsAggregate?: Aggregate;
37
+ ogMetaOfPageAggregate?: Aggregate;
38
+ ogMetaOfProductAggregate?: Aggregate;
39
+ ogMetaOfPostAggregate?: Aggregate;
30
40
  attachmentOfAggregate?: Aggregate;
31
41
  meidaOfProductAggregate?: Aggregate;
32
42
  }
@@ -6,8 +6,10 @@ import { NumberComparisonExp } from './NumberComparisonExp';
6
6
  import { DateTimeComparisonExp } from './DateTimeComparisonExp';
7
7
  import { EnumComparisonExp } from './EnumComparisonExp';
8
8
  import { MediaFolderBoolExp } from './MediaFolderBoolExp';
9
+ import { PostBoolExp } from './PostBoolExp';
9
10
  import { UserBoolExp } from './UserBoolExp';
10
11
  import { ProductBoolExp } from './ProductBoolExp';
12
+ import { PageBoolExp } from './PageBoolExp';
11
13
  import { ProductCategoryBoolExp } from './ProductCategoryBoolExp';
12
14
  export interface MediaBoolExp extends CustomizeMediaBoolExp {
13
15
  _and?: MediaBoolExp[];
@@ -23,8 +25,12 @@ export interface MediaBoolExp extends CustomizeMediaBoolExp {
23
25
  updatedAt?: DateTimeComparisonExp;
24
26
  mediaType?: EnumComparisonExp<MediaType>;
25
27
  folder?: MediaFolderBoolExp;
28
+ coverOf?: PostBoolExp;
26
29
  avatarOfUser?: UserBoolExp;
27
30
  usedByProducts?: ProductBoolExp;
31
+ ogMetaOfPage?: PageBoolExp;
32
+ ogMetaOfProduct?: ProductBoolExp;
33
+ ogMetaOfPost?: PostBoolExp;
28
34
  attachmentOf?: ProductBoolExp;
29
35
  meidaOfProduct?: ProductCategoryBoolExp;
30
36
  }
@@ -2,8 +2,10 @@ import { Media } from './Media';
2
2
  import { MediaType } from './MediaType';
3
3
  import { FileRef } from './FileRef';
4
4
  import { MediaFolderInput } from './MediaFolderInput';
5
+ import { PostInput } from './PostInput';
5
6
  import { UserInput } from './UserInput';
6
7
  import { ProductInput } from './ProductInput';
8
+ import { PageInput } from './PageInput';
7
9
  import { ProductCategoryInput } from './ProductCategoryInput';
8
10
  import { MediaAddon } from './MediaAddon';
9
11
  import { AttachmentAddon } from './AttachmentAddon';
@@ -22,8 +24,12 @@ export interface MediaInput extends CustomizeMedia {
22
24
  updatedAt?: Date;
23
25
  mediaType?: MediaType;
24
26
  folder?: SetHasOne<MediaFolderInput>;
27
+ coverOf?: SetHasMany<PostInput>;
25
28
  avatarOfUser?: SetHasOne<UserInput>;
26
29
  usedByProducts?: SetHasMany<ProductInput & MediaAddon>;
30
+ ogMetaOfPage?: SetHasMany<PageInput>;
31
+ ogMetaOfProduct?: SetHasMany<ProductInput>;
32
+ ogMetaOfPost?: SetHasMany<PostInput>;
27
33
  attachmentOf?: SetHasMany<ProductInput & AttachmentAddon>;
28
34
  meidaOfProduct?: SetHasMany<ProductCategoryInput>;
29
35
  }
@@ -1,4 +1,5 @@
1
1
  import { Media } from './Media';
2
+ import { Website } from './Website';
2
3
  import { WebsiteContent } from './WebsiteContent';
3
4
  export declare const PageEntityName = "Page";
4
5
  export declare const PageEntityLabel = "";
@@ -12,4 +13,5 @@ export interface Page extends WebsiteContent {
12
13
  remark?: string;
13
14
  langAbbr?: string;
14
15
  ogImage?: Media;
16
+ homeOf?: Website;
15
17
  }
@@ -2,6 +2,7 @@ import { WebsiteContentBoolExp } from './WebsiteContentBoolExp';
2
2
  import { IdComparisonExp } from './IdComparisonExp';
3
3
  import { StringComparisonExp } from './StringComparisonExp';
4
4
  import { MediaBoolExp } from './MediaBoolExp';
5
+ import { WebsiteBoolExp } from './WebsiteBoolExp';
5
6
  export interface PageBoolExp extends WebsiteContentBoolExp {
6
7
  _and?: PageBoolExp[];
7
8
  _or?: PageBoolExp[];
@@ -12,4 +13,5 @@ export interface PageBoolExp extends WebsiteContentBoolExp {
12
13
  remark?: StringComparisonExp;
13
14
  langAbbr?: StringComparisonExp;
14
15
  ogImage?: MediaBoolExp;
16
+ homeOf?: WebsiteBoolExp;
15
17
  }
@@ -1,5 +1,6 @@
1
1
  import { Page } from './Page';
2
2
  import { MediaInput } from './MediaInput';
3
+ import { WebsiteInput } from './WebsiteInput';
3
4
  import { SetHasOne } from '@rxdrag/entify-hooks';
4
5
  import { WebsiteContent } from './WebsiteContent';
5
6
  export interface PageInput extends WebsiteContent {
@@ -12,6 +13,7 @@ export interface PageInput extends WebsiteContent {
12
13
  remark?: string;
13
14
  langAbbr?: string;
14
15
  ogImage?: SetHasOne<MediaInput>;
16
+ homeOf?: SetHasOne<WebsiteInput>;
15
17
  }
16
18
  export declare const pageToInputCascade: (entity: Page) => PageInput;
17
19
  export declare const pageToInput: (entity: Page) => PageInput;
@@ -1,6 +1,7 @@
1
1
  import { ThemeSettings } from './ThemeSettings';
2
2
  import { Template } from './Template';
3
3
  import { TemplateCategory } from './TemplateCategory';
4
+ import { Website } from './Website';
4
5
  import { Aggregate } from './Aggregate';
5
6
  import { WebsitePart } from './WebsitePart';
6
7
  export declare const ThemeEntityName = "Theme";
@@ -12,6 +13,7 @@ export interface Theme extends WebsitePart {
12
13
  settings?: ThemeSettings;
13
14
  templates?: Template[];
14
15
  themlateCategories?: TemplateCategory[];
16
+ selectedBy?: Website;
15
17
  templatesAggregate?: Aggregate;
16
18
  themlateCategoriesAggregate?: Aggregate;
17
19
  }
@@ -3,6 +3,7 @@ import { IdComparisonExp } from './IdComparisonExp';
3
3
  import { StringComparisonExp } from './StringComparisonExp';
4
4
  import { TemplateBoolExp } from './TemplateBoolExp';
5
5
  import { TemplateCategoryBoolExp } from './TemplateCategoryBoolExp';
6
+ import { WebsiteBoolExp } from './WebsiteBoolExp';
6
7
  export interface ThemeBoolExp extends WebsitePartBoolExp {
7
8
  _and?: ThemeBoolExp[];
8
9
  _or?: ThemeBoolExp[];
@@ -13,4 +14,5 @@ export interface ThemeBoolExp extends WebsitePartBoolExp {
13
14
  settings?: unknown;
14
15
  templates?: TemplateBoolExp;
15
16
  themlateCategories?: TemplateCategoryBoolExp;
17
+ selectedBy?: WebsiteBoolExp;
16
18
  }
@@ -2,7 +2,9 @@ import { Theme } from './Theme';
2
2
  import { ThemeSettings } from './ThemeSettings';
3
3
  import { TemplateInput } from './TemplateInput';
4
4
  import { TemplateCategoryInput } from './TemplateCategoryInput';
5
+ import { WebsiteInput } from './WebsiteInput';
5
6
  import { SetHasMany } from '@rxdrag/entify-hooks';
7
+ import { SetHasOne } from '@rxdrag/entify-hooks';
6
8
  import { WebsitePart } from './WebsitePart';
7
9
  export interface ThemeInput extends WebsitePart {
8
10
  id?: string;
@@ -11,6 +13,7 @@ export interface ThemeInput extends WebsitePart {
11
13
  settings?: ThemeSettings;
12
14
  templates?: SetHasMany<TemplateInput>;
13
15
  themlateCategories?: SetHasMany<TemplateCategoryInput>;
16
+ selectedBy?: SetHasOne<WebsiteInput>;
14
17
  }
15
18
  export declare const themeToInputCascade: (entity: Theme) => ThemeInput;
16
19
  export declare const themeToInput: (entity: Theme) => ThemeInput;
@@ -1,4 +1,5 @@
1
1
  import { SmtpConfig } from './SmtpConfig';
2
+ import { EmailTemplates } from './EmailTemplates';
2
3
  import { WebsitePart } from './WebsitePart';
3
4
  export declare const WebsiteSettingsEntityName = "WebsiteSettings";
4
5
  export declare const WebsiteSettingsEntityLabel = "";
@@ -39,4 +40,12 @@ export interface WebsiteSettings extends WebsitePart {
39
40
  * GA跟踪码
40
41
  */
41
42
  gaTrackingId?: string;
43
+ /**
44
+ * 通知邮箱
45
+ */
46
+ noticeEmail?: string;
47
+ /**
48
+ * 邮件模板
49
+ */
50
+ emailTemplates?: EmailTemplates;
42
51
  }
@@ -24,4 +24,6 @@ export interface WebsiteSettingsBoolExp extends WebsitePartBoolExp {
24
24
  headerCode?: StringComparisonExp;
25
25
  footerCode?: StringComparisonExp;
26
26
  gaTrackingId?: StringComparisonExp;
27
+ noticeEmail?: StringComparisonExp;
28
+ emailTemplates?: unknown;
27
29
  }
@@ -36,6 +36,14 @@ export declare enum WebsiteSettingsDistinctEnum {
36
36
  * GA跟踪码
37
37
  */
38
38
  gaTrackingId = "gaTrackingId",
39
+ /**
40
+ * 通知邮箱
41
+ */
42
+ noticeEmail = "noticeEmail",
43
+ /**
44
+ * 邮件模板
45
+ */
46
+ emailTemplates = "emailTemplates",
39
47
  websiteId = "websiteId",
40
48
  slug = "slug",
41
49
  description = "description",
@@ -1,5 +1,6 @@
1
1
  import { WebsiteSettings } from './WebsiteSettings';
2
2
  import { SmtpConfig } from './SmtpConfig';
3
+ import { EmailTemplates } from './EmailTemplates';
3
4
  import { WebsitePart } from './WebsitePart';
4
5
  export interface WebsiteSettingsInput extends WebsitePart {
5
6
  id?: string;
@@ -38,6 +39,14 @@ export interface WebsiteSettingsInput extends WebsitePart {
38
39
  * GA跟踪码
39
40
  */
40
41
  gaTrackingId?: string;
42
+ /**
43
+ * 通知邮箱
44
+ */
45
+ noticeEmail?: string;
46
+ /**
47
+ * 邮件模板
48
+ */
49
+ emailTemplates?: EmailTemplates;
41
50
  }
42
51
  export declare const websiteSettingsToInputCascade: (entity: WebsiteSettings) => WebsiteSettingsInput;
43
52
  export declare const websiteSettingsToInput: (entity: WebsiteSettings) => WebsiteSettingsInput;
@@ -37,4 +37,12 @@ export interface WebsiteSettingsOrderBy extends WebsitePartOrderBy {
37
37
  * GA跟踪码
38
38
  */
39
39
  gaTrackingId?: OrderBy;
40
+ /**
41
+ * 通知邮箱
42
+ */
43
+ noticeEmail?: OrderBy;
44
+ /**
45
+ * 邮件模板
46
+ */
47
+ emailTemplates?: OrderBy;
40
48
  }
@@ -20,6 +20,12 @@ export * from './MediaBoolExp';
20
20
  export * from './MediaOrderBy';
21
21
  export * from './MediaDistinctExp';
22
22
  export * from './MediaType';
23
+ export * from './Mail';
24
+ export * from './MailInput';
25
+ export * from './MailBoolExp';
26
+ export * from './MailOrderBy';
27
+ export * from './MailDistinctExp';
28
+ export * from './MailType';
23
29
  export * from './Website';
24
30
  export * from './WebsiteInput';
25
31
  export * from './WebsiteBoolExp';
@@ -55,11 +61,6 @@ export * from './EnquiryInput';
55
61
  export * from './EnquiryBoolExp';
56
62
  export * from './EnquiryOrderBy';
57
63
  export * from './EnquiryDistinctExp';
58
- export * from './WebsiteMeta';
59
- export * from './WebsiteMetaInput';
60
- export * from './WebsiteMetaBoolExp';
61
- export * from './WebsiteMetaOrderBy';
62
- export * from './WebsiteMetaDistinctExp';
63
64
  export * from './WebsiteSettings';
64
65
  export * from './WebsiteSettingsInput';
65
66
  export * from './WebsiteSettingsBoolExp';
@@ -164,3 +165,5 @@ export * from './SpamFilterRuleInput';
164
165
  export * from './SpamFilterRuleBoolExp';
165
166
  export * from './SpamFilterRuleOrderBy';
166
167
  export * from './SpamFilterRuleDistinctExp';
168
+ export * from './EmailTemplates';
169
+ export * from './EmailTemplate';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/rxcms-models",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
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.1.1",
16
- "@rxdrag/tsconfig": "0.1.1"
15
+ "@rxdrag/tsconfig": "0.1.1",
16
+ "@rxdrag/eslint-config-custom": "0.1.1"
17
17
  },
18
18
  "dependencies": {
19
19
  "swr": "^2.2.4",
20
- "@rxdrag/entify-hooks": "0.1.1"
20
+ "@rxdrag/entify-hooks": "0.1.4"
21
21
  },
22
22
  "scripts": {
23
23
  "lint": "eslint . --ext .ts,tsx",
@@ -1,7 +0,0 @@
1
- import { IQueryArgs } from "@rxdrag/entify-hooks";
2
- import { QueryOptions } from "./QueryOptions";
3
- import { WebsiteMeta, WebsiteMetaBoolExp, WebsiteMetaDistinctExp, WebsiteMetaOrderBy } from "../interfaces";
4
- export declare class WebsiteMetaQueryOptions extends QueryOptions<WebsiteMeta, WebsiteMetaBoolExp, WebsiteMetaOrderBy, WebsiteMetaDistinctExp> {
5
- constructor(fields?: (keyof WebsiteMeta)[], queryArgs?: IQueryArgs<WebsiteMetaBoolExp, WebsiteMetaOrderBy, WebsiteMetaDistinctExp>);
6
- id(): this;
7
- }
@@ -1,5 +0,0 @@
1
- export declare enum WebsiteMetaFields {
2
- id = "id"
3
- }
4
- export declare enum WebsiteMetaAssciations {
5
- }
@@ -1,5 +0,0 @@
1
- export declare const WebsiteMetaEntityName = "WebsiteMeta";
2
- export declare const WebsiteMetaEntityLabel = "";
3
- export interface WebsiteMeta {
4
- id?: string;
5
- }
@@ -1,7 +0,0 @@
1
- import { IdComparisonExp } from './IdComparisonExp';
2
- export interface WebsiteMetaBoolExp {
3
- _and?: WebsiteMetaBoolExp[];
4
- _or?: WebsiteMetaBoolExp[];
5
- _not?: WebsiteMetaBoolExp;
6
- id?: IdComparisonExp;
7
- }
@@ -1,4 +0,0 @@
1
- export declare enum WebsiteMetaDistinctEnum {
2
- id = "id"
3
- }
4
- export type WebsiteMetaDistinctExp = WebsiteMetaDistinctEnum;
@@ -1,6 +0,0 @@
1
- import { WebsiteMeta } from './WebsiteMeta';
2
- export interface WebsiteMetaInput {
3
- id?: string;
4
- }
5
- export declare const websiteMetaToInputCascade: (entity: WebsiteMeta) => WebsiteMetaInput;
6
- export declare const websiteMetaToInput: (entity: WebsiteMeta) => WebsiteMetaInput;
@@ -1,4 +0,0 @@
1
- import { OrderBy } from '@rxdrag/entify-hooks';
2
- export interface WebsiteMetaOrderBy {
3
- id?: OrderBy;
4
- }