Skip to content
This repository was archived by the owner on Jul 18, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ The catalog separates two collection paths. **Vana Desktop (local)** runs regist
| `claude` | `claude.conversations`, `claude.projects` | claude-export-playwright (experimental) |
| `doordash` | `doordash.orders` | doordash-playwright (beta) |
| `github` | `github.contributions`, `github.events`, `github.history`, `github.profile`, `github.repositories`, `github.starred` | github-playwright (stable) |
| `gmail` | `gmail.receipts` | gmail-playwright (experimental) |
| `heb` | `heb.nutrition`, `heb.orders`, `heb.profile` | heb-playwright (experimental) |
| `icloud_notes` | `icloud_notes.folders`, `icloud_notes.notes` | icloud-notes-playwright (experimental) |
| `instagram` | `instagram.ads`, `instagram.following`, `instagram.posts`, `instagram.profile` | instagram-playwright (stable); instagram-ads-playwright (beta) |
Expand Down
1 change: 1 addition & 0 deletions SCOPES.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Every immutable `connectors-<commit12>` GitHub release includes `scope-catalog.j
| github | `github.profile` | Account profile information such as name, bio, follower counts, pinned repositories, organization memberships, and achievement badges | [JSON Schema](connectors/github/schemas/github.profile.json) | Yes | Yes | None | github-playwright (stable) |
| github | `github.repositories` | Your repository list with metadata like language, stars, and update time | [JSON Schema](connectors/github/schemas/github.repositories.json) | No | Yes | None | github-playwright (stable) |
| github | `github.starred` | Repositories you have starred on GitHub | [JSON Schema](connectors/github/schemas/github.starred.json) | No | Yes | None | github-playwright (stable) |
| gmail | `gmail.receipts` | Recent Gmail messages matching purchases, flights, or tickets, including sender, subject, date, and preview text. | [JSON Schema](connectors/google/schemas/gmail.receipts.json) | No | Yes | Vana Desktop (local; gmail-playwright): The Desktop connector returns at most the 100 most recent Gmail rows matching the purchase and travel search. | gmail-playwright (experimental) |
| heb | `heb.nutrition` | Nutrition facts (calories, macros, sodium, fiber, vitamins) for each product ordered. Aligned to Schema.org NutritionInformation. | [JSON Schema](connectors/heb/schemas/heb.nutrition.json) | No | Yes | None | heb-playwright (experimental) |
| heb | `heb.orders` | Curbside and delivery orders with item names, quantities, prices, and order dates | [JSON Schema](connectors/heb/schemas/heb.orders.json) | No | Yes | None | heb-playwright (experimental) |
| heb | `heb.profile` | Your name, email, phone number, and saved delivery addresses | [JSON Schema](connectors/heb/schemas/heb.profile.json) | No | Yes | None | heb-playwright (experimental) |
Expand Down
Binary file not shown.
28 changes: 28 additions & 0 deletions connector-index.json
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,34 @@
}
}
],
"gmail-playwright": [
{
"connectorId": "gmail-playwright",
"company": "google",
"version": "1.0.0",
"name": "Gmail Receipts",
"status": "experimental",
"description": "Exports up to 100 recent Gmail purchase receipts and travel confirmations using a local authenticated browser session.",
"sourceFiles": {
"script": "google/gmail-playwright.js",
"metadata": "google/gmail-playwright.json"
},
"publishedAt": "2026-07-13T00:00:00Z",
"sourceTag": "feat/gmail-connector",
"sourceCommit": "239092da52f87e3917819828b3e1250d770018fe",
"releaseId": "connectors-239092da52f8",
"pageApiVersion": 1,
"manifestSha256": "sha256:b3f80f45f9c38e0580099bfc612a847592f34af8815b0657f38333c017a663c4",
"scriptSha256": "sha256:21d7e4853f41a86a6de47c7dd833f0ba21dce22d9ed7fd51548f7b33c27b7279",
"artifactSha256": "sha256:e147f0313c25c9ef8f233cdb4de6e04500d95f7f540978f7e490fe1a23ab29ad",
"artifactPath": "artifacts/gmail-playwright/gmail-playwright-1.0.0.tgz",
"artifactUrl": "https://raw.githubusercontent.com/vana-com/data-connectors/239092da52f87e3917819828b3e1250d770018fe/artifacts/gmail-playwright/gmail-playwright-1.0.0.tgz",
"scopes": [
"gmail.receipts"
],
"consumerMetadata": null
}
],
"heb-playwright": [
{
"connectorId": "heb-playwright",
Expand Down
1 change: 1 addition & 0 deletions connectors/google/fixtures/gmail.receipts.empty.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]
23 changes: 23 additions & 0 deletions connectors/google/fixtures/gmail.receipts.small.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[
{
"id": "synthetic-order-2026-001",
"date": "Jul 9, 2026, 10:42 AM",
"sender": "Example Store <receipts@example-store.test>",
"subject": "Your order is confirmed",
"snippet": "Thanks for your purchase. Your synthetic order will be dispatched shortly."
},
{
"id": "synthetic-flight-2026-002",
"date": "Jul 7, 2026, 4:15 PM",
"sender": "Example Airways <booking@example-airways.test>",
"subject": "Flight booking confirmation",
"snippet": "Your synthetic itinerary from Lagos to Accra is confirmed for August 18."
},
{
"id": "synthetic-ticket-2026-003",
"date": "Jul 3, 2026, 8:05 AM",
"sender": "Example Tickets <hello@example-tickets.test>",
"subject": "Your event tickets",
"snippet": "Your two synthetic admission tickets are attached and ready to use."
}
]
Loading