├── .github ├── no-response.yml └── workflows │ └── dart.yml ├── .gitignore ├── README.md ├── _shared_assets ├── create_config.dart ├── lib │ ├── README.md │ ├── assets.dart │ ├── assets_io.dart │ └── config.json.sample ├── mono_pkg.yaml └── pubspec.yaml ├── firebase ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── build.yaml ├── dart_test.yaml ├── example │ ├── auth │ │ ├── index.dart │ │ └── index.html │ ├── auth_phone │ │ ├── index.dart │ │ └── index.html │ ├── firestore │ │ ├── index.dart │ │ └── index.html │ ├── index.html │ ├── readme.md │ ├── realtime_database │ │ ├── index.dart │ │ └── index.html │ └── storage │ │ ├── index.dart │ │ └── index.html ├── lib │ ├── firebase.dart │ ├── firebase_io.dart │ ├── firestore.dart │ └── src │ │ ├── analytics.dart │ │ ├── app.dart │ │ ├── auth.dart │ │ ├── database.dart │ │ ├── firestore.dart │ │ ├── functions.dart │ │ ├── interop │ │ ├── analytics_interop.dart │ │ ├── app_interop.dart │ │ ├── auth_interop.dart │ │ ├── database_interop.dart │ │ ├── es6_interop.dart │ │ ├── firebase_interop.dart │ │ ├── firestore_interop.dart │ │ ├── functions_interop.dart │ │ ├── js_interop.dart │ │ ├── messaging_interop.dart │ │ ├── performance_interop.dart │ │ ├── remote_config_interop.dart │ │ └── storage_interop.dart │ │ ├── js.dart │ │ ├── messaging.dart │ │ ├── performance.dart │ │ ├── remote_config.dart │ │ ├── storage.dart │ │ ├── top_level.dart │ │ └── utils.dart ├── mono_pkg.yaml ├── pubspec.yaml └── test │ ├── app_test.dart │ ├── app_test.html │ ├── auth_test.dart │ ├── auth_test.html │ ├── database_test.dart │ ├── database_test.html │ ├── firestore_test.dart │ ├── firestore_test.html │ ├── functions_test.dart │ ├── functions_test.html │ ├── io_test.dart │ ├── not_loaded_script_test.dart │ ├── remote_config_test.dart │ ├── remote_config_test.html │ ├── storage_test.dart │ ├── storage_test.html │ ├── test_util.dart │ ├── utils_test.dart │ └── utils_test.html ├── mono_repo.yaml └── tool └── ci.sh /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | firebase/README.md -------------------------------------------------------------------------------- /_shared_assets/create_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/_shared_assets/create_config.dart -------------------------------------------------------------------------------- /_shared_assets/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/_shared_assets/lib/README.md -------------------------------------------------------------------------------- /_shared_assets/lib/assets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/_shared_assets/lib/assets.dart -------------------------------------------------------------------------------- /_shared_assets/lib/assets_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/_shared_assets/lib/assets_io.dart -------------------------------------------------------------------------------- /_shared_assets/lib/config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/_shared_assets/lib/config.json.sample -------------------------------------------------------------------------------- /_shared_assets/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/_shared_assets/mono_pkg.yaml -------------------------------------------------------------------------------- /_shared_assets/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/_shared_assets/pubspec.yaml -------------------------------------------------------------------------------- /firebase/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/AUTHORS -------------------------------------------------------------------------------- /firebase/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/CHANGELOG.md -------------------------------------------------------------------------------- /firebase/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/CONTRIBUTING.md -------------------------------------------------------------------------------- /firebase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/LICENSE -------------------------------------------------------------------------------- /firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/README.md -------------------------------------------------------------------------------- /firebase/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/analysis_options.yaml -------------------------------------------------------------------------------- /firebase/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/build.yaml -------------------------------------------------------------------------------- /firebase/dart_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/dart_test.yaml -------------------------------------------------------------------------------- /firebase/example/auth/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/auth/index.dart -------------------------------------------------------------------------------- /firebase/example/auth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/auth/index.html -------------------------------------------------------------------------------- /firebase/example/auth_phone/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/auth_phone/index.dart -------------------------------------------------------------------------------- /firebase/example/auth_phone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/auth_phone/index.html -------------------------------------------------------------------------------- /firebase/example/firestore/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/firestore/index.dart -------------------------------------------------------------------------------- /firebase/example/firestore/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/firestore/index.html -------------------------------------------------------------------------------- /firebase/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/index.html -------------------------------------------------------------------------------- /firebase/example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/readme.md -------------------------------------------------------------------------------- /firebase/example/realtime_database/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/realtime_database/index.dart -------------------------------------------------------------------------------- /firebase/example/realtime_database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/realtime_database/index.html -------------------------------------------------------------------------------- /firebase/example/storage/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/storage/index.dart -------------------------------------------------------------------------------- /firebase/example/storage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/example/storage/index.html -------------------------------------------------------------------------------- /firebase/lib/firebase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/firebase.dart -------------------------------------------------------------------------------- /firebase/lib/firebase_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/firebase_io.dart -------------------------------------------------------------------------------- /firebase/lib/firestore.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/firestore.dart -------------------------------------------------------------------------------- /firebase/lib/src/analytics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/analytics.dart -------------------------------------------------------------------------------- /firebase/lib/src/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/app.dart -------------------------------------------------------------------------------- /firebase/lib/src/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/auth.dart -------------------------------------------------------------------------------- /firebase/lib/src/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/database.dart -------------------------------------------------------------------------------- /firebase/lib/src/firestore.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/firestore.dart -------------------------------------------------------------------------------- /firebase/lib/src/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/functions.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/analytics_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/analytics_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/app_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/app_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/auth_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/auth_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/database_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/database_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/es6_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/es6_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/firebase_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/firebase_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/firestore_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/firestore_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/functions_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/functions_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/js_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/js_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/messaging_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/messaging_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/performance_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/performance_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/remote_config_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/remote_config_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/interop/storage_interop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/interop/storage_interop.dart -------------------------------------------------------------------------------- /firebase/lib/src/js.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/js.dart -------------------------------------------------------------------------------- /firebase/lib/src/messaging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/messaging.dart -------------------------------------------------------------------------------- /firebase/lib/src/performance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/performance.dart -------------------------------------------------------------------------------- /firebase/lib/src/remote_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/remote_config.dart -------------------------------------------------------------------------------- /firebase/lib/src/storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/storage.dart -------------------------------------------------------------------------------- /firebase/lib/src/top_level.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/top_level.dart -------------------------------------------------------------------------------- /firebase/lib/src/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/lib/src/utils.dart -------------------------------------------------------------------------------- /firebase/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/mono_pkg.yaml -------------------------------------------------------------------------------- /firebase/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/pubspec.yaml -------------------------------------------------------------------------------- /firebase/test/app_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/app_test.dart -------------------------------------------------------------------------------- /firebase/test/app_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/app_test.html -------------------------------------------------------------------------------- /firebase/test/auth_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/auth_test.dart -------------------------------------------------------------------------------- /firebase/test/auth_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/auth_test.html -------------------------------------------------------------------------------- /firebase/test/database_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/database_test.dart -------------------------------------------------------------------------------- /firebase/test/database_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/database_test.html -------------------------------------------------------------------------------- /firebase/test/firestore_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/firestore_test.dart -------------------------------------------------------------------------------- /firebase/test/firestore_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/firestore_test.html -------------------------------------------------------------------------------- /firebase/test/functions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/functions_test.dart -------------------------------------------------------------------------------- /firebase/test/functions_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/functions_test.html -------------------------------------------------------------------------------- /firebase/test/io_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/io_test.dart -------------------------------------------------------------------------------- /firebase/test/not_loaded_script_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/not_loaded_script_test.dart -------------------------------------------------------------------------------- /firebase/test/remote_config_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/remote_config_test.dart -------------------------------------------------------------------------------- /firebase/test/remote_config_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/remote_config_test.html -------------------------------------------------------------------------------- /firebase/test/storage_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/storage_test.dart -------------------------------------------------------------------------------- /firebase/test/storage_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/storage_test.html -------------------------------------------------------------------------------- /firebase/test/test_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/test_util.dart -------------------------------------------------------------------------------- /firebase/test/utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/utils_test.dart -------------------------------------------------------------------------------- /firebase/test/utils_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/firebase/test/utils_test.html -------------------------------------------------------------------------------- /mono_repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/mono_repo.yaml -------------------------------------------------------------------------------- /tool/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-dart/HEAD/tool/ci.sh --------------------------------------------------------------------------------