@rxdrag/rxcms-models 0.3.104 → 0.3.106
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/AgentAttachmentQueryOptions.d.ts +6 -6
- package/dist/classes/AgentTimelineItemQueryOptions.d.ts +0 -3
- package/dist/classes/TempFileQueryOptions.d.ts +3 -1
- package/dist/classes/ThemeQueryOptions.d.ts +1 -0
- package/dist/classes/WebsiteProfileQueryOptions.d.ts +25 -0
- package/dist/classes/WebsiteQueryOptions.d.ts +3 -1
- package/dist/classes/index.d.ts +1 -1
- package/dist/entries/index.d.ts +1 -1
- package/dist/entries/websiteProfileEntry.d.ts +2 -0
- package/dist/fields/AgentAttachmentFields.d.ts +5 -7
- package/dist/fields/AgentTimelineItemFields.d.ts +0 -1
- package/dist/fields/TempFileFields.d.ts +2 -2
- package/dist/fields/ThemeFields.d.ts +2 -1
- package/dist/fields/WebsiteFields.d.ts +2 -2
- package/dist/fields/WebsiteProfileFields.d.ts +21 -0
- package/dist/fields/index.d.ts +1 -1
- package/dist/index.mjs +236 -186
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/AgentAttachment.d.ts +5 -7
- package/dist/interfaces/AgentAttachmentBoolExp.d.ts +6 -6
- package/dist/interfaces/AgentAttachmentDistinctExp.d.ts +4 -7
- package/dist/interfaces/AgentAttachmentInput.d.ts +5 -7
- package/dist/interfaces/AgentAttachmentOrderBy.d.ts +3 -6
- package/dist/interfaces/AgentTimelineItem.d.ts +0 -2
- package/dist/interfaces/AgentTimelineItemBoolExp.d.ts +0 -2
- package/dist/interfaces/AgentTimelineItemInput.d.ts +0 -2
- package/dist/interfaces/TempFile.d.ts +2 -1
- package/dist/interfaces/TempFileBoolExp.d.ts +2 -1
- package/dist/interfaces/TempFileDistinctExp.d.ts +0 -1
- package/dist/interfaces/TempFileInput.d.ts +2 -1
- package/dist/interfaces/TempFileOrderBy.d.ts +0 -1
- package/dist/interfaces/Theme.d.ts +1 -0
- package/dist/interfaces/ThemeBoolExp.d.ts +1 -0
- package/dist/interfaces/ThemeDistinctExp.d.ts +2 -1
- package/dist/interfaces/ThemeInput.d.ts +1 -0
- package/dist/interfaces/ThemeOrderBy.d.ts +1 -0
- package/dist/interfaces/Website.d.ts +2 -1
- package/dist/interfaces/WebsiteBoolExp.d.ts +2 -1
- package/dist/interfaces/WebsiteDistinctExp.d.ts +1 -2
- package/dist/interfaces/WebsiteInput.d.ts +2 -1
- package/dist/interfaces/WebsiteOrderBy.d.ts +0 -1
- package/dist/interfaces/WebsiteProfile.d.ts +22 -0
- package/dist/interfaces/WebsiteProfileBoolExp.d.ts +26 -0
- package/dist/interfaces/WebsiteProfileDistinctExp.d.ts +19 -0
- package/dist/interfaces/WebsiteProfileInput.d.ts +24 -0
- package/dist/interfaces/WebsiteProfileOrderBy.d.ts +19 -0
- package/dist/interfaces/index.d.ts +5 -5
- package/package.json +3 -3
- package/dist/classes/CodeRevisionQueryOptions.d.ts +0 -16
- package/dist/entries/codeRevisionEntry.d.ts +0 -2
- package/dist/fields/CodeRevisionFields.d.ts +0 -12
- package/dist/interfaces/CodeRevision.d.ts +0 -13
- package/dist/interfaces/CodeRevisionBoolExp.d.ts +0 -17
- package/dist/interfaces/CodeRevisionDistinctExp.d.ts +0 -10
- package/dist/interfaces/CodeRevisionInput.d.ts +0 -15
- package/dist/interfaces/CodeRevisionOrderBy.d.ts +0 -10
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
2
|
import { QueryOptions } from "./QueryOptions";
|
|
3
3
|
import { AgentAttachment, AgentAttachmentBoolExp, AgentAttachmentDistinctExp, AgentAttachmentOrderBy } from "../interfaces";
|
|
4
|
+
import { TempFileQueryOptions } from './TempFileQueryOptions';
|
|
5
|
+
import { TempFile } from '../interfaces';
|
|
4
6
|
import { AgentTimelineItemQueryOptions } from './AgentTimelineItemQueryOptions';
|
|
5
7
|
import { AgentTimelineItem } from '../interfaces';
|
|
6
8
|
export declare class AgentAttachmentQueryOptions extends QueryOptions<AgentAttachment, AgentAttachmentBoolExp, AgentAttachmentOrderBy, AgentAttachmentDistinctExp> {
|
|
7
9
|
constructor(fields?: (keyof AgentAttachment)[], queryArgs?: IQueryArgs<AgentAttachmentBoolExp, AgentAttachmentOrderBy, AgentAttachmentDistinctExp>);
|
|
8
10
|
id(): this;
|
|
9
11
|
name(): this;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
extName(): this;
|
|
13
|
-
mediaType(): this;
|
|
14
|
-
storageMeta(fields: string[]): this;
|
|
15
|
-
seqValue(): this;
|
|
12
|
+
type(): this;
|
|
13
|
+
playload(): this;
|
|
16
14
|
createdAt(): this;
|
|
17
15
|
updatedAt(): this;
|
|
16
|
+
seqValue(): this;
|
|
17
|
+
file(options?: TempFileQueryOptions | (keyof TempFile)[]): this;
|
|
18
18
|
timelineItme(options?: AgentTimelineItemQueryOptions | (keyof AgentTimelineItem)[]): this;
|
|
19
19
|
}
|
|
@@ -4,8 +4,6 @@ import { AgentTimelineItem, AgentTimelineItemBoolExp, AgentTimelineItemDistinctE
|
|
|
4
4
|
import { AgentAttachmentQueryOptions } from './AgentAttachmentQueryOptions';
|
|
5
5
|
import { AgentAttachment } from '../interfaces';
|
|
6
6
|
import { AgentAttachmentBoolExp } from '../interfaces';
|
|
7
|
-
import { CodeRevisionQueryOptions } from './CodeRevisionQueryOptions';
|
|
8
|
-
import { CodeRevision } from '../interfaces';
|
|
9
7
|
import { AgentRunQueryOptions } from './AgentRunQueryOptions';
|
|
10
8
|
import { AgentRun } from '../interfaces';
|
|
11
9
|
export declare class AgentTimelineItemQueryOptions extends QueryOptions<AgentTimelineItem, AgentTimelineItemBoolExp, AgentTimelineItemOrderBy, AgentTimelineItemDistinctExp> {
|
|
@@ -18,6 +16,5 @@ export declare class AgentTimelineItemQueryOptions extends QueryOptions<AgentTim
|
|
|
18
16
|
seqValue(): this;
|
|
19
17
|
attachments(options?: AgentAttachmentQueryOptions | (keyof AgentAttachment)[]): this;
|
|
20
18
|
attachmentsAggregate(aggregate: IAggregate<AgentAttachmentBoolExp>): this;
|
|
21
|
-
codeRevision(options?: CodeRevisionQueryOptions | (keyof CodeRevision)[]): this;
|
|
22
19
|
run(options?: AgentRunQueryOptions | (keyof AgentRun)[]): this;
|
|
23
20
|
}
|
|
@@ -5,6 +5,8 @@ import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
|
5
5
|
import { Website } from '../interfaces';
|
|
6
6
|
import { ThemeBranchQueryOptions } from './ThemeBranchQueryOptions';
|
|
7
7
|
import { ThemeBranch } from '../interfaces';
|
|
8
|
+
import { AgentAttachmentQueryOptions } from './AgentAttachmentQueryOptions';
|
|
9
|
+
import { AgentAttachment } from '../interfaces';
|
|
8
10
|
export declare class TempFileQueryOptions extends QueryOptions<TempFile, TempFileBoolExp, TempFileOrderBy, TempFileDistinctExp> {
|
|
9
11
|
constructor(fields?: (keyof TempFile)[], queryArgs?: IQueryArgs<TempFileBoolExp, TempFileOrderBy, TempFileDistinctExp>);
|
|
10
12
|
id(): this;
|
|
@@ -13,10 +15,10 @@ export declare class TempFileQueryOptions extends QueryOptions<TempFile, TempFil
|
|
|
13
15
|
extName(): this;
|
|
14
16
|
mediaType(): this;
|
|
15
17
|
storageMeta(fields: string[]): this;
|
|
16
|
-
seqValue(): this;
|
|
17
18
|
createdAt(): this;
|
|
18
19
|
updateAt(): this;
|
|
19
20
|
mimeType(): this;
|
|
20
21
|
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
21
22
|
themeBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
23
|
+
agentAttachment(options?: AgentAttachmentQueryOptions | (keyof AgentAttachment)[]): this;
|
|
22
24
|
}
|
|
@@ -16,6 +16,7 @@ export declare class ThemeQueryOptions extends QueryOptions<Theme, ThemeBoolExp,
|
|
|
16
16
|
createdAt(): this;
|
|
17
17
|
updatedAt(): this;
|
|
18
18
|
seqValue(): this;
|
|
19
|
+
slug(): this;
|
|
19
20
|
branches(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
20
21
|
branchesAggregate(aggregate: IAggregate<ThemeBranchBoolExp>): this;
|
|
21
22
|
cover(options?: MediaQueryOptions | (keyof Media)[]): this;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
+
import { QueryOptions } from "./QueryOptions";
|
|
3
|
+
import { WebsiteProfile, WebsiteProfileBoolExp, WebsiteProfileDistinctExp, WebsiteProfileOrderBy } from "../interfaces";
|
|
4
|
+
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
5
|
+
import { Website } from '../interfaces';
|
|
6
|
+
export declare class WebsiteProfileQueryOptions extends QueryOptions<WebsiteProfile, WebsiteProfileBoolExp, WebsiteProfileOrderBy, WebsiteProfileDistinctExp> {
|
|
7
|
+
constructor(fields?: (keyof WebsiteProfile)[], queryArgs?: IQueryArgs<WebsiteProfileBoolExp, WebsiteProfileOrderBy, WebsiteProfileDistinctExp>);
|
|
8
|
+
id(): this;
|
|
9
|
+
name(): this;
|
|
10
|
+
industry(): this;
|
|
11
|
+
targetMarket(): this;
|
|
12
|
+
references(): this;
|
|
13
|
+
layoutPreference(): this;
|
|
14
|
+
styleGuide(): this;
|
|
15
|
+
contentStrategy(): this;
|
|
16
|
+
themeBranchId(): this;
|
|
17
|
+
createdAt(): this;
|
|
18
|
+
updatedAt(): this;
|
|
19
|
+
products(): this;
|
|
20
|
+
companyInfo(): this;
|
|
21
|
+
slug(): this;
|
|
22
|
+
langAbbr(): this;
|
|
23
|
+
pages(): this;
|
|
24
|
+
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
25
|
+
}
|
|
@@ -73,6 +73,8 @@ import { TempFileBoolExp } from '../interfaces';
|
|
|
73
73
|
import { AgentContextQueryOptions } from './AgentContextQueryOptions';
|
|
74
74
|
import { AgentContext } from '../interfaces';
|
|
75
75
|
import { AgentContextBoolExp } from '../interfaces';
|
|
76
|
+
import { WebsiteProfileQueryOptions } from './WebsiteProfileQueryOptions';
|
|
77
|
+
import { WebsiteProfile } from '../interfaces';
|
|
76
78
|
export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
|
|
77
79
|
constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
|
|
78
80
|
id(): this;
|
|
@@ -106,7 +108,6 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
|
|
|
106
108
|
updatedBy(): this;
|
|
107
109
|
description(): this;
|
|
108
110
|
title(): this;
|
|
109
|
-
industryContext(): this;
|
|
110
111
|
websiteType(options?: WebsiteTypeQueryOptions | (keyof WebsiteType)[]): this;
|
|
111
112
|
owner(options?: UserQueryOptions | (keyof User)[]): this;
|
|
112
113
|
users(options?: UserQueryOptions | (keyof User)[]): this;
|
|
@@ -156,5 +157,6 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
|
|
|
156
157
|
tempFilesAggregate(aggregate: IAggregate<TempFileBoolExp>): this;
|
|
157
158
|
agentContexts(options?: AgentContextQueryOptions | (keyof AgentContext)[]): this;
|
|
158
159
|
agentContextsAggregate(aggregate: IAggregate<AgentContextBoolExp>): this;
|
|
160
|
+
profile(options?: WebsiteProfileQueryOptions | (keyof WebsiteProfile)[]): this;
|
|
159
161
|
mockBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
160
162
|
}
|
package/dist/classes/index.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export * from './AgentRunQueryOptions';
|
|
|
51
51
|
export * from './AgentTimelineItemQueryOptions';
|
|
52
52
|
export * from './AgentAttachmentQueryOptions';
|
|
53
53
|
export * from './TempFileQueryOptions';
|
|
54
|
-
export * from './CodeRevisionQueryOptions';
|
|
55
54
|
export * from './AgentContextQueryOptions';
|
|
55
|
+
export * from './WebsiteProfileQueryOptions';
|
|
56
56
|
export * from './QueryOptions';
|
|
57
57
|
export * from './metainfo';
|
package/dist/entries/index.d.ts
CHANGED
|
@@ -51,5 +51,5 @@ export * from './agentRunEntry';
|
|
|
51
51
|
export * from './agentTimelineItemEntry';
|
|
52
52
|
export * from './agentAttachmentEntry';
|
|
53
53
|
export * from './tempFileEntry';
|
|
54
|
-
export * from './codeRevisionEntry';
|
|
55
54
|
export * from './agentContextEntry';
|
|
55
|
+
export * from './websiteProfileEntry';
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
export declare enum AgentAttachmentFields {
|
|
2
2
|
id = "id",
|
|
3
3
|
name = "name",
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
extName = "extName",
|
|
7
|
-
mediaType = "mediaType",
|
|
8
|
-
storageMeta = "storageMeta",
|
|
9
|
-
seqValue = "seqValue",
|
|
4
|
+
type = "type",
|
|
5
|
+
playload = "playload",
|
|
10
6
|
createdAt = "createdAt",
|
|
11
|
-
updatedAt = "updatedAt"
|
|
7
|
+
updatedAt = "updatedAt",
|
|
8
|
+
seqValue = "seqValue"
|
|
12
9
|
}
|
|
13
10
|
export declare enum AgentAttachmentAssciations {
|
|
11
|
+
file = "file",
|
|
14
12
|
timelineItme = "timelineItme"
|
|
15
13
|
}
|
|
@@ -5,12 +5,12 @@ export declare enum TempFileFields {
|
|
|
5
5
|
extName = "extName",
|
|
6
6
|
mediaType = "mediaType",
|
|
7
7
|
storageMeta = "storageMeta",
|
|
8
|
-
seqValue = "seqValue",
|
|
9
8
|
createdAt = "createdAt",
|
|
10
9
|
updateAt = "updateAt",
|
|
11
10
|
mimeType = "mimeType"
|
|
12
11
|
}
|
|
13
12
|
export declare enum TempFileAssciations {
|
|
14
13
|
website = "website",
|
|
15
|
-
themeBranch = "themeBranch"
|
|
14
|
+
themeBranch = "themeBranch",
|
|
15
|
+
agentAttachment = "agentAttachment"
|
|
16
16
|
}
|
|
@@ -29,8 +29,7 @@ export declare enum WebsiteFields {
|
|
|
29
29
|
*/
|
|
30
30
|
updatedBy = "updatedBy",
|
|
31
31
|
description = "description",
|
|
32
|
-
title = "title"
|
|
33
|
-
industryContext = "industryContext"
|
|
32
|
+
title = "title"
|
|
34
33
|
}
|
|
35
34
|
export declare enum WebsiteAssciations {
|
|
36
35
|
websiteType = "websiteType",
|
|
@@ -82,5 +81,6 @@ export declare enum WebsiteAssciations {
|
|
|
82
81
|
tempFilesAggregate = "tempFilesAggregate",
|
|
83
82
|
agentContexts = "agentContexts",
|
|
84
83
|
agentContextsAggregate = "agentContextsAggregate",
|
|
84
|
+
profile = "profile",
|
|
85
85
|
mockBranch = "mockBranch"
|
|
86
86
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare enum WebsiteProfileFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
name = "name",
|
|
4
|
+
industry = "industry",
|
|
5
|
+
targetMarket = "targetMarket",
|
|
6
|
+
references = "references",
|
|
7
|
+
layoutPreference = "layoutPreference",
|
|
8
|
+
styleGuide = "styleGuide",
|
|
9
|
+
contentStrategy = "contentStrategy",
|
|
10
|
+
themeBranchId = "themeBranchId",
|
|
11
|
+
createdAt = "createdAt",
|
|
12
|
+
updatedAt = "updatedAt",
|
|
13
|
+
products = "products",
|
|
14
|
+
companyInfo = "companyInfo",
|
|
15
|
+
slug = "slug",
|
|
16
|
+
langAbbr = "langAbbr",
|
|
17
|
+
pages = "pages"
|
|
18
|
+
}
|
|
19
|
+
export declare enum WebsiteProfileAssciations {
|
|
20
|
+
website = "website"
|
|
21
|
+
}
|
package/dist/fields/index.d.ts
CHANGED
|
@@ -51,5 +51,5 @@ export * from './AgentRunFields';
|
|
|
51
51
|
export * from './AgentTimelineItemFields';
|
|
52
52
|
export * from './AgentAttachmentFields';
|
|
53
53
|
export * from './TempFileFields';
|
|
54
|
-
export * from './CodeRevisionFields';
|
|
55
54
|
export * from './AgentContextFields';
|
|
55
|
+
export * from './WebsiteProfileFields';
|