@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,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
+ }
@@ -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
+ }
@@ -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;
@@ -313,3 +313,21 @@ export * from './TagCategoryInput';
313
313
  export * from './TagCategoryBoolExp';
314
314
  export * from './TagCategoryOrderBy';
315
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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/rxcms-models",
3
- "version": "0.3.98",
3
+ "version": "0.3.99",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "files": [