@keystrokehq/typeform 0.0.5 → 0.0.6-rename-t1.1
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 +7 -7
- package/dist/_official/index.mjs +2 -2
- package/dist/accounts.mjs +1 -1
- package/dist/client.mjs +1 -1
- package/dist/connection.mjs +1 -1
- package/dist/{factory-C-RzHxwx.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-BZVxAx4l.mjs → integration-CiFwQLkM.mjs} +10 -10
- 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 +2 -2
|
@@ -13,18 +13,18 @@ declare const typeformAppCredentialSet: CredentialSet<"keystroke:typeform-app",
|
|
|
13
13
|
clientSecret: z.ZodString;
|
|
14
14
|
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
15
15
|
}, z.core.$strip>>[] | undefined>;
|
|
16
|
-
declare const
|
|
16
|
+
declare const typeformOfficialProviderSeed: {
|
|
17
17
|
readonly provider: "typeform";
|
|
18
18
|
readonly appRef: "typeform-platform";
|
|
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;
|
|
@@ -33,4 +33,4 @@ declare const typeformPlatformProviderSeed: {
|
|
|
33
33
|
};
|
|
34
34
|
type TypeformAppCredentials = z.infer<typeof typeformAppCredentialSet.auth>;
|
|
35
35
|
//#endregion
|
|
36
|
-
export { TypeformAppCredentials, typeformAppCredentialSet, typeformBundle, typeformOfficialIntegration,
|
|
36
|
+
export { TypeformAppCredentials, typeformAppCredentialSet, typeformBundle, typeformOfficialIntegration, typeformOfficialProviderSeed };
|
package/dist/_official/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as
|
|
1
|
+
import { a as typeformOfficialProviderSeed, i as typeformAppCredentialSet, n as typeformBundle, r as typeformOfficialIntegration } from "../integration-CiFwQLkM.mjs";
|
|
2
2
|
|
|
3
|
-
export { typeformAppCredentialSet, typeformBundle, typeformOfficialIntegration,
|
|
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
|
|
@@ -13,22 +13,22 @@ const typeformAppCredentialSet = new CredentialSet({
|
|
|
13
13
|
webhookSecret: z.string().min(1).optional()
|
|
14
14
|
})
|
|
15
15
|
});
|
|
16
|
-
const
|
|
16
|
+
const typeformOfficialProviderSeed = {
|
|
17
17
|
provider: "typeform",
|
|
18
18
|
appRef: "typeform-platform",
|
|
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
|
|
|
@@ -73,4 +73,4 @@ const typeformBundle = defineOfficialIntegration({
|
|
|
73
73
|
const typeform = typeformBundle.credentialSet;
|
|
74
74
|
|
|
75
75
|
//#endregion
|
|
76
|
-
export {
|
|
76
|
+
export { typeformOfficialProviderSeed as a, typeformAppCredentialSet as i, typeformBundle as n, typeformOfficialIntegration as r, typeform as t };
|
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.6-rename-t1.1",
|
|
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.6-rename-t1.0",
|
|
88
88
|
"zod": "^4.3.6"
|
|
89
89
|
},
|
|
90
90
|
"peerDependencies": {
|