@supernova-studio/client 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.d.mts +3 -1248
- package/dist/index.d.ts +3 -1248
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4083,11 +4083,8 @@ var UserSource = _zod.z.enum(["SignUp", "Invite", "SSO"]);
|
|
|
4083
4083
|
var User = _zod.z.object({
|
|
4084
4084
|
id: _zod.z.string(),
|
|
4085
4085
|
email: _zod.z.string(),
|
|
4086
|
-
emailVerified: _zod.z.boolean(),
|
|
4087
4086
|
createdAt: _zod.z.coerce.date(),
|
|
4088
|
-
trialExpiresAt: _zod.z.coerce.date().optional(),
|
|
4089
4087
|
profile: UserProfile,
|
|
4090
|
-
linkedIntegrations: UserLinkedIntegrations.optional(),
|
|
4091
4088
|
loggedOutAt: _zod.z.coerce.date().optional(),
|
|
4092
4089
|
isProtected: _zod.z.boolean(),
|
|
4093
4090
|
source: UserSource.optional()
|
|
@@ -4740,6 +4737,7 @@ var ExportJobContext = _zod.z.object({
|
|
|
4740
4737
|
brandId: _zod.z.string().optional(),
|
|
4741
4738
|
themeId: _zod.z.string().optional(),
|
|
4742
4739
|
themePersistentIds: _zod.z.string().array().optional(),
|
|
4740
|
+
previewMode: _zod.z.boolean().optional(),
|
|
4743
4741
|
exporterName: _zod.z.string(),
|
|
4744
4742
|
documentation: ExportJobDocumentationContext.optional()
|
|
4745
4743
|
});
|
|
@@ -4812,6 +4810,7 @@ var ExportJob = _zod.z.object({
|
|
|
4812
4810
|
result: ExportJobResult.optional(),
|
|
4813
4811
|
createdByUserId: _zod.z.string().optional(),
|
|
4814
4812
|
exporterPropertyValues: ExporterPropertyValueMap.optional(),
|
|
4813
|
+
previewMode: _zod.z.boolean().optional(),
|
|
4815
4814
|
// Destinations
|
|
4816
4815
|
...ExportDestinationsMap.shape
|
|
4817
4816
|
});
|
|
@@ -6840,7 +6839,8 @@ var DTOExportJobCreateInput = _zod.z.object({
|
|
|
6840
6839
|
themeId: _zod.z.string().optional(),
|
|
6841
6840
|
themePersistentIds: _zod.z.string().array().optional(),
|
|
6842
6841
|
destinations: DTOExportJobDestinations,
|
|
6843
|
-
exporterPropertyValues: DTOExporterPropertyValueMap.optional()
|
|
6842
|
+
exporterPropertyValues: DTOExporterPropertyValueMap.optional(),
|
|
6843
|
+
previewMode: _zod.z.boolean().optional()
|
|
6844
6844
|
});
|
|
6845
6845
|
|
|
6846
6846
|
// src/api/dto/export/pipeline.ts
|