firebase-tools 11.25.1 → 11.25.2

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.
@@ -77,7 +77,9 @@ function transUserToArray(user) {
77
77
  arr[24] = user.lastLoginAt;
78
78
  arr[25] = user.phoneNumber;
79
79
  arr[26] = user.disabled;
80
- arr[27] = user.customAttributes;
80
+ arr[27] = user.customAttributes
81
+ ? `"${user.customAttributes.replace(/(?<!\\)"/g, '""')}"`
82
+ : user.customAttributes;
81
83
  return arr;
82
84
  }
83
85
  function transUserJson(user) {
@@ -23,9 +23,9 @@ const EMULATOR_UPDATE_DETAILS = {
23
23
  expectedChecksum: "311609538bd65666eb724ef47c2e6466",
24
24
  },
25
25
  firestore: {
26
- version: "1.16.0",
27
- expectedSize: 63422812,
28
- expectedChecksum: "6c1a43c1b327d534f83f7386c595d7ff",
26
+ version: "1.16.1",
27
+ expectedSize: 64213741,
28
+ expectedChecksum: "befa5f6cbe258e787bf0bbb4eb9da2c8",
29
29
  },
30
30
  storage: {
31
31
  version: "1.1.3",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "firebase-tools",
3
- "version": "11.25.1",
3
+ "version": "11.25.2",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "firebase-tools",
9
- "version": "11.25.1",
9
+ "version": "11.25.2",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@google-cloud/pubsub": "^3.0.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firebase-tools",
3
- "version": "11.25.1",
3
+ "version": "11.25.2",
4
4
  "description": "Command-Line Interface for Firebase",
5
5
  "main": "./lib/index.js",
6
6
  "bin": {
@@ -1,4 +1,4 @@
1
- This directory now contains the source files for a simple extension called **greet-the-world**. You can try it out right away in the Firebase Emulator suite - just naviagte to the integration-test directory and run:
1
+ This directory now contains the source files for a simple extension called **greet-the-world**. You can try it out right away in the Firebase Emulator suite - just navigate to the integration-test directory and run:
2
2
 
3
3
  `firebase emulators:start --project=<project-id>`
4
4