@keystrokehq/typeform 0.0.7 → 0.0.8
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/accounts.mjs +1 -1
- package/dist/forms.mjs +6 -6
- package/dist/images.mjs +6 -6
- package/dist/insights.mjs +2 -2
- package/dist/responses.mjs +3 -3
- package/dist/themes.mjs +6 -6
- package/dist/videos.mjs +1 -1
- package/dist/webhooks.mjs +4 -4
- package/dist/workspaces.mjs +6 -6
- package/package.json +2 -2
package/dist/accounts.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { z } from "zod";
|
|
|
5
5
|
|
|
6
6
|
//#region src/accounts.ts
|
|
7
7
|
const getAboutMe = typeformOperation({
|
|
8
|
-
id: "
|
|
8
|
+
id: "typeform.get-about-me",
|
|
9
9
|
name: "Get About Me",
|
|
10
10
|
description: "Retrieve basic information about the connected Typeform account.",
|
|
11
11
|
input: z.object({}),
|
package/dist/forms.mjs
CHANGED
|
@@ -67,7 +67,7 @@ function mapFormList(raw) {
|
|
|
67
67
|
});
|
|
68
68
|
}
|
|
69
69
|
const listForms = typeformOperation({
|
|
70
|
-
id: "
|
|
70
|
+
id: "typeform.list-forms",
|
|
71
71
|
name: "List Forms",
|
|
72
72
|
description: "List Typeform forms visible to the connected account.",
|
|
73
73
|
input: listFormsInputSchema,
|
|
@@ -82,7 +82,7 @@ const listForms = typeformOperation({
|
|
|
82
82
|
}
|
|
83
83
|
});
|
|
84
84
|
const getForm = typeformOperation({
|
|
85
|
-
id: "
|
|
85
|
+
id: "typeform.get-form",
|
|
86
86
|
name: "Get Form",
|
|
87
87
|
description: "Fetch a single Typeform form by id.",
|
|
88
88
|
input: getFormInputSchema,
|
|
@@ -93,7 +93,7 @@ const getForm = typeformOperation({
|
|
|
93
93
|
}
|
|
94
94
|
});
|
|
95
95
|
const createForm = typeformOperation({
|
|
96
|
-
id: "
|
|
96
|
+
id: "typeform.create-form",
|
|
97
97
|
name: "Create Form",
|
|
98
98
|
description: "Create a new Typeform form in the connected account.",
|
|
99
99
|
input: createFormInputSchema,
|
|
@@ -105,7 +105,7 @@ const createForm = typeformOperation({
|
|
|
105
105
|
}
|
|
106
106
|
});
|
|
107
107
|
const updateForm = typeformOperation({
|
|
108
|
-
id: "
|
|
108
|
+
id: "typeform.update-form",
|
|
109
109
|
name: "Update Form",
|
|
110
110
|
description: "Replace a Typeform form by id (full PUT).",
|
|
111
111
|
input: updateFormInputSchema,
|
|
@@ -119,7 +119,7 @@ const updateForm = typeformOperation({
|
|
|
119
119
|
}
|
|
120
120
|
});
|
|
121
121
|
const patchForm = typeformOperation({
|
|
122
|
-
id: "
|
|
122
|
+
id: "typeform.patch-form",
|
|
123
123
|
name: "Patch Form",
|
|
124
124
|
description: "Apply a JSON Patch (RFC 6902) operation set to a Typeform form.",
|
|
125
125
|
input: patchFormInputSchema,
|
|
@@ -131,7 +131,7 @@ const patchForm = typeformOperation({
|
|
|
131
131
|
}
|
|
132
132
|
});
|
|
133
133
|
const deleteForm = typeformOperation({
|
|
134
|
-
id: "
|
|
134
|
+
id: "typeform.delete-form",
|
|
135
135
|
name: "Delete Form",
|
|
136
136
|
description: "Delete a Typeform form by id. Deletion is irreversible.",
|
|
137
137
|
input: deleteFormInputSchema,
|
package/dist/images.mjs
CHANGED
|
@@ -25,7 +25,7 @@ const getChoiceImageBySizeInputSchema = z.object({
|
|
|
25
25
|
});
|
|
26
26
|
const deleteImageInputSchema = z.object({ imageId: typeformIdentifierSchema });
|
|
27
27
|
const listImages = typeformOperation({
|
|
28
|
-
id: "
|
|
28
|
+
id: "typeform.list-images",
|
|
29
29
|
name: "List Images",
|
|
30
30
|
description: "List image assets in the connected Typeform account.",
|
|
31
31
|
input: listImagesInputSchema,
|
|
@@ -38,7 +38,7 @@ const listImages = typeformOperation({
|
|
|
38
38
|
}
|
|
39
39
|
});
|
|
40
40
|
const createImage = typeformOperation({
|
|
41
|
-
id: "
|
|
41
|
+
id: "typeform.create-image",
|
|
42
42
|
name: "Create Image",
|
|
43
43
|
description: "Upload a new image asset to the Typeform account (base64 or URL-sourced).",
|
|
44
44
|
input: createImageInputSchema,
|
|
@@ -55,7 +55,7 @@ const createImage = typeformOperation({
|
|
|
55
55
|
}
|
|
56
56
|
});
|
|
57
57
|
const getImageBySize = typeformOperation({
|
|
58
|
-
id: "
|
|
58
|
+
id: "typeform.get-image-by-size",
|
|
59
59
|
name: "Get Image by Size",
|
|
60
60
|
description: "Fetch a sized variant of an image asset.",
|
|
61
61
|
input: getImageBySizeInputSchema,
|
|
@@ -66,7 +66,7 @@ const getImageBySize = typeformOperation({
|
|
|
66
66
|
}
|
|
67
67
|
});
|
|
68
68
|
const getBackgroundBySize = typeformOperation({
|
|
69
|
-
id: "
|
|
69
|
+
id: "typeform.get-background-by-size",
|
|
70
70
|
name: "Get Background Image by Size",
|
|
71
71
|
description: "Fetch a sized variant of a background image asset.",
|
|
72
72
|
input: getBackgroundBySizeInputSchema,
|
|
@@ -77,7 +77,7 @@ const getBackgroundBySize = typeformOperation({
|
|
|
77
77
|
}
|
|
78
78
|
});
|
|
79
79
|
const getChoiceImageBySize = typeformOperation({
|
|
80
|
-
id: "
|
|
80
|
+
id: "typeform.get-choice-image-by-size",
|
|
81
81
|
name: "Get Choice Image by Size",
|
|
82
82
|
description: "Fetch a sized variant of a picture-choice image asset.",
|
|
83
83
|
input: getChoiceImageBySizeInputSchema,
|
|
@@ -88,7 +88,7 @@ const getChoiceImageBySize = typeformOperation({
|
|
|
88
88
|
}
|
|
89
89
|
});
|
|
90
90
|
const deleteImage = typeformOperation({
|
|
91
|
-
id: "
|
|
91
|
+
id: "typeform.delete-image",
|
|
92
92
|
name: "Delete Image",
|
|
93
93
|
description: "Delete an image asset.",
|
|
94
94
|
input: deleteImageInputSchema,
|
package/dist/insights.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const updateFormMessagesInputSchema = z.object({
|
|
|
10
10
|
messages: z.record(z.string(), z.string())
|
|
11
11
|
});
|
|
12
12
|
const getFormMessages = typeformOperation({
|
|
13
|
-
id: "
|
|
13
|
+
id: "typeform.get-form-messages",
|
|
14
14
|
name: "Get Form Messages",
|
|
15
15
|
description: "Retrieve the customizable copy overrides (messages) for a Typeform form.",
|
|
16
16
|
input: getFormMessagesInputSchema,
|
|
@@ -21,7 +21,7 @@ const getFormMessages = typeformOperation({
|
|
|
21
21
|
}
|
|
22
22
|
});
|
|
23
23
|
const updateFormMessages = typeformOperation({
|
|
24
|
-
id: "
|
|
24
|
+
id: "typeform.update-form-messages",
|
|
25
25
|
name: "Update Form Messages",
|
|
26
26
|
description: "Replace the customizable copy overrides (messages) for a Typeform form.",
|
|
27
27
|
input: updateFormMessagesInputSchema,
|
package/dist/responses.mjs
CHANGED
|
@@ -38,7 +38,7 @@ const responseFileOutputSchema = z.object({
|
|
|
38
38
|
note: z.string()
|
|
39
39
|
});
|
|
40
40
|
const getFormResponses = typeformOperation({
|
|
41
|
-
id: "
|
|
41
|
+
id: "typeform.get-form-responses",
|
|
42
42
|
name: "List Form Responses",
|
|
43
43
|
description: "List responses for a Typeform form using cursor pagination.",
|
|
44
44
|
input: listResponsesInputSchema,
|
|
@@ -66,7 +66,7 @@ const getFormResponses = typeformOperation({
|
|
|
66
66
|
}
|
|
67
67
|
});
|
|
68
68
|
const deleteResponses = typeformOperation({
|
|
69
|
-
id: "
|
|
69
|
+
id: "typeform.delete-responses",
|
|
70
70
|
name: "Delete Responses",
|
|
71
71
|
description: "Delete form responses by token. Deletion is irreversible.",
|
|
72
72
|
input: deleteResponsesInputSchema,
|
|
@@ -84,7 +84,7 @@ const deleteResponses = typeformOperation({
|
|
|
84
84
|
}
|
|
85
85
|
});
|
|
86
86
|
const getAllResponseFiles = typeformOperation({
|
|
87
|
-
id: "
|
|
87
|
+
id: "typeform.get-all-response-files",
|
|
88
88
|
name: "Get Response File Download URL",
|
|
89
89
|
description: "Resolve the signed download URL for a file-upload answer in a Typeform response. Signed URLs expire quickly; fetch the content immediately.",
|
|
90
90
|
input: getAllResponseFilesInputSchema,
|
package/dist/themes.mjs
CHANGED
|
@@ -49,7 +49,7 @@ function buildThemeBody(input) {
|
|
|
49
49
|
});
|
|
50
50
|
}
|
|
51
51
|
const listThemes = typeformOperation({
|
|
52
|
-
id: "
|
|
52
|
+
id: "typeform.list-themes",
|
|
53
53
|
name: "List Themes",
|
|
54
54
|
description: "List themes in the connected Typeform account.",
|
|
55
55
|
input: listThemesInputSchema,
|
|
@@ -67,7 +67,7 @@ const listThemes = typeformOperation({
|
|
|
67
67
|
}
|
|
68
68
|
});
|
|
69
69
|
const getTheme = typeformOperation({
|
|
70
|
-
id: "
|
|
70
|
+
id: "typeform.get-theme",
|
|
71
71
|
name: "Get Theme",
|
|
72
72
|
description: "Fetch a Typeform theme by id.",
|
|
73
73
|
input: getThemeInputSchema,
|
|
@@ -78,7 +78,7 @@ const getTheme = typeformOperation({
|
|
|
78
78
|
}
|
|
79
79
|
});
|
|
80
80
|
const createTheme = typeformOperation({
|
|
81
|
-
id: "
|
|
81
|
+
id: "typeform.create-theme",
|
|
82
82
|
name: "Create Theme",
|
|
83
83
|
description: "Create a Typeform theme.",
|
|
84
84
|
input: themeBodySchema,
|
|
@@ -90,7 +90,7 @@ const createTheme = typeformOperation({
|
|
|
90
90
|
}
|
|
91
91
|
});
|
|
92
92
|
const updateTheme = typeformOperation({
|
|
93
|
-
id: "
|
|
93
|
+
id: "typeform.update-theme",
|
|
94
94
|
name: "Update Theme",
|
|
95
95
|
description: "Replace a Typeform theme by id (full PUT).",
|
|
96
96
|
input: updateThemeInputSchema,
|
|
@@ -104,7 +104,7 @@ const updateTheme = typeformOperation({
|
|
|
104
104
|
}
|
|
105
105
|
});
|
|
106
106
|
const patchTheme = typeformOperation({
|
|
107
|
-
id: "
|
|
107
|
+
id: "typeform.patch-theme",
|
|
108
108
|
name: "Patch Theme",
|
|
109
109
|
description: "Apply a JSON Patch operation set to a Typeform theme.",
|
|
110
110
|
input: patchThemeInputSchema,
|
|
@@ -116,7 +116,7 @@ const patchTheme = typeformOperation({
|
|
|
116
116
|
}
|
|
117
117
|
});
|
|
118
118
|
const deleteTheme = typeformOperation({
|
|
119
|
-
id: "
|
|
119
|
+
id: "typeform.delete-theme",
|
|
120
120
|
name: "Delete Theme",
|
|
121
121
|
description: "Delete a Typeform theme.",
|
|
122
122
|
input: deleteThemeInputSchema,
|
package/dist/videos.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const uploadVideoInputSchema = z.object({
|
|
|
10
10
|
url: z.string().trim().min(1).optional()
|
|
11
11
|
});
|
|
12
12
|
const uploadVideo = typeformOperation({
|
|
13
|
-
id: "
|
|
13
|
+
id: "typeform.upload-video",
|
|
14
14
|
name: "Upload Video",
|
|
15
15
|
description: "Upload a video asset to the Typeform account (enterprise plan required).",
|
|
16
16
|
input: uploadVideoInputSchema,
|
package/dist/webhooks.mjs
CHANGED
|
@@ -23,7 +23,7 @@ const deleteWebhookInputSchema = z.object({
|
|
|
23
23
|
tag: z.string().trim().min(1)
|
|
24
24
|
});
|
|
25
25
|
const listWebhooks = typeformOperation({
|
|
26
|
-
id: "
|
|
26
|
+
id: "typeform.list-webhooks",
|
|
27
27
|
name: "List Webhooks",
|
|
28
28
|
description: "List webhooks currently registered on a Typeform form.",
|
|
29
29
|
input: listWebhooksInputSchema,
|
|
@@ -35,7 +35,7 @@ const listWebhooks = typeformOperation({
|
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
37
|
const getWebhook = typeformOperation({
|
|
38
|
-
id: "
|
|
38
|
+
id: "typeform.get-webhook",
|
|
39
39
|
name: "Get Webhook",
|
|
40
40
|
description: "Fetch a single Typeform webhook by form_id + tag.",
|
|
41
41
|
input: getWebhookInputSchema,
|
|
@@ -46,7 +46,7 @@ const getWebhook = typeformOperation({
|
|
|
46
46
|
}
|
|
47
47
|
});
|
|
48
48
|
const createOrUpdateWebhook = typeformOperation({
|
|
49
|
-
id: "
|
|
49
|
+
id: "typeform.create-or-update-webhook",
|
|
50
50
|
name: "Create or Update Webhook",
|
|
51
51
|
description: "Create or update a signed webhook subscription on a Typeform form. Signing is required.",
|
|
52
52
|
input: createOrUpdateWebhookInputSchema,
|
|
@@ -63,7 +63,7 @@ const createOrUpdateWebhook = typeformOperation({
|
|
|
63
63
|
}
|
|
64
64
|
});
|
|
65
65
|
const deleteWebhook = typeformOperation({
|
|
66
|
-
id: "
|
|
66
|
+
id: "typeform.delete-webhook",
|
|
67
67
|
name: "Delete Webhook",
|
|
68
68
|
description: "Delete a Typeform webhook subscription.",
|
|
69
69
|
input: deleteWebhookInputSchema,
|
package/dist/workspaces.mjs
CHANGED
|
@@ -34,7 +34,7 @@ const updateWorkspaceInputSchema = z.object({
|
|
|
34
34
|
});
|
|
35
35
|
const deleteWorkspaceInputSchema = z.object({ workspaceId: typeformIdentifierSchema });
|
|
36
36
|
const listWorkspaces = typeformOperation({
|
|
37
|
-
id: "
|
|
37
|
+
id: "typeform.list-workspaces",
|
|
38
38
|
name: "List Workspaces",
|
|
39
39
|
description: "List workspaces in the connected Typeform account.",
|
|
40
40
|
input: listWorkspacesInputSchema,
|
|
@@ -53,7 +53,7 @@ const listWorkspaces = typeformOperation({
|
|
|
53
53
|
}
|
|
54
54
|
});
|
|
55
55
|
const getWorkspace = typeformOperation({
|
|
56
|
-
id: "
|
|
56
|
+
id: "typeform.get-workspace",
|
|
57
57
|
name: "Get Workspace",
|
|
58
58
|
description: "Fetch a Typeform workspace by id.",
|
|
59
59
|
input: getWorkspaceInputSchema,
|
|
@@ -64,7 +64,7 @@ const getWorkspace = typeformOperation({
|
|
|
64
64
|
}
|
|
65
65
|
});
|
|
66
66
|
const createWorkspace = typeformOperation({
|
|
67
|
-
id: "
|
|
67
|
+
id: "typeform.create-workspace",
|
|
68
68
|
name: "Create Workspace",
|
|
69
69
|
description: "Create a new Typeform workspace in the connected account.",
|
|
70
70
|
input: createWorkspaceInputSchema,
|
|
@@ -76,7 +76,7 @@ const createWorkspace = typeformOperation({
|
|
|
76
76
|
}
|
|
77
77
|
});
|
|
78
78
|
const createAccountWorkspace = typeformOperation({
|
|
79
|
-
id: "
|
|
79
|
+
id: "typeform.create-account-workspace",
|
|
80
80
|
name: "Create Account Workspace",
|
|
81
81
|
description: "Create a new Typeform workspace attached to a specific account (multi-account installs).",
|
|
82
82
|
input: createAccountWorkspaceInputSchema,
|
|
@@ -91,7 +91,7 @@ const createAccountWorkspace = typeformOperation({
|
|
|
91
91
|
}
|
|
92
92
|
});
|
|
93
93
|
const updateWorkspace = typeformOperation({
|
|
94
|
-
id: "
|
|
94
|
+
id: "typeform.update-workspace",
|
|
95
95
|
name: "Update Workspace",
|
|
96
96
|
description: "Apply a JSON Patch operation set to a Typeform workspace.",
|
|
97
97
|
input: updateWorkspaceInputSchema,
|
|
@@ -103,7 +103,7 @@ const updateWorkspace = typeformOperation({
|
|
|
103
103
|
}
|
|
104
104
|
});
|
|
105
105
|
const deleteWorkspace = typeformOperation({
|
|
106
|
-
id: "
|
|
106
|
+
id: "typeform.delete-workspace",
|
|
107
107
|
name: "Delete Workspace",
|
|
108
108
|
description: "Delete a Typeform workspace.",
|
|
109
109
|
input: deleteWorkspaceInputSchema,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/typeform",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"LICENSE"
|
|
85
85
|
],
|
|
86
86
|
"dependencies": {
|
|
87
|
-
"@keystrokehq/integration-authoring": "^0.0.
|
|
87
|
+
"@keystrokehq/integration-authoring": "^0.0.8",
|
|
88
88
|
"zod": "^4.3.6"
|
|
89
89
|
},
|
|
90
90
|
"peerDependencies": {
|