@autohq/cli 0.1.497 → 0.1.498
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/agent-bridge.js +12 -1
- package/dist/index.js +14 -2
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -30866,7 +30866,7 @@ Object.assign(lookup, {
|
|
|
30866
30866
|
// package.json
|
|
30867
30867
|
var package_default = {
|
|
30868
30868
|
name: "@autohq/cli",
|
|
30869
|
-
version: "0.1.
|
|
30869
|
+
version: "0.1.498",
|
|
30870
30870
|
license: "SEE LICENSE IN README.md",
|
|
30871
30871
|
publishConfig: {
|
|
30872
30872
|
access: "public"
|
|
@@ -38404,6 +38404,17 @@ var SessionSpendCapRuntimeStatusSchema = external_exports.object({
|
|
|
38404
38404
|
park: SessionParkRecordSchema.nullable(),
|
|
38405
38405
|
organizationCreditsExhausted: external_exports.boolean()
|
|
38406
38406
|
});
|
|
38407
|
+
var SessionSpendCapBatchRequestSchema = external_exports.object({
|
|
38408
|
+
sessionIds: external_exports.array(SessionIdSchema2).max(50)
|
|
38409
|
+
});
|
|
38410
|
+
var SessionSpendCapBatchResponseSchema = external_exports.object({
|
|
38411
|
+
statuses: external_exports.array(
|
|
38412
|
+
external_exports.object({
|
|
38413
|
+
sessionId: SessionIdSchema2,
|
|
38414
|
+
status: SessionSpendCapRuntimeStatusSchema
|
|
38415
|
+
})
|
|
38416
|
+
)
|
|
38417
|
+
});
|
|
38407
38418
|
var AgentSpendCapRuntimeStatusSchema = external_exports.object({
|
|
38408
38419
|
status: AgentSpendCapStatusSchema,
|
|
38409
38420
|
override: SpendCapOverrideStateSchema,
|
package/dist/index.js
CHANGED
|
@@ -22760,11 +22760,12 @@ var init_runtimes = __esm({
|
|
|
22760
22760
|
});
|
|
22761
22761
|
|
|
22762
22762
|
// ../../packages/schemas/src/spend-cap-runtime.ts
|
|
22763
|
-
var SpendCapOverrideStateSchema, SpendCapOverrideUpdateRequestSchema, SPEND_CAP_LIMIT_KINDS, SpendCapLimitKindSchema, EffectiveSpendCapHitSchema, SessionSpendCapRuntimeStatusSchema, AgentSpendCapRuntimeStatusSchema, SessionCreationSpendCapDecisionSchema, SPEND_CAP_RUNTIME_ERROR_CODES, SpendCapRuntimeErrorResponseSchema;
|
|
22763
|
+
var SpendCapOverrideStateSchema, SpendCapOverrideUpdateRequestSchema, SPEND_CAP_LIMIT_KINDS, SpendCapLimitKindSchema, EffectiveSpendCapHitSchema, SessionSpendCapRuntimeStatusSchema, SessionSpendCapBatchRequestSchema, SessionSpendCapBatchResponseSchema, AgentSpendCapRuntimeStatusSchema, SessionCreationSpendCapDecisionSchema, SPEND_CAP_RUNTIME_ERROR_CODES, SpendCapRuntimeErrorResponseSchema;
|
|
22764
22764
|
var init_spend_cap_runtime = __esm({
|
|
22765
22765
|
"../../packages/schemas/src/spend-cap-runtime.ts"() {
|
|
22766
22766
|
"use strict";
|
|
22767
22767
|
init_zod();
|
|
22768
|
+
init_ids();
|
|
22768
22769
|
init_requester_spend();
|
|
22769
22770
|
init_session_parks();
|
|
22770
22771
|
init_spend_caps();
|
|
@@ -22807,6 +22808,17 @@ var init_spend_cap_runtime = __esm({
|
|
|
22807
22808
|
park: SessionParkRecordSchema.nullable(),
|
|
22808
22809
|
organizationCreditsExhausted: external_exports.boolean()
|
|
22809
22810
|
});
|
|
22811
|
+
SessionSpendCapBatchRequestSchema = external_exports.object({
|
|
22812
|
+
sessionIds: external_exports.array(SessionIdSchema).max(50)
|
|
22813
|
+
});
|
|
22814
|
+
SessionSpendCapBatchResponseSchema = external_exports.object({
|
|
22815
|
+
statuses: external_exports.array(
|
|
22816
|
+
external_exports.object({
|
|
22817
|
+
sessionId: SessionIdSchema,
|
|
22818
|
+
status: SessionSpendCapRuntimeStatusSchema
|
|
22819
|
+
})
|
|
22820
|
+
)
|
|
22821
|
+
});
|
|
22810
22822
|
AgentSpendCapRuntimeStatusSchema = external_exports.object({
|
|
22811
22823
|
status: AgentSpendCapStatusSchema,
|
|
22812
22824
|
override: SpendCapOverrideStateSchema,
|
|
@@ -65118,7 +65130,7 @@ var init_package = __esm({
|
|
|
65118
65130
|
"package.json"() {
|
|
65119
65131
|
package_default = {
|
|
65120
65132
|
name: "@autohq/cli",
|
|
65121
|
-
version: "0.1.
|
|
65133
|
+
version: "0.1.498",
|
|
65122
65134
|
license: "SEE LICENSE IN README.md",
|
|
65123
65135
|
publishConfig: {
|
|
65124
65136
|
access: "public"
|