@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
|
@@ -4,12 +4,12 @@ import { AgentThread, AgentThreadBoolExp, AgentThreadDistinctExp, AgentThreadOrd
|
|
|
4
4
|
import { AgentRunQueryOptions } from './AgentRunQueryOptions';
|
|
5
5
|
import { AgentRun } from '../interfaces';
|
|
6
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
7
|
import { UserQueryOptions } from './UserQueryOptions';
|
|
12
8
|
import { User } from '../interfaces';
|
|
9
|
+
import { WebsiteQueryOptions } from './WebsiteQueryOptions';
|
|
10
|
+
import { Website } from '../interfaces';
|
|
11
|
+
import { ThemeBranchQueryOptions } from './ThemeBranchQueryOptions';
|
|
12
|
+
import { ThemeBranch } from '../interfaces';
|
|
13
13
|
export declare class AgentThreadQueryOptions extends QueryOptions<AgentThread, AgentThreadBoolExp, AgentThreadOrderBy, AgentThreadDistinctExp> {
|
|
14
14
|
constructor(fields?: (keyof AgentThread)[], queryArgs?: IQueryArgs<AgentThreadBoolExp, AgentThreadOrderBy, AgentThreadDistinctExp>);
|
|
15
15
|
id(): this;
|
|
@@ -20,7 +20,7 @@ export declare class AgentThreadQueryOptions extends QueryOptions<AgentThread, A
|
|
|
20
20
|
updatedAt(): this;
|
|
21
21
|
runs(options?: AgentRunQueryOptions | (keyof AgentRun)[]): this;
|
|
22
22
|
runsAggregate(aggregate: IAggregate<AgentRunBoolExp>): this;
|
|
23
|
-
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
24
|
-
theme(options?: ThemeQueryOptions | (keyof Theme)[]): this;
|
|
25
23
|
user(options?: UserQueryOptions | (keyof User)[]): this;
|
|
24
|
+
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
25
|
+
themeBranch(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
26
26
|
}
|
|
@@ -24,6 +24,9 @@ import { ThemeFileBoolExp } from '../interfaces';
|
|
|
24
24
|
import { ThemeFileFolderQueryOptions } from './ThemeFileFolderQueryOptions';
|
|
25
25
|
import { ThemeFileFolder } from '../interfaces';
|
|
26
26
|
import { ThemeFileFolderBoolExp } from '../interfaces';
|
|
27
|
+
import { AgentThreadQueryOptions } from './AgentThreadQueryOptions';
|
|
28
|
+
import { AgentThread } from '../interfaces';
|
|
29
|
+
import { AgentThreadBoolExp } from '../interfaces';
|
|
27
30
|
import { ThemeVersionQueryOptions } from './ThemeVersionQueryOptions';
|
|
28
31
|
import { ThemeVersion } from '../interfaces';
|
|
29
32
|
import { ThemeQueryOptions } from './ThemeQueryOptions';
|
|
@@ -56,6 +59,8 @@ export declare class ThemeBranchQueryOptions extends QueryOptions<ThemeBranch, T
|
|
|
56
59
|
filesAggregate(aggregate: IAggregate<ThemeFileBoolExp>): this;
|
|
57
60
|
folders(options?: ThemeFileFolderQueryOptions | (keyof ThemeFileFolder)[]): this;
|
|
58
61
|
foldersAggregate(aggregate: IAggregate<ThemeFileFolderBoolExp>): this;
|
|
62
|
+
agentThreads(options?: AgentThreadQueryOptions | (keyof AgentThread)[]): this;
|
|
63
|
+
agentThreadsAggregate(aggregate: IAggregate<AgentThreadBoolExp>): this;
|
|
59
64
|
marketVersion(options?: ThemeVersionQueryOptions | (keyof ThemeVersion)[]): this;
|
|
60
65
|
website(options?: WebsiteQueryOptions | (keyof Website)[]): this;
|
|
61
66
|
belongsToMain(options?: ThemeQueryOptions | (keyof Theme)[]): this;
|
|
@@ -6,9 +6,6 @@ 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';
|
|
12
9
|
import { ThemeCategoryQueryOptions } from './ThemeCategoryQueryOptions';
|
|
13
10
|
import { ThemeCategory } from '../interfaces';
|
|
14
11
|
export declare class ThemeQueryOptions extends QueryOptions<Theme, ThemeBoolExp, ThemeOrderBy, ThemeDistinctExp> {
|
|
@@ -22,7 +19,5 @@ export declare class ThemeQueryOptions extends QueryOptions<Theme, ThemeBoolExp,
|
|
|
22
19
|
branches(options?: ThemeBranchQueryOptions | (keyof ThemeBranch)[]): this;
|
|
23
20
|
branchesAggregate(aggregate: IAggregate<ThemeBranchBoolExp>): this;
|
|
24
21
|
cover(options?: MediaQueryOptions | (keyof Media)[]): this;
|
|
25
|
-
agentThreads(options?: AgentThreadQueryOptions | (keyof AgentThread)[]): this;
|
|
26
|
-
agentThreadsAggregate(aggregate: IAggregate<AgentThreadBoolExp>): this;
|
|
27
22
|
category(options?: ThemeCategoryQueryOptions | (keyof ThemeCategory)[]): this;
|
|
28
23
|
}
|
package/dist/classes/index.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export * from './ThemeFileQueryOptions';
|
|
|
47
47
|
export * from './ThemeFileFolderQueryOptions';
|
|
48
48
|
export * from './TagCategoryQueryOptions';
|
|
49
49
|
export * from './AgentThreadQueryOptions';
|
|
50
|
-
export * from './AgentTimelineItemQueryOptions';
|
|
51
50
|
export * from './AgentRunQueryOptions';
|
|
51
|
+
export * from './AgentTimelineItemQueryOptions';
|
|
52
52
|
export * from './QueryOptions';
|
|
53
53
|
export * from './metainfo';
|
package/dist/entries/index.d.ts
CHANGED
|
@@ -47,5 +47,5 @@ export * from './themeFileEntry';
|
|
|
47
47
|
export * from './themeFileFolderEntry';
|
|
48
48
|
export * from './tagCategoryEntry';
|
|
49
49
|
export * from './agentThreadEntry';
|
|
50
|
-
export * from './agentTimelineItemEntry';
|
|
51
50
|
export * from './agentRunEntry';
|
|
51
|
+
export * from './agentTimelineItemEntry';
|
|
@@ -27,6 +27,8 @@ export declare enum ThemeBranchAssciations {
|
|
|
27
27
|
filesAggregate = "filesAggregate",
|
|
28
28
|
folders = "folders",
|
|
29
29
|
foldersAggregate = "foldersAggregate",
|
|
30
|
+
agentThreads = "agentThreads",
|
|
31
|
+
agentThreadsAggregate = "agentThreadsAggregate",
|
|
30
32
|
marketVersion = "marketVersion",
|
|
31
33
|
website = "website",
|
|
32
34
|
belongsToMain = "belongsToMain"
|
package/dist/fields/index.d.ts
CHANGED
|
@@ -47,5 +47,5 @@ export * from './ThemeFileFields';
|
|
|
47
47
|
export * from './ThemeFileFolderFields';
|
|
48
48
|
export * from './TagCategoryFields';
|
|
49
49
|
export * from './AgentThreadFields';
|
|
50
|
-
export * from './AgentTimelineItemFields';
|
|
51
50
|
export * from './AgentRunFields';
|
|
51
|
+
export * from './AgentTimelineItemFields';
|
package/dist/index.mjs
CHANGED
|
@@ -92,7 +92,8 @@ const aggregateEntities = {
|
|
|
92
92
|
componentCategoriesAggregate: "ComponentCategory",
|
|
93
93
|
pagesAggregate: "Page",
|
|
94
94
|
filesAggregate: "ThemeFile",
|
|
95
|
-
foldersAggregate: "ThemeFileFolder"
|
|
95
|
+
foldersAggregate: "ThemeFileFolder",
|
|
96
|
+
agentThreadsAggregate: "AgentThread"
|
|
96
97
|
},
|
|
97
98
|
MediaFolder: {
|
|
98
99
|
childrenAggregate: "MediaFolder",
|
|
@@ -126,8 +127,7 @@ const aggregateEntities = {
|
|
|
126
127
|
mediasAggregate: "Media"
|
|
127
128
|
},
|
|
128
129
|
Theme: {
|
|
129
|
-
branchesAggregate: "ThemeBranch"
|
|
130
|
-
agentThreadsAggregate: "AgentThread"
|
|
130
|
+
branchesAggregate: "ThemeBranch"
|
|
131
131
|
},
|
|
132
132
|
ThemeFileFolder: {
|
|
133
133
|
foldersAggregate: "ThemeFileFolder",
|
|
@@ -468,35 +468,6 @@ const themeFileToInput = (entity) => {
|
|
|
468
468
|
folder: convertHasOneToInput(entity.folder)
|
|
469
469
|
};
|
|
470
470
|
};
|
|
471
|
-
const themeInMarketToInputCascade = (entity) => {
|
|
472
|
-
var _a;
|
|
473
|
-
const { versionsAggregate, ...rest } = entity;
|
|
474
|
-
return {
|
|
475
|
-
...rest,
|
|
476
|
-
versions: entity.versions ? processHasManyClear({ sync: (_a = entity.versions) == null ? void 0 : _a.map((ent) => themeVersionToInput(ent)) }) : void 0
|
|
477
|
-
};
|
|
478
|
-
};
|
|
479
|
-
const themeInMarketToInput = (entity) => {
|
|
480
|
-
const { versionsAggregate, ...rest } = entity;
|
|
481
|
-
return {
|
|
482
|
-
...rest,
|
|
483
|
-
versions: convertHasManyToInput(entity.versions)
|
|
484
|
-
};
|
|
485
|
-
};
|
|
486
|
-
const themeVersionToInputCascade = (entity) => {
|
|
487
|
-
return {
|
|
488
|
-
...entity,
|
|
489
|
-
theme: entity.theme ? processHasOneClear({ sync: themeBranchToInput(entity.theme) }) : void 0,
|
|
490
|
-
themeInMarket: entity.themeInMarket ? processHasOneClear({ sync: themeInMarketToInput(entity.themeInMarket) }) : void 0
|
|
491
|
-
};
|
|
492
|
-
};
|
|
493
|
-
const themeVersionToInput = (entity) => {
|
|
494
|
-
return {
|
|
495
|
-
...entity,
|
|
496
|
-
theme: convertHasOneToInput(entity.theme),
|
|
497
|
-
themeInMarket: convertHasOneToInput(entity.themeInMarket)
|
|
498
|
-
};
|
|
499
|
-
};
|
|
500
471
|
const agentTimelineItemToInputCascade = (entity) => {
|
|
501
472
|
return {
|
|
502
473
|
...entity,
|
|
@@ -532,9 +503,9 @@ const agentThreadToInputCascade = (entity) => {
|
|
|
532
503
|
return {
|
|
533
504
|
...rest,
|
|
534
505
|
runs: entity.runs ? processHasManyClear({ sync: (_a = entity.runs) == null ? void 0 : _a.map((ent) => agentRunToInput(ent)) }) : void 0,
|
|
506
|
+
user: entity.user ? processHasOneClear({ sync: userToInput(entity.user) }) : void 0,
|
|
535
507
|
website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0,
|
|
536
|
-
|
|
537
|
-
user: entity.user ? processHasOneClear({ sync: userToInput(entity.user) }) : void 0
|
|
508
|
+
themeBranch: entity.themeBranch ? processHasOneClear({ sync: themeBranchToInput(entity.themeBranch) }) : void 0
|
|
538
509
|
};
|
|
539
510
|
};
|
|
540
511
|
const agentThreadToInput = (entity) => {
|
|
@@ -542,9 +513,38 @@ const agentThreadToInput = (entity) => {
|
|
|
542
513
|
return {
|
|
543
514
|
...rest,
|
|
544
515
|
runs: convertHasManyToInput(entity.runs),
|
|
516
|
+
user: convertHasOneToInput(entity.user),
|
|
545
517
|
website: convertHasOneToInput(entity.website),
|
|
518
|
+
themeBranch: convertHasOneToInput(entity.themeBranch)
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
const themeInMarketToInputCascade = (entity) => {
|
|
522
|
+
var _a;
|
|
523
|
+
const { versionsAggregate, ...rest } = entity;
|
|
524
|
+
return {
|
|
525
|
+
...rest,
|
|
526
|
+
versions: entity.versions ? processHasManyClear({ sync: (_a = entity.versions) == null ? void 0 : _a.map((ent) => themeVersionToInput(ent)) }) : void 0
|
|
527
|
+
};
|
|
528
|
+
};
|
|
529
|
+
const themeInMarketToInput = (entity) => {
|
|
530
|
+
const { versionsAggregate, ...rest } = entity;
|
|
531
|
+
return {
|
|
532
|
+
...rest,
|
|
533
|
+
versions: convertHasManyToInput(entity.versions)
|
|
534
|
+
};
|
|
535
|
+
};
|
|
536
|
+
const themeVersionToInputCascade = (entity) => {
|
|
537
|
+
return {
|
|
538
|
+
...entity,
|
|
539
|
+
theme: entity.theme ? processHasOneClear({ sync: themeBranchToInput(entity.theme) }) : void 0,
|
|
540
|
+
themeInMarket: entity.themeInMarket ? processHasOneClear({ sync: themeInMarketToInput(entity.themeInMarket) }) : void 0
|
|
541
|
+
};
|
|
542
|
+
};
|
|
543
|
+
const themeVersionToInput = (entity) => {
|
|
544
|
+
return {
|
|
545
|
+
...entity,
|
|
546
546
|
theme: convertHasOneToInput(entity.theme),
|
|
547
|
-
|
|
547
|
+
themeInMarket: convertHasOneToInput(entity.themeInMarket)
|
|
548
548
|
};
|
|
549
549
|
};
|
|
550
550
|
const themeCategoryToInputCascade = (entity) => {
|
|
@@ -563,29 +563,27 @@ const themeCategoryToInput = (entity) => {
|
|
|
563
563
|
};
|
|
564
564
|
};
|
|
565
565
|
const themeToInputCascade = (entity) => {
|
|
566
|
-
var _a
|
|
567
|
-
const { branchesAggregate,
|
|
566
|
+
var _a;
|
|
567
|
+
const { branchesAggregate, ...rest } = entity;
|
|
568
568
|
return {
|
|
569
569
|
...rest,
|
|
570
570
|
branches: entity.branches ? processHasManyClear({ sync: (_a = entity.branches) == null ? void 0 : _a.map((ent) => themeBranchToInput(ent)) }) : void 0,
|
|
571
571
|
cover: entity.cover ? processHasOneClear({ sync: mediaToInput(entity.cover) }) : void 0,
|
|
572
|
-
agentThreads: entity.agentThreads ? processHasManyClear({ sync: (_b = entity.agentThreads) == null ? void 0 : _b.map((ent) => agentThreadToInput(ent)) }) : void 0,
|
|
573
572
|
category: entity.category ? processHasOneClear({ sync: themeCategoryToInput(entity.category) }) : void 0
|
|
574
573
|
};
|
|
575
574
|
};
|
|
576
575
|
const themeToInput = (entity) => {
|
|
577
|
-
const { branchesAggregate,
|
|
576
|
+
const { branchesAggregate, ...rest } = entity;
|
|
578
577
|
return {
|
|
579
578
|
...rest,
|
|
580
579
|
branches: convertHasManyToInput(entity.branches),
|
|
581
580
|
cover: convertHasOneToInput(entity.cover),
|
|
582
|
-
agentThreads: convertHasManyToInput(entity.agentThreads),
|
|
583
581
|
category: convertHasOneToInput(entity.category)
|
|
584
582
|
};
|
|
585
583
|
};
|
|
586
584
|
const themeBranchToInputCascade = (entity) => {
|
|
587
|
-
var _a, _b, _c, _d, _e;
|
|
588
|
-
const { componentsAggregate, componentCategoriesAggregate, pagesAggregate, filesAggregate, foldersAggregate, ...rest } = entity;
|
|
585
|
+
var _a, _b, _c, _d, _e, _f;
|
|
586
|
+
const { componentsAggregate, componentCategoriesAggregate, pagesAggregate, filesAggregate, foldersAggregate, agentThreadsAggregate, ...rest } = entity;
|
|
589
587
|
return {
|
|
590
588
|
...rest,
|
|
591
589
|
components: entity.components ? processHasManyClear({ sync: (_a = entity.components) == null ? void 0 : _a.map((ent) => frontComponentToInput(ent)) }) : void 0,
|
|
@@ -597,13 +595,14 @@ const themeBranchToInputCascade = (entity) => {
|
|
|
597
595
|
mockWebsite: entity.mockWebsite ? processHasOneClear({ sync: websiteToInput(entity.mockWebsite) }) : void 0,
|
|
598
596
|
files: entity.files ? processHasManyClear({ sync: (_d = entity.files) == null ? void 0 : _d.map((ent) => themeFileToInput(ent)) }) : void 0,
|
|
599
597
|
folders: entity.folders ? processHasManyClear({ sync: (_e = entity.folders) == null ? void 0 : _e.map((ent) => themeFileFolderToInput(ent)) }) : void 0,
|
|
598
|
+
agentThreads: entity.agentThreads ? processHasManyClear({ sync: (_f = entity.agentThreads) == null ? void 0 : _f.map((ent) => agentThreadToInput(ent)) }) : void 0,
|
|
600
599
|
marketVersion: entity.marketVersion ? processHasOneClear({ sync: themeVersionToInput(entity.marketVersion) }) : void 0,
|
|
601
600
|
website: entity.website ? processHasOneClear({ sync: websiteToInput(entity.website) }) : void 0,
|
|
602
601
|
belongsToMain: entity.belongsToMain ? processHasOneClear({ sync: themeToInput(entity.belongsToMain) }) : void 0
|
|
603
602
|
};
|
|
604
603
|
};
|
|
605
604
|
const themeBranchToInput = (entity) => {
|
|
606
|
-
const { componentsAggregate, componentCategoriesAggregate, pagesAggregate, filesAggregate, foldersAggregate, ...rest } = entity;
|
|
605
|
+
const { componentsAggregate, componentCategoriesAggregate, pagesAggregate, filesAggregate, foldersAggregate, agentThreadsAggregate, ...rest } = entity;
|
|
607
606
|
return {
|
|
608
607
|
...rest,
|
|
609
608
|
components: convertHasManyToInput(entity.components),
|
|
@@ -615,6 +614,7 @@ const themeBranchToInput = (entity) => {
|
|
|
615
614
|
mockWebsite: convertHasOneToInput(entity.mockWebsite),
|
|
616
615
|
files: convertHasManyToInput(entity.files),
|
|
617
616
|
folders: convertHasManyToInput(entity.folders),
|
|
617
|
+
agentThreads: convertHasManyToInput(entity.agentThreads),
|
|
618
618
|
marketVersion: convertHasOneToInput(entity.marketVersion),
|
|
619
619
|
website: convertHasOneToInput(entity.website),
|
|
620
620
|
belongsToMain: convertHasOneToInput(entity.belongsToMain)
|
|
@@ -1318,6 +1318,7 @@ var MediaType = /* @__PURE__ */ ((MediaType2) => {
|
|
|
1318
1318
|
MediaType2["image"] = "image";
|
|
1319
1319
|
MediaType2["video"] = "video";
|
|
1320
1320
|
MediaType2["document"] = "document";
|
|
1321
|
+
MediaType2["file"] = "file";
|
|
1321
1322
|
return MediaType2;
|
|
1322
1323
|
})(MediaType || {});
|
|
1323
1324
|
const MailEntityName = "Mail";
|
|
@@ -2183,16 +2184,6 @@ var AgentThreadDistinctEnum = /* @__PURE__ */ ((AgentThreadDistinctEnum2) => {
|
|
|
2183
2184
|
AgentThreadDistinctEnum2["updatedAt"] = "updatedAt";
|
|
2184
2185
|
return AgentThreadDistinctEnum2;
|
|
2185
2186
|
})(AgentThreadDistinctEnum || {});
|
|
2186
|
-
const AgentTimelineItemEntityName = "AgentTimelineItem";
|
|
2187
|
-
const AgentTimelineItemEntityLabel = "";
|
|
2188
|
-
var AgentTimelineItemDistinctEnum = /* @__PURE__ */ ((AgentTimelineItemDistinctEnum2) => {
|
|
2189
|
-
AgentTimelineItemDistinctEnum2["id"] = "id";
|
|
2190
|
-
AgentTimelineItemDistinctEnum2["kind"] = "kind";
|
|
2191
|
-
AgentTimelineItemDistinctEnum2["payload"] = "payload";
|
|
2192
|
-
AgentTimelineItemDistinctEnum2["createdAt"] = "createdAt";
|
|
2193
|
-
AgentTimelineItemDistinctEnum2["updatedAt"] = "updatedAt";
|
|
2194
|
-
return AgentTimelineItemDistinctEnum2;
|
|
2195
|
-
})(AgentTimelineItemDistinctEnum || {});
|
|
2196
2187
|
const AgentRunEntityName = "AgentRun";
|
|
2197
2188
|
const AgentRunEntityLabel = "";
|
|
2198
2189
|
var AgentRunDistinctEnum = /* @__PURE__ */ ((AgentRunDistinctEnum2) => {
|
|
@@ -2205,6 +2196,16 @@ var AgentRunDistinctEnum = /* @__PURE__ */ ((AgentRunDistinctEnum2) => {
|
|
|
2205
2196
|
AgentRunDistinctEnum2["error"] = "error";
|
|
2206
2197
|
return AgentRunDistinctEnum2;
|
|
2207
2198
|
})(AgentRunDistinctEnum || {});
|
|
2199
|
+
const AgentTimelineItemEntityName = "AgentTimelineItem";
|
|
2200
|
+
const AgentTimelineItemEntityLabel = "";
|
|
2201
|
+
var AgentTimelineItemDistinctEnum = /* @__PURE__ */ ((AgentTimelineItemDistinctEnum2) => {
|
|
2202
|
+
AgentTimelineItemDistinctEnum2["id"] = "id";
|
|
2203
|
+
AgentTimelineItemDistinctEnum2["kind"] = "kind";
|
|
2204
|
+
AgentTimelineItemDistinctEnum2["payload"] = "payload";
|
|
2205
|
+
AgentTimelineItemDistinctEnum2["createdAt"] = "createdAt";
|
|
2206
|
+
AgentTimelineItemDistinctEnum2["updatedAt"] = "updatedAt";
|
|
2207
|
+
return AgentTimelineItemDistinctEnum2;
|
|
2208
|
+
})(AgentTimelineItemDistinctEnum || {});
|
|
2208
2209
|
class RoleVariableQueryOptions extends QueryOptions {
|
|
2209
2210
|
constructor(fields, queryArgs) {
|
|
2210
2211
|
super(RoleVariableEntityName, fields, queryArgs);
|
|
@@ -2882,76 +2883,6 @@ class ThemeFileQueryOptions extends QueryOptions {
|
|
|
2882
2883
|
return this;
|
|
2883
2884
|
}
|
|
2884
2885
|
}
|
|
2885
|
-
class ThemeInMarketQueryOptions extends QueryOptions {
|
|
2886
|
-
constructor(fields, queryArgs) {
|
|
2887
|
-
super(ThemeInMarketEntityName, fields, queryArgs);
|
|
2888
|
-
}
|
|
2889
|
-
id() {
|
|
2890
|
-
this.addField("id");
|
|
2891
|
-
return this;
|
|
2892
|
-
}
|
|
2893
|
-
title() {
|
|
2894
|
-
this.addField("title");
|
|
2895
|
-
return this;
|
|
2896
|
-
}
|
|
2897
|
-
description() {
|
|
2898
|
-
this.addField("description");
|
|
2899
|
-
return this;
|
|
2900
|
-
}
|
|
2901
|
-
status() {
|
|
2902
|
-
this.addField("status");
|
|
2903
|
-
return this;
|
|
2904
|
-
}
|
|
2905
|
-
updatedAt() {
|
|
2906
|
-
this.addField("updatedAt");
|
|
2907
|
-
return this;
|
|
2908
|
-
}
|
|
2909
|
-
createdAt() {
|
|
2910
|
-
this.addField("createdAt");
|
|
2911
|
-
return this;
|
|
2912
|
-
}
|
|
2913
|
-
versions(options) {
|
|
2914
|
-
if (Array.isArray(options)) {
|
|
2915
|
-
this._associations["versions"] = new ThemeVersionQueryOptions(options);
|
|
2916
|
-
} else {
|
|
2917
|
-
this._associations["versions"] = options || new ThemeVersionQueryOptions(["id"]);
|
|
2918
|
-
}
|
|
2919
|
-
return this;
|
|
2920
|
-
}
|
|
2921
|
-
versionsAggregate(aggregate) {
|
|
2922
|
-
this._aggregates["versionsAggregate"] = aggregate;
|
|
2923
|
-
return this;
|
|
2924
|
-
}
|
|
2925
|
-
}
|
|
2926
|
-
class ThemeVersionQueryOptions extends QueryOptions {
|
|
2927
|
-
constructor(fields, queryArgs) {
|
|
2928
|
-
super(ThemeVersionEntityName, fields, queryArgs);
|
|
2929
|
-
}
|
|
2930
|
-
id() {
|
|
2931
|
-
this.addField("id");
|
|
2932
|
-
return this;
|
|
2933
|
-
}
|
|
2934
|
-
version() {
|
|
2935
|
-
this.addField("version");
|
|
2936
|
-
return this;
|
|
2937
|
-
}
|
|
2938
|
-
theme(options) {
|
|
2939
|
-
if (Array.isArray(options)) {
|
|
2940
|
-
this._associations["theme"] = new ThemeBranchQueryOptions(options);
|
|
2941
|
-
} else {
|
|
2942
|
-
this._associations["theme"] = options || new ThemeBranchQueryOptions(["id"]);
|
|
2943
|
-
}
|
|
2944
|
-
return this;
|
|
2945
|
-
}
|
|
2946
|
-
themeInMarket(options) {
|
|
2947
|
-
if (Array.isArray(options)) {
|
|
2948
|
-
this._associations["themeInMarket"] = new ThemeInMarketQueryOptions(options);
|
|
2949
|
-
} else {
|
|
2950
|
-
this._associations["themeInMarket"] = options || new ThemeInMarketQueryOptions(["id"]);
|
|
2951
|
-
}
|
|
2952
|
-
return this;
|
|
2953
|
-
}
|
|
2954
|
-
}
|
|
2955
2886
|
class AgentTimelineItemQueryOptions extends QueryOptions {
|
|
2956
2887
|
constructor(fields, queryArgs) {
|
|
2957
2888
|
super(AgentTimelineItemEntityName, fields, queryArgs);
|
|
@@ -3078,6 +3009,14 @@ class AgentThreadQueryOptions extends QueryOptions {
|
|
|
3078
3009
|
this._aggregates["runsAggregate"] = aggregate;
|
|
3079
3010
|
return this;
|
|
3080
3011
|
}
|
|
3012
|
+
user(options) {
|
|
3013
|
+
if (Array.isArray(options)) {
|
|
3014
|
+
this._associations["user"] = new UserQueryOptions(options);
|
|
3015
|
+
} else {
|
|
3016
|
+
this._associations["user"] = options || new UserQueryOptions(["id"]);
|
|
3017
|
+
}
|
|
3018
|
+
return this;
|
|
3019
|
+
}
|
|
3081
3020
|
website(options) {
|
|
3082
3021
|
if (Array.isArray(options)) {
|
|
3083
3022
|
this._associations["website"] = new WebsiteQueryOptions(options);
|
|
@@ -3086,19 +3025,81 @@ class AgentThreadQueryOptions extends QueryOptions {
|
|
|
3086
3025
|
}
|
|
3087
3026
|
return this;
|
|
3088
3027
|
}
|
|
3028
|
+
themeBranch(options) {
|
|
3029
|
+
if (Array.isArray(options)) {
|
|
3030
|
+
this._associations["themeBranch"] = new ThemeBranchQueryOptions(options);
|
|
3031
|
+
} else {
|
|
3032
|
+
this._associations["themeBranch"] = options || new ThemeBranchQueryOptions(["id"]);
|
|
3033
|
+
}
|
|
3034
|
+
return this;
|
|
3035
|
+
}
|
|
3036
|
+
}
|
|
3037
|
+
class ThemeInMarketQueryOptions extends QueryOptions {
|
|
3038
|
+
constructor(fields, queryArgs) {
|
|
3039
|
+
super(ThemeInMarketEntityName, fields, queryArgs);
|
|
3040
|
+
}
|
|
3041
|
+
id() {
|
|
3042
|
+
this.addField("id");
|
|
3043
|
+
return this;
|
|
3044
|
+
}
|
|
3045
|
+
title() {
|
|
3046
|
+
this.addField("title");
|
|
3047
|
+
return this;
|
|
3048
|
+
}
|
|
3049
|
+
description() {
|
|
3050
|
+
this.addField("description");
|
|
3051
|
+
return this;
|
|
3052
|
+
}
|
|
3053
|
+
status() {
|
|
3054
|
+
this.addField("status");
|
|
3055
|
+
return this;
|
|
3056
|
+
}
|
|
3057
|
+
updatedAt() {
|
|
3058
|
+
this.addField("updatedAt");
|
|
3059
|
+
return this;
|
|
3060
|
+
}
|
|
3061
|
+
createdAt() {
|
|
3062
|
+
this.addField("createdAt");
|
|
3063
|
+
return this;
|
|
3064
|
+
}
|
|
3065
|
+
versions(options) {
|
|
3066
|
+
if (Array.isArray(options)) {
|
|
3067
|
+
this._associations["versions"] = new ThemeVersionQueryOptions(options);
|
|
3068
|
+
} else {
|
|
3069
|
+
this._associations["versions"] = options || new ThemeVersionQueryOptions(["id"]);
|
|
3070
|
+
}
|
|
3071
|
+
return this;
|
|
3072
|
+
}
|
|
3073
|
+
versionsAggregate(aggregate) {
|
|
3074
|
+
this._aggregates["versionsAggregate"] = aggregate;
|
|
3075
|
+
return this;
|
|
3076
|
+
}
|
|
3077
|
+
}
|
|
3078
|
+
class ThemeVersionQueryOptions extends QueryOptions {
|
|
3079
|
+
constructor(fields, queryArgs) {
|
|
3080
|
+
super(ThemeVersionEntityName, fields, queryArgs);
|
|
3081
|
+
}
|
|
3082
|
+
id() {
|
|
3083
|
+
this.addField("id");
|
|
3084
|
+
return this;
|
|
3085
|
+
}
|
|
3086
|
+
version() {
|
|
3087
|
+
this.addField("version");
|
|
3088
|
+
return this;
|
|
3089
|
+
}
|
|
3089
3090
|
theme(options) {
|
|
3090
3091
|
if (Array.isArray(options)) {
|
|
3091
|
-
this._associations["theme"] = new
|
|
3092
|
+
this._associations["theme"] = new ThemeBranchQueryOptions(options);
|
|
3092
3093
|
} else {
|
|
3093
|
-
this._associations["theme"] = options || new
|
|
3094
|
+
this._associations["theme"] = options || new ThemeBranchQueryOptions(["id"]);
|
|
3094
3095
|
}
|
|
3095
3096
|
return this;
|
|
3096
3097
|
}
|
|
3097
|
-
|
|
3098
|
+
themeInMarket(options) {
|
|
3098
3099
|
if (Array.isArray(options)) {
|
|
3099
|
-
this._associations["
|
|
3100
|
+
this._associations["themeInMarket"] = new ThemeInMarketQueryOptions(options);
|
|
3100
3101
|
} else {
|
|
3101
|
-
this._associations["
|
|
3102
|
+
this._associations["themeInMarket"] = options || new ThemeInMarketQueryOptions(["id"]);
|
|
3102
3103
|
}
|
|
3103
3104
|
return this;
|
|
3104
3105
|
}
|
|
@@ -3192,18 +3193,6 @@ class ThemeQueryOptions extends QueryOptions {
|
|
|
3192
3193
|
}
|
|
3193
3194
|
return this;
|
|
3194
3195
|
}
|
|
3195
|
-
agentThreads(options) {
|
|
3196
|
-
if (Array.isArray(options)) {
|
|
3197
|
-
this._associations["agentThreads"] = new AgentThreadQueryOptions(options);
|
|
3198
|
-
} else {
|
|
3199
|
-
this._associations["agentThreads"] = options || new AgentThreadQueryOptions(["id"]);
|
|
3200
|
-
}
|
|
3201
|
-
return this;
|
|
3202
|
-
}
|
|
3203
|
-
agentThreadsAggregate(aggregate) {
|
|
3204
|
-
this._aggregates["agentThreadsAggregate"] = aggregate;
|
|
3205
|
-
return this;
|
|
3206
|
-
}
|
|
3207
3196
|
category(options) {
|
|
3208
3197
|
if (Array.isArray(options)) {
|
|
3209
3198
|
this._associations["category"] = new ThemeCategoryQueryOptions(options);
|
|
@@ -3348,6 +3337,18 @@ class ThemeBranchQueryOptions extends QueryOptions {
|
|
|
3348
3337
|
this._aggregates["foldersAggregate"] = aggregate;
|
|
3349
3338
|
return this;
|
|
3350
3339
|
}
|
|
3340
|
+
agentThreads(options) {
|
|
3341
|
+
if (Array.isArray(options)) {
|
|
3342
|
+
this._associations["agentThreads"] = new AgentThreadQueryOptions(options);
|
|
3343
|
+
} else {
|
|
3344
|
+
this._associations["agentThreads"] = options || new AgentThreadQueryOptions(["id"]);
|
|
3345
|
+
}
|
|
3346
|
+
return this;
|
|
3347
|
+
}
|
|
3348
|
+
agentThreadsAggregate(aggregate) {
|
|
3349
|
+
this._aggregates["agentThreadsAggregate"] = aggregate;
|
|
3350
|
+
return this;
|
|
3351
|
+
}
|
|
3351
3352
|
marketVersion(options) {
|
|
3352
3353
|
if (Array.isArray(options)) {
|
|
3353
3354
|
this._associations["marketVersion"] = new ThemeVersionQueryOptions(options);
|
|
@@ -6563,16 +6564,16 @@ const agentThreadEntry = {
|
|
|
6563
6564
|
entityLabel: AgentThreadEntityLabel,
|
|
6564
6565
|
toInput: agentThreadToInput
|
|
6565
6566
|
};
|
|
6566
|
-
const agentTimelineItemEntry = {
|
|
6567
|
-
entityName: AgentTimelineItemEntityName,
|
|
6568
|
-
entityLabel: AgentTimelineItemEntityLabel,
|
|
6569
|
-
toInput: agentTimelineItemToInput
|
|
6570
|
-
};
|
|
6571
6567
|
const agentRunEntry = {
|
|
6572
6568
|
entityName: AgentRunEntityName,
|
|
6573
6569
|
entityLabel: AgentRunEntityLabel,
|
|
6574
6570
|
toInput: agentRunToInput
|
|
6575
6571
|
};
|
|
6572
|
+
const agentTimelineItemEntry = {
|
|
6573
|
+
entityName: AgentTimelineItemEntityName,
|
|
6574
|
+
entityLabel: AgentTimelineItemEntityLabel,
|
|
6575
|
+
toInput: agentTimelineItemToInput
|
|
6576
|
+
};
|
|
6576
6577
|
var UserFields = /* @__PURE__ */ ((UserFields2) => {
|
|
6577
6578
|
UserFields2["id"] = "id";
|
|
6578
6579
|
UserFields2["loginName"] = "loginName";
|
|
@@ -7028,6 +7029,8 @@ var ThemeBranchAssciations = /* @__PURE__ */ ((ThemeBranchAssciations2) => {
|
|
|
7028
7029
|
ThemeBranchAssciations2["filesAggregate"] = "filesAggregate";
|
|
7029
7030
|
ThemeBranchAssciations2["folders"] = "folders";
|
|
7030
7031
|
ThemeBranchAssciations2["foldersAggregate"] = "foldersAggregate";
|
|
7032
|
+
ThemeBranchAssciations2["agentThreads"] = "agentThreads";
|
|
7033
|
+
ThemeBranchAssciations2["agentThreadsAggregate"] = "agentThreadsAggregate";
|
|
7031
7034
|
ThemeBranchAssciations2["marketVersion"] = "marketVersion";
|
|
7032
7035
|
ThemeBranchAssciations2["website"] = "website";
|
|
7033
7036
|
ThemeBranchAssciations2["belongsToMain"] = "belongsToMain";
|
|
@@ -7505,8 +7508,6 @@ var ThemeAssciations = /* @__PURE__ */ ((ThemeAssciations2) => {
|
|
|
7505
7508
|
ThemeAssciations2["branches"] = "branches";
|
|
7506
7509
|
ThemeAssciations2["branchesAggregate"] = "branchesAggregate";
|
|
7507
7510
|
ThemeAssciations2["cover"] = "cover";
|
|
7508
|
-
ThemeAssciations2["agentThreads"] = "agentThreads";
|
|
7509
|
-
ThemeAssciations2["agentThreadsAggregate"] = "agentThreadsAggregate";
|
|
7510
7511
|
ThemeAssciations2["category"] = "category";
|
|
7511
7512
|
return ThemeAssciations2;
|
|
7512
7513
|
})(ThemeAssciations || {});
|
|
@@ -7586,23 +7587,11 @@ var AgentThreadFields = /* @__PURE__ */ ((AgentThreadFields2) => {
|
|
|
7586
7587
|
var AgentThreadAssciations = /* @__PURE__ */ ((AgentThreadAssciations2) => {
|
|
7587
7588
|
AgentThreadAssciations2["runs"] = "runs";
|
|
7588
7589
|
AgentThreadAssciations2["runsAggregate"] = "runsAggregate";
|
|
7589
|
-
AgentThreadAssciations2["website"] = "website";
|
|
7590
|
-
AgentThreadAssciations2["theme"] = "theme";
|
|
7591
7590
|
AgentThreadAssciations2["user"] = "user";
|
|
7591
|
+
AgentThreadAssciations2["website"] = "website";
|
|
7592
|
+
AgentThreadAssciations2["themeBranch"] = "themeBranch";
|
|
7592
7593
|
return AgentThreadAssciations2;
|
|
7593
7594
|
})(AgentThreadAssciations || {});
|
|
7594
|
-
var AgentTimelineItemFields = /* @__PURE__ */ ((AgentTimelineItemFields2) => {
|
|
7595
|
-
AgentTimelineItemFields2["id"] = "id";
|
|
7596
|
-
AgentTimelineItemFields2["kind"] = "kind";
|
|
7597
|
-
AgentTimelineItemFields2["payload"] = "payload";
|
|
7598
|
-
AgentTimelineItemFields2["createdAt"] = "createdAt";
|
|
7599
|
-
AgentTimelineItemFields2["updatedAt"] = "updatedAt";
|
|
7600
|
-
return AgentTimelineItemFields2;
|
|
7601
|
-
})(AgentTimelineItemFields || {});
|
|
7602
|
-
var AgentTimelineItemAssciations = /* @__PURE__ */ ((AgentTimelineItemAssciations2) => {
|
|
7603
|
-
AgentTimelineItemAssciations2["run"] = "run";
|
|
7604
|
-
return AgentTimelineItemAssciations2;
|
|
7605
|
-
})(AgentTimelineItemAssciations || {});
|
|
7606
7595
|
var AgentRunFields = /* @__PURE__ */ ((AgentRunFields2) => {
|
|
7607
7596
|
AgentRunFields2["id"] = "id";
|
|
7608
7597
|
AgentRunFields2["model"] = "model";
|
|
@@ -7619,6 +7608,18 @@ var AgentRunAssciations = /* @__PURE__ */ ((AgentRunAssciations2) => {
|
|
|
7619
7608
|
AgentRunAssciations2["thread"] = "thread";
|
|
7620
7609
|
return AgentRunAssciations2;
|
|
7621
7610
|
})(AgentRunAssciations || {});
|
|
7611
|
+
var AgentTimelineItemFields = /* @__PURE__ */ ((AgentTimelineItemFields2) => {
|
|
7612
|
+
AgentTimelineItemFields2["id"] = "id";
|
|
7613
|
+
AgentTimelineItemFields2["kind"] = "kind";
|
|
7614
|
+
AgentTimelineItemFields2["payload"] = "payload";
|
|
7615
|
+
AgentTimelineItemFields2["createdAt"] = "createdAt";
|
|
7616
|
+
AgentTimelineItemFields2["updatedAt"] = "updatedAt";
|
|
7617
|
+
return AgentTimelineItemFields2;
|
|
7618
|
+
})(AgentTimelineItemFields || {});
|
|
7619
|
+
var AgentTimelineItemAssciations = /* @__PURE__ */ ((AgentTimelineItemAssciations2) => {
|
|
7620
|
+
AgentTimelineItemAssciations2["run"] = "run";
|
|
7621
|
+
return AgentTimelineItemAssciations2;
|
|
7622
|
+
})(AgentTimelineItemAssciations || {});
|
|
7622
7623
|
export {
|
|
7623
7624
|
AbilityAssciations,
|
|
7624
7625
|
AbilityDistinctEnum,
|