├── .github └── workflows │ └── push_deploy.yml ├── .gitignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── firebase.json ├── gulpfile.js ├── jest.config.js ├── package.json ├── src-demo ├── .gitignore ├── FIREBASE_CONFIG.json.EXAMPLE ├── README.md ├── firebase.json ├── package.json ├── public │ ├── .nojekyll │ ├── favicon.ico │ ├── global.css │ ├── index.html │ └── manifest.json └── src │ ├── App.js │ ├── CustomDeleteButtons.js │ ├── CustomForgotPassword.js │ ├── CustomLoginPage.js │ ├── EventMonitor.js │ ├── FirebaseReferenceFields.js │ ├── comments.js │ ├── index.js │ ├── posts.js │ ├── registerServiceWorker.js │ └── users.js ├── src ├── index.ts ├── misc │ ├── arrayHelpers.ts │ ├── dispatcher.ts │ ├── document-parser.ts │ ├── firebase-models.ts │ ├── index.ts │ ├── internal.models.ts │ ├── logger │ │ ├── firestore-logger.ts │ │ ├── index.ts │ │ ├── logger-base.ts │ │ └── logger.ts │ ├── messageTypes.ts │ ├── metadata-parser.ts │ ├── objectFlatten.ts │ ├── pathHelper.ts │ ├── react-admin-models.ts │ ├── status-code-translator.ts │ ├── storage-parser.ts │ ├── translate-from-firestore.ts │ └── translate-to-firestore.ts ├── providers │ ├── AuthProvider.ts │ ├── DataProvider.ts │ ├── commands │ │ ├── Create.ts │ │ ├── Delete.Soft.ts │ │ ├── Delete.ts │ │ ├── DeleteMany.Soft.ts │ │ ├── DeleteMany.ts │ │ ├── Update.ts │ │ ├── UpdateMany.ts │ │ └── index.ts │ ├── database │ │ ├── FireClient.ts │ │ ├── ResourceManager.ts │ │ ├── firebase │ │ │ ├── FirebaseWrapper.ts │ │ │ └── IFirebaseWrapper.ts │ │ └── index.ts │ ├── lazy-loading │ │ ├── FirebaseLazyLoadingClient.ts │ │ ├── paramsToQuery.ts │ │ └── queryCursors.ts │ ├── options.ts │ └── queries │ │ ├── GetList.ts │ │ ├── GetMany.ts │ │ ├── GetManyReference.ts │ │ ├── GetOne.ts │ │ └── index.ts └── types.d.ts ├── storage.rules ├── tests ├── Path.spec.ts ├── arrayHelpers.filtering.spec.ts ├── arrayHelpers.sorting.spec.ts ├── file-parser.spec.ts ├── firestore-parser.spec.ts ├── integration-tests │ ├── ApiCreate.spec.ts │ ├── ApiDelete.spec.ts │ ├── ApiDeleteMany.spec.ts │ ├── ApiGetList.spec.ts │ ├── ApiGetMany.spec.ts │ ├── ApiGetOne.spec.ts │ ├── ApiRootRef.spec.ts │ ├── ApiSoftDelete.spec.ts │ ├── ApiSoftDeleteMany.spec.ts │ ├── ApiUpdate.spec.ts │ ├── ApiUpdateMany.spec.ts │ └── utils │ │ ├── FirebaseWrapperStub.ts │ │ └── test-helpers.ts ├── objectFlatten.spec.ts ├── providers │ └── lazy-loading │ │ └── paramsToQuery.spec.ts ├── reference-document-parser.spec.ts └── storagePath.spec.ts ├── tsconfig.json ├── tsconfig.spec.json ├── tslint.json └── yarn.lock /.github/workflows/push_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/.github/workflows/push_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/firebase.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/gulpfile.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/package.json -------------------------------------------------------------------------------- /src-demo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | yarn* 4 | package-* 5 | FIREBASE_CONFIG.json 6 | -------------------------------------------------------------------------------- /src-demo/FIREBASE_CONFIG.json.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/FIREBASE_CONFIG.json.EXAMPLE -------------------------------------------------------------------------------- /src-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/README.md -------------------------------------------------------------------------------- /src-demo/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/firebase.json -------------------------------------------------------------------------------- /src-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/package.json -------------------------------------------------------------------------------- /src-demo/public/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src-demo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/public/favicon.ico -------------------------------------------------------------------------------- /src-demo/public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/public/global.css -------------------------------------------------------------------------------- /src-demo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/public/index.html -------------------------------------------------------------------------------- /src-demo/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/public/manifest.json -------------------------------------------------------------------------------- /src-demo/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/src/App.js -------------------------------------------------------------------------------- /src-demo/src/CustomDeleteButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/src/CustomDeleteButtons.js -------------------------------------------------------------------------------- /src-demo/src/CustomForgotPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/src/CustomForgotPassword.js -------------------------------------------------------------------------------- /src-demo/src/CustomLoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/src/CustomLoginPage.js -------------------------------------------------------------------------------- /src-demo/src/EventMonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/src/EventMonitor.js -------------------------------------------------------------------------------- /src-demo/src/FirebaseReferenceFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/src/FirebaseReferenceFields.js -------------------------------------------------------------------------------- /src-demo/src/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/src/comments.js -------------------------------------------------------------------------------- /src-demo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/src/index.js -------------------------------------------------------------------------------- /src-demo/src/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/src/posts.js -------------------------------------------------------------------------------- /src-demo/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src-demo/src/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src-demo/src/users.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/misc/arrayHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/arrayHelpers.ts -------------------------------------------------------------------------------- /src/misc/dispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/dispatcher.ts -------------------------------------------------------------------------------- /src/misc/document-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/document-parser.ts -------------------------------------------------------------------------------- /src/misc/firebase-models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/firebase-models.ts -------------------------------------------------------------------------------- /src/misc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/index.ts -------------------------------------------------------------------------------- /src/misc/internal.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/internal.models.ts -------------------------------------------------------------------------------- /src/misc/logger/firestore-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/logger/firestore-logger.ts -------------------------------------------------------------------------------- /src/misc/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/logger/index.ts -------------------------------------------------------------------------------- /src/misc/logger/logger-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/logger/logger-base.ts -------------------------------------------------------------------------------- /src/misc/logger/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/logger/logger.ts -------------------------------------------------------------------------------- /src/misc/messageTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/messageTypes.ts -------------------------------------------------------------------------------- /src/misc/metadata-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/metadata-parser.ts -------------------------------------------------------------------------------- /src/misc/objectFlatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/objectFlatten.ts -------------------------------------------------------------------------------- /src/misc/pathHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/pathHelper.ts -------------------------------------------------------------------------------- /src/misc/react-admin-models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/react-admin-models.ts -------------------------------------------------------------------------------- /src/misc/status-code-translator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/status-code-translator.ts -------------------------------------------------------------------------------- /src/misc/storage-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/storage-parser.ts -------------------------------------------------------------------------------- /src/misc/translate-from-firestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/translate-from-firestore.ts -------------------------------------------------------------------------------- /src/misc/translate-to-firestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/misc/translate-to-firestore.ts -------------------------------------------------------------------------------- /src/providers/AuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/AuthProvider.ts -------------------------------------------------------------------------------- /src/providers/DataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/DataProvider.ts -------------------------------------------------------------------------------- /src/providers/commands/Create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/commands/Create.ts -------------------------------------------------------------------------------- /src/providers/commands/Delete.Soft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/commands/Delete.Soft.ts -------------------------------------------------------------------------------- /src/providers/commands/Delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/commands/Delete.ts -------------------------------------------------------------------------------- /src/providers/commands/DeleteMany.Soft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/commands/DeleteMany.Soft.ts -------------------------------------------------------------------------------- /src/providers/commands/DeleteMany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/commands/DeleteMany.ts -------------------------------------------------------------------------------- /src/providers/commands/Update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/commands/Update.ts -------------------------------------------------------------------------------- /src/providers/commands/UpdateMany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/commands/UpdateMany.ts -------------------------------------------------------------------------------- /src/providers/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/commands/index.ts -------------------------------------------------------------------------------- /src/providers/database/FireClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/database/FireClient.ts -------------------------------------------------------------------------------- /src/providers/database/ResourceManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/database/ResourceManager.ts -------------------------------------------------------------------------------- /src/providers/database/firebase/FirebaseWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/database/firebase/FirebaseWrapper.ts -------------------------------------------------------------------------------- /src/providers/database/firebase/IFirebaseWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/database/firebase/IFirebaseWrapper.ts -------------------------------------------------------------------------------- /src/providers/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/database/index.ts -------------------------------------------------------------------------------- /src/providers/lazy-loading/FirebaseLazyLoadingClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/lazy-loading/FirebaseLazyLoadingClient.ts -------------------------------------------------------------------------------- /src/providers/lazy-loading/paramsToQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/lazy-loading/paramsToQuery.ts -------------------------------------------------------------------------------- /src/providers/lazy-loading/queryCursors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/lazy-loading/queryCursors.ts -------------------------------------------------------------------------------- /src/providers/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/options.ts -------------------------------------------------------------------------------- /src/providers/queries/GetList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/queries/GetList.ts -------------------------------------------------------------------------------- /src/providers/queries/GetMany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/queries/GetMany.ts -------------------------------------------------------------------------------- /src/providers/queries/GetManyReference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/queries/GetManyReference.ts -------------------------------------------------------------------------------- /src/providers/queries/GetOne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/queries/GetOne.ts -------------------------------------------------------------------------------- /src/providers/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/providers/queries/index.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/storage.rules -------------------------------------------------------------------------------- /tests/Path.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/Path.spec.ts -------------------------------------------------------------------------------- /tests/arrayHelpers.filtering.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/arrayHelpers.filtering.spec.ts -------------------------------------------------------------------------------- /tests/arrayHelpers.sorting.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/arrayHelpers.sorting.spec.ts -------------------------------------------------------------------------------- /tests/file-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/file-parser.spec.ts -------------------------------------------------------------------------------- /tests/firestore-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/firestore-parser.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/ApiCreate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/ApiCreate.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/ApiDelete.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/ApiDelete.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/ApiDeleteMany.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/ApiDeleteMany.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/ApiGetList.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/ApiGetList.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/ApiGetMany.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/ApiGetMany.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/ApiGetOne.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/ApiGetOne.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/ApiRootRef.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/ApiRootRef.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/ApiSoftDelete.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/ApiSoftDelete.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/ApiSoftDeleteMany.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/ApiSoftDeleteMany.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/ApiUpdate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/ApiUpdate.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/ApiUpdateMany.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/ApiUpdateMany.spec.ts -------------------------------------------------------------------------------- /tests/integration-tests/utils/FirebaseWrapperStub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/utils/FirebaseWrapperStub.ts -------------------------------------------------------------------------------- /tests/integration-tests/utils/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/integration-tests/utils/test-helpers.ts -------------------------------------------------------------------------------- /tests/objectFlatten.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/objectFlatten.spec.ts -------------------------------------------------------------------------------- /tests/providers/lazy-loading/paramsToQuery.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/providers/lazy-loading/paramsToQuery.spec.ts -------------------------------------------------------------------------------- /tests/reference-document-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/reference-document-parser.spec.ts -------------------------------------------------------------------------------- /tests/storagePath.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tests/storagePath.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwinding/react-admin-firebase/HEAD/yarn.lock --------------------------------------------------------------------------------