@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,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
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:
|
|
13
|
+
token: IntegrationToken,
|
|
14
14
|
});
|
|
15
15
|
|
|
16
16
|
export type DTOWorkspaceIntegrationPATInput = z.infer<typeof DTOWorkspaceIntegrationPATInput>;
|