@hijiriishi/piece-myjvn
Version:
This package is an Activepieces piece for integrating with MyJVM. Information on vulnerabilities and countermeasures for software used in Japan, provided through the MyJVN API.
44 lines • 1.21 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.myjvnCommon = void 0;
const pieces_framework_1 = require("@activepieces/pieces-framework");
exports.myjvnCommon = {
baseUrl: 'https://jvndb.jvn.jp/myjvn',
lang: pieces_framework_1.Property.StaticDropdown({
displayName: 'lang',
description: 'language',
required: true,
options: {
options: [
{
label: 'japanese',
value: 'ja',
},
{
label: 'english',
value: 'en',
},
],
},
defaultValue: 'ja'
}),
ft: pieces_framework_1.Property.StaticDropdown({
displayName: 'format',
description: 'Response Format',
required: true,
options: {
options: [
{
label: 'json',
value: 'json',
},
{
label: 'xml',
value: 'xml',
},
],
},
defaultValue: 'json'
})
};
//# sourceMappingURL=index.js.map