n8n-nodes-base
Version:
Base nodes of n8n
34 lines (29 loc) • 746 B
text/typescript
/**
* Bubble Node - Version 1
* Discriminator: resource=object, operation=delete
*/
interface Credentials {
bubbleApi: CredentialReference;
}
export type BubbleV1ObjectDeleteParams = {
resource: 'object';
operation: 'delete';
/**
* Name of data type of the object to retrieve
*/
typeName?: string | Expression<string> | PlaceholderValue;
/**
* ID of the object to retrieve
*/
objectId?: string | Expression<string> | PlaceholderValue;
};
export type BubbleV1ObjectDeleteOutput = {
success?: boolean;
};
export type BubbleV1ObjectDeleteNode = {
type: 'n8n-nodes-base.bubble';
version: 1;
credentials?: Credentials;
config: NodeConfig<BubbleV1ObjectDeleteParams>;
output?: Items<BubbleV1ObjectDeleteOutput>;
};