@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,4 @@
1
+ export interface AgentError {
2
+ message?: string;
3
+ code?: string;
4
+ }
@@ -0,0 +1,20 @@
1
+ import { ModelInfo } from './ModelInfo';
2
+ import { AgentRunUsage } from './AgentRunUsage';
3
+ import { AgentError } from './AgentError';
4
+ import { AgentTimelineItem } from './AgentTimelineItem';
5
+ import { AgentThread } from './AgentThread';
6
+ import { Aggregate } from './Aggregate';
7
+ export declare const AgentRunEntityName = "AgentRun";
8
+ export declare const AgentRunEntityLabel = "";
9
+ export interface AgentRun {
10
+ id?: string | null;
11
+ model?: ModelInfo;
12
+ usage?: AgentRunUsage;
13
+ status?: string;
14
+ startedAt?: Date;
15
+ finishedAt?: Date;
16
+ error?: AgentError;
17
+ timeline?: AgentTimelineItem[];
18
+ thread?: AgentThread;
19
+ timelineAggregate?: Aggregate;
20
+ }
@@ -0,0 +1,19 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
+ import { AgentTimelineItemBoolExp } from './AgentTimelineItemBoolExp';
5
+ import { AgentThreadBoolExp } from './AgentThreadBoolExp';
6
+ export interface AgentRunBoolExp {
7
+ _and?: AgentRunBoolExp[];
8
+ _or?: AgentRunBoolExp[];
9
+ _not?: AgentRunBoolExp;
10
+ id?: IdComparisonExp;
11
+ model?: unknown;
12
+ usage?: unknown;
13
+ status?: StringComparisonExp;
14
+ startedAt?: DateTimeComparisonExp;
15
+ finishedAt?: DateTimeComparisonExp;
16
+ error?: unknown;
17
+ timeline?: AgentTimelineItemBoolExp;
18
+ thread?: AgentThreadBoolExp;
19
+ }
@@ -0,0 +1,10 @@
1
+ export declare enum AgentRunDistinctEnum {
2
+ id = "id",
3
+ model = "model",
4
+ usage = "usage",
5
+ status = "status",
6
+ startedAt = "startedAt",
7
+ finishedAt = "finishedAt",
8
+ error = "error"
9
+ }
10
+ export type AgentRunDistinctExp = AgentRunDistinctEnum;
@@ -0,0 +1,21 @@
1
+ import { AgentRun } from './AgentRun';
2
+ import { ModelInfo } from './ModelInfo';
3
+ import { AgentRunUsage } from './AgentRunUsage';
4
+ import { AgentError } from './AgentError';
5
+ import { AgentTimelineItemInput } from './AgentTimelineItemInput';
6
+ import { AgentThreadInput } from './AgentThreadInput';
7
+ import { SetHasMany } from '@rxdrag/entify-lib';
8
+ import { SetHasOne } from '@rxdrag/entify-lib';
9
+ export interface AgentRunInput {
10
+ id?: string | null;
11
+ model?: ModelInfo;
12
+ usage?: AgentRunUsage;
13
+ status?: string;
14
+ startedAt?: Date;
15
+ finishedAt?: Date;
16
+ error?: AgentError;
17
+ timeline?: SetHasMany<AgentTimelineItemInput>;
18
+ thread?: SetHasOne<AgentThreadInput>;
19
+ }
20
+ export declare const agentRunToInputCascade: (entity: AgentRun) => AgentRunInput;
21
+ export declare const agentRunToInput: (entity: AgentRun) => AgentRunInput;
@@ -0,0 +1,10 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ export interface AgentRunOrderBy {
3
+ id?: OrderBy;
4
+ model?: OrderBy;
5
+ usage?: OrderBy;
6
+ status?: OrderBy;
7
+ startedAt?: OrderBy;
8
+ finishedAt?: OrderBy;
9
+ error?: OrderBy;
10
+ }
@@ -0,0 +1,5 @@
1
+ export interface AgentRunUsage {
2
+ inputTokens?: number;
3
+ outputTokens?: number;
4
+ totalTokens?: number;
5
+ }
@@ -0,0 +1,21 @@
1
+ import { AgentError } from './AgentError';
2
+ import { AgentRun } from './AgentRun';
3
+ import { Website } from './Website';
4
+ import { Theme } from './Theme';
5
+ import { User } from './User';
6
+ import { Aggregate } from './Aggregate';
7
+ export declare const AgentThreadEntityName = "AgentThread";
8
+ export declare const AgentThreadEntityLabel = "";
9
+ export interface AgentThread {
10
+ id?: string | null;
11
+ scene?: string;
12
+ status?: string;
13
+ lastError?: AgentError;
14
+ createdAt?: Date;
15
+ updatedAt?: Date;
16
+ runs?: AgentRun[];
17
+ website?: Website;
18
+ theme?: Theme;
19
+ user?: User;
20
+ runsAggregate?: Aggregate;
21
+ }
@@ -0,0 +1,22 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
+ import { AgentRunBoolExp } from './AgentRunBoolExp';
5
+ import { WebsiteBoolExp } from './WebsiteBoolExp';
6
+ import { ThemeBoolExp } from './ThemeBoolExp';
7
+ import { UserBoolExp } from './UserBoolExp';
8
+ export interface AgentThreadBoolExp {
9
+ _and?: AgentThreadBoolExp[];
10
+ _or?: AgentThreadBoolExp[];
11
+ _not?: AgentThreadBoolExp;
12
+ id?: IdComparisonExp;
13
+ scene?: StringComparisonExp;
14
+ status?: StringComparisonExp;
15
+ lastError?: unknown;
16
+ createdAt?: DateTimeComparisonExp;
17
+ updatedAt?: DateTimeComparisonExp;
18
+ runs?: AgentRunBoolExp;
19
+ website?: WebsiteBoolExp;
20
+ theme?: ThemeBoolExp;
21
+ user?: UserBoolExp;
22
+ }
@@ -0,0 +1,9 @@
1
+ export declare enum AgentThreadDistinctEnum {
2
+ id = "id",
3
+ scene = "scene",
4
+ status = "status",
5
+ lastError = "lastError",
6
+ createdAt = "createdAt",
7
+ updatedAt = "updatedAt"
8
+ }
9
+ export type AgentThreadDistinctExp = AgentThreadDistinctEnum;
@@ -0,0 +1,22 @@
1
+ import { AgentThread } from './AgentThread';
2
+ import { AgentError } from './AgentError';
3
+ import { AgentRunInput } from './AgentRunInput';
4
+ import { WebsiteInput } from './WebsiteInput';
5
+ import { ThemeInput } from './ThemeInput';
6
+ import { UserInput } from './UserInput';
7
+ import { SetHasMany } from '@rxdrag/entify-lib';
8
+ import { SetHasOne } from '@rxdrag/entify-lib';
9
+ export interface AgentThreadInput {
10
+ id?: string | null;
11
+ scene?: string;
12
+ status?: string;
13
+ lastError?: AgentError;
14
+ createdAt?: Date;
15
+ updatedAt?: Date;
16
+ runs?: SetHasMany<AgentRunInput>;
17
+ website?: SetHasOne<WebsiteInput>;
18
+ theme?: SetHasOne<ThemeInput>;
19
+ user?: SetHasOne<UserInput>;
20
+ }
21
+ export declare const agentThreadToInputCascade: (entity: AgentThread) => AgentThreadInput;
22
+ export declare const agentThreadToInput: (entity: AgentThread) => AgentThreadInput;
@@ -0,0 +1,9 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ export interface AgentThreadOrderBy {
3
+ id?: OrderBy;
4
+ scene?: OrderBy;
5
+ status?: OrderBy;
6
+ lastError?: OrderBy;
7
+ createdAt?: OrderBy;
8
+ updatedAt?: OrderBy;
9
+ }
@@ -0,0 +1,11 @@
1
+ import { AgentRun } from './AgentRun';
2
+ export declare const AgentTimelineItemEntityName = "AgentTimelineItem";
3
+ export declare const AgentTimelineItemEntityLabel = "";
4
+ export interface AgentTimelineItem {
5
+ id?: string | null;
6
+ kind?: string;
7
+ payload?: any;
8
+ createdAt?: Date;
9
+ updatedAt?: Date;
10
+ run?: AgentRun;
11
+ }
@@ -0,0 +1,15 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
+ import { AgentRunBoolExp } from './AgentRunBoolExp';
5
+ export interface AgentTimelineItemBoolExp {
6
+ _and?: AgentTimelineItemBoolExp[];
7
+ _or?: AgentTimelineItemBoolExp[];
8
+ _not?: AgentTimelineItemBoolExp;
9
+ id?: IdComparisonExp;
10
+ kind?: StringComparisonExp;
11
+ payload?: unknown;
12
+ createdAt?: DateTimeComparisonExp;
13
+ updatedAt?: DateTimeComparisonExp;
14
+ run?: AgentRunBoolExp;
15
+ }
@@ -0,0 +1,8 @@
1
+ export declare enum AgentTimelineItemDistinctEnum {
2
+ id = "id",
3
+ kind = "kind",
4
+ payload = "payload",
5
+ createdAt = "createdAt",
6
+ updatedAt = "updatedAt"
7
+ }
8
+ export type AgentTimelineItemDistinctExp = AgentTimelineItemDistinctEnum;
@@ -0,0 +1,13 @@
1
+ import { AgentTimelineItem } from './AgentTimelineItem';
2
+ import { AgentRunInput } from './AgentRunInput';
3
+ import { SetHasOne } from '@rxdrag/entify-lib';
4
+ export interface AgentTimelineItemInput {
5
+ id?: string | null;
6
+ kind?: string;
7
+ payload?: any;
8
+ createdAt?: Date;
9
+ updatedAt?: Date;
10
+ run?: SetHasOne<AgentRunInput>;
11
+ }
12
+ export declare const agentTimelineItemToInputCascade: (entity: AgentTimelineItem) => AgentTimelineItemInput;
13
+ export declare const agentTimelineItemToInput: (entity: AgentTimelineItem) => AgentTimelineItemInput;
@@ -0,0 +1,8 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ export interface AgentTimelineItemOrderBy {
3
+ id?: OrderBy;
4
+ kind?: OrderBy;
5
+ payload?: OrderBy;
6
+ createdAt?: OrderBy;
7
+ updatedAt?: OrderBy;
8
+ }
@@ -11,6 +11,7 @@ import { Website } from './Website';
11
11
  import { ThemeBranch } from './ThemeBranch';
12
12
  import { Bulletin } from './Bulletin';
13
13
  import { Tag } from './Tag';
14
+ import { TagCategory } from './TagCategory';
14
15
  import { Aggregate } from './Aggregate';
15
16
  export declare const LangEntityName = "Lang";
16
17
  export declare const LangEntityLabel = "\u8BED\u8A00";
@@ -58,6 +59,7 @@ export interface Lang {
58
59
  themes?: ThemeBranch[];
59
60
  bulletins?: Bulletin[];
60
61
  tags?: Tag[];
62
+ tagCategories?: TagCategory[];
61
63
  webPartsOfMediaFolderAggregate?: Aggregate;
62
64
  webPartsOfEnquiryAggregate?: Aggregate;
63
65
  webPartsOfProductAggregate?: Aggregate;
@@ -72,4 +74,5 @@ export interface Lang {
72
74
  themesAggregate?: Aggregate;
73
75
  bulletinsAggregate?: Aggregate;
74
76
  tagsAggregate?: Aggregate;
77
+ tagCategoriesAggregate?: Aggregate;
75
78
  }
@@ -13,6 +13,7 @@ import { WebsiteBoolExp } from './WebsiteBoolExp';
13
13
  import { ThemeBranchBoolExp } from './ThemeBranchBoolExp';
14
14
  import { BulletinBoolExp } from './BulletinBoolExp';
15
15
  import { TagBoolExp } from './TagBoolExp';
16
+ import { TagCategoryBoolExp } from './TagCategoryBoolExp';
16
17
  /**
17
18
  * 语言
18
19
  *
@@ -45,4 +46,5 @@ export interface LangBoolExp {
45
46
  themes?: ThemeBranchBoolExp;
46
47
  bulletins?: BulletinBoolExp;
47
48
  tags?: TagBoolExp;
49
+ tagCategories?: TagCategoryBoolExp;
48
50
  }
@@ -12,6 +12,7 @@ import { WebsiteInput } from './WebsiteInput';
12
12
  import { ThemeBranchInput } from './ThemeBranchInput';
13
13
  import { BulletinInput } from './BulletinInput';
14
14
  import { TagInput } from './TagInput';
15
+ import { TagCategoryInput } from './TagCategoryInput';
15
16
  import { SetHasMany } from '@rxdrag/entify-lib';
16
17
  /**
17
18
  * 语言
@@ -57,6 +58,7 @@ export interface LangInput {
57
58
  themes?: SetHasMany<ThemeBranchInput>;
58
59
  bulletins?: SetHasMany<BulletinInput>;
59
60
  tags?: SetHasMany<TagInput>;
61
+ tagCategories?: SetHasMany<TagCategoryInput>;
60
62
  }
61
63
  export declare const langToInputCascade: (entity: Lang) => LangInput;
62
64
  export declare const langToInput: (entity: Lang) => LangInput;
@@ -10,9 +10,5 @@ export declare enum MediaType {
10
10
  /**
11
11
  * label: undefined
12
12
  */
13
- document = "document",
14
- /**
15
- * label: undefined
16
- */
17
- file = "file"
13
+ document = "document"
18
14
  }
@@ -0,0 +1,6 @@
1
+ export interface ModelInfo {
2
+ provider?: string;
3
+ name?: string;
4
+ temperature?: number;
5
+ topP?: number;
6
+ }
@@ -2,6 +2,7 @@ import { Lang } from './Lang';
2
2
  import { Post } from './Post';
3
3
  import { Product } from './Product';
4
4
  import { Website } from './Website';
5
+ import { TagCategory } from './TagCategory';
5
6
  import { Aggregate } from './Aggregate';
6
7
  export declare const TagEntityName = "Tag";
7
8
  export declare const TagEntityLabel = "\u6587\u7AE0\u6807\u7B7E";
@@ -22,6 +23,7 @@ export interface Tag {
22
23
  posts?: Post[];
23
24
  products?: Product[];
24
25
  website?: Website;
26
+ category?: TagCategory;
25
27
  postsAggregate?: Aggregate;
26
28
  productsAggregate?: Aggregate;
27
29
  }
@@ -5,6 +5,7 @@ import { LangBoolExp } from './LangBoolExp';
5
5
  import { PostBoolExp } from './PostBoolExp';
6
6
  import { ProductBoolExp } from './ProductBoolExp';
7
7
  import { WebsiteBoolExp } from './WebsiteBoolExp';
8
+ import { TagCategoryBoolExp } from './TagCategoryBoolExp';
8
9
  /**
9
10
  * 文章标签
10
11
  *
@@ -22,4 +23,5 @@ export interface TagBoolExp {
22
23
  posts?: PostBoolExp;
23
24
  products?: ProductBoolExp;
24
25
  website?: WebsiteBoolExp;
26
+ category?: TagCategoryBoolExp;
25
27
  }
@@ -0,0 +1,17 @@
1
+ import { Tag } from './Tag';
2
+ import { Lang } from './Lang';
3
+ import { Aggregate } from './Aggregate';
4
+ export declare const TagCategoryEntityName = "TagCategory";
5
+ export declare const TagCategoryEntityLabel = "";
6
+ export interface TagCategory {
7
+ id?: string | null;
8
+ name?: string;
9
+ updateAt?: Date;
10
+ createdAt?: Date;
11
+ tags?: Tag[];
12
+ lang?: Lang;
13
+ children?: TagCategory[];
14
+ parent?: TagCategory;
15
+ tagsAggregate?: Aggregate;
16
+ childrenAggregate?: Aggregate;
17
+ }
@@ -0,0 +1,18 @@
1
+ import { IdComparisonExp } from './IdComparisonExp';
2
+ import { StringComparisonExp } from './StringComparisonExp';
3
+ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
+ import { TagBoolExp } from './TagBoolExp';
5
+ import { LangBoolExp } from './LangBoolExp';
6
+ export interface TagCategoryBoolExp {
7
+ _and?: TagCategoryBoolExp[];
8
+ _or?: TagCategoryBoolExp[];
9
+ _not?: TagCategoryBoolExp;
10
+ id?: IdComparisonExp;
11
+ name?: StringComparisonExp;
12
+ updateAt?: DateTimeComparisonExp;
13
+ createdAt?: DateTimeComparisonExp;
14
+ tags?: TagBoolExp;
15
+ lang?: LangBoolExp;
16
+ children?: TagCategoryBoolExp;
17
+ parent?: TagCategoryBoolExp;
18
+ }
@@ -0,0 +1,7 @@
1
+ export declare enum TagCategoryDistinctEnum {
2
+ id = "id",
3
+ name = "name",
4
+ updateAt = "updateAt",
5
+ createdAt = "createdAt"
6
+ }
7
+ export type TagCategoryDistinctExp = TagCategoryDistinctEnum;
@@ -0,0 +1,17 @@
1
+ import { TagCategory } from './TagCategory';
2
+ import { TagInput } from './TagInput';
3
+ import { LangInput } from './LangInput';
4
+ import { SetHasMany } from '@rxdrag/entify-lib';
5
+ import { SetHasOne } from '@rxdrag/entify-lib';
6
+ export interface TagCategoryInput {
7
+ id?: string | null;
8
+ name?: string;
9
+ updateAt?: Date;
10
+ createdAt?: Date;
11
+ tags?: SetHasMany<TagInput>;
12
+ lang?: SetHasOne<LangInput>;
13
+ children?: SetHasMany<TagCategoryInput>;
14
+ parent?: SetHasOne<TagCategoryInput>;
15
+ }
16
+ export declare const tagCategoryToInputCascade: (entity: TagCategory) => TagCategoryInput;
17
+ export declare const tagCategoryToInput: (entity: TagCategory) => TagCategoryInput;
@@ -0,0 +1,7 @@
1
+ import { OrderBy } from '@rxdrag/entify-lib';
2
+ export interface TagCategoryOrderBy {
3
+ id?: OrderBy;
4
+ name?: OrderBy;
5
+ updateAt?: OrderBy;
6
+ createdAt?: OrderBy;
7
+ }
@@ -3,6 +3,7 @@ import { LangInput } from './LangInput';
3
3
  import { PostInput } from './PostInput';
4
4
  import { ProductInput } from './ProductInput';
5
5
  import { WebsiteInput } from './WebsiteInput';
6
+ import { TagCategoryInput } from './TagCategoryInput';
6
7
  import { SetHasMany } from '@rxdrag/entify-lib';
7
8
  import { SetHasOne } from '@rxdrag/entify-lib';
8
9
  /**
@@ -22,6 +23,7 @@ export interface TagInput {
22
23
  posts?: SetHasMany<PostInput>;
23
24
  products?: SetHasMany<ProductInput>;
24
25
  website?: SetHasOne<WebsiteInput>;
26
+ category?: SetHasOne<TagCategoryInput>;
25
27
  }
26
28
  export declare const tagToInputCascade: (entity: Tag) => TagInput;
27
29
  export declare const tagToInput: (entity: Tag) => TagInput;
@@ -1,5 +1,6 @@
1
1
  import { ThemeBranch } from './ThemeBranch';
2
2
  import { Media } from './Media';
3
+ import { AgentThread } from './AgentThread';
3
4
  import { ThemeCategory } from './ThemeCategory';
4
5
  import { Aggregate } from './Aggregate';
5
6
  export declare const ThemeEntityName = "Theme";
@@ -13,6 +14,8 @@ export interface Theme {
13
14
  seqValue?: boolean;
14
15
  branches?: ThemeBranch[];
15
16
  cover?: Media;
17
+ agentThreads?: AgentThread[];
16
18
  category?: ThemeCategory;
17
19
  branchesAggregate?: Aggregate;
20
+ agentThreadsAggregate?: Aggregate;
18
21
  }
@@ -4,6 +4,7 @@ import { DateTimeComparisonExp } from './DateTimeComparisonExp';
4
4
  import { BooleanComparisonExp } from './BooleanComparisonExp';
5
5
  import { ThemeBranchBoolExp } from './ThemeBranchBoolExp';
6
6
  import { MediaBoolExp } from './MediaBoolExp';
7
+ import { AgentThreadBoolExp } from './AgentThreadBoolExp';
7
8
  import { ThemeCategoryBoolExp } from './ThemeCategoryBoolExp';
8
9
  export interface ThemeBoolExp {
9
10
  _and?: ThemeBoolExp[];
@@ -17,5 +18,6 @@ export interface ThemeBoolExp {
17
18
  seqValue?: BooleanComparisonExp;
18
19
  branches?: ThemeBranchBoolExp;
19
20
  cover?: MediaBoolExp;
21
+ agentThreads?: AgentThreadBoolExp;
20
22
  category?: ThemeCategoryBoolExp;
21
23
  }
@@ -1,6 +1,7 @@
1
1
  import { Theme } from './Theme';
2
2
  import { ThemeBranchInput } from './ThemeBranchInput';
3
3
  import { MediaInput } from './MediaInput';
4
+ import { AgentThreadInput } from './AgentThreadInput';
4
5
  import { ThemeCategoryInput } from './ThemeCategoryInput';
5
6
  import { SetHasMany } from '@rxdrag/entify-lib';
6
7
  import { SetHasOne } from '@rxdrag/entify-lib';
@@ -13,6 +14,7 @@ export interface ThemeInput {
13
14
  seqValue?: boolean;
14
15
  branches?: SetHasMany<ThemeBranchInput>;
15
16
  cover?: SetHasOne<MediaInput>;
17
+ agentThreads?: SetHasMany<AgentThreadInput>;
16
18
  category?: SetHasOne<ThemeCategoryInput>;
17
19
  }
18
20
  export declare const themeToInputCascade: (entity: Theme) => ThemeInput;
@@ -2,6 +2,7 @@ import { Role } from './Role';
2
2
  import { Media } from './Media';
3
3
  import { Product } from './Product';
4
4
  import { UserOperation } from './UserOperation';
5
+ import { AgentThread } from './AgentThread';
5
6
  import { Post } from './Post';
6
7
  import { Website } from './Website';
7
8
  import { Aggregate } from './Aggregate';
@@ -22,6 +23,7 @@ export interface User extends WebsiteUser {
22
23
  products?: Product[];
23
24
  operations?: UserOperation[];
24
25
  medias?: Media[];
26
+ agentThreads?: AgentThread[];
25
27
  posts?: Post[];
26
28
  websites?: Website[];
27
29
  website?: Website;
@@ -29,6 +31,7 @@ export interface User extends WebsiteUser {
29
31
  productsAggregate?: Aggregate;
30
32
  operationsAggregate?: Aggregate;
31
33
  mediasAggregate?: Aggregate;
34
+ agentThreadsAggregate?: Aggregate;
32
35
  postsAggregate?: Aggregate;
33
36
  websitesAggregate?: Aggregate;
34
37
  }
@@ -7,6 +7,7 @@ import { RoleBoolExp } from './RoleBoolExp';
7
7
  import { MediaBoolExp } from './MediaBoolExp';
8
8
  import { ProductBoolExp } from './ProductBoolExp';
9
9
  import { UserOperationBoolExp } from './UserOperationBoolExp';
10
+ import { AgentThreadBoolExp } from './AgentThreadBoolExp';
10
11
  import { PostBoolExp } from './PostBoolExp';
11
12
  import { WebsiteBoolExp } from './WebsiteBoolExp';
12
13
  export interface UserBoolExp extends WebsiteUserBoolExp {
@@ -26,6 +27,7 @@ export interface UserBoolExp extends WebsiteUserBoolExp {
26
27
  products?: ProductBoolExp;
27
28
  operations?: UserOperationBoolExp;
28
29
  medias?: MediaBoolExp;
30
+ agentThreads?: AgentThreadBoolExp;
29
31
  posts?: PostBoolExp;
30
32
  websites?: WebsiteBoolExp;
31
33
  website?: WebsiteBoolExp;
@@ -3,6 +3,7 @@ import { RoleInput } from './RoleInput';
3
3
  import { MediaInput } from './MediaInput';
4
4
  import { ProductInput } from './ProductInput';
5
5
  import { UserOperationInput } from './UserOperationInput';
6
+ import { AgentThreadInput } from './AgentThreadInput';
6
7
  import { PostInput } from './PostInput';
7
8
  import { WebsiteInput } from './WebsiteInput';
8
9
  import { SetHasMany } from '@rxdrag/entify-lib';
@@ -22,6 +23,7 @@ export interface UserInput extends WebsiteUser {
22
23
  products?: SetHasMany<ProductInput>;
23
24
  operations?: SetHasMany<UserOperationInput>;
24
25
  medias?: SetHasMany<MediaInput>;
26
+ agentThreads?: SetHasMany<AgentThreadInput>;
25
27
  posts?: SetHasMany<PostInput>;
26
28
  websites?: SetHasMany<WebsiteInput>;
27
29
  website?: SetHasOne<WebsiteInput>;
@@ -20,6 +20,7 @@ import { WebsiteSnapshot } from './WebsiteSnapshot';
20
20
  import { UserOperation } from './UserOperation';
21
21
  import { SvgIcon } from './SvgIcon';
22
22
  import { Tag } from './Tag';
23
+ import { AgentThread } from './AgentThread';
23
24
  import { Aggregate } from './Aggregate';
24
25
  export declare const WebsiteEntityName = "Website";
25
26
  export declare const WebsiteEntityLabel = "\u7AD9\u70B9";
@@ -83,6 +84,7 @@ export interface Website {
83
84
  userOperations?: UserOperation[];
84
85
  svgIcons?: SvgIcon[];
85
86
  tags?: Tag[];
87
+ agentThreads?: AgentThread[];
86
88
  mockBranch?: ThemeBranch;
87
89
  usersAggregate?: Aggregate;
88
90
  partsOfMediaFolderAggregate?: Aggregate;
@@ -103,4 +105,5 @@ export interface Website {
103
105
  userOperationsAggregate?: Aggregate;
104
106
  svgIconsAggregate?: Aggregate;
105
107
  tagsAggregate?: Aggregate;
108
+ agentThreadsAggregate?: Aggregate;
106
109
  }
@@ -23,6 +23,7 @@ import { WebsiteSnapshotBoolExp } from './WebsiteSnapshotBoolExp';
23
23
  import { UserOperationBoolExp } from './UserOperationBoolExp';
24
24
  import { SvgIconBoolExp } from './SvgIconBoolExp';
25
25
  import { TagBoolExp } from './TagBoolExp';
26
+ import { AgentThreadBoolExp } from './AgentThreadBoolExp';
26
27
  /**
27
28
  * 站点
28
29
  * 网站实体
@@ -65,5 +66,6 @@ export interface WebsiteBoolExp {
65
66
  userOperations?: UserOperationBoolExp;
66
67
  svgIcons?: SvgIconBoolExp;
67
68
  tags?: TagBoolExp;
69
+ agentThreads?: AgentThreadBoolExp;
68
70
  mockBranch?: ThemeBranchBoolExp;
69
71
  }
@@ -21,6 +21,7 @@ import { WebsiteSnapshotInput } from './WebsiteSnapshotInput';
21
21
  import { UserOperationInput } from './UserOperationInput';
22
22
  import { SvgIconInput } from './SvgIconInput';
23
23
  import { TagInput } from './TagInput';
24
+ import { AgentThreadInput } from './AgentThreadInput';
24
25
  import { SetHasMany } from '@rxdrag/entify-lib';
25
26
  import { SetHasOne } from '@rxdrag/entify-lib';
26
27
  /**
@@ -83,6 +84,7 @@ export interface WebsiteInput {
83
84
  userOperations?: SetHasMany<UserOperationInput>;
84
85
  svgIcons?: SetHasMany<SvgIconInput>;
85
86
  tags?: SetHasMany<TagInput>;
87
+ agentThreads?: SetHasMany<AgentThreadInput>;
86
88
  mockBranch?: SetHasOne<ThemeBranchInput>;
87
89
  }
88
90
  export declare const websiteToInputCascade: (entity: Website) => WebsiteInput;
@@ -308,3 +308,26 @@ export * from './ThemeFileFolderInput';
308
308
  export * from './ThemeFileFolderBoolExp';
309
309
  export * from './ThemeFileFolderOrderBy';
310
310
  export * from './ThemeFileFolderDistinctExp';
311
+ export * from './TagCategory';
312
+ export * from './TagCategoryInput';
313
+ export * from './TagCategoryBoolExp';
314
+ export * from './TagCategoryOrderBy';
315
+ export * from './TagCategoryDistinctExp';
316
+ export * from './AgentThread';
317
+ export * from './AgentThreadInput';
318
+ export * from './AgentThreadBoolExp';
319
+ export * from './AgentThreadOrderBy';
320
+ export * from './AgentThreadDistinctExp';
321
+ export * from './AgentTimelineItem';
322
+ export * from './AgentTimelineItemInput';
323
+ export * from './AgentTimelineItemBoolExp';
324
+ export * from './AgentTimelineItemOrderBy';
325
+ export * from './AgentTimelineItemDistinctExp';
326
+ export * from './AgentRun';
327
+ export * from './AgentRunInput';
328
+ export * from './AgentRunBoolExp';
329
+ export * from './AgentRunOrderBy';
330
+ export * from './AgentRunDistinctExp';
331
+ export * from './ModelInfo';
332
+ export * from './AgentRunUsage';
333
+ export * from './AgentError';