sim-setup 1.0.0-preview.13.1 → 1.0.0-preview.16.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/index.js +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1546,6 +1546,7 @@ var init_env_capabilities = __esm(() => {
|
|
|
1546
1546
|
"google-forms",
|
|
1547
1547
|
"google-groups",
|
|
1548
1548
|
"google-meet",
|
|
1549
|
+
"google-chat",
|
|
1549
1550
|
"vertex-ai"
|
|
1550
1551
|
]);
|
|
1551
1552
|
MICROSOFT_OAUTH_SERVICES = new Set([
|
|
@@ -35243,7 +35244,10 @@ var RETRY_AFTER_MAX_MS = 30000;
|
|
|
35243
35244
|
function truncate(str, sliceLength, suffix = "...") {
|
|
35244
35245
|
return str.length > sliceLength ? str.slice(0, sliceLength) + suffix : str;
|
|
35245
35246
|
}
|
|
35246
|
-
var
|
|
35247
|
+
var MARKDOWN_ESCAPABLE;
|
|
35248
|
+
var init_string = __esm(() => {
|
|
35249
|
+
MARKDOWN_ESCAPABLE = new Set("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~");
|
|
35250
|
+
});
|
|
35247
35251
|
|
|
35248
35252
|
// src/cli-auth.ts
|
|
35249
35253
|
import { spawnSync as spawnSync5 } from "node:child_process";
|