@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.
- package/dist/classes/AgentTimelineItemQueryOptions.d.ts +1 -0
- package/dist/fields/AgentTimelineItemFields.d.ts +2 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/AgentTimelineItem.d.ts +1 -0
- package/dist/interfaces/AgentTimelineItemBoolExp.d.ts +2 -0
- package/dist/interfaces/AgentTimelineItemDistinctExp.d.ts +2 -1
- package/dist/interfaces/AgentTimelineItemInput.d.ts +1 -0
- package/dist/interfaces/AgentTimelineItemOrderBy.d.ts +1 -0
- package/package.json +1 -1
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) => {
|