@rxdrag/rxcms-models 0.3.105 → 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/{SiteBlueprintQueryOptions.d.ts → WebsiteProfileQueryOptions.d.ts} +4 -4
- package/dist/classes/WebsiteQueryOptions.d.ts +3 -3
- package/dist/classes/index.d.ts +1 -2
- package/dist/entries/index.d.ts +1 -2
- 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 +1 -1
- package/dist/fields/{SiteBlueprintFields.d.ts → WebsiteProfileFields.d.ts} +3 -3
- package/dist/fields/index.d.ts +1 -2
- package/dist/index.mjs +147 -249
- 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 -2
- package/dist/interfaces/WebsiteBoolExp.d.ts +2 -2
- package/dist/interfaces/WebsiteInput.d.ts +2 -2
- package/dist/interfaces/{SiteBlueprint.d.ts → WebsiteProfile.d.ts} +4 -4
- package/dist/interfaces/{SiteBlueprintBoolExp.d.ts → WebsiteProfileBoolExp.d.ts} +5 -5
- package/dist/interfaces/{SiteBlueprintDistinctExp.d.ts → WebsiteProfileDistinctExp.d.ts} +3 -3
- package/dist/interfaces/{SiteBlueprintInput.d.ts → WebsiteProfileInput.d.ts} +5 -5
- package/dist/interfaces/{SiteBlueprintOrderBy.d.ts → WebsiteProfileOrderBy.d.ts} +2 -2
- package/dist/interfaces/index.d.ts +5 -10
- package/package.json +3 -3
- package/dist/classes/CodeRevisionQueryOptions.d.ts +0 -16
- package/dist/entries/codeRevisionEntry.d.ts +0 -2
- package/dist/entries/siteBlueprintEntry.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;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
2
|
import { QueryOptions } from "./QueryOptions";
|
|
3
|
-
import {
|
|
3
|
+
import { WebsiteProfile, WebsiteProfileBoolExp, WebsiteProfileDistinctExp, WebsiteProfileOrderBy } from "../interfaces";
|
|
4
4
|
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
5
5
|
import { Website } from '../interfaces';
|
|
6
|
-
export declare class
|
|
7
|
-
constructor(fields?: (keyof
|
|
6
|
+
export declare class WebsiteProfileQueryOptions extends QueryOptions<WebsiteProfile, WebsiteProfileBoolExp, WebsiteProfileOrderBy, WebsiteProfileDistinctExp> {
|
|
7
|
+
constructor(fields?: (keyof WebsiteProfile)[], queryArgs?: IQueryArgs<WebsiteProfileBoolExp, WebsiteProfileOrderBy, WebsiteProfileDistinctExp>);
|
|
8
8
|
id(): this;
|
|
9
9
|
name(): this;
|
|
10
10
|
industry(): this;
|
|
@@ -13,7 +13,7 @@ export declare class SiteBlueprintQueryOptions extends QueryOptions<SiteBlueprin
|
|
|
13
13
|
layoutPreference(): this;
|
|
14
14
|
styleGuide(): this;
|
|
15
15
|
contentStrategy(): this;
|
|
16
|
-
|
|
16
|
+
themeBranchId(): this;
|
|
17
17
|
createdAt(): this;
|
|
18
18
|
updatedAt(): this;
|
|
19
19
|
products(): this;
|
|
@@ -73,8 +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 {
|
|
77
|
-
import {
|
|
76
|
+
import { WebsiteProfileQueryOptions } from './WebsiteProfileQueryOptions';
|
|
77
|
+
import { WebsiteProfile } from '../interfaces';
|
|
78
78
|
export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
|
|
79
79
|
constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
|
|
80
80
|
id(): this;
|
|
@@ -157,6 +157,6 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
|
|
|
157
157
|
tempFilesAggregate(aggregate: IAggregate<TempFileBoolExp>): this;
|
|
158
158
|
agentContexts(options?: AgentContextQueryOptions | (keyof AgentContext)[]): this;
|
|
159
159
|
agentContextsAggregate(aggregate: IAggregate<AgentContextBoolExp>): this;
|
|
160
|
-
|
|
160
|
+
profile(options?: WebsiteProfileQueryOptions | (keyof WebsiteProfile)[]): this;
|
|
161
161
|
mockBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
162
162
|
}
|
package/dist/classes/index.d.ts
CHANGED
|
@@ -51,8 +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';
|
|
56
|
-
export * from './
|
|
55
|
+
export * from './WebsiteProfileQueryOptions';
|
|
57
56
|
export * from './QueryOptions';
|
|
58
57
|
export * from './metainfo';
|
package/dist/entries/index.d.ts
CHANGED
|
@@ -51,6 +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';
|
|
56
|
-
export * from './
|
|
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
|
}
|
|
@@ -81,6 +81,6 @@ export declare enum WebsiteAssciations {
|
|
|
81
81
|
tempFilesAggregate = "tempFilesAggregate",
|
|
82
82
|
agentContexts = "agentContexts",
|
|
83
83
|
agentContextsAggregate = "agentContextsAggregate",
|
|
84
|
-
|
|
84
|
+
profile = "profile",
|
|
85
85
|
mockBranch = "mockBranch"
|
|
86
86
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare enum
|
|
1
|
+
export declare enum WebsiteProfileFields {
|
|
2
2
|
id = "id",
|
|
3
3
|
name = "name",
|
|
4
4
|
industry = "industry",
|
|
@@ -7,7 +7,7 @@ export declare enum SiteBlueprintFields {
|
|
|
7
7
|
layoutPreference = "layoutPreference",
|
|
8
8
|
styleGuide = "styleGuide",
|
|
9
9
|
contentStrategy = "contentStrategy",
|
|
10
|
-
|
|
10
|
+
themeBranchId = "themeBranchId",
|
|
11
11
|
createdAt = "createdAt",
|
|
12
12
|
updatedAt = "updatedAt",
|
|
13
13
|
products = "products",
|
|
@@ -16,6 +16,6 @@ export declare enum SiteBlueprintFields {
|
|
|
16
16
|
langAbbr = "langAbbr",
|
|
17
17
|
pages = "pages"
|
|
18
18
|
}
|
|
19
|
-
export declare enum
|
|
19
|
+
export declare enum WebsiteProfileAssciations {
|
|
20
20
|
website = "website"
|
|
21
21
|
}
|
package/dist/fields/index.d.ts
CHANGED
|
@@ -51,6 +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';
|
|
56
|
-
export * from './
|
|
55
|
+
export * from './WebsiteProfileFields';
|