@rxdrag/rxcms-models 0.3.68 → 0.3.69

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,4 +18,5 @@ export declare class TaskQueryOptions extends QueryOptions<Task, TaskBoolExp, Ta
18
18
  endedAt(): this;
19
19
  idempotencyKey(): this;
20
20
  taskOwnerType(): this;
21
+ errorMessage(): this;
21
22
  }
@@ -13,7 +13,8 @@ export declare enum TaskFields {
13
13
  startedAt = "startedAt",
14
14
  endedAt = "endedAt",
15
15
  idempotencyKey = "idempotencyKey",
16
- taskOwnerType = "taskOwnerType"
16
+ taskOwnerType = "taskOwnerType",
17
+ errorMessage = "errorMessage"
17
18
  }
18
19
  export declare enum TaskAssciations {
19
20
  }
package/dist/index.mjs CHANGED
@@ -1734,6 +1734,7 @@ var TaskDistinctEnum = /* @__PURE__ */ ((TaskDistinctEnum2) => {
1734
1734
  TaskDistinctEnum2["endedAt"] = "endedAt";
1735
1735
  TaskDistinctEnum2["idempotencyKey"] = "idempotencyKey";
1736
1736
  TaskDistinctEnum2["taskOwnerType"] = "taskOwnerType";
1737
+ TaskDistinctEnum2["errorMessage"] = "errorMessage";
1737
1738
  return TaskDistinctEnum2;
1738
1739
  })(TaskDistinctEnum || {});
1739
1740
  var TaskStatus = /* @__PURE__ */ ((TaskStatus2) => {
@@ -5033,6 +5034,10 @@ class TaskQueryOptions extends QueryOptions {
5033
5034
  this.addField("taskOwnerType");
5034
5035
  return this;
5035
5036
  }
5037
+ errorMessage() {
5038
+ this.addField("errorMessage");
5039
+ return this;
5040
+ }
5036
5041
  }
5037
5042
  const userEntry = {
5038
5043
  entityName: UserEntityName,
@@ -6035,6 +6040,7 @@ var TaskFields = /* @__PURE__ */ ((TaskFields2) => {
6035
6040
  TaskFields2["endedAt"] = "endedAt";
6036
6041
  TaskFields2["idempotencyKey"] = "idempotencyKey";
6037
6042
  TaskFields2["taskOwnerType"] = "taskOwnerType";
6043
+ TaskFields2["errorMessage"] = "errorMessage";
6038
6044
  return TaskFields2;
6039
6045
  })(TaskFields || {});
6040
6046
  var TaskAssciations = /* @__PURE__ */ ((TaskAssciations2) => {