/** * SyncroMSP Node - Version 1 * Discriminator: resource=rmm, operation=getAll */ interface Credentials { syncroMspApi: CredentialReference; } /** Retrieve many customers */ export type SyncroMspV1RmmGetAllParams = { resource: 'rmm'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 25 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** Status * @default all */ status?: 'active' | 'all' | 'resolved' | Expression; }; }; export type SyncroMspV1RmmGetAllNode = { type: 'n8n-nodes-base.syncroMsp'; version: 1; credentials?: Credentials; config: NodeConfig; };