@enable-tech/shared-types
Version:
This package represents the single source of truth of the Types being used in the codebase (front-end and back-end) of enable.tech, It is an organization-scoped package. So, all the development teams belonging to it can participate to enhance it.
66 lines • 3.52 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.E_SavedLocationSearchType = exports.E_PostAddress = exports.E_SavedLocationAddressType = exports.E_AddressType = exports.E_SavedLocationType = exports.E_LocationType = void 0;
// ! NOTE: This type replaces the following type: ELocationType
// TODO: TO BE MERGED WITHIN THIS ENUM E_SavedLocationType & UPDATE THE NEEDED CODE WHEN THIS IS DONE
var E_LocationType;
(function (E_LocationType) {
E_LocationType["NationalAddress"] = "NATIONAL_ADDRESS";
E_LocationType["PinAddress"] = "PIN_LOCATION";
})(E_LocationType || (exports.E_LocationType = E_LocationType = {}));
// ! NOTE: This type replaces the following type: ESavedLocationType
var E_SavedLocationType;
(function (E_SavedLocationType) {
E_SavedLocationType["NATIONAL_ADDRESS"] = "NATIONAL_ADDRESS";
E_SavedLocationType["PIN_LOCATION"] = "PIN_LOCATION";
})(E_SavedLocationType || (exports.E_SavedLocationType = E_SavedLocationType = {}));
// ! NOTE: This type replaces the following types: EAddressType
var E_AddressType;
(function (E_AddressType) {
E_AddressType["HOUSE"] = "HOUSE";
E_AddressType["OFFICE"] = "OFFICE";
E_AddressType["APARTMENT"] = "APARTMENT";
})(E_AddressType || (exports.E_AddressType = E_AddressType = {}));
// ! NOTE: This type replaces the following types: ESavedLocationAddressType
var E_SavedLocationAddressType;
(function (E_SavedLocationAddressType) {
E_SavedLocationAddressType["HOUSE"] = "HOUSE";
E_SavedLocationAddressType["OFFICE"] = "OFFICE";
E_SavedLocationAddressType["APARTMENT"] = "APARTMENT";
E_SavedLocationAddressType["BRANCH"] = "BRANCH";
})(E_SavedLocationAddressType || (exports.E_SavedLocationAddressType = E_SavedLocationAddressType = {}));
// ! NOTE: This type replaces the following types: EPostAddress
var E_PostAddress;
(function (E_PostAddress) {
E_PostAddress["type"] = "type";
E_PostAddress["addressType"] = "addressType";
E_PostAddress["nickname"] = "nickname";
E_PostAddress["country"] = "country";
E_PostAddress["city"] = "city";
E_PostAddress["area"] = "area";
E_PostAddress["buildingName"] = "buildingName";
E_PostAddress["latitude"] = "latitude";
E_PostAddress["zoneNumber"] = "zoneNumber";
E_PostAddress["streetNumber"] = "streetNumber";
E_PostAddress["buildingNumber"] = "buildingNumber";
E_PostAddress["floorNumber"] = "floorNumber";
E_PostAddress["unitNumber"] = "unitNumber";
E_PostAddress["additionalInfo"] = "additionalInfo";
E_PostAddress["nearestLandmark"] = "nearestLandmark";
E_PostAddress["customerId"] = "customerId";
E_PostAddress["streetName"] = "streetName";
E_PostAddress["pinLink"] = "pinLink";
})(E_PostAddress || (exports.E_PostAddress = E_PostAddress = {}));
// ! NOTE: This type replaces the following types: ESavedLocationSearchType
var E_SavedLocationSearchType;
(function (E_SavedLocationSearchType) {
E_SavedLocationSearchType["all"] = "all";
E_SavedLocationSearchType["city"] = "city";
E_SavedLocationSearchType["area"] = "area";
E_SavedLocationSearchType["country"] = "country";
E_SavedLocationSearchType["streetName"] = "streetName";
E_SavedLocationSearchType["buildingName"] = "buildingName";
E_SavedLocationSearchType["streetNumber"] = "buildingNumber";
E_SavedLocationSearchType["zoneName"] = "zoneNumber";
})(E_SavedLocationSearchType || (exports.E_SavedLocationSearchType = E_SavedLocationSearchType = {}));
//# sourceMappingURL=index.js.map