@rxdrag/rxcms-models 0.3.101 → 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.
@@ -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
  }
@@ -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
@@ -2206,6 +2206,7 @@ var AgentTimelineItemDistinctEnum = /* @__PURE__ */ ((AgentTimelineItemDistinctE
2206
2206
  AgentTimelineItemDistinctEnum2["payload"] = "payload";
2207
2207
  AgentTimelineItemDistinctEnum2["createdAt"] = "createdAt";
2208
2208
  AgentTimelineItemDistinctEnum2["updatedAt"] = "updatedAt";
2209
+ AgentTimelineItemDistinctEnum2["seqValue"] = "seqValue";
2209
2210
  return AgentTimelineItemDistinctEnum2;
2210
2211
  })(AgentTimelineItemDistinctEnum || {});
2211
2212
  class RoleVariableQueryOptions extends QueryOptions {
@@ -2909,6 +2910,10 @@ class AgentTimelineItemQueryOptions extends QueryOptions {
2909
2910
  this.addField("updatedAt");
2910
2911
  return this;
2911
2912
  }
2913
+ seqValue() {
2914
+ this.addField("seqValue");
2915
+ return this;
2916
+ }
2912
2917
  run(options) {
2913
2918
  if (Array.isArray(options)) {
2914
2919
  this._associations["run"] = new AgentRunQueryOptions(options);
@@ -7626,6 +7631,7 @@ var AgentTimelineItemFields = /* @__PURE__ */ ((AgentTimelineItemFields2) => {
7626
7631
  AgentTimelineItemFields2["payload"] = "payload";
7627
7632
  AgentTimelineItemFields2["createdAt"] = "createdAt";
7628
7633
  AgentTimelineItemFields2["updatedAt"] = "updatedAt";
7634
+ AgentTimelineItemFields2["seqValue"] = "seqValue";
7629
7635
  return AgentTimelineItemFields2;
7630
7636
  })(AgentTimelineItemFields || {});
7631
7637
  var AgentTimelineItemAssciations = /* @__PURE__ */ ((AgentTimelineItemAssciations2) => {