@resin/pinejs
Version:
Pine.js is a sophisticated rules-driven API engine that enables you to define rules in a structured subset of English. Those rules are used in order for Pine.js to generate a database schema and the associated [OData](http://www.odata.org/) API. This make
13 lines • 558 B
JavaScript
const { SBVRParser } = require('@resin/sbvr-parser');
const Types = require('@resin/sbvr-types/Type.sbvr');
module.exports = SBVRParser._extend({
initialize() {
SBVRParser.initialize.call(this);
this.AddCustomAttribute('Database ID Field:');
this.AddCustomAttribute('Database Table Name:');
this.AddBuiltInVocab(Types);
return this;
}
});
module.exports.version = require('@resin/sbvr-parser/package.json').version + '+' + require('../../package.json').version;
//# sourceMappingURL=extended-sbvr-parser.js.map