n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 748 B
text/typescript
/**
* SeaTable Node - Version 2
* Discriminator: resource=base, operation=collaborator
*/
interface Credentials {
seaTableApi: CredentialReference;
}
/** Get the username from the email or name of a collaborator */
export type SeaTableV2BaseCollaboratorParams = {
resource: 'base';
operation: 'collaborator';
/**
* SeaTable identifies users with a unique username like 244b43hr6fy54bb4afa2c2cb7369d244@auth.local. Get this username from an email or the name of a collaborator.
*/
searchString?: string | Expression<string> | PlaceholderValue;
};
export type SeaTableV2BaseCollaboratorNode = {
type: 'n8n-nodes-base.seaTable';
version: 2;
credentials?: Credentials;
config: NodeConfig<SeaTableV2BaseCollaboratorParams>;
};