firebase-tools 14.23.0 → 14.24.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/lib/appUtils.js +30 -13
- package/lib/appdistribution/client.js +2 -1
- package/lib/appdistribution/distribution.js +85 -2
- package/lib/appdistribution/options-parser-util.js +8 -5
- package/lib/commands/appdistribution-distribute.js +12 -85
- package/lib/commands/dataconnect-sdk-generate.js +3 -2
- package/lib/deploy/functions/services/dataconnect.js +14 -0
- package/lib/deploy/functions/services/index.js +11 -0
- package/lib/emulator/downloadableEmulatorInfo.json +26 -18
- package/lib/emulator/downloadableEmulators.js +59 -47
- package/lib/functions/events/v2.js +2 -1
- package/lib/init/features/dataconnect/sdk.js +18 -0
- package/lib/mcp/prompts/apptesting/index.js +9 -0
- package/lib/mcp/prompts/apptesting/run_test.js +127 -0
- package/lib/mcp/prompts/crashlytics/connect.js +33 -27
- package/lib/mcp/prompts/index.js +2 -0
- package/lib/mcp/tools/apptesting/index.js +9 -0
- package/lib/mcp/tools/apptesting/tests.js +100 -0
- package/lib/mcp/tools/crashlytics/events.js +92 -9
- package/lib/mcp/tools/index.js +6 -4
- package/lib/mcp/types.js +1 -0
- package/lib/mcp/util/apptesting/availability.js +24 -0
- package/lib/mcp/util/availability.js +2 -0
- package/lib/mcp/util.js +2 -0
- package/package.json +2 -2
- package/schema/connector-yaml.json +30 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "firebase-tools",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.24.1",
|
|
4
4
|
"description": "Command-Line Interface for Firebase",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@electric-sql/pglite": "^0.3.3",
|
|
67
67
|
"@electric-sql/pglite-tools": "^0.2.8",
|
|
68
68
|
"@google-cloud/cloud-sql-connector": "^1.3.3",
|
|
69
|
-
"@google-cloud/pubsub": "^
|
|
69
|
+
"@google-cloud/pubsub": "^5.2.0",
|
|
70
70
|
"@inquirer/prompts": "^7.4.0",
|
|
71
71
|
"@modelcontextprotocol/sdk": "^1.10.2",
|
|
72
72
|
"abort-controller": "^3.0.0",
|
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"additionalProperties": false,
|
|
4
4
|
"definitions": {
|
|
5
|
+
"adminNodeSdk": {
|
|
6
|
+
"additionalProperties": true,
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"outputDir": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "Path to the directory where generated files should be written to."
|
|
12
|
+
},
|
|
13
|
+
"package": {
|
|
14
|
+
"type": "string",
|
|
15
|
+
"description": "The package name to use for the generated code."
|
|
16
|
+
},
|
|
17
|
+
"packageJSONDir": {
|
|
18
|
+
"type": "string",
|
|
19
|
+
"description": "The directory containing the package.json to install the generated package in."
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
5
23
|
"javascriptSdk": {
|
|
6
24
|
"additionalProperties": true,
|
|
7
25
|
"type": "object",
|
|
@@ -90,6 +108,18 @@
|
|
|
90
108
|
],
|
|
91
109
|
"description": "Configuration for a generated Javascript SDK"
|
|
92
110
|
},
|
|
111
|
+
"adminNodeSdk": {
|
|
112
|
+
"oneOf": [
|
|
113
|
+
{ "$ref": "#/definitions/adminNodeSdk" },
|
|
114
|
+
{
|
|
115
|
+
"type": "array",
|
|
116
|
+
"items": {
|
|
117
|
+
"$ref": "#/definitions/adminNodeSdk"
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
"description": "Configuration for a generated Admin Node SDK"
|
|
122
|
+
},
|
|
93
123
|
"dartSdk": {
|
|
94
124
|
"oneOf": [
|
|
95
125
|
{ "$ref": "#/definitions/dartSdk" },
|