@supernova-studio/client 0.46.12 → 0.46.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supernova-studio/client",
3
- "version": "0.46.12",
3
+ "version": "0.46.13",
4
4
  "description": "Supernova Data Models",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -1,4 +1,4 @@
1
- import { IntegrationTokenResponse, IntegrationType } from "@supernova-studio/model";
1
+ import { IntegrationToken, IntegrationType } from "@supernova-studio/model";
2
2
  import { z } from "zod";
3
3
 
4
4
  export const DTOWorkspaceIntegrationOauthInput = z.object({
@@ -10,7 +10,7 @@ export type DTOWorkspaceIntegrationOauthInput = z.infer<typeof DTOWorkspaceInteg
10
10
  export const DTOWorkspaceIntegrationPATInput = z.object({
11
11
  userId: z.string(),
12
12
  type: IntegrationType,
13
- token: IntegrationTokenResponse,
13
+ token: IntegrationToken,
14
14
  });
15
15
 
16
16
  export type DTOWorkspaceIntegrationPATInput = z.infer<typeof DTOWorkspaceIntegrationPATInput>;