@supernova-studio/model 0.58.0 → 0.58.2

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
@@ -135137,8 +135137,10 @@ declare const ElementPropertyDefinition: z.ZodObject<{
135137
135137
  linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
135138
135138
  }>;
135139
135139
  type ElementPropertyDefinition = z.infer<typeof ElementPropertyDefinition>;
135140
- type CreateElementPropertyDefinition = DbCreateInputOmit<ElementPropertyDefinition>;
135141
- type UpdateElementPropertyDefinition = OmitStrict<DbUpdate<ElementPropertyDefinition>, "designSystemVersionId" | "targetElementType" | "type">;
135140
+ type CreateElementPropertyDefinition = DbCreateInputOmit<ElementPropertyDefinition> & {
135141
+ columnWidth?: number;
135142
+ };
135143
+ type UpdateElementPropertyDefinition = OmitStrict<DbUpdate<ElementPropertyDefinition>, "designSystemVersionId" | "targetElementType" | "type" | "linkElementType">;
135142
135144
  type ElementPropertyDefinitionDiff = {
135143
135145
  toCreate: CreateElementPropertyDefinition[];
135144
135146
  toUpdate: UpdateElementPropertyDefinition[];
package/dist/index.d.ts CHANGED
@@ -135137,8 +135137,10 @@ declare const ElementPropertyDefinition: z.ZodObject<{
135137
135137
  linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
135138
135138
  }>;
135139
135139
  type ElementPropertyDefinition = z.infer<typeof ElementPropertyDefinition>;
135140
- type CreateElementPropertyDefinition = DbCreateInputOmit<ElementPropertyDefinition>;
135141
- type UpdateElementPropertyDefinition = OmitStrict<DbUpdate<ElementPropertyDefinition>, "designSystemVersionId" | "targetElementType" | "type">;
135140
+ type CreateElementPropertyDefinition = DbCreateInputOmit<ElementPropertyDefinition> & {
135141
+ columnWidth?: number;
135142
+ };
135143
+ type UpdateElementPropertyDefinition = OmitStrict<DbUpdate<ElementPropertyDefinition>, "designSystemVersionId" | "targetElementType" | "type" | "linkElementType">;
135142
135144
  type ElementPropertyDefinitionDiff = {
135143
135145
  toCreate: CreateElementPropertyDefinition[];
135144
135146
  toUpdate: UpdateElementPropertyDefinition[];