@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.
- package/dist/classes/BulletinQueryOptions.d.ts +19 -0
- package/dist/classes/CustomerCaseQueryOptions.d.ts +22 -0
- package/dist/classes/FAQQueryOptions.d.ts +20 -0
- package/dist/classes/LangQueryOptions.d.ts +15 -10
- package/dist/classes/MediaQueryOptions.d.ts +0 -5
- package/dist/classes/ProductQueryOptions.d.ts +11 -0
- package/dist/classes/ProductRelatedPivotQueryOptions.d.ts +12 -0
- package/dist/classes/SolutionQueryOptions.d.ts +27 -0
- package/dist/classes/WebsiteQueryOptions.d.ts +20 -10
- package/dist/classes/index.d.ts +5 -2
- package/dist/entries/bulletinEntry.d.ts +2 -0
- package/dist/entries/customerCaseEntry.d.ts +2 -0
- package/dist/entries/{videoEntry.d.ts → fAQEntry.d.ts} +1 -1
- package/dist/entries/index.d.ts +5 -2
- package/dist/entries/productRelatedPivotEntry.d.ts +2 -0
- package/dist/entries/solutionEntry.d.ts +2 -0
- package/dist/fields/BulletinFields.d.ts +13 -0
- package/dist/fields/CustomerCaseFields.d.ts +16 -0
- package/dist/fields/FAQFields.d.ts +12 -0
- package/dist/fields/LangFields.d.ts +7 -5
- package/dist/fields/MediaFields.d.ts +1 -3
- package/dist/fields/ProductFields.d.ts +6 -1
- package/dist/fields/ProductRelatedPivotFields.d.ts +8 -0
- package/dist/fields/SolutionFields.d.ts +18 -0
- package/dist/fields/WebsiteFields.d.ts +9 -5
- package/dist/fields/index.d.ts +5 -2
- package/dist/index.mjs +695 -378
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Bulletin.d.ts +19 -0
- package/dist/interfaces/BulletinBoolExp.d.ts +23 -0
- package/dist/interfaces/BulletinDistinctExp.d.ts +10 -0
- package/dist/interfaces/BulletinInput.d.ts +21 -0
- package/dist/interfaces/BulletinOrderBy.d.ts +14 -0
- package/dist/interfaces/CustomerCase.d.ts +11 -0
- package/dist/interfaces/CustomerCaseBoolExp.d.ts +13 -0
- package/dist/interfaces/CustomerCaseDistinctExp.d.ts +15 -0
- package/dist/interfaces/CustomerCaseInput.d.ts +13 -0
- package/dist/interfaces/CustomerCaseOrderBy.d.ts +6 -0
- package/dist/interfaces/FAQ.d.ts +15 -0
- package/dist/interfaces/FAQBoolExp.d.ts +19 -0
- package/dist/interfaces/FAQDistinctExp.d.ts +8 -0
- package/dist/interfaces/FAQInput.d.ts +17 -0
- package/dist/interfaces/FAQOrderBy.d.ts +8 -0
- package/dist/interfaces/Lang.d.ts +9 -6
- package/dist/interfaces/LangBoolExp.d.ts +6 -4
- package/dist/interfaces/LangInput.d.ts +6 -4
- package/dist/interfaces/Media.d.ts +0 -3
- package/dist/interfaces/MediaBoolExp.d.ts +0 -2
- package/dist/interfaces/MediaInput.d.ts +0 -2
- package/dist/interfaces/Product.d.ts +7 -0
- package/dist/interfaces/ProductBoolExp.d.ts +5 -0
- package/dist/interfaces/ProductInput.d.ts +5 -0
- package/dist/interfaces/ProductRelatedPivot.d.ts +9 -0
- package/dist/interfaces/ProductRelatedPivotBoolExp.d.ts +12 -0
- package/dist/interfaces/ProductRelatedPivotDistinctExp.d.ts +5 -0
- package/dist/interfaces/ProductRelatedPivotInput.d.ts +11 -0
- package/dist/interfaces/ProductRelatedPivotOrderBy.d.ts +5 -0
- package/dist/interfaces/Solution.d.ts +15 -0
- package/dist/interfaces/SolutionBoolExp.d.ts +15 -0
- package/dist/interfaces/SolutionDistinctExp.d.ts +15 -0
- package/dist/interfaces/SolutionInput.d.ts +16 -0
- package/dist/interfaces/SolutionOrderBy.d.ts +6 -0
- package/dist/interfaces/Website.d.ts +12 -6
- package/dist/interfaces/WebsiteBoolExp.d.ts +8 -4
- package/dist/interfaces/WebsiteInput.d.ts +8 -4
- package/dist/interfaces/index.d.ts +25 -10
- package/package.json +3 -3
- package/dist/classes/VideoFolderQueryOptions.d.ts +0 -26
- package/dist/classes/VideoQueryOptions.d.ts +0 -31
- package/dist/entries/videoFolderEntry.d.ts +0 -2
- package/dist/fields/VideoFields.d.ts +0 -20
- package/dist/fields/VideoFolderFields.d.ts +0 -17
- package/dist/interfaces/Video.d.ts +0 -27
- package/dist/interfaces/VideoBoolExp.d.ts +0 -29
- package/dist/interfaces/VideoDistinctExp.d.ts +0 -15
- package/dist/interfaces/VideoFolder.d.ts +0 -23
- package/dist/interfaces/VideoFolderBoolExp.d.ts +0 -24
- package/dist/interfaces/VideoFolderDistinctExp.d.ts +0 -10
- package/dist/interfaces/VideoFolderInput.d.ts +0 -23
- package/dist/interfaces/VideoFolderOrderBy.d.ts +0 -11
- package/dist/interfaces/VideoInput.d.ts +0 -28
- package/dist/interfaces/VideoOrderBy.d.ts +0 -16
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
+
import { QueryOptions } from "./QueryOptions";
|
|
3
|
+
import { Bulletin, BulletinBoolExp, BulletinDistinctExp, BulletinOrderBy } from "../interfaces";
|
|
4
|
+
import { LangQueryOptions } from './LangQueryOptions';
|
|
5
|
+
import { Lang } from '../interfaces';
|
|
6
|
+
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
7
|
+
import { Website } from '../interfaces';
|
|
8
|
+
export declare class BulletinQueryOptions extends QueryOptions<Bulletin, BulletinBoolExp, BulletinOrderBy, BulletinDistinctExp> {
|
|
9
|
+
constructor(fields?: (keyof Bulletin)[], queryArgs?: IQueryArgs<BulletinBoolExp, BulletinOrderBy, BulletinDistinctExp>);
|
|
10
|
+
id(): this;
|
|
11
|
+
content(): this;
|
|
12
|
+
type(): this;
|
|
13
|
+
createdAt(): this;
|
|
14
|
+
updatedAt(): this;
|
|
15
|
+
endDate(): this;
|
|
16
|
+
title(): this;
|
|
17
|
+
lang(options?: LangQueryOptions | (keyof Lang)[]): this;
|
|
18
|
+
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
19
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
+
import { QueryOptions } from "./QueryOptions";
|
|
3
|
+
import { CustomerCase, CustomerCaseBoolExp, CustomerCaseDistinctExp, CustomerCaseOrderBy } from "../interfaces";
|
|
4
|
+
import { LangQueryOptions } from './LangQueryOptions';
|
|
5
|
+
import { Lang } from '../interfaces';
|
|
6
|
+
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
7
|
+
import { Website } from '../interfaces';
|
|
8
|
+
export declare class CustomerCaseQueryOptions extends QueryOptions<CustomerCase, CustomerCaseBoolExp, CustomerCaseOrderBy, CustomerCaseDistinctExp> {
|
|
9
|
+
constructor(fields?: (keyof CustomerCase)[], queryArgs?: IQueryArgs<CustomerCaseBoolExp, CustomerCaseOrderBy, CustomerCaseDistinctExp>);
|
|
10
|
+
id(): this;
|
|
11
|
+
publishedAt(): this;
|
|
12
|
+
status(): this;
|
|
13
|
+
title(): this;
|
|
14
|
+
extends(): this;
|
|
15
|
+
createdAt(): this;
|
|
16
|
+
updatedAt(): this;
|
|
17
|
+
content(): this;
|
|
18
|
+
slug(): this;
|
|
19
|
+
description(): this;
|
|
20
|
+
lang(options?: LangQueryOptions | (keyof Lang)[]): this;
|
|
21
|
+
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
22
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
+
import { QueryOptions } from "./QueryOptions";
|
|
3
|
+
import { FAQ, FAQBoolExp, FAQDistinctExp, FAQOrderBy } from "../interfaces";
|
|
4
|
+
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
5
|
+
import { Website } from '../interfaces';
|
|
6
|
+
import { ProductQueryOptions } from './ProductQueryOptions';
|
|
7
|
+
import { Product } from '../interfaces';
|
|
8
|
+
import { SolutionQueryOptions } from './SolutionQueryOptions';
|
|
9
|
+
import { Solution } from '../interfaces';
|
|
10
|
+
export declare class FAQQueryOptions extends QueryOptions<FAQ, FAQBoolExp, FAQOrderBy, FAQDistinctExp> {
|
|
11
|
+
constructor(fields?: (keyof FAQ)[], queryArgs?: IQueryArgs<FAQBoolExp, FAQOrderBy, FAQDistinctExp>);
|
|
12
|
+
id(): this;
|
|
13
|
+
question(): this;
|
|
14
|
+
answer(): this;
|
|
15
|
+
createdAt(): this;
|
|
16
|
+
updatedAt(): this;
|
|
17
|
+
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
18
|
+
product(options?: ProductQueryOptions | (keyof Product)[]): this;
|
|
19
|
+
solution(options?: SolutionQueryOptions | (keyof Solution)[]): this;
|
|
20
|
+
}
|
|
@@ -13,6 +13,12 @@ import { ProductBoolExp } from '../interfaces';
|
|
|
13
13
|
import { PostQueryOptions } from './PostQueryOptions';
|
|
14
14
|
import { Post } from '../interfaces';
|
|
15
15
|
import { PostBoolExp } from '../interfaces';
|
|
16
|
+
import { SolutionQueryOptions } from './SolutionQueryOptions';
|
|
17
|
+
import { Solution } from '../interfaces';
|
|
18
|
+
import { SolutionBoolExp } from '../interfaces';
|
|
19
|
+
import { CustomerCaseQueryOptions } from './CustomerCaseQueryOptions';
|
|
20
|
+
import { CustomerCase } from '../interfaces';
|
|
21
|
+
import { CustomerCaseBoolExp } from '../interfaces';
|
|
16
22
|
import { PostCategoryQueryOptions } from './PostCategoryQueryOptions';
|
|
17
23
|
import { PostCategory } from '../interfaces';
|
|
18
24
|
import { PostCategoryBoolExp } from '../interfaces';
|
|
@@ -31,18 +37,15 @@ import { SpamFilterRuleBoolExp } from '../interfaces';
|
|
|
31
37
|
import { MediaQueryOptions } from './MediaQueryOptions';
|
|
32
38
|
import { Media } from '../interfaces';
|
|
33
39
|
import { MediaBoolExp } from '../interfaces';
|
|
34
|
-
import { VideoFolderQueryOptions } from './VideoFolderQueryOptions';
|
|
35
|
-
import { VideoFolder } from '../interfaces';
|
|
36
|
-
import { VideoFolderBoolExp } from '../interfaces';
|
|
37
|
-
import { VideoQueryOptions } from './VideoQueryOptions';
|
|
38
|
-
import { Video } from '../interfaces';
|
|
39
|
-
import { VideoBoolExp } from '../interfaces';
|
|
40
40
|
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
41
41
|
import { Website } from '../interfaces';
|
|
42
42
|
import { WebsiteBoolExp } from '../interfaces';
|
|
43
43
|
import { ThemeQueryOptions } from './ThemeQueryOptions';
|
|
44
44
|
import { Theme } from '../interfaces';
|
|
45
45
|
import { ThemeBoolExp } from '../interfaces';
|
|
46
|
+
import { BulletinQueryOptions } from './BulletinQueryOptions';
|
|
47
|
+
import { Bulletin } from '../interfaces';
|
|
48
|
+
import { BulletinBoolExp } from '../interfaces';
|
|
46
49
|
export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, LangOrderBy, LangDistinctExp> {
|
|
47
50
|
constructor(fields?: (keyof Lang)[], queryArgs?: IQueryArgs<LangBoolExp, LangOrderBy, LangDistinctExp>);
|
|
48
51
|
id(): this;
|
|
@@ -78,6 +81,10 @@ export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, La
|
|
|
78
81
|
webPartsOfProductAggregate(aggregate: IAggregate<ProductBoolExp>): this;
|
|
79
82
|
webPartsOfPost(options?: PostQueryOptions | (keyof Post)[]): this;
|
|
80
83
|
webPartsOfPostAggregate(aggregate: IAggregate<PostBoolExp>): this;
|
|
84
|
+
webPartsOfSolution(options?: SolutionQueryOptions | (keyof Solution)[]): this;
|
|
85
|
+
webPartsOfSolutionAggregate(aggregate: IAggregate<SolutionBoolExp>): this;
|
|
86
|
+
webPartsOfCustomerCase(options?: CustomerCaseQueryOptions | (keyof CustomerCase)[]): this;
|
|
87
|
+
webPartsOfCustomerCaseAggregate(aggregate: IAggregate<CustomerCaseBoolExp>): this;
|
|
81
88
|
webPartsOfPostCategory(options?: PostCategoryQueryOptions | (keyof PostCategory)[]): this;
|
|
82
89
|
webPartsOfPostCategoryAggregate(aggregate: IAggregate<PostCategoryBoolExp>): this;
|
|
83
90
|
webPartsOfTag(options?: TagQueryOptions | (keyof Tag)[]): this;
|
|
@@ -90,14 +97,12 @@ export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, La
|
|
|
90
97
|
webPartsOfSpamFilterRuleAggregate(aggregate: IAggregate<SpamFilterRuleBoolExp>): this;
|
|
91
98
|
webPartsOfMedia(options?: MediaQueryOptions | (keyof Media)[]): this;
|
|
92
99
|
webPartsOfMediaAggregate(aggregate: IAggregate<MediaBoolExp>): this;
|
|
93
|
-
webPartsOfVideoFolder(options?: VideoFolderQueryOptions | (keyof VideoFolder)[]): this;
|
|
94
|
-
webPartsOfVideoFolderAggregate(aggregate: IAggregate<VideoFolderBoolExp>): this;
|
|
95
|
-
webPartsOfVideo(options?: VideoQueryOptions | (keyof Video)[]): this;
|
|
96
|
-
webPartsOfVideoAggregate(aggregate: IAggregate<VideoBoolExp>): this;
|
|
97
100
|
websites(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
98
101
|
websitesAggregate(aggregate: IAggregate<WebsiteBoolExp>): this;
|
|
99
102
|
baseLangOf(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
100
103
|
baseLangOfAggregate(aggregate: IAggregate<WebsiteBoolExp>): this;
|
|
101
104
|
themes(options?: ThemeQueryOptions | (keyof Theme)[]): this;
|
|
102
105
|
themesAggregate(aggregate: IAggregate<ThemeBoolExp>): this;
|
|
106
|
+
bulletins(options?: BulletinQueryOptions | (keyof Bulletin)[]): this;
|
|
107
|
+
bulletinsAggregate(aggregate: IAggregate<BulletinBoolExp>): this;
|
|
103
108
|
}
|
|
@@ -35,9 +35,6 @@ import { PageMetaBoolExp } from '../interfaces';
|
|
|
35
35
|
import { SearchIndexQueryOptions } from './SearchIndexQueryOptions';
|
|
36
36
|
import { SearchIndex } from '../interfaces';
|
|
37
37
|
import { SearchIndexBoolExp } from '../interfaces';
|
|
38
|
-
import { VideoQueryOptions } from './VideoQueryOptions';
|
|
39
|
-
import { Video } from '../interfaces';
|
|
40
|
-
import { VideoBoolExp } from '../interfaces';
|
|
41
38
|
export declare class MediaQueryOptions extends QueryOptions<Media, MediaBoolExp, MediaOrderBy, MediaDistinctExp> {
|
|
42
39
|
constructor(fields?: (keyof Media)[], queryArgs?: IQueryArgs<MediaBoolExp, MediaOrderBy, MediaDistinctExp>);
|
|
43
40
|
id(): this;
|
|
@@ -72,6 +69,4 @@ export declare class MediaQueryOptions extends QueryOptions<Media, MediaBoolExp,
|
|
|
72
69
|
pageMetaAggregate(aggregate: IAggregate<PageMetaBoolExp>): this;
|
|
73
70
|
searchIndex(options?: SearchIndexQueryOptions | (keyof SearchIndex)[]): this;
|
|
74
71
|
searchIndexAggregate(aggregate: IAggregate<SearchIndexBoolExp>): this;
|
|
75
|
-
coverOfVideo(options?: VideoQueryOptions | (keyof Video)[]): this;
|
|
76
|
-
coverOfVideoAggregate(aggregate: IAggregate<VideoBoolExp>): this;
|
|
77
72
|
}
|
|
@@ -16,6 +16,12 @@ import { LangQueryOptions } from './LangQueryOptions';
|
|
|
16
16
|
import { Lang } from '../interfaces';
|
|
17
17
|
import { PageMetaQueryOptions } from './PageMetaQueryOptions';
|
|
18
18
|
import { PageMeta } from '../interfaces';
|
|
19
|
+
import { FAQQueryOptions } from './FAQQueryOptions';
|
|
20
|
+
import { FAQ } from '../interfaces';
|
|
21
|
+
import { FAQBoolExp } from '../interfaces';
|
|
22
|
+
import { ProductRelatedPivotQueryOptions } from './ProductRelatedPivotQueryOptions';
|
|
23
|
+
import { ProductRelatedPivot } from '../interfaces';
|
|
24
|
+
import { ProductRelatedPivotBoolExp } from '../interfaces';
|
|
19
25
|
import { UserQueryOptions } from './UserQueryOptions';
|
|
20
26
|
import { User } from '../interfaces';
|
|
21
27
|
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
@@ -57,6 +63,11 @@ export declare class ProductQueryOptions extends QueryOptions<Product, ProductBo
|
|
|
57
63
|
attachmentPivotsAggregate(aggregate: IAggregate<AttachmentOnProductBoolExp>): this;
|
|
58
64
|
lang(options?: LangQueryOptions | (keyof Lang)[]): this;
|
|
59
65
|
meta(options?: PageMetaQueryOptions | (keyof PageMeta)[]): this;
|
|
66
|
+
faqs(options?: FAQQueryOptions | (keyof FAQ)[]): this;
|
|
67
|
+
faqsAggregate(aggregate: IAggregate<FAQBoolExp>): this;
|
|
68
|
+
relatedPivots(options?: ProductRelatedPivotQueryOptions | (keyof ProductRelatedPivot)[]): this;
|
|
69
|
+
relatedPivotsAggregate(aggregate: IAggregate<ProductRelatedPivotBoolExp>): this;
|
|
60
70
|
creator(options?: UserQueryOptions | (keyof User)[]): this;
|
|
61
71
|
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
72
|
+
relatedByPovit(options?: ProductRelatedPivotQueryOptions | (keyof ProductRelatedPivot)[]): this;
|
|
62
73
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
+
import { QueryOptions } from "./QueryOptions";
|
|
3
|
+
import { ProductRelatedPivot, ProductRelatedPivotBoolExp, ProductRelatedPivotDistinctExp, ProductRelatedPivotOrderBy } from "../interfaces";
|
|
4
|
+
import { ProductQueryOptions } from './ProductQueryOptions';
|
|
5
|
+
import { Product } from '../interfaces';
|
|
6
|
+
export declare class ProductRelatedPivotQueryOptions extends QueryOptions<ProductRelatedPivot, ProductRelatedPivotBoolExp, ProductRelatedPivotOrderBy, ProductRelatedPivotDistinctExp> {
|
|
7
|
+
constructor(fields?: (keyof ProductRelatedPivot)[], queryArgs?: IQueryArgs<ProductRelatedPivotBoolExp, ProductRelatedPivotOrderBy, ProductRelatedPivotDistinctExp>);
|
|
8
|
+
id(): this;
|
|
9
|
+
seqValue(): this;
|
|
10
|
+
product(options?: ProductQueryOptions | (keyof Product)[]): this;
|
|
11
|
+
relatedBy(options?: ProductQueryOptions | (keyof Product)[]): this;
|
|
12
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { IAggregate, IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
+
import { QueryOptions } from "./QueryOptions";
|
|
3
|
+
import { Solution, SolutionBoolExp, SolutionDistinctExp, SolutionOrderBy } from "../interfaces";
|
|
4
|
+
import { LangQueryOptions } from './LangQueryOptions';
|
|
5
|
+
import { Lang } from '../interfaces';
|
|
6
|
+
import { FAQQueryOptions } from './FAQQueryOptions';
|
|
7
|
+
import { FAQ } from '../interfaces';
|
|
8
|
+
import { FAQBoolExp } from '../interfaces';
|
|
9
|
+
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
10
|
+
import { Website } from '../interfaces';
|
|
11
|
+
export declare class SolutionQueryOptions extends QueryOptions<Solution, SolutionBoolExp, SolutionOrderBy, SolutionDistinctExp> {
|
|
12
|
+
constructor(fields?: (keyof Solution)[], queryArgs?: IQueryArgs<SolutionBoolExp, SolutionOrderBy, SolutionDistinctExp>);
|
|
13
|
+
id(): this;
|
|
14
|
+
publishedAt(): this;
|
|
15
|
+
status(): this;
|
|
16
|
+
title(): this;
|
|
17
|
+
extends(): this;
|
|
18
|
+
createdAt(): this;
|
|
19
|
+
updatedAt(): this;
|
|
20
|
+
content(): this;
|
|
21
|
+
slug(): this;
|
|
22
|
+
description(): this;
|
|
23
|
+
lang(options?: LangQueryOptions | (keyof Lang)[]): this;
|
|
24
|
+
faqs(options?: FAQQueryOptions | (keyof FAQ)[]): this;
|
|
25
|
+
faqsAggregate(aggregate: IAggregate<FAQBoolExp>): this;
|
|
26
|
+
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
27
|
+
}
|
|
@@ -18,6 +18,12 @@ import { ProductBoolExp } from '../interfaces';
|
|
|
18
18
|
import { PostQueryOptions } from './PostQueryOptions';
|
|
19
19
|
import { Post } from '../interfaces';
|
|
20
20
|
import { PostBoolExp } from '../interfaces';
|
|
21
|
+
import { SolutionQueryOptions } from './SolutionQueryOptions';
|
|
22
|
+
import { Solution } from '../interfaces';
|
|
23
|
+
import { SolutionBoolExp } from '../interfaces';
|
|
24
|
+
import { CustomerCaseQueryOptions } from './CustomerCaseQueryOptions';
|
|
25
|
+
import { CustomerCase } from '../interfaces';
|
|
26
|
+
import { CustomerCaseBoolExp } from '../interfaces';
|
|
21
27
|
import { PostCategoryQueryOptions } from './PostCategoryQueryOptions';
|
|
22
28
|
import { PostCategory } from '../interfaces';
|
|
23
29
|
import { PostCategoryBoolExp } from '../interfaces';
|
|
@@ -36,12 +42,6 @@ import { SpamFilterRuleBoolExp } from '../interfaces';
|
|
|
36
42
|
import { MediaQueryOptions } from './MediaQueryOptions';
|
|
37
43
|
import { Media } from '../interfaces';
|
|
38
44
|
import { MediaBoolExp } from '../interfaces';
|
|
39
|
-
import { VideoFolderQueryOptions } from './VideoFolderQueryOptions';
|
|
40
|
-
import { VideoFolder } from '../interfaces';
|
|
41
|
-
import { VideoFolderBoolExp } from '../interfaces';
|
|
42
|
-
import { VideoQueryOptions } from './VideoQueryOptions';
|
|
43
|
-
import { Video } from '../interfaces';
|
|
44
|
-
import { VideoBoolExp } from '../interfaces';
|
|
45
45
|
import { LangQueryOptions } from './LangQueryOptions';
|
|
46
46
|
import { Lang } from '../interfaces';
|
|
47
47
|
import { LangBoolExp } from '../interfaces';
|
|
@@ -58,6 +58,12 @@ import { ChangeLogBoolExp } from '../interfaces';
|
|
|
58
58
|
import { SearchIndexQueryOptions } from './SearchIndexQueryOptions';
|
|
59
59
|
import { SearchIndex } from '../interfaces';
|
|
60
60
|
import { SearchIndexBoolExp } from '../interfaces';
|
|
61
|
+
import { FAQQueryOptions } from './FAQQueryOptions';
|
|
62
|
+
import { FAQ } from '../interfaces';
|
|
63
|
+
import { FAQBoolExp } from '../interfaces';
|
|
64
|
+
import { BulletinQueryOptions } from './BulletinQueryOptions';
|
|
65
|
+
import { Bulletin } from '../interfaces';
|
|
66
|
+
import { BulletinBoolExp } from '../interfaces';
|
|
61
67
|
export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
|
|
62
68
|
constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
|
|
63
69
|
id(): this;
|
|
@@ -103,6 +109,10 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
|
|
|
103
109
|
partsOfProductAggregate(aggregate: IAggregate<ProductBoolExp>): this;
|
|
104
110
|
partsOfPost(options?: PostQueryOptions | (keyof Post)[]): this;
|
|
105
111
|
partsOfPostAggregate(aggregate: IAggregate<PostBoolExp>): this;
|
|
112
|
+
partsOfSolution(options?: SolutionQueryOptions | (keyof Solution)[]): this;
|
|
113
|
+
partsOfSolutionAggregate(aggregate: IAggregate<SolutionBoolExp>): this;
|
|
114
|
+
partsOfCustomerCase(options?: CustomerCaseQueryOptions | (keyof CustomerCase)[]): this;
|
|
115
|
+
partsOfCustomerCaseAggregate(aggregate: IAggregate<CustomerCaseBoolExp>): this;
|
|
106
116
|
partsOfPostCategory(options?: PostCategoryQueryOptions | (keyof PostCategory)[]): this;
|
|
107
117
|
partsOfPostCategoryAggregate(aggregate: IAggregate<PostCategoryBoolExp>): this;
|
|
108
118
|
partsOfTag(options?: TagQueryOptions | (keyof Tag)[]): this;
|
|
@@ -115,10 +125,6 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
|
|
|
115
125
|
partsOfSpamFilterRuleAggregate(aggregate: IAggregate<SpamFilterRuleBoolExp>): this;
|
|
116
126
|
partsOfMedia(options?: MediaQueryOptions | (keyof Media)[]): this;
|
|
117
127
|
partsOfMediaAggregate(aggregate: IAggregate<MediaBoolExp>): this;
|
|
118
|
-
partsOfVideoFolder(options?: VideoFolderQueryOptions | (keyof VideoFolder)[]): this;
|
|
119
|
-
partsOfVideoFolderAggregate(aggregate: IAggregate<VideoFolderBoolExp>): this;
|
|
120
|
-
partsOfVideo(options?: VideoQueryOptions | (keyof Video)[]): this;
|
|
121
|
-
partsOfVideoAggregate(aggregate: IAggregate<VideoBoolExp>): this;
|
|
122
128
|
langs(options?: LangQueryOptions | (keyof Lang)[]): this;
|
|
123
129
|
langsAggregate(aggregate: IAggregate<LangBoolExp>): this;
|
|
124
130
|
baseLang(options?: LangQueryOptions | (keyof Lang)[]): this;
|
|
@@ -130,4 +136,8 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
|
|
|
130
136
|
changelogsAggregate(aggregate: IAggregate<ChangeLogBoolExp>): this;
|
|
131
137
|
searchIndexes(options?: SearchIndexQueryOptions | (keyof SearchIndex)[]): this;
|
|
132
138
|
searchIndexesAggregate(aggregate: IAggregate<SearchIndexBoolExp>): this;
|
|
139
|
+
faqs(options?: FAQQueryOptions | (keyof FAQ)[]): this;
|
|
140
|
+
faqsAggregate(aggregate: IAggregate<FAQBoolExp>): this;
|
|
141
|
+
bulletins(options?: BulletinQueryOptions | (keyof Bulletin)[]): this;
|
|
142
|
+
bulletinsAggregate(aggregate: IAggregate<BulletinBoolExp>): this;
|
|
133
143
|
}
|
package/dist/classes/index.d.ts
CHANGED
|
@@ -33,9 +33,12 @@ export * from './TemplateCategoryQueryOptions';
|
|
|
33
33
|
export * from './StyleConfigQueryOptions';
|
|
34
34
|
export * from './ChangeLogQueryOptions';
|
|
35
35
|
export * from './SearchIndexQueryOptions';
|
|
36
|
-
export * from './VideoFolderQueryOptions';
|
|
37
|
-
export * from './VideoQueryOptions';
|
|
38
36
|
export * from './TaskQueryOptions';
|
|
39
37
|
export * from './NotificationQueryOptions';
|
|
38
|
+
export * from './CustomerCaseQueryOptions';
|
|
39
|
+
export * from './SolutionQueryOptions';
|
|
40
|
+
export * from './FAQQueryOptions';
|
|
41
|
+
export * from './BulletinQueryOptions';
|
|
42
|
+
export * from './ProductRelatedPivotQueryOptions';
|
|
40
43
|
export * from './QueryOptions';
|
|
41
44
|
export * from './metainfo';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { EntityEntry } from "@rxdrag/entify-lib";
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const fAQEntry: EntityEntry;
|
package/dist/entries/index.d.ts
CHANGED
|
@@ -33,7 +33,10 @@ export * from './templateCategoryEntry';
|
|
|
33
33
|
export * from './styleConfigEntry';
|
|
34
34
|
export * from './changeLogEntry';
|
|
35
35
|
export * from './searchIndexEntry';
|
|
36
|
-
export * from './videoFolderEntry';
|
|
37
|
-
export * from './videoEntry';
|
|
38
36
|
export * from './taskEntry';
|
|
39
37
|
export * from './notificationEntry';
|
|
38
|
+
export * from './customerCaseEntry';
|
|
39
|
+
export * from './solutionEntry';
|
|
40
|
+
export * from './fAQEntry';
|
|
41
|
+
export * from './bulletinEntry';
|
|
42
|
+
export * from './productRelatedPivotEntry';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare enum BulletinFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
content = "content",
|
|
4
|
+
type = "type",
|
|
5
|
+
createdAt = "createdAt",
|
|
6
|
+
updatedAt = "updatedAt",
|
|
7
|
+
endDate = "endDate",
|
|
8
|
+
title = "title"
|
|
9
|
+
}
|
|
10
|
+
export declare enum BulletinAssciations {
|
|
11
|
+
lang = "lang",
|
|
12
|
+
website = "website"
|
|
13
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare enum CustomerCaseFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
publishedAt = "publishedAt",
|
|
4
|
+
status = "status",
|
|
5
|
+
title = "title",
|
|
6
|
+
extends = "extends",
|
|
7
|
+
createdAt = "createdAt",
|
|
8
|
+
updatedAt = "updatedAt",
|
|
9
|
+
content = "content",
|
|
10
|
+
slug = "slug",
|
|
11
|
+
description = "description"
|
|
12
|
+
}
|
|
13
|
+
export declare enum CustomerCaseAssciations {
|
|
14
|
+
lang = "lang",
|
|
15
|
+
website = "website"
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare enum FAQFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
question = "question",
|
|
4
|
+
answer = "answer",
|
|
5
|
+
createdAt = "createdAt",
|
|
6
|
+
updatedAt = "updatedAt"
|
|
7
|
+
}
|
|
8
|
+
export declare enum FAQAssciations {
|
|
9
|
+
website = "website",
|
|
10
|
+
product = "product",
|
|
11
|
+
solution = "solution"
|
|
12
|
+
}
|
|
@@ -34,6 +34,10 @@ export declare enum LangAssciations {
|
|
|
34
34
|
webPartsOfProductAggregate = "webPartsOfProductAggregate",
|
|
35
35
|
webPartsOfPost = "webPartsOfPost",
|
|
36
36
|
webPartsOfPostAggregate = "webPartsOfPostAggregate",
|
|
37
|
+
webPartsOfSolution = "webPartsOfSolution",
|
|
38
|
+
webPartsOfSolutionAggregate = "webPartsOfSolutionAggregate",
|
|
39
|
+
webPartsOfCustomerCase = "webPartsOfCustomerCase",
|
|
40
|
+
webPartsOfCustomerCaseAggregate = "webPartsOfCustomerCaseAggregate",
|
|
37
41
|
webPartsOfPostCategory = "webPartsOfPostCategory",
|
|
38
42
|
webPartsOfPostCategoryAggregate = "webPartsOfPostCategoryAggregate",
|
|
39
43
|
webPartsOfTag = "webPartsOfTag",
|
|
@@ -46,14 +50,12 @@ export declare enum LangAssciations {
|
|
|
46
50
|
webPartsOfSpamFilterRuleAggregate = "webPartsOfSpamFilterRuleAggregate",
|
|
47
51
|
webPartsOfMedia = "webPartsOfMedia",
|
|
48
52
|
webPartsOfMediaAggregate = "webPartsOfMediaAggregate",
|
|
49
|
-
webPartsOfVideoFolder = "webPartsOfVideoFolder",
|
|
50
|
-
webPartsOfVideoFolderAggregate = "webPartsOfVideoFolderAggregate",
|
|
51
|
-
webPartsOfVideo = "webPartsOfVideo",
|
|
52
|
-
webPartsOfVideoAggregate = "webPartsOfVideoAggregate",
|
|
53
53
|
websites = "websites",
|
|
54
54
|
websitesAggregate = "websitesAggregate",
|
|
55
55
|
baseLangOf = "baseLangOf",
|
|
56
56
|
baseLangOfAggregate = "baseLangOfAggregate",
|
|
57
57
|
themes = "themes",
|
|
58
|
-
themesAggregate = "themesAggregate"
|
|
58
|
+
themesAggregate = "themesAggregate",
|
|
59
|
+
bulletins = "bulletins",
|
|
60
|
+
bulletinsAggregate = "bulletinsAggregate"
|
|
59
61
|
}
|
|
@@ -32,7 +32,5 @@ export declare enum MediaAssciations {
|
|
|
32
32
|
pageMeta = "pageMeta",
|
|
33
33
|
pageMetaAggregate = "pageMetaAggregate",
|
|
34
34
|
searchIndex = "searchIndex",
|
|
35
|
-
searchIndexAggregate = "searchIndexAggregate"
|
|
36
|
-
coverOfVideo = "coverOfVideo",
|
|
37
|
-
coverOfVideoAggregate = "coverOfVideoAggregate"
|
|
35
|
+
searchIndexAggregate = "searchIndexAggregate"
|
|
38
36
|
}
|
|
@@ -36,6 +36,11 @@ export declare enum ProductAssciations {
|
|
|
36
36
|
attachmentPivotsAggregate = "attachmentPivotsAggregate",
|
|
37
37
|
lang = "lang",
|
|
38
38
|
meta = "meta",
|
|
39
|
+
faqs = "faqs",
|
|
40
|
+
faqsAggregate = "faqsAggregate",
|
|
41
|
+
relatedPivots = "relatedPivots",
|
|
42
|
+
relatedPivotsAggregate = "relatedPivotsAggregate",
|
|
39
43
|
creator = "creator",
|
|
40
|
-
website = "website"
|
|
44
|
+
website = "website",
|
|
45
|
+
relatedByPovit = "relatedByPovit"
|
|
41
46
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare enum SolutionFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
publishedAt = "publishedAt",
|
|
4
|
+
status = "status",
|
|
5
|
+
title = "title",
|
|
6
|
+
extends = "extends",
|
|
7
|
+
createdAt = "createdAt",
|
|
8
|
+
updatedAt = "updatedAt",
|
|
9
|
+
content = "content",
|
|
10
|
+
slug = "slug",
|
|
11
|
+
description = "description"
|
|
12
|
+
}
|
|
13
|
+
export declare enum SolutionAssciations {
|
|
14
|
+
lang = "lang",
|
|
15
|
+
faqs = "faqs",
|
|
16
|
+
faqsAggregate = "faqsAggregate",
|
|
17
|
+
website = "website"
|
|
18
|
+
}
|
|
@@ -44,6 +44,10 @@ export declare enum WebsiteAssciations {
|
|
|
44
44
|
partsOfProductAggregate = "partsOfProductAggregate",
|
|
45
45
|
partsOfPost = "partsOfPost",
|
|
46
46
|
partsOfPostAggregate = "partsOfPostAggregate",
|
|
47
|
+
partsOfSolution = "partsOfSolution",
|
|
48
|
+
partsOfSolutionAggregate = "partsOfSolutionAggregate",
|
|
49
|
+
partsOfCustomerCase = "partsOfCustomerCase",
|
|
50
|
+
partsOfCustomerCaseAggregate = "partsOfCustomerCaseAggregate",
|
|
47
51
|
partsOfPostCategory = "partsOfPostCategory",
|
|
48
52
|
partsOfPostCategoryAggregate = "partsOfPostCategoryAggregate",
|
|
49
53
|
partsOfTag = "partsOfTag",
|
|
@@ -56,10 +60,6 @@ export declare enum WebsiteAssciations {
|
|
|
56
60
|
partsOfSpamFilterRuleAggregate = "partsOfSpamFilterRuleAggregate",
|
|
57
61
|
partsOfMedia = "partsOfMedia",
|
|
58
62
|
partsOfMediaAggregate = "partsOfMediaAggregate",
|
|
59
|
-
partsOfVideoFolder = "partsOfVideoFolder",
|
|
60
|
-
partsOfVideoFolderAggregate = "partsOfVideoFolderAggregate",
|
|
61
|
-
partsOfVideo = "partsOfVideo",
|
|
62
|
-
partsOfVideoAggregate = "partsOfVideoAggregate",
|
|
63
63
|
langs = "langs",
|
|
64
64
|
langsAggregate = "langsAggregate",
|
|
65
65
|
baseLang = "baseLang",
|
|
@@ -70,5 +70,9 @@ export declare enum WebsiteAssciations {
|
|
|
70
70
|
changelogs = "changelogs",
|
|
71
71
|
changelogsAggregate = "changelogsAggregate",
|
|
72
72
|
searchIndexes = "searchIndexes",
|
|
73
|
-
searchIndexesAggregate = "searchIndexesAggregate"
|
|
73
|
+
searchIndexesAggregate = "searchIndexesAggregate",
|
|
74
|
+
faqs = "faqs",
|
|
75
|
+
faqsAggregate = "faqsAggregate",
|
|
76
|
+
bulletins = "bulletins",
|
|
77
|
+
bulletinsAggregate = "bulletinsAggregate"
|
|
74
78
|
}
|
package/dist/fields/index.d.ts
CHANGED
|
@@ -33,7 +33,10 @@ export * from './TemplateCategoryFields';
|
|
|
33
33
|
export * from './StyleConfigFields';
|
|
34
34
|
export * from './ChangeLogFields';
|
|
35
35
|
export * from './SearchIndexFields';
|
|
36
|
-
export * from './VideoFolderFields';
|
|
37
|
-
export * from './VideoFields';
|
|
38
36
|
export * from './TaskFields';
|
|
39
37
|
export * from './NotificationFields';
|
|
38
|
+
export * from './CustomerCaseFields';
|
|
39
|
+
export * from './SolutionFields';
|
|
40
|
+
export * from './FAQFields';
|
|
41
|
+
export * from './BulletinFields';
|
|
42
|
+
export * from './ProductRelatedPivotFields';
|