@alpic-ai/api 1.91.4 → 1.91.5

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -181,7 +181,7 @@ const createProjectContractV1 = oc.route({
181
181
  BAD_REQUEST: {}
182
182
  }).input(z.object({
183
183
  teamId: z.string().optional(),
184
- name: z.string().min(1).max(100),
184
+ name: z.string().trim().min(1).max(100),
185
185
  sourceRepository: z.string().optional(),
186
186
  branchName: z.string().min(1).optional(),
187
187
  runtime: runtimeSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/api",
3
- "version": "1.91.4",
3
+ "version": "1.91.5",
4
4
  "description": "Contract for the Alpic API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",