blockintel-gate-sdk 0.4.6 → 0.4.7
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.cjs +33 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +33 -2
- package/dist/index.js.map +1 -1
- package/dist/pilot/index.cjs +1 -1
- package/dist/pilot/index.cjs.map +1 -1
- package/dist/pilot/index.js +1 -1
- package/dist/pilot/index.js.map +1 -1
- package/package.json +1 -1
package/dist/pilot/index.js
CHANGED
|
@@ -1184,7 +1184,7 @@ async function handleSignCommand(command, originalClient, gateClient, options) {
|
|
|
1184
1184
|
if (options.mode === "dry-run") {
|
|
1185
1185
|
return await originalClient.send(new SignCommand(command));
|
|
1186
1186
|
}
|
|
1187
|
-
const GATEWAY_STAGES = ["HARD_KMS_GATEWAY", "HARD_GCP_GATEWAY"
|
|
1187
|
+
const GATEWAY_STAGES = ["HARD_KMS_GATEWAY", "HARD_GCP_GATEWAY"];
|
|
1188
1188
|
const currentStage = gateClient.heartbeatManager?.getAdoptionStage?.();
|
|
1189
1189
|
if (currentStage && GATEWAY_STAGES.includes(currentStage)) {
|
|
1190
1190
|
emitMetric(options.metricsSink, "sign_success_total", labels);
|