@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
13 lines • 528 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CountryAssociationSchema = void 0;
const tslib_1 = require("tslib");
const joi_1 = tslib_1.__importDefault(require("joi"));
exports.CountryAssociationSchema = joi_1.default.object({
FromCountry: joi_1.default.string()
.required()
.length(2)
.message('FromCountry must be the ISO Alpha-2 country code'),
AlternateServiceName: joi_1.default.string().optional(),
});
//# sourceMappingURL=country-association.js.map