@supernova-studio/client 0.47.14 → 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(),