@rxdrag/rxcms-models 0.3.67 → 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.
@@ -7,7 +7,6 @@ export declare class TaskQueryOptions extends QueryOptions<Task, TaskBoolExp, Ta
7
7
  jobId(): this;
8
8
  type(): this;
9
9
  websiteId(): this;
10
- themeId(): this;
11
10
  name(): this;
12
11
  message(): this;
13
12
  status(): this;
@@ -18,4 +17,6 @@ export declare class TaskQueryOptions extends QueryOptions<Task, TaskBoolExp, Ta
18
17
  startedAt(): this;
19
18
  endedAt(): this;
20
19
  idempotencyKey(): this;
20
+ taskOwnerType(): this;
21
+ errorMessage(): this;
21
22
  }
@@ -3,7 +3,6 @@ export declare enum TaskFields {
3
3
  jobId = "jobId",
4
4
  type = "type",
5
5
  websiteId = "websiteId",
6
- themeId = "themeId",
7
6
  name = "name",
8
7
  message = "message",
9
8
  status = "status",
@@ -13,7 +12,9 @@ export declare enum TaskFields {
13
12
  updatedAt = "updatedAt",
14
13
  startedAt = "startedAt",
15
14
  endedAt = "endedAt",
16
- idempotencyKey = "idempotencyKey"
15
+ idempotencyKey = "idempotencyKey",
16
+ taskOwnerType = "taskOwnerType",
17
+ errorMessage = "errorMessage"
17
18
  }
18
19
  export declare enum TaskAssciations {
19
20
  }
package/dist/index.mjs CHANGED
@@ -1723,7 +1723,6 @@ var TaskDistinctEnum = /* @__PURE__ */ ((TaskDistinctEnum2) => {
1723
1723
  TaskDistinctEnum2["jobId"] = "jobId";
1724
1724
  TaskDistinctEnum2["type"] = "type";
1725
1725
  TaskDistinctEnum2["websiteId"] = "websiteId";
1726
- TaskDistinctEnum2["themeId"] = "themeId";
1727
1726
  TaskDistinctEnum2["name"] = "name";
1728
1727
  TaskDistinctEnum2["message"] = "message";
1729
1728
  TaskDistinctEnum2["status"] = "status";
@@ -1734,6 +1733,8 @@ var TaskDistinctEnum = /* @__PURE__ */ ((TaskDistinctEnum2) => {
1734
1733
  TaskDistinctEnum2["startedAt"] = "startedAt";
1735
1734
  TaskDistinctEnum2["endedAt"] = "endedAt";
1736
1735
  TaskDistinctEnum2["idempotencyKey"] = "idempotencyKey";
1736
+ TaskDistinctEnum2["taskOwnerType"] = "taskOwnerType";
1737
+ TaskDistinctEnum2["errorMessage"] = "errorMessage";
1737
1738
  return TaskDistinctEnum2;
1738
1739
  })(TaskDistinctEnum || {});
1739
1740
  var TaskStatus = /* @__PURE__ */ ((TaskStatus2) => {
@@ -1752,6 +1753,11 @@ var TaskType = /* @__PURE__ */ ((TaskType2) => {
1752
1753
  TaskType2["TranslateProduct"] = "TranslateProduct";
1753
1754
  return TaskType2;
1754
1755
  })(TaskType || {});
1756
+ var TaskOwner = /* @__PURE__ */ ((TaskOwner2) => {
1757
+ TaskOwner2["Studio"] = "Studio";
1758
+ TaskOwner2["Dashboard"] = "Dashboard";
1759
+ return TaskOwner2;
1760
+ })(TaskOwner || {});
1755
1761
  class RoleQueryOptions extends QueryOptions {
1756
1762
  constructor(fields, queryArgs) {
1757
1763
  super(RoleEntityName, fields, queryArgs);
@@ -4984,10 +4990,6 @@ class TaskQueryOptions extends QueryOptions {
4984
4990
  this.addField("websiteId");
4985
4991
  return this;
4986
4992
  }
4987
- themeId() {
4988
- this.addField("themeId");
4989
- return this;
4990
- }
4991
4993
  name() {
4992
4994
  this.addField("name");
4993
4995
  return this;
@@ -5028,6 +5030,14 @@ class TaskQueryOptions extends QueryOptions {
5028
5030
  this.addField("idempotencyKey");
5029
5031
  return this;
5030
5032
  }
5033
+ taskOwnerType() {
5034
+ this.addField("taskOwnerType");
5035
+ return this;
5036
+ }
5037
+ errorMessage() {
5038
+ this.addField("errorMessage");
5039
+ return this;
5040
+ }
5031
5041
  }
5032
5042
  const userEntry = {
5033
5043
  entityName: UserEntityName,
@@ -6019,7 +6029,6 @@ var TaskFields = /* @__PURE__ */ ((TaskFields2) => {
6019
6029
  TaskFields2["jobId"] = "jobId";
6020
6030
  TaskFields2["type"] = "type";
6021
6031
  TaskFields2["websiteId"] = "websiteId";
6022
- TaskFields2["themeId"] = "themeId";
6023
6032
  TaskFields2["name"] = "name";
6024
6033
  TaskFields2["message"] = "message";
6025
6034
  TaskFields2["status"] = "status";
@@ -6030,6 +6039,8 @@ var TaskFields = /* @__PURE__ */ ((TaskFields2) => {
6030
6039
  TaskFields2["startedAt"] = "startedAt";
6031
6040
  TaskFields2["endedAt"] = "endedAt";
6032
6041
  TaskFields2["idempotencyKey"] = "idempotencyKey";
6042
+ TaskFields2["taskOwnerType"] = "taskOwnerType";
6043
+ TaskFields2["errorMessage"] = "errorMessage";
6033
6044
  return TaskFields2;
6034
6045
  })(TaskFields || {});
6035
6046
  var TaskAssciations = /* @__PURE__ */ ((TaskAssciations2) => {
@@ -6204,6 +6215,7 @@ export {
6204
6215
  TaskEntityLabel,
6205
6216
  TaskEntityName,
6206
6217
  TaskFields,
6218
+ TaskOwner,
6207
6219
  TaskQueryOptions,
6208
6220
  TaskStatus,
6209
6221
  TaskType,