@supernova-studio/client 0.54.34 → 0.54.35
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 +10 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +893 -883
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -177,6 +177,7 @@ var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr)
|
|
|
177
177
|
|
|
178
178
|
|
|
179
179
|
|
|
180
|
+
|
|
180
181
|
|
|
181
182
|
|
|
182
183
|
var __defProp2 = Object.defineProperty;
|
|
@@ -4318,6 +4319,15 @@ var UserSession = _zod.z.object({
|
|
|
4318
4319
|
session: Session,
|
|
4319
4320
|
user: User.nullable()
|
|
4320
4321
|
});
|
|
4322
|
+
var DesignSystemInviteEmailRecipient = _zod.z.object({
|
|
4323
|
+
email: _zod.z.string(),
|
|
4324
|
+
role: WorkspaceRoleSchema
|
|
4325
|
+
});
|
|
4326
|
+
var DesignSystemInviteEmailData = _zod.z.object({
|
|
4327
|
+
designSystem: DesignSystem,
|
|
4328
|
+
invitedBy: User,
|
|
4329
|
+
documentationDomain: _zod.z.string().optional()
|
|
4330
|
+
});
|
|
4321
4331
|
var EventDataSourceImported = _zod.z.object({
|
|
4322
4332
|
type: _zod.z.literal("DataSourceImported"),
|
|
4323
4333
|
workspaceId: _zod.z.string(),
|