@rallycry/conveyor-agent 10.8.2 → 10.9.0
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/{chunk-LBMFXTIV.js → chunk-H3OGNJS4.js} +281 -21
- package/dist/chunk-H3OGNJS4.js.map +1 -0
- package/dist/cli.js +5 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +14 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/runtime/entrypoint.sh +24 -1
- package/dist/chunk-LBMFXTIV.js.map +0 -1
package/dist/cli.js
CHANGED
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
runStartCommand,
|
|
29
29
|
sampleKeyUsage,
|
|
30
30
|
terminateProcessGroup
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-H3OGNJS4.js";
|
|
32
32
|
import "./chunk-7TQO4ZF4.js";
|
|
33
33
|
|
|
34
34
|
// src/cli.ts
|
|
@@ -650,7 +650,8 @@ var ProjectSessionRunner = class {
|
|
|
650
650
|
type: "rate_limit_update",
|
|
651
651
|
rateLimitType: sample.rateLimitType,
|
|
652
652
|
utilization: sample.utilization,
|
|
653
|
-
status: sample.status
|
|
653
|
+
status: sample.status,
|
|
654
|
+
gauges: sample.gauges
|
|
654
655
|
});
|
|
655
656
|
}
|
|
656
657
|
}
|
|
@@ -997,7 +998,8 @@ var AdhocSessionRunner = class {
|
|
|
997
998
|
type: "rate_limit_update",
|
|
998
999
|
rateLimitType: sample.rateLimitType,
|
|
999
1000
|
utilization: sample.utilization,
|
|
1000
|
-
status: sample.status
|
|
1001
|
+
status: sample.status,
|
|
1002
|
+
gauges: sample.gauges
|
|
1001
1003
|
});
|
|
1002
1004
|
}
|
|
1003
1005
|
}
|