@supernova-studio/model 0.55.22 → 0.55.24
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/membership/design-system-membership.ts +3 -0
package/dist/index.d.mts
CHANGED
|
@@ -129033,6 +129033,9 @@ declare const DesignSystemMemberUpdate: z.ZodObject<{
|
|
|
129033
129033
|
}>;
|
|
129034
129034
|
type DesignSystemMemberUpdate = z.infer<typeof DesignSystemMemberUpdate>;
|
|
129035
129035
|
declare const DesignSystemInviteUpdate: z.ZodObject<{
|
|
129036
|
+
/**
|
|
129037
|
+
* Workspace invitation id
|
|
129038
|
+
*/
|
|
129036
129039
|
inviteId: z.ZodString;
|
|
129037
129040
|
designSystemRole: z.ZodNullable<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
129038
129041
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -129116,6 +129119,9 @@ declare const DesignSystemMembershipUpdates: z.ZodObject<{
|
|
|
129116
129119
|
designSystemRole: "Admin" | "Creator" | "Viewer" | "Contributor" | null;
|
|
129117
129120
|
}>, "many">>;
|
|
129118
129121
|
invitesToUpdate: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
129122
|
+
/**
|
|
129123
|
+
* Workspace invitation id
|
|
129124
|
+
*/
|
|
129119
129125
|
inviteId: z.ZodString;
|
|
129120
129126
|
designSystemRole: z.ZodNullable<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
129121
129127
|
}, "strip", z.ZodTypeAny, {
|
package/dist/index.d.ts
CHANGED
|
@@ -129033,6 +129033,9 @@ declare const DesignSystemMemberUpdate: z.ZodObject<{
|
|
|
129033
129033
|
}>;
|
|
129034
129034
|
type DesignSystemMemberUpdate = z.infer<typeof DesignSystemMemberUpdate>;
|
|
129035
129035
|
declare const DesignSystemInviteUpdate: z.ZodObject<{
|
|
129036
|
+
/**
|
|
129037
|
+
* Workspace invitation id
|
|
129038
|
+
*/
|
|
129036
129039
|
inviteId: z.ZodString;
|
|
129037
129040
|
designSystemRole: z.ZodNullable<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
129038
129041
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -129116,6 +129119,9 @@ declare const DesignSystemMembershipUpdates: z.ZodObject<{
|
|
|
129116
129119
|
designSystemRole: "Admin" | "Creator" | "Viewer" | "Contributor" | null;
|
|
129117
129120
|
}>, "many">>;
|
|
129118
129121
|
invitesToUpdate: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
129122
|
+
/**
|
|
129123
|
+
* Workspace invitation id
|
|
129124
|
+
*/
|
|
129119
129125
|
inviteId: z.ZodString;
|
|
129120
129126
|
designSystemRole: z.ZodNullable<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
|
|
129121
129127
|
}, "strip", z.ZodTypeAny, {
|
package/dist/index.js
CHANGED
|
@@ -4070,6 +4070,9 @@ var DesignSystemMemberUpdate = _zod.z.object({
|
|
|
4070
4070
|
designSystemRole: DesignSystemRole.nullable()
|
|
4071
4071
|
});
|
|
4072
4072
|
var DesignSystemInviteUpdate = _zod.z.object({
|
|
4073
|
+
/**
|
|
4074
|
+
* Workspace invitation id
|
|
4075
|
+
*/
|
|
4073
4076
|
inviteId: _zod.z.string(),
|
|
4074
4077
|
designSystemRole: DesignSystemRole.nullable()
|
|
4075
4078
|
});
|