/** * Google Books Node - Version 2 * Discriminator: resource=bookshelfVolume, operation=getAll */ interface Credentials { googleApi: CredentialReference; googleBooksOAuth2Api: CredentialReference; } /** Get many public bookshelf resource for the specified user */ export type GoogleBooksV2BookshelfVolumeGetAllParams = { resource: 'bookshelfVolume'; operation: 'getAll'; /** * Authentication * @default oAuth2 */ authentication?: 'oAuth2' | 'serviceAccount' | Expression; /** * My Library * @default false */ myLibrary?: boolean | Expression; /** * ID of user * @displayOptions.hide { myLibrary: [true] } */ userId?: string | Expression | PlaceholderValue; /** * ID of the bookshelf */ shelfId?: string | Expression | PlaceholderValue; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 40 */ limit?: number | Expression; }; export type GoogleBooksV2BookshelfVolumeGetAllNode = { type: 'n8n-nodes-base.googleBooks'; version: 2; credentials?: Credentials; config: NodeConfig; };