dtamind-components
Version:
Apps integration for Dtamind. Contain Nodes and Credentials.
20 lines • 764 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class UpstashRedisMemoryApi {
constructor() {
this.label = 'Upstash Redis Memory API';
this.name = 'upstashRedisMemoryApi';
this.version = 1.0;
this.description =
'Refer to <a target="_blank" href="https://upstash.com/docs/redis/overall/getstarted">official guide</a> on how to create redis instance and get redis REST Token';
this.inputs = [
{
label: 'Upstash Redis REST Token',
name: 'upstashRestToken',
type: 'password'
}
];
}
}
module.exports = { credClass: UpstashRedisMemoryApi };
//# sourceMappingURL=UpstashRedisMemoryApi.credential.js.map