@rxdrag/rxcms-models 0.3.66 → 0.3.67

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.
@@ -4,7 +4,7 @@ import { Task, TaskBoolExp, TaskDistinctExp, TaskOrderBy } from "../interfaces";
4
4
  export declare class TaskQueryOptions extends QueryOptions<Task, TaskBoolExp, TaskOrderBy, TaskDistinctExp> {
5
5
  constructor(fields?: (keyof Task)[], queryArgs?: IQueryArgs<TaskBoolExp, TaskOrderBy, TaskDistinctExp>);
6
6
  id(): this;
7
- celeryTaskId(): this;
7
+ jobId(): this;
8
8
  type(): this;
9
9
  websiteId(): this;
10
10
  themeId(): this;
@@ -17,4 +17,5 @@ export declare class TaskQueryOptions extends QueryOptions<Task, TaskBoolExp, Ta
17
17
  updatedAt(): this;
18
18
  startedAt(): this;
19
19
  endedAt(): this;
20
+ idempotencyKey(): this;
20
21
  }
@@ -1,6 +1,6 @@
1
1
  export declare enum TaskFields {
2
2
  id = "id",
3
- celeryTaskId = "celeryTaskId",
3
+ jobId = "jobId",
4
4
  type = "type",
5
5
  websiteId = "websiteId",
6
6
  themeId = "themeId",
@@ -12,7 +12,8 @@ export declare enum TaskFields {
12
12
  createdAt = "createdAt",
13
13
  updatedAt = "updatedAt",
14
14
  startedAt = "startedAt",
15
- endedAt = "endedAt"
15
+ endedAt = "endedAt",
16
+ idempotencyKey = "idempotencyKey"
16
17
  }
17
18
  export declare enum TaskAssciations {
18
19
  }
package/dist/index.mjs CHANGED
@@ -1720,7 +1720,7 @@ const taskToInput = (entity) => {
1720
1720
  };
1721
1721
  var TaskDistinctEnum = /* @__PURE__ */ ((TaskDistinctEnum2) => {
1722
1722
  TaskDistinctEnum2["id"] = "id";
1723
- TaskDistinctEnum2["celeryTaskId"] = "celeryTaskId";
1723
+ TaskDistinctEnum2["jobId"] = "jobId";
1724
1724
  TaskDistinctEnum2["type"] = "type";
1725
1725
  TaskDistinctEnum2["websiteId"] = "websiteId";
1726
1726
  TaskDistinctEnum2["themeId"] = "themeId";
@@ -1733,6 +1733,7 @@ var TaskDistinctEnum = /* @__PURE__ */ ((TaskDistinctEnum2) => {
1733
1733
  TaskDistinctEnum2["updatedAt"] = "updatedAt";
1734
1734
  TaskDistinctEnum2["startedAt"] = "startedAt";
1735
1735
  TaskDistinctEnum2["endedAt"] = "endedAt";
1736
+ TaskDistinctEnum2["idempotencyKey"] = "idempotencyKey";
1736
1737
  return TaskDistinctEnum2;
1737
1738
  })(TaskDistinctEnum || {});
1738
1739
  var TaskStatus = /* @__PURE__ */ ((TaskStatus2) => {
@@ -4971,8 +4972,8 @@ class TaskQueryOptions extends QueryOptions {
4971
4972
  this.addField("id");
4972
4973
  return this;
4973
4974
  }
4974
- celeryTaskId() {
4975
- this.addField("celeryTaskId");
4975
+ jobId() {
4976
+ this.addField("jobId");
4976
4977
  return this;
4977
4978
  }
4978
4979
  type() {
@@ -5023,6 +5024,10 @@ class TaskQueryOptions extends QueryOptions {
5023
5024
  this.addField("endedAt");
5024
5025
  return this;
5025
5026
  }
5027
+ idempotencyKey() {
5028
+ this.addField("idempotencyKey");
5029
+ return this;
5030
+ }
5026
5031
  }
5027
5032
  const userEntry = {
5028
5033
  entityName: UserEntityName,
@@ -6011,7 +6016,7 @@ var VideoAssciations = /* @__PURE__ */ ((VideoAssciations2) => {
6011
6016
  })(VideoAssciations || {});
6012
6017
  var TaskFields = /* @__PURE__ */ ((TaskFields2) => {
6013
6018
  TaskFields2["id"] = "id";
6014
- TaskFields2["celeryTaskId"] = "celeryTaskId";
6019
+ TaskFields2["jobId"] = "jobId";
6015
6020
  TaskFields2["type"] = "type";
6016
6021
  TaskFields2["websiteId"] = "websiteId";
6017
6022
  TaskFields2["themeId"] = "themeId";
@@ -6024,6 +6029,7 @@ var TaskFields = /* @__PURE__ */ ((TaskFields2) => {
6024
6029
  TaskFields2["updatedAt"] = "updatedAt";
6025
6030
  TaskFields2["startedAt"] = "startedAt";
6026
6031
  TaskFields2["endedAt"] = "endedAt";
6032
+ TaskFields2["idempotencyKey"] = "idempotencyKey";
6027
6033
  return TaskFields2;
6028
6034
  })(TaskFields || {});
6029
6035
  var TaskAssciations = /* @__PURE__ */ ((TaskAssciations2) => {