@supernova-studio/model 0.57.6 → 0.57.8

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 CHANGED
@@ -173455,6 +173455,7 @@ declare const PersonalAccessToken: z.ZodObject<{
173455
173455
  id: z.ZodString;
173456
173456
  userId: z.ZodString;
173457
173457
  workspaceId: z.ZodOptional<z.ZodString>;
173458
+ designSystemId: z.ZodOptional<z.ZodString>;
173458
173459
  workspaceRole: z.ZodOptional<z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
173459
173460
  name: z.ZodString;
173460
173461
  hidden: z.ZodBoolean;
@@ -173469,6 +173470,7 @@ declare const PersonalAccessToken: z.ZodObject<{
173469
173470
  userId: string;
173470
173471
  hidden: boolean;
173471
173472
  token: string;
173473
+ designSystemId?: string | undefined;
173472
173474
  scope?: string | undefined;
173473
173475
  workspaceId?: string | undefined;
173474
173476
  workspaceRole?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
@@ -173480,6 +173482,7 @@ declare const PersonalAccessToken: z.ZodObject<{
173480
173482
  userId: string;
173481
173483
  hidden: boolean;
173482
173484
  token: string;
173485
+ designSystemId?: string | undefined;
173483
173486
  scope?: string | undefined;
173484
173487
  workspaceId?: string | undefined;
173485
173488
  workspaceRole?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
package/dist/index.d.ts CHANGED
@@ -173455,6 +173455,7 @@ declare const PersonalAccessToken: z.ZodObject<{
173455
173455
  id: z.ZodString;
173456
173456
  userId: z.ZodString;
173457
173457
  workspaceId: z.ZodOptional<z.ZodString>;
173458
+ designSystemId: z.ZodOptional<z.ZodString>;
173458
173459
  workspaceRole: z.ZodOptional<z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
173459
173460
  name: z.ZodString;
173460
173461
  hidden: z.ZodBoolean;
@@ -173469,6 +173470,7 @@ declare const PersonalAccessToken: z.ZodObject<{
173469
173470
  userId: string;
173470
173471
  hidden: boolean;
173471
173472
  token: string;
173473
+ designSystemId?: string | undefined;
173472
173474
  scope?: string | undefined;
173473
173475
  workspaceId?: string | undefined;
173474
173476
  workspaceRole?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
@@ -173480,6 +173482,7 @@ declare const PersonalAccessToken: z.ZodObject<{
173480
173482
  userId: string;
173481
173483
  hidden: boolean;
173482
173484
  token: string;
173485
+ designSystemId?: string | undefined;
173483
173486
  scope?: string | undefined;
173484
173487
  workspaceId?: string | undefined;
173485
173488
  workspaceRole?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
package/dist/index.js CHANGED
@@ -5352,6 +5352,7 @@ var PersonalAccessToken = _zod.z.object({
5352
5352
  id: _zod.z.string(),
5353
5353
  userId: _zod.z.string(),
5354
5354
  workspaceId: _zod.z.string().optional(),
5355
+ designSystemId: _zod.z.string().optional(),
5355
5356
  workspaceRole: WorkspaceRoleSchema.optional(),
5356
5357
  name: _zod.z.string(),
5357
5358
  hidden: _zod.z.boolean(),