bc-node-sdk
Version:
BetterCommerce's NodeJS SDK encapsulates the base framework for all the Next.js applications.
41 lines (40 loc) • 1.85 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Utils = exports.Infra = exports.Constants = exports.Enums = exports.Types = exports.Contracts = exports.Entity = void 0;
const Entities = __importStar(require("./domain/entity"));
exports.Entity = Entities;
const Contracts = __importStar(require("./domain/contracts"));
exports.Contracts = Contracts;
const Types = __importStar(require("./domain/types"));
exports.Types = Types;
const Enums = __importStar(require("./domain/enums"));
exports.Enums = Enums;
const Constants = __importStar(require("./domain/constants"));
exports.Constants = Constants;
const Infra = __importStar(require("./infrastructure"));
exports.Infra = Infra;
const Utils = __importStar(require("./utils"));
exports.Utils = Utils;