@supernova-studio/model 0.58.7 → 0.58.9
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/index.d.mts +43 -25
- package/dist/index.d.ts +43 -25
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/import/support/figma-files.ts +1 -0
- package/src/integrations/integration.ts +1 -1
package/package.json
CHANGED
|
@@ -12,6 +12,7 @@ export const FigmaFileDownloadScope = z.object({
|
|
|
12
12
|
|
|
13
13
|
export const FigmaFileAccessData = z.object({
|
|
14
14
|
accessToken: z.string(),
|
|
15
|
+
accessTokenType: z.enum(["OAuth2", "PAT"]),
|
|
15
16
|
});
|
|
16
17
|
|
|
17
18
|
export type FigmaFileDownloadScope = z.infer<typeof FigmaFileDownloadScope>;
|
|
@@ -13,7 +13,7 @@ export const IntegrationDesignSystem = z.object({
|
|
|
13
13
|
|
|
14
14
|
export type IntegrationDesignSystem = z.infer<typeof IntegrationDesignSystem>;
|
|
15
15
|
|
|
16
|
-
export const IntegrationCredentialsType = z.enum(["OAuth2", "PAT"
|
|
16
|
+
export const IntegrationCredentialsType = z.enum(["OAuth2", "PAT"]);
|
|
17
17
|
export type IntegrationCredentialsType = z.infer<typeof IntegrationCredentialsType>;
|
|
18
18
|
|
|
19
19
|
export const IntegrationCredentialsState = z.enum(["Active", "Inactive"]);
|