@keystrokehq/motion 0.1.3 → 0.1.5
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/actions/add-custom-field-to-project.d.cts +15 -3
- package/dist/actions/add-custom-field-to-project.d.mts +15 -3
- package/dist/actions/add-custom-field-to-task.d.cts +15 -3
- package/dist/actions/add-custom-field-to-task.d.mts +15 -3
- package/dist/actions/create-comment.d.cts +13 -1
- package/dist/actions/create-comment.d.mts +13 -1
- package/dist/actions/create-custom-field.d.cts +15 -3
- package/dist/actions/create-custom-field.d.mts +15 -3
- package/dist/actions/create-project.d.cts +13 -1
- package/dist/actions/create-project.d.mts +13 -1
- package/dist/actions/create-recurring-task.d.cts +13 -1
- package/dist/actions/create-recurring-task.d.mts +13 -1
- package/dist/actions/create-task.d.cts +13 -1
- package/dist/actions/create-task.d.mts +13 -1
- package/dist/actions/delete-custom-field-from-project.d.cts +13 -1
- package/dist/actions/delete-custom-field-from-project.d.mts +13 -1
- package/dist/actions/delete-custom-field-from-task.d.cts +13 -1
- package/dist/actions/delete-custom-field-from-task.d.mts +13 -1
- package/dist/actions/delete-custom-field.d.cts +13 -1
- package/dist/actions/delete-custom-field.d.mts +13 -1
- package/dist/actions/delete-recurring-task.d.cts +13 -1
- package/dist/actions/delete-recurring-task.d.mts +13 -1
- package/dist/actions/delete-task.d.cts +13 -1
- package/dist/actions/delete-task.d.mts +13 -1
- package/dist/actions/get-my-user.d.cts +13 -1
- package/dist/actions/get-my-user.d.cts.map +1 -1
- package/dist/actions/get-my-user.d.mts +13 -1
- package/dist/actions/get-my-user.d.mts.map +1 -1
- package/dist/actions/get-project.d.cts +13 -1
- package/dist/actions/get-project.d.mts +13 -1
- package/dist/actions/get-task.d.cts +13 -1
- package/dist/actions/get-task.d.mts +13 -1
- package/dist/actions/list-comments.d.cts +13 -1
- package/dist/actions/list-comments.d.mts +13 -1
- package/dist/actions/list-custom-fields.d.cts +13 -1
- package/dist/actions/list-custom-fields.d.mts +13 -1
- package/dist/actions/list-projects.d.cts +13 -1
- package/dist/actions/list-projects.d.mts +13 -1
- package/dist/actions/list-recurring-tasks.d.cts +13 -1
- package/dist/actions/list-recurring-tasks.d.mts +13 -1
- package/dist/actions/list-schedules.d.cts +13 -1
- package/dist/actions/list-schedules.d.cts.map +1 -1
- package/dist/actions/list-schedules.d.mts +13 -1
- package/dist/actions/list-schedules.d.mts.map +1 -1
- package/dist/actions/list-statuses.d.cts +13 -1
- package/dist/actions/list-statuses.d.mts +13 -1
- package/dist/actions/list-tasks.d.cts +13 -1
- package/dist/actions/list-tasks.d.mts +13 -1
- package/dist/actions/list-users.d.cts +13 -1
- package/dist/actions/list-users.d.mts +13 -1
- package/dist/actions/list-workspaces.d.cts +13 -1
- package/dist/actions/list-workspaces.d.mts +13 -1
- package/dist/actions/move-task.d.cts +13 -1
- package/dist/actions/move-task.d.mts +13 -1
- package/dist/actions/unassign-task.d.cts +13 -1
- package/dist/actions/unassign-task.d.mts +13 -1
- package/dist/actions/update-task.d.cts +13 -1
- package/dist/actions/update-task.d.mts +13 -1
- package/dist/app.cjs +5 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +9 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +9 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +3 -1
- package/dist/app.mjs.map +1 -1
- package/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5,9 +5,9 @@ declare const MotionAddCustomFieldToProjectInput: z.ZodObject<{
|
|
|
5
5
|
value: z.ZodObject<{
|
|
6
6
|
type: z.ZodEnum<{
|
|
7
7
|
number: "number";
|
|
8
|
+
date: "date";
|
|
8
9
|
text: "text";
|
|
9
10
|
url: "url";
|
|
10
|
-
date: "date";
|
|
11
11
|
person: "person";
|
|
12
12
|
multiPerson: "multiPerson";
|
|
13
13
|
phone: "phone";
|
|
@@ -28,12 +28,24 @@ declare const MotionAddCustomFieldToProjectOutput: z.ZodObject<{
|
|
|
28
28
|
}, z.core.$loose>;
|
|
29
29
|
declare const motionAddCustomFieldToProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
30
30
|
value: {
|
|
31
|
-
type: "number" | "
|
|
31
|
+
type: "number" | "date" | "text" | "url" | "person" | "multiPerson" | "phone" | "select" | "multiSelect" | "email" | "checkbox" | "relatedTo";
|
|
32
32
|
value: string | number | boolean;
|
|
33
33
|
};
|
|
34
34
|
projectId: string;
|
|
35
35
|
customFieldInstanceId: string;
|
|
36
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
36
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>;
|
|
37
49
|
//#endregion
|
|
38
50
|
export { motionAddCustomFieldToProject };
|
|
39
51
|
//# sourceMappingURL=add-custom-field-to-project.d.cts.map
|
|
@@ -5,9 +5,9 @@ declare const MotionAddCustomFieldToProjectInput: z.ZodObject<{
|
|
|
5
5
|
value: z.ZodObject<{
|
|
6
6
|
type: z.ZodEnum<{
|
|
7
7
|
number: "number";
|
|
8
|
+
date: "date";
|
|
8
9
|
text: "text";
|
|
9
10
|
url: "url";
|
|
10
|
-
date: "date";
|
|
11
11
|
person: "person";
|
|
12
12
|
multiPerson: "multiPerson";
|
|
13
13
|
phone: "phone";
|
|
@@ -28,12 +28,24 @@ declare const MotionAddCustomFieldToProjectOutput: z.ZodObject<{
|
|
|
28
28
|
}, z.core.$loose>;
|
|
29
29
|
declare const motionAddCustomFieldToProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
30
30
|
value: {
|
|
31
|
-
type: "number" | "
|
|
31
|
+
type: "number" | "date" | "text" | "url" | "person" | "multiPerson" | "phone" | "select" | "multiSelect" | "email" | "checkbox" | "relatedTo";
|
|
32
32
|
value: string | number | boolean;
|
|
33
33
|
};
|
|
34
34
|
projectId: string;
|
|
35
35
|
customFieldInstanceId: string;
|
|
36
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
36
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>;
|
|
37
49
|
//#endregion
|
|
38
50
|
export { motionAddCustomFieldToProject };
|
|
39
51
|
//# sourceMappingURL=add-custom-field-to-project.d.mts.map
|
|
@@ -5,9 +5,9 @@ declare const MotionAddCustomFieldToTaskInput: z.ZodObject<{
|
|
|
5
5
|
value: z.ZodObject<{
|
|
6
6
|
type: z.ZodEnum<{
|
|
7
7
|
number: "number";
|
|
8
|
+
date: "date";
|
|
8
9
|
text: "text";
|
|
9
10
|
url: "url";
|
|
10
|
-
date: "date";
|
|
11
11
|
person: "person";
|
|
12
12
|
multiPerson: "multiPerson";
|
|
13
13
|
phone: "phone";
|
|
@@ -28,12 +28,24 @@ declare const MotionAddCustomFieldToTaskOutput: z.ZodObject<{
|
|
|
28
28
|
}, z.core.$loose>;
|
|
29
29
|
declare const motionAddCustomFieldToTask: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
30
30
|
value: {
|
|
31
|
-
type: "number" | "
|
|
31
|
+
type: "number" | "date" | "text" | "url" | "person" | "multiPerson" | "phone" | "select" | "multiSelect" | "email" | "checkbox" | "relatedTo";
|
|
32
32
|
value: string | number | boolean;
|
|
33
33
|
};
|
|
34
34
|
taskId: string;
|
|
35
35
|
customFieldInstanceId: string;
|
|
36
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
36
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>;
|
|
37
49
|
//#endregion
|
|
38
50
|
export { motionAddCustomFieldToTask };
|
|
39
51
|
//# sourceMappingURL=add-custom-field-to-task.d.cts.map
|
|
@@ -5,9 +5,9 @@ declare const MotionAddCustomFieldToTaskInput: z.ZodObject<{
|
|
|
5
5
|
value: z.ZodObject<{
|
|
6
6
|
type: z.ZodEnum<{
|
|
7
7
|
number: "number";
|
|
8
|
+
date: "date";
|
|
8
9
|
text: "text";
|
|
9
10
|
url: "url";
|
|
10
|
-
date: "date";
|
|
11
11
|
person: "person";
|
|
12
12
|
multiPerson: "multiPerson";
|
|
13
13
|
phone: "phone";
|
|
@@ -28,12 +28,24 @@ declare const MotionAddCustomFieldToTaskOutput: z.ZodObject<{
|
|
|
28
28
|
}, z.core.$loose>;
|
|
29
29
|
declare const motionAddCustomFieldToTask: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
30
30
|
value: {
|
|
31
|
-
type: "number" | "
|
|
31
|
+
type: "number" | "date" | "text" | "url" | "person" | "multiPerson" | "phone" | "select" | "multiSelect" | "email" | "checkbox" | "relatedTo";
|
|
32
32
|
value: string | number | boolean;
|
|
33
33
|
};
|
|
34
34
|
taskId: string;
|
|
35
35
|
customFieldInstanceId: string;
|
|
36
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
36
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>;
|
|
37
49
|
//#endregion
|
|
38
50
|
export { motionAddCustomFieldToTask };
|
|
39
51
|
//# sourceMappingURL=add-custom-field-to-task.d.mts.map
|
|
@@ -19,7 +19,19 @@ declare const MotionCreateCommentOutput: z.ZodObject<{
|
|
|
19
19
|
declare const motionCreateComment: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
20
|
taskId: string;
|
|
21
21
|
content?: string | undefined;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
23
35
|
//#endregion
|
|
24
36
|
export { motionCreateComment };
|
|
25
37
|
//# sourceMappingURL=create-comment.d.cts.map
|
|
@@ -19,7 +19,19 @@ declare const MotionCreateCommentOutput: z.ZodObject<{
|
|
|
19
19
|
declare const motionCreateComment: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
20
|
taskId: string;
|
|
21
21
|
content?: string | undefined;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
23
35
|
//#endregion
|
|
24
36
|
export { motionCreateComment };
|
|
25
37
|
//# sourceMappingURL=create-comment.d.mts.map
|
|
@@ -5,9 +5,9 @@ declare const MotionCreateCustomFieldInput: z.ZodObject<{
|
|
|
5
5
|
name: z.ZodString;
|
|
6
6
|
type: z.ZodEnum<{
|
|
7
7
|
number: "number";
|
|
8
|
+
date: "date";
|
|
8
9
|
text: "text";
|
|
9
10
|
url: "url";
|
|
10
|
-
date: "date";
|
|
11
11
|
person: "person";
|
|
12
12
|
multiPerson: "multiPerson";
|
|
13
13
|
phone: "phone";
|
|
@@ -38,7 +38,7 @@ declare const MotionCreateCustomFieldOutput: z.ZodObject<{
|
|
|
38
38
|
}, z.core.$loose>;
|
|
39
39
|
declare const motionCreateCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
40
40
|
name: string;
|
|
41
|
-
type: "number" | "
|
|
41
|
+
type: "number" | "date" | "text" | "url" | "person" | "multiPerson" | "phone" | "select" | "multiSelect" | "email" | "checkbox" | "relatedTo";
|
|
42
42
|
workspaceId: string;
|
|
43
43
|
metadata?: {
|
|
44
44
|
format?: "plain" | "formatted" | "percent" | undefined;
|
|
@@ -50,7 +50,19 @@ declare const motionCreateCustomField: import("@keystrokehq/action").WorkflowAct
|
|
|
50
50
|
value: string;
|
|
51
51
|
}[] | undefined;
|
|
52
52
|
} | undefined;
|
|
53
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
53
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
generic_api_key: z.ZodString;
|
|
59
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>;
|
|
54
66
|
//#endregion
|
|
55
67
|
export { motionCreateCustomField };
|
|
56
68
|
//# sourceMappingURL=create-custom-field.d.cts.map
|
|
@@ -5,9 +5,9 @@ declare const MotionCreateCustomFieldInput: z.ZodObject<{
|
|
|
5
5
|
name: z.ZodString;
|
|
6
6
|
type: z.ZodEnum<{
|
|
7
7
|
number: "number";
|
|
8
|
+
date: "date";
|
|
8
9
|
text: "text";
|
|
9
10
|
url: "url";
|
|
10
|
-
date: "date";
|
|
11
11
|
person: "person";
|
|
12
12
|
multiPerson: "multiPerson";
|
|
13
13
|
phone: "phone";
|
|
@@ -38,7 +38,7 @@ declare const MotionCreateCustomFieldOutput: z.ZodObject<{
|
|
|
38
38
|
}, z.core.$loose>;
|
|
39
39
|
declare const motionCreateCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
40
40
|
name: string;
|
|
41
|
-
type: "number" | "
|
|
41
|
+
type: "number" | "date" | "text" | "url" | "person" | "multiPerson" | "phone" | "select" | "multiSelect" | "email" | "checkbox" | "relatedTo";
|
|
42
42
|
workspaceId: string;
|
|
43
43
|
metadata?: {
|
|
44
44
|
format?: "plain" | "formatted" | "percent" | undefined;
|
|
@@ -50,7 +50,19 @@ declare const motionCreateCustomField: import("@keystrokehq/action").WorkflowAct
|
|
|
50
50
|
value: string;
|
|
51
51
|
}[] | undefined;
|
|
52
52
|
} | undefined;
|
|
53
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
53
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
generic_api_key: z.ZodString;
|
|
59
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>;
|
|
54
66
|
//#endregion
|
|
55
67
|
export { motionCreateCustomField };
|
|
56
68
|
//# sourceMappingURL=create-custom-field.d.mts.map
|
|
@@ -50,7 +50,19 @@ declare const motionCreateProject: import("@keystrokehq/action").WorkflowActionD
|
|
|
50
50
|
priority?: "ASAP" | "HIGH" | "MEDIUM" | "LOW" | undefined;
|
|
51
51
|
description?: string | undefined;
|
|
52
52
|
projectDefinitionId?: string | undefined;
|
|
53
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
53
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
generic_api_key: z.ZodString;
|
|
59
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>;
|
|
54
66
|
//#endregion
|
|
55
67
|
export { motionCreateProject };
|
|
56
68
|
//# sourceMappingURL=create-project.d.cts.map
|
|
@@ -50,7 +50,19 @@ declare const motionCreateProject: import("@keystrokehq/action").WorkflowActionD
|
|
|
50
50
|
priority?: "ASAP" | "HIGH" | "MEDIUM" | "LOW" | undefined;
|
|
51
51
|
description?: string | undefined;
|
|
52
52
|
projectDefinitionId?: string | undefined;
|
|
53
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
53
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
generic_api_key: z.ZodString;
|
|
59
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>;
|
|
54
66
|
//#endregion
|
|
55
67
|
export { motionCreateProject };
|
|
56
68
|
//# sourceMappingURL=create-project.d.mts.map
|
|
@@ -77,7 +77,19 @@ declare const motionCreateRecurringTask: import("@keystrokehq/action").WorkflowA
|
|
|
77
77
|
startingOn?: string | undefined;
|
|
78
78
|
description?: string | undefined;
|
|
79
79
|
deadlineType?: "HARD" | "SOFT" | undefined;
|
|
80
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
80
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
81
|
+
connectionId: z.ZodString;
|
|
82
|
+
entityId: z.ZodString;
|
|
83
|
+
instanceId: z.ZodString;
|
|
84
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
85
|
+
generic_api_key: z.ZodString;
|
|
86
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
87
|
+
connectionId: z.ZodString;
|
|
88
|
+
entityId: z.ZodString;
|
|
89
|
+
instanceId: z.ZodString;
|
|
90
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
91
|
+
generic_api_key: z.ZodString;
|
|
92
|
+
}, z.core.$strip>>]>;
|
|
81
93
|
//#endregion
|
|
82
94
|
export { motionCreateRecurringTask };
|
|
83
95
|
//# sourceMappingURL=create-recurring-task.d.cts.map
|
|
@@ -77,7 +77,19 @@ declare const motionCreateRecurringTask: import("@keystrokehq/action").WorkflowA
|
|
|
77
77
|
startingOn?: string | undefined;
|
|
78
78
|
description?: string | undefined;
|
|
79
79
|
deadlineType?: "HARD" | "SOFT" | undefined;
|
|
80
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
80
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
81
|
+
connectionId: z.ZodString;
|
|
82
|
+
entityId: z.ZodString;
|
|
83
|
+
instanceId: z.ZodString;
|
|
84
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
85
|
+
generic_api_key: z.ZodString;
|
|
86
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
87
|
+
connectionId: z.ZodString;
|
|
88
|
+
entityId: z.ZodString;
|
|
89
|
+
instanceId: z.ZodString;
|
|
90
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
91
|
+
generic_api_key: z.ZodString;
|
|
92
|
+
}, z.core.$strip>>]>;
|
|
81
93
|
//#endregion
|
|
82
94
|
export { motionCreateRecurringTask };
|
|
83
95
|
//# sourceMappingURL=create-recurring-task.d.mts.map
|
|
@@ -96,7 +96,19 @@ declare const motionCreateTask: import("@keystrokehq/action").WorkflowActionDefi
|
|
|
96
96
|
projectId?: string | undefined;
|
|
97
97
|
assigneeId?: string | undefined;
|
|
98
98
|
description?: string | undefined;
|
|
99
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
99
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
100
|
+
connectionId: z.ZodString;
|
|
101
|
+
entityId: z.ZodString;
|
|
102
|
+
instanceId: z.ZodString;
|
|
103
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
104
|
+
generic_api_key: z.ZodString;
|
|
105
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
106
|
+
connectionId: z.ZodString;
|
|
107
|
+
entityId: z.ZodString;
|
|
108
|
+
instanceId: z.ZodString;
|
|
109
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
110
|
+
generic_api_key: z.ZodString;
|
|
111
|
+
}, z.core.$strip>>]>;
|
|
100
112
|
//#endregion
|
|
101
113
|
export { motionCreateTask };
|
|
102
114
|
//# sourceMappingURL=create-task.d.cts.map
|
|
@@ -96,7 +96,19 @@ declare const motionCreateTask: import("@keystrokehq/action").WorkflowActionDefi
|
|
|
96
96
|
projectId?: string | undefined;
|
|
97
97
|
assigneeId?: string | undefined;
|
|
98
98
|
description?: string | undefined;
|
|
99
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
99
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
100
|
+
connectionId: z.ZodString;
|
|
101
|
+
entityId: z.ZodString;
|
|
102
|
+
instanceId: z.ZodString;
|
|
103
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
104
|
+
generic_api_key: z.ZodString;
|
|
105
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
106
|
+
connectionId: z.ZodString;
|
|
107
|
+
entityId: z.ZodString;
|
|
108
|
+
instanceId: z.ZodString;
|
|
109
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
110
|
+
generic_api_key: z.ZodString;
|
|
111
|
+
}, z.core.$strip>>]>;
|
|
100
112
|
//#endregion
|
|
101
113
|
export { motionCreateTask };
|
|
102
114
|
//# sourceMappingURL=create-task.d.mts.map
|
|
@@ -11,7 +11,19 @@ declare const MotionDeleteCustomFieldFromProjectOutput: z.ZodObject<{
|
|
|
11
11
|
declare const motionDeleteCustomFieldFromProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
valueId: string;
|
|
13
13
|
projectId: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
15
27
|
//#endregion
|
|
16
28
|
export { motionDeleteCustomFieldFromProject };
|
|
17
29
|
//# sourceMappingURL=delete-custom-field-from-project.d.cts.map
|
|
@@ -11,7 +11,19 @@ declare const MotionDeleteCustomFieldFromProjectOutput: z.ZodObject<{
|
|
|
11
11
|
declare const motionDeleteCustomFieldFromProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
valueId: string;
|
|
13
13
|
projectId: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
15
27
|
//#endregion
|
|
16
28
|
export { motionDeleteCustomFieldFromProject };
|
|
17
29
|
//# sourceMappingURL=delete-custom-field-from-project.d.mts.map
|
|
@@ -9,7 +9,19 @@ declare const MotionDeleteCustomFieldFromTaskOutput: z.ZodRecord<z.ZodString, z.
|
|
|
9
9
|
declare const motionDeleteCustomFieldFromTask: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
10
10
|
taskId: string;
|
|
11
11
|
valueId: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
generic_api_key: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { motionDeleteCustomFieldFromTask };
|
|
15
27
|
//# sourceMappingURL=delete-custom-field-from-task.d.cts.map
|
|
@@ -9,7 +9,19 @@ declare const MotionDeleteCustomFieldFromTaskOutput: z.ZodRecord<z.ZodString, z.
|
|
|
9
9
|
declare const motionDeleteCustomFieldFromTask: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
10
10
|
taskId: string;
|
|
11
11
|
valueId: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
generic_api_key: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { motionDeleteCustomFieldFromTask };
|
|
15
27
|
//# sourceMappingURL=delete-custom-field-from-task.d.mts.map
|
|
@@ -12,7 +12,19 @@ declare const MotionDeleteCustomFieldOutput: z.ZodObject<{
|
|
|
12
12
|
declare const motionDeleteCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
id: string;
|
|
14
14
|
workspaceId: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { motionDeleteCustomField };
|
|
18
30
|
//# sourceMappingURL=delete-custom-field.d.cts.map
|
|
@@ -12,7 +12,19 @@ declare const MotionDeleteCustomFieldOutput: z.ZodObject<{
|
|
|
12
12
|
declare const motionDeleteCustomField: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
id: string;
|
|
14
14
|
workspaceId: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { motionDeleteCustomField };
|
|
18
30
|
//# sourceMappingURL=delete-custom-field.d.mts.map
|
|
@@ -9,7 +9,19 @@ declare const MotionDeleteRecurringTaskOutput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$loose>;
|
|
10
10
|
declare const motionDeleteRecurringTask: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
id: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
generic_api_key: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { motionDeleteRecurringTask };
|
|
15
27
|
//# sourceMappingURL=delete-recurring-task.d.cts.map
|
|
@@ -9,7 +9,19 @@ declare const MotionDeleteRecurringTaskOutput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$loose>;
|
|
10
10
|
declare const motionDeleteRecurringTask: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
id: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
generic_api_key: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { motionDeleteRecurringTask };
|
|
15
27
|
//# sourceMappingURL=delete-recurring-task.d.mts.map
|
|
@@ -9,7 +9,19 @@ declare const MotionDeleteTaskOutput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$loose>;
|
|
10
10
|
declare const motionDeleteTask: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
id: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
generic_api_key: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { motionDeleteTask };
|
|
15
27
|
//# sourceMappingURL=delete-task.d.cts.map
|
|
@@ -9,7 +9,19 @@ declare const MotionDeleteTaskOutput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$loose>;
|
|
10
10
|
declare const motionDeleteTask: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
id: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
generic_api_key: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { motionDeleteTask };
|
|
15
27
|
//# sourceMappingURL=delete-task.d.mts.map
|