@supernova-studio/model 1.4.16 → 1.4.17

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
@@ -150718,6 +150718,7 @@ declare const ExportJobContext: z.ZodObject<{
150718
150718
  brandId: z.ZodOptional<z.ZodString>;
150719
150719
  themeId: z.ZodOptional<z.ZodString>;
150720
150720
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
150721
+ previewMode: z.ZodOptional<z.ZodBoolean>;
150721
150722
  exporterName: z.ZodString;
150722
150723
  documentation: z.ZodOptional<z.ZodObject<{
150723
150724
  isSingleVersionDocs: z.ZodBoolean;
@@ -150748,6 +150749,7 @@ declare const ExportJobContext: z.ZodObject<{
150748
150749
  brandId?: string | undefined;
150749
150750
  themeId?: string | undefined;
150750
150751
  themePersistentIds?: string[] | undefined;
150752
+ previewMode?: boolean | undefined;
150751
150753
  }, {
150752
150754
  designSystemId: string;
150753
150755
  accessToken: string;
@@ -150764,6 +150766,7 @@ declare const ExportJobContext: z.ZodObject<{
150764
150766
  brandId?: string | undefined;
150765
150767
  themeId?: string | undefined;
150766
150768
  themePersistentIds?: string[] | undefined;
150769
+ previewMode?: boolean | undefined;
150767
150770
  }>;
150768
150771
  type ExportJobContext = z.infer<typeof ExportJobContext>;
150769
150772
 
@@ -152880,6 +152883,7 @@ declare const ExportJob: z.ZodObject<{
152880
152883
  }>>;
152881
152884
  createdByUserId: z.ZodOptional<z.ZodString>;
152882
152885
  exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
152886
+ previewMode: z.ZodOptional<z.ZodBoolean>;
152883
152887
  }, "strip", z.ZodTypeAny, {
152884
152888
  status: "Timeout" | "InProgress" | "Success" | "Failed";
152885
152889
  id: string;
@@ -152966,6 +152970,7 @@ declare const ExportJob: z.ZodObject<{
152966
152970
  themePersistentIds?: string[] | undefined;
152967
152971
  exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
152968
152972
  finishedAt?: Date | undefined;
152973
+ previewMode?: boolean | undefined;
152969
152974
  scheduleId?: string | null | undefined;
152970
152975
  estimatedExecutionTime?: number | undefined;
152971
152976
  result?: {
@@ -153086,6 +153091,7 @@ declare const ExportJob: z.ZodObject<{
153086
153091
  themePersistentIds?: string[] | undefined;
153087
153092
  exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
153088
153093
  finishedAt?: Date | undefined;
153094
+ previewMode?: boolean | undefined;
153089
153095
  scheduleId?: string | null | undefined;
153090
153096
  estimatedExecutionTime?: number | undefined;
153091
153097
  result?: {
package/dist/index.d.ts CHANGED
@@ -150718,6 +150718,7 @@ declare const ExportJobContext: z.ZodObject<{
150718
150718
  brandId: z.ZodOptional<z.ZodString>;
150719
150719
  themeId: z.ZodOptional<z.ZodString>;
150720
150720
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
150721
+ previewMode: z.ZodOptional<z.ZodBoolean>;
150721
150722
  exporterName: z.ZodString;
150722
150723
  documentation: z.ZodOptional<z.ZodObject<{
150723
150724
  isSingleVersionDocs: z.ZodBoolean;
@@ -150748,6 +150749,7 @@ declare const ExportJobContext: z.ZodObject<{
150748
150749
  brandId?: string | undefined;
150749
150750
  themeId?: string | undefined;
150750
150751
  themePersistentIds?: string[] | undefined;
150752
+ previewMode?: boolean | undefined;
150751
150753
  }, {
150752
150754
  designSystemId: string;
150753
150755
  accessToken: string;
@@ -150764,6 +150766,7 @@ declare const ExportJobContext: z.ZodObject<{
150764
150766
  brandId?: string | undefined;
150765
150767
  themeId?: string | undefined;
150766
150768
  themePersistentIds?: string[] | undefined;
150769
+ previewMode?: boolean | undefined;
150767
150770
  }>;
150768
150771
  type ExportJobContext = z.infer<typeof ExportJobContext>;
150769
150772
 
@@ -152880,6 +152883,7 @@ declare const ExportJob: z.ZodObject<{
152880
152883
  }>>;
152881
152884
  createdByUserId: z.ZodOptional<z.ZodString>;
152882
152885
  exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
152886
+ previewMode: z.ZodOptional<z.ZodBoolean>;
152883
152887
  }, "strip", z.ZodTypeAny, {
152884
152888
  status: "Timeout" | "InProgress" | "Success" | "Failed";
152885
152889
  id: string;
@@ -152966,6 +152970,7 @@ declare const ExportJob: z.ZodObject<{
152966
152970
  themePersistentIds?: string[] | undefined;
152967
152971
  exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
152968
152972
  finishedAt?: Date | undefined;
152973
+ previewMode?: boolean | undefined;
152969
152974
  scheduleId?: string | null | undefined;
152970
152975
  estimatedExecutionTime?: number | undefined;
152971
152976
  result?: {
@@ -153086,6 +153091,7 @@ declare const ExportJob: z.ZodObject<{
153086
153091
  themePersistentIds?: string[] | undefined;
153087
153092
  exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
153088
153093
  finishedAt?: Date | undefined;
153094
+ previewMode?: boolean | undefined;
153089
153095
  scheduleId?: string | null | undefined;
153090
153096
  estimatedExecutionTime?: number | undefined;
153091
153097
  result?: {
package/dist/index.js CHANGED
@@ -5464,6 +5464,7 @@ var ExportJobContext = _zod.z.object({
5464
5464
  brandId: _zod.z.string().optional(),
5465
5465
  themeId: _zod.z.string().optional(),
5466
5466
  themePersistentIds: _zod.z.string().array().optional(),
5467
+ previewMode: _zod.z.boolean().optional(),
5467
5468
  exporterName: _zod.z.string(),
5468
5469
  documentation: ExportJobDocumentationContext.optional()
5469
5470
  });
@@ -5542,6 +5543,7 @@ var ExportJob = _zod.z.object({
5542
5543
  result: ExportJobResult.optional(),
5543
5544
  createdByUserId: _zod.z.string().optional(),
5544
5545
  exporterPropertyValues: ExporterPropertyValueMap.optional(),
5546
+ previewMode: _zod.z.boolean().optional(),
5545
5547
  // Destinations
5546
5548
  ...ExportDestinationsMap.shape
5547
5549
  });