@supernova-studio/client 0.54.29 → 0.54.30
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 +28 -34
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1082 -1088
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -147,7 +147,6 @@ var _slugify = require('@sindresorhus/slugify'); var _slugify2 = _interopRequire
|
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
|
|
150
|
-
|
|
151
150
|
|
|
152
151
|
|
|
153
152
|
var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr);
|
|
@@ -3958,35 +3957,6 @@ var UserLinkedIntegrations = _zod.z.object({
|
|
|
3958
3957
|
gitlab: IntegrationUserInfo.array().optional(),
|
|
3959
3958
|
bitbucket: IntegrationUserInfo.array().optional()
|
|
3960
3959
|
});
|
|
3961
|
-
var UserAnalyticsCleanupSchedule = _zod.z.object({
|
|
3962
|
-
userId: _zod.z.string(),
|
|
3963
|
-
createdAt: _zod.z.coerce.date(),
|
|
3964
|
-
deleteAt: _zod.z.coerce.date()
|
|
3965
|
-
});
|
|
3966
|
-
var UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupSchedule.omit({
|
|
3967
|
-
createdAt: true
|
|
3968
|
-
});
|
|
3969
|
-
var CreateUserInput = _zod.z.object({
|
|
3970
|
-
email: _zod.z.string(),
|
|
3971
|
-
name: _zod.z.string(),
|
|
3972
|
-
username: _zod.z.string()
|
|
3973
|
-
});
|
|
3974
|
-
var UserIdentity = _zod.z.object({
|
|
3975
|
-
id: _zod.z.string(),
|
|
3976
|
-
userId: _zod.z.string()
|
|
3977
|
-
});
|
|
3978
|
-
var UserMinified = _zod.z.object({
|
|
3979
|
-
id: _zod.z.string(),
|
|
3980
|
-
name: _zod.z.string(),
|
|
3981
|
-
email: _zod.z.string(),
|
|
3982
|
-
avatar: _zod.z.string().optional()
|
|
3983
|
-
});
|
|
3984
|
-
var LiveblocksNotificationSettings = _zod.z.object({
|
|
3985
|
-
sendCommentNotificationEmails: _zod.z.boolean()
|
|
3986
|
-
});
|
|
3987
|
-
var UserNotificationSettings = _zod.z.object({
|
|
3988
|
-
liveblocksNotificationSettings: LiveblocksNotificationSettings
|
|
3989
|
-
});
|
|
3990
3960
|
var UserOnboardingDepartment = _zod.z.enum(["Design", "Engineering", "Product", "Brand", "Other"]);
|
|
3991
3961
|
var UserOnboardingJobLevel = _zod.z.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
|
|
3992
3962
|
var UserOnboarding = _zod.z.object({
|
|
@@ -4012,10 +3982,6 @@ var UserProfile = _zod.z.object({
|
|
|
4012
3982
|
var UserProfileUpdate = UserProfile.partial().omit({
|
|
4013
3983
|
avatar: true
|
|
4014
3984
|
});
|
|
4015
|
-
var UserTest = _zod.z.object({
|
|
4016
|
-
id: _zod.z.string(),
|
|
4017
|
-
email: _zod.z.string()
|
|
4018
|
-
});
|
|
4019
3985
|
var UserSource = _zod.z.enum(["SignUp", "Invite", "SSO"]);
|
|
4020
3986
|
var User = _zod.z.object({
|
|
4021
3987
|
id: _zod.z.string(),
|
|
@@ -4029,6 +3995,34 @@ var User = _zod.z.object({
|
|
|
4029
3995
|
isProtected: _zod.z.boolean(),
|
|
4030
3996
|
source: UserSource.optional()
|
|
4031
3997
|
});
|
|
3998
|
+
var UserAnalyticsCleanupSchedule = _zod.z.object({
|
|
3999
|
+
userId: _zod.z.string(),
|
|
4000
|
+
createdAt: _zod.z.coerce.date(),
|
|
4001
|
+
deleteAt: _zod.z.coerce.date()
|
|
4002
|
+
});
|
|
4003
|
+
var UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupSchedule.omit({
|
|
4004
|
+
createdAt: true
|
|
4005
|
+
});
|
|
4006
|
+
var UserIdentity = _zod.z.object({
|
|
4007
|
+
id: _zod.z.string(),
|
|
4008
|
+
userId: _zod.z.string()
|
|
4009
|
+
});
|
|
4010
|
+
var UserMinified = _zod.z.object({
|
|
4011
|
+
id: _zod.z.string(),
|
|
4012
|
+
name: _zod.z.string(),
|
|
4013
|
+
email: _zod.z.string(),
|
|
4014
|
+
avatar: _zod.z.string().optional()
|
|
4015
|
+
});
|
|
4016
|
+
var LiveblocksNotificationSettings = _zod.z.object({
|
|
4017
|
+
sendCommentNotificationEmails: _zod.z.boolean()
|
|
4018
|
+
});
|
|
4019
|
+
var UserNotificationSettings = _zod.z.object({
|
|
4020
|
+
liveblocksNotificationSettings: LiveblocksNotificationSettings
|
|
4021
|
+
});
|
|
4022
|
+
var UserTest = _zod.z.object({
|
|
4023
|
+
id: _zod.z.string(),
|
|
4024
|
+
email: _zod.z.string()
|
|
4025
|
+
});
|
|
4032
4026
|
var IntegrationDesignSystem = _zod.z.object({
|
|
4033
4027
|
designSystemId: _zod.z.string(),
|
|
4034
4028
|
brandId: _zod.z.string(),
|