@keystrokehq/typeform 0.0.6-rename-t1.0 → 0.0.7
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/_official/index.d.mts +5 -5
- package/dist/_official/index.mjs +1 -1
- package/dist/accounts.mjs +1 -1
- package/dist/client.mjs +1 -1
- package/dist/connection.mjs +1 -1
- package/dist/{factory-B0_SfsTg.mjs → factory-BXLrSKVP.mjs} +1 -1
- package/dist/forms.mjs +1 -1
- package/dist/images.mjs +1 -1
- package/dist/insights.mjs +1 -1
- package/dist/{integration-Bd4eVc1r.mjs → integration-CiFwQLkM.mjs} +8 -8
- package/dist/responses.mjs +1 -1
- package/dist/themes.mjs +1 -1
- package/dist/videos.mjs +1 -1
- package/dist/webhooks.mjs +1 -1
- package/dist/workspaces.mjs +1 -1
- package/package.json +4 -4
|
@@ -19,12 +19,12 @@ declare const typeformOfficialProviderSeed: {
|
|
|
19
19
|
readonly displayName: "Typeform Platform";
|
|
20
20
|
readonly credentialSetName: "Keystroke Typeform Platform App";
|
|
21
21
|
readonly envShape: {
|
|
22
|
-
readonly
|
|
23
|
-
readonly
|
|
24
|
-
readonly
|
|
22
|
+
readonly KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_ID: z.ZodOptional<z.ZodString>;
|
|
23
|
+
readonly KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_SECRET: z.ZodOptional<z.ZodString>;
|
|
24
|
+
readonly KEYSTROKE_OFFICIAL_TYPEFORM_WEBHOOK_SECRET: z.ZodOptional<z.ZodString>;
|
|
25
25
|
};
|
|
26
|
-
readonly requiredEnvKeys: readonly ["
|
|
27
|
-
readonly externalAppIdEnvKey: "
|
|
26
|
+
readonly requiredEnvKeys: readonly ["KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_ID", "KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_SECRET"];
|
|
27
|
+
readonly externalAppIdEnvKey: "KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_ID";
|
|
28
28
|
readonly buildCredentials: (env: Record<string, string | undefined>) => {
|
|
29
29
|
webhookSecret?: string | undefined;
|
|
30
30
|
clientId: string | undefined;
|
package/dist/_official/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as typeformOfficialProviderSeed, i as typeformAppCredentialSet, n as typeformBundle, r as typeformOfficialIntegration } from "../integration-
|
|
1
|
+
import { a as typeformOfficialProviderSeed, i as typeformAppCredentialSet, n as typeformBundle, r as typeformOfficialIntegration } from "../integration-CiFwQLkM.mjs";
|
|
2
2
|
|
|
3
3
|
export { typeformAppCredentialSet, typeformBundle, typeformOfficialIntegration, typeformOfficialProviderSeed };
|
package/dist/accounts.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createTypeformClient } from "./client.mjs";
|
|
2
2
|
import { typeformAccountSchema } from "./schemas/index.mjs";
|
|
3
|
-
import { t as typeformOperation } from "./factory-
|
|
3
|
+
import { t as typeformOperation } from "./factory-BXLrSKVP.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
|
6
6
|
//#region src/accounts.ts
|
package/dist/client.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as typeform } from "./integration-
|
|
1
|
+
import { t as typeform } from "./integration-CiFwQLkM.mjs";
|
|
2
2
|
import { n as TYPEFORM_CONNECT_HINT, t as TYPEFORM_API_BASE_URL } from "./shared-D0ONnQL8.mjs";
|
|
3
3
|
import { CredentialRevokedError } from "@keystrokehq/core/errors";
|
|
4
4
|
import { createErrorNormalizingProxy } from "@keystrokehq/integration-authoring";
|
package/dist/connection.mjs
CHANGED
package/dist/forms.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as mapPagePagination, o as omitUndefined, r as asRecord } from "./shared-D0ONnQL8.mjs";
|
|
2
2
|
import { createTypeformClient } from "./client.mjs";
|
|
3
3
|
import { typeformFormListSchema, typeformFormRefSchema, typeformFormSchema, typeformIdentifierSchema, typeformLooseObjectSchema } from "./schemas/index.mjs";
|
|
4
|
-
import { t as typeformOperation } from "./factory-
|
|
4
|
+
import { t as typeformOperation } from "./factory-BXLrSKVP.mjs";
|
|
5
5
|
import { z } from "zod";
|
|
6
6
|
|
|
7
7
|
//#region src/forms.ts
|
package/dist/images.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { o as omitUndefined, r as asRecord } from "./shared-D0ONnQL8.mjs";
|
|
2
2
|
import { createTypeformClient } from "./client.mjs";
|
|
3
3
|
import { typeformIdentifierSchema, typeformImageBackgroundSizeSchema, typeformImageChoiceSizeSchema, typeformImageListSchema, typeformImageSchema, typeformImageSizeSchema } from "./schemas/index.mjs";
|
|
4
|
-
import { t as typeformOperation } from "./factory-
|
|
4
|
+
import { t as typeformOperation } from "./factory-BXLrSKVP.mjs";
|
|
5
5
|
import { z } from "zod";
|
|
6
6
|
|
|
7
7
|
//#region src/images.ts
|
package/dist/insights.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createTypeformClient } from "./client.mjs";
|
|
2
2
|
import { typeformFormMessagesSchema, typeformIdentifierSchema } from "./schemas/index.mjs";
|
|
3
|
-
import { t as typeformOperation } from "./factory-
|
|
3
|
+
import { t as typeformOperation } from "./factory-BXLrSKVP.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
|
6
6
|
//#region src/insights.ts
|
|
@@ -19,16 +19,16 @@ const typeformOfficialProviderSeed = {
|
|
|
19
19
|
displayName: "Typeform Platform",
|
|
20
20
|
credentialSetName: "Keystroke Typeform Platform App",
|
|
21
21
|
envShape: {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_ID: z.string().optional(),
|
|
23
|
+
KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_SECRET: z.string().optional(),
|
|
24
|
+
KEYSTROKE_OFFICIAL_TYPEFORM_WEBHOOK_SECRET: z.string().optional()
|
|
25
25
|
},
|
|
26
|
-
requiredEnvKeys: ["
|
|
27
|
-
externalAppIdEnvKey: "
|
|
26
|
+
requiredEnvKeys: ["KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_ID", "KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_SECRET"],
|
|
27
|
+
externalAppIdEnvKey: "KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_ID",
|
|
28
28
|
buildCredentials: (env) => ({
|
|
29
|
-
clientId: env.
|
|
30
|
-
clientSecret: env.
|
|
31
|
-
...env.
|
|
29
|
+
clientId: env.KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_ID,
|
|
30
|
+
clientSecret: env.KEYSTROKE_OFFICIAL_TYPEFORM_CLIENT_SECRET,
|
|
31
|
+
...env.KEYSTROKE_OFFICIAL_TYPEFORM_WEBHOOK_SECRET ? { webhookSecret: env.KEYSTROKE_OFFICIAL_TYPEFORM_WEBHOOK_SECRET } : {}
|
|
32
32
|
})
|
|
33
33
|
};
|
|
34
34
|
|
package/dist/responses.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { i as mapCursorPagination, o as omitUndefined, r as asRecord } from "./shared-D0ONnQL8.mjs";
|
|
2
2
|
import { createTypeformClient } from "./client.mjs";
|
|
3
3
|
import { typeformIdentifierSchema, typeformResponseListSchema, typeformResponseSchema } from "./schemas/index.mjs";
|
|
4
|
-
import { t as typeformOperation } from "./factory-
|
|
4
|
+
import { t as typeformOperation } from "./factory-BXLrSKVP.mjs";
|
|
5
5
|
import { z } from "zod";
|
|
6
6
|
|
|
7
7
|
//#region src/responses.ts
|
package/dist/themes.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as mapPagePagination, o as omitUndefined, r as asRecord } from "./shared-D0ONnQL8.mjs";
|
|
2
2
|
import { createTypeformClient } from "./client.mjs";
|
|
3
3
|
import { typeformIdentifierSchema, typeformLooseObjectSchema, typeformThemeColorsSchema, typeformThemeListSchema, typeformThemeSchema } from "./schemas/index.mjs";
|
|
4
|
-
import { t as typeformOperation } from "./factory-
|
|
4
|
+
import { t as typeformOperation } from "./factory-BXLrSKVP.mjs";
|
|
5
5
|
import { z } from "zod";
|
|
6
6
|
|
|
7
7
|
//#region src/themes.ts
|
package/dist/videos.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { o as omitUndefined } from "./shared-D0ONnQL8.mjs";
|
|
2
2
|
import { createTypeformClient } from "./client.mjs";
|
|
3
3
|
import { typeformVideoSchema } from "./schemas/index.mjs";
|
|
4
|
-
import { t as typeformOperation } from "./factory-
|
|
4
|
+
import { t as typeformOperation } from "./factory-BXLrSKVP.mjs";
|
|
5
5
|
import { z } from "zod";
|
|
6
6
|
|
|
7
7
|
//#region src/videos.ts
|
package/dist/webhooks.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { o as omitUndefined, r as asRecord } from "./shared-D0ONnQL8.mjs";
|
|
2
2
|
import { createTypeformClient } from "./client.mjs";
|
|
3
3
|
import { typeformIdentifierSchema, typeformWebhookListSchema, typeformWebhookSchema } from "./schemas/index.mjs";
|
|
4
|
-
import { t as typeformOperation } from "./factory-
|
|
4
|
+
import { t as typeformOperation } from "./factory-BXLrSKVP.mjs";
|
|
5
5
|
import { z } from "zod";
|
|
6
6
|
|
|
7
7
|
//#region src/webhooks.ts
|
package/dist/workspaces.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as mapPagePagination, o as omitUndefined, r as asRecord } from "./shared-D0ONnQL8.mjs";
|
|
2
2
|
import { createTypeformClient } from "./client.mjs";
|
|
3
3
|
import { typeformIdentifierSchema, typeformWorkspaceListSchema, typeformWorkspaceSchema } from "./schemas/index.mjs";
|
|
4
|
-
import { t as typeformOperation } from "./factory-
|
|
4
|
+
import { t as typeformOperation } from "./factory-BXLrSKVP.mjs";
|
|
5
5
|
import { z } from "zod";
|
|
6
6
|
|
|
7
7
|
//#region src/workspaces.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/typeform",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -84,18 +84,18 @@
|
|
|
84
84
|
"LICENSE"
|
|
85
85
|
],
|
|
86
86
|
"dependencies": {
|
|
87
|
-
"@keystrokehq/integration-authoring": "^0.0.
|
|
87
|
+
"@keystrokehq/integration-authoring": "^0.0.7",
|
|
88
88
|
"zod": "^4.3.6"
|
|
89
89
|
},
|
|
90
90
|
"peerDependencies": {
|
|
91
|
-
"@keystrokehq/core": ">=0.0.
|
|
91
|
+
"@keystrokehq/core": ">=0.0.8 <0.1.0"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"@types/node": "^22.19.11",
|
|
95
95
|
"tsdown": "^0.20.3",
|
|
96
96
|
"typescript": "^5.9.3",
|
|
97
97
|
"vitest": "^4.0.18",
|
|
98
|
-
"@keystrokehq/core": "^0.0.
|
|
98
|
+
"@keystrokehq/core": "^0.0.8",
|
|
99
99
|
"@keystrokehq/test-utils": "0.0.0",
|
|
100
100
|
"@keystrokehq/typescript-config": "0.0.0"
|
|
101
101
|
},
|