n8n-nodes-base
Version:
Base nodes of n8n
24 lines (20 loc) • 609 B
text/typescript
/**
* Drift Node - Version 1
* Discriminator: resource=contact, operation=getCustomAttributes
*/
interface Credentials {
driftApi: CredentialReference;
driftOAuth2Api: CredentialReference;
}
/** Get custom attributes */
export type DriftV1ContactGetCustomAttributesParams = {
resource: 'contact';
operation: 'getCustomAttributes';
authentication?: 'accessToken' | 'oAuth2' | Expression<string>;
};
export type DriftV1ContactGetCustomAttributesNode = {
type: 'n8n-nodes-base.drift';
version: 1;
credentials?: Credentials;
config: NodeConfig<DriftV1ContactGetCustomAttributesParams>;
};