├── README.md ├── config └── constants.ts ├── core └── services │ ├── api-endpoints.service.ts │ └── api-http.service.ts └── shared └── classes ├── query-string-parameters.ts └── url-builder.ts /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeroubie/Angular-API-calls-the-right-way/HEAD/README.md -------------------------------------------------------------------------------- /config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeroubie/Angular-API-calls-the-right-way/HEAD/config/constants.ts -------------------------------------------------------------------------------- /core/services/api-endpoints.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeroubie/Angular-API-calls-the-right-way/HEAD/core/services/api-endpoints.service.ts -------------------------------------------------------------------------------- /core/services/api-http.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeroubie/Angular-API-calls-the-right-way/HEAD/core/services/api-http.service.ts -------------------------------------------------------------------------------- /shared/classes/query-string-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeroubie/Angular-API-calls-the-right-way/HEAD/shared/classes/query-string-parameters.ts -------------------------------------------------------------------------------- /shared/classes/url-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeroubie/Angular-API-calls-the-right-way/HEAD/shared/classes/url-builder.ts --------------------------------------------------------------------------------