@rxdrag/rxcms-models 0.3.98 → 0.3.99
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/AgentRunQueryOptions.d.ts +21 -0
- package/dist/classes/AgentThreadQueryOptions.d.ts +26 -0
- package/dist/classes/AgentTimelineItemQueryOptions.d.ts +14 -0
- package/dist/classes/ThemeQueryOptions.d.ts +5 -0
- package/dist/classes/UserQueryOptions.d.ts +5 -0
- package/dist/classes/WebsiteQueryOptions.d.ts +5 -0
- package/dist/classes/index.d.ts +3 -0
- package/dist/entries/agentRunEntry.d.ts +2 -0
- package/dist/entries/agentThreadEntry.d.ts +2 -0
- package/dist/entries/agentTimelineItemEntry.d.ts +2 -0
- package/dist/entries/index.d.ts +3 -0
- package/dist/fields/AgentRunFields.d.ts +14 -0
- package/dist/fields/AgentThreadFields.d.ts +15 -0
- package/dist/fields/AgentTimelineItemFields.d.ts +10 -0
- package/dist/fields/ThemeFields.d.ts +2 -0
- package/dist/fields/UserFields.d.ts +2 -0
- package/dist/fields/WebsiteFields.d.ts +2 -0
- package/dist/fields/index.d.ts +3 -0
- package/dist/index.mjs +391 -14
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/AgentError.d.ts +4 -0
- package/dist/interfaces/AgentRun.d.ts +20 -0
- package/dist/interfaces/AgentRunBoolExp.d.ts +19 -0
- package/dist/interfaces/AgentRunDistinctExp.d.ts +10 -0
- package/dist/interfaces/AgentRunInput.d.ts +21 -0
- package/dist/interfaces/AgentRunOrderBy.d.ts +10 -0
- package/dist/interfaces/AgentRunUsage.d.ts +5 -0
- package/dist/interfaces/AgentThread.d.ts +21 -0
- package/dist/interfaces/AgentThreadBoolExp.d.ts +22 -0
- package/dist/interfaces/AgentThreadDistinctExp.d.ts +9 -0
- package/dist/interfaces/AgentThreadInput.d.ts +22 -0
- package/dist/interfaces/AgentThreadOrderBy.d.ts +9 -0
- package/dist/interfaces/AgentTimelineItem.d.ts +11 -0
- package/dist/interfaces/AgentTimelineItemBoolExp.d.ts +15 -0
- package/dist/interfaces/AgentTimelineItemDistinctExp.d.ts +8 -0
- package/dist/interfaces/AgentTimelineItemInput.d.ts +13 -0
- package/dist/interfaces/AgentTimelineItemOrderBy.d.ts +8 -0
- package/dist/interfaces/MediaType.d.ts +1 -5
- package/dist/interfaces/ModelInfo.d.ts +6 -0
- package/dist/interfaces/Theme.d.ts +3 -0
- package/dist/interfaces/ThemeBoolExp.d.ts +2 -0
- package/dist/interfaces/ThemeInput.d.ts +2 -0
- package/dist/interfaces/User.d.ts +3 -0
- package/dist/interfaces/UserBoolExp.d.ts +2 -0
- package/dist/interfaces/UserInput.d.ts +2 -0
- package/dist/interfaces/Website.d.ts +3 -0
- package/dist/interfaces/WebsiteBoolExp.d.ts +2 -0
- package/dist/interfaces/WebsiteInput.d.ts +2 -0
- package/dist/interfaces/index.d.ts +18 -0
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { IAggregate, IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
+
import { QueryOptions } from "./QueryOptions";
|
|
3
|
+
import { AgentRun, AgentRunBoolExp, AgentRunDistinctExp, AgentRunOrderBy } from "../interfaces";
|
|
4
|
+
import { AgentTimelineItemQueryOptions } from './AgentTimelineItemQueryOptions';
|
|
5
|
+
import { AgentTimelineItem } from '../interfaces';
|
|
6
|
+
import { AgentTimelineItemBoolExp } from '../interfaces';
|
|
7
|
+
import { AgentThreadQueryOptions } from './AgentThreadQueryOptions';
|
|
8
|
+
import { AgentThread } from '../interfaces';
|
|
9
|
+
export declare class AgentRunQueryOptions extends QueryOptions<AgentRun, AgentRunBoolExp, AgentRunOrderBy, AgentRunDistinctExp> {
|
|
10
|
+
constructor(fields?: (keyof AgentRun)[], queryArgs?: IQueryArgs<AgentRunBoolExp, AgentRunOrderBy, AgentRunDistinctExp>);
|
|
11
|
+
id(): this;
|
|
12
|
+
model(): this;
|
|
13
|
+
usage(): this;
|
|
14
|
+
status(): this;
|
|
15
|
+
startedAt(): this;
|
|
16
|
+
finishedAt(): this;
|
|
17
|
+
error(): this;
|
|
18
|
+
timeline(options?: AgentTimelineItemQueryOptions | (keyof AgentTimelineItem)[]): this;
|
|
19
|
+
timelineAggregate(aggregate: IAggregate<AgentTimelineItemBoolExp>): this;
|
|
20
|
+
thread(options?: AgentThreadQueryOptions | (keyof AgentThread)[]): this;
|
|
21
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { IAggregate, IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
+
import { QueryOptions } from "./QueryOptions";
|
|
3
|
+
import { AgentThread, AgentThreadBoolExp, AgentThreadDistinctExp, AgentThreadOrderBy } from "../interfaces";
|
|
4
|
+
import { AgentRunQueryOptions } from './AgentRunQueryOptions';
|
|
5
|
+
import { AgentRun } from '../interfaces';
|
|
6
|
+
import { AgentRunBoolExp } from '../interfaces';
|
|
7
|
+
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
8
|
+
import { Website } from '../interfaces';
|
|
9
|
+
import { ThemeQueryOptions } from './ThemeQueryOptions';
|
|
10
|
+
import { Theme } from '../interfaces';
|
|
11
|
+
import { UserQueryOptions } from './UserQueryOptions';
|
|
12
|
+
import { User } from '../interfaces';
|
|
13
|
+
export declare class AgentThreadQueryOptions extends QueryOptions<AgentThread, AgentThreadBoolExp, AgentThreadOrderBy, AgentThreadDistinctExp> {
|
|
14
|
+
constructor(fields?: (keyof AgentThread)[], queryArgs?: IQueryArgs<AgentThreadBoolExp, AgentThreadOrderBy, AgentThreadDistinctExp>);
|
|
15
|
+
id(): this;
|
|
16
|
+
scene(): this;
|
|
17
|
+
status(): this;
|
|
18
|
+
lastError(): this;
|
|
19
|
+
createdAt(): this;
|
|
20
|
+
updatedAt(): this;
|
|
21
|
+
runs(options?: AgentRunQueryOptions | (keyof AgentRun)[]): this;
|
|
22
|
+
runsAggregate(aggregate: IAggregate<AgentRunBoolExp>): this;
|
|
23
|
+
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
24
|
+
theme(options?: ThemeQueryOptions | (keyof Theme)[]): this;
|
|
25
|
+
user(options?: UserQueryOptions | (keyof User)[]): this;
|
|
26
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { IQueryArgs } from "@rxdrag/entify-lib";
|
|
2
|
+
import { QueryOptions } from "./QueryOptions";
|
|
3
|
+
import { AgentTimelineItem, AgentTimelineItemBoolExp, AgentTimelineItemDistinctExp, AgentTimelineItemOrderBy } from "../interfaces";
|
|
4
|
+
import { AgentRunQueryOptions } from './AgentRunQueryOptions';
|
|
5
|
+
import { AgentRun } from '../interfaces';
|
|
6
|
+
export declare class AgentTimelineItemQueryOptions extends QueryOptions<AgentTimelineItem, AgentTimelineItemBoolExp, AgentTimelineItemOrderBy, AgentTimelineItemDistinctExp> {
|
|
7
|
+
constructor(fields?: (keyof AgentTimelineItem)[], queryArgs?: IQueryArgs<AgentTimelineItemBoolExp, AgentTimelineItemOrderBy, AgentTimelineItemDistinctExp>);
|
|
8
|
+
id(): this;
|
|
9
|
+
kind(): this;
|
|
10
|
+
payload(): this;
|
|
11
|
+
createdAt(): this;
|
|
12
|
+
updatedAt(): this;
|
|
13
|
+
run(options?: AgentRunQueryOptions | (keyof AgentRun)[]): this;
|
|
14
|
+
}
|
|
@@ -6,6 +6,9 @@ import { ThemeBranch } from '../interfaces';
|
|
|
6
6
|
import { ThemeBranchBoolExp } from '../interfaces';
|
|
7
7
|
import { MediaQueryOptions } from './MediaQueryOptions';
|
|
8
8
|
import { Media } from '../interfaces';
|
|
9
|
+
import { AgentThreadQueryOptions } from './AgentThreadQueryOptions';
|
|
10
|
+
import { AgentThread } from '../interfaces';
|
|
11
|
+
import { AgentThreadBoolExp } from '../interfaces';
|
|
9
12
|
import { ThemeCategoryQueryOptions } from './ThemeCategoryQueryOptions';
|
|
10
13
|
import { ThemeCategory } from '../interfaces';
|
|
11
14
|
export declare class ThemeQueryOptions extends QueryOptions<Theme, ThemeBoolExp, ThemeOrderBy, ThemeDistinctExp> {
|
|
@@ -19,5 +22,7 @@ export declare class ThemeQueryOptions extends QueryOptions<Theme, ThemeBoolExp,
|
|
|
19
22
|
branches(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
20
23
|
branchesAggregate(aggregate: IAggregate<ThemeBranchBoolExp>): this;
|
|
21
24
|
cover(options?: MediaQueryOptions | (keyof Media)[]): this;
|
|
25
|
+
agentThreads(options?: AgentThreadQueryOptions | (keyof AgentThread)[]): this;
|
|
26
|
+
agentThreadsAggregate(aggregate: IAggregate<AgentThreadBoolExp>): this;
|
|
22
27
|
category(options?: ThemeCategoryQueryOptions | (keyof ThemeCategory)[]): this;
|
|
23
28
|
}
|
|
@@ -13,6 +13,9 @@ import { UserOperationQueryOptions } from './UserOperationQueryOptions';
|
|
|
13
13
|
import { UserOperation } from '../interfaces';
|
|
14
14
|
import { UserOperationBoolExp } from '../interfaces';
|
|
15
15
|
import { MediaBoolExp } from '../interfaces';
|
|
16
|
+
import { AgentThreadQueryOptions } from './AgentThreadQueryOptions';
|
|
17
|
+
import { AgentThread } from '../interfaces';
|
|
18
|
+
import { AgentThreadBoolExp } from '../interfaces';
|
|
16
19
|
import { PostQueryOptions } from './PostQueryOptions';
|
|
17
20
|
import { Post } from '../interfaces';
|
|
18
21
|
import { PostBoolExp } from '../interfaces';
|
|
@@ -69,6 +72,8 @@ export declare class UserQueryOptions extends QueryOptions<User, UserBoolExp, Us
|
|
|
69
72
|
operationsAggregate(aggregate: IAggregate<UserOperationBoolExp>): this;
|
|
70
73
|
medias(options?: MediaQueryOptions | (keyof Media)[]): this;
|
|
71
74
|
mediasAggregate(aggregate: IAggregate<MediaBoolExp>): this;
|
|
75
|
+
agentThreads(options?: AgentThreadQueryOptions | (keyof AgentThread)[]): this;
|
|
76
|
+
agentThreadsAggregate(aggregate: IAggregate<AgentThreadBoolExp>): this;
|
|
72
77
|
posts(options?: PostQueryOptions | (keyof Post)[]): this;
|
|
73
78
|
postsAggregate(aggregate: IAggregate<PostBoolExp>): this;
|
|
74
79
|
websites(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
@@ -64,6 +64,9 @@ import { SvgIconBoolExp } from '../interfaces';
|
|
|
64
64
|
import { TagQueryOptions } from './TagQueryOptions';
|
|
65
65
|
import { Tag } from '../interfaces';
|
|
66
66
|
import { TagBoolExp } from '../interfaces';
|
|
67
|
+
import { AgentThreadQueryOptions } from './AgentThreadQueryOptions';
|
|
68
|
+
import { AgentThread } from '../interfaces';
|
|
69
|
+
import { AgentThreadBoolExp } from '../interfaces';
|
|
67
70
|
export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
|
|
68
71
|
constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
|
|
69
72
|
id(): this;
|
|
@@ -140,5 +143,7 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
|
|
|
140
143
|
svgIconsAggregate(aggregate: IAggregate<SvgIconBoolExp>): this;
|
|
141
144
|
tags(options?: TagQueryOptions | (keyof Tag)[]): this;
|
|
142
145
|
tagsAggregate(aggregate: IAggregate<TagBoolExp>): this;
|
|
146
|
+
agentThreads(options?: AgentThreadQueryOptions | (keyof AgentThread)[]): this;
|
|
147
|
+
agentThreadsAggregate(aggregate: IAggregate<AgentThreadBoolExp>): this;
|
|
143
148
|
mockBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
144
149
|
}
|
package/dist/classes/index.d.ts
CHANGED
|
@@ -46,5 +46,8 @@ export * from './SvgIconQueryOptions';
|
|
|
46
46
|
export * from './ThemeFileQueryOptions';
|
|
47
47
|
export * from './ThemeFileFolderQueryOptions';
|
|
48
48
|
export * from './TagCategoryQueryOptions';
|
|
49
|
+
export * from './AgentThreadQueryOptions';
|
|
50
|
+
export * from './AgentTimelineItemQueryOptions';
|
|
51
|
+
export * from './AgentRunQueryOptions';
|
|
49
52
|
export * from './QueryOptions';
|
|
50
53
|
export * from './metainfo';
|
package/dist/entries/index.d.ts
CHANGED
|
@@ -46,3 +46,6 @@ export * from './svgIconEntry';
|
|
|
46
46
|
export * from './themeFileEntry';
|
|
47
47
|
export * from './themeFileFolderEntry';
|
|
48
48
|
export * from './tagCategoryEntry';
|
|
49
|
+
export * from './agentThreadEntry';
|
|
50
|
+
export * from './agentTimelineItemEntry';
|
|
51
|
+
export * from './agentRunEntry';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare enum AgentRunFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
model = "model",
|
|
4
|
+
usage = "usage",
|
|
5
|
+
status = "status",
|
|
6
|
+
startedAt = "startedAt",
|
|
7
|
+
finishedAt = "finishedAt",
|
|
8
|
+
error = "error"
|
|
9
|
+
}
|
|
10
|
+
export declare enum AgentRunAssciations {
|
|
11
|
+
timeline = "timeline",
|
|
12
|
+
timelineAggregate = "timelineAggregate",
|
|
13
|
+
thread = "thread"
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare enum AgentThreadFields {
|
|
2
|
+
id = "id",
|
|
3
|
+
scene = "scene",
|
|
4
|
+
status = "status",
|
|
5
|
+
lastError = "lastError",
|
|
6
|
+
createdAt = "createdAt",
|
|
7
|
+
updatedAt = "updatedAt"
|
|
8
|
+
}
|
|
9
|
+
export declare enum AgentThreadAssciations {
|
|
10
|
+
runs = "runs",
|
|
11
|
+
runsAggregate = "runsAggregate",
|
|
12
|
+
website = "website",
|
|
13
|
+
theme = "theme",
|
|
14
|
+
user = "user"
|
|
15
|
+
}
|
|
@@ -49,6 +49,8 @@ export declare enum UserAssciations {
|
|
|
49
49
|
operationsAggregate = "operationsAggregate",
|
|
50
50
|
medias = "medias",
|
|
51
51
|
mediasAggregate = "mediasAggregate",
|
|
52
|
+
agentThreads = "agentThreads",
|
|
53
|
+
agentThreadsAggregate = "agentThreadsAggregate",
|
|
52
54
|
posts = "posts",
|
|
53
55
|
postsAggregate = "postsAggregate",
|
|
54
56
|
websites = "websites",
|
package/dist/fields/index.d.ts
CHANGED
|
@@ -46,3 +46,6 @@ export * from './SvgIconFields';
|
|
|
46
46
|
export * from './ThemeFileFields';
|
|
47
47
|
export * from './ThemeFileFolderFields';
|
|
48
48
|
export * from './TagCategoryFields';
|
|
49
|
+
export * from './AgentThreadFields';
|
|
50
|
+
export * from './AgentTimelineItemFields';
|
|
51
|
+
export * from './AgentRunFields';
|