@automate.ax/api-contract 0.19.2 → 0.20.0
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/deployment.js +0 -1
- package/package.json +2 -2
- package/src/deployment.ts +0 -1
package/dist/deployment.js
CHANGED
|
@@ -21,7 +21,6 @@ export const deploymentContract = {
|
|
|
21
21
|
identityKey: z.string().min(1),
|
|
22
22
|
})
|
|
23
23
|
.array()
|
|
24
|
-
.min(1, "Deployment must include at least one automation.")
|
|
25
24
|
.superRefine((manifest, context) => {
|
|
26
25
|
const identityKeys = new Set();
|
|
27
26
|
for (const [index, entry] of manifest.entries()) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/api-contract",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "Public oRPC contract for the Automate.ax API.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@automate.ax/codec": "0.
|
|
29
|
+
"@automate.ax/codec": "0.20.0",
|
|
30
30
|
"@orpc/contract": "1.13.14",
|
|
31
31
|
"zod": "^4.3.6"
|
|
32
32
|
},
|
package/src/deployment.ts
CHANGED