@accounter/shaam-uniform-format-generator
Version:
Fully typed application that generates, parses, and validates SHAAM uniform format tax reports (INI.TXT and BKMVDATA.TXT).
21 lines (20 loc) • 1.58 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.parseZ900 = exports.encodeZ900 = exports.Z900Schema = exports.parseA100 = exports.encodeA100 = exports.A100Schema = void 0;
// A100 Record - Business opening record
var a100_js_1 = require("./a100.js");
Object.defineProperty(exports, "A100Schema", { enumerable: true, get: function () { return a100_js_1.A100Schema; } });
Object.defineProperty(exports, "encodeA100", { enumerable: true, get: function () { return a100_js_1.encodeA100; } });
Object.defineProperty(exports, "parseA100", { enumerable: true, get: function () { return a100_js_1.parseA100; } });
// Z900 Record - Closing record
var z900_js_1 = require("./z900.js");
Object.defineProperty(exports, "Z900Schema", { enumerable: true, get: function () { return z900_js_1.Z900Schema; } });
Object.defineProperty(exports, "encodeZ900", { enumerable: true, get: function () { return z900_js_1.encodeZ900; } });
Object.defineProperty(exports, "parseZ900", { enumerable: true, get: function () { return z900_js_1.parseZ900; } });
// Placeholder exports for future record types
// export { B100Schema, type B100, encodeB100, parseB100 } from './b100.js';
// export { B110Schema, type B110, encodeB110, parseB110 } from './b110.js';
// export { C100Schema, type C100, encodeC100, parseC100 } from './c100.js';
// export { D110Schema, type D110, encodeD110, parseD110 } from './d110.js';
// export { D120Schema, type D120, encodeD120, parseD120 } from './d120.js';
// export { M100Schema, type M100, encodeM100, parseM100 } from './m100.js';