@supernova-studio/model 0.47.13 → 0.47.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 CHANGED
@@ -97131,8 +97131,9 @@ declare const ExportJobContext: z.ZodObject<{
97131
97131
  apiUrl: z.ZodString;
97132
97132
  accessToken: z.ZodString;
97133
97133
  designSystemId: z.ZodString;
97134
- designSystemVersionId: z.ZodString;
97134
+ versionId: z.ZodString;
97135
97135
  brandId: z.ZodOptional<z.ZodString>;
97136
+ themeId: z.ZodOptional<z.ZodString>;
97136
97137
  exporterPackageUrl: z.ZodString;
97137
97138
  exporterPropertyValues: z.ZodArray<z.ZodObject<{
97138
97139
  key: z.ZodString;
@@ -97951,7 +97952,7 @@ declare const ExportJobContext: z.ZodObject<{
97951
97952
  }, "strip", z.ZodTypeAny, {
97952
97953
  designSystemId: string;
97953
97954
  accessToken: string;
97954
- designSystemVersionId: string;
97955
+ versionId: string;
97955
97956
  apiUrl: string;
97956
97957
  exporterPackageUrl: string;
97957
97958
  exporterPropertyValues: {
@@ -98062,10 +98063,11 @@ declare const ExportJobContext: z.ZodObject<{
98062
98063
  versionSlug: string;
98063
98064
  } | undefined;
98064
98065
  brandId?: string | undefined;
98066
+ themeId?: string | undefined;
98065
98067
  }, {
98066
98068
  designSystemId: string;
98067
98069
  accessToken: string;
98068
- designSystemVersionId: string;
98070
+ versionId: string;
98069
98071
  apiUrl: string;
98070
98072
  exporterPackageUrl: string;
98071
98073
  exporterPropertyValues: {
@@ -98176,6 +98178,7 @@ declare const ExportJobContext: z.ZodObject<{
98176
98178
  versionSlug: string;
98177
98179
  } | undefined;
98178
98180
  brandId?: string | undefined;
98181
+ themeId?: string | undefined;
98179
98182
  }>;
98180
98183
  type ExportJobContext = z.infer<typeof ExportJobContext>;
98181
98184
 
package/dist/index.d.ts CHANGED
@@ -97131,8 +97131,9 @@ declare const ExportJobContext: z.ZodObject<{
97131
97131
  apiUrl: z.ZodString;
97132
97132
  accessToken: z.ZodString;
97133
97133
  designSystemId: z.ZodString;
97134
- designSystemVersionId: z.ZodString;
97134
+ versionId: z.ZodString;
97135
97135
  brandId: z.ZodOptional<z.ZodString>;
97136
+ themeId: z.ZodOptional<z.ZodString>;
97136
97137
  exporterPackageUrl: z.ZodString;
97137
97138
  exporterPropertyValues: z.ZodArray<z.ZodObject<{
97138
97139
  key: z.ZodString;
@@ -97951,7 +97952,7 @@ declare const ExportJobContext: z.ZodObject<{
97951
97952
  }, "strip", z.ZodTypeAny, {
97952
97953
  designSystemId: string;
97953
97954
  accessToken: string;
97954
- designSystemVersionId: string;
97955
+ versionId: string;
97955
97956
  apiUrl: string;
97956
97957
  exporterPackageUrl: string;
97957
97958
  exporterPropertyValues: {
@@ -98062,10 +98063,11 @@ declare const ExportJobContext: z.ZodObject<{
98062
98063
  versionSlug: string;
98063
98064
  } | undefined;
98064
98065
  brandId?: string | undefined;
98066
+ themeId?: string | undefined;
98065
98067
  }, {
98066
98068
  designSystemId: string;
98067
98069
  accessToken: string;
98068
- designSystemVersionId: string;
98070
+ versionId: string;
98069
98071
  apiUrl: string;
98070
98072
  exporterPackageUrl: string;
98071
98073
  exporterPropertyValues: {
@@ -98176,6 +98178,7 @@ declare const ExportJobContext: z.ZodObject<{
98176
98178
  versionSlug: string;
98177
98179
  } | undefined;
98178
98180
  brandId?: string | undefined;
98181
+ themeId?: string | undefined;
98179
98182
  }>;
98180
98183
  type ExportJobContext = z.infer<typeof ExportJobContext>;
98181
98184
 
package/dist/index.js CHANGED
@@ -3185,8 +3185,9 @@ var ExportJobContext = _zod.z.object({
3185
3185
  apiUrl: _zod.z.string(),
3186
3186
  accessToken: _zod.z.string(),
3187
3187
  designSystemId: _zod.z.string(),
3188
- designSystemVersionId: _zod.z.string(),
3188
+ versionId: _zod.z.string(),
3189
3189
  brandId: _zod.z.string().optional(),
3190
+ themeId: _zod.z.string().optional(),
3190
3191
  exporterPackageUrl: _zod.z.string(),
3191
3192
  exporterPropertyValues: ExporterPropertyValue.array(),
3192
3193
  documentation: ExportJobDocumentationContext.optional()