@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.
Files changed (50) hide show
  1. package/dist/classes/AgentRunQueryOptions.d.ts +21 -0
  2. package/dist/classes/AgentThreadQueryOptions.d.ts +26 -0
  3. package/dist/classes/AgentTimelineItemQueryOptions.d.ts +14 -0
  4. package/dist/classes/ThemeQueryOptions.d.ts +5 -0
  5. package/dist/classes/UserQueryOptions.d.ts +5 -0
  6. package/dist/classes/WebsiteQueryOptions.d.ts +5 -0
  7. package/dist/classes/index.d.ts +3 -0
  8. package/dist/entries/agentRunEntry.d.ts +2 -0
  9. package/dist/entries/agentThreadEntry.d.ts +2 -0
  10. package/dist/entries/agentTimelineItemEntry.d.ts +2 -0
  11. package/dist/entries/index.d.ts +3 -0
  12. package/dist/fields/AgentRunFields.d.ts +14 -0
  13. package/dist/fields/AgentThreadFields.d.ts +15 -0
  14. package/dist/fields/AgentTimelineItemFields.d.ts +10 -0
  15. package/dist/fields/ThemeFields.d.ts +2 -0
  16. package/dist/fields/UserFields.d.ts +2 -0
  17. package/dist/fields/WebsiteFields.d.ts +2 -0
  18. package/dist/fields/index.d.ts +3 -0
  19. package/dist/index.mjs +391 -14
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/interfaces/AgentError.d.ts +4 -0
  22. package/dist/interfaces/AgentRun.d.ts +20 -0
  23. package/dist/interfaces/AgentRunBoolExp.d.ts +19 -0
  24. package/dist/interfaces/AgentRunDistinctExp.d.ts +10 -0
  25. package/dist/interfaces/AgentRunInput.d.ts +21 -0
  26. package/dist/interfaces/AgentRunOrderBy.d.ts +10 -0
  27. package/dist/interfaces/AgentRunUsage.d.ts +5 -0
  28. package/dist/interfaces/AgentThread.d.ts +21 -0
  29. package/dist/interfaces/AgentThreadBoolExp.d.ts +22 -0
  30. package/dist/interfaces/AgentThreadDistinctExp.d.ts +9 -0
  31. package/dist/interfaces/AgentThreadInput.d.ts +22 -0
  32. package/dist/interfaces/AgentThreadOrderBy.d.ts +9 -0
  33. package/dist/interfaces/AgentTimelineItem.d.ts +11 -0
  34. package/dist/interfaces/AgentTimelineItemBoolExp.d.ts +15 -0
  35. package/dist/interfaces/AgentTimelineItemDistinctExp.d.ts +8 -0
  36. package/dist/interfaces/AgentTimelineItemInput.d.ts +13 -0
  37. package/dist/interfaces/AgentTimelineItemOrderBy.d.ts +8 -0
  38. package/dist/interfaces/MediaType.d.ts +1 -5
  39. package/dist/interfaces/ModelInfo.d.ts +6 -0
  40. package/dist/interfaces/Theme.d.ts +3 -0
  41. package/dist/interfaces/ThemeBoolExp.d.ts +2 -0
  42. package/dist/interfaces/ThemeInput.d.ts +2 -0
  43. package/dist/interfaces/User.d.ts +3 -0
  44. package/dist/interfaces/UserBoolExp.d.ts +2 -0
  45. package/dist/interfaces/UserInput.d.ts +2 -0
  46. package/dist/interfaces/Website.d.ts +3 -0
  47. package/dist/interfaces/WebsiteBoolExp.d.ts +2 -0
  48. package/dist/interfaces/WebsiteInput.d.ts +2 -0
  49. package/dist/interfaces/index.d.ts +18 -0
  50. 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
  }
@@ -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';
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const agentRunEntry: EntityEntry;
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const agentThreadEntry: EntityEntry;
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const agentTimelineItemEntry: EntityEntry;
@@ -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
+ }
@@ -0,0 +1,10 @@
1
+ export declare enum AgentTimelineItemFields {
2
+ id = "id",
3
+ kind = "kind",
4
+ payload = "payload",
5
+ createdAt = "createdAt",
6
+ updatedAt = "updatedAt"
7
+ }
8
+ export declare enum AgentTimelineItemAssciations {
9
+ run = "run"
10
+ }
@@ -10,5 +10,7 @@ export declare enum ThemeAssciations {
10
10
  branches = "branches",
11
11
  branchesAggregate = "branchesAggregate",
12
12
  cover = "cover",
13
+ agentThreads = "agentThreads",
14
+ agentThreadsAggregate = "agentThreadsAggregate",
13
15
  category = "category"
14
16
  }
@@ -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",
@@ -75,5 +75,7 @@ export declare enum WebsiteAssciations {
75
75
  svgIconsAggregate = "svgIconsAggregate",
76
76
  tags = "tags",
77
77
  tagsAggregate = "tagsAggregate",
78
+ agentThreads = "agentThreads",
79
+ agentThreadsAggregate = "agentThreadsAggregate",
78
80
  mockBranch = "mockBranch"
79
81
  }
@@ -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';