@supernova-studio/model 0.54.33 → 0.54.34
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 +3 -283
- package/dist/index.d.ts +3 -283
- package/dist/index.js +1 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/workspace/workspace-create.ts +0 -13
- package/src/workspace/workspace.ts +4 -1
package/dist/index.mjs
CHANGED
|
@@ -4133,20 +4133,7 @@ var HANDLE_MIN_LENGTH = 2;
|
|
|
4133
4133
|
var HANDLE_MAX_LENGTH = 64;
|
|
4134
4134
|
var CreateWorkspaceInput = z120.object({
|
|
4135
4135
|
name: z120.string().min(WORKSPACE_NAME_MIN_LENGTH).max(WORKSPACE_NAME_MAX_LENGTH).trim(),
|
|
4136
|
-
|
|
4137
|
-
priceId: z120.string(),
|
|
4138
|
-
billingEmail: z120.string().email().optional(),
|
|
4139
|
-
handle: z120.string().regex(slugRegex).min(HANDLE_MIN_LENGTH).max(HANDLE_MAX_LENGTH).refine((value) => value?.length > 0).optional(),
|
|
4140
|
-
invites: UserInvites.optional(),
|
|
4141
|
-
promoCode: z120.string().optional(),
|
|
4142
|
-
status: InternalStatusSchema.optional(),
|
|
4143
|
-
planInterval: BillingIntervalSchema.optional(),
|
|
4144
|
-
seats: z120.number().optional(),
|
|
4145
|
-
seatLimit: z120.number().optional(),
|
|
4146
|
-
card: CardSchema.optional(),
|
|
4147
|
-
sso: SsoProvider.optional(),
|
|
4148
|
-
npmRegistrySettings: NpmRegistryConfig.optional(),
|
|
4149
|
-
ipWhitelist: WorkspaceIpSettings.optional()
|
|
4136
|
+
handle: z120.string().regex(slugRegex).min(HANDLE_MIN_LENGTH).max(HANDLE_MAX_LENGTH).refine((value) => value?.length > 0).optional()
|
|
4150
4137
|
});
|
|
4151
4138
|
|
|
4152
4139
|
// src/workspace/workspace-invitations.ts
|