@supernova-studio/model 1.9.12 → 1.9.14
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 +383 -5
- package/dist/index.d.ts +383 -5
- package/dist/index.js +18 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +28 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4672,6 +4672,7 @@ var FigmaExporterProcessedStylesSchema = z123.object({
|
|
|
4672
4672
|
]).optional(),
|
|
4673
4673
|
transform: z123.string().optional(),
|
|
4674
4674
|
transformOrigin: z123.string().optional(),
|
|
4675
|
+
rotate: z123.string().optional(),
|
|
4675
4676
|
clipPath: z123.string().optional(),
|
|
4676
4677
|
color: z123.string().optional(),
|
|
4677
4678
|
fontFamily: z123.string().optional(),
|
|
@@ -6249,20 +6250,34 @@ var NpmProxyTokenPayload = z193.object({
|
|
|
6249
6250
|
npmProxyRegistryConfigId: z193.string()
|
|
6250
6251
|
});
|
|
6251
6252
|
|
|
6252
|
-
// src/
|
|
6253
|
+
// src/portal/portal-settings.ts
|
|
6253
6254
|
import { z as z194 } from "zod";
|
|
6254
|
-
var
|
|
6255
|
+
var PortalSettingsTheme = nullishToOptional(UserTheme);
|
|
6256
|
+
var PortalSettings = z194.object({
|
|
6255
6257
|
id: z194.string(),
|
|
6256
|
-
|
|
6257
|
-
|
|
6258
|
-
|
|
6259
|
-
|
|
6260
|
-
|
|
6261
|
-
hidden: z194.boolean(),
|
|
6262
|
-
token: z194.string(),
|
|
6263
|
-
scope: z194.string().optional(),
|
|
6258
|
+
workspaceId: z194.string(),
|
|
6259
|
+
enabledDesignSystemIds: z194.array(z194.string()),
|
|
6260
|
+
enabledBrandPersistentIds: z194.array(z194.string()),
|
|
6261
|
+
theme: PortalSettingsTheme,
|
|
6262
|
+
sidebar: nullishToOptional(z194.any()),
|
|
6264
6263
|
createdAt: z194.coerce.date(),
|
|
6265
|
-
|
|
6264
|
+
updatedAt: z194.coerce.date()
|
|
6265
|
+
});
|
|
6266
|
+
|
|
6267
|
+
// src/tokens/personal-access-token.ts
|
|
6268
|
+
import { z as z195 } from "zod";
|
|
6269
|
+
var PersonalAccessToken = z195.object({
|
|
6270
|
+
id: z195.string(),
|
|
6271
|
+
userId: z195.string(),
|
|
6272
|
+
workspaceId: z195.string().optional(),
|
|
6273
|
+
designSystemId: z195.string().optional(),
|
|
6274
|
+
workspaceRole: WorkspaceRoleSchema.optional(),
|
|
6275
|
+
name: z195.string(),
|
|
6276
|
+
hidden: z195.boolean(),
|
|
6277
|
+
token: z195.string(),
|
|
6278
|
+
scope: z195.string().optional(),
|
|
6279
|
+
createdAt: z195.coerce.date(),
|
|
6280
|
+
expireAt: z195.coerce.date().optional()
|
|
6266
6281
|
});
|
|
6267
6282
|
export {
|
|
6268
6283
|
Address,
|
|
@@ -6805,6 +6820,8 @@ export {
|
|
|
6805
6820
|
PipelineEventType,
|
|
6806
6821
|
PluginOAuthRequestSchema,
|
|
6807
6822
|
Point2D,
|
|
6823
|
+
PortalSettings,
|
|
6824
|
+
PortalSettingsTheme,
|
|
6808
6825
|
PostStripeCheckoutBodyInputSchema,
|
|
6809
6826
|
PostStripeCheckoutOutputSchema,
|
|
6810
6827
|
PostStripePortalSessionBodyInputSchema,
|