@agent-native/scheduling 0.1.29 → 0.1.31

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.
@@ -0,0 +1,45 @@
1
+ {
2
+ "manifestVersion": 1,
3
+ "package": "@agent-native/scheduling",
4
+ "catalogs": ["domain-packages"],
5
+ "units": [
6
+ {
7
+ "id": "package/scheduling",
8
+ "label": "Scheduling domain package",
9
+ "catalog": "domain-packages",
10
+ "catalogItems": ["scheduling"],
11
+ "entrypoints": [
12
+ ".",
13
+ "./schema",
14
+ "./schema/event-types",
15
+ "./schema/schedules",
16
+ "./schema/bookings",
17
+ "./schema/teams",
18
+ "./schema/credentials",
19
+ "./schema/calendar-cache",
20
+ "./schema/workflows",
21
+ "./schema/routing-forms",
22
+ "./core",
23
+ "./server",
24
+ "./server/providers",
25
+ "./actions/*",
26
+ "./react",
27
+ "./react/components",
28
+ "./shared",
29
+ "./manifest"
30
+ ],
31
+ "strategy": "package-eject",
32
+ "sourceEntries": [
33
+ "src",
34
+ "docs",
35
+ "agent-native.eject.json",
36
+ "agent-native.package.json",
37
+ "package.json",
38
+ "tsconfig.json"
39
+ ],
40
+ "targetRoot": "packages/scheduling",
41
+ "protectedImports": ["@agent-native/core"],
42
+ "verification": ["pnpm --dir packages/scheduling typecheck"]
43
+ }
44
+ ]
45
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-native/scheduling",
3
- "version": "0.1.29",
3
+ "version": "0.1.31",
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": {
@@ -14,9 +14,11 @@
14
14
  },
15
15
  "files": [
16
16
  "agent-native.package.json",
17
+ "agent-native.eject.json",
17
18
  "dist",
18
19
  "docs",
19
- "src"
20
+ "src",
21
+ "tsconfig.json"
20
22
  ],
21
23
  "type": "module",
22
24
  "sideEffects": false,
@@ -54,7 +56,7 @@
54
56
  "nanoid": "^5.1.9",
55
57
  "rrule": "^2.8.1",
56
58
  "zod": "^4.3.6",
57
- "@agent-native/toolkit": "^0.7.0"
59
+ "@agent-native/toolkit": "^0.9.0"
58
60
  },
59
61
  "devDependencies": {
60
62
  "@libsql/client": "^0.15.8",
@@ -65,7 +67,7 @@
65
67
  "react": "^19.2.5",
66
68
  "typescript-7": "npm:typescript@^7.0.2",
67
69
  "vitest": "^4.1.5",
68
- "@agent-native/core": "0.113.0"
70
+ "@agent-native/core": "0.115.0"
69
71
  },
70
72
  "peerDependencies": {
71
73
  "@agent-native/core": ">=0.8.0",
@@ -85,6 +87,7 @@
85
87
  "optional": true
86
88
  }
87
89
  },
90
+ "agentNativeEjectManifest": "agent-native.eject.json",
88
91
  "agentNativeManifest": "agent-native.package.json",
89
92
  "scripts": {
90
93
  "build": "tsc && node scripts/build-llms-full.mjs",
package/tsconfig.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "ESNext",
5
+ "moduleResolution": "bundler",
6
+ "declaration": true,
7
+ "declarationMap": true,
8
+ "sourceMap": true,
9
+ "outDir": "dist",
10
+ "rootDir": "src",
11
+ "strict": true,
12
+ "esModuleInterop": true,
13
+ "allowSyntheticDefaultImports": true,
14
+ "skipLibCheck": true,
15
+ "isolatedModules": true,
16
+ "jsx": "react-jsx",
17
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
18
+ "types": ["node"],
19
+ "incremental": true,
20
+ "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo/scheduling.tsbuildinfo"
21
+ },
22
+ "include": ["src/**/*"],
23
+ "exclude": ["node_modules", "dist", "src/**/*.spec.ts", "src/**/*.test.ts"]
24
+ }