├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── angular.json ├── config ├── externals.js ├── rollup-esm2015.conf.js ├── rollup-esm5.conf.js ├── rollup-umd.conf.js ├── rollup.conf.js ├── tsconfig-esm2015.json └── tsconfig-esm5.json ├── demo ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.ts │ └── app.module.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── tsconfig.app.json └── typings.d.ts ├── package.json ├── projects └── ngx-restangular │ ├── karma.conf.js │ ├── ng-package.json │ ├── ng-package.prod.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── index.ts │ │ ├── ngx-restangular-config.factory.ts │ │ ├── ngx-restangular-helper.ts │ │ ├── ngx-restangular-http.ts │ │ ├── ngx-restangular.config.ts │ │ ├── ngx-restangular.module.ts │ │ └── ngx-restangular.ts │ ├── public_api.ts │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | node_modules 4 | coverage 5 | npm-debug.log 6 | dist 7 | tmp 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/angular.json -------------------------------------------------------------------------------- /config/externals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/config/externals.js -------------------------------------------------------------------------------- /config/rollup-esm2015.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/config/rollup-esm2015.conf.js -------------------------------------------------------------------------------- /config/rollup-esm5.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/config/rollup-esm5.conf.js -------------------------------------------------------------------------------- /config/rollup-umd.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/config/rollup-umd.conf.js -------------------------------------------------------------------------------- /config/rollup.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/config/rollup.conf.js -------------------------------------------------------------------------------- /config/tsconfig-esm2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/config/tsconfig-esm2015.json -------------------------------------------------------------------------------- /config/tsconfig-esm5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/config/tsconfig-esm5.json -------------------------------------------------------------------------------- /demo/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/demo/app/app.component.html -------------------------------------------------------------------------------- /demo/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/demo/app/app.component.ts -------------------------------------------------------------------------------- /demo/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/demo/app/app.module.ts -------------------------------------------------------------------------------- /demo/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /demo/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/demo/environments/environment.ts -------------------------------------------------------------------------------- /demo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/demo/favicon.ico -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/demo/main.ts -------------------------------------------------------------------------------- /demo/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/demo/polyfills.ts -------------------------------------------------------------------------------- /demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/demo/styles.css -------------------------------------------------------------------------------- /demo/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/demo/tsconfig.app.json -------------------------------------------------------------------------------- /demo/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/demo/typings.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/package.json -------------------------------------------------------------------------------- /projects/ngx-restangular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/karma.conf.js -------------------------------------------------------------------------------- /projects/ngx-restangular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/ng-package.json -------------------------------------------------------------------------------- /projects/ngx-restangular/ng-package.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/ng-package.prod.json -------------------------------------------------------------------------------- /projects/ngx-restangular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/package.json -------------------------------------------------------------------------------- /projects/ngx-restangular/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/src/lib/index.ts -------------------------------------------------------------------------------- /projects/ngx-restangular/src/lib/ngx-restangular-config.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/src/lib/ngx-restangular-config.factory.ts -------------------------------------------------------------------------------- /projects/ngx-restangular/src/lib/ngx-restangular-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/src/lib/ngx-restangular-helper.ts -------------------------------------------------------------------------------- /projects/ngx-restangular/src/lib/ngx-restangular-http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/src/lib/ngx-restangular-http.ts -------------------------------------------------------------------------------- /projects/ngx-restangular/src/lib/ngx-restangular.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/src/lib/ngx-restangular.config.ts -------------------------------------------------------------------------------- /projects/ngx-restangular/src/lib/ngx-restangular.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/src/lib/ngx-restangular.module.ts -------------------------------------------------------------------------------- /projects/ngx-restangular/src/lib/ngx-restangular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/src/lib/ngx-restangular.ts -------------------------------------------------------------------------------- /projects/ngx-restangular/src/public_api.ts: -------------------------------------------------------------------------------- 1 | /* 2 | * Public API Surface of ngx-restangular 3 | */ 4 | 5 | export * from './lib/index'; 6 | -------------------------------------------------------------------------------- /projects/ngx-restangular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/src/test.ts -------------------------------------------------------------------------------- /projects/ngx-restangular/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/ngx-restangular/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/ngx-restangular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/projects/ngx-restangular/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2muchcoffeecom/ngx-restangular/HEAD/tslint.json --------------------------------------------------------------------------------