@rxdrag/rxcms-models 0.3.98 → 0.3.100
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/ThemeBranchQueryOptions.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/ThemeBranchFields.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 -13
- 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/ModelInfo.d.ts +6 -0
- package/dist/interfaces/ThemeBranch.d.ts +3 -0
- package/dist/interfaces/ThemeBranchBoolExp.d.ts +2 -0
- package/dist/interfaces/ThemeBranchInput.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 +3 -3
|
@@ -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 { UserQueryOptions } from './UserQueryOptions';
|
|
8
|
+
import { User } from '../interfaces';
|
|
9
|
+
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
10
|
+
import { Website } from '../interfaces';
|
|
11
|
+
import { ThemeBranchQueryOptions } from './ThemeBranchQueryOptions';
|
|
12
|
+
import { ThemeBranch } 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
|
+
user(options?: UserQueryOptions | (keyof User)[]): this;
|
|
24
|
+
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
25
|
+
themeBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): 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
|
+
}
|
|
@@ -24,6 +24,9 @@ import { ThemeFileBoolExp } from '../interfaces';
|
|
|
24
24
|
import { ThemeFileFolderQueryOptions } from './ThemeFileFolderQueryOptions';
|
|
25
25
|
import { ThemeFileFolder } from '../interfaces';
|
|
26
26
|
import { ThemeFileFolderBoolExp } from '../interfaces';
|
|
27
|
+
import { AgentThreadQueryOptions } from './AgentThreadQueryOptions';
|
|
28
|
+
import { AgentThread } from '../interfaces';
|
|
29
|
+
import { AgentThreadBoolExp } from '../interfaces';
|
|
27
30
|
import { ThemeVersionQueryOptions } from './ThemeVersionQueryOptions';
|
|
28
31
|
import { ThemeVersion } from '../interfaces';
|
|
29
32
|
import { ThemeQueryOptions } from './ThemeQueryOptions';
|
|
@@ -56,6 +59,8 @@ export declare class ThemeBranchQueryOptions extends QueryOptions<ThemeBranch, T
|
|
|
56
59
|
filesAggregate(aggregate: IAggregate<ThemeFileBoolExp>): this;
|
|
57
60
|
folders(options?: ThemeFileFolderQueryOptions | (keyof ThemeFileFolder)[]): this;
|
|
58
61
|
foldersAggregate(aggregate: IAggregate<ThemeFileFolderBoolExp>): this;
|
|
62
|
+
agentThreads(options?: AgentThreadQueryOptions | (keyof AgentThread)[]): this;
|
|
63
|
+
agentThreadsAggregate(aggregate: IAggregate<AgentThreadBoolExp>): this;
|
|
59
64
|
marketVersion(options?: ThemeVersionQueryOptions | (keyof ThemeVersion)[]): this;
|
|
60
65
|
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
61
66
|
belongsToMain(options?: ThemeQueryOptions | (keyof Theme)[]): this;
|
|
@@ -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 './AgentRunQueryOptions';
|
|
51
|
+
export * from './AgentTimelineItemQueryOptions';
|
|
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 './agentRunEntry';
|
|
51
|
+
export * from './agentTimelineItemEntry';
|
|
@@ -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
|
+
user = "user",
|
|
13
|
+
website = "website",
|
|
14
|
+
themeBranch = "themeBranch"
|
|
15
|
+
}
|
|
@@ -27,6 +27,8 @@ export declare enum ThemeBranchAssciations {
|
|
|
27
27
|
filesAggregate = "filesAggregate",
|
|
28
28
|
folders = "folders",
|
|
29
29
|
foldersAggregate = "foldersAggregate",
|
|
30
|
+
agentThreads = "agentThreads",
|
|
31
|
+
agentThreadsAggregate = "agentThreadsAggregate",
|
|
30
32
|
marketVersion = "marketVersion",
|
|
31
33
|
website = "website",
|
|
32
34
|
belongsToMain = "belongsToMain"
|
|
@@ -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 './AgentRunFields';
|
|
51
|
+
export * from './AgentTimelineItemFields';
|