@keystrokehq/cli 0.0.77 → 0.0.79
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.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6335,6 +6335,7 @@ const ProjectSchema = object({
|
|
|
6335
6335
|
id: string(),
|
|
6336
6336
|
organizationId: string(),
|
|
6337
6337
|
name: string(),
|
|
6338
|
+
description: string().nullable(),
|
|
6338
6339
|
status: ProjectStatusSchema,
|
|
6339
6340
|
baseUrl: string().nullable(),
|
|
6340
6341
|
runtimeId: string().nullable(),
|
|
@@ -6357,7 +6358,10 @@ const CreateOrganizationRequestSchema = object({
|
|
|
6357
6358
|
const UpdateOrganizationRequestSchema = object({ slug: ClaimableOrganizationSlugSchema });
|
|
6358
6359
|
const CreateOrganizationResponseSchema = object({ organization: UserOrganizationSchema });
|
|
6359
6360
|
const ListProjectsResponseSchema = object({ projects: array(ProjectSchema) });
|
|
6360
|
-
const CreateProjectRequestSchema = object({
|
|
6361
|
+
const CreateProjectRequestSchema = object({
|
|
6362
|
+
name: string().trim().min(1),
|
|
6363
|
+
description: string().trim().min(1).optional()
|
|
6364
|
+
});
|
|
6361
6365
|
const CreateProjectResponseSchema = object({ project: ProjectSchema });
|
|
6362
6366
|
const ProjectResponseSchema = object({ project: ProjectSchema });
|
|
6363
6367
|
const ProjectReachabilityResponseSchema = object({ reachable: boolean() });
|