├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmrc ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bin └── lb-sdk ├── index.js ├── lib ├── angular2 │ ├── index.js │ └── shared │ │ ├── actions │ │ ├── auth.ejs │ │ ├── base.ejs │ │ ├── error.ejs │ │ ├── index.ejs │ │ ├── model.ejs │ │ └── throughModel.ejs │ │ ├── config.ejs │ │ ├── effects │ │ ├── auth.ejs │ │ ├── base.ejs │ │ ├── model.ejs │ │ └── resolver.ejs │ │ ├── guards │ │ ├── auth.guard.ejs │ │ ├── index.ejs │ │ └── model.ejs │ │ ├── index.ejs │ │ ├── models │ │ ├── base.ejs │ │ ├── fireloop.ejs │ │ ├── flref.ts │ │ ├── index.ejs │ │ ├── model.ejs │ │ └── throughModel.ejs │ │ ├── orm │ │ ├── base.ejs │ │ ├── filter.ejs │ │ ├── index.ejs │ │ ├── io.ejs │ │ ├── models │ │ │ ├── index.ejs │ │ │ └── model.ejs │ │ └── orm.ejs │ │ ├── reducers │ │ ├── auth.ejs │ │ ├── base.ejs │ │ ├── baseThrough.ejs │ │ ├── index.ejs │ │ ├── model.ejs │ │ └── throughModel.ejs │ │ ├── resolvers │ │ ├── auth-account.ejs │ │ └── index.ejs │ │ ├── services │ │ ├── core │ │ │ ├── auth.ts │ │ │ ├── base.ejs │ │ │ ├── error.ejs │ │ │ ├── index.ejs │ │ │ ├── io.ejs │ │ │ ├── logger.ejs │ │ │ └── realtime.ts │ │ ├── custom │ │ │ ├── index.ejs │ │ │ ├── models.ejs │ │ │ └── service.ejs │ │ └── index.ejs │ │ ├── sockets │ │ ├── connections.ts │ │ ├── socket.browser.ts │ │ ├── socket.driver.ts │ │ ├── socket.native.ts │ │ └── socket.node.ts │ │ ├── state.ejs │ │ ├── storage │ │ ├── cookie.browser.ts │ │ ├── cookie.node.ts │ │ ├── storage.browser.ts │ │ ├── storage.native.ts │ │ └── storage.swaps.ts │ │ └── util.ejs ├── helpers │ └── index.js ├── react │ ├── index.js │ └── react-builders.js ├── templates │ └── shared │ │ ├── config.ejs │ │ ├── index.ejs │ │ ├── models │ │ ├── base.ejs │ │ ├── fireloop.ejs │ │ ├── flref.ts │ │ ├── index.ejs │ │ └── model.ejs │ │ ├── services │ │ ├── core │ │ │ ├── auth.ejs │ │ │ ├── base.ejs │ │ │ ├── error.ejs │ │ │ ├── index.ejs │ │ │ ├── io.ejs │ │ │ ├── logger.ejs │ │ │ ├── realtime.ts │ │ │ └── search.ejs │ │ ├── custom │ │ │ ├── index.ejs │ │ │ ├── models.ejs │ │ │ └── service.ejs │ │ └── index.ejs │ │ └── storage │ │ ├── cookie.browser.ejs │ │ ├── cookie.node.ejs │ │ ├── storage.browser.ejs │ │ ├── storage.native.ejs │ │ └── storage.swaps.ejs └── utils.js ├── package.json ├── tests ├── .yo-rc.json ├── Procfile ├── app.json ├── fireloop │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── .npmrc │ ├── .yo-rc.json │ ├── README.md │ ├── common │ │ └── models │ │ │ ├── account.json │ │ │ ├── account.ts │ │ │ ├── application-credential.json │ │ │ ├── application-credential.ts │ │ │ ├── category.json │ │ │ ├── category.ts │ │ │ ├── core.json │ │ │ ├── core.ts │ │ │ ├── like.json │ │ │ ├── like.ts │ │ │ ├── message.json │ │ │ ├── message.ts │ │ │ ├── room-account.json │ │ │ ├── room-account.ts │ │ │ ├── room-admin.json │ │ │ ├── room-admin.ts │ │ │ ├── room.json │ │ │ ├── room.ts │ │ │ ├── storage.json │ │ │ ├── storage.ts │ │ │ ├── user-credential.json │ │ │ ├── user-credential.ts │ │ │ ├── user-identity.json │ │ │ └── user-identity.ts │ ├── nodemon.json │ ├── package-lock.json │ ├── package.json │ ├── server │ │ ├── boot │ │ │ ├── authentication.ts │ │ │ ├── ng2finder.ts │ │ │ ├── ondisconnect.ts │ │ │ ├── root.ts │ │ │ └── testing.ts │ │ ├── component-config.json │ │ ├── config.json │ │ ├── datasources.json │ │ ├── middleware.development.json │ │ ├── middleware.json │ │ ├── model-config.json │ │ ├── server.js │ │ └── storage │ │ │ └── .keepme │ ├── tests │ │ └── .keepme │ └── tsconfig.json ├── ng2web │ ├── .angular-cli.json │ ├── .editorconfig │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── e2e │ │ ├── app.e2e-spec.ts │ │ ├── app.po.ts │ │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── karma.conf.ngrx.js │ ├── karma.conf.orm.js │ ├── package-lock.json │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── access-ngrx │ │ │ │ ├── access-ngrx.component.css │ │ │ │ ├── access-ngrx.component.html │ │ │ │ ├── access-ngrx.component.ts │ │ │ │ ├── access-ngrx.module.ts │ │ │ │ └── access-ngrx.routing.ts │ │ │ ├── access │ │ │ │ ├── access.component.css │ │ │ │ ├── access.component.html │ │ │ │ ├── access.component.ts │ │ │ │ ├── access.module.ts │ │ │ │ └── access.routing.ts │ │ │ ├── account.spec.ngrx.ts │ │ │ ├── account.spec.orm.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ngrx.ts │ │ │ ├── app.module.orm.ts │ │ │ ├── app.module.ts │ │ │ ├── app.routing.orm.ts │ │ │ ├── app.routing.ts │ │ │ ├── index.ts │ │ │ ├── room-ngrx │ │ │ │ ├── room-ngrx.component.html │ │ │ │ ├── room-ngrx.component.ts │ │ │ │ ├── room-ngrx.list.component.html │ │ │ │ ├── room-ngrx.list.component.ts │ │ │ │ ├── room-ngrx.module.ts │ │ │ │ └── room-ngrx.routing.ts │ │ │ ├── room-service.service.spec.ts │ │ │ ├── room.spec.ngrx.ts │ │ │ ├── room.spec.orm.ts │ │ │ ├── room │ │ │ │ ├── room.component.html │ │ │ │ ├── room.component.ts │ │ │ │ ├── room.list.component.html │ │ │ │ ├── room.list.component.ts │ │ │ │ ├── room.module.ts │ │ │ │ └── room.routing.ts │ │ │ ├── shared │ │ │ │ ├── app.effects.ts │ │ │ │ ├── app.reducer.ts │ │ │ │ ├── app.state.ts │ │ │ │ ├── auth.guard.ts │ │ │ │ ├── index.ts │ │ │ │ └── sdk │ │ │ │ │ └── services │ │ │ │ │ └── custom │ │ │ │ │ └── Account.ts │ │ │ ├── storage-service.service.spec.ts │ │ │ └── user-service.service.spec.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ngrx.ts │ │ ├── main.orm.ts │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ngrx.ts │ │ ├── test.orm.ts │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.app.ngrx.json │ │ ├── tsconfig.app.orm.json │ │ ├── tsconfig.spec.json │ │ ├── tsconfig.spec.ngrx.json │ │ ├── tsconfig.spec.orm.json │ │ └── typings.d.ts │ ├── tsconfig.aot.json │ ├── tsconfig.json │ └── tslint.json ├── package.json └── react-web │ ├── README.md │ ├── __tests__ │ ├── App.test.js │ ├── room-service.test.js │ ├── storage-service.test.js │ └── user-service.test.js │ ├── app │ ├── App.js │ └── index.js │ ├── bundle.js │ ├── index.html │ ├── package.json │ └── webpack.config.js └── yarn.lock /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/README.md -------------------------------------------------------------------------------- /bin/lb-sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/bin/lb-sdk -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/index.js -------------------------------------------------------------------------------- /lib/angular2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/index.js -------------------------------------------------------------------------------- /lib/angular2/shared/actions/auth.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/actions/auth.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/actions/base.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/actions/base.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/actions/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/actions/error.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/actions/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/actions/index.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/actions/model.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/actions/model.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/actions/throughModel.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/actions/throughModel.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/config.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/config.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/effects/auth.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/effects/auth.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/effects/base.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/effects/base.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/effects/model.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/effects/model.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/effects/resolver.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/effects/resolver.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/guards/auth.guard.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/guards/auth.guard.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/guards/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/guards/index.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/guards/model.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/guards/model.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/index.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/models/base.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/models/base.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/models/fireloop.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/models/fireloop.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/models/flref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/models/flref.ts -------------------------------------------------------------------------------- /lib/angular2/shared/models/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/models/index.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/models/model.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/models/model.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/models/throughModel.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/models/throughModel.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/orm/base.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/orm/base.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/orm/filter.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/orm/filter.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/orm/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/orm/index.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/orm/io.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/orm/io.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/orm/models/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/orm/models/index.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/orm/models/model.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/orm/models/model.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/orm/orm.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/orm/orm.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/reducers/auth.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/reducers/auth.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/reducers/base.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/reducers/base.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/reducers/baseThrough.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/reducers/baseThrough.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/reducers/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/reducers/index.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/reducers/model.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/reducers/model.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/reducers/throughModel.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/reducers/throughModel.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/resolvers/auth-account.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/resolvers/auth-account.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/resolvers/index.ejs: -------------------------------------------------------------------------------- 1 | /* tslint:disable */ 2 | export * from './auth-account'; 3 | -------------------------------------------------------------------------------- /lib/angular2/shared/services/core/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/services/core/auth.ts -------------------------------------------------------------------------------- /lib/angular2/shared/services/core/base.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/services/core/base.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/services/core/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/services/core/error.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/services/core/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/services/core/index.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/services/core/io.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/services/core/io.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/services/core/logger.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/services/core/logger.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/services/core/realtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/services/core/realtime.ts -------------------------------------------------------------------------------- /lib/angular2/shared/services/custom/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/services/custom/index.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/services/custom/models.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/services/custom/models.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/services/custom/service.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/services/custom/service.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/services/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/services/index.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/sockets/connections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/sockets/connections.ts -------------------------------------------------------------------------------- /lib/angular2/shared/sockets/socket.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/sockets/socket.browser.ts -------------------------------------------------------------------------------- /lib/angular2/shared/sockets/socket.driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/sockets/socket.driver.ts -------------------------------------------------------------------------------- /lib/angular2/shared/sockets/socket.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/sockets/socket.native.ts -------------------------------------------------------------------------------- /lib/angular2/shared/sockets/socket.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/sockets/socket.node.ts -------------------------------------------------------------------------------- /lib/angular2/shared/state.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/state.ejs -------------------------------------------------------------------------------- /lib/angular2/shared/storage/cookie.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/storage/cookie.browser.ts -------------------------------------------------------------------------------- /lib/angular2/shared/storage/cookie.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/storage/cookie.node.ts -------------------------------------------------------------------------------- /lib/angular2/shared/storage/storage.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/storage/storage.browser.ts -------------------------------------------------------------------------------- /lib/angular2/shared/storage/storage.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/storage/storage.native.ts -------------------------------------------------------------------------------- /lib/angular2/shared/storage/storage.swaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/storage/storage.swaps.ts -------------------------------------------------------------------------------- /lib/angular2/shared/util.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/angular2/shared/util.ejs -------------------------------------------------------------------------------- /lib/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/helpers/index.js -------------------------------------------------------------------------------- /lib/react/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/react/index.js -------------------------------------------------------------------------------- /lib/react/react-builders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/react/react-builders.js -------------------------------------------------------------------------------- /lib/templates/shared/config.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/config.ejs -------------------------------------------------------------------------------- /lib/templates/shared/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/index.ejs -------------------------------------------------------------------------------- /lib/templates/shared/models/base.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/models/base.ejs -------------------------------------------------------------------------------- /lib/templates/shared/models/fireloop.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/models/fireloop.ejs -------------------------------------------------------------------------------- /lib/templates/shared/models/flref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/models/flref.ts -------------------------------------------------------------------------------- /lib/templates/shared/models/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/models/index.ejs -------------------------------------------------------------------------------- /lib/templates/shared/models/model.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/models/model.ejs -------------------------------------------------------------------------------- /lib/templates/shared/services/core/auth.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/core/auth.ejs -------------------------------------------------------------------------------- /lib/templates/shared/services/core/base.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/core/base.ejs -------------------------------------------------------------------------------- /lib/templates/shared/services/core/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/core/error.ejs -------------------------------------------------------------------------------- /lib/templates/shared/services/core/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/core/index.ejs -------------------------------------------------------------------------------- /lib/templates/shared/services/core/io.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/core/io.ejs -------------------------------------------------------------------------------- /lib/templates/shared/services/core/logger.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/core/logger.ejs -------------------------------------------------------------------------------- /lib/templates/shared/services/core/realtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/core/realtime.ts -------------------------------------------------------------------------------- /lib/templates/shared/services/core/search.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/core/search.ejs -------------------------------------------------------------------------------- /lib/templates/shared/services/custom/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/custom/index.ejs -------------------------------------------------------------------------------- /lib/templates/shared/services/custom/models.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/custom/models.ejs -------------------------------------------------------------------------------- /lib/templates/shared/services/custom/service.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/custom/service.ejs -------------------------------------------------------------------------------- /lib/templates/shared/services/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/services/index.ejs -------------------------------------------------------------------------------- /lib/templates/shared/storage/cookie.browser.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/storage/cookie.browser.ejs -------------------------------------------------------------------------------- /lib/templates/shared/storage/cookie.node.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/storage/cookie.node.ejs -------------------------------------------------------------------------------- /lib/templates/shared/storage/storage.browser.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/storage/storage.browser.ejs -------------------------------------------------------------------------------- /lib/templates/shared/storage/storage.native.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/storage/storage.native.ejs -------------------------------------------------------------------------------- /lib/templates/shared/storage/storage.swaps.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/templates/shared/storage/storage.swaps.ejs -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/package.json -------------------------------------------------------------------------------- /tests/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/.yo-rc.json -------------------------------------------------------------------------------- /tests/Procfile: -------------------------------------------------------------------------------- 1 | web: npm run setup -------------------------------------------------------------------------------- /tests/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/app.json -------------------------------------------------------------------------------- /tests/fireloop/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/.editorconfig -------------------------------------------------------------------------------- /tests/fireloop/.eslintignore: -------------------------------------------------------------------------------- 1 | /client/ -------------------------------------------------------------------------------- /tests/fireloop/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "loopback" 3 | } -------------------------------------------------------------------------------- /tests/fireloop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/.gitignore -------------------------------------------------------------------------------- /tests/fireloop/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /tests/fireloop/.yo-rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "generator-fllb": {} 3 | } -------------------------------------------------------------------------------- /tests/fireloop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/README.md -------------------------------------------------------------------------------- /tests/fireloop/common/models/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/account.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/account.ts -------------------------------------------------------------------------------- /tests/fireloop/common/models/application-credential.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/application-credential.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/application-credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/application-credential.ts -------------------------------------------------------------------------------- /tests/fireloop/common/models/category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/category.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/category.ts -------------------------------------------------------------------------------- /tests/fireloop/common/models/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/core.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/core.ts -------------------------------------------------------------------------------- /tests/fireloop/common/models/like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/like.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/like.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/like.ts -------------------------------------------------------------------------------- /tests/fireloop/common/models/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/message.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/message.ts -------------------------------------------------------------------------------- /tests/fireloop/common/models/room-account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/room-account.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/room-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/room-account.ts -------------------------------------------------------------------------------- /tests/fireloop/common/models/room-admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/room-admin.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/room-admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/room-admin.ts -------------------------------------------------------------------------------- /tests/fireloop/common/models/room.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/room.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/room.ts -------------------------------------------------------------------------------- /tests/fireloop/common/models/storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/storage.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/storage.ts -------------------------------------------------------------------------------- /tests/fireloop/common/models/user-credential.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/user-credential.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/user-credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/user-credential.ts -------------------------------------------------------------------------------- /tests/fireloop/common/models/user-identity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/user-identity.json -------------------------------------------------------------------------------- /tests/fireloop/common/models/user-identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/common/models/user-identity.ts -------------------------------------------------------------------------------- /tests/fireloop/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/nodemon.json -------------------------------------------------------------------------------- /tests/fireloop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/package-lock.json -------------------------------------------------------------------------------- /tests/fireloop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/package.json -------------------------------------------------------------------------------- /tests/fireloop/server/boot/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/boot/authentication.ts -------------------------------------------------------------------------------- /tests/fireloop/server/boot/ng2finder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/boot/ng2finder.ts -------------------------------------------------------------------------------- /tests/fireloop/server/boot/ondisconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/boot/ondisconnect.ts -------------------------------------------------------------------------------- /tests/fireloop/server/boot/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/boot/root.ts -------------------------------------------------------------------------------- /tests/fireloop/server/boot/testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/boot/testing.ts -------------------------------------------------------------------------------- /tests/fireloop/server/component-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/component-config.json -------------------------------------------------------------------------------- /tests/fireloop/server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/config.json -------------------------------------------------------------------------------- /tests/fireloop/server/datasources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/datasources.json -------------------------------------------------------------------------------- /tests/fireloop/server/middleware.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/middleware.development.json -------------------------------------------------------------------------------- /tests/fireloop/server/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/middleware.json -------------------------------------------------------------------------------- /tests/fireloop/server/model-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/model-config.json -------------------------------------------------------------------------------- /tests/fireloop/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/server/server.js -------------------------------------------------------------------------------- /tests/fireloop/server/storage/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fireloop/tests/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fireloop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/fireloop/tsconfig.json -------------------------------------------------------------------------------- /tests/ng2web/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/.angular-cli.json -------------------------------------------------------------------------------- /tests/ng2web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/.editorconfig -------------------------------------------------------------------------------- /tests/ng2web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/.gitignore -------------------------------------------------------------------------------- /tests/ng2web/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /tests/ng2web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/README.md -------------------------------------------------------------------------------- /tests/ng2web/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /tests/ng2web/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/e2e/app.po.ts -------------------------------------------------------------------------------- /tests/ng2web/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /tests/ng2web/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/karma.conf.js -------------------------------------------------------------------------------- /tests/ng2web/karma.conf.ngrx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/karma.conf.ngrx.js -------------------------------------------------------------------------------- /tests/ng2web/karma.conf.orm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/karma.conf.orm.js -------------------------------------------------------------------------------- /tests/ng2web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/package-lock.json -------------------------------------------------------------------------------- /tests/ng2web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/package.json -------------------------------------------------------------------------------- /tests/ng2web/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/protractor.conf.js -------------------------------------------------------------------------------- /tests/ng2web/src/app/access-ngrx/access-ngrx.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ng2web/src/app/access-ngrx/access-ngrx.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/access-ngrx/access-ngrx.component.html -------------------------------------------------------------------------------- /tests/ng2web/src/app/access-ngrx/access-ngrx.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/access-ngrx/access-ngrx.component.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/access-ngrx/access-ngrx.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/access-ngrx/access-ngrx.module.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/access-ngrx/access-ngrx.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/access-ngrx/access-ngrx.routing.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/access/access.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ng2web/src/app/access/access.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/access/access.component.html -------------------------------------------------------------------------------- /tests/ng2web/src/app/access/access.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/access/access.component.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/access/access.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/access/access.module.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/access/access.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/access/access.routing.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/account.spec.ngrx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/account.spec.ngrx.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/account.spec.orm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/account.spec.orm.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ng2web/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/app.component.html -------------------------------------------------------------------------------- /tests/ng2web/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/app.component.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/app.module.ngrx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/app.module.ngrx.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/app.module.orm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/app.module.orm.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/app.module.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/app.routing.orm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/app.routing.orm.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/app.routing.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/index.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/room-ngrx/room-ngrx.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room-ngrx/room-ngrx.component.html -------------------------------------------------------------------------------- /tests/ng2web/src/app/room-ngrx/room-ngrx.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room-ngrx/room-ngrx.component.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/room-ngrx/room-ngrx.list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room-ngrx/room-ngrx.list.component.html -------------------------------------------------------------------------------- /tests/ng2web/src/app/room-ngrx/room-ngrx.list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room-ngrx/room-ngrx.list.component.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/room-ngrx/room-ngrx.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room-ngrx/room-ngrx.module.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/room-ngrx/room-ngrx.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room-ngrx/room-ngrx.routing.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/room-service.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room-service.service.spec.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/room.spec.ngrx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room.spec.ngrx.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/room.spec.orm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room.spec.orm.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/room/room.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room/room.component.html -------------------------------------------------------------------------------- /tests/ng2web/src/app/room/room.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room/room.component.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/room/room.list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room/room.list.component.html -------------------------------------------------------------------------------- /tests/ng2web/src/app/room/room.list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room/room.list.component.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/room/room.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room/room.module.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/room/room.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/room/room.routing.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/shared/app.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/shared/app.effects.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/shared/app.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/shared/app.reducer.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/shared/app.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/shared/app.state.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/shared/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/shared/auth.guard.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/shared/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ng2web/src/app/shared/sdk/services/custom/Account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/shared/sdk/services/custom/Account.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/storage-service.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/storage-service.service.spec.ts -------------------------------------------------------------------------------- /tests/ng2web/src/app/user-service.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/app/user-service.service.spec.ts -------------------------------------------------------------------------------- /tests/ng2web/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ng2web/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /tests/ng2web/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/environments/environment.ts -------------------------------------------------------------------------------- /tests/ng2web/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/favicon.ico -------------------------------------------------------------------------------- /tests/ng2web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/index.html -------------------------------------------------------------------------------- /tests/ng2web/src/main.ngrx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/main.ngrx.ts -------------------------------------------------------------------------------- /tests/ng2web/src/main.orm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/main.orm.ts -------------------------------------------------------------------------------- /tests/ng2web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/main.ts -------------------------------------------------------------------------------- /tests/ng2web/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/polyfills.ts -------------------------------------------------------------------------------- /tests/ng2web/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/styles.css -------------------------------------------------------------------------------- /tests/ng2web/src/test.ngrx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/test.ngrx.ts -------------------------------------------------------------------------------- /tests/ng2web/src/test.orm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/test.orm.ts -------------------------------------------------------------------------------- /tests/ng2web/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/test.ts -------------------------------------------------------------------------------- /tests/ng2web/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/tsconfig.app.json -------------------------------------------------------------------------------- /tests/ng2web/src/tsconfig.app.ngrx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/tsconfig.app.ngrx.json -------------------------------------------------------------------------------- /tests/ng2web/src/tsconfig.app.orm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/tsconfig.app.orm.json -------------------------------------------------------------------------------- /tests/ng2web/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/tsconfig.spec.json -------------------------------------------------------------------------------- /tests/ng2web/src/tsconfig.spec.ngrx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/tsconfig.spec.ngrx.json -------------------------------------------------------------------------------- /tests/ng2web/src/tsconfig.spec.orm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/tsconfig.spec.orm.json -------------------------------------------------------------------------------- /tests/ng2web/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/src/typings.d.ts -------------------------------------------------------------------------------- /tests/ng2web/tsconfig.aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/tsconfig.aot.json -------------------------------------------------------------------------------- /tests/ng2web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/tsconfig.json -------------------------------------------------------------------------------- /tests/ng2web/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/ng2web/tslint.json -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/react-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/react-web/README.md -------------------------------------------------------------------------------- /tests/react-web/__tests__/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/react-web/__tests__/App.test.js -------------------------------------------------------------------------------- /tests/react-web/__tests__/room-service.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/react-web/__tests__/room-service.test.js -------------------------------------------------------------------------------- /tests/react-web/__tests__/storage-service.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/react-web/__tests__/storage-service.test.js -------------------------------------------------------------------------------- /tests/react-web/__tests__/user-service.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/react-web/__tests__/user-service.test.js -------------------------------------------------------------------------------- /tests/react-web/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/react-web/app/App.js -------------------------------------------------------------------------------- /tests/react-web/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/react-web/app/index.js -------------------------------------------------------------------------------- /tests/react-web/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/react-web/bundle.js -------------------------------------------------------------------------------- /tests/react-web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/react-web/index.html -------------------------------------------------------------------------------- /tests/react-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/react-web/package.json -------------------------------------------------------------------------------- /tests/react-web/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/tests/react-web/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mean-expert-official/loopback-sdk-builder/HEAD/yarn.lock --------------------------------------------------------------------------------