n8n-nodes-base
Version:
Base nodes of n8n
34 lines (30 loc) • 880 B
text/typescript
/**
* Monica CRM Node - Version 1
* Discriminator: resource=conversation, operation=update
*/
interface Credentials {
monicaCrmApi: CredentialReference;
}
/** Update an activity */
export type MonicaCrmV1ConversationUpdateParams = {
resource: 'conversation';
operation: 'update';
/**
* ID of the conversation to update
*/
conversationId?: string | Expression<string> | PlaceholderValue;
/**
* Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>
*/
contactFieldTypeId?: string | Expression<string>;
/**
* Date when the conversation happened
*/
happenedAt?: string | Expression<string>;
};
export type MonicaCrmV1ConversationUpdateNode = {
type: 'n8n-nodes-base.monicaCrm';
version: 1;
credentials?: Credentials;
config: NodeConfig<MonicaCrmV1ConversationUpdateParams>;
};