interface GoogleBooksNodeParameters {
authentication?: "oAuth2" | "serviceAccount";
limit?: number;
myLibrary?: boolean;
operation?:
| "get"
| "getAll"
| "add"
| "remove"
| "move"
| "clear";
resource?: "bookshelf"
| "bookshelfVolume"
| "volume";
returnAll?: boolean;
searchQuery?: string;
shelfId?: string;
userId?: string;
volumeId?: string;
volumePosition?: string;
}
Default: "serviceAccount"