@alpic-ai/api 0.0.0-staging.eb7cd82 → 0.0.0-staging.f279b42
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 +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -228,6 +228,7 @@ declare const contract: {
|
|
|
228
228
|
update: {
|
|
229
229
|
v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
230
230
|
projectId: z.ZodString;
|
|
231
|
+
name: z.ZodOptional<z.ZodString>;
|
|
231
232
|
sourceRepository: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
232
233
|
}, z.core.$strip>, z.ZodObject<{
|
|
233
234
|
id: z.ZodString;
|
package/dist/index.mjs
CHANGED
|
@@ -230,6 +230,7 @@ const updateProjectContractV1 = oc.route({
|
|
|
230
230
|
BAD_REQUEST: {}
|
|
231
231
|
}).input(z.object({
|
|
232
232
|
projectId: z.string().describe("The ID of the project"),
|
|
233
|
+
name: z.string().min(1).max(100).optional().describe("The new name for the project"),
|
|
233
234
|
sourceRepository: z.string().nullable().optional().describe("The source repository to connect to the project")
|
|
234
235
|
})).output(projectOutputSchema);
|
|
235
236
|
const deployEnvironmentContractV1 = oc.route({
|