n8n-nodes-base
Version:
Base nodes of n8n
33 lines (29 loc) • 723 B
text/typescript
/**
* SyncroMSP Node - Version 1
* Discriminator: resource=contact, operation=getAll
*/
interface Credentials {
syncroMspApi: CredentialReference;
}
/** Retrieve many customers */
export type SyncroMspV1ContactGetAllParams = {
resource: 'contact';
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<number>;
};
export type SyncroMspV1ContactGetAllNode = {
type: 'n8n-nodes-base.syncroMsp';
version: 1;
credentials?: Credentials;
config: NodeConfig<SyncroMspV1ContactGetAllParams>;
};