@agent-native/scheduling 0.1.25 → 0.1.26
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/README.md +4 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Scheduling primitives for agent-native apps.
|
|
4
4
|
|
|
5
|
+
Scheduling is a Toolkit capability module installed on demand. It lives in its
|
|
6
|
+
own npm package so apps only take the domain model, actions, UI, and lifecycle
|
|
7
|
+
metadata they need.
|
|
8
|
+
|
|
5
9
|
Powers the `calendar` template and custom scheduling surfaces. Provides:
|
|
6
10
|
|
|
7
11
|
- **Drizzle schemas** — event types, schedules, availability rules, bookings, teams, workflows, routing forms
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/scheduling",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26",
|
|
4
4
|
"description": "Scheduling primitives for agent-native apps — event types, availability, bookings, team scheduling, workflows, and routing forms.",
|
|
5
5
|
"homepage": "https://github.com/BuilderIO/agent-native#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"src"
|
|
20
20
|
],
|
|
21
21
|
"type": "module",
|
|
22
|
+
"sideEffects": false,
|
|
22
23
|
"exports": {
|
|
23
24
|
".": "./dist/index.js",
|
|
24
25
|
"./schema": "./dist/schema/index.js",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"nanoid": "^5.1.9",
|
|
54
55
|
"rrule": "^2.8.1",
|
|
55
56
|
"zod": "^4.3.6",
|
|
56
|
-
"@agent-native/toolkit": "^0.
|
|
57
|
+
"@agent-native/toolkit": "^0.5.0"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
60
|
"@libsql/client": "^0.15.8",
|
|
@@ -64,7 +65,7 @@
|
|
|
64
65
|
"react": "^19.2.5",
|
|
65
66
|
"typescript-7": "npm:typescript@^7.0.2",
|
|
66
67
|
"vitest": "^4.1.5",
|
|
67
|
-
"@agent-native/core": "0.
|
|
68
|
+
"@agent-native/core": "0.109.4"
|
|
68
69
|
},
|
|
69
70
|
"peerDependencies": {
|
|
70
71
|
"@agent-native/core": ">=0.8.0",
|