n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 586 B
text/typescript
/**
* Freshservice Node - Version 1
* Discriminator: resource=software, operation=get
*/
interface Credentials {
freshserviceApi: CredentialReference;
}
/** Retrieve an agent */
export type FreshserviceV1SoftwareGetParams = {
resource: 'software';
operation: 'get';
/**
* ID of the software application to retrieve
*/
softwareId?: string | Expression<string> | PlaceholderValue;
};
export type FreshserviceV1SoftwareGetNode = {
type: 'n8n-nodes-base.freshservice';
version: 1;
credentials?: Credentials;
config: NodeConfig<FreshserviceV1SoftwareGetParams>;
};