n8n-nodes-base
Version:
Base nodes of n8n
42 lines (38 loc) • 847 B
text/typescript
/**
* Demio Node - Version 1
* Discriminator: resource=event, operation=getAll
*/
interface Credentials {
demioApi: CredentialReference;
}
/** Get many events */
export type DemioV1EventGetAllParams = {
resource: 'event';
operation: 'getAll';
/**
* Whether to return all results or only up to a given limit
* @default false
*/
returnAll?: boolean | Expression<boolean>;
/**
* Max number of results to return
* @displayOptions.show { returnAll: [false] }
* @default 100
*/
limit?: number | Expression<number>;
/**
* Filters
* @default {}
*/
filters?: {
/** Type
*/
type?: 'automated' | 'past' | 'upcoming' | Expression<string>;
};
};
export type DemioV1EventGetAllNode = {
type: 'n8n-nodes-base.demio';
version: 1;
credentials?: Credentials;
config: NodeConfig<DemioV1EventGetAllParams>;
};