@rxdrag/rxcms-models 0.2.1 → 0.2.3
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/CustomerQueryOptions.d.ts +1 -0
- package/dist/classes/EnquiryQueryOptions.d.ts +1 -0
- package/dist/classes/LangQueryOptions.d.ts +1 -0
- package/dist/classes/MediaFolderQueryOptions.d.ts +1 -0
- package/dist/classes/MediaQueryOptions.d.ts +4 -3
- package/dist/classes/PageQueryOptions.d.ts +1 -3
- package/dist/classes/PostCategoryQueryOptions.d.ts +1 -0
- package/dist/classes/PostQueryOptions.d.ts +1 -3
- package/dist/classes/ProductCategoryQueryOptions.d.ts +1 -0
- package/dist/classes/ProductQueryOptions.d.ts +5 -6
- package/dist/classes/TagQueryOptions.d.ts +1 -0
- package/dist/classes/TemplateCategoryQueryOptions.d.ts +1 -0
- package/dist/classes/TemplateQueryOptions.d.ts +1 -0
- package/dist/classes/ThemeQueryOptions.d.ts +1 -0
- package/dist/classes/WebsiteSettingsQueryOptions.d.ts +1 -0
- package/dist/classes/index.d.ts +0 -1
- package/dist/entries/index.d.ts +0 -1
- package/dist/fields/CustomerFields.d.ts +1 -0
- package/dist/fields/EnquiryFields.d.ts +1 -0
- package/dist/fields/LangFields.d.ts +1 -0
- package/dist/fields/MediaFolderFields.d.ts +1 -0
- package/dist/fields/PageFields.d.ts +1 -1
- package/dist/fields/PostCategoryFields.d.ts +1 -0
- package/dist/fields/PostFields.d.ts +1 -1
- package/dist/fields/ProductCategoryFields.d.ts +1 -0
- package/dist/fields/ProductFields.d.ts +1 -1
- package/dist/fields/TagFields.d.ts +1 -0
- package/dist/fields/TemplateCategoryFields.d.ts +1 -0
- package/dist/fields/TemplateFields.d.ts +1 -0
- package/dist/fields/ThemeFields.d.ts +1 -0
- package/dist/fields/WebsiteSettingsFields.d.ts +1 -0
- package/dist/fields/index.d.ts +0 -1
- package/dist/index.mjs +242 -307
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/AttachmentAddon.d.ts +3 -0
- package/dist/interfaces/AttachmentAddonOrderBy.d.ts +4 -0
- package/dist/interfaces/CustomerDistinctExp.d.ts +1 -0
- package/dist/interfaces/EnquiryDistinctExp.d.ts +1 -0
- package/dist/interfaces/LangDistinctExp.d.ts +1 -0
- package/dist/interfaces/Media.d.ts +2 -1
- package/dist/interfaces/MediaFolderDistinctExp.d.ts +1 -0
- package/dist/interfaces/MediaInput.d.ts +2 -1
- package/dist/interfaces/Page.d.ts +0 -2
- package/dist/interfaces/PageBoolExp.d.ts +0 -2
- package/dist/interfaces/PageDistinctExp.d.ts +1 -0
- package/dist/interfaces/PageInput.d.ts +0 -2
- package/dist/interfaces/Post.d.ts +0 -2
- package/dist/interfaces/PostBoolExp.d.ts +0 -2
- package/dist/interfaces/PostCategoryDistinctExp.d.ts +1 -0
- package/dist/interfaces/PostDistinctExp.d.ts +1 -0
- package/dist/interfaces/PostInput.d.ts +0 -2
- package/dist/interfaces/Product.d.ts +2 -3
- package/dist/interfaces/ProductBoolExp.d.ts +0 -2
- package/dist/interfaces/ProductCategoryDistinctExp.d.ts +1 -0
- package/dist/interfaces/ProductDistinctExp.d.ts +1 -0
- package/dist/interfaces/ProductInput.d.ts +2 -3
- package/dist/interfaces/PublishableDistinctExp.d.ts +1 -0
- package/dist/interfaces/TagDistinctExp.d.ts +1 -0
- package/dist/interfaces/TemplateCategoryDistinctExp.d.ts +1 -0
- package/dist/interfaces/TemplateDistinctExp.d.ts +1 -0
- package/dist/interfaces/ThemeDistinctExp.d.ts +1 -0
- package/dist/interfaces/WebsiteContentDistinctExp.d.ts +1 -0
- package/dist/interfaces/WebsitePart.d.ts +1 -0
- package/dist/interfaces/WebsitePartBoolExp.d.ts +1 -0
- package/dist/interfaces/WebsitePartDistinctExp.d.ts +1 -0
- package/dist/interfaces/WebsitePartOrderBy.d.ts +1 -0
- package/dist/interfaces/WebsiteSettingsDistinctExp.d.ts +1 -0
- package/dist/interfaces/index.d.ts +1 -5
- package/package.json +1 -1
- package/dist/classes/SlugQueryOptions.d.ts +0 -30
- package/dist/entries/slugEntry.d.ts +0 -2
- package/dist/fields/SlugFields.d.ts +0 -22
- package/dist/interfaces/Slug.d.ts +0 -13
- package/dist/interfaces/SlugBoolExp.d.ts +0 -16
- package/dist/interfaces/SlugDistinctExp.d.ts +0 -19
- package/dist/interfaces/SlugInput.d.ts +0 -15
- package/dist/interfaces/SlugOrderBy.d.ts +0 -6
|
@@ -4,6 +4,7 @@ import { MediaFolder } from './MediaFolder';
|
|
|
4
4
|
import { User } from './User';
|
|
5
5
|
import { Product } from './Product';
|
|
6
6
|
import { MediaAddon } from './MediaAddon';
|
|
7
|
+
import { AttachmentAddon } from './AttachmentAddon';
|
|
7
8
|
import { Aggregate } from './Aggregate';
|
|
8
9
|
import { CustomizeMedia } from './CustomizeMedia';
|
|
9
10
|
export declare const MediaEntityName = "Media";
|
|
@@ -22,7 +23,7 @@ export interface Media extends CustomizeMedia {
|
|
|
22
23
|
folder?: MediaFolder;
|
|
23
24
|
avatarOfUser?: User;
|
|
24
25
|
usedByProducts?: (Product & MediaAddon)[];
|
|
25
|
-
attachmentOf?: Product[];
|
|
26
|
+
attachmentOf?: (Product & AttachmentAddon)[];
|
|
26
27
|
usedByProductsAggregate?: Aggregate;
|
|
27
28
|
attachmentOfAggregate?: Aggregate;
|
|
28
29
|
}
|
|
@@ -5,6 +5,7 @@ import { MediaFolderInput } from './MediaFolderInput';
|
|
|
5
5
|
import { UserInput } from './UserInput';
|
|
6
6
|
import { ProductInput } from './ProductInput';
|
|
7
7
|
import { MediaAddon } from './MediaAddon';
|
|
8
|
+
import { AttachmentAddon } from './AttachmentAddon';
|
|
8
9
|
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
9
10
|
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
10
11
|
import { CustomizeMedia } from './CustomizeMedia';
|
|
@@ -22,7 +23,7 @@ export interface MediaInput extends CustomizeMedia {
|
|
|
22
23
|
folder?: SetHasOne<MediaFolderInput>;
|
|
23
24
|
avatarOfUser?: SetHasOne<UserInput>;
|
|
24
25
|
usedByProducts?: SetHasMany<ProductInput & MediaAddon>;
|
|
25
|
-
attachmentOf?: SetHasMany<ProductInput>;
|
|
26
|
+
attachmentOf?: SetHasMany<ProductInput & AttachmentAddon>;
|
|
26
27
|
}
|
|
27
28
|
export declare const mediaToInputCascade: (entity: Media) => MediaInput;
|
|
28
29
|
export declare const mediaToInput: (entity: Media) => MediaInput;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Slug } from './Slug';
|
|
2
1
|
import { Media } from './Media';
|
|
3
2
|
import { WebsiteContent } from './WebsiteContent';
|
|
4
3
|
export declare const PageEntityName = "Page";
|
|
@@ -12,6 +11,5 @@ export interface Page extends WebsiteContent {
|
|
|
12
11
|
*/
|
|
13
12
|
remark?: string;
|
|
14
13
|
langAbbr?: string;
|
|
15
|
-
slug?: Slug;
|
|
16
14
|
ogImage?: Media;
|
|
17
15
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { WebsiteContentBoolExp } from './WebsiteContentBoolExp';
|
|
2
2
|
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
3
|
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
-
import { SlugBoolExp } from './SlugBoolExp';
|
|
5
4
|
import { MediaBoolExp } from './MediaBoolExp';
|
|
6
5
|
export interface PageBoolExp extends WebsiteContentBoolExp {
|
|
7
6
|
_and?: PageBoolExp[];
|
|
@@ -12,6 +11,5 @@ export interface PageBoolExp extends WebsiteContentBoolExp {
|
|
|
12
11
|
content?: unknown;
|
|
13
12
|
remark?: StringComparisonExp;
|
|
14
13
|
langAbbr?: StringComparisonExp;
|
|
15
|
-
slug?: SlugBoolExp;
|
|
16
14
|
ogImage?: MediaBoolExp;
|
|
17
15
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Page } from './Page';
|
|
2
|
-
import { SlugInput } from './SlugInput';
|
|
3
2
|
import { MediaInput } from './MediaInput';
|
|
4
3
|
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
5
4
|
import { WebsiteContent } from './WebsiteContent';
|
|
@@ -12,7 +11,6 @@ export interface PageInput extends WebsiteContent {
|
|
|
12
11
|
*/
|
|
13
12
|
remark?: string;
|
|
14
13
|
langAbbr?: string;
|
|
15
|
-
slug?: SetHasOne<SlugInput>;
|
|
16
14
|
ogImage?: SetHasOne<MediaInput>;
|
|
17
15
|
}
|
|
18
16
|
export declare const pageToInputCascade: (entity: Page) => PageInput;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Slug } from './Slug';
|
|
2
1
|
import { Tag } from './Tag';
|
|
3
2
|
import { User } from './User';
|
|
4
3
|
import { Media } from './Media';
|
|
@@ -20,7 +19,6 @@ export interface Post extends Publishable {
|
|
|
20
19
|
pinToTop?: boolean;
|
|
21
20
|
authorEmail?: string;
|
|
22
21
|
summary?: string;
|
|
23
|
-
slug?: Slug;
|
|
24
22
|
tags?: Tag[];
|
|
25
23
|
author?: User;
|
|
26
24
|
cover?: Media;
|
|
@@ -3,7 +3,6 @@ import { IdComparisonExp } from './IdComparisonExp';
|
|
|
3
3
|
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
4
4
|
import { BooleanComparisonExp } from './BooleanComparisonExp';
|
|
5
5
|
import { StringComparisonExp } from './StringComparisonExp';
|
|
6
|
-
import { SlugBoolExp } from './SlugBoolExp';
|
|
7
6
|
import { TagBoolExp } from './TagBoolExp';
|
|
8
7
|
import { UserBoolExp } from './UserBoolExp';
|
|
9
8
|
import { MediaBoolExp } from './MediaBoolExp';
|
|
@@ -21,7 +20,6 @@ export interface PostBoolExp extends PublishableBoolExp {
|
|
|
21
20
|
pinToTop?: BooleanComparisonExp;
|
|
22
21
|
authorEmail?: StringComparisonExp;
|
|
23
22
|
summary?: StringComparisonExp;
|
|
24
|
-
slug?: SlugBoolExp;
|
|
25
23
|
tags?: TagBoolExp;
|
|
26
24
|
author?: UserBoolExp;
|
|
27
25
|
cover?: MediaBoolExp;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Post } from './Post';
|
|
2
|
-
import { SlugInput } from './SlugInput';
|
|
3
2
|
import { TagInput } from './TagInput';
|
|
4
3
|
import { UserInput } from './UserInput';
|
|
5
4
|
import { MediaInput } from './MediaInput';
|
|
@@ -20,7 +19,6 @@ export interface PostInput extends Publishable {
|
|
|
20
19
|
pinToTop?: boolean;
|
|
21
20
|
authorEmail?: string;
|
|
22
21
|
summary?: string;
|
|
23
|
-
slug?: SetHasOne<SlugInput>;
|
|
24
22
|
tags?: SetHasMany<TagInput>;
|
|
25
23
|
author?: SetHasOne<UserInput>;
|
|
26
24
|
cover?: SetHasOne<MediaInput>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { ProductCategory } from './ProductCategory';
|
|
2
2
|
import { Media } from './Media';
|
|
3
|
-
import { Slug } from './Slug';
|
|
4
3
|
import { Tag } from './Tag';
|
|
5
4
|
import { User } from './User';
|
|
6
5
|
import { MediaAddon } from './MediaAddon';
|
|
6
|
+
import { AttachmentAddon } from './AttachmentAddon';
|
|
7
7
|
import { Aggregate } from './Aggregate';
|
|
8
8
|
import { Publishable } from './Publishable';
|
|
9
9
|
export declare const ProductEntityName = "Product";
|
|
@@ -23,10 +23,9 @@ export interface Product extends Publishable {
|
|
|
23
23
|
content3?: any;
|
|
24
24
|
category?: ProductCategory;
|
|
25
25
|
medias?: (Media & MediaAddon)[];
|
|
26
|
-
slug?: Slug;
|
|
27
26
|
tags?: Tag[];
|
|
28
27
|
ogImage?: Media;
|
|
29
|
-
attachments?: Media[];
|
|
28
|
+
attachments?: (Media & AttachmentAddon)[];
|
|
30
29
|
creator?: User;
|
|
31
30
|
mediasAggregate?: Aggregate;
|
|
32
31
|
tagsAggregate?: Aggregate;
|
|
@@ -5,7 +5,6 @@ import { StringComparisonExp } from './StringComparisonExp';
|
|
|
5
5
|
import { NumberComparisonExp } from './NumberComparisonExp';
|
|
6
6
|
import { ProductCategoryBoolExp } from './ProductCategoryBoolExp';
|
|
7
7
|
import { MediaBoolExp } from './MediaBoolExp';
|
|
8
|
-
import { SlugBoolExp } from './SlugBoolExp';
|
|
9
8
|
import { TagBoolExp } from './TagBoolExp';
|
|
10
9
|
import { UserBoolExp } from './UserBoolExp';
|
|
11
10
|
export interface ProductBoolExp extends PublishableBoolExp {
|
|
@@ -23,7 +22,6 @@ export interface ProductBoolExp extends PublishableBoolExp {
|
|
|
23
22
|
content3?: unknown;
|
|
24
23
|
category?: ProductCategoryBoolExp;
|
|
25
24
|
medias?: MediaBoolExp;
|
|
26
|
-
slug?: SlugBoolExp;
|
|
27
25
|
tags?: TagBoolExp;
|
|
28
26
|
ogImage?: MediaBoolExp;
|
|
29
27
|
attachments?: MediaBoolExp;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Product } from './Product';
|
|
2
2
|
import { ProductCategoryInput } from './ProductCategoryInput';
|
|
3
3
|
import { MediaInput } from './MediaInput';
|
|
4
|
-
import { SlugInput } from './SlugInput';
|
|
5
4
|
import { TagInput } from './TagInput';
|
|
6
5
|
import { UserInput } from './UserInput';
|
|
7
6
|
import { MediaAddon } from './MediaAddon';
|
|
7
|
+
import { AttachmentAddon } from './AttachmentAddon';
|
|
8
8
|
import { SetHasMany } from '@rxdrag/entify-hooks';
|
|
9
9
|
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
10
10
|
import { Publishable } from './Publishable';
|
|
@@ -23,10 +23,9 @@ export interface ProductInput extends Publishable {
|
|
|
23
23
|
content3?: any;
|
|
24
24
|
category?: SetHasOne<ProductCategoryInput>;
|
|
25
25
|
medias?: SetHasMany<MediaInput & MediaAddon>;
|
|
26
|
-
slug?: SetHasOne<SlugInput>;
|
|
27
26
|
tags?: SetHasMany<TagInput>;
|
|
28
27
|
ogImage?: SetHasOne<MediaInput>;
|
|
29
|
-
attachments?: SetHasMany<MediaInput>;
|
|
28
|
+
attachments?: SetHasMany<MediaInput & AttachmentAddon>;
|
|
30
29
|
creator?: SetHasOne<UserInput>;
|
|
31
30
|
}
|
|
32
31
|
export declare const productToInputCascade: (entity: Product) => ProductInput;
|
|
@@ -50,11 +50,6 @@ export * from './ProductInput';
|
|
|
50
50
|
export * from './ProductBoolExp';
|
|
51
51
|
export * from './ProductOrderBy';
|
|
52
52
|
export * from './ProductDistinctExp';
|
|
53
|
-
export * from './Slug';
|
|
54
|
-
export * from './SlugInput';
|
|
55
|
-
export * from './SlugBoolExp';
|
|
56
|
-
export * from './SlugOrderBy';
|
|
57
|
-
export * from './SlugDistinctExp';
|
|
58
53
|
export * from './Enquiry';
|
|
59
54
|
export * from './EnquiryInput';
|
|
60
55
|
export * from './EnquiryBoolExp';
|
|
@@ -132,3 +127,4 @@ export * from './FormSettings';
|
|
|
132
127
|
export * from './ExtendFieldType';
|
|
133
128
|
export * from './ComponentType';
|
|
134
129
|
export * from './ExtendField';
|
|
130
|
+
export * from './AttachmentAddon';
|
package/package.json
CHANGED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { IQueryArgs } from "@rxdrag/entify-hooks";
|
|
2
|
-
import { QueryOptions } from "./QueryOptions";
|
|
3
|
-
import { Slug, SlugBoolExp, SlugDistinctExp, SlugOrderBy } from "../interfaces";
|
|
4
|
-
import { PostQueryOptions } from './PostQueryOptions';
|
|
5
|
-
import { Post } from '../interfaces';
|
|
6
|
-
import { ProductQueryOptions } from './ProductQueryOptions';
|
|
7
|
-
import { Product } from '../interfaces';
|
|
8
|
-
import { PageQueryOptions } from './PageQueryOptions';
|
|
9
|
-
import { Page } from '../interfaces';
|
|
10
|
-
export declare class SlugQueryOptions extends QueryOptions<Slug, SlugBoolExp, SlugOrderBy, SlugDistinctExp> {
|
|
11
|
-
constructor(fields?: (keyof Slug)[], queryArgs?: IQueryArgs<SlugBoolExp, SlugOrderBy, SlugDistinctExp>);
|
|
12
|
-
id(): this;
|
|
13
|
-
uniqueName(): this;
|
|
14
|
-
websiteId(): this;
|
|
15
|
-
/**
|
|
16
|
-
* 创建时间
|
|
17
|
-
*/
|
|
18
|
-
createdAt(): this;
|
|
19
|
-
/**
|
|
20
|
-
* 更新时间
|
|
21
|
-
*/
|
|
22
|
-
updatedAt(): this;
|
|
23
|
-
/**
|
|
24
|
-
* 备注
|
|
25
|
-
*/
|
|
26
|
-
remark(): this;
|
|
27
|
-
post(options?: PostQueryOptions | (keyof Post)[]): this;
|
|
28
|
-
product(options?: ProductQueryOptions | (keyof Product)[]): this;
|
|
29
|
-
page(options?: PageQueryOptions | (keyof Page)[]): this;
|
|
30
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
export declare enum SlugFields {
|
|
2
|
-
id = "id",
|
|
3
|
-
uniqueName = "uniqueName",
|
|
4
|
-
websiteId = "websiteId",
|
|
5
|
-
/**
|
|
6
|
-
* 创建时间
|
|
7
|
-
*/
|
|
8
|
-
createdAt = "createdAt",
|
|
9
|
-
/**
|
|
10
|
-
* 更新时间
|
|
11
|
-
*/
|
|
12
|
-
updatedAt = "updatedAt",
|
|
13
|
-
/**
|
|
14
|
-
* 备注
|
|
15
|
-
*/
|
|
16
|
-
remark = "remark"
|
|
17
|
-
}
|
|
18
|
-
export declare enum SlugAssciations {
|
|
19
|
-
post = "post",
|
|
20
|
-
product = "product",
|
|
21
|
-
page = "page"
|
|
22
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { Post } from './Post';
|
|
2
|
-
import { Product } from './Product';
|
|
3
|
-
import { Page } from './Page';
|
|
4
|
-
import { WebsitePart } from './WebsitePart';
|
|
5
|
-
export declare const SlugEntityName = "Slug";
|
|
6
|
-
export declare const SlugEntityLabel = "";
|
|
7
|
-
export interface Slug extends WebsitePart {
|
|
8
|
-
id?: string;
|
|
9
|
-
uniqueName?: string;
|
|
10
|
-
post?: Post;
|
|
11
|
-
product?: Product;
|
|
12
|
-
page?: Page;
|
|
13
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { WebsitePartBoolExp } from './WebsitePartBoolExp';
|
|
2
|
-
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
|
-
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
|
-
import { PostBoolExp } from './PostBoolExp';
|
|
5
|
-
import { ProductBoolExp } from './ProductBoolExp';
|
|
6
|
-
import { PageBoolExp } from './PageBoolExp';
|
|
7
|
-
export interface SlugBoolExp extends WebsitePartBoolExp {
|
|
8
|
-
_and?: SlugBoolExp[];
|
|
9
|
-
_or?: SlugBoolExp[];
|
|
10
|
-
_not?: SlugBoolExp;
|
|
11
|
-
id?: IdComparisonExp;
|
|
12
|
-
uniqueName?: StringComparisonExp;
|
|
13
|
-
post?: PostBoolExp;
|
|
14
|
-
product?: ProductBoolExp;
|
|
15
|
-
page?: PageBoolExp;
|
|
16
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { WebsitePartDistinctExp } from './WebsitePartDistinctExp';
|
|
2
|
-
export declare enum SlugDistinctEnum {
|
|
3
|
-
id = "id",
|
|
4
|
-
uniqueName = "uniqueName",
|
|
5
|
-
websiteId = "websiteId",
|
|
6
|
-
/**
|
|
7
|
-
* 创建时间
|
|
8
|
-
*/
|
|
9
|
-
createdAt = "createdAt",
|
|
10
|
-
/**
|
|
11
|
-
* 更新时间
|
|
12
|
-
*/
|
|
13
|
-
updatedAt = "updatedAt",
|
|
14
|
-
/**
|
|
15
|
-
* 备注
|
|
16
|
-
*/
|
|
17
|
-
remark = "remark"
|
|
18
|
-
}
|
|
19
|
-
export type SlugDistinctExp = SlugDistinctEnum | WebsitePartDistinctExp;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Slug } from './Slug';
|
|
2
|
-
import { PostInput } from './PostInput';
|
|
3
|
-
import { ProductInput } from './ProductInput';
|
|
4
|
-
import { PageInput } from './PageInput';
|
|
5
|
-
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
6
|
-
import { WebsitePart } from './WebsitePart';
|
|
7
|
-
export interface SlugInput extends WebsitePart {
|
|
8
|
-
id?: string;
|
|
9
|
-
uniqueName?: string;
|
|
10
|
-
post?: SetHasOne<PostInput>;
|
|
11
|
-
product?: SetHasOne<ProductInput>;
|
|
12
|
-
page?: SetHasOne<PageInput>;
|
|
13
|
-
}
|
|
14
|
-
export declare const slugToInputCascade: (entity: Slug) => SlugInput;
|
|
15
|
-
export declare const slugToInput: (entity: Slug) => SlugInput;
|