@cloudglue/tinycloud 0.3.10 → 0.3.11
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
CHANGED
|
@@ -17,11 +17,11 @@ The npm package is a small launcher: on first run it downloads the matching
|
|
|
17
17
|
platform distribution from Cloudglue's CDN (cached under
|
|
18
18
|
`~/.tinycloud/versions/<version>/`), verifies its checksum, and execs the real
|
|
19
19
|
binary. The package version pins the binary version, so
|
|
20
|
-
`npx @cloudglue/tinycloud@0.3.
|
|
20
|
+
`npx @cloudglue/tinycloud@0.3.11` always runs tinycloud 0.3.11. It also adds two
|
|
21
21
|
wrapper commands:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
tinycloud install --version 0.3.
|
|
24
|
+
tinycloud install --version 0.3.11 # pre-download a version
|
|
25
25
|
tinycloud install --latest # install latest stable and pin to it
|
|
26
26
|
tinycloud update # move to latest stable, prune old versions
|
|
27
27
|
```
|
package/package.json
CHANGED
|
@@ -39,10 +39,11 @@ connector?" or an envelope field needs explaining.
|
|
|
39
39
|
`library collections show <col>` until every `files[].status` is `completed`
|
|
40
40
|
before querying.
|
|
41
41
|
- **Data connector** — a linked external source of recordings (Zoom, Grain,
|
|
42
|
-
Google Drive, Dropbox,
|
|
43
|
-
lists, browses (`files`, with provider-specific filters
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
Gong, Recall, Google Drive, Dropbox, S3/GCS). `tinycloud library connectors …`
|
|
43
|
+
lists, browses (`files`, with provider-specific filters; rows carry provider
|
|
44
|
+
metadata on 0.3.11+), peeks one item's provider metadata without syncing
|
|
45
|
+
(`inspect`, 0.3.11+), and syncs individual items by URI
|
|
46
|
+
(e.g. `grain://recording/<id>`) so they become Cloudglue files.
|
|
46
47
|
- **Source** — anything a verb accepts as input: a local path, URL,
|
|
47
48
|
`cloudglue://files/<id>` URI, connector URI, collection, or a bare file-id
|
|
48
49
|
UUID (normalized to `cloudglue://files/<id>`; an existing local path of the
|
|
@@ -206,6 +206,7 @@ tinycloud library collections delete <col_id> --json
|
|
|
206
206
|
tinycloud library collections entities <col_id> <source> [--limit <n>] [--offset <n>] --json # read a video's entities
|
|
207
207
|
tinycloud library connectors list --json
|
|
208
208
|
tinycloud library connectors files <connector-id> [--limit 25] [--page-token <t>] --json
|
|
209
|
+
tinycloud library connectors inspect [<connector-id>] <uri-or-share-link> --json # metadata peek, no file created (0.3.11+)
|
|
209
210
|
tinycloud library connectors sync [<connector-id>] <uri-share-link-or-public-url> --json
|
|
210
211
|
```
|
|
211
212
|
|
|
@@ -250,17 +251,32 @@ Dropbox file share links sync server-side via the connector's OAuth
|
|
|
250
251
|
(including login-gated links); `zoom.us/rec/share` links resolve best-effort
|
|
251
252
|
(Zoom mints a new token per copy — the recording-detail link is the reliable
|
|
252
253
|
form). Link warnings are advisory and surface in `data.warnings` rather than
|
|
253
|
-
blocking the sync.
|
|
254
|
+
blocking the sync. Synced files carry provider `source_metadata` (title,
|
|
255
|
+
participants, summary) for Grain, Zoom, Recall, Google Drive, Dropbox, and
|
|
256
|
+
Gong. Non-connector public URLs (direct media URLs, TikTok,
|
|
254
257
|
Loom, public Dropbox links without a connector) sync into a standalone
|
|
255
258
|
Cloudglue file via direct URL ingestion — same command, no connector needed.
|
|
256
259
|
YouTube URLs cannot sync; use `tinycloud grab` instead.
|
|
257
260
|
|
|
258
261
|
`connectors files` also takes provider-specific filters: `--from`/`--to`
|
|
259
|
-
(Zoom
|
|
260
|
-
`--
|
|
261
|
-
(
|
|
262
|
+
(dates — every provider except S3/GCS; Zoom and Gong default to the last
|
|
263
|
+
6 months), `--folder-id` (Google Drive), `--path` (Dropbox),
|
|
264
|
+
`--bucket`/`--prefix` (S3/GCS — bucket required), `--title-search` (Grain,
|
|
265
|
+
Zoom, Google Drive, Dropbox, Gong), `--team`/`--meeting-type` (Grain).
|
|
266
|
+
Filters a provider can't honor are ignored, and filtered pages can come back
|
|
267
|
+
short or even empty while more remain — keep paging until `next_page_token`
|
|
268
|
+
is null. On 0.3.11+ each row also carries provider `metadata` (participants,
|
|
269
|
+
host, duration, AI summary) when the source exposes it — use it to pick files
|
|
270
|
+
before syncing. Collection IDs (`col_…`) are stable; collection names are
|
|
262
271
|
display-only.
|
|
263
272
|
|
|
273
|
+
`connectors inspect <uri>` (0.3.11+, feature `library.connectors.inspect.v1`)
|
|
274
|
+
returns one item's provider `source_metadata` WITHOUT materializing a file —
|
|
275
|
+
same URI/share-link forms as sync, connector id optional. S3/GCS objects have
|
|
276
|
+
nothing richer to inspect. On older binaries it fails with an unknown-command
|
|
277
|
+
error — fall back to `connectors sync` (idempotent) and read
|
|
278
|
+
`source_metadata` from the sync envelope instead.
|
|
279
|
+
|
|
264
280
|
### jobs — async work
|
|
265
281
|
|
|
266
282
|
```bash
|