@rxdrag/rxcms-models 0.3.67 → 0.3.68
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/TaskQueryOptions.d.ts +1 -1
- package/dist/fields/TaskFields.d.ts +2 -2
- package/dist/index.mjs +12 -6
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Task.d.ts +2 -1
- package/dist/interfaces/TaskBoolExp.d.ts +2 -1
- package/dist/interfaces/TaskDistinctExp.d.ts +2 -2
- package/dist/interfaces/TaskInput.d.ts +2 -1
- package/dist/interfaces/TaskOrderBy.d.ts +1 -1
- package/dist/interfaces/TaskOwner.d.ts +10 -0
- package/dist/interfaces/index.d.ts +1 -0
- package/package.json +2 -2
|
@@ -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,5 @@ 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
21
|
}
|
|
@@ -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,8 @@ 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
17
|
}
|
|
18
18
|
export declare enum TaskAssciations {
|
|
19
19
|
}
|
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,7 @@ var TaskDistinctEnum = /* @__PURE__ */ ((TaskDistinctEnum2) => {
|
|
|
1734
1733
|
TaskDistinctEnum2["startedAt"] = "startedAt";
|
|
1735
1734
|
TaskDistinctEnum2["endedAt"] = "endedAt";
|
|
1736
1735
|
TaskDistinctEnum2["idempotencyKey"] = "idempotencyKey";
|
|
1736
|
+
TaskDistinctEnum2["taskOwnerType"] = "taskOwnerType";
|
|
1737
1737
|
return TaskDistinctEnum2;
|
|
1738
1738
|
})(TaskDistinctEnum || {});
|
|
1739
1739
|
var TaskStatus = /* @__PURE__ */ ((TaskStatus2) => {
|
|
@@ -1752,6 +1752,11 @@ var TaskType = /* @__PURE__ */ ((TaskType2) => {
|
|
|
1752
1752
|
TaskType2["TranslateProduct"] = "TranslateProduct";
|
|
1753
1753
|
return TaskType2;
|
|
1754
1754
|
})(TaskType || {});
|
|
1755
|
+
var TaskOwner = /* @__PURE__ */ ((TaskOwner2) => {
|
|
1756
|
+
TaskOwner2["Studio"] = "Studio";
|
|
1757
|
+
TaskOwner2["Dashboard"] = "Dashboard";
|
|
1758
|
+
return TaskOwner2;
|
|
1759
|
+
})(TaskOwner || {});
|
|
1755
1760
|
class RoleQueryOptions extends QueryOptions {
|
|
1756
1761
|
constructor(fields, queryArgs) {
|
|
1757
1762
|
super(RoleEntityName, fields, queryArgs);
|
|
@@ -4984,10 +4989,6 @@ class TaskQueryOptions extends QueryOptions {
|
|
|
4984
4989
|
this.addField("websiteId");
|
|
4985
4990
|
return this;
|
|
4986
4991
|
}
|
|
4987
|
-
themeId() {
|
|
4988
|
-
this.addField("themeId");
|
|
4989
|
-
return this;
|
|
4990
|
-
}
|
|
4991
4992
|
name() {
|
|
4992
4993
|
this.addField("name");
|
|
4993
4994
|
return this;
|
|
@@ -5028,6 +5029,10 @@ class TaskQueryOptions extends QueryOptions {
|
|
|
5028
5029
|
this.addField("idempotencyKey");
|
|
5029
5030
|
return this;
|
|
5030
5031
|
}
|
|
5032
|
+
taskOwnerType() {
|
|
5033
|
+
this.addField("taskOwnerType");
|
|
5034
|
+
return this;
|
|
5035
|
+
}
|
|
5031
5036
|
}
|
|
5032
5037
|
const userEntry = {
|
|
5033
5038
|
entityName: UserEntityName,
|
|
@@ -6019,7 +6024,6 @@ var TaskFields = /* @__PURE__ */ ((TaskFields2) => {
|
|
|
6019
6024
|
TaskFields2["jobId"] = "jobId";
|
|
6020
6025
|
TaskFields2["type"] = "type";
|
|
6021
6026
|
TaskFields2["websiteId"] = "websiteId";
|
|
6022
|
-
TaskFields2["themeId"] = "themeId";
|
|
6023
6027
|
TaskFields2["name"] = "name";
|
|
6024
6028
|
TaskFields2["message"] = "message";
|
|
6025
6029
|
TaskFields2["status"] = "status";
|
|
@@ -6030,6 +6034,7 @@ var TaskFields = /* @__PURE__ */ ((TaskFields2) => {
|
|
|
6030
6034
|
TaskFields2["startedAt"] = "startedAt";
|
|
6031
6035
|
TaskFields2["endedAt"] = "endedAt";
|
|
6032
6036
|
TaskFields2["idempotencyKey"] = "idempotencyKey";
|
|
6037
|
+
TaskFields2["taskOwnerType"] = "taskOwnerType";
|
|
6033
6038
|
return TaskFields2;
|
|
6034
6039
|
})(TaskFields || {});
|
|
6035
6040
|
var TaskAssciations = /* @__PURE__ */ ((TaskAssciations2) => {
|
|
@@ -6204,6 +6209,7 @@ export {
|
|
|
6204
6209
|
TaskEntityLabel,
|
|
6205
6210
|
TaskEntityName,
|
|
6206
6211
|
TaskFields,
|
|
6212
|
+
TaskOwner,
|
|
6207
6213
|
TaskQueryOptions,
|
|
6208
6214
|
TaskStatus,
|
|
6209
6215
|
TaskType,
|