@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
18 lines • 769 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LabelVoucherSchema = exports.LabelVoucher = void 0;
const tslib_1 = require("tslib");
const joi_1 = tslib_1.__importDefault(require("joi"));
/** @description Represents information needed to leverage a third party Carrier API implementation */
class LabelVoucher {
/** @description Base URL for the Carrier API implementation */
url;
/** @description Token needed to authenticate with the Carrier API implementation */
token;
}
exports.LabelVoucher = LabelVoucher;
exports.LabelVoucherSchema = joi_1.default.object({
url: joi_1.default.string().optional().empty(),
token: joi_1.default.string().optional().empty(),
});
//# sourceMappingURL=label-voucher.js.map