From 252b5a132a04e44df1cc4a66f27f5ff16af67207 Mon Sep 17 00:00:00 2001 From: Audrius Vaitonis Date: Thu, 18 Apr 2024 15:26:41 +0100 Subject: [PATCH] feat(DTFS2-7052): renaming enums/geospatial.ts to enums/geospatialCountries.ts --- src/constants/enums.ts | 4 ++-- src/constants/enums/{geospatial.ts => geospatialCountries.ts} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/constants/enums/{geospatial.ts => geospatialCountries.ts} (100%) diff --git a/src/constants/enums.ts b/src/constants/enums.ts index dc997052..a6a38f2d 100644 --- a/src/constants/enums.ts +++ b/src/constants/enums.ts @@ -1,9 +1,9 @@ import * as FALLBACK_TO_LEGACY_DATA from './enums/fallbackToLegacyData'; -import * as GEOSPATIAL from './enums/geospatial'; +import * as GEOSPATIAL_COUNTRIES from './enums/geospatialCountries'; import * as PRODUCTS from './enums/products'; export const ENUMS = { PRODUCTS: PRODUCTS.QueryParamProductsEnum, FALLBACK_TO_LEGACY_DATA: FALLBACK_TO_LEGACY_DATA.FallbackToLegacyDataEnum, - GEOSPATIAL_COUNTRIES: GEOSPATIAL.GeospatialCountriesEnum, + GEOSPATIAL_COUNTRIES: GEOSPATIAL_COUNTRIES.GeospatialCountriesEnum, }; diff --git a/src/constants/enums/geospatial.ts b/src/constants/enums/geospatialCountries.ts similarity index 100% rename from src/constants/enums/geospatial.ts rename to src/constants/enums/geospatialCountries.ts