@keystrokehq/shotstack 0.1.4 → 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/create-template.d.cts +15 -1
- package/dist/actions/create-template.d.cts.map +1 -1
- package/dist/actions/create-template.d.mts +15 -1
- package/dist/actions/create-template.d.mts.map +1 -1
- package/dist/actions/create-template2.d.cts +17 -3
- package/dist/actions/create-template2.d.mts +17 -3
- package/dist/actions/delete-ingested-media.d.cts +15 -1
- package/dist/actions/delete-ingested-media.d.mts +15 -1
- package/dist/actions/delete-template2.d.cts +15 -1
- package/dist/actions/delete-template2.d.mts +15 -1
- package/dist/actions/delete-workflow.d.cts +15 -1
- package/dist/actions/delete-workflow.d.mts +15 -1
- package/dist/actions/fetch-source.d.cts +15 -1
- package/dist/actions/fetch-source.d.mts +15 -1
- package/dist/actions/get-assets-render.d.cts +15 -1
- package/dist/actions/get-assets-render.d.mts +15 -1
- package/dist/actions/get-assets.d.cts +15 -1
- package/dist/actions/get-assets.d.mts +15 -1
- package/dist/actions/get-render-callback.d.cts +15 -1
- package/dist/actions/get-render-callback.d.mts +15 -1
- package/dist/actions/get-render-status.d.cts +15 -1
- package/dist/actions/get-render-status.d.mts +15 -1
- package/dist/actions/get-source.d.cts +15 -1
- package/dist/actions/get-source.d.mts +15 -1
- package/dist/actions/get-template-by-version.d.cts +15 -1
- package/dist/actions/get-template-by-version.d.mts +15 -1
- package/dist/actions/get-template.d.cts +15 -1
- package/dist/actions/get-template.d.mts +15 -1
- package/dist/actions/get-upload-url.d.cts +15 -1
- package/dist/actions/get-upload-url.d.mts +15 -1
- package/dist/actions/inspect-media.d.cts +15 -1
- package/dist/actions/inspect-media.d.mts +15 -1
- package/dist/actions/list-sources.d.cts +15 -1
- package/dist/actions/list-sources.d.mts +15 -1
- package/dist/actions/list-sources2.d.cts +17 -3
- package/dist/actions/list-sources2.d.mts +17 -3
- package/dist/actions/list-templates.d.cts +15 -1
- package/dist/actions/list-templates.d.cts.map +1 -1
- package/dist/actions/list-templates.d.mts +15 -1
- package/dist/actions/list-templates.d.mts.map +1 -1
- package/dist/actions/list-templates2.d.cts +17 -3
- package/dist/actions/list-templates2.d.mts +17 -3
- package/dist/actions/post-upload.d.cts +15 -1
- package/dist/actions/post-upload.d.cts.map +1 -1
- package/dist/actions/post-upload.d.mts +15 -1
- package/dist/actions/post-upload.d.mts.map +1 -1
- package/dist/actions/render-video.d.cts +15 -1
- package/dist/actions/render-video.d.cts.map +1 -1
- package/dist/actions/render-video.d.mts +15 -1
- package/dist/actions/render-video.d.mts.map +1 -1
- package/dist/actions/transfer-asset.d.cts +15 -1
- package/dist/actions/transfer-asset.d.cts.map +1 -1
- package/dist/actions/transfer-asset.d.mts +15 -1
- package/dist/actions/transfer-asset.d.mts.map +1 -1
- package/dist/actions/update-template.d.cts +15 -1
- package/dist/actions/update-template.d.cts.map +1 -1
- package/dist/actions/update-template.d.mts +15 -1
- package/dist/actions/update-template.d.mts.map +1 -1
- package/dist/app.cjs +8 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +10 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +10 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +6 -1
- package/dist/app.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -23,7 +23,21 @@ declare const ShotstackGetTemplateOutput: z.ZodObject<{
|
|
|
23
23
|
}, z.core.$loose>;
|
|
24
24
|
declare const shotstackGetTemplate: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
templateId: string;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
26
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
version: z.ZodString;
|
|
32
|
+
generic_api_key: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
version: z.ZodString;
|
|
39
|
+
generic_api_key: z.ZodString;
|
|
40
|
+
}, z.core.$strip>>]>;
|
|
27
41
|
//#endregion
|
|
28
42
|
export { shotstackGetTemplate };
|
|
29
43
|
//# sourceMappingURL=get-template.d.mts.map
|
|
@@ -17,7 +17,21 @@ declare const ShotstackGetUploadUrlOutput: z.ZodObject<{
|
|
|
17
17
|
}, z.core.$loose>;
|
|
18
18
|
declare const shotstackGetUploadUrl: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
version?: string | undefined;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
version: z.ZodString;
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
version: z.ZodString;
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
21
35
|
//#endregion
|
|
22
36
|
export { shotstackGetUploadUrl };
|
|
23
37
|
//# sourceMappingURL=get-upload-url.d.cts.map
|
|
@@ -17,7 +17,21 @@ declare const ShotstackGetUploadUrlOutput: z.ZodObject<{
|
|
|
17
17
|
}, z.core.$loose>;
|
|
18
18
|
declare const shotstackGetUploadUrl: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
version?: string | undefined;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
version: z.ZodString;
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
version: z.ZodString;
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
21
35
|
//#endregion
|
|
22
36
|
export { shotstackGetUploadUrl };
|
|
23
37
|
//# sourceMappingURL=get-upload-url.d.mts.map
|
|
@@ -83,7 +83,21 @@ declare const ShotstackInspectMediaOutput: z.ZodObject<{
|
|
|
83
83
|
}, z.core.$loose>;
|
|
84
84
|
declare const shotstackInspectMedia: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
85
85
|
url: string;
|
|
86
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
86
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
87
|
+
connectionId: z.ZodString;
|
|
88
|
+
entityId: z.ZodString;
|
|
89
|
+
instanceId: z.ZodString;
|
|
90
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
91
|
+
version: z.ZodString;
|
|
92
|
+
generic_api_key: z.ZodString;
|
|
93
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
94
|
+
connectionId: z.ZodString;
|
|
95
|
+
entityId: z.ZodString;
|
|
96
|
+
instanceId: z.ZodString;
|
|
97
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
98
|
+
version: z.ZodString;
|
|
99
|
+
generic_api_key: z.ZodString;
|
|
100
|
+
}, z.core.$strip>>]>;
|
|
87
101
|
//#endregion
|
|
88
102
|
export { shotstackInspectMedia };
|
|
89
103
|
//# sourceMappingURL=inspect-media.d.cts.map
|
|
@@ -83,7 +83,21 @@ declare const ShotstackInspectMediaOutput: z.ZodObject<{
|
|
|
83
83
|
}, z.core.$loose>;
|
|
84
84
|
declare const shotstackInspectMedia: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
85
85
|
url: string;
|
|
86
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
86
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
87
|
+
connectionId: z.ZodString;
|
|
88
|
+
entityId: z.ZodString;
|
|
89
|
+
instanceId: z.ZodString;
|
|
90
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
91
|
+
version: z.ZodString;
|
|
92
|
+
generic_api_key: z.ZodString;
|
|
93
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
94
|
+
connectionId: z.ZodString;
|
|
95
|
+
entityId: z.ZodString;
|
|
96
|
+
instanceId: z.ZodString;
|
|
97
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
98
|
+
version: z.ZodString;
|
|
99
|
+
generic_api_key: z.ZodString;
|
|
100
|
+
}, z.core.$strip>>]>;
|
|
87
101
|
//#endregion
|
|
88
102
|
export { shotstackInspectMedia };
|
|
89
103
|
//# sourceMappingURL=inspect-media.d.mts.map
|
|
@@ -38,7 +38,21 @@ declare const shotstackListSources: import("@keystrokehq/action").WorkflowAction
|
|
|
38
38
|
index?: string | undefined;
|
|
39
39
|
limit?: number | undefined;
|
|
40
40
|
offset?: number | undefined;
|
|
41
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
41
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
42
|
+
connectionId: z.ZodString;
|
|
43
|
+
entityId: z.ZodString;
|
|
44
|
+
instanceId: z.ZodString;
|
|
45
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46
|
+
version: z.ZodString;
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
49
|
+
connectionId: z.ZodString;
|
|
50
|
+
entityId: z.ZodString;
|
|
51
|
+
instanceId: z.ZodString;
|
|
52
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
53
|
+
version: z.ZodString;
|
|
54
|
+
generic_api_key: z.ZodString;
|
|
55
|
+
}, z.core.$strip>>]>;
|
|
42
56
|
//#endregion
|
|
43
57
|
export { shotstackListSources };
|
|
44
58
|
//# sourceMappingURL=list-sources.d.cts.map
|
|
@@ -38,7 +38,21 @@ declare const shotstackListSources: import("@keystrokehq/action").WorkflowAction
|
|
|
38
38
|
index?: string | undefined;
|
|
39
39
|
limit?: number | undefined;
|
|
40
40
|
offset?: number | undefined;
|
|
41
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
41
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
42
|
+
connectionId: z.ZodString;
|
|
43
|
+
entityId: z.ZodString;
|
|
44
|
+
instanceId: z.ZodString;
|
|
45
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46
|
+
version: z.ZodString;
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
49
|
+
connectionId: z.ZodString;
|
|
50
|
+
entityId: z.ZodString;
|
|
51
|
+
instanceId: z.ZodString;
|
|
52
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
53
|
+
version: z.ZodString;
|
|
54
|
+
generic_api_key: z.ZodString;
|
|
55
|
+
}, z.core.$strip>>]>;
|
|
42
56
|
//#endregion
|
|
43
57
|
export { shotstackListSources };
|
|
44
58
|
//# sourceMappingURL=list-sources.d.mts.map
|
|
@@ -3,8 +3,8 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/list-sources2.d.ts
|
|
4
4
|
declare const ShotstackListSources2Input: z.ZodObject<{
|
|
5
5
|
env: z.ZodEnum<{
|
|
6
|
-
v1: "v1";
|
|
7
6
|
stage: "stage";
|
|
7
|
+
v1: "v1";
|
|
8
8
|
}>;
|
|
9
9
|
index: z.ZodOptional<z.ZodString>;
|
|
10
10
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -39,11 +39,25 @@ declare const ShotstackListSources2Output: z.ZodObject<{
|
|
|
39
39
|
}, z.core.$loose>>>;
|
|
40
40
|
}, z.core.$loose>;
|
|
41
41
|
declare const shotstackListSources2: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
42
|
-
env: "
|
|
42
|
+
env: "stage" | "v1";
|
|
43
43
|
index?: string | undefined;
|
|
44
44
|
limit?: number | undefined;
|
|
45
45
|
offset?: number | undefined;
|
|
46
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
46
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
version: z.ZodString;
|
|
52
|
+
generic_api_key: z.ZodString;
|
|
53
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
version: z.ZodString;
|
|
59
|
+
generic_api_key: z.ZodString;
|
|
60
|
+
}, z.core.$strip>>]>;
|
|
47
61
|
//#endregion
|
|
48
62
|
export { shotstackListSources2 };
|
|
49
63
|
//# sourceMappingURL=list-sources2.d.cts.map
|
|
@@ -3,8 +3,8 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/list-sources2.d.ts
|
|
4
4
|
declare const ShotstackListSources2Input: z.ZodObject<{
|
|
5
5
|
env: z.ZodEnum<{
|
|
6
|
-
v1: "v1";
|
|
7
6
|
stage: "stage";
|
|
7
|
+
v1: "v1";
|
|
8
8
|
}>;
|
|
9
9
|
index: z.ZodOptional<z.ZodString>;
|
|
10
10
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -39,11 +39,25 @@ declare const ShotstackListSources2Output: z.ZodObject<{
|
|
|
39
39
|
}, z.core.$loose>>>;
|
|
40
40
|
}, z.core.$loose>;
|
|
41
41
|
declare const shotstackListSources2: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
42
|
-
env: "
|
|
42
|
+
env: "stage" | "v1";
|
|
43
43
|
index?: string | undefined;
|
|
44
44
|
limit?: number | undefined;
|
|
45
45
|
offset?: number | undefined;
|
|
46
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
46
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
version: z.ZodString;
|
|
52
|
+
generic_api_key: z.ZodString;
|
|
53
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
version: z.ZodString;
|
|
59
|
+
generic_api_key: z.ZodString;
|
|
60
|
+
}, z.core.$strip>>]>;
|
|
47
61
|
//#endregion
|
|
48
62
|
export { shotstackListSources2 };
|
|
49
63
|
//# sourceMappingURL=list-sources2.d.mts.map
|
|
@@ -15,7 +15,21 @@ declare const ShotstackListTemplatesOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>>;
|
|
16
16
|
}, z.core.$loose>>;
|
|
17
17
|
}, z.core.$loose>;
|
|
18
|
-
declare const shotstackListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
declare const shotstackListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
version: z.ZodString;
|
|
24
|
+
generic_api_key: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
version: z.ZodString;
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
19
33
|
//#endregion
|
|
20
34
|
export { shotstackListTemplates };
|
|
21
35
|
//# sourceMappingURL=list-templates.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-templates.d.cts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAW3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAM5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"list-templates.d.cts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAW3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAM5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -15,7 +15,21 @@ declare const ShotstackListTemplatesOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>>;
|
|
16
16
|
}, z.core.$loose>>;
|
|
17
17
|
}, z.core.$loose>;
|
|
18
|
-
declare const shotstackListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
declare const shotstackListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
version: z.ZodString;
|
|
24
|
+
generic_api_key: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
version: z.ZodString;
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
19
33
|
//#endregion
|
|
20
34
|
export { shotstackListTemplates };
|
|
21
35
|
//# sourceMappingURL=list-templates.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-templates.d.mts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAW3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAM5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"list-templates.d.mts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAW3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAM5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -3,8 +3,8 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/list-templates2.d.ts
|
|
4
4
|
declare const ShotstackListTemplates2Input: z.ZodObject<{
|
|
5
5
|
env: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
6
|
-
v1: "v1";
|
|
7
6
|
stage: "stage";
|
|
7
|
+
v1: "v1";
|
|
8
8
|
}>>>;
|
|
9
9
|
}, z.core.$strip>;
|
|
10
10
|
declare const ShotstackListTemplates2Output: z.ZodObject<{
|
|
@@ -21,8 +21,22 @@ declare const ShotstackListTemplates2Output: z.ZodObject<{
|
|
|
21
21
|
}, z.core.$loose>>;
|
|
22
22
|
}, z.core.$loose>;
|
|
23
23
|
declare const shotstackListTemplates2: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
|
-
env?: "
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
env?: "stage" | "v1" | undefined;
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
version: z.ZodString;
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
version: z.ZodString;
|
|
38
|
+
generic_api_key: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
26
40
|
//#endregion
|
|
27
41
|
export { shotstackListTemplates2 };
|
|
28
42
|
//# sourceMappingURL=list-templates2.d.cts.map
|
|
@@ -3,8 +3,8 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/list-templates2.d.ts
|
|
4
4
|
declare const ShotstackListTemplates2Input: z.ZodObject<{
|
|
5
5
|
env: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
6
|
-
v1: "v1";
|
|
7
6
|
stage: "stage";
|
|
7
|
+
v1: "v1";
|
|
8
8
|
}>>>;
|
|
9
9
|
}, z.core.$strip>;
|
|
10
10
|
declare const ShotstackListTemplates2Output: z.ZodObject<{
|
|
@@ -21,8 +21,22 @@ declare const ShotstackListTemplates2Output: z.ZodObject<{
|
|
|
21
21
|
}, z.core.$loose>>;
|
|
22
22
|
}, z.core.$loose>;
|
|
23
23
|
declare const shotstackListTemplates2: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
|
-
env?: "
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
env?: "stage" | "v1" | undefined;
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
version: z.ZodString;
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
version: z.ZodString;
|
|
38
|
+
generic_api_key: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
26
40
|
//#endregion
|
|
27
41
|
export { shotstackListTemplates2 };
|
|
28
42
|
//# sourceMappingURL=list-templates2.d.mts.map
|
|
@@ -13,7 +13,21 @@ declare const ShotstackPostUploadOutput: z.ZodObject<{
|
|
|
13
13
|
}, z.core.$loose>>;
|
|
14
14
|
}, z.core.$loose>>;
|
|
15
15
|
}, z.core.$loose>;
|
|
16
|
-
declare const shotstackPostUpload: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
declare const shotstackPostUpload: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
version: z.ZodString;
|
|
22
|
+
generic_api_key: z.ZodString;
|
|
23
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
version: z.ZodString;
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
17
31
|
//#endregion
|
|
18
32
|
export { shotstackPostUpload };
|
|
19
33
|
//# sourceMappingURL=post-upload.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"post-upload.d.cts","names":[],"sources":["../../src/actions/post-upload.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAWxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"post-upload.d.cts","names":[],"sources":["../../src/actions/post-upload.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAWxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -13,7 +13,21 @@ declare const ShotstackPostUploadOutput: z.ZodObject<{
|
|
|
13
13
|
}, z.core.$loose>>;
|
|
14
14
|
}, z.core.$loose>>;
|
|
15
15
|
}, z.core.$loose>;
|
|
16
|
-
declare const shotstackPostUpload: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
declare const shotstackPostUpload: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
version: z.ZodString;
|
|
22
|
+
generic_api_key: z.ZodString;
|
|
23
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
version: z.ZodString;
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
17
31
|
//#endregion
|
|
18
32
|
export { shotstackPostUpload };
|
|
19
33
|
//# sourceMappingURL=post-upload.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"post-upload.d.mts","names":[],"sources":["../../src/actions/post-upload.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAWxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"post-upload.d.mts","names":[],"sources":["../../src/actions/post-upload.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAWxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -21,7 +21,21 @@ declare const shotstackRenderVideo: import("@keystrokehq/action").WorkflowAction
|
|
|
21
21
|
output: Record<string, unknown>;
|
|
22
22
|
timeline: Record<string, unknown>;
|
|
23
23
|
callback?: string | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
version: z.ZodString;
|
|
30
|
+
generic_api_key: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
version: z.ZodString;
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
25
39
|
//#endregion
|
|
26
40
|
export { shotstackRenderVideo };
|
|
27
41
|
//# sourceMappingURL=render-video.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"render-video.d.cts","names":[],"sources":["../../src/actions/render-video.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;cAYzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;cAM1B,oBAAA,gCAAoB,wBAAA
|
|
1
|
+
{"version":3,"file":"render-video.d.cts","names":[],"sources":["../../src/actions/render-video.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;cAYzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;cAM1B,oBAAA,gCAAoB,wBAAA"}
|
|
@@ -21,7 +21,21 @@ declare const shotstackRenderVideo: import("@keystrokehq/action").WorkflowAction
|
|
|
21
21
|
output: Record<string, unknown>;
|
|
22
22
|
timeline: Record<string, unknown>;
|
|
23
23
|
callback?: string | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
version: z.ZodString;
|
|
30
|
+
generic_api_key: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
version: z.ZodString;
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
25
39
|
//#endregion
|
|
26
40
|
export { shotstackRenderVideo };
|
|
27
41
|
//# sourceMappingURL=render-video.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"render-video.d.mts","names":[],"sources":["../../src/actions/render-video.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;cAYzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;cAM1B,oBAAA,gCAAoB,wBAAA
|
|
1
|
+
{"version":3,"file":"render-video.d.mts","names":[],"sources":["../../src/actions/render-video.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;cAYzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;cAM1B,oBAAA,gCAAoB,wBAAA"}
|
|
@@ -30,7 +30,21 @@ declare const shotstackTransferAsset: import("@keystrokehq/action").WorkflowActi
|
|
|
30
30
|
exclude?: boolean | undefined;
|
|
31
31
|
options?: Record<string, unknown> | undefined;
|
|
32
32
|
}[];
|
|
33
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
33
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
version: z.ZodString;
|
|
39
|
+
generic_api_key: z.ZodString;
|
|
40
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
41
|
+
connectionId: z.ZodString;
|
|
42
|
+
entityId: z.ZodString;
|
|
43
|
+
instanceId: z.ZodString;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
45
|
+
version: z.ZodString;
|
|
46
|
+
generic_api_key: z.ZodString;
|
|
47
|
+
}, z.core.$strip>>]>;
|
|
34
48
|
//#endregion
|
|
35
49
|
export { shotstackTransferAsset };
|
|
36
50
|
//# sourceMappingURL=transfer-asset.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transfer-asset.d.cts","names":[],"sources":["../../src/actions/transfer-asset.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;cAmB3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;cAI5B,sBAAA,gCAAsB,wBAAA
|
|
1
|
+
{"version":3,"file":"transfer-asset.d.cts","names":[],"sources":["../../src/actions/transfer-asset.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;cAmB3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;cAI5B,sBAAA,gCAAsB,wBAAA"}
|
|
@@ -30,7 +30,21 @@ declare const shotstackTransferAsset: import("@keystrokehq/action").WorkflowActi
|
|
|
30
30
|
exclude?: boolean | undefined;
|
|
31
31
|
options?: Record<string, unknown> | undefined;
|
|
32
32
|
}[];
|
|
33
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
33
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
version: z.ZodString;
|
|
39
|
+
generic_api_key: z.ZodString;
|
|
40
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
41
|
+
connectionId: z.ZodString;
|
|
42
|
+
entityId: z.ZodString;
|
|
43
|
+
instanceId: z.ZodString;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
45
|
+
version: z.ZodString;
|
|
46
|
+
generic_api_key: z.ZodString;
|
|
47
|
+
}, z.core.$strip>>]>;
|
|
34
48
|
//#endregion
|
|
35
49
|
export { shotstackTransferAsset };
|
|
36
50
|
//# sourceMappingURL=transfer-asset.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transfer-asset.d.mts","names":[],"sources":["../../src/actions/transfer-asset.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;cAmB3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;cAI5B,sBAAA,gCAAsB,wBAAA
|
|
1
|
+
{"version":3,"file":"transfer-asset.d.mts","names":[],"sources":["../../src/actions/transfer-asset.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;cAmB3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;cAI5B,sBAAA,gCAAsB,wBAAA"}
|
|
@@ -18,7 +18,21 @@ declare const shotstackUpdateTemplate: import("@keystrokehq/action").WorkflowAct
|
|
|
18
18
|
id: string;
|
|
19
19
|
name: string;
|
|
20
20
|
template: Record<string, unknown>;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
version: z.ZodString;
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
version: z.ZodString;
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { shotstackUpdateTemplate };
|
|
24
38
|
//# sourceMappingURL=update-template.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-template.d.cts","names":[],"sources":["../../src/actions/update-template.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAS5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;cAM7B,uBAAA,gCAAuB,wBAAA
|
|
1
|
+
{"version":3,"file":"update-template.d.cts","names":[],"sources":["../../src/actions/update-template.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAS5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;cAM7B,uBAAA,gCAAuB,wBAAA"}
|
|
@@ -18,7 +18,21 @@ declare const shotstackUpdateTemplate: import("@keystrokehq/action").WorkflowAct
|
|
|
18
18
|
id: string;
|
|
19
19
|
name: string;
|
|
20
20
|
template: Record<string, unknown>;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
version: z.ZodString;
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"shotstack", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
version: z.ZodString;
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { shotstackUpdateTemplate };
|
|
24
38
|
//# sourceMappingURL=update-template.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-template.d.mts","names":[],"sources":["../../src/actions/update-template.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAS5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;cAM7B,uBAAA,gCAAuB,wBAAA
|
|
1
|
+
{"version":3,"file":"update-template.d.mts","names":[],"sources":["../../src/actions/update-template.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAS5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;cAM7B,uBAAA,gCAAuB,wBAAA"}
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
+
let zod = require("zod");
|
|
1
3
|
//#region src/app.ts
|
|
2
|
-
const shotstack = (0,
|
|
4
|
+
const shotstack = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "shotstack",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: {
|
|
8
|
+
version: zod.z.string(),
|
|
9
|
+
generic_api_key: zod.z.string()
|
|
10
|
+
}
|
|
5
11
|
});
|
|
6
12
|
//#endregion
|
|
7
13
|
exports.shotstack = shotstack;
|
package/dist/app.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const shotstack = defineApp({\n slug: \"shotstack\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const shotstack = defineApp({\n slug: \"shotstack\",\n auth: \"keystroke\",\n credential: {\n version: z.string(),\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,aAAA,GAAA,2BAAA,UAAA,CAAsB;CACjC,MAAM;CACN,MAAM;CACN,YAAY;EACV,SAASA,IAAAA,EAAE,OAAO;EAClB,iBAAiBA,IAAAA,EAAE,OAAO;CAC5B;AACF,CAAC"}
|