@rxdrag/rxcms-models 0.3.100 → 0.3.101
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 +2 -0
- package/dist/fields/AgentThreadFields.d.ts +3 -1
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/AgentThread.d.ts +2 -0
- package/dist/interfaces/AgentThreadBoolExp.d.ts +2 -0
- package/dist/interfaces/AgentThreadDistinctExp.d.ts +3 -1
- package/dist/interfaces/AgentThreadInput.d.ts +2 -0
- package/dist/interfaces/AgentThreadOrderBy.d.ts +2 -0
- package/package.json +3 -3
|
@@ -18,6 +18,8 @@ export declare class AgentThreadQueryOptions extends QueryOptions<AgentThread, A
|
|
|
18
18
|
lastError(): this;
|
|
19
19
|
createdAt(): this;
|
|
20
20
|
updatedAt(): this;
|
|
21
|
+
title(): this;
|
|
22
|
+
summary(): this;
|
|
21
23
|
runs(options?: AgentRunQueryOptions | (keyof AgentRun)[]): this;
|
|
22
24
|
runsAggregate(aggregate: IAggregate<AgentRunBoolExp>): this;
|
|
23
25
|
user(options?: UserQueryOptions | (keyof User)[]): this;
|
|
@@ -4,7 +4,9 @@ export declare enum AgentThreadFields {
|
|
|
4
4
|
status = "status",
|
|
5
5
|
lastError = "lastError",
|
|
6
6
|
createdAt = "createdAt",
|
|
7
|
-
updatedAt = "updatedAt"
|
|
7
|
+
updatedAt = "updatedAt",
|
|
8
|
+
title = "title",
|
|
9
|
+
summary = "summary"
|
|
8
10
|
}
|
|
9
11
|
export declare enum AgentThreadAssciations {
|
|
10
12
|
runs = "runs",
|
package/dist/index.mjs
CHANGED
|
@@ -2182,6 +2182,8 @@ var AgentThreadDistinctEnum = /* @__PURE__ */ ((AgentThreadDistinctEnum2) => {
|
|
|
2182
2182
|
AgentThreadDistinctEnum2["lastError"] = "lastError";
|
|
2183
2183
|
AgentThreadDistinctEnum2["createdAt"] = "createdAt";
|
|
2184
2184
|
AgentThreadDistinctEnum2["updatedAt"] = "updatedAt";
|
|
2185
|
+
AgentThreadDistinctEnum2["title"] = "title";
|
|
2186
|
+
AgentThreadDistinctEnum2["summary"] = "summary";
|
|
2185
2187
|
return AgentThreadDistinctEnum2;
|
|
2186
2188
|
})(AgentThreadDistinctEnum || {});
|
|
2187
2189
|
const AgentRunEntityName = "AgentRun";
|
|
@@ -2997,6 +2999,14 @@ class AgentThreadQueryOptions extends QueryOptions {
|
|
|
2997
2999
|
this.addField("updatedAt");
|
|
2998
3000
|
return this;
|
|
2999
3001
|
}
|
|
3002
|
+
title() {
|
|
3003
|
+
this.addField("title");
|
|
3004
|
+
return this;
|
|
3005
|
+
}
|
|
3006
|
+
summary() {
|
|
3007
|
+
this.addField("summary");
|
|
3008
|
+
return this;
|
|
3009
|
+
}
|
|
3000
3010
|
runs(options) {
|
|
3001
3011
|
if (Array.isArray(options)) {
|
|
3002
3012
|
this._associations["runs"] = new AgentRunQueryOptions(options);
|
|
@@ -7582,6 +7592,8 @@ var AgentThreadFields = /* @__PURE__ */ ((AgentThreadFields2) => {
|
|
|
7582
7592
|
AgentThreadFields2["lastError"] = "lastError";
|
|
7583
7593
|
AgentThreadFields2["createdAt"] = "createdAt";
|
|
7584
7594
|
AgentThreadFields2["updatedAt"] = "updatedAt";
|
|
7595
|
+
AgentThreadFields2["title"] = "title";
|
|
7596
|
+
AgentThreadFields2["summary"] = "summary";
|
|
7585
7597
|
return AgentThreadFields2;
|
|
7586
7598
|
})(AgentThreadFields || {});
|
|
7587
7599
|
var AgentThreadAssciations = /* @__PURE__ */ ((AgentThreadAssciations2) => {
|