@firebase/remote-config 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.esm.js +17 -1
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/index.cjs.js +17 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/src/global_index.d.ts +0 -4
- package/package.json +7 -7
|
@@ -149,10 +149,6 @@ interface FirebaseOptions {
|
|
|
149
149
|
* and higher, this parameter is optional.
|
|
150
150
|
*/
|
|
151
151
|
measurementId?: string;
|
|
152
|
-
/**
|
|
153
|
-
* ReCAPTCHA Enterprise site key associated with this app.
|
|
154
|
-
*/
|
|
155
|
-
recaptchaSiteKey?: string;
|
|
156
152
|
}
|
|
157
153
|
declare module '@firebase/component' {
|
|
158
154
|
interface NameServiceMapping {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firebase/remote-config",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "The Remote Config package of the Firebase JS SDK",
|
|
5
5
|
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"lint": "eslint --cache --cache-location '../../node_modules/.cache/eslint/' -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
|
|
22
22
|
"lint:fix": "eslint --cache --cache-location '../../node_modules/.cache/eslint/' --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
|
|
23
23
|
"build": "rollup -c && yarn api-report",
|
|
24
|
-
"build:deps": "lerna run build --scope @firebase/remote-config",
|
|
24
|
+
"build:deps": "lerna run build --scope @firebase/remote-config --include-dependencies",
|
|
25
25
|
"build:release": "yarn build && yarn typings:public",
|
|
26
26
|
"dev": "rollup -c -w",
|
|
27
27
|
"test": "run-p --npm-path npm lint test:browser",
|
|
@@ -40,16 +40,16 @@
|
|
|
40
40
|
"@firebase/app": "0.x"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@firebase/installations": "0.6.
|
|
43
|
+
"@firebase/installations": "0.6.23",
|
|
44
44
|
"@firebase/logger": "0.5.1",
|
|
45
|
-
"@firebase/util": "1.15.
|
|
46
|
-
"@firebase/component": "0.7.
|
|
45
|
+
"@firebase/util": "1.15.2",
|
|
46
|
+
"@firebase/component": "0.7.4",
|
|
47
47
|
"tslib": "^2.1.0"
|
|
48
48
|
},
|
|
49
49
|
"license": "Apache-2.0",
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@firebase/app": "0.
|
|
52
|
-
"rollup": "
|
|
51
|
+
"@firebase/app": "0.16.0",
|
|
52
|
+
"rollup": "4.62.2",
|
|
53
53
|
"rollup-plugin-dts": "5.3.1",
|
|
54
54
|
"rollup-plugin-typescript2": "0.37.0",
|
|
55
55
|
"typescript": "5.5.4"
|