@rxdrag/rxcms-models 0.3.97 → 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 (68) 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/LangQueryOptions.d.ts +5 -0
  5. package/dist/classes/TagCategoryQueryOptions.d.ts +21 -0
  6. package/dist/classes/TagQueryOptions.d.ts +3 -0
  7. package/dist/classes/ThemeQueryOptions.d.ts +5 -0
  8. package/dist/classes/UserQueryOptions.d.ts +5 -0
  9. package/dist/classes/WebsiteQueryOptions.d.ts +5 -0
  10. package/dist/classes/index.d.ts +4 -0
  11. package/dist/entries/agentRunEntry.d.ts +2 -0
  12. package/dist/entries/agentThreadEntry.d.ts +2 -0
  13. package/dist/entries/agentTimelineItemEntry.d.ts +2 -0
  14. package/dist/entries/index.d.ts +4 -0
  15. package/dist/entries/tagCategoryEntry.d.ts +2 -0
  16. package/dist/fields/AgentRunFields.d.ts +14 -0
  17. package/dist/fields/AgentThreadFields.d.ts +15 -0
  18. package/dist/fields/AgentTimelineItemFields.d.ts +10 -0
  19. package/dist/fields/LangFields.d.ts +3 -1
  20. package/dist/fields/TagCategoryFields.d.ts +14 -0
  21. package/dist/fields/TagFields.d.ts +2 -1
  22. package/dist/fields/ThemeFields.d.ts +2 -0
  23. package/dist/fields/UserFields.d.ts +2 -0
  24. package/dist/fields/WebsiteFields.d.ts +2 -0
  25. package/dist/fields/index.d.ts +4 -0
  26. package/dist/index.mjs +552 -22
  27. package/dist/index.mjs.map +1 -1
  28. package/dist/interfaces/AgentError.d.ts +4 -0
  29. package/dist/interfaces/AgentRun.d.ts +20 -0
  30. package/dist/interfaces/AgentRunBoolExp.d.ts +19 -0
  31. package/dist/interfaces/AgentRunDistinctExp.d.ts +10 -0
  32. package/dist/interfaces/AgentRunInput.d.ts +21 -0
  33. package/dist/interfaces/AgentRunOrderBy.d.ts +10 -0
  34. package/dist/interfaces/AgentRunUsage.d.ts +5 -0
  35. package/dist/interfaces/AgentThread.d.ts +21 -0
  36. package/dist/interfaces/AgentThreadBoolExp.d.ts +22 -0
  37. package/dist/interfaces/AgentThreadDistinctExp.d.ts +9 -0
  38. package/dist/interfaces/AgentThreadInput.d.ts +22 -0
  39. package/dist/interfaces/AgentThreadOrderBy.d.ts +9 -0
  40. package/dist/interfaces/AgentTimelineItem.d.ts +11 -0
  41. package/dist/interfaces/AgentTimelineItemBoolExp.d.ts +15 -0
  42. package/dist/interfaces/AgentTimelineItemDistinctExp.d.ts +8 -0
  43. package/dist/interfaces/AgentTimelineItemInput.d.ts +13 -0
  44. package/dist/interfaces/AgentTimelineItemOrderBy.d.ts +8 -0
  45. package/dist/interfaces/Lang.d.ts +3 -0
  46. package/dist/interfaces/LangBoolExp.d.ts +2 -0
  47. package/dist/interfaces/LangInput.d.ts +2 -0
  48. package/dist/interfaces/MediaType.d.ts +1 -5
  49. package/dist/interfaces/ModelInfo.d.ts +6 -0
  50. package/dist/interfaces/Tag.d.ts +2 -0
  51. package/dist/interfaces/TagBoolExp.d.ts +2 -0
  52. package/dist/interfaces/TagCategory.d.ts +17 -0
  53. package/dist/interfaces/TagCategoryBoolExp.d.ts +18 -0
  54. package/dist/interfaces/TagCategoryDistinctExp.d.ts +7 -0
  55. package/dist/interfaces/TagCategoryInput.d.ts +17 -0
  56. package/dist/interfaces/TagCategoryOrderBy.d.ts +7 -0
  57. package/dist/interfaces/TagInput.d.ts +2 -0
  58. package/dist/interfaces/Theme.d.ts +3 -0
  59. package/dist/interfaces/ThemeBoolExp.d.ts +2 -0
  60. package/dist/interfaces/ThemeInput.d.ts +2 -0
  61. package/dist/interfaces/User.d.ts +3 -0
  62. package/dist/interfaces/UserBoolExp.d.ts +2 -0
  63. package/dist/interfaces/UserInput.d.ts +2 -0
  64. package/dist/interfaces/Website.d.ts +3 -0
  65. package/dist/interfaces/WebsiteBoolExp.d.ts +2 -0
  66. package/dist/interfaces/WebsiteInput.d.ts +2 -0
  67. package/dist/interfaces/index.d.ts +23 -0
  68. 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 { 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
+ }
@@ -40,6 +40,9 @@ import { BulletinBoolExp } from '../interfaces';
40
40
  import { TagQueryOptions } from './TagQueryOptions';
41
41
  import { Tag } from '../interfaces';
42
42
  import { TagBoolExp } from '../interfaces';
43
+ import { TagCategoryQueryOptions } from './TagCategoryQueryOptions';
44
+ import { TagCategory } from '../interfaces';
45
+ import { TagCategoryBoolExp } from '../interfaces';
43
46
  export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, LangOrderBy, LangDistinctExp> {
44
47
  constructor(fields?: (keyof Lang)[], queryArgs?: IQueryArgs<LangBoolExp, LangOrderBy, LangDistinctExp>);
45
48
  id(): this;
@@ -95,4 +98,6 @@ export declare class LangQueryOptions extends QueryOptions<Lang, LangBoolExp, La
95
98
  bulletinsAggregate(aggregate: IAggregate<BulletinBoolExp>): this;
96
99
  tags(options?: TagQueryOptions | (keyof Tag)[]): this;
97
100
  tagsAggregate(aggregate: IAggregate<TagBoolExp>): this;
101
+ tagCategories(options?: TagCategoryQueryOptions | (keyof TagCategory)[]): this;
102
+ tagCategoriesAggregate(aggregate: IAggregate<TagCategoryBoolExp>): this;
98
103
  }
@@ -0,0 +1,21 @@
1
+ import { IAggregate, IQueryArgs } from "@rxdrag/entify-lib";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { TagCategory, TagCategoryBoolExp, TagCategoryDistinctExp, TagCategoryOrderBy } from "../interfaces";
4
+ import { TagQueryOptions } from './TagQueryOptions';
5
+ import { Tag } from '../interfaces';
6
+ import { TagBoolExp } from '../interfaces';
7
+ import { LangQueryOptions } from './LangQueryOptions';
8
+ import { Lang } from '../interfaces';
9
+ export declare class TagCategoryQueryOptions extends QueryOptions<TagCategory, TagCategoryBoolExp, TagCategoryOrderBy, TagCategoryDistinctExp> {
10
+ constructor(fields?: (keyof TagCategory)[], queryArgs?: IQueryArgs<TagCategoryBoolExp, TagCategoryOrderBy, TagCategoryDistinctExp>);
11
+ id(): this;
12
+ name(): this;
13
+ updateAt(): this;
14
+ createdAt(): this;
15
+ tags(options?: TagQueryOptions | (keyof Tag)[]): this;
16
+ tagsAggregate(aggregate: IAggregate<TagBoolExp>): this;
17
+ lang(options?: LangQueryOptions | (keyof Lang)[]): this;
18
+ children(options?: TagCategoryQueryOptions | (keyof TagCategory)[]): this;
19
+ childrenAggregate(aggregate: IAggregate<TagCategoryBoolExp>): this;
20
+ parent(options?: TagCategoryQueryOptions | (keyof TagCategory)[]): this;
21
+ }
@@ -11,6 +11,8 @@ import { Product } from '../interfaces';
11
11
  import { ProductBoolExp } from '../interfaces';
12
12
  import { WebsiteQueryOptions } from './WebsiteQueryOptions';
13
13
  import { Website } from '../interfaces';
14
+ import { TagCategoryQueryOptions } from './TagCategoryQueryOptions';
15
+ import { TagCategory } from '../interfaces';
14
16
  export declare class TagQueryOptions extends QueryOptions<Tag, TagBoolExp, TagOrderBy, TagDistinctExp> {
15
17
  constructor(fields?: (keyof Tag)[], queryArgs?: IQueryArgs<TagBoolExp, TagOrderBy, TagDistinctExp>);
16
18
  id(): this;
@@ -27,4 +29,5 @@ export declare class TagQueryOptions extends QueryOptions<Tag, TagBoolExp, TagOr
27
29
  products(options?: ProductQueryOptions | (keyof Product)[]): this;
28
30
  productsAggregate(aggregate: IAggregate<ProductBoolExp>): this;
29
31
  website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
32
+ category(options?: TagCategoryQueryOptions | (keyof TagCategory)[]): this;
30
33
  }
@@ -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
  }
@@ -45,5 +45,9 @@ export * from './ThemeQueryOptions';
45
45
  export * from './SvgIconQueryOptions';
46
46
  export * from './ThemeFileQueryOptions';
47
47
  export * from './ThemeFileFolderQueryOptions';
48
+ export * from './TagCategoryQueryOptions';
49
+ export * from './AgentThreadQueryOptions';
50
+ export * from './AgentTimelineItemQueryOptions';
51
+ export * from './AgentRunQueryOptions';
48
52
  export * from './QueryOptions';
49
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;
@@ -45,3 +45,7 @@ export * from './themeEntry';
45
45
  export * from './svgIconEntry';
46
46
  export * from './themeFileEntry';
47
47
  export * from './themeFileFolderEntry';
48
+ export * from './tagCategoryEntry';
49
+ export * from './agentThreadEntry';
50
+ export * from './agentTimelineItemEntry';
51
+ export * from './agentRunEntry';
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const tagCategoryEntry: EntityEntry;
@@ -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
+ }
@@ -53,5 +53,7 @@ export declare enum LangAssciations {
53
53
  bulletins = "bulletins",
54
54
  bulletinsAggregate = "bulletinsAggregate",
55
55
  tags = "tags",
56
- tagsAggregate = "tagsAggregate"
56
+ tagsAggregate = "tagsAggregate",
57
+ tagCategories = "tagCategories",
58
+ tagCategoriesAggregate = "tagCategoriesAggregate"
57
59
  }
@@ -0,0 +1,14 @@
1
+ export declare enum TagCategoryFields {
2
+ id = "id",
3
+ name = "name",
4
+ updateAt = "updateAt",
5
+ createdAt = "createdAt"
6
+ }
7
+ export declare enum TagCategoryAssciations {
8
+ tags = "tags",
9
+ tagsAggregate = "tagsAggregate",
10
+ lang = "lang",
11
+ children = "children",
12
+ childrenAggregate = "childrenAggregate",
13
+ parent = "parent"
14
+ }
@@ -14,5 +14,6 @@ export declare enum TagAssciations {
14
14
  postsAggregate = "postsAggregate",
15
15
  products = "products",
16
16
  productsAggregate = "productsAggregate",
17
- website = "website"
17
+ website = "website",
18
+ category = "category"
18
19
  }
@@ -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
  }
@@ -45,3 +45,7 @@ export * from './ThemeFields';
45
45
  export * from './SvgIconFields';
46
46
  export * from './ThemeFileFields';
47
47
  export * from './ThemeFileFolderFields';
48
+ export * from './TagCategoryFields';
49
+ export * from './AgentThreadFields';
50
+ export * from './AgentTimelineItemFields';
51
+ export * from './AgentRunFields';