@rxdrag/rxcms-models 0.3.75 → 0.3.76

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 (82) hide show
  1. package/dist/classes/BulletinQueryOptions.d.ts +19 -0
  2. package/dist/classes/CustomerCaseQueryOptions.d.ts +22 -0
  3. package/dist/classes/FAQQueryOptions.d.ts +20 -0
  4. package/dist/classes/LangQueryOptions.d.ts +15 -10
  5. package/dist/classes/MediaQueryOptions.d.ts +0 -5
  6. package/dist/classes/ProductQueryOptions.d.ts +11 -0
  7. package/dist/classes/ProductRelatedPivotQueryOptions.d.ts +12 -0
  8. package/dist/classes/SolutionQueryOptions.d.ts +27 -0
  9. package/dist/classes/WebsiteQueryOptions.d.ts +20 -10
  10. package/dist/classes/index.d.ts +5 -2
  11. package/dist/entries/bulletinEntry.d.ts +2 -0
  12. package/dist/entries/customerCaseEntry.d.ts +2 -0
  13. package/dist/entries/{videoEntry.d.ts → fAQEntry.d.ts} +1 -1
  14. package/dist/entries/index.d.ts +5 -2
  15. package/dist/entries/productRelatedPivotEntry.d.ts +2 -0
  16. package/dist/entries/solutionEntry.d.ts +2 -0
  17. package/dist/fields/BulletinFields.d.ts +13 -0
  18. package/dist/fields/CustomerCaseFields.d.ts +16 -0
  19. package/dist/fields/FAQFields.d.ts +12 -0
  20. package/dist/fields/LangFields.d.ts +7 -5
  21. package/dist/fields/MediaFields.d.ts +1 -3
  22. package/dist/fields/ProductFields.d.ts +6 -1
  23. package/dist/fields/ProductRelatedPivotFields.d.ts +8 -0
  24. package/dist/fields/SolutionFields.d.ts +18 -0
  25. package/dist/fields/WebsiteFields.d.ts +9 -5
  26. package/dist/fields/index.d.ts +5 -2
  27. package/dist/index.mjs +695 -378
  28. package/dist/index.mjs.map +1 -1
  29. package/dist/interfaces/Bulletin.d.ts +19 -0
  30. package/dist/interfaces/BulletinBoolExp.d.ts +23 -0
  31. package/dist/interfaces/BulletinDistinctExp.d.ts +10 -0
  32. package/dist/interfaces/BulletinInput.d.ts +21 -0
  33. package/dist/interfaces/BulletinOrderBy.d.ts +14 -0
  34. package/dist/interfaces/CustomerCase.d.ts +11 -0
  35. package/dist/interfaces/CustomerCaseBoolExp.d.ts +13 -0
  36. package/dist/interfaces/CustomerCaseDistinctExp.d.ts +15 -0
  37. package/dist/interfaces/CustomerCaseInput.d.ts +13 -0
  38. package/dist/interfaces/CustomerCaseOrderBy.d.ts +6 -0
  39. package/dist/interfaces/FAQ.d.ts +15 -0
  40. package/dist/interfaces/FAQBoolExp.d.ts +19 -0
  41. package/dist/interfaces/FAQDistinctExp.d.ts +8 -0
  42. package/dist/interfaces/FAQInput.d.ts +17 -0
  43. package/dist/interfaces/FAQOrderBy.d.ts +8 -0
  44. package/dist/interfaces/Lang.d.ts +9 -6
  45. package/dist/interfaces/LangBoolExp.d.ts +6 -4
  46. package/dist/interfaces/LangInput.d.ts +6 -4
  47. package/dist/interfaces/Media.d.ts +0 -3
  48. package/dist/interfaces/MediaBoolExp.d.ts +0 -2
  49. package/dist/interfaces/MediaInput.d.ts +0 -2
  50. package/dist/interfaces/Product.d.ts +7 -0
  51. package/dist/interfaces/ProductBoolExp.d.ts +5 -0
  52. package/dist/interfaces/ProductInput.d.ts +5 -0
  53. package/dist/interfaces/ProductRelatedPivot.d.ts +9 -0
  54. package/dist/interfaces/ProductRelatedPivotBoolExp.d.ts +12 -0
  55. package/dist/interfaces/ProductRelatedPivotDistinctExp.d.ts +5 -0
  56. package/dist/interfaces/ProductRelatedPivotInput.d.ts +11 -0
  57. package/dist/interfaces/ProductRelatedPivotOrderBy.d.ts +5 -0
  58. package/dist/interfaces/Solution.d.ts +15 -0
  59. package/dist/interfaces/SolutionBoolExp.d.ts +15 -0
  60. package/dist/interfaces/SolutionDistinctExp.d.ts +15 -0
  61. package/dist/interfaces/SolutionInput.d.ts +16 -0
  62. package/dist/interfaces/SolutionOrderBy.d.ts +6 -0
  63. package/dist/interfaces/Website.d.ts +12 -6
  64. package/dist/interfaces/WebsiteBoolExp.d.ts +8 -4
  65. package/dist/interfaces/WebsiteInput.d.ts +8 -4
  66. package/dist/interfaces/index.d.ts +25 -10
  67. package/package.json +3 -3
  68. package/dist/classes/VideoFolderQueryOptions.d.ts +0 -26
  69. package/dist/classes/VideoQueryOptions.d.ts +0 -31
  70. package/dist/entries/videoFolderEntry.d.ts +0 -2
  71. package/dist/fields/VideoFields.d.ts +0 -20
  72. package/dist/fields/VideoFolderFields.d.ts +0 -17
  73. package/dist/interfaces/Video.d.ts +0 -27
  74. package/dist/interfaces/VideoBoolExp.d.ts +0 -29
  75. package/dist/interfaces/VideoDistinctExp.d.ts +0 -15
  76. package/dist/interfaces/VideoFolder.d.ts +0 -23
  77. package/dist/interfaces/VideoFolderBoolExp.d.ts +0 -24
  78. package/dist/interfaces/VideoFolderDistinctExp.d.ts +0 -10
  79. package/dist/interfaces/VideoFolderInput.d.ts +0 -23
  80. package/dist/interfaces/VideoFolderOrderBy.d.ts +0 -11
  81. package/dist/interfaces/VideoInput.d.ts +0 -28
  82. package/dist/interfaces/VideoOrderBy.d.ts +0 -16
@@ -0,0 +1,19 @@
1
+ import { Lang } from './Lang';
2
+ import { Website } from './Website';
3
+ export declare const BulletinEntityName = "Bulletin";
4
+ export declare const BulletinEntityLabel = "\u516C\u544A";
5
+ /**
6
+ * 公告
7
+ *
8
+ */
9
+ export interface Bulletin {
10
+ id?: string | null;
11
+ content?: string;
12
+ type?: string;
13
+ createdAt?: Date;
14
+ updatedAt?: Date;
15
+ endDate?: Date;
16
+ title?: string;
17
+ lang?: Lang;
18
+ website?: Website;
19
+ }
@@ -0,0 +1,23 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
+ import { LangBoolExp } from './LangBoolExp';
5
+ import { WebsiteBoolExp } from './WebsiteBoolExp';
6
+ /**
7
+ * 公告
8
+ *
9
+ */
10
+ export interface BulletinBoolExp {
11
+ _and?: BulletinBoolExp[];
12
+ _or?: BulletinBoolExp[];
13
+ _not?: BulletinBoolExp;
14
+ id?: IdComparisonExp;
15
+ content?: StringComparisonExp;
16
+ type?: StringComparisonExp;
17
+ createdAt?: DateTimeComparisonExp;
18
+ updatedAt?: DateTimeComparisonExp;
19
+ endDate?: DateTimeComparisonExp;
20
+ title?: StringComparisonExp;
21
+ lang?: LangBoolExp;
22
+ website?: WebsiteBoolExp;
23
+ }
@@ -0,0 +1,10 @@
1
+ export declare enum BulletinDistinctEnum {
2
+ id = "id",
3
+ content = "content",
4
+ type = "type",
5
+ createdAt = "createdAt",
6
+ updatedAt = "updatedAt",
7
+ endDate = "endDate",
8
+ title = "title"
9
+ }
10
+ export type BulletinDistinctExp = BulletinDistinctEnum;
@@ -0,0 +1,21 @@
1
+ import { Bulletin } from './Bulletin';
2
+ import { LangInput } from './LangInput';
3
+ import { WebsiteInput } from './WebsiteInput';
4
+ import { SetHasOne } from '@rxdrag/entify-lib';
5
+ /**
6
+ * 公告
7
+ *
8
+ */
9
+ export interface BulletinInput {
10
+ id?: string | null;
11
+ content?: string;
12
+ type?: string;
13
+ createdAt?: Date;
14
+ updatedAt?: Date;
15
+ endDate?: Date;
16
+ title?: string;
17
+ lang?: SetHasOne<LangInput>;
18
+ website?: SetHasOne<WebsiteInput>;
19
+ }
20
+ export declare const bulletinToInputCascade: (entity: Bulletin) => BulletinInput;
21
+ export declare const bulletinToInput: (entity: Bulletin) => BulletinInput;
@@ -0,0 +1,14 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ /**
3
+ * 公告
4
+ *
5
+ */
6
+ export interface BulletinOrderBy {
7
+ id?: OrderBy;
8
+ content?: OrderBy;
9
+ type?: OrderBy;
10
+ createdAt?: OrderBy;
11
+ updatedAt?: OrderBy;
12
+ endDate?: OrderBy;
13
+ title?: OrderBy;
14
+ }
@@ -0,0 +1,11 @@
1
+ import { Lang } from './Lang';
2
+ import { Website } from './Website';
3
+ import { Publishable } from './Publishable';
4
+ import { Slugable } from './Slugable';
5
+ export declare const CustomerCaseEntityName = "CustomerCase";
6
+ export declare const CustomerCaseEntityLabel = "";
7
+ export interface CustomerCase extends Publishable, Slugable {
8
+ id?: string | null;
9
+ lang?: Lang;
10
+ website?: Website;
11
+ }
@@ -0,0 +1,13 @@
1
+ import { PublishableBoolExp } from './PublishableBoolExp';
2
+ import { SlugableBoolExp } from './SlugableBoolExp';
3
+ import { IdComparisonExp } from './IdComparisonExp';
4
+ import { LangBoolExp } from './LangBoolExp';
5
+ import { WebsiteBoolExp } from './WebsiteBoolExp';
6
+ export interface CustomerCaseBoolExp extends PublishableBoolExp, SlugableBoolExp {
7
+ _and?: CustomerCaseBoolExp[];
8
+ _or?: CustomerCaseBoolExp[];
9
+ _not?: CustomerCaseBoolExp;
10
+ id?: IdComparisonExp;
11
+ lang?: LangBoolExp;
12
+ website?: WebsiteBoolExp;
13
+ }
@@ -0,0 +1,15 @@
1
+ import { PublishableDistinctExp } from './PublishableDistinctExp';
2
+ import { SlugableDistinctExp } from './SlugableDistinctExp';
3
+ export declare enum CustomerCaseDistinctEnum {
4
+ id = "id",
5
+ publishedAt = "publishedAt",
6
+ status = "status",
7
+ title = "title",
8
+ extends = "extends",
9
+ createdAt = "createdAt",
10
+ updatedAt = "updatedAt",
11
+ content = "content",
12
+ slug = "slug",
13
+ description = "description"
14
+ }
15
+ export type CustomerCaseDistinctExp = CustomerCaseDistinctEnum | PublishableDistinctExp | SlugableDistinctExp;
@@ -0,0 +1,13 @@
1
+ import { CustomerCase } from './CustomerCase';
2
+ import { LangInput } from './LangInput';
3
+ import { WebsiteInput } from './WebsiteInput';
4
+ import { SetHasOne } from '@rxdrag/entify-lib';
5
+ import { Publishable } from './Publishable';
6
+ import { Slugable } from './Slugable';
7
+ export interface CustomerCaseInput extends Publishable, Slugable {
8
+ id?: string | null;
9
+ lang?: SetHasOne<LangInput>;
10
+ website?: SetHasOne<WebsiteInput>;
11
+ }
12
+ export declare const customerCaseToInputCascade: (entity: CustomerCase) => CustomerCaseInput;
13
+ export declare const customerCaseToInput: (entity: CustomerCase) => CustomerCaseInput;
@@ -0,0 +1,6 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ import { PublishableOrderBy } from './PublishableOrderBy';
3
+ import { SlugableOrderBy } from './SlugableOrderBy';
4
+ export interface CustomerCaseOrderBy extends PublishableOrderBy, SlugableOrderBy {
5
+ id?: OrderBy;
6
+ }
@@ -0,0 +1,15 @@
1
+ import { Website } from './Website';
2
+ import { Product } from './Product';
3
+ import { Solution } from './Solution';
4
+ export declare const FAQEntityName = "FAQ";
5
+ export declare const FAQEntityLabel = "";
6
+ export interface FAQ {
7
+ id?: string | null;
8
+ question?: string;
9
+ answer?: string;
10
+ createdAt?: Date;
11
+ updatedAt?: Date;
12
+ website?: Website;
13
+ product?: Product;
14
+ solution?: Solution;
15
+ }
@@ -0,0 +1,19 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
+ import { WebsiteBoolExp } from './WebsiteBoolExp';
5
+ import { ProductBoolExp } from './ProductBoolExp';
6
+ import { SolutionBoolExp } from './SolutionBoolExp';
7
+ export interface FAQBoolExp {
8
+ _and?: FAQBoolExp[];
9
+ _or?: FAQBoolExp[];
10
+ _not?: FAQBoolExp;
11
+ id?: IdComparisonExp;
12
+ question?: StringComparisonExp;
13
+ answer?: StringComparisonExp;
14
+ createdAt?: DateTimeComparisonExp;
15
+ updatedAt?: DateTimeComparisonExp;
16
+ website?: WebsiteBoolExp;
17
+ product?: ProductBoolExp;
18
+ solution?: SolutionBoolExp;
19
+ }
@@ -0,0 +1,8 @@
1
+ export declare enum FAQDistinctEnum {
2
+ id = "id",
3
+ question = "question",
4
+ answer = "answer",
5
+ createdAt = "createdAt",
6
+ updatedAt = "updatedAt"
7
+ }
8
+ export type FAQDistinctExp = FAQDistinctEnum;
@@ -0,0 +1,17 @@
1
+ import { FAQ } from './FAQ';
2
+ import { WebsiteInput } from './WebsiteInput';
3
+ import { ProductInput } from './ProductInput';
4
+ import { SolutionInput } from './SolutionInput';
5
+ import { SetHasOne } from '@rxdrag/entify-lib';
6
+ export interface FAQInput {
7
+ id?: string | null;
8
+ question?: string;
9
+ answer?: string;
10
+ createdAt?: Date;
11
+ updatedAt?: Date;
12
+ website?: SetHasOne<WebsiteInput>;
13
+ product?: SetHasOne<ProductInput>;
14
+ solution?: SetHasOne<SolutionInput>;
15
+ }
16
+ export declare const fAQToInputCascade: (entity: FAQ) => FAQInput;
17
+ export declare const fAQToInput: (entity: FAQ) => FAQInput;
@@ -0,0 +1,8 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ export interface FAQOrderBy {
3
+ id?: OrderBy;
4
+ question?: OrderBy;
5
+ answer?: OrderBy;
6
+ createdAt?: OrderBy;
7
+ updatedAt?: OrderBy;
8
+ }
@@ -2,16 +2,17 @@ import { MediaFolder } from './MediaFolder';
2
2
  import { Enquiry } from './Enquiry';
3
3
  import { Product } from './Product';
4
4
  import { Post } from './Post';
5
+ import { Solution } from './Solution';
6
+ import { CustomerCase } from './CustomerCase';
5
7
  import { PostCategory } from './PostCategory';
6
8
  import { Tag } from './Tag';
7
9
  import { Customer } from './Customer';
8
10
  import { ProductCategory } from './ProductCategory';
9
11
  import { SpamFilterRule } from './SpamFilterRule';
10
12
  import { Media } from './Media';
11
- import { VideoFolder } from './VideoFolder';
12
- import { Video } from './Video';
13
13
  import { Website } from './Website';
14
14
  import { Theme } from './Theme';
15
+ import { Bulletin } from './Bulletin';
15
16
  import { Aggregate } from './Aggregate';
16
17
  export declare const LangEntityName = "Lang";
17
18
  export declare const LangEntityLabel = "\u8BED\u8A00";
@@ -49,30 +50,32 @@ export interface Lang {
49
50
  webPartsOfEnquiry?: Enquiry[];
50
51
  webPartsOfProduct?: Product[];
51
52
  webPartsOfPost?: Post[];
53
+ webPartsOfSolution?: Solution[];
54
+ webPartsOfCustomerCase?: CustomerCase[];
52
55
  webPartsOfPostCategory?: PostCategory[];
53
56
  webPartsOfTag?: Tag[];
54
57
  webPartsOfCustomer?: Customer[];
55
58
  webPartsOfProductCategory?: ProductCategory[];
56
59
  webPartsOfSpamFilterRule?: SpamFilterRule[];
57
60
  webPartsOfMedia?: Media[];
58
- webPartsOfVideoFolder?: VideoFolder[];
59
- webPartsOfVideo?: Video[];
60
61
  websites?: Website[];
61
62
  baseLangOf?: Website[];
62
63
  themes?: Theme[];
64
+ bulletins?: Bulletin[];
63
65
  webPartsOfMediaFolderAggregate?: Aggregate;
64
66
  webPartsOfEnquiryAggregate?: Aggregate;
65
67
  webPartsOfProductAggregate?: Aggregate;
66
68
  webPartsOfPostAggregate?: Aggregate;
69
+ webPartsOfSolutionAggregate?: Aggregate;
70
+ webPartsOfCustomerCaseAggregate?: Aggregate;
67
71
  webPartsOfPostCategoryAggregate?: Aggregate;
68
72
  webPartsOfTagAggregate?: Aggregate;
69
73
  webPartsOfCustomerAggregate?: Aggregate;
70
74
  webPartsOfProductCategoryAggregate?: Aggregate;
71
75
  webPartsOfSpamFilterRuleAggregate?: Aggregate;
72
76
  webPartsOfMediaAggregate?: Aggregate;
73
- webPartsOfVideoFolderAggregate?: Aggregate;
74
- webPartsOfVideoAggregate?: Aggregate;
75
77
  websitesAggregate?: Aggregate;
76
78
  baseLangOfAggregate?: Aggregate;
77
79
  themesAggregate?: Aggregate;
80
+ bulletinsAggregate?: Aggregate;
78
81
  }
@@ -4,16 +4,17 @@ import { MediaFolderBoolExp } from './MediaFolderBoolExp';
4
4
  import { EnquiryBoolExp } from './EnquiryBoolExp';
5
5
  import { ProductBoolExp } from './ProductBoolExp';
6
6
  import { PostBoolExp } from './PostBoolExp';
7
+ import { SolutionBoolExp } from './SolutionBoolExp';
8
+ import { CustomerCaseBoolExp } from './CustomerCaseBoolExp';
7
9
  import { PostCategoryBoolExp } from './PostCategoryBoolExp';
8
10
  import { TagBoolExp } from './TagBoolExp';
9
11
  import { CustomerBoolExp } from './CustomerBoolExp';
10
12
  import { ProductCategoryBoolExp } from './ProductCategoryBoolExp';
11
13
  import { SpamFilterRuleBoolExp } from './SpamFilterRuleBoolExp';
12
14
  import { MediaBoolExp } from './MediaBoolExp';
13
- import { VideoFolderBoolExp } from './VideoFolderBoolExp';
14
- import { VideoBoolExp } from './VideoBoolExp';
15
15
  import { WebsiteBoolExp } from './WebsiteBoolExp';
16
16
  import { ThemeBoolExp } from './ThemeBoolExp';
17
+ import { BulletinBoolExp } from './BulletinBoolExp';
17
18
  /**
18
19
  * 语言
19
20
  *
@@ -36,15 +37,16 @@ export interface LangBoolExp {
36
37
  webPartsOfEnquiry?: EnquiryBoolExp;
37
38
  webPartsOfProduct?: ProductBoolExp;
38
39
  webPartsOfPost?: PostBoolExp;
40
+ webPartsOfSolution?: SolutionBoolExp;
41
+ webPartsOfCustomerCase?: CustomerCaseBoolExp;
39
42
  webPartsOfPostCategory?: PostCategoryBoolExp;
40
43
  webPartsOfTag?: TagBoolExp;
41
44
  webPartsOfCustomer?: CustomerBoolExp;
42
45
  webPartsOfProductCategory?: ProductCategoryBoolExp;
43
46
  webPartsOfSpamFilterRule?: SpamFilterRuleBoolExp;
44
47
  webPartsOfMedia?: MediaBoolExp;
45
- webPartsOfVideoFolder?: VideoFolderBoolExp;
46
- webPartsOfVideo?: VideoBoolExp;
47
48
  websites?: WebsiteBoolExp;
48
49
  baseLangOf?: WebsiteBoolExp;
49
50
  themes?: ThemeBoolExp;
51
+ bulletins?: BulletinBoolExp;
50
52
  }
@@ -3,16 +3,17 @@ import { MediaFolderInput } from './MediaFolderInput';
3
3
  import { EnquiryInput } from './EnquiryInput';
4
4
  import { ProductInput } from './ProductInput';
5
5
  import { PostInput } from './PostInput';
6
+ import { SolutionInput } from './SolutionInput';
7
+ import { CustomerCaseInput } from './CustomerCaseInput';
6
8
  import { PostCategoryInput } from './PostCategoryInput';
7
9
  import { TagInput } from './TagInput';
8
10
  import { CustomerInput } from './CustomerInput';
9
11
  import { ProductCategoryInput } from './ProductCategoryInput';
10
12
  import { SpamFilterRuleInput } from './SpamFilterRuleInput';
11
13
  import { MediaInput } from './MediaInput';
12
- import { VideoFolderInput } from './VideoFolderInput';
13
- import { VideoInput } from './VideoInput';
14
14
  import { WebsiteInput } from './WebsiteInput';
15
15
  import { ThemeInput } from './ThemeInput';
16
+ import { BulletinInput } from './BulletinInput';
16
17
  import { SetHasMany } from '@rxdrag/entify-lib';
17
18
  /**
18
19
  * 语言
@@ -48,17 +49,18 @@ export interface LangInput {
48
49
  webPartsOfEnquiry?: SetHasMany<EnquiryInput>;
49
50
  webPartsOfProduct?: SetHasMany<ProductInput>;
50
51
  webPartsOfPost?: SetHasMany<PostInput>;
52
+ webPartsOfSolution?: SetHasMany<SolutionInput>;
53
+ webPartsOfCustomerCase?: SetHasMany<CustomerCaseInput>;
51
54
  webPartsOfPostCategory?: SetHasMany<PostCategoryInput>;
52
55
  webPartsOfTag?: SetHasMany<TagInput>;
53
56
  webPartsOfCustomer?: SetHasMany<CustomerInput>;
54
57
  webPartsOfProductCategory?: SetHasMany<ProductCategoryInput>;
55
58
  webPartsOfSpamFilterRule?: SetHasMany<SpamFilterRuleInput>;
56
59
  webPartsOfMedia?: SetHasMany<MediaInput>;
57
- webPartsOfVideoFolder?: SetHasMany<VideoFolderInput>;
58
- webPartsOfVideo?: SetHasMany<VideoInput>;
59
60
  websites?: SetHasMany<WebsiteInput>;
60
61
  baseLangOf?: SetHasMany<WebsiteInput>;
61
62
  themes?: SetHasMany<ThemeInput>;
63
+ bulletins?: SetHasMany<BulletinInput>;
62
64
  }
63
65
  export declare const langToInputCascade: (entity: Lang) => LangInput;
64
66
  export declare const langToInput: (entity: Lang) => LangInput;
@@ -13,7 +13,6 @@ import { PostCategory } from './PostCategory';
13
13
  import { ThemeConfig } from './ThemeConfig';
14
14
  import { PageMeta } from './PageMeta';
15
15
  import { SearchIndex } from './SearchIndex';
16
- import { Video } from './Video';
17
16
  import { Aggregate } from './Aggregate';
18
17
  import { WebsitePart } from './WebsitePart';
19
18
  export declare const MediaEntityName = "Media";
@@ -42,7 +41,6 @@ export interface Media extends WebsitePart {
42
41
  usedByThemConfig?: ThemeConfig[];
43
42
  pageMeta?: PageMeta[];
44
43
  searchIndex?: SearchIndex[];
45
- coverOfVideo?: Video[];
46
44
  coverOfAggregate?: Aggregate;
47
45
  meidaOfProductAggregate?: Aggregate;
48
46
  productMediaPivotsAggregate?: Aggregate;
@@ -51,5 +49,4 @@ export interface Media extends WebsitePart {
51
49
  usedByThemConfigAggregate?: Aggregate;
52
50
  pageMetaAggregate?: Aggregate;
53
51
  searchIndexAggregate?: Aggregate;
54
- coverOfVideoAggregate?: Aggregate;
55
52
  }
@@ -18,7 +18,6 @@ import { PostCategoryBoolExp } from './PostCategoryBoolExp';
18
18
  import { ThemeConfigBoolExp } from './ThemeConfigBoolExp';
19
19
  import { PageMetaBoolExp } from './PageMetaBoolExp';
20
20
  import { SearchIndexBoolExp } from './SearchIndexBoolExp';
21
- import { VideoBoolExp } from './VideoBoolExp';
22
21
  export interface MediaBoolExp extends WebsitePartBoolExp {
23
22
  _and?: MediaBoolExp[];
24
23
  _or?: MediaBoolExp[];
@@ -45,5 +44,4 @@ export interface MediaBoolExp extends WebsitePartBoolExp {
45
44
  usedByThemConfig?: ThemeConfigBoolExp;
46
45
  pageMeta?: PageMetaBoolExp;
47
46
  searchIndex?: SearchIndexBoolExp;
48
- coverOfVideo?: VideoBoolExp;
49
47
  }
@@ -14,7 +14,6 @@ import { PostCategoryInput } from './PostCategoryInput';
14
14
  import { ThemeConfigInput } from './ThemeConfigInput';
15
15
  import { PageMetaInput } from './PageMetaInput';
16
16
  import { SearchIndexInput } from './SearchIndexInput';
17
- import { VideoInput } from './VideoInput';
18
17
  import { SetHasMany } from '@rxdrag/entify-lib';
19
18
  import { SetHasOne } from '@rxdrag/entify-lib';
20
19
  import { WebsitePart } from './WebsitePart';
@@ -42,7 +41,6 @@ export interface MediaInput extends WebsitePart {
42
41
  usedByThemConfig?: SetHasMany<ThemeConfigInput>;
43
42
  pageMeta?: SetHasMany<PageMetaInput>;
44
43
  searchIndex?: SetHasMany<SearchIndexInput>;
45
- coverOfVideo?: SetHasMany<VideoInput>;
46
44
  }
47
45
  export declare const mediaToInputCascade: (entity: Media) => MediaInput;
48
46
  export declare const mediaToInput: (entity: Media) => MediaInput;
@@ -4,6 +4,8 @@ import { MediaOnProduct } from './MediaOnProduct';
4
4
  import { AttachmentOnProduct } from './AttachmentOnProduct';
5
5
  import { Lang } from './Lang';
6
6
  import { PageMeta } from './PageMeta';
7
+ import { FAQ } from './FAQ';
8
+ import { ProductRelatedPivot } from './ProductRelatedPivot';
7
9
  import { User } from './User';
8
10
  import { Website } from './Website';
9
11
  import { Aggregate } from './Aggregate';
@@ -34,9 +36,14 @@ export interface Product extends Publishable {
34
36
  attachmentPivots?: AttachmentOnProduct[];
35
37
  lang?: Lang;
36
38
  meta?: PageMeta;
39
+ faqs?: FAQ[];
40
+ relatedPivots?: ProductRelatedPivot[];
37
41
  creator?: User;
38
42
  website?: Website;
43
+ relatedByPovit?: ProductRelatedPivot;
39
44
  tagsAggregate?: Aggregate;
40
45
  mediaPivotsAggregate?: Aggregate;
41
46
  attachmentPivotsAggregate?: Aggregate;
47
+ faqsAggregate?: Aggregate;
48
+ relatedPivotsAggregate?: Aggregate;
42
49
  }
@@ -9,6 +9,8 @@ import { MediaOnProductBoolExp } from './MediaOnProductBoolExp';
9
9
  import { AttachmentOnProductBoolExp } from './AttachmentOnProductBoolExp';
10
10
  import { LangBoolExp } from './LangBoolExp';
11
11
  import { PageMetaBoolExp } from './PageMetaBoolExp';
12
+ import { FAQBoolExp } from './FAQBoolExp';
13
+ import { ProductRelatedPivotBoolExp } from './ProductRelatedPivotBoolExp';
12
14
  import { UserBoolExp } from './UserBoolExp';
13
15
  import { WebsiteBoolExp } from './WebsiteBoolExp';
14
16
  export interface ProductBoolExp extends PublishableBoolExp {
@@ -32,6 +34,9 @@ export interface ProductBoolExp extends PublishableBoolExp {
32
34
  attachmentPivots?: AttachmentOnProductBoolExp;
33
35
  lang?: LangBoolExp;
34
36
  meta?: PageMetaBoolExp;
37
+ faqs?: FAQBoolExp;
38
+ relatedPivots?: ProductRelatedPivotBoolExp;
35
39
  creator?: UserBoolExp;
36
40
  website?: WebsiteBoolExp;
41
+ relatedByPovit?: ProductRelatedPivotBoolExp;
37
42
  }
@@ -5,6 +5,8 @@ import { MediaOnProductInput } from './MediaOnProductInput';
5
5
  import { AttachmentOnProductInput } from './AttachmentOnProductInput';
6
6
  import { LangInput } from './LangInput';
7
7
  import { PageMetaInput } from './PageMetaInput';
8
+ import { FAQInput } from './FAQInput';
9
+ import { ProductRelatedPivotInput } from './ProductRelatedPivotInput';
8
10
  import { UserInput } from './UserInput';
9
11
  import { WebsiteInput } from './WebsiteInput';
10
12
  import { SetHasMany } from '@rxdrag/entify-lib';
@@ -34,8 +36,11 @@ export interface ProductInput extends Publishable {
34
36
  attachmentPivots?: SetHasMany<AttachmentOnProductInput>;
35
37
  lang?: SetHasOne<LangInput>;
36
38
  meta?: SetHasOne<PageMetaInput>;
39
+ faqs?: SetHasMany<FAQInput>;
40
+ relatedPivots?: SetHasMany<ProductRelatedPivotInput>;
37
41
  creator?: SetHasOne<UserInput>;
38
42
  website?: SetHasOne<WebsiteInput>;
43
+ relatedByPovit?: SetHasOne<ProductRelatedPivotInput>;
39
44
  }
40
45
  export declare const productToInputCascade: (entity: Product) => ProductInput;
41
46
  export declare const productToInput: (entity: Product) => ProductInput;
@@ -0,0 +1,9 @@
1
+ import { Product } from './Product';
2
+ export declare const ProductRelatedPivotEntityName = "ProductRelatedPivot";
3
+ export declare const ProductRelatedPivotEntityLabel = "";
4
+ export interface ProductRelatedPivot {
5
+ id?: string | null;
6
+ seqValue?: number;
7
+ product?: Product;
8
+ relatedBy?: Product;
9
+ }
@@ -0,0 +1,12 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { NumberComparisonExp } from './NumberComparisonExp';
3
+ import { ProductBoolExp } from './ProductBoolExp';
4
+ export interface ProductRelatedPivotBoolExp {
5
+ _and?: ProductRelatedPivotBoolExp[];
6
+ _or?: ProductRelatedPivotBoolExp[];
7
+ _not?: ProductRelatedPivotBoolExp;
8
+ id?: IdComparisonExp;
9
+ seqValue?: NumberComparisonExp;
10
+ product?: ProductBoolExp;
11
+ relatedBy?: ProductBoolExp;
12
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum ProductRelatedPivotDistinctEnum {
2
+ id = "id",
3
+ seqValue = "seqValue"
4
+ }
5
+ export type ProductRelatedPivotDistinctExp = ProductRelatedPivotDistinctEnum;
@@ -0,0 +1,11 @@
1
+ import { ProductRelatedPivot } from './ProductRelatedPivot';
2
+ import { ProductInput } from './ProductInput';
3
+ import { SetHasOne } from '@rxdrag/entify-lib';
4
+ export interface ProductRelatedPivotInput {
5
+ id?: string | null;
6
+ seqValue?: number;
7
+ product?: SetHasOne<ProductInput>;
8
+ relatedBy?: SetHasOne<ProductInput>;
9
+ }
10
+ export declare const productRelatedPivotToInputCascade: (entity: ProductRelatedPivot) => ProductRelatedPivotInput;
11
+ export declare const productRelatedPivotToInput: (entity: ProductRelatedPivot) => ProductRelatedPivotInput;
@@ -0,0 +1,5 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ export interface ProductRelatedPivotOrderBy {
3
+ id?: OrderBy;
4
+ seqValue?: OrderBy;
5
+ }
@@ -0,0 +1,15 @@
1
+ import { Lang } from './Lang';
2
+ import { FAQ } from './FAQ';
3
+ import { Website } from './Website';
4
+ import { Aggregate } from './Aggregate';
5
+ import { Publishable } from './Publishable';
6
+ import { Slugable } from './Slugable';
7
+ export declare const SolutionEntityName = "Solution";
8
+ export declare const SolutionEntityLabel = "";
9
+ export interface Solution extends Publishable, Slugable {
10
+ id?: string | null;
11
+ lang?: Lang;
12
+ faqs?: FAQ[];
13
+ website?: Website;
14
+ faqsAggregate?: Aggregate;
15
+ }
@@ -0,0 +1,15 @@
1
+ import { PublishableBoolExp } from './PublishableBoolExp';
2
+ import { SlugableBoolExp } from './SlugableBoolExp';
3
+ import { IdComparisonExp } from './IdComparisonExp';
4
+ import { LangBoolExp } from './LangBoolExp';
5
+ import { FAQBoolExp } from './FAQBoolExp';
6
+ import { WebsiteBoolExp } from './WebsiteBoolExp';
7
+ export interface SolutionBoolExp extends PublishableBoolExp, SlugableBoolExp {
8
+ _and?: SolutionBoolExp[];
9
+ _or?: SolutionBoolExp[];
10
+ _not?: SolutionBoolExp;
11
+ id?: IdComparisonExp;
12
+ lang?: LangBoolExp;
13
+ faqs?: FAQBoolExp;
14
+ website?: WebsiteBoolExp;
15
+ }
@@ -0,0 +1,15 @@
1
+ import { PublishableDistinctExp } from './PublishableDistinctExp';
2
+ import { SlugableDistinctExp } from './SlugableDistinctExp';
3
+ export declare enum SolutionDistinctEnum {
4
+ id = "id",
5
+ publishedAt = "publishedAt",
6
+ status = "status",
7
+ title = "title",
8
+ extends = "extends",
9
+ createdAt = "createdAt",
10
+ updatedAt = "updatedAt",
11
+ content = "content",
12
+ slug = "slug",
13
+ description = "description"
14
+ }
15
+ export type SolutionDistinctExp = SolutionDistinctEnum | PublishableDistinctExp | SlugableDistinctExp;
@@ -0,0 +1,16 @@
1
+ import { Solution } from './Solution';
2
+ import { LangInput } from './LangInput';
3
+ import { FAQInput } from './FAQInput';
4
+ import { WebsiteInput } from './WebsiteInput';
5
+ import { SetHasMany } from '@rxdrag/entify-lib';
6
+ import { SetHasOne } from '@rxdrag/entify-lib';
7
+ import { Publishable } from './Publishable';
8
+ import { Slugable } from './Slugable';
9
+ export interface SolutionInput extends Publishable, Slugable {
10
+ id?: string | null;
11
+ lang?: SetHasOne<LangInput>;
12
+ faqs?: SetHasMany<FAQInput>;
13
+ website?: SetHasOne<WebsiteInput>;
14
+ }
15
+ export declare const solutionToInputCascade: (entity: Solution) => SolutionInput;
16
+ export declare const solutionToInput: (entity: Solution) => SolutionInput;
@@ -0,0 +1,6 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ import { PublishableOrderBy } from './PublishableOrderBy';
3
+ import { SlugableOrderBy } from './SlugableOrderBy';
4
+ export interface SolutionOrderBy extends PublishableOrderBy, SlugableOrderBy {
5
+ id?: OrderBy;
6
+ }