@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.
31 lines • 757 B
TypeScript
export type T_PostNationalAddressBodyParams = {
building_number: number;
zone_number: number;
street_number: number;
};
export type T_DefaultAddressBodyParams = {
customerId: string;
locationId: string;
};
export type T_PostAddressBodyParams = {
_id?: string;
type: string;
addressType: string;
nickname?: string;
country: string;
city: string;
area: string;
buildingName: string;
latitude?: number;
zoneNumber?: number;
streetNumber?: number;
buildingNumber?: number;
floorNumber?: number;
unitNumber?: number;
additionalInfo?: string;
nearestLandmark?: string;
customerId?: string;
streetName?: string;
pinLink?: string;
};
//# sourceMappingURL=index.d.ts.map