@supernova-studio/model 1.4.16 → 1.4.18

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.mjs CHANGED
@@ -4681,11 +4681,8 @@ var UserSource = z139.enum(["SignUp", "Invite", "SSO"]);
4681
4681
  var User = z139.object({
4682
4682
  id: z139.string(),
4683
4683
  email: z139.string(),
4684
- emailVerified: z139.boolean(),
4685
4684
  createdAt: z139.coerce.date(),
4686
- trialExpiresAt: z139.coerce.date().optional(),
4687
4685
  profile: UserProfile,
4688
- linkedIntegrations: UserLinkedIntegrations.optional(),
4689
4686
  loggedOutAt: z139.coerce.date().optional(),
4690
4687
  isProtected: z139.boolean(),
4691
4688
  source: UserSource.optional()
@@ -5464,6 +5461,7 @@ var ExportJobContext = z172.object({
5464
5461
  brandId: z172.string().optional(),
5465
5462
  themeId: z172.string().optional(),
5466
5463
  themePersistentIds: z172.string().array().optional(),
5464
+ previewMode: z172.boolean().optional(),
5467
5465
  exporterName: z172.string(),
5468
5466
  documentation: ExportJobDocumentationContext.optional()
5469
5467
  });
@@ -5542,6 +5540,7 @@ var ExportJob = z174.object({
5542
5540
  result: ExportJobResult.optional(),
5543
5541
  createdByUserId: z174.string().optional(),
5544
5542
  exporterPropertyValues: ExporterPropertyValueMap.optional(),
5543
+ previewMode: z174.boolean().optional(),
5545
5544
  // Destinations
5546
5545
  ...ExportDestinationsMap.shape
5547
5546
  });