@agent-native/core 0.176.5-nightly-20260903175350 → 0.176.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/corpus/README.md +1 -1
- package/corpus/templates/calendar/CHANGELOG.md +18 -0
- package/corpus/templates/clips/app/components/recorder/storage-setup-card.tsx +13 -7
- package/corpus/templates/content/CHANGELOG.md +1 -0
- package/corpus/templates/content/actions/_collection-export.ts +925 -0
- package/corpus/templates/content/actions/export-document.ts +79 -255
- package/corpus/templates/content/app/components/editor/DocumentToolbar.tsx +39 -38
- package/corpus/templates/content/app/components/editor/database/DatabaseExportDialog.tsx +444 -113
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +4 -0
- package/corpus/templates/content/app/i18n-data.ts +99 -0
- package/corpus/templates/content/docs/product/capabilities/content.portability.collection-export.md +139 -0
- package/corpus/templates/content/docs/product/encyclopedia.md +12 -8
- package/corpus/templates/content/docs/product/features/content.feature.take-the-whole-vault-with-you.md +5 -1
- package/corpus/templates/content/docs/product/roadmap.md +1 -1
- package/corpus/templates/content/shared/database-collection-export.ts +161 -0
- package/corpus/templates/content/shared/database-csv-export.ts +6 -3
- package/corpus/templates/design/CHANGELOG.md +1 -0
- package/corpus/templates/factory/CHANGELOG.md +20 -0
- package/corpus/templates/mail/CHANGELOG.md +12 -0
- package/corpus/templates/plan/CHANGELOG.md +6 -0
- package/corpus/templates/slides/CHANGELOG.md +9 -0
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/notifications/routes.d.ts +1 -1
- package/dist/observability/routes.d.ts +5 -5
- package/dist/progress/routes.d.ts +1 -1
- package/dist/secrets/routes.d.ts +9 -9
- package/dist/server/realtime-token.d.ts +1 -1
- package/package.json +3 -3
package/corpus/README.md
CHANGED
|
@@ -3,8 +3,26 @@
|
|
|
3
3
|
All notable user-facing changes to Agent-Native Calendar are documented here. Open it any
|
|
4
4
|
time from the command menu (Cmd+K → "What's new") or from Settings.
|
|
5
5
|
|
|
6
|
+
## 2026-09-03
|
|
7
|
+
|
|
8
|
+
### Improved
|
|
9
|
+
|
|
10
|
+
- Calendar now supports reliable batch event updates and booking cancellations.
|
|
11
|
+
- The agent now asks for your approval before it deletes events in bulk, emails your guests about a cancellation or change, or moves an event to another calendar.
|
|
12
|
+
|
|
13
|
+
## 2026-09-02
|
|
14
|
+
|
|
15
|
+
### Improved
|
|
16
|
+
|
|
17
|
+
- Creating an event with guests now uses Save while still sending invitations
|
|
18
|
+
- Updated the booking-link OG preview image with the new monochrome logo and dark background.
|
|
19
|
+
|
|
6
20
|
## 2026-09-01
|
|
7
21
|
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Calendars shared with your connected Google accounts can now appear alongside your primary calendars.
|
|
25
|
+
|
|
8
26
|
### Improved
|
|
9
27
|
|
|
10
28
|
- Calendar keeps the learn-more link clear of the language control on every screen size.
|
|
@@ -96,6 +96,12 @@ export function StorageSetupCard({
|
|
|
96
96
|
}
|
|
97
97
|
stopVisibilityHandler();
|
|
98
98
|
};
|
|
99
|
+
const showTimeout = (): void => {
|
|
100
|
+
if (!mountedRef.current || Date.now() - start <= timeoutMs) return;
|
|
101
|
+
stop();
|
|
102
|
+
setConnecting(false);
|
|
103
|
+
setErr(t("storageSetup.builderTimeout"));
|
|
104
|
+
};
|
|
99
105
|
const tick = async () => {
|
|
100
106
|
if (document.hidden || inFlightRef.current) return;
|
|
101
107
|
inFlightRef.current = true;
|
|
@@ -112,7 +118,10 @@ export function StorageSetupCard({
|
|
|
112
118
|
).toString(),
|
|
113
119
|
{ signal: controller.signal },
|
|
114
120
|
);
|
|
115
|
-
if (!r.ok)
|
|
121
|
+
if (!r.ok) {
|
|
122
|
+
showTimeout();
|
|
123
|
+
return;
|
|
124
|
+
}
|
|
116
125
|
const s = (await r.json()) as { configured: boolean };
|
|
117
126
|
if (!mountedRef.current) {
|
|
118
127
|
stop();
|
|
@@ -123,14 +132,11 @@ export function StorageSetupCard({
|
|
|
123
132
|
setConnecting(false);
|
|
124
133
|
setConnected(true);
|
|
125
134
|
setTimeout(() => void onConfigured(), 800);
|
|
126
|
-
} else
|
|
127
|
-
|
|
128
|
-
setConnecting(false);
|
|
129
|
-
setErr(t("storageSetup.builderTimeout"));
|
|
135
|
+
} else {
|
|
136
|
+
showTimeout();
|
|
130
137
|
}
|
|
131
138
|
} catch {
|
|
132
|
-
|
|
133
|
-
// timeoutMs bound above surfaces builderTimeout if it never succeeds.
|
|
139
|
+
showTimeout();
|
|
134
140
|
} finally {
|
|
135
141
|
clearTimeout(abortTimer);
|
|
136
142
|
inFlightRef.current = false;
|
|
@@ -7,6 +7,7 @@ time from the command menu (Cmd+K → "What's new").
|
|
|
7
7
|
|
|
8
8
|
### Fixed
|
|
9
9
|
|
|
10
|
+
- Builder Publish connections made in Settings can now discover, attach, and refresh read-only database sources without separate legacy keys or Builder write access.
|
|
10
11
|
- Delegated Content requests now stay on Content's own actions for every authorized caller, including managed Slack channels.
|
|
11
12
|
|
|
12
13
|
## 2026-08-26
|