n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 613 B
text/typescript
/**
* Freshservice Node - Version 1
* Discriminator: resource=announcement, operation=delete
*/
interface Credentials {
freshserviceApi: CredentialReference;
}
/** Delete an agent */
export type FreshserviceV1AnnouncementDeleteParams = {
resource: 'announcement';
operation: 'delete';
/**
* ID of the announcement to delete
*/
announcementId?: string | Expression<string> | PlaceholderValue;
};
export type FreshserviceV1AnnouncementDeleteNode = {
type: 'n8n-nodes-base.freshservice';
version: 1;
credentials?: Credentials;
config: NodeConfig<FreshserviceV1AnnouncementDeleteParams>;
};