@supernova-studio/client 0.47.13 → 0.47.15

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.js CHANGED
@@ -123,6 +123,7 @@ var _zod = require('zod');
123
123
 
124
124
 
125
125
 
126
+
126
127
 
127
128
 
128
129
  var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr);
@@ -415,6 +416,14 @@ var UserLinkedIntegrations = _zod.z.object({
415
416
  gitlab: IntegrationUserInfo.array().optional(),
416
417
  bitbucket: IntegrationUserInfo.array().optional()
417
418
  });
419
+ var UserAnalyticsCleanupSchedule = _zod.z.object({
420
+ userId: _zod.z.string(),
421
+ createdAt: _zod.z.coerce.date(),
422
+ deleteAt: _zod.z.coerce.date()
423
+ });
424
+ var UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupSchedule.omit({
425
+ createdAt: true
426
+ });
418
427
  var CreateUserInput = _zod.z.object({
419
428
  email: _zod.z.string(),
420
429
  name: _zod.z.string(),
@@ -2737,8 +2746,9 @@ var ExportJobContext = _zod.z.object({
2737
2746
  apiUrl: _zod.z.string(),
2738
2747
  accessToken: _zod.z.string(),
2739
2748
  designSystemId: _zod.z.string(),
2740
- designSystemVersionId: _zod.z.string(),
2749
+ versionId: _zod.z.string(),
2741
2750
  brandId: _zod.z.string().optional(),
2751
+ themeId: _zod.z.string().optional(),
2742
2752
  exporterPackageUrl: _zod.z.string(),
2743
2753
  exporterPropertyValues: ExporterPropertyValue.array(),
2744
2754
  documentation: ExportJobDocumentationContext.optional()