dtamind-components
Version:
DTAmindai Components
30 lines • 970 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class MomentoCacheApi {
constructor() {
this.label = 'Momento Cache API';
this.name = 'momentoCacheApi';
this.version = 1.0;
this.description =
'Refer to <a target="_blank" href="https://docs.momentohq.com/cache/develop/authentication/api-keys">official guide</a> on how to get API key on Momento';
this.inputs = [
{
label: 'Cache',
name: 'momentoCache',
type: 'string'
},
{
label: 'API Key',
name: 'momentoApiKey',
type: 'password'
},
{
label: 'Endpoint',
name: 'momentoEndpoint',
type: 'string'
}
];
}
}
module.exports = { credClass: MomentoCacheApi };
//# sourceMappingURL=MomentoCacheApi.credential.js.map