n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 532 B
text/typescript
/**
* Agile CRM Node - Version 1
* Discriminator: resource=deal, operation=get
*/
interface Credentials {
agileCrmApi: CredentialReference;
}
/** Get a contact */
export type AgileCrmV1DealGetParams = {
resource: 'deal';
operation: 'get';
/**
* Unique identifier for a particular deal
*/
dealId?: string | Expression<string> | PlaceholderValue;
};
export type AgileCrmV1DealGetNode = {
type: 'n8n-nodes-base.agileCrm';
version: 1;
credentials?: Credentials;
config: NodeConfig<AgileCrmV1DealGetParams>;
};