@rxdrag/rxcms-models 0.3.99 → 0.3.100
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.
- package/dist/classes/AgentThreadQueryOptions.d.ts +6 -6
- package/dist/classes/ThemeBranchQueryOptions.d.ts +5 -0
- package/dist/classes/ThemeQueryOptions.d.ts +0 -5
- package/dist/classes/index.d.ts +1 -1
- package/dist/entries/index.d.ts +1 -1
- package/dist/fields/AgentThreadFields.d.ts +2 -2
- package/dist/fields/ThemeBranchFields.d.ts +2 -0
- package/dist/fields/ThemeFields.d.ts +0 -2
- package/dist/fields/index.d.ts +1 -1
- package/dist/index.mjs +162 -161
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/AgentThread.d.ts +4 -4
- package/dist/interfaces/AgentThreadBoolExp.d.ts +4 -4
- package/dist/interfaces/AgentThreadInput.d.ts +4 -4
- package/dist/interfaces/MediaType.d.ts +5 -1
- package/dist/interfaces/Theme.d.ts +0 -3
- package/dist/interfaces/ThemeBoolExp.d.ts +0 -2
- package/dist/interfaces/ThemeBranch.d.ts +3 -0
- package/dist/interfaces/ThemeBranchBoolExp.d.ts +2 -0
- package/dist/interfaces/ThemeBranchInput.d.ts +2 -0
- package/dist/interfaces/ThemeInput.d.ts +0 -2
- package/dist/interfaces/index.d.ts +5 -5
- package/package.json +3 -3
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { AgentError } from './AgentError';
|
|
2
2
|
import { AgentRun } from './AgentRun';
|
|
3
|
-
import { Website } from './Website';
|
|
4
|
-
import { Theme } from './Theme';
|
|
5
3
|
import { User } from './User';
|
|
4
|
+
import { Website } from './Website';
|
|
5
|
+
import { ThemeBranch } from './ThemeBranch';
|
|
6
6
|
import { Aggregate } from './Aggregate';
|
|
7
7
|
export declare const AgentThreadEntityName = "AgentThread";
|
|
8
8
|
export declare const AgentThreadEntityLabel = "";
|
|
@@ -14,8 +14,8 @@ export interface AgentThread {
|
|
|
14
14
|
createdAt?: Date;
|
|
15
15
|
updatedAt?: Date;
|
|
16
16
|
runs?: AgentRun[];
|
|
17
|
-
website?: Website;
|
|
18
|
-
theme?: Theme;
|
|
19
17
|
user?: User;
|
|
18
|
+
website?: Website;
|
|
19
|
+
themeBranch?: ThemeBranch;
|
|
20
20
|
runsAggregate?: Aggregate;
|
|
21
21
|
}
|
|
@@ -2,9 +2,9 @@ import { IdComparisonExp } from './IdComparisonExp';
|
|
|
2
2
|
import { StringComparisonExp } from './StringComparisonExp';
|
|
3
3
|
import { DateTimeComparisonExp } from './DateTimeComparisonExp';
|
|
4
4
|
import { AgentRunBoolExp } from './AgentRunBoolExp';
|
|
5
|
-
import { WebsiteBoolExp } from './WebsiteBoolExp';
|
|
6
|
-
import { ThemeBoolExp } from './ThemeBoolExp';
|
|
7
5
|
import { UserBoolExp } from './UserBoolExp';
|
|
6
|
+
import { WebsiteBoolExp } from './WebsiteBoolExp';
|
|
7
|
+
import { ThemeBranchBoolExp } from './ThemeBranchBoolExp';
|
|
8
8
|
export interface AgentThreadBoolExp {
|
|
9
9
|
_and?: AgentThreadBoolExp[];
|
|
10
10
|
_or?: AgentThreadBoolExp[];
|
|
@@ -16,7 +16,7 @@ export interface AgentThreadBoolExp {
|
|
|
16
16
|
createdAt?: DateTimeComparisonExp;
|
|
17
17
|
updatedAt?: DateTimeComparisonExp;
|
|
18
18
|
runs?: AgentRunBoolExp;
|
|
19
|
-
website?: WebsiteBoolExp;
|
|
20
|
-
theme?: ThemeBoolExp;
|
|
21
19
|
user?: UserBoolExp;
|
|
20
|
+
website?: WebsiteBoolExp;
|
|
21
|
+
themeBranch?: ThemeBranchBoolExp;
|
|
22
22
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { AgentThread } from './AgentThread';
|
|
2
2
|
import { AgentError } from './AgentError';
|
|
3
3
|
import { AgentRunInput } from './AgentRunInput';
|
|
4
|
-
import { WebsiteInput } from './WebsiteInput';
|
|
5
|
-
import { ThemeInput } from './ThemeInput';
|
|
6
4
|
import { UserInput } from './UserInput';
|
|
5
|
+
import { WebsiteInput } from './WebsiteInput';
|
|
6
|
+
import { ThemeBranchInput } from './ThemeBranchInput';
|
|
7
7
|
import { SetHasMany } from '@rxdrag/entify-lib';
|
|
8
8
|
import { SetHasOne } from '@rxdrag/entify-lib';
|
|
9
9
|
export interface AgentThreadInput {
|
|
@@ -14,9 +14,9 @@ export interface AgentThreadInput {
|
|
|
14
14
|
createdAt?: Date;
|
|
15
15
|
updatedAt?: Date;
|
|
16
16
|
runs?: SetHasMany<AgentRunInput>;
|
|
17
|
-
website?: SetHasOne<WebsiteInput>;
|
|
18
|
-
theme?: SetHasOne<ThemeInput>;
|
|
19
17
|
user?: SetHasOne<UserInput>;
|
|
18
|
+
website?: SetHasOne<WebsiteInput>;
|
|
19
|
+
themeBranch?: SetHasOne<ThemeBranchInput>;
|
|
20
20
|
}
|
|
21
21
|
export declare const agentThreadToInputCascade: (entity: AgentThread) => AgentThreadInput;
|
|
22
22
|
export declare const agentThreadToInput: (entity: AgentThread) => AgentThreadInput;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ThemeBranch } from './ThemeBranch';
|
|
2
2
|
import { Media } from './Media';
|
|
3
|
-
import { AgentThread } from './AgentThread';
|
|
4
3
|
import { ThemeCategory } from './ThemeCategory';
|
|
5
4
|
import { Aggregate } from './Aggregate';
|
|
6
5
|
export declare const ThemeEntityName = "Theme";
|
|
@@ -14,8 +13,6 @@ export interface Theme {
|
|
|
14
13
|
seqValue?: boolean;
|
|
15
14
|
branches?: ThemeBranch[];
|
|
16
15
|
cover?: Media;
|
|
17
|
-
agentThreads?: AgentThread[];
|
|
18
16
|
category?: ThemeCategory;
|
|
19
17
|
branchesAggregate?: Aggregate;
|
|
20
|
-
agentThreadsAggregate?: Aggregate;
|
|
21
18
|
}
|
|
@@ -4,7 +4,6 @@ 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';
|
|
8
7
|
import { ThemeCategoryBoolExp } from './ThemeCategoryBoolExp';
|
|
9
8
|
export interface ThemeBoolExp {
|
|
10
9
|
_and?: ThemeBoolExp[];
|
|
@@ -18,6 +17,5 @@ export interface ThemeBoolExp {
|
|
|
18
17
|
seqValue?: BooleanComparisonExp;
|
|
19
18
|
branches?: ThemeBranchBoolExp;
|
|
20
19
|
cover?: MediaBoolExp;
|
|
21
|
-
agentThreads?: AgentThreadBoolExp;
|
|
22
20
|
category?: ThemeCategoryBoolExp;
|
|
23
21
|
}
|
|
@@ -8,6 +8,7 @@ import { StyleConfig } from './StyleConfig';
|
|
|
8
8
|
import { Website } from './Website';
|
|
9
9
|
import { ThemeFile } from './ThemeFile';
|
|
10
10
|
import { ThemeFileFolder } from './ThemeFileFolder';
|
|
11
|
+
import { AgentThread } from './AgentThread';
|
|
11
12
|
import { ThemeVersion } from './ThemeVersion';
|
|
12
13
|
import { Theme } from './Theme';
|
|
13
14
|
import { Aggregate } from './Aggregate';
|
|
@@ -35,6 +36,7 @@ export interface ThemeBranch {
|
|
|
35
36
|
mockWebsite?: Website;
|
|
36
37
|
files?: ThemeFile[];
|
|
37
38
|
folders?: ThemeFileFolder[];
|
|
39
|
+
agentThreads?: AgentThread[];
|
|
38
40
|
marketVersion?: ThemeVersion;
|
|
39
41
|
website?: Website;
|
|
40
42
|
belongsToMain?: Theme;
|
|
@@ -43,4 +45,5 @@ export interface ThemeBranch {
|
|
|
43
45
|
pagesAggregate?: Aggregate;
|
|
44
46
|
filesAggregate?: Aggregate;
|
|
45
47
|
foldersAggregate?: Aggregate;
|
|
48
|
+
agentThreadsAggregate?: Aggregate;
|
|
46
49
|
}
|
|
@@ -10,6 +10,7 @@ import { StyleConfigBoolExp } from './StyleConfigBoolExp';
|
|
|
10
10
|
import { WebsiteBoolExp } from './WebsiteBoolExp';
|
|
11
11
|
import { ThemeFileBoolExp } from './ThemeFileBoolExp';
|
|
12
12
|
import { ThemeFileFolderBoolExp } from './ThemeFileFolderBoolExp';
|
|
13
|
+
import { AgentThreadBoolExp } from './AgentThreadBoolExp';
|
|
13
14
|
import { ThemeVersionBoolExp } from './ThemeVersionBoolExp';
|
|
14
15
|
import { ThemeBoolExp } from './ThemeBoolExp';
|
|
15
16
|
export interface ThemeBranchBoolExp {
|
|
@@ -34,6 +35,7 @@ export interface ThemeBranchBoolExp {
|
|
|
34
35
|
mockWebsite?: WebsiteBoolExp;
|
|
35
36
|
files?: ThemeFileBoolExp;
|
|
36
37
|
folders?: ThemeFileFolderBoolExp;
|
|
38
|
+
agentThreads?: AgentThreadBoolExp;
|
|
37
39
|
marketVersion?: ThemeVersionBoolExp;
|
|
38
40
|
website?: WebsiteBoolExp;
|
|
39
41
|
belongsToMain?: ThemeBoolExp;
|
|
@@ -9,6 +9,7 @@ import { StyleConfigInput } from './StyleConfigInput';
|
|
|
9
9
|
import { WebsiteInput } from './WebsiteInput';
|
|
10
10
|
import { ThemeFileInput } from './ThemeFileInput';
|
|
11
11
|
import { ThemeFileFolderInput } from './ThemeFileFolderInput';
|
|
12
|
+
import { AgentThreadInput } from './AgentThreadInput';
|
|
12
13
|
import { ThemeVersionInput } from './ThemeVersionInput';
|
|
13
14
|
import { ThemeInput } from './ThemeInput';
|
|
14
15
|
import { SetHasMany } from '@rxdrag/entify-lib';
|
|
@@ -35,6 +36,7 @@ export interface ThemeBranchInput {
|
|
|
35
36
|
mockWebsite?: SetHasOne<WebsiteInput>;
|
|
36
37
|
files?: SetHasMany<ThemeFileInput>;
|
|
37
38
|
folders?: SetHasMany<ThemeFileFolderInput>;
|
|
39
|
+
agentThreads?: SetHasMany<AgentThreadInput>;
|
|
38
40
|
marketVersion?: SetHasOne<ThemeVersionInput>;
|
|
39
41
|
website?: SetHasOne<WebsiteInput>;
|
|
40
42
|
belongsToMain?: SetHasOne<ThemeInput>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Theme } from './Theme';
|
|
2
2
|
import { ThemeBranchInput } from './ThemeBranchInput';
|
|
3
3
|
import { MediaInput } from './MediaInput';
|
|
4
|
-
import { AgentThreadInput } from './AgentThreadInput';
|
|
5
4
|
import { ThemeCategoryInput } from './ThemeCategoryInput';
|
|
6
5
|
import { SetHasMany } from '@rxdrag/entify-lib';
|
|
7
6
|
import { SetHasOne } from '@rxdrag/entify-lib';
|
|
@@ -14,7 +13,6 @@ export interface ThemeInput {
|
|
|
14
13
|
seqValue?: boolean;
|
|
15
14
|
branches?: SetHasMany<ThemeBranchInput>;
|
|
16
15
|
cover?: SetHasOne<MediaInput>;
|
|
17
|
-
agentThreads?: SetHasMany<AgentThreadInput>;
|
|
18
16
|
category?: SetHasOne<ThemeCategoryInput>;
|
|
19
17
|
}
|
|
20
18
|
export declare const themeToInputCascade: (entity: Theme) => ThemeInput;
|
|
@@ -318,16 +318,16 @@ export * from './AgentThreadInput';
|
|
|
318
318
|
export * from './AgentThreadBoolExp';
|
|
319
319
|
export * from './AgentThreadOrderBy';
|
|
320
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
321
|
export * from './AgentRun';
|
|
327
322
|
export * from './AgentRunInput';
|
|
328
323
|
export * from './AgentRunBoolExp';
|
|
329
324
|
export * from './AgentRunOrderBy';
|
|
330
325
|
export * from './AgentRunDistinctExp';
|
|
326
|
+
export * from './AgentTimelineItem';
|
|
327
|
+
export * from './AgentTimelineItemInput';
|
|
328
|
+
export * from './AgentTimelineItemBoolExp';
|
|
329
|
+
export * from './AgentTimelineItemOrderBy';
|
|
330
|
+
export * from './AgentTimelineItemDistinctExp';
|
|
331
331
|
export * from './ModelInfo';
|
|
332
332
|
export * from './AgentRunUsage';
|
|
333
333
|
export * from './AgentError';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdrag/rxcms-models",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.100",
|
|
4
4
|
"main": "dist/index.mjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"files": [
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"eslint": "^9.39.2",
|
|
14
14
|
"typescript": "^5",
|
|
15
|
-
"@rxdrag/
|
|
16
|
-
"@rxdrag/
|
|
15
|
+
"@rxdrag/tsconfig": "0.2.1",
|
|
16
|
+
"@rxdrag/eslint-config-custom": "0.2.13"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@rxdrag/entify-lib": "0.0.24"
|