@waitroom-io/cli 0.0.4 → 0.0.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.
- package/dist/index.js +6 -2
- package/package.json +12 -13
package/dist/index.js
CHANGED
|
@@ -4122,11 +4122,13 @@ var createRoomSchema = external_exports.object({
|
|
|
4122
4122
|
name: external_exports.string().min(1).max(200),
|
|
4123
4123
|
slug: external_exports.string().min(1).max(100).regex(/^[a-z0-9-]+$/, "Slug must be lowercase alphanumeric with hyphens").optional(),
|
|
4124
4124
|
description: external_exports.string().max(2e3).optional(),
|
|
4125
|
+
agent_instructions: external_exports.string().max(5e3).optional(),
|
|
4125
4126
|
policies: roomPoliciesSchema.partial().optional()
|
|
4126
4127
|
});
|
|
4127
4128
|
var updateRoomSchema = external_exports.object({
|
|
4128
4129
|
name: external_exports.string().min(1).max(200).optional(),
|
|
4129
|
-
description: external_exports.string().max(2e3).nullable().optional()
|
|
4130
|
+
description: external_exports.string().max(2e3).nullable().optional(),
|
|
4131
|
+
agent_instructions: external_exports.string().max(5e3).nullable().optional()
|
|
4130
4132
|
}).refine((obj) => Object.keys(obj).length > 0, "At least one field must be provided");
|
|
4131
4133
|
var updatePoliciesSchema = external_exports.object({
|
|
4132
4134
|
policies: roomPoliciesSchema
|
|
@@ -9186,11 +9188,13 @@ var createRoomSchema2 = external_exports2.object({
|
|
|
9186
9188
|
name: external_exports2.string().min(1).max(200),
|
|
9187
9189
|
slug: external_exports2.string().min(1).max(100).regex(/^[a-z0-9-]+$/, "Slug must be lowercase alphanumeric with hyphens").optional(),
|
|
9188
9190
|
description: external_exports2.string().max(2e3).optional(),
|
|
9191
|
+
agent_instructions: external_exports2.string().max(5e3).optional(),
|
|
9189
9192
|
policies: roomPoliciesSchema2.partial().optional()
|
|
9190
9193
|
});
|
|
9191
9194
|
var updateRoomSchema2 = external_exports2.object({
|
|
9192
9195
|
name: external_exports2.string().min(1).max(200).optional(),
|
|
9193
|
-
description: external_exports2.string().max(2e3).nullable().optional()
|
|
9196
|
+
description: external_exports2.string().max(2e3).nullable().optional(),
|
|
9197
|
+
agent_instructions: external_exports2.string().max(5e3).nullable().optional()
|
|
9194
9198
|
}).refine((obj) => Object.keys(obj).length > 0, "At least one field must be provided");
|
|
9195
9199
|
var updatePoliciesSchema2 = external_exports2.object({
|
|
9196
9200
|
policies: roomPoliciesSchema2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@waitroom-io/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "Waitroom CLI — coordination layer between AI agents and humans",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,13 +10,6 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
12
12
|
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "tsup",
|
|
15
|
-
"typecheck": "tsc --noEmit",
|
|
16
|
-
"test": "vitest run",
|
|
17
|
-
"clean": "rm -rf dist",
|
|
18
|
-
"prepublishOnly": "pnpm build"
|
|
19
|
-
},
|
|
20
13
|
"keywords": [
|
|
21
14
|
"waitroom",
|
|
22
15
|
"cli",
|
|
@@ -33,13 +26,19 @@
|
|
|
33
26
|
"eventsource": "^3.0.0"
|
|
34
27
|
},
|
|
35
28
|
"devDependencies": {
|
|
36
|
-
"@waitroom-io/sdk": "workspace:*",
|
|
37
|
-
"@waitroom-io/shared": "workspace:*",
|
|
38
29
|
"@types/node": "^22.10.7",
|
|
39
|
-
"@waitroom/tsconfig": "workspace:*",
|
|
40
30
|
"tsup": "^8.0.0",
|
|
41
31
|
"tsx": "^4.19.2",
|
|
42
32
|
"typescript": "^5.7.3",
|
|
43
|
-
"vitest": "^2.1.8"
|
|
33
|
+
"vitest": "^2.1.8",
|
|
34
|
+
"@waitroom-io/sdk": "0.0.5",
|
|
35
|
+
"@waitroom-io/tsconfig": "0.0.0",
|
|
36
|
+
"@waitroom-io/shared": "0.0.1"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "tsup",
|
|
40
|
+
"typecheck": "tsc --noEmit",
|
|
41
|
+
"test": "vitest run",
|
|
42
|
+
"clean": "rm -rf dist"
|
|
44
43
|
}
|
|
45
|
-
}
|
|
44
|
+
}
|