@agent-native/core 0.100.0 → 0.100.1
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/corpus/README.md +1 -1
- package/corpus/core/CHANGELOG.md +6 -0
- package/corpus/core/package.json +1 -1
- package/corpus/templates/calendar/AGENTS.md +9 -0
- package/corpus/templates/calendar/actions/list-events.ts +659 -44
- package/corpus/templates/calendar/changelog/2026-07-13-calendar-inventory-reads-report-source-coverage.md +6 -0
- package/corpus/templates/calendar/server/lib/calendar-connector-catalog.ts +8 -0
- package/corpus/templates/calendar/server/lib/google-calendar.ts +173 -51
- package/corpus/templates/calendar/server/lib/ical-fetcher.ts +13 -2
- package/corpus/templates/calendar/server/plugins/agent-chat.ts +5 -3
- package/corpus/templates/calendar/shared/api.ts +2 -0
- package/corpus/templates/mail/AGENTS.md +12 -0
- package/corpus/templates/mail/actions/list-emails.ts +486 -4
- package/corpus/templates/mail/changelog/2026-07-13-coverage-aware-connected-inbox-inventory.md +6 -0
- package/corpus/templates/mail/server/db/schema.ts +17 -0
- package/corpus/templates/mail/server/lib/google-auth.ts +33 -5
- package/corpus/templates/mail/server/lib/inventory-cursor.ts +406 -0
- package/corpus/templates/mail/server/lib/list-inbox-emails.ts +21 -2
- package/corpus/templates/mail/server/lib/mail-connector-catalog.ts +8 -0
- package/corpus/templates/mail/server/plugins/agent-chat.ts +4 -9
- package/corpus/templates/mail/server/plugins/db.ts +20 -0
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/resources/handlers.d.ts +2 -2
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/package.json +1 -1
package/corpus/README.md
CHANGED
package/corpus/core/CHANGELOG.md
CHANGED
package/corpus/core/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.100.
|
|
3
|
+
"version": "0.100.1",
|
|
4
4
|
"description": "Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context",
|
|
5
5
|
"homepage": "https://github.com/BuilderIO/agent-native#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -37,6 +37,15 @@ Detailed event, availability, booking, storage, and UI rules live in
|
|
|
37
37
|
with `stageAs` and analyze them with `query-staged-dataset`.
|
|
38
38
|
- For Google Calendar, distinguish an empty calendar from missing auth,
|
|
39
39
|
reauth-needed, or fetch failures.
|
|
40
|
+
- `list-events` remains the UI-compatible event list by default. External MCP
|
|
41
|
+
callers receive its compact, paginated version 1 inventory envelope
|
|
42
|
+
unless they explicitly request `format: "legacy"`; use `format: "inventory"`
|
|
43
|
+
for that same coverage-aware result from other callers. Preserve its
|
|
44
|
+
account coverage, `sourceCoverage`, and `coverageComplete` fields: Google
|
|
45
|
+
account, ICS feed, overlay, and local-booking sources are independent, and a
|
|
46
|
+
partial source failure is not an empty calendar. Pass `accountEmails` only
|
|
47
|
+
for connected accounts; the action validates the whole requested set before
|
|
48
|
+
provider work.
|
|
40
49
|
- Google Calendar working locations are status events (`eventType:
|
|
41
50
|
"workingLocation"`). Sync and display them as working locations, keep them
|
|
42
51
|
transparent/non-blocking, and preserve `workingLocationProperties` instead of
|