Google Sheets integration adapter for Kiln.
| Operation | Description |
|---|---|
read_range |
Read values from a spreadsheet range (A1 notation) |
append_rows |
Append rows of data after a given range |
update_range |
Update values in a specific range |
bun add @kilnai/integration-google-sheetsRequires @kilnai/core ^2.1.0 as a peer dependency.
import { IntegrationRegistry } from "@kilnai/core";
import { adapter } from "@kilnai/integration-google-sheets";
IntegrationRegistry.register(adapter);The adapter expects a ResolvedCredential with an OAuth2 access token as the value. It creates a Google OAuth2 client internally — no client ID or secret needed when injecting an existing token.
Built on @googleapis/sheets (standalone package, not the monolithic googleapis).
