Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

Kiln

@kilnai/integration-google-sheets

npm version License: MIT

Google Sheets integration adapter for Kiln.


Operations

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

Install

bun add @kilnai/integration-google-sheets

Requires @kilnai/core ^2.1.0 as a peer dependency.

Usage

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.

SDK

Built on @googleapis/sheets (standalone package, not the monolithic googleapis).

License

MIT