@vizamodo/viza-cli 1.3.6 → 1.3.12
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.
|
@@ -25,7 +25,8 @@ async function dispatchIntent(input, mode = "dispatch") {
|
|
|
25
25
|
infraKey: input.infraKey,
|
|
26
26
|
payload: input.payload,
|
|
27
27
|
runnerLabel: input.runnerLabel,
|
|
28
|
-
keepLog: input.keepLog
|
|
28
|
+
keepLog: input.keepLog,
|
|
29
|
+
flowGates: input.flowGates,
|
|
29
30
|
};
|
|
30
31
|
const handle = await dispatcherDispatch(dispatchInput, {
|
|
31
32
|
auth: {
|
|
@@ -13,6 +13,10 @@ export async function awsLogin(ctx) {
|
|
|
13
13
|
targetTeam: ctx.targetTeam,
|
|
14
14
|
runnerLabel: "native",
|
|
15
15
|
keepLog: ctx.keepLog === true,
|
|
16
|
+
flowGates: {
|
|
17
|
+
secrets: false,
|
|
18
|
+
encVars: false,
|
|
19
|
+
},
|
|
16
20
|
payload: plainPayload,
|
|
17
21
|
}, { log: "show", mode: ctx.mode ?? "dispatch" });
|
|
18
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizamodo/viza-cli",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Viza unified command line interface",
|
|
6
6
|
"bin": {
|
|
@@ -16,16 +16,16 @@
|
|
|
16
16
|
"release:prod": "rm -rf dist && npx npm-check-updates -u && npm install && git add package.json package-lock.json && git commit -m 'chore(deps): auto update dependencies before release' || echo 'No changes' && node versioning.js && npm login && npm publish --tag latest --access public && git push"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@vizamodo/viza-dispatcher": "^1.4.
|
|
19
|
+
"@vizamodo/viza-dispatcher": "^1.4.58",
|
|
20
20
|
"adm-zip": "^0.5.16",
|
|
21
21
|
"chalk": "^5.6.2",
|
|
22
22
|
"commander": "^14.0.2",
|
|
23
|
-
"figlet": "^1.
|
|
23
|
+
"figlet": "^1.10.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/adm-zip": "^0.5.7",
|
|
27
27
|
"@types/figlet": "^1.7.0",
|
|
28
|
-
"@types/node": "^25.0
|
|
28
|
+
"@types/node": "^25.1.0",
|
|
29
29
|
"ts-node": "^10.9.2",
|
|
30
30
|
"typescript": "^5.9.3"
|
|
31
31
|
}
|