@rxdrag/rxcms-models 0.3.101 → 0.3.103

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 (65) hide show
  1. package/dist/classes/AgentAttachmentQueryOptions.d.ts +19 -0
  2. package/dist/classes/AgentContextQueryOptions.d.ts +14 -0
  3. package/dist/classes/AgentTimelineItemQueryOptions.d.ts +10 -1
  4. package/dist/classes/CodeRevisionQueryOptions.d.ts +16 -0
  5. package/dist/classes/TempFileQueryOptions.d.ts +22 -0
  6. package/dist/classes/ThemeBranchQueryOptions.d.ts +5 -0
  7. package/dist/classes/ThemeFileQueryOptions.d.ts +1 -1
  8. package/dist/classes/WebsiteQueryOptions.d.ts +11 -0
  9. package/dist/classes/index.d.ts +4 -0
  10. package/dist/entries/agentAttachmentEntry.d.ts +2 -0
  11. package/dist/entries/agentContextEntry.d.ts +2 -0
  12. package/dist/entries/codeRevisionEntry.d.ts +2 -0
  13. package/dist/entries/index.d.ts +4 -0
  14. package/dist/entries/tempFileEntry.d.ts +2 -0
  15. package/dist/fields/AgentAttachmentFields.d.ts +15 -0
  16. package/dist/fields/AgentContextFields.d.ts +10 -0
  17. package/dist/fields/AgentTimelineItemFields.d.ts +5 -1
  18. package/dist/fields/CodeRevisionFields.d.ts +12 -0
  19. package/dist/fields/TempFileFields.d.ts +16 -0
  20. package/dist/fields/ThemeBranchFields.d.ts +2 -0
  21. package/dist/fields/ThemeFileFields.d.ts +1 -1
  22. package/dist/fields/WebsiteFields.d.ts +6 -1
  23. package/dist/fields/index.d.ts +4 -0
  24. package/dist/index.mjs +521 -14
  25. package/dist/index.mjs.map +1 -1
  26. package/dist/interfaces/AgentAttachment.d.ts +17 -0
  27. package/dist/interfaces/AgentAttachmentBoolExp.d.ts +20 -0
  28. package/dist/interfaces/AgentAttachmentDistinctExp.d.ts +13 -0
  29. package/dist/interfaces/AgentAttachmentInput.d.ts +19 -0
  30. package/dist/interfaces/AgentAttachmentOrderBy.d.ts +13 -0
  31. package/dist/interfaces/AgentContext.d.ts +11 -0
  32. package/dist/interfaces/AgentContextBoolExp.d.ts +14 -0
  33. package/dist/interfaces/AgentContextDistinctExp.d.ts +8 -0
  34. package/dist/interfaces/AgentContextInput.d.ts +13 -0
  35. package/dist/interfaces/AgentContextOrderBy.d.ts +8 -0
  36. package/dist/interfaces/AgentTimelineItem.d.ts +7 -0
  37. package/dist/interfaces/AgentTimelineItemBoolExp.d.ts +6 -0
  38. package/dist/interfaces/AgentTimelineItemDistinctExp.d.ts +2 -1
  39. package/dist/interfaces/AgentTimelineItemInput.d.ts +6 -0
  40. package/dist/interfaces/AgentTimelineItemOrderBy.d.ts +1 -0
  41. package/dist/interfaces/CodeRevision.d.ts +13 -0
  42. package/dist/interfaces/CodeRevisionBoolExp.d.ts +17 -0
  43. package/dist/interfaces/CodeRevisionDistinctExp.d.ts +10 -0
  44. package/dist/interfaces/CodeRevisionInput.d.ts +15 -0
  45. package/dist/interfaces/CodeRevisionOrderBy.d.ts +10 -0
  46. package/dist/interfaces/TempFile.d.ts +19 -0
  47. package/dist/interfaces/TempFileBoolExp.d.ts +22 -0
  48. package/dist/interfaces/TempFileDistinctExp.d.ts +13 -0
  49. package/dist/interfaces/TempFileInput.d.ts +21 -0
  50. package/dist/interfaces/TempFileOrderBy.d.ts +13 -0
  51. package/dist/interfaces/ThemeBranch.d.ts +3 -0
  52. package/dist/interfaces/ThemeBranchBoolExp.d.ts +2 -0
  53. package/dist/interfaces/ThemeBranchInput.d.ts +2 -0
  54. package/dist/interfaces/ThemeFile.d.ts +1 -1
  55. package/dist/interfaces/ThemeFileBoolExp.d.ts +1 -1
  56. package/dist/interfaces/ThemeFileDistinctExp.d.ts +1 -1
  57. package/dist/interfaces/ThemeFileInput.d.ts +1 -1
  58. package/dist/interfaces/ThemeFileOrderBy.d.ts +1 -1
  59. package/dist/interfaces/Website.d.ts +7 -0
  60. package/dist/interfaces/WebsiteBoolExp.d.ts +5 -0
  61. package/dist/interfaces/WebsiteDistinctExp.d.ts +2 -1
  62. package/dist/interfaces/WebsiteInput.d.ts +5 -0
  63. package/dist/interfaces/WebsiteOrderBy.d.ts +1 -0
  64. package/dist/interfaces/index.d.ts +20 -0
  65. package/package.json +3 -3
@@ -0,0 +1,19 @@
1
+ import { IQueryArgs } from "@rxdrag/entify-lib";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { AgentAttachment, AgentAttachmentBoolExp, AgentAttachmentDistinctExp, AgentAttachmentOrderBy } from "../interfaces";
4
+ import { AgentTimelineItemQueryOptions } from './AgentTimelineItemQueryOptions';
5
+ import { AgentTimelineItem } from '../interfaces';
6
+ export declare class AgentAttachmentQueryOptions extends QueryOptions<AgentAttachment, AgentAttachmentBoolExp, AgentAttachmentOrderBy, AgentAttachmentDistinctExp> {
7
+ constructor(fields?: (keyof AgentAttachment)[], queryArgs?: IQueryArgs<AgentAttachmentBoolExp, AgentAttachmentOrderBy, AgentAttachmentDistinctExp>);
8
+ id(): this;
9
+ name(): this;
10
+ mimeType(): this;
11
+ size(): this;
12
+ extName(): this;
13
+ mediaType(): this;
14
+ storageMeta(fields: string[]): this;
15
+ seqValue(): this;
16
+ createdAt(): this;
17
+ updatedAt(): this;
18
+ timelineItme(options?: AgentTimelineItemQueryOptions | (keyof AgentTimelineItem)[]): this;
19
+ }
@@ -0,0 +1,14 @@
1
+ import { IQueryArgs } from "@rxdrag/entify-lib";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { AgentContext, AgentContextBoolExp, AgentContextDistinctExp, AgentContextOrderBy } from "../interfaces";
4
+ import { WebsiteQueryOptions } from './WebsiteQueryOptions';
5
+ import { Website } from '../interfaces';
6
+ export declare class AgentContextQueryOptions extends QueryOptions<AgentContext, AgentContextBoolExp, AgentContextOrderBy, AgentContextDistinctExp> {
7
+ constructor(fields?: (keyof AgentContext)[], queryArgs?: IQueryArgs<AgentContextBoolExp, AgentContextOrderBy, AgentContextDistinctExp>);
8
+ id(): this;
9
+ scopeType(): this;
10
+ scopeId(): this;
11
+ contextType(): this;
12
+ content(): this;
13
+ website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
14
+ }
@@ -1,6 +1,11 @@
1
- import { IQueryArgs } from "@rxdrag/entify-lib";
1
+ import { IAggregate, IQueryArgs } from "@rxdrag/entify-lib";
2
2
  import { QueryOptions } from "./QueryOptions";
3
3
  import { AgentTimelineItem, AgentTimelineItemBoolExp, AgentTimelineItemDistinctExp, AgentTimelineItemOrderBy } from "../interfaces";
4
+ import { AgentAttachmentQueryOptions } from './AgentAttachmentQueryOptions';
5
+ import { AgentAttachment } from '../interfaces';
6
+ import { AgentAttachmentBoolExp } from '../interfaces';
7
+ import { CodeRevisionQueryOptions } from './CodeRevisionQueryOptions';
8
+ import { CodeRevision } from '../interfaces';
4
9
  import { AgentRunQueryOptions } from './AgentRunQueryOptions';
5
10
  import { AgentRun } from '../interfaces';
6
11
  export declare class AgentTimelineItemQueryOptions extends QueryOptions<AgentTimelineItem, AgentTimelineItemBoolExp, AgentTimelineItemOrderBy, AgentTimelineItemDistinctExp> {
@@ -10,5 +15,9 @@ export declare class AgentTimelineItemQueryOptions extends QueryOptions<AgentTim
10
15
  payload(): this;
11
16
  createdAt(): this;
12
17
  updatedAt(): this;
18
+ seqValue(): this;
19
+ attachments(options?: AgentAttachmentQueryOptions | (keyof AgentAttachment)[]): this;
20
+ attachmentsAggregate(aggregate: IAggregate<AgentAttachmentBoolExp>): this;
21
+ codeRevision(options?: CodeRevisionQueryOptions | (keyof CodeRevision)[]): this;
13
22
  run(options?: AgentRunQueryOptions | (keyof AgentRun)[]): this;
14
23
  }
@@ -0,0 +1,16 @@
1
+ import { IQueryArgs } from "@rxdrag/entify-lib";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { CodeRevision, CodeRevisionBoolExp, CodeRevisionDistinctExp, CodeRevisionOrderBy } from "../interfaces";
4
+ import { AgentTimelineItemQueryOptions } from './AgentTimelineItemQueryOptions';
5
+ import { AgentTimelineItem } from '../interfaces';
6
+ export declare class CodeRevisionQueryOptions extends QueryOptions<CodeRevision, CodeRevisionBoolExp, CodeRevisionOrderBy, CodeRevisionDistinctExp> {
7
+ constructor(fields?: (keyof CodeRevision)[], queryArgs?: IQueryArgs<CodeRevisionBoolExp, CodeRevisionOrderBy, CodeRevisionDistinctExp>);
8
+ id(): this;
9
+ targetPath(): this;
10
+ baseSnapshot(): this;
11
+ delta(): this;
12
+ resultSnapshot(): this;
13
+ createdAt(): this;
14
+ updatedAt(): this;
15
+ timelineItem(options?: AgentTimelineItemQueryOptions | (keyof AgentTimelineItem)[]): this;
16
+ }
@@ -0,0 +1,22 @@
1
+ import { IQueryArgs } from "@rxdrag/entify-lib";
2
+ import { QueryOptions } from "./QueryOptions";
3
+ import { TempFile, TempFileBoolExp, TempFileDistinctExp, TempFileOrderBy } from "../interfaces";
4
+ import { WebsiteQueryOptions } from './WebsiteQueryOptions';
5
+ import { Website } from '../interfaces';
6
+ import { ThemeBranchQueryOptions } from './ThemeBranchQueryOptions';
7
+ import { ThemeBranch } from '../interfaces';
8
+ export declare class TempFileQueryOptions extends QueryOptions<TempFile, TempFileBoolExp, TempFileOrderBy, TempFileDistinctExp> {
9
+ constructor(fields?: (keyof TempFile)[], queryArgs?: IQueryArgs<TempFileBoolExp, TempFileOrderBy, TempFileDistinctExp>);
10
+ id(): this;
11
+ name(): this;
12
+ size(): this;
13
+ extName(): this;
14
+ mediaType(): this;
15
+ storageMeta(fields: string[]): this;
16
+ seqValue(): this;
17
+ createdAt(): this;
18
+ updateAt(): this;
19
+ mimeType(): this;
20
+ website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
21
+ themeBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
22
+ }
@@ -27,6 +27,9 @@ import { ThemeFileFolderBoolExp } from '../interfaces';
27
27
  import { AgentThreadQueryOptions } from './AgentThreadQueryOptions';
28
28
  import { AgentThread } from '../interfaces';
29
29
  import { AgentThreadBoolExp } from '../interfaces';
30
+ import { TempFileQueryOptions } from './TempFileQueryOptions';
31
+ import { TempFile } from '../interfaces';
32
+ import { TempFileBoolExp } from '../interfaces';
30
33
  import { ThemeVersionQueryOptions } from './ThemeVersionQueryOptions';
31
34
  import { ThemeVersion } from '../interfaces';
32
35
  import { ThemeQueryOptions } from './ThemeQueryOptions';
@@ -61,6 +64,8 @@ export declare class ThemeBranchQueryOptions extends QueryOptions<ThemeBranch, T
61
64
  foldersAggregate(aggregate: IAggregate<ThemeFileFolderBoolExp>): this;
62
65
  agentThreads(options?: AgentThreadQueryOptions | (keyof AgentThread)[]): this;
63
66
  agentThreadsAggregate(aggregate: IAggregate<AgentThreadBoolExp>): this;
67
+ tempFiles(options?: TempFileQueryOptions | (keyof TempFile)[]): this;
68
+ tempFilesAggregate(aggregate: IAggregate<TempFileBoolExp>): this;
64
69
  marketVersion(options?: ThemeVersionQueryOptions | (keyof ThemeVersion)[]): this;
65
70
  website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
66
71
  belongsToMain(options?: ThemeQueryOptions | (keyof Theme)[]): this;
@@ -14,7 +14,7 @@ export declare class ThemeFileQueryOptions extends QueryOptions<ThemeFile, Theme
14
14
  createdAt(): this;
15
15
  storageMeta(fields: string[]): this;
16
16
  size(): this;
17
- mimelype(): this;
17
+ mimeType(): this;
18
18
  extName(): this;
19
19
  mediaType(): this;
20
20
  themeBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
@@ -67,6 +67,12 @@ import { TagBoolExp } from '../interfaces';
67
67
  import { AgentThreadQueryOptions } from './AgentThreadQueryOptions';
68
68
  import { AgentThread } from '../interfaces';
69
69
  import { AgentThreadBoolExp } from '../interfaces';
70
+ import { TempFileQueryOptions } from './TempFileQueryOptions';
71
+ import { TempFile } from '../interfaces';
72
+ import { TempFileBoolExp } from '../interfaces';
73
+ import { AgentContextQueryOptions } from './AgentContextQueryOptions';
74
+ import { AgentContext } from '../interfaces';
75
+ import { AgentContextBoolExp } from '../interfaces';
70
76
  export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp> {
71
77
  constructor(fields?: (keyof Website)[], queryArgs?: IQueryArgs<WebsiteBoolExp, WebsiteOrderBy, WebsiteDistinctExp>);
72
78
  id(): this;
@@ -100,6 +106,7 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
100
106
  updatedBy(): this;
101
107
  description(): this;
102
108
  title(): this;
109
+ industryContext(): this;
103
110
  websiteType(options?: WebsiteTypeQueryOptions | (keyof WebsiteType)[]): this;
104
111
  owner(options?: UserQueryOptions | (keyof User)[]): this;
105
112
  users(options?: UserQueryOptions | (keyof User)[]): this;
@@ -145,5 +152,9 @@ export declare class WebsiteQueryOptions extends QueryOptions<Website, WebsiteBo
145
152
  tagsAggregate(aggregate: IAggregate<TagBoolExp>): this;
146
153
  agentThreads(options?: AgentThreadQueryOptions | (keyof AgentThread)[]): this;
147
154
  agentThreadsAggregate(aggregate: IAggregate<AgentThreadBoolExp>): this;
155
+ tempFiles(options?: TempFileQueryOptions | (keyof TempFile)[]): this;
156
+ tempFilesAggregate(aggregate: IAggregate<TempFileBoolExp>): this;
157
+ agentContexts(options?: AgentContextQueryOptions | (keyof AgentContext)[]): this;
158
+ agentContextsAggregate(aggregate: IAggregate<AgentContextBoolExp>): this;
148
159
  mockBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
149
160
  }
@@ -49,5 +49,9 @@ export * from './TagCategoryQueryOptions';
49
49
  export * from './AgentThreadQueryOptions';
50
50
  export * from './AgentRunQueryOptions';
51
51
  export * from './AgentTimelineItemQueryOptions';
52
+ export * from './AgentAttachmentQueryOptions';
53
+ export * from './TempFileQueryOptions';
54
+ export * from './CodeRevisionQueryOptions';
55
+ export * from './AgentContextQueryOptions';
52
56
  export * from './QueryOptions';
53
57
  export * from './metainfo';
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const agentAttachmentEntry: EntityEntry;
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const agentContextEntry: EntityEntry;
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const codeRevisionEntry: EntityEntry;
@@ -49,3 +49,7 @@ export * from './tagCategoryEntry';
49
49
  export * from './agentThreadEntry';
50
50
  export * from './agentRunEntry';
51
51
  export * from './agentTimelineItemEntry';
52
+ export * from './agentAttachmentEntry';
53
+ export * from './tempFileEntry';
54
+ export * from './codeRevisionEntry';
55
+ export * from './agentContextEntry';
@@ -0,0 +1,2 @@
1
+ import { EntityEntry } from "@rxdrag/entify-lib";
2
+ export declare const tempFileEntry: EntityEntry;
@@ -0,0 +1,15 @@
1
+ export declare enum AgentAttachmentFields {
2
+ id = "id",
3
+ name = "name",
4
+ mimeType = "mimeType",
5
+ size = "size",
6
+ extName = "extName",
7
+ mediaType = "mediaType",
8
+ storageMeta = "storageMeta",
9
+ seqValue = "seqValue",
10
+ createdAt = "createdAt",
11
+ updatedAt = "updatedAt"
12
+ }
13
+ export declare enum AgentAttachmentAssciations {
14
+ timelineItme = "timelineItme"
15
+ }
@@ -0,0 +1,10 @@
1
+ export declare enum AgentContextFields {
2
+ id = "id",
3
+ scopeType = "scopeType",
4
+ scopeId = "scopeId",
5
+ contextType = "contextType",
6
+ content = "content"
7
+ }
8
+ export declare enum AgentContextAssciations {
9
+ website = "website"
10
+ }
@@ -3,8 +3,12 @@ export declare enum AgentTimelineItemFields {
3
3
  kind = "kind",
4
4
  payload = "payload",
5
5
  createdAt = "createdAt",
6
- updatedAt = "updatedAt"
6
+ updatedAt = "updatedAt",
7
+ seqValue = "seqValue"
7
8
  }
8
9
  export declare enum AgentTimelineItemAssciations {
10
+ attachments = "attachments",
11
+ attachmentsAggregate = "attachmentsAggregate",
12
+ codeRevision = "codeRevision",
9
13
  run = "run"
10
14
  }
@@ -0,0 +1,12 @@
1
+ export declare enum CodeRevisionFields {
2
+ id = "id",
3
+ targetPath = "targetPath",
4
+ baseSnapshot = "baseSnapshot",
5
+ delta = "delta",
6
+ resultSnapshot = "resultSnapshot",
7
+ createdAt = "createdAt",
8
+ updatedAt = "updatedAt"
9
+ }
10
+ export declare enum CodeRevisionAssciations {
11
+ timelineItem = "timelineItem"
12
+ }
@@ -0,0 +1,16 @@
1
+ export declare enum TempFileFields {
2
+ id = "id",
3
+ name = "name",
4
+ size = "size",
5
+ extName = "extName",
6
+ mediaType = "mediaType",
7
+ storageMeta = "storageMeta",
8
+ seqValue = "seqValue",
9
+ createdAt = "createdAt",
10
+ updateAt = "updateAt",
11
+ mimeType = "mimeType"
12
+ }
13
+ export declare enum TempFileAssciations {
14
+ website = "website",
15
+ themeBranch = "themeBranch"
16
+ }
@@ -29,6 +29,8 @@ export declare enum ThemeBranchAssciations {
29
29
  foldersAggregate = "foldersAggregate",
30
30
  agentThreads = "agentThreads",
31
31
  agentThreadsAggregate = "agentThreadsAggregate",
32
+ tempFiles = "tempFiles",
33
+ tempFilesAggregate = "tempFilesAggregate",
32
34
  marketVersion = "marketVersion",
33
35
  website = "website",
34
36
  belongsToMain = "belongsToMain"
@@ -6,7 +6,7 @@ export declare enum ThemeFileFields {
6
6
  createdAt = "createdAt",
7
7
  storageMeta = "storageMeta",
8
8
  size = "size",
9
- mimelype = "mimelype",
9
+ mimeType = "mimeType",
10
10
  extName = "extName",
11
11
  mediaType = "mediaType"
12
12
  }
@@ -29,7 +29,8 @@ export declare enum WebsiteFields {
29
29
  */
30
30
  updatedBy = "updatedBy",
31
31
  description = "description",
32
- title = "title"
32
+ title = "title",
33
+ industryContext = "industryContext"
33
34
  }
34
35
  export declare enum WebsiteAssciations {
35
36
  websiteType = "websiteType",
@@ -77,5 +78,9 @@ export declare enum WebsiteAssciations {
77
78
  tagsAggregate = "tagsAggregate",
78
79
  agentThreads = "agentThreads",
79
80
  agentThreadsAggregate = "agentThreadsAggregate",
81
+ tempFiles = "tempFiles",
82
+ tempFilesAggregate = "tempFilesAggregate",
83
+ agentContexts = "agentContexts",
84
+ agentContextsAggregate = "agentContextsAggregate",
80
85
  mockBranch = "mockBranch"
81
86
  }
@@ -49,3 +49,7 @@ export * from './TagCategoryFields';
49
49
  export * from './AgentThreadFields';
50
50
  export * from './AgentRunFields';
51
51
  export * from './AgentTimelineItemFields';
52
+ export * from './AgentAttachmentFields';
53
+ export * from './TempFileFields';
54
+ export * from './CodeRevisionFields';
55
+ export * from './AgentContextFields';