├── .DS_Store ├── .all-contributorsrc ├── .github ├── FUNDING.yml └── workflows │ ├── deploy-docs.yml │ ├── main_apicolombia.yml │ └── pull_request_apicolombia.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_es.md ├── api.Tests ├── ApiRoutesTests │ ├── AirportApiIntegrationTests.cs │ ├── CategoryNaturalAreaApiIntegrationTests.cs │ ├── CityApiIntegrationTests.cs │ ├── ConstitutionArticleApiIntegrationTests.cs │ ├── CountryApiIntegrationTests.cs │ ├── CustomWebApplicationFactory.cs │ ├── DepartmentEndpointTests.cs │ ├── HolidayApiIntegrationTests.cs │ ├── IndigenousReservationApiIntegrationTests.cs │ ├── InfoApiIntegrationTests.cs │ ├── InvasiveSpecieApiIntegrationTests.cs │ ├── MapsApiIntegrationTests.cs │ ├── NativeCommunityApiIntegrationTests.cs │ ├── NaturalAreaApiIntegrationTests.cs │ ├── PresidentApiIntegrationTests.cs │ ├── RadioApiIntegrationTests.cs │ ├── RegionApiIntegrationTests.cs │ ├── TouristAttractionApiIntegrationTests.cs │ ├── TraditionalFairAndFestivalApiIntegrationTests.cs │ └── TypicalDishApiIntegrationTests.cs ├── Models │ └── ModelsReflectionTests.cs ├── Utils │ ├── DateOnlyJsonConverterTests.cs │ ├── PaginationModelTests.cs │ └── StringExtensionsTests.cs ├── api.Tests.csproj ├── api.Tests.sln └── coverlet.runsettings ├── api ├── .DS_Store ├── Const │ └── Version.cs ├── DBContext.cs ├── Data │ └── Configs │ │ ├── AirportConfig.cs │ │ ├── CategoryNaturalAreaConfig.cs │ │ ├── CityConfig.cs │ │ ├── ConstitutionArticleConfig.cs │ │ ├── CountryConfig.cs │ │ ├── DepartamentConfig.cs │ │ ├── HolidayConfig.cs │ │ ├── IndigenousReservationConfig.cs │ │ ├── InvasiveSpecieConfig.cs │ │ ├── MapConfig.cs │ │ ├── NativeCommunityConfig.cs │ │ ├── NaturalAreaConfig.cs │ │ ├── PresidentConfig.cs │ │ ├── RadioConfig.cs │ │ ├── RegionConfig.cs │ │ ├── TouristAttractionConfig.cs │ │ ├── TraditionalFairAndFestivalConfig.cs │ │ └── TypicalDishConfig.cs ├── Migrations │ ├── 20230102130419_InitialCreate.Designer.cs │ ├── 20230102130419_InitialCreate.cs │ ├── 20230102135553_CurrencyCode.Designer.cs │ ├── 20230102135553_CurrencyCode.cs │ ├── 20230120030546_UpdateDepartaments.Designer.cs │ ├── 20230120030546_UpdateDepartaments.cs │ ├── 20230202004538_UpdateCityDepartments.Designer.cs │ ├── 20230202004538_UpdateCityDepartments.cs │ ├── 20230202004657_AddMinicipalityInDepartments.Designer.cs │ ├── 20230202004657_AddMinicipalityInDepartments.cs │ ├── 20230204131122_PopulationPostalCodeNull.Designer.cs │ ├── 20230204131122_PopulationPostalCodeNull.cs │ ├── 20230204213559_EndPeriodNullForPresident.Designer.cs │ ├── 20230204213559_EndPeriodNullForPresident.cs │ ├── 20230205002827_endperiodnullable.Designer.cs │ ├── 20230205002827_endperiodnullable.cs │ ├── 20230217170431_RegionTable.Designer.cs │ ├── 20230217170431_RegionTable.cs │ ├── 20230219165942_ParamoTable.Designer.cs │ ├── 20230219165942_ParamoTable.cs │ ├── 20230316002801_NewFieldsForCountry.Designer.cs │ ├── 20230316002801_NewFieldsForCountry.cs │ ├── 20230316011729_CategoryNaturalAreaTable.Designer.cs │ ├── 20230316011729_CategoryNaturalAreaTable.cs │ ├── 20230316014916_NaturalAreaTable.Designer.cs │ ├── 20230316014916_NaturalAreaTable.cs │ ├── 20230316015831_AreasNullable.Designer.cs │ ├── 20230316015831_AreasNullable.cs │ ├── 20230316022006_ColumnsNullInNaturalArea.Designer.cs │ ├── 20230316022006_ColumnsNullInNaturalArea.cs │ ├── 20230316025551_DeleteParamoTable.Designer.cs │ ├── 20230316025551_DeleteParamoTable.cs │ ├── 20230420205601_MapTable.Designer.cs │ ├── 20230420205601_MapTable.cs │ ├── 20230506032519_FixingDeparmentName.Designer.cs │ ├── 20230506032519_FixingDeparmentName.cs │ ├── 20230520034207_fixingTypoDeparment.Designer.cs │ ├── 20230520034207_fixingTypoDeparment.cs │ ├── 20230720025857_InvasiveSpecie.Designer.cs │ ├── 20230720025857_InvasiveSpecie.cs │ ├── 20230828005309_nativecommunity.Designer.cs │ ├── 20230828005309_nativecommunity.cs │ ├── 20231022234155_indiginuosreservation.Designer.cs │ ├── 20231022234155_indiginuosreservation.cs │ ├── 20231109033158_airport.Designer.cs │ ├── 20231109033158_airport.cs │ ├── 20240112000915_constitutionarticle.Designer.cs │ ├── 20240112000915_constitutionarticle.cs │ ├── 20240112002445_constitutionarticleupdate.Designer.cs │ ├── 20240112002445_constitutionarticleupdate.cs │ ├── 20240305014735_radio.Designer.cs │ ├── 20240305014735_radio.cs │ ├── 20250123004703_TypicalDishTable.Designer.cs │ ├── 20250123004703_TypicalDishTable.cs │ ├── 20250303215705_traditionalFairAndFestival.Designer.cs │ ├── 20250303215705_traditionalFairAndFestival.cs │ ├── 20250303220137_traditionalFairAndFestivalDescription.Designer.cs │ ├── 20250303220137_traditionalFairAndFestivalDescription.cs │ └── DBContextModelSnapshot.cs ├── Models │ ├── Airport.cs │ ├── CategoryNaturalArea.cs │ ├── City.cs │ ├── ConstitutionArticle.cs │ ├── Country.cs │ ├── Department.cs │ ├── Holiday.cs │ ├── IndigenousReservation.cs │ ├── InvasiveSpecie.cs │ ├── Map.cs │ ├── NativeCommunity.cs │ ├── NaturalArea.cs │ ├── President.cs │ ├── Radio.cs │ ├── Region.cs │ ├── TouristAttraction.cs │ ├── TraditionalFairAndFestival.cs │ └── TypicalDish.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Routes │ ├── AirportRoutes.cs │ ├── CategoryNaturalAreaRoutes.cs │ ├── CityRoutes.cs │ ├── ConstitutionArticleRoutes.cs │ ├── CountryRoutes.cs │ ├── DepartmentRoutes.cs │ ├── HolidayRoutes.cs │ ├── IndigenousReservationRoutes.cs │ ├── InfoRoutes.cs │ ├── InvasiveSpecieRoutes.cs │ ├── MapRoutes.cs │ ├── NativeCommunityRoutes.cs │ ├── NaturalAreaRoutes.cs │ ├── PresidentRoutes.cs │ ├── RadioRoutes.cs │ ├── RegionRoutes.cs │ ├── TouristicAttactionRoutes.cs │ ├── TraditionalFairAndFestivalRoutes.cs │ └── TypicalDishRoutes.cs ├── Utils │ ├── DateOnlyJsonConverter.cs │ ├── Functions.cs │ ├── Messages.cs │ ├── Months.cs │ ├── PaginationModel.cs │ ├── PaginationResponseModel.cs │ ├── SortDirection.cs │ ├── StringExtensions.cs │ └── Util.cs ├── api.csproj ├── api.sln ├── appsettings.json └── wwwroot │ ├── .DS_Store │ ├── .vscode │ ├── extensions.json │ └── settings.json │ ├── README.md │ ├── assets │ ├── .DS_Store │ ├── API Colombia - FavIcon.png │ ├── blue-heart.png │ ├── contributors │ │ ├── alejandro-herreño-contributor.png │ │ ├── alejandro-herreño-contributor.png │ │ ├── lili-valencia-contributor.png │ │ ├── mario-botero-contributor.png │ │ ├── miguel-teheran-contributor.png │ │ ├── rita-plata-contributor.png │ │ └── veronica-guaman-contributor.png │ ├── crown-decorative-big-removebg-preview.png │ ├── crown-decorative-big.jpeg │ ├── crown-decorative-medium.png │ ├── crown-decorative.svg │ ├── down.png │ ├── en.png │ ├── es.png │ ├── heart.png │ ├── icons │ │ ├── .DS_Store │ │ ├── caret-down-icon.svg │ │ ├── external-link-icon.svg │ │ ├── github-icon.svg │ │ ├── heart-filled-icon.svg │ │ ├── heart-outline-icon.svg │ │ ├── menu-icon.svg │ │ ├── moon-icon.svg │ │ └── sun-icon.svg │ ├── logo-dark.svg │ ├── logo-light.svg │ ├── module-api.png │ ├── pr.png │ ├── red-heart.png │ ├── sponsors │ │ ├── david-caballero.png │ │ ├── linkedin-icon.png │ │ └── miguelteheran.jpeg │ └── yellow-heart.png │ ├── crown-decorative.svg │ ├── css │ ├── accessibility.css │ ├── hightlightjs-dark.css │ ├── moduleApi.css │ ├── style.css │ └── styleAntiguo.css │ ├── fonts │ ├── .DS_Store │ ├── krona-one-latin-400-normal.woff2 │ ├── krona-one-latin-ext-400-normal.woff2 │ ├── poppins-latin-200-normal.woff2 │ └── poppins-latin-600-normal.woff2 │ ├── images │ ├── Mario.jfif │ ├── Miguel.jfif │ ├── Rina.jfif │ ├── Vero.jfif │ ├── alejo.jfif │ ├── favicon.png │ ├── leo.jpg │ ├── lili.jpeg │ ├── logo.png │ └── miguelteheran.jpeg │ ├── index.html │ └── js │ ├── i18n.js │ ├── modal.js │ ├── moduleApi.js │ ├── scriptHome.js │ ├── scriptantiguo.js │ └── translations.json └── docs ├── .vitepress ├── config.ts └── theme │ └── index.ts ├── CNAME ├── index.md ├── operations ├── [operationId].md └── [operationId].paths.js ├── package-lock.json ├── package.json └── public └── openapi.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/.DS_Store -------------------------------------------------------------------------------- /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/main_apicolombia.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/.github/workflows/main_apicolombia.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_apicolombia.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/.github/workflows/pull_request_apicolombia.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Mteheran @Rinaplata -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/README.md -------------------------------------------------------------------------------- /README_es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/README_es.md -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/AirportApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/AirportApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/CategoryNaturalAreaApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/CategoryNaturalAreaApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/CityApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/CityApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/ConstitutionArticleApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/ConstitutionArticleApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/CountryApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/CountryApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/CustomWebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/CustomWebApplicationFactory.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/DepartmentEndpointTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/DepartmentEndpointTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/HolidayApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/HolidayApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/IndigenousReservationApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/IndigenousReservationApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/InfoApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/InfoApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/InvasiveSpecieApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/InvasiveSpecieApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/MapsApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/MapsApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/NativeCommunityApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/NativeCommunityApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/NaturalAreaApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/NaturalAreaApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/PresidentApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/PresidentApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/RadioApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/RadioApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/RegionApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/RegionApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/TouristAttractionApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/TouristAttractionApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/TraditionalFairAndFestivalApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/TraditionalFairAndFestivalApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/ApiRoutesTests/TypicalDishApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/ApiRoutesTests/TypicalDishApiIntegrationTests.cs -------------------------------------------------------------------------------- /api.Tests/Models/ModelsReflectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/Models/ModelsReflectionTests.cs -------------------------------------------------------------------------------- /api.Tests/Utils/DateOnlyJsonConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/Utils/DateOnlyJsonConverterTests.cs -------------------------------------------------------------------------------- /api.Tests/Utils/PaginationModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/Utils/PaginationModelTests.cs -------------------------------------------------------------------------------- /api.Tests/Utils/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/Utils/StringExtensionsTests.cs -------------------------------------------------------------------------------- /api.Tests/api.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/api.Tests.csproj -------------------------------------------------------------------------------- /api.Tests/api.Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/api.Tests.sln -------------------------------------------------------------------------------- /api.Tests/coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api.Tests/coverlet.runsettings -------------------------------------------------------------------------------- /api/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/.DS_Store -------------------------------------------------------------------------------- /api/Const/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Const/Version.cs -------------------------------------------------------------------------------- /api/DBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/DBContext.cs -------------------------------------------------------------------------------- /api/Data/Configs/AirportConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/AirportConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/CategoryNaturalAreaConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/CategoryNaturalAreaConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/CityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/CityConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/ConstitutionArticleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/ConstitutionArticleConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/CountryConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/CountryConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/DepartamentConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/DepartamentConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/HolidayConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/HolidayConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/IndigenousReservationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/IndigenousReservationConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/InvasiveSpecieConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/InvasiveSpecieConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/MapConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/MapConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/NativeCommunityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/NativeCommunityConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/NaturalAreaConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/NaturalAreaConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/PresidentConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/PresidentConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/RadioConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/RadioConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/RegionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/RegionConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/TouristAttractionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/TouristAttractionConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/TraditionalFairAndFestivalConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/TraditionalFairAndFestivalConfig.cs -------------------------------------------------------------------------------- /api/Data/Configs/TypicalDishConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Data/Configs/TypicalDishConfig.cs -------------------------------------------------------------------------------- /api/Migrations/20230102130419_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230102130419_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230102130419_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230102130419_InitialCreate.cs -------------------------------------------------------------------------------- /api/Migrations/20230102135553_CurrencyCode.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230102135553_CurrencyCode.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230102135553_CurrencyCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230102135553_CurrencyCode.cs -------------------------------------------------------------------------------- /api/Migrations/20230120030546_UpdateDepartaments.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230120030546_UpdateDepartaments.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230120030546_UpdateDepartaments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230120030546_UpdateDepartaments.cs -------------------------------------------------------------------------------- /api/Migrations/20230202004538_UpdateCityDepartments.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230202004538_UpdateCityDepartments.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230202004538_UpdateCityDepartments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230202004538_UpdateCityDepartments.cs -------------------------------------------------------------------------------- /api/Migrations/20230202004657_AddMinicipalityInDepartments.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230202004657_AddMinicipalityInDepartments.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230202004657_AddMinicipalityInDepartments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230202004657_AddMinicipalityInDepartments.cs -------------------------------------------------------------------------------- /api/Migrations/20230204131122_PopulationPostalCodeNull.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230204131122_PopulationPostalCodeNull.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230204131122_PopulationPostalCodeNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230204131122_PopulationPostalCodeNull.cs -------------------------------------------------------------------------------- /api/Migrations/20230204213559_EndPeriodNullForPresident.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230204213559_EndPeriodNullForPresident.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230204213559_EndPeriodNullForPresident.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230204213559_EndPeriodNullForPresident.cs -------------------------------------------------------------------------------- /api/Migrations/20230205002827_endperiodnullable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230205002827_endperiodnullable.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230205002827_endperiodnullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230205002827_endperiodnullable.cs -------------------------------------------------------------------------------- /api/Migrations/20230217170431_RegionTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230217170431_RegionTable.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230217170431_RegionTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230217170431_RegionTable.cs -------------------------------------------------------------------------------- /api/Migrations/20230219165942_ParamoTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230219165942_ParamoTable.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230219165942_ParamoTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230219165942_ParamoTable.cs -------------------------------------------------------------------------------- /api/Migrations/20230316002801_NewFieldsForCountry.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316002801_NewFieldsForCountry.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230316002801_NewFieldsForCountry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316002801_NewFieldsForCountry.cs -------------------------------------------------------------------------------- /api/Migrations/20230316011729_CategoryNaturalAreaTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316011729_CategoryNaturalAreaTable.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230316011729_CategoryNaturalAreaTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316011729_CategoryNaturalAreaTable.cs -------------------------------------------------------------------------------- /api/Migrations/20230316014916_NaturalAreaTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316014916_NaturalAreaTable.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230316014916_NaturalAreaTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316014916_NaturalAreaTable.cs -------------------------------------------------------------------------------- /api/Migrations/20230316015831_AreasNullable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316015831_AreasNullable.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230316015831_AreasNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316015831_AreasNullable.cs -------------------------------------------------------------------------------- /api/Migrations/20230316022006_ColumnsNullInNaturalArea.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316022006_ColumnsNullInNaturalArea.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230316022006_ColumnsNullInNaturalArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316022006_ColumnsNullInNaturalArea.cs -------------------------------------------------------------------------------- /api/Migrations/20230316025551_DeleteParamoTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316025551_DeleteParamoTable.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230316025551_DeleteParamoTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230316025551_DeleteParamoTable.cs -------------------------------------------------------------------------------- /api/Migrations/20230420205601_MapTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230420205601_MapTable.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230420205601_MapTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230420205601_MapTable.cs -------------------------------------------------------------------------------- /api/Migrations/20230506032519_FixingDeparmentName.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230506032519_FixingDeparmentName.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230506032519_FixingDeparmentName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230506032519_FixingDeparmentName.cs -------------------------------------------------------------------------------- /api/Migrations/20230520034207_fixingTypoDeparment.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230520034207_fixingTypoDeparment.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230520034207_fixingTypoDeparment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230520034207_fixingTypoDeparment.cs -------------------------------------------------------------------------------- /api/Migrations/20230720025857_InvasiveSpecie.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230720025857_InvasiveSpecie.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230720025857_InvasiveSpecie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230720025857_InvasiveSpecie.cs -------------------------------------------------------------------------------- /api/Migrations/20230828005309_nativecommunity.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230828005309_nativecommunity.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20230828005309_nativecommunity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20230828005309_nativecommunity.cs -------------------------------------------------------------------------------- /api/Migrations/20231022234155_indiginuosreservation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20231022234155_indiginuosreservation.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20231022234155_indiginuosreservation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20231022234155_indiginuosreservation.cs -------------------------------------------------------------------------------- /api/Migrations/20231109033158_airport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20231109033158_airport.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20231109033158_airport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20231109033158_airport.cs -------------------------------------------------------------------------------- /api/Migrations/20240112000915_constitutionarticle.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20240112000915_constitutionarticle.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20240112000915_constitutionarticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20240112000915_constitutionarticle.cs -------------------------------------------------------------------------------- /api/Migrations/20240112002445_constitutionarticleupdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20240112002445_constitutionarticleupdate.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20240112002445_constitutionarticleupdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20240112002445_constitutionarticleupdate.cs -------------------------------------------------------------------------------- /api/Migrations/20240305014735_radio.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20240305014735_radio.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20240305014735_radio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20240305014735_radio.cs -------------------------------------------------------------------------------- /api/Migrations/20250123004703_TypicalDishTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20250123004703_TypicalDishTable.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20250123004703_TypicalDishTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20250123004703_TypicalDishTable.cs -------------------------------------------------------------------------------- /api/Migrations/20250303215705_traditionalFairAndFestival.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20250303215705_traditionalFairAndFestival.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20250303215705_traditionalFairAndFestival.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20250303215705_traditionalFairAndFestival.cs -------------------------------------------------------------------------------- /api/Migrations/20250303220137_traditionalFairAndFestivalDescription.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20250303220137_traditionalFairAndFestivalDescription.Designer.cs -------------------------------------------------------------------------------- /api/Migrations/20250303220137_traditionalFairAndFestivalDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/20250303220137_traditionalFairAndFestivalDescription.cs -------------------------------------------------------------------------------- /api/Migrations/DBContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Migrations/DBContextModelSnapshot.cs -------------------------------------------------------------------------------- /api/Models/Airport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/Airport.cs -------------------------------------------------------------------------------- /api/Models/CategoryNaturalArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/CategoryNaturalArea.cs -------------------------------------------------------------------------------- /api/Models/City.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/City.cs -------------------------------------------------------------------------------- /api/Models/ConstitutionArticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/ConstitutionArticle.cs -------------------------------------------------------------------------------- /api/Models/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/Country.cs -------------------------------------------------------------------------------- /api/Models/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/Department.cs -------------------------------------------------------------------------------- /api/Models/Holiday.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/Holiday.cs -------------------------------------------------------------------------------- /api/Models/IndigenousReservation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/IndigenousReservation.cs -------------------------------------------------------------------------------- /api/Models/InvasiveSpecie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/InvasiveSpecie.cs -------------------------------------------------------------------------------- /api/Models/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/Map.cs -------------------------------------------------------------------------------- /api/Models/NativeCommunity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/NativeCommunity.cs -------------------------------------------------------------------------------- /api/Models/NaturalArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/NaturalArea.cs -------------------------------------------------------------------------------- /api/Models/President.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/President.cs -------------------------------------------------------------------------------- /api/Models/Radio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/Radio.cs -------------------------------------------------------------------------------- /api/Models/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/Region.cs -------------------------------------------------------------------------------- /api/Models/TouristAttraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/TouristAttraction.cs -------------------------------------------------------------------------------- /api/Models/TraditionalFairAndFestival.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/TraditionalFairAndFestival.cs -------------------------------------------------------------------------------- /api/Models/TypicalDish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Models/TypicalDish.cs -------------------------------------------------------------------------------- /api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Program.cs -------------------------------------------------------------------------------- /api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Properties/launchSettings.json -------------------------------------------------------------------------------- /api/Routes/AirportRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/AirportRoutes.cs -------------------------------------------------------------------------------- /api/Routes/CategoryNaturalAreaRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/CategoryNaturalAreaRoutes.cs -------------------------------------------------------------------------------- /api/Routes/CityRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/CityRoutes.cs -------------------------------------------------------------------------------- /api/Routes/ConstitutionArticleRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/ConstitutionArticleRoutes.cs -------------------------------------------------------------------------------- /api/Routes/CountryRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/CountryRoutes.cs -------------------------------------------------------------------------------- /api/Routes/DepartmentRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/DepartmentRoutes.cs -------------------------------------------------------------------------------- /api/Routes/HolidayRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/HolidayRoutes.cs -------------------------------------------------------------------------------- /api/Routes/IndigenousReservationRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/IndigenousReservationRoutes.cs -------------------------------------------------------------------------------- /api/Routes/InfoRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/InfoRoutes.cs -------------------------------------------------------------------------------- /api/Routes/InvasiveSpecieRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/InvasiveSpecieRoutes.cs -------------------------------------------------------------------------------- /api/Routes/MapRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/MapRoutes.cs -------------------------------------------------------------------------------- /api/Routes/NativeCommunityRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/NativeCommunityRoutes.cs -------------------------------------------------------------------------------- /api/Routes/NaturalAreaRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/NaturalAreaRoutes.cs -------------------------------------------------------------------------------- /api/Routes/PresidentRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/PresidentRoutes.cs -------------------------------------------------------------------------------- /api/Routes/RadioRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/RadioRoutes.cs -------------------------------------------------------------------------------- /api/Routes/RegionRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/RegionRoutes.cs -------------------------------------------------------------------------------- /api/Routes/TouristicAttactionRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/TouristicAttactionRoutes.cs -------------------------------------------------------------------------------- /api/Routes/TraditionalFairAndFestivalRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/TraditionalFairAndFestivalRoutes.cs -------------------------------------------------------------------------------- /api/Routes/TypicalDishRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Routes/TypicalDishRoutes.cs -------------------------------------------------------------------------------- /api/Utils/DateOnlyJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Utils/DateOnlyJsonConverter.cs -------------------------------------------------------------------------------- /api/Utils/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Utils/Functions.cs -------------------------------------------------------------------------------- /api/Utils/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Utils/Messages.cs -------------------------------------------------------------------------------- /api/Utils/Months.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Utils/Months.cs -------------------------------------------------------------------------------- /api/Utils/PaginationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Utils/PaginationModel.cs -------------------------------------------------------------------------------- /api/Utils/PaginationResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Utils/PaginationResponseModel.cs -------------------------------------------------------------------------------- /api/Utils/SortDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Utils/SortDirection.cs -------------------------------------------------------------------------------- /api/Utils/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Utils/StringExtensions.cs -------------------------------------------------------------------------------- /api/Utils/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/Utils/Util.cs -------------------------------------------------------------------------------- /api/api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/api.csproj -------------------------------------------------------------------------------- /api/api.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/api.sln -------------------------------------------------------------------------------- /api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/appsettings.json -------------------------------------------------------------------------------- /api/wwwroot/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/.DS_Store -------------------------------------------------------------------------------- /api/wwwroot/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/.vscode/extensions.json -------------------------------------------------------------------------------- /api/wwwroot/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /api/wwwroot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/README.md -------------------------------------------------------------------------------- /api/wwwroot/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/.DS_Store -------------------------------------------------------------------------------- /api/wwwroot/assets/API Colombia - FavIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/API Colombia - FavIcon.png -------------------------------------------------------------------------------- /api/wwwroot/assets/blue-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/blue-heart.png -------------------------------------------------------------------------------- /api/wwwroot/assets/contributors/alejandro-herreño-contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/contributors/alejandro-herreño-contributor.png -------------------------------------------------------------------------------- /api/wwwroot/assets/contributors/alejandro-herreño-contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/contributors/alejandro-herreño-contributor.png -------------------------------------------------------------------------------- /api/wwwroot/assets/contributors/lili-valencia-contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/contributors/lili-valencia-contributor.png -------------------------------------------------------------------------------- /api/wwwroot/assets/contributors/mario-botero-contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/contributors/mario-botero-contributor.png -------------------------------------------------------------------------------- /api/wwwroot/assets/contributors/miguel-teheran-contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/contributors/miguel-teheran-contributor.png -------------------------------------------------------------------------------- /api/wwwroot/assets/contributors/rita-plata-contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/contributors/rita-plata-contributor.png -------------------------------------------------------------------------------- /api/wwwroot/assets/contributors/veronica-guaman-contributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/contributors/veronica-guaman-contributor.png -------------------------------------------------------------------------------- /api/wwwroot/assets/crown-decorative-big-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/crown-decorative-big-removebg-preview.png -------------------------------------------------------------------------------- /api/wwwroot/assets/crown-decorative-big.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/crown-decorative-big.jpeg -------------------------------------------------------------------------------- /api/wwwroot/assets/crown-decorative-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/crown-decorative-medium.png -------------------------------------------------------------------------------- /api/wwwroot/assets/crown-decorative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/crown-decorative.svg -------------------------------------------------------------------------------- /api/wwwroot/assets/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/down.png -------------------------------------------------------------------------------- /api/wwwroot/assets/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/en.png -------------------------------------------------------------------------------- /api/wwwroot/assets/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/es.png -------------------------------------------------------------------------------- /api/wwwroot/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/heart.png -------------------------------------------------------------------------------- /api/wwwroot/assets/icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/icons/.DS_Store -------------------------------------------------------------------------------- /api/wwwroot/assets/icons/caret-down-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/icons/caret-down-icon.svg -------------------------------------------------------------------------------- /api/wwwroot/assets/icons/external-link-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/icons/external-link-icon.svg -------------------------------------------------------------------------------- /api/wwwroot/assets/icons/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/icons/github-icon.svg -------------------------------------------------------------------------------- /api/wwwroot/assets/icons/heart-filled-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/icons/heart-filled-icon.svg -------------------------------------------------------------------------------- /api/wwwroot/assets/icons/heart-outline-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/icons/heart-outline-icon.svg -------------------------------------------------------------------------------- /api/wwwroot/assets/icons/menu-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/icons/menu-icon.svg -------------------------------------------------------------------------------- /api/wwwroot/assets/icons/moon-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/icons/moon-icon.svg -------------------------------------------------------------------------------- /api/wwwroot/assets/icons/sun-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/icons/sun-icon.svg -------------------------------------------------------------------------------- /api/wwwroot/assets/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/logo-dark.svg -------------------------------------------------------------------------------- /api/wwwroot/assets/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/logo-light.svg -------------------------------------------------------------------------------- /api/wwwroot/assets/module-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/module-api.png -------------------------------------------------------------------------------- /api/wwwroot/assets/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/pr.png -------------------------------------------------------------------------------- /api/wwwroot/assets/red-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/red-heart.png -------------------------------------------------------------------------------- /api/wwwroot/assets/sponsors/david-caballero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/sponsors/david-caballero.png -------------------------------------------------------------------------------- /api/wwwroot/assets/sponsors/linkedin-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/sponsors/linkedin-icon.png -------------------------------------------------------------------------------- /api/wwwroot/assets/sponsors/miguelteheran.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/sponsors/miguelteheran.jpeg -------------------------------------------------------------------------------- /api/wwwroot/assets/yellow-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/assets/yellow-heart.png -------------------------------------------------------------------------------- /api/wwwroot/crown-decorative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/crown-decorative.svg -------------------------------------------------------------------------------- /api/wwwroot/css/accessibility.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/css/accessibility.css -------------------------------------------------------------------------------- /api/wwwroot/css/hightlightjs-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/css/hightlightjs-dark.css -------------------------------------------------------------------------------- /api/wwwroot/css/moduleApi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/css/moduleApi.css -------------------------------------------------------------------------------- /api/wwwroot/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/css/style.css -------------------------------------------------------------------------------- /api/wwwroot/css/styleAntiguo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/css/styleAntiguo.css -------------------------------------------------------------------------------- /api/wwwroot/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/fonts/.DS_Store -------------------------------------------------------------------------------- /api/wwwroot/fonts/krona-one-latin-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/fonts/krona-one-latin-400-normal.woff2 -------------------------------------------------------------------------------- /api/wwwroot/fonts/krona-one-latin-ext-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/fonts/krona-one-latin-ext-400-normal.woff2 -------------------------------------------------------------------------------- /api/wwwroot/fonts/poppins-latin-200-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/fonts/poppins-latin-200-normal.woff2 -------------------------------------------------------------------------------- /api/wwwroot/fonts/poppins-latin-600-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/fonts/poppins-latin-600-normal.woff2 -------------------------------------------------------------------------------- /api/wwwroot/images/Mario.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/images/Mario.jfif -------------------------------------------------------------------------------- /api/wwwroot/images/Miguel.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/images/Miguel.jfif -------------------------------------------------------------------------------- /api/wwwroot/images/Rina.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/images/Rina.jfif -------------------------------------------------------------------------------- /api/wwwroot/images/Vero.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/images/Vero.jfif -------------------------------------------------------------------------------- /api/wwwroot/images/alejo.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/images/alejo.jfif -------------------------------------------------------------------------------- /api/wwwroot/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/images/favicon.png -------------------------------------------------------------------------------- /api/wwwroot/images/leo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/images/leo.jpg -------------------------------------------------------------------------------- /api/wwwroot/images/lili.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/images/lili.jpeg -------------------------------------------------------------------------------- /api/wwwroot/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/images/logo.png -------------------------------------------------------------------------------- /api/wwwroot/images/miguelteheran.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/images/miguelteheran.jpeg -------------------------------------------------------------------------------- /api/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/index.html -------------------------------------------------------------------------------- /api/wwwroot/js/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/js/i18n.js -------------------------------------------------------------------------------- /api/wwwroot/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/js/modal.js -------------------------------------------------------------------------------- /api/wwwroot/js/moduleApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/js/moduleApi.js -------------------------------------------------------------------------------- /api/wwwroot/js/scriptHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/js/scriptHome.js -------------------------------------------------------------------------------- /api/wwwroot/js/scriptantiguo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/js/scriptantiguo.js -------------------------------------------------------------------------------- /api/wwwroot/js/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/api/wwwroot/js/translations.json -------------------------------------------------------------------------------- /docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.api-colombia.com -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/operations/[operationId].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/docs/operations/[operationId].md -------------------------------------------------------------------------------- /docs/operations/[operationId].paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/docs/operations/[operationId].paths.js -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/public/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mteheran/api-colombia/HEAD/docs/public/openapi.json --------------------------------------------------------------------------------