@keystrokehq/typeform 0.0.4 → 0.0.6-rename-t1.0

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.
@@ -13,7 +13,7 @@ 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 typeformPlatformProviderSeed: {
16
+ declare const typeformOfficialProviderSeed: {
17
17
  readonly provider: "typeform";
18
18
  readonly appRef: "typeform-platform";
19
19
  readonly displayName: "Typeform Platform";
@@ -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, typeformPlatformProviderSeed };
36
+ export { TypeformAppCredentials, typeformAppCredentialSet, typeformBundle, typeformOfficialIntegration, typeformOfficialProviderSeed };
@@ -1,3 +1,3 @@
1
- import { a as typeformPlatformProviderSeed, i as typeformAppCredentialSet, n as typeformBundle, r as typeformOfficialIntegration } from "../integration-BZVxAx4l.mjs";
1
+ import { a as typeformOfficialProviderSeed, i as typeformAppCredentialSet, n as typeformBundle, r as typeformOfficialIntegration } from "../integration-Bd4eVc1r.mjs";
2
2
 
3
- export { typeformAppCredentialSet, typeformBundle, typeformOfficialIntegration, typeformPlatformProviderSeed };
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-C-RzHxwx.mjs";
3
+ import { t as typeformOperation } from "./factory-B0_SfsTg.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-BZVxAx4l.mjs";
1
+ import { t as typeform } from "./integration-Bd4eVc1r.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";
@@ -1,3 +1,3 @@
1
- import { r as typeformOfficialIntegration, t as typeform } from "./integration-BZVxAx4l.mjs";
1
+ import { r as typeformOfficialIntegration, t as typeform } from "./integration-Bd4eVc1r.mjs";
2
2
 
3
3
  export { typeform, typeformOfficialIntegration };
@@ -1,4 +1,4 @@
1
- import { t as typeform } from "./integration-BZVxAx4l.mjs";
1
+ import { t as typeform } from "./integration-Bd4eVc1r.mjs";
2
2
  import { createOfficialOperationFactory } from "@keystrokehq/integration-authoring/official";
3
3
 
4
4
  //#region src/factory.ts
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-C-RzHxwx.mjs";
4
+ import { t as typeformOperation } from "./factory-B0_SfsTg.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-C-RzHxwx.mjs";
4
+ import { t as typeformOperation } from "./factory-B0_SfsTg.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-C-RzHxwx.mjs";
3
+ import { t as typeformOperation } from "./factory-B0_SfsTg.mjs";
4
4
  import { z } from "zod";
5
5
 
6
6
  //#region src/insights.ts
@@ -13,7 +13,7 @@ const typeformAppCredentialSet = new CredentialSet({
13
13
  webhookSecret: z.string().min(1).optional()
14
14
  })
15
15
  });
16
- const typeformPlatformProviderSeed = {
16
+ const typeformOfficialProviderSeed = {
17
17
  provider: "typeform",
18
18
  appRef: "typeform-platform",
19
19
  displayName: "Typeform Platform",
@@ -73,4 +73,4 @@ const typeformBundle = defineOfficialIntegration({
73
73
  const typeform = typeformBundle.credentialSet;
74
74
 
75
75
  //#endregion
76
- export { typeformPlatformProviderSeed as a, typeformAppCredentialSet as i, typeformBundle as n, typeformOfficialIntegration as r, typeform as t };
76
+ export { typeformOfficialProviderSeed as a, typeformAppCredentialSet as i, typeformBundle as n, typeformOfficialIntegration as r, typeform as t };
@@ -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-C-RzHxwx.mjs";
4
+ import { t as typeformOperation } from "./factory-B0_SfsTg.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-C-RzHxwx.mjs";
4
+ import { t as typeformOperation } from "./factory-B0_SfsTg.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-C-RzHxwx.mjs";
4
+ import { t as typeformOperation } from "./factory-B0_SfsTg.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-C-RzHxwx.mjs";
4
+ import { t as typeformOperation } from "./factory-B0_SfsTg.mjs";
5
5
  import { z } from "zod";
6
6
 
7
7
  //#region src/webhooks.ts
@@ -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-C-RzHxwx.mjs";
4
+ import { t as typeformOperation } from "./factory-B0_SfsTg.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.4",
3
+ "version": "0.0.6-rename-t1.0",
4
4
  "private": false,
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -84,15 +84,18 @@
84
84
  "LICENSE"
85
85
  ],
86
86
  "dependencies": {
87
- "@keystrokehq/core": "^0.0.7",
88
- "@keystrokehq/integration-authoring": "^0.0.4",
87
+ "@keystrokehq/integration-authoring": "^0.0.6-rename-t1.0",
89
88
  "zod": "^4.3.6"
90
89
  },
90
+ "peerDependencies": {
91
+ "@keystrokehq/core": ">=0.0.7 <0.1.0"
92
+ },
91
93
  "devDependencies": {
92
94
  "@types/node": "^22.19.11",
93
95
  "tsdown": "^0.20.3",
94
96
  "typescript": "^5.9.3",
95
97
  "vitest": "^4.0.18",
98
+ "@keystrokehq/core": "^0.0.7",
96
99
  "@keystrokehq/test-utils": "0.0.0",
97
100
  "@keystrokehq/typescript-config": "0.0.0"
98
101
  },