firebase-tools 13.0.2 → 13.0.3
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.
|
@@ -34,12 +34,12 @@ exports.command = new command_1.Command("apphosting:backends:list")
|
|
|
34
34
|
return backendsList;
|
|
35
35
|
});
|
|
36
36
|
function populateTable(backends, table) {
|
|
37
|
-
var _a;
|
|
37
|
+
var _a, _b;
|
|
38
38
|
for (const backend of backends) {
|
|
39
39
|
const [location, , backendId] = backend.name.split("/").slice(3, 6);
|
|
40
40
|
const entry = [
|
|
41
41
|
backendId,
|
|
42
|
-
(_a = backend.codebase
|
|
42
|
+
(_b = (_a = backend.codebase) === null || _a === void 0 ? void 0 : _a.repository) === null || _b === void 0 ? void 0 : _b.split("/").pop(),
|
|
43
43
|
location,
|
|
44
44
|
backend.uri,
|
|
45
45
|
backend.createTime,
|
|
@@ -250,7 +250,7 @@ class CloudStorageBucketMetadata {
|
|
|
250
250
|
this.location = "US";
|
|
251
251
|
this.storageClass = "STANDARD";
|
|
252
252
|
this.etag = "====";
|
|
253
|
-
this.locationType = "
|
|
253
|
+
this.locationType = "multi-region";
|
|
254
254
|
}
|
|
255
255
|
}
|
|
256
256
|
exports.CloudStorageBucketMetadata = CloudStorageBucketMetadata;
|
package/lib/functions/env.js
CHANGED
|
@@ -25,7 +25,7 @@ let YML_FULL_PATH_PULL_REQUEST;
|
|
|
25
25
|
let YML_FULL_PATH_MERGE;
|
|
26
26
|
const YML_PULL_REQUEST_FILENAME = "firebase-hosting-pull-request.yml";
|
|
27
27
|
const YML_MERGE_FILENAME = "firebase-hosting-merge.yml";
|
|
28
|
-
const CHECKOUT_GITHUB_ACTION_NAME = "actions/checkout@
|
|
28
|
+
const CHECKOUT_GITHUB_ACTION_NAME = "actions/checkout@v4";
|
|
29
29
|
const HOSTING_GITHUB_ACTION_NAME = "FirebaseExtended/action-hosting-deploy@v0";
|
|
30
30
|
const SERVICE_ACCOUNT_MAX_KEY_NUMBER = 10;
|
|
31
31
|
const githubApiClient = new apiv2_1.Client({ urlPrefix: api_1.githubApiOrigin, auth: false });
|