@rxdrag/rxcms-models 0.3.100 → 0.3.102

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.
@@ -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;
@@ -10,5 +10,6 @@ export declare class AgentTimelineItemQueryOptions extends QueryOptions<AgentTim
10
10
  payload(): this;
11
11
  createdAt(): this;
12
12
  updatedAt(): this;
13
+ seqValue(): this;
13
14
  run(options?: AgentRunQueryOptions | (keyof AgentRun)[]): this;
14
15
  }
@@ -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",
@@ -3,7 +3,8 @@ 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 {
9
10
  run = "run"
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";
@@ -2204,6 +2206,7 @@ var AgentTimelineItemDistinctEnum = /* @__PURE__ */ ((AgentTimelineItemDistinctE
2204
2206
  AgentTimelineItemDistinctEnum2["payload"] = "payload";
2205
2207
  AgentTimelineItemDistinctEnum2["createdAt"] = "createdAt";
2206
2208
  AgentTimelineItemDistinctEnum2["updatedAt"] = "updatedAt";
2209
+ AgentTimelineItemDistinctEnum2["seqValue"] = "seqValue";
2207
2210
  return AgentTimelineItemDistinctEnum2;
2208
2211
  })(AgentTimelineItemDistinctEnum || {});
2209
2212
  class RoleVariableQueryOptions extends QueryOptions {
@@ -2907,6 +2910,10 @@ class AgentTimelineItemQueryOptions extends QueryOptions {
2907
2910
  this.addField("updatedAt");
2908
2911
  return this;
2909
2912
  }
2913
+ seqValue() {
2914
+ this.addField("seqValue");
2915
+ return this;
2916
+ }
2910
2917
  run(options) {
2911
2918
  if (Array.isArray(options)) {
2912
2919
  this._associations["run"] = new AgentRunQueryOptions(options);
@@ -2997,6 +3004,14 @@ class AgentThreadQueryOptions extends QueryOptions {
2997
3004
  this.addField("updatedAt");
2998
3005
  return this;
2999
3006
  }
3007
+ title() {
3008
+ this.addField("title");
3009
+ return this;
3010
+ }
3011
+ summary() {
3012
+ this.addField("summary");
3013
+ return this;
3014
+ }
3000
3015
  runs(options) {
3001
3016
  if (Array.isArray(options)) {
3002
3017
  this._associations["runs"] = new AgentRunQueryOptions(options);
@@ -7582,6 +7597,8 @@ var AgentThreadFields = /* @__PURE__ */ ((AgentThreadFields2) => {
7582
7597
  AgentThreadFields2["lastError"] = "lastError";
7583
7598
  AgentThreadFields2["createdAt"] = "createdAt";
7584
7599
  AgentThreadFields2["updatedAt"] = "updatedAt";
7600
+ AgentThreadFields2["title"] = "title";
7601
+ AgentThreadFields2["summary"] = "summary";
7585
7602
  return AgentThreadFields2;
7586
7603
  })(AgentThreadFields || {});
7587
7604
  var AgentThreadAssciations = /* @__PURE__ */ ((AgentThreadAssciations2) => {
@@ -7614,6 +7631,7 @@ var AgentTimelineItemFields = /* @__PURE__ */ ((AgentTimelineItemFields2) => {
7614
7631
  AgentTimelineItemFields2["payload"] = "payload";
7615
7632
  AgentTimelineItemFields2["createdAt"] = "createdAt";
7616
7633
  AgentTimelineItemFields2["updatedAt"] = "updatedAt";
7634
+ AgentTimelineItemFields2["seqValue"] = "seqValue";
7617
7635
  return AgentTimelineItemFields2;
7618
7636
  })(AgentTimelineItemFields || {});
7619
7637
  var AgentTimelineItemAssciations = /* @__PURE__ */ ((AgentTimelineItemAssciations2) => {