@supernova-studio/model 0.58.8 → 0.58.10
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/dist/index.mjs
CHANGED
|
@@ -474,7 +474,8 @@ var FigmaFileDownloadScope = z22.object({
|
|
|
474
474
|
maxFileDepth: z22.number().optional()
|
|
475
475
|
});
|
|
476
476
|
var FigmaFileAccessData = z22.object({
|
|
477
|
-
accessToken: z22.string()
|
|
477
|
+
accessToken: z22.string(),
|
|
478
|
+
accessTokenType: z22.enum(["OAuth2", "PAT"]).default("OAuth2")
|
|
478
479
|
});
|
|
479
480
|
|
|
480
481
|
// src/dsm/import/support/import-context.ts
|
|
@@ -4971,7 +4972,7 @@ var IntegrationDesignSystem = z154.object({
|
|
|
4971
4972
|
userId: z154.string().optional(),
|
|
4972
4973
|
date: z154.coerce.date().optional()
|
|
4973
4974
|
});
|
|
4974
|
-
var IntegrationCredentialsType = z154.enum(["OAuth2", "PAT"
|
|
4975
|
+
var IntegrationCredentialsType = z154.enum(["OAuth2", "PAT"]);
|
|
4975
4976
|
var IntegrationCredentialsState = z154.enum(["Active", "Inactive"]);
|
|
4976
4977
|
var IntegrationCredentialsProfile = z154.object({
|
|
4977
4978
|
id: nullishToOptional(z154.string()),
|