ajv-json-logic
Version:
JSON Logic integration for Ajv validator
24 lines (19 loc) • 655 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var index = require('./common/index.cjs');
var index$1 = require('./operators/index.cjs');
// Main schema index file - exports all schemas
// Export all schemas in the recommended loading order
const allSchemas = [
// Common schemas first
...index.default,
// Then all operator schemas
...index$1.default,
];
// For CommonJS compatibility
if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports = allSchemas;
module.exports.default = allSchemas;
}
exports.default = allSchemas;
//# sourceMappingURL=index.cjs.map