@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.
Files changed (73) hide show
  1. package/dist/actions/add-custom-field-to-project.d.cts +15 -3
  2. package/dist/actions/add-custom-field-to-project.d.mts +15 -3
  3. package/dist/actions/add-custom-field-to-task.d.cts +15 -3
  4. package/dist/actions/add-custom-field-to-task.d.mts +15 -3
  5. package/dist/actions/create-comment.d.cts +13 -1
  6. package/dist/actions/create-comment.d.mts +13 -1
  7. package/dist/actions/create-custom-field.d.cts +15 -3
  8. package/dist/actions/create-custom-field.d.mts +15 -3
  9. package/dist/actions/create-project.d.cts +13 -1
  10. package/dist/actions/create-project.d.mts +13 -1
  11. package/dist/actions/create-recurring-task.d.cts +13 -1
  12. package/dist/actions/create-recurring-task.d.mts +13 -1
  13. package/dist/actions/create-task.d.cts +13 -1
  14. package/dist/actions/create-task.d.mts +13 -1
  15. package/dist/actions/delete-custom-field-from-project.d.cts +13 -1
  16. package/dist/actions/delete-custom-field-from-project.d.mts +13 -1
  17. package/dist/actions/delete-custom-field-from-task.d.cts +13 -1
  18. package/dist/actions/delete-custom-field-from-task.d.mts +13 -1
  19. package/dist/actions/delete-custom-field.d.cts +13 -1
  20. package/dist/actions/delete-custom-field.d.mts +13 -1
  21. package/dist/actions/delete-recurring-task.d.cts +13 -1
  22. package/dist/actions/delete-recurring-task.d.mts +13 -1
  23. package/dist/actions/delete-task.d.cts +13 -1
  24. package/dist/actions/delete-task.d.mts +13 -1
  25. package/dist/actions/get-my-user.d.cts +13 -1
  26. package/dist/actions/get-my-user.d.cts.map +1 -1
  27. package/dist/actions/get-my-user.d.mts +13 -1
  28. package/dist/actions/get-my-user.d.mts.map +1 -1
  29. package/dist/actions/get-project.d.cts +13 -1
  30. package/dist/actions/get-project.d.mts +13 -1
  31. package/dist/actions/get-task.d.cts +13 -1
  32. package/dist/actions/get-task.d.mts +13 -1
  33. package/dist/actions/list-comments.d.cts +13 -1
  34. package/dist/actions/list-comments.d.mts +13 -1
  35. package/dist/actions/list-custom-fields.d.cts +13 -1
  36. package/dist/actions/list-custom-fields.d.mts +13 -1
  37. package/dist/actions/list-projects.d.cts +13 -1
  38. package/dist/actions/list-projects.d.mts +13 -1
  39. package/dist/actions/list-recurring-tasks.d.cts +13 -1
  40. package/dist/actions/list-recurring-tasks.d.mts +13 -1
  41. package/dist/actions/list-schedules.d.cts +13 -1
  42. package/dist/actions/list-schedules.d.cts.map +1 -1
  43. package/dist/actions/list-schedules.d.mts +13 -1
  44. package/dist/actions/list-schedules.d.mts.map +1 -1
  45. package/dist/actions/list-statuses.d.cts +13 -1
  46. package/dist/actions/list-statuses.d.mts +13 -1
  47. package/dist/actions/list-tasks.d.cts +13 -1
  48. package/dist/actions/list-tasks.d.mts +13 -1
  49. package/dist/actions/list-users.d.cts +13 -1
  50. package/dist/actions/list-users.d.mts +13 -1
  51. package/dist/actions/list-workspaces.d.cts +13 -1
  52. package/dist/actions/list-workspaces.d.mts +13 -1
  53. package/dist/actions/move-task.d.cts +13 -1
  54. package/dist/actions/move-task.d.mts +13 -1
  55. package/dist/actions/unassign-task.d.cts +13 -1
  56. package/dist/actions/unassign-task.d.mts +13 -1
  57. package/dist/actions/update-task.d.cts +13 -1
  58. package/dist/actions/update-task.d.mts +13 -1
  59. package/dist/app.cjs +5 -2
  60. package/dist/app.cjs.map +1 -1
  61. package/dist/app.d.cts +9 -1
  62. package/dist/app.d.cts.map +1 -1
  63. package/dist/app.d.mts +9 -1
  64. package/dist/app.d.mts.map +1 -1
  65. package/dist/app.mjs +3 -1
  66. package/dist/app.mjs.map +1 -1
  67. package/dist/catalog.cjs +1 -1
  68. package/dist/catalog.cjs.map +1 -1
  69. package/dist/catalog.d.cts +1 -1
  70. package/dist/catalog.d.mts +1 -1
  71. package/dist/catalog.mjs +1 -1
  72. package/dist/catalog.mjs.map +1 -1
  73. package/package.json +1 -1
@@ -7,7 +7,19 @@ declare const MotionGetMyUserOutput: z.ZodObject<{
7
7
  name: z.ZodNullable<z.ZodString>;
8
8
  email: z.ZodNullable<z.ZodString>;
9
9
  }, z.core.$loose>;
10
- declare const motionGetMyUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
10
+ declare const motionGetMyUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
11
+ connectionId: z.ZodString;
12
+ entityId: z.ZodString;
13
+ instanceId: z.ZodString;
14
+ }, z.core.$strip>, z.ZodObject<{
15
+ generic_api_key: z.ZodString;
16
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>;
11
23
  //#endregion
12
24
  export { motionGetMyUser };
13
25
  //# sourceMappingURL=get-my-user.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-my-user.d.cts","names":[],"sources":["../../src/actions/get-my-user.ts"],"mappings":";;;cAIa,oBAAA,EAAoB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACpB,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;cAMrB,eAAA,gCAAe,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-my-user.d.cts","names":[],"sources":["../../src/actions/get-my-user.ts"],"mappings":";;;cAIa,oBAAA,EAAoB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACpB,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;cAMrB,eAAA,gCAAe,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
@@ -7,7 +7,19 @@ declare const MotionGetMyUserOutput: z.ZodObject<{
7
7
  name: z.ZodNullable<z.ZodString>;
8
8
  email: z.ZodNullable<z.ZodString>;
9
9
  }, z.core.$loose>;
10
- declare const motionGetMyUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
10
+ declare const motionGetMyUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
11
+ connectionId: z.ZodString;
12
+ entityId: z.ZodString;
13
+ instanceId: z.ZodString;
14
+ }, z.core.$strip>, z.ZodObject<{
15
+ generic_api_key: z.ZodString;
16
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>;
11
23
  //#endregion
12
24
  export { motionGetMyUser };
13
25
  //# sourceMappingURL=get-my-user.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-my-user.d.mts","names":[],"sources":["../../src/actions/get-my-user.ts"],"mappings":";;;cAIa,oBAAA,EAAoB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACpB,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;cAMrB,eAAA,gCAAe,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-my-user.d.mts","names":[],"sources":["../../src/actions/get-my-user.ts"],"mappings":";;;cAIa,oBAAA,EAAoB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACpB,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;cAMrB,eAAA,gCAAe,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
@@ -20,7 +20,19 @@ declare const MotionGetProjectOutput: z.ZodObject<{
20
20
  }, z.core.$loose>;
21
21
  declare const motionGetProject: import("@keystrokehq/action").WorkflowActionDefinition<{
22
22
  id: string;
23
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
23
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
24
+ connectionId: z.ZodString;
25
+ entityId: z.ZodString;
26
+ instanceId: z.ZodString;
27
+ }, z.core.$strip>, z.ZodObject<{
28
+ generic_api_key: z.ZodString;
29
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ generic_api_key: z.ZodString;
35
+ }, z.core.$strip>>]>;
24
36
  //#endregion
25
37
  export { motionGetProject };
26
38
  //# sourceMappingURL=get-project.d.cts.map
@@ -20,7 +20,19 @@ declare const MotionGetProjectOutput: z.ZodObject<{
20
20
  }, z.core.$loose>;
21
21
  declare const motionGetProject: import("@keystrokehq/action").WorkflowActionDefinition<{
22
22
  id: string;
23
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
23
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
24
+ connectionId: z.ZodString;
25
+ entityId: z.ZodString;
26
+ instanceId: z.ZodString;
27
+ }, z.core.$strip>, z.ZodObject<{
28
+ generic_api_key: z.ZodString;
29
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ generic_api_key: z.ZodString;
35
+ }, z.core.$strip>>]>;
24
36
  //#endregion
25
37
  export { motionGetProject };
26
38
  //# sourceMappingURL=get-project.d.mts.map
@@ -76,7 +76,19 @@ declare const MotionGetTaskOutput: z.ZodObject<{
76
76
  }, z.core.$loose>;
77
77
  declare const motionGetTask: import("@keystrokehq/action").WorkflowActionDefinition<{
78
78
  id: string;
79
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
79
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
80
+ connectionId: z.ZodString;
81
+ entityId: z.ZodString;
82
+ instanceId: z.ZodString;
83
+ }, z.core.$strip>, z.ZodObject<{
84
+ generic_api_key: z.ZodString;
85
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
86
+ connectionId: z.ZodString;
87
+ entityId: z.ZodString;
88
+ instanceId: z.ZodString;
89
+ }, z.core.$strip>, z.ZodObject<{
90
+ generic_api_key: z.ZodString;
91
+ }, z.core.$strip>>]>;
80
92
  //#endregion
81
93
  export { motionGetTask };
82
94
  //# sourceMappingURL=get-task.d.cts.map
@@ -76,7 +76,19 @@ declare const MotionGetTaskOutput: z.ZodObject<{
76
76
  }, z.core.$loose>;
77
77
  declare const motionGetTask: import("@keystrokehq/action").WorkflowActionDefinition<{
78
78
  id: string;
79
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
79
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
80
+ connectionId: z.ZodString;
81
+ entityId: z.ZodString;
82
+ instanceId: z.ZodString;
83
+ }, z.core.$strip>, z.ZodObject<{
84
+ generic_api_key: z.ZodString;
85
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
86
+ connectionId: z.ZodString;
87
+ entityId: z.ZodString;
88
+ instanceId: z.ZodString;
89
+ }, z.core.$strip>, z.ZodObject<{
90
+ generic_api_key: z.ZodString;
91
+ }, z.core.$strip>>]>;
80
92
  //#endregion
81
93
  export { motionGetTask };
82
94
  //# sourceMappingURL=get-task.d.mts.map
@@ -25,7 +25,19 @@ declare const MotionListCommentsOutput: z.ZodObject<{
25
25
  declare const motionListComments: import("@keystrokehq/action").WorkflowActionDefinition<{
26
26
  taskId: string;
27
27
  cursor?: string | undefined;
28
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
28
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
35
+ connectionId: z.ZodString;
36
+ entityId: z.ZodString;
37
+ instanceId: z.ZodString;
38
+ }, z.core.$strip>, z.ZodObject<{
39
+ generic_api_key: z.ZodString;
40
+ }, z.core.$strip>>]>;
29
41
  //#endregion
30
42
  export { motionListComments };
31
43
  //# sourceMappingURL=list-comments.d.cts.map
@@ -25,7 +25,19 @@ declare const MotionListCommentsOutput: z.ZodObject<{
25
25
  declare const motionListComments: import("@keystrokehq/action").WorkflowActionDefinition<{
26
26
  taskId: string;
27
27
  cursor?: string | undefined;
28
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
28
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
35
+ connectionId: z.ZodString;
36
+ entityId: z.ZodString;
37
+ instanceId: z.ZodString;
38
+ }, z.core.$strip>, z.ZodObject<{
39
+ generic_api_key: z.ZodString;
40
+ }, z.core.$strip>>]>;
29
41
  //#endregion
30
42
  export { motionListComments };
31
43
  //# sourceMappingURL=list-comments.d.mts.map
@@ -18,7 +18,19 @@ declare const MotionListCustomFieldsOutput: z.ZodObject<{
18
18
  }, z.core.$loose>;
19
19
  declare const motionListCustomFields: import("@keystrokehq/action").WorkflowActionDefinition<{
20
20
  workspace_id: string;
21
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
21
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
28
+ connectionId: z.ZodString;
29
+ entityId: z.ZodString;
30
+ instanceId: z.ZodString;
31
+ }, z.core.$strip>, z.ZodObject<{
32
+ generic_api_key: z.ZodString;
33
+ }, z.core.$strip>>]>;
22
34
  //#endregion
23
35
  export { motionListCustomFields };
24
36
  //# sourceMappingURL=list-custom-fields.d.cts.map
@@ -18,7 +18,19 @@ declare const MotionListCustomFieldsOutput: z.ZodObject<{
18
18
  }, z.core.$loose>;
19
19
  declare const motionListCustomFields: import("@keystrokehq/action").WorkflowActionDefinition<{
20
20
  workspace_id: string;
21
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
21
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
28
+ connectionId: z.ZodString;
29
+ entityId: z.ZodString;
30
+ instanceId: z.ZodString;
31
+ }, z.core.$strip>, z.ZodObject<{
32
+ generic_api_key: z.ZodString;
33
+ }, z.core.$strip>>]>;
22
34
  //#endregion
23
35
  export { motionListCustomFields };
24
36
  //# sourceMappingURL=list-custom-fields.d.mts.map
@@ -28,7 +28,19 @@ declare const MotionListProjectsOutput: z.ZodObject<{
28
28
  declare const motionListProjects: import("@keystrokehq/action").WorkflowActionDefinition<{
29
29
  cursor?: string | undefined;
30
30
  workspace_id?: string | undefined;
31
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
31
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
32
+ connectionId: z.ZodString;
33
+ entityId: z.ZodString;
34
+ instanceId: z.ZodString;
35
+ }, z.core.$strip>, z.ZodObject<{
36
+ generic_api_key: z.ZodString;
37
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
38
+ connectionId: z.ZodString;
39
+ entityId: z.ZodString;
40
+ instanceId: z.ZodString;
41
+ }, z.core.$strip>, z.ZodObject<{
42
+ generic_api_key: z.ZodString;
43
+ }, z.core.$strip>>]>;
32
44
  //#endregion
33
45
  export { motionListProjects };
34
46
  //# sourceMappingURL=list-projects.d.cts.map
@@ -28,7 +28,19 @@ declare const MotionListProjectsOutput: z.ZodObject<{
28
28
  declare const motionListProjects: import("@keystrokehq/action").WorkflowActionDefinition<{
29
29
  cursor?: string | undefined;
30
30
  workspace_id?: string | undefined;
31
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
31
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
32
+ connectionId: z.ZodString;
33
+ entityId: z.ZodString;
34
+ instanceId: z.ZodString;
35
+ }, z.core.$strip>, z.ZodObject<{
36
+ generic_api_key: z.ZodString;
37
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
38
+ connectionId: z.ZodString;
39
+ entityId: z.ZodString;
40
+ instanceId: z.ZodString;
41
+ }, z.core.$strip>, z.ZodObject<{
42
+ generic_api_key: z.ZodString;
43
+ }, z.core.$strip>>]>;
32
44
  //#endregion
33
45
  export { motionListProjects };
34
46
  //# sourceMappingURL=list-projects.d.mts.map
@@ -66,7 +66,19 @@ declare const MotionListRecurringTasksOutput: z.ZodObject<{
66
66
  declare const motionListRecurringTasks: import("@keystrokehq/action").WorkflowActionDefinition<{
67
67
  workspaceId: string;
68
68
  cursor?: string | undefined;
69
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
69
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
70
+ connectionId: z.ZodString;
71
+ entityId: z.ZodString;
72
+ instanceId: z.ZodString;
73
+ }, z.core.$strip>, z.ZodObject<{
74
+ generic_api_key: z.ZodString;
75
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
76
+ connectionId: z.ZodString;
77
+ entityId: z.ZodString;
78
+ instanceId: z.ZodString;
79
+ }, z.core.$strip>, z.ZodObject<{
80
+ generic_api_key: z.ZodString;
81
+ }, z.core.$strip>>]>;
70
82
  //#endregion
71
83
  export { motionListRecurringTasks };
72
84
  //# sourceMappingURL=list-recurring-tasks.d.cts.map
@@ -66,7 +66,19 @@ declare const MotionListRecurringTasksOutput: z.ZodObject<{
66
66
  declare const motionListRecurringTasks: import("@keystrokehq/action").WorkflowActionDefinition<{
67
67
  workspaceId: string;
68
68
  cursor?: string | undefined;
69
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
69
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
70
+ connectionId: z.ZodString;
71
+ entityId: z.ZodString;
72
+ instanceId: z.ZodString;
73
+ }, z.core.$strip>, z.ZodObject<{
74
+ generic_api_key: z.ZodString;
75
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
76
+ connectionId: z.ZodString;
77
+ entityId: z.ZodString;
78
+ instanceId: z.ZodString;
79
+ }, z.core.$strip>, z.ZodObject<{
80
+ generic_api_key: z.ZodString;
81
+ }, z.core.$strip>>]>;
70
82
  //#endregion
71
83
  export { motionListRecurringTasks };
72
84
  //# sourceMappingURL=list-recurring-tasks.d.mts.map
@@ -39,7 +39,19 @@ declare const MotionListSchedulesOutput: z.ZodObject<{
39
39
  isDefaultTimezone: z.ZodNullable<z.ZodBoolean>;
40
40
  }, z.core.$loose>>;
41
41
  }, z.core.$loose>;
42
- declare const motionListSchedules: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
42
+ declare const motionListSchedules: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
49
+ connectionId: z.ZodString;
50
+ entityId: z.ZodString;
51
+ instanceId: z.ZodString;
52
+ }, z.core.$strip>, z.ZodObject<{
53
+ generic_api_key: z.ZodString;
54
+ }, z.core.$strip>>]>;
43
55
  //#endregion
44
56
  export { motionListSchedules };
45
57
  //# sourceMappingURL=list-schedules.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-schedules.d.cts","names":[],"sources":["../../src/actions/list-schedules.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoBxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-schedules.d.cts","names":[],"sources":["../../src/actions/list-schedules.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoBxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
@@ -39,7 +39,19 @@ declare const MotionListSchedulesOutput: z.ZodObject<{
39
39
  isDefaultTimezone: z.ZodNullable<z.ZodBoolean>;
40
40
  }, z.core.$loose>>;
41
41
  }, z.core.$loose>;
42
- declare const motionListSchedules: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
42
+ declare const motionListSchedules: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
49
+ connectionId: z.ZodString;
50
+ entityId: z.ZodString;
51
+ instanceId: z.ZodString;
52
+ }, z.core.$strip>, z.ZodObject<{
53
+ generic_api_key: z.ZodString;
54
+ }, z.core.$strip>>]>;
43
55
  //#endregion
44
56
  export { motionListSchedules };
45
57
  //# sourceMappingURL=list-schedules.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-schedules.d.mts","names":[],"sources":["../../src/actions/list-schedules.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoBxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-schedules.d.mts","names":[],"sources":["../../src/actions/list-schedules.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoBxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
@@ -13,7 +13,19 @@ declare const MotionListStatusesOutput: z.ZodObject<{
13
13
  }, z.core.$loose>;
14
14
  declare const motionListStatuses: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  workspaceId?: string | undefined;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>, 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>>]>;
17
29
  //#endregion
18
30
  export { motionListStatuses };
19
31
  //# sourceMappingURL=list-statuses.d.cts.map
@@ -13,7 +13,19 @@ declare const MotionListStatusesOutput: z.ZodObject<{
13
13
  }, z.core.$loose>;
14
14
  declare const motionListStatuses: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  workspaceId?: string | undefined;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>, 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>>]>;
17
29
  //#endregion
18
30
  export { motionListStatuses };
19
31
  //# sourceMappingURL=list-statuses.d.mts.map
@@ -91,7 +91,19 @@ declare const motionListTasks: import("@keystrokehq/action").WorkflowActionDefin
91
91
  assigneeId?: string | undefined;
92
92
  workspaceId?: string | undefined;
93
93
  includeAllStatuses?: boolean | undefined;
94
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
94
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
95
+ connectionId: z.ZodString;
96
+ entityId: z.ZodString;
97
+ instanceId: z.ZodString;
98
+ }, z.core.$strip>, z.ZodObject<{
99
+ generic_api_key: z.ZodString;
100
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
101
+ connectionId: z.ZodString;
102
+ entityId: z.ZodString;
103
+ instanceId: z.ZodString;
104
+ }, z.core.$strip>, z.ZodObject<{
105
+ generic_api_key: z.ZodString;
106
+ }, z.core.$strip>>]>;
95
107
  //#endregion
96
108
  export { motionListTasks };
97
109
  //# sourceMappingURL=list-tasks.d.cts.map
@@ -91,7 +91,19 @@ declare const motionListTasks: import("@keystrokehq/action").WorkflowActionDefin
91
91
  assigneeId?: string | undefined;
92
92
  workspaceId?: string | undefined;
93
93
  includeAllStatuses?: boolean | undefined;
94
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
94
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
95
+ connectionId: z.ZodString;
96
+ entityId: z.ZodString;
97
+ instanceId: z.ZodString;
98
+ }, z.core.$strip>, z.ZodObject<{
99
+ generic_api_key: z.ZodString;
100
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
101
+ connectionId: z.ZodString;
102
+ entityId: z.ZodString;
103
+ instanceId: z.ZodString;
104
+ }, z.core.$strip>, z.ZodObject<{
105
+ generic_api_key: z.ZodString;
106
+ }, z.core.$strip>>]>;
95
107
  //#endregion
96
108
  export { motionListTasks };
97
109
  //# sourceMappingURL=list-tasks.d.mts.map
@@ -21,7 +21,19 @@ declare const motionListUsers: import("@keystrokehq/action").WorkflowActionDefin
21
21
  cursor?: string | undefined;
22
22
  teamId?: string | undefined;
23
23
  workspaceId?: string | undefined;
24
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
24
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ generic_api_key: z.ZodString;
30
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
31
+ connectionId: z.ZodString;
32
+ entityId: z.ZodString;
33
+ instanceId: z.ZodString;
34
+ }, z.core.$strip>, z.ZodObject<{
35
+ generic_api_key: z.ZodString;
36
+ }, z.core.$strip>>]>;
25
37
  //#endregion
26
38
  export { motionListUsers };
27
39
  //# sourceMappingURL=list-users.d.cts.map
@@ -21,7 +21,19 @@ declare const motionListUsers: import("@keystrokehq/action").WorkflowActionDefin
21
21
  cursor?: string | undefined;
22
22
  teamId?: string | undefined;
23
23
  workspaceId?: string | undefined;
24
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
24
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ generic_api_key: z.ZodString;
30
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
31
+ connectionId: z.ZodString;
32
+ entityId: z.ZodString;
33
+ instanceId: z.ZodString;
34
+ }, z.core.$strip>, z.ZodObject<{
35
+ generic_api_key: z.ZodString;
36
+ }, z.core.$strip>>]>;
25
37
  //#endregion
26
38
  export { motionListUsers };
27
39
  //# sourceMappingURL=list-users.d.mts.map
@@ -28,7 +28,19 @@ declare const MotionListWorkspacesOutput: z.ZodObject<{
28
28
  declare const motionListWorkspaces: import("@keystrokehq/action").WorkflowActionDefinition<{
29
29
  ids?: string[] | undefined;
30
30
  cursor?: string | undefined;
31
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
31
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
32
+ connectionId: z.ZodString;
33
+ entityId: z.ZodString;
34
+ instanceId: z.ZodString;
35
+ }, z.core.$strip>, z.ZodObject<{
36
+ generic_api_key: z.ZodString;
37
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
38
+ connectionId: z.ZodString;
39
+ entityId: z.ZodString;
40
+ instanceId: z.ZodString;
41
+ }, z.core.$strip>, z.ZodObject<{
42
+ generic_api_key: z.ZodString;
43
+ }, z.core.$strip>>]>;
32
44
  //#endregion
33
45
  export { motionListWorkspaces };
34
46
  //# sourceMappingURL=list-workspaces.d.cts.map
@@ -28,7 +28,19 @@ declare const MotionListWorkspacesOutput: z.ZodObject<{
28
28
  declare const motionListWorkspaces: import("@keystrokehq/action").WorkflowActionDefinition<{
29
29
  ids?: string[] | undefined;
30
30
  cursor?: string | undefined;
31
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
31
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
32
+ connectionId: z.ZodString;
33
+ entityId: z.ZodString;
34
+ instanceId: z.ZodString;
35
+ }, z.core.$strip>, z.ZodObject<{
36
+ generic_api_key: z.ZodString;
37
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
38
+ connectionId: z.ZodString;
39
+ entityId: z.ZodString;
40
+ instanceId: z.ZodString;
41
+ }, z.core.$strip>, z.ZodObject<{
42
+ generic_api_key: z.ZodString;
43
+ }, z.core.$strip>>]>;
32
44
  //#endregion
33
45
  export { motionListWorkspaces };
34
46
  //# sourceMappingURL=list-workspaces.d.mts.map
@@ -84,7 +84,19 @@ declare const motionMoveTask: import("@keystrokehq/action").WorkflowActionDefini
84
84
  id: string;
85
85
  workspaceId: string;
86
86
  assigneeId?: string | undefined;
87
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
87
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
88
+ connectionId: z.ZodString;
89
+ entityId: z.ZodString;
90
+ instanceId: z.ZodString;
91
+ }, z.core.$strip>, z.ZodObject<{
92
+ generic_api_key: z.ZodString;
93
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
94
+ connectionId: z.ZodString;
95
+ entityId: z.ZodString;
96
+ instanceId: z.ZodString;
97
+ }, z.core.$strip>, z.ZodObject<{
98
+ generic_api_key: z.ZodString;
99
+ }, z.core.$strip>>]>;
88
100
  //#endregion
89
101
  export { motionMoveTask };
90
102
  //# sourceMappingURL=move-task.d.cts.map
@@ -84,7 +84,19 @@ declare const motionMoveTask: import("@keystrokehq/action").WorkflowActionDefini
84
84
  id: string;
85
85
  workspaceId: string;
86
86
  assigneeId?: string | undefined;
87
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
87
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
88
+ connectionId: z.ZodString;
89
+ entityId: z.ZodString;
90
+ instanceId: z.ZodString;
91
+ }, z.core.$strip>, z.ZodObject<{
92
+ generic_api_key: z.ZodString;
93
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"motion", z.ZodObject<{
94
+ connectionId: z.ZodString;
95
+ entityId: z.ZodString;
96
+ instanceId: z.ZodString;
97
+ }, z.core.$strip>, z.ZodObject<{
98
+ generic_api_key: z.ZodString;
99
+ }, z.core.$strip>>]>;
88
100
  //#endregion
89
101
  export { motionMoveTask };
90
102
  //# sourceMappingURL=move-task.d.mts.map
@@ -9,7 +9,19 @@ declare const MotionUnassignTaskOutput: z.ZodObject<{
9
9
  }, z.core.$loose>;
10
10
  declare const motionUnassignTask: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  id: string;
12
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, 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 { motionUnassignTask };
15
27
  //# sourceMappingURL=unassign-task.d.cts.map