@autohq/cli 0.1.345 → 0.1.347
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 +7 -1
- package/dist/index.js +15 -1
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -23492,7 +23492,7 @@ Object.assign(lookup, {
|
|
|
23492
23492
|
// package.json
|
|
23493
23493
|
var package_default = {
|
|
23494
23494
|
name: "@autohq/cli",
|
|
23495
|
-
version: "0.1.
|
|
23495
|
+
version: "0.1.347",
|
|
23496
23496
|
license: "SEE LICENSE IN README.md",
|
|
23497
23497
|
publishConfig: {
|
|
23498
23498
|
access: "public"
|
|
@@ -27781,6 +27781,12 @@ var McpJsonRpcMessageSchema = external_exports.object({
|
|
|
27781
27781
|
}).passthrough();
|
|
27782
27782
|
var McpPostBodySchema = external_exports.union([McpJsonRpcMessageSchema, external_exports.array(McpJsonRpcMessageSchema)]).transform((body) => Array.isArray(body) ? body : [body]);
|
|
27783
27783
|
|
|
27784
|
+
// ../../packages/schemas/src/organization-settings.ts
|
|
27785
|
+
var OrganizationIdentityPolicySchema = external_exports.object({
|
|
27786
|
+
allowAssertedForGit: external_exports.boolean()
|
|
27787
|
+
});
|
|
27788
|
+
var UpdateOrganizationIdentityPolicyRequestSchema = OrganizationIdentityPolicySchema.strict();
|
|
27789
|
+
|
|
27784
27790
|
// ../../packages/schemas/src/pricing.ts
|
|
27785
27791
|
var RATE_CARD_2026_06_23 = {
|
|
27786
27792
|
version: "2026-06-23",
|
package/dist/index.js
CHANGED
|
@@ -19398,6 +19398,19 @@ var init_mcp = __esm({
|
|
|
19398
19398
|
}
|
|
19399
19399
|
});
|
|
19400
19400
|
|
|
19401
|
+
// ../../packages/schemas/src/organization-settings.ts
|
|
19402
|
+
var OrganizationIdentityPolicySchema, UpdateOrganizationIdentityPolicyRequestSchema;
|
|
19403
|
+
var init_organization_settings = __esm({
|
|
19404
|
+
"../../packages/schemas/src/organization-settings.ts"() {
|
|
19405
|
+
"use strict";
|
|
19406
|
+
init_zod();
|
|
19407
|
+
OrganizationIdentityPolicySchema = external_exports.object({
|
|
19408
|
+
allowAssertedForGit: external_exports.boolean()
|
|
19409
|
+
});
|
|
19410
|
+
UpdateOrganizationIdentityPolicyRequestSchema = OrganizationIdentityPolicySchema.strict();
|
|
19411
|
+
}
|
|
19412
|
+
});
|
|
19413
|
+
|
|
19401
19414
|
// ../../packages/schemas/src/pricing.ts
|
|
19402
19415
|
function tier(inputUsdPerMtok, outputUsdPerMtok) {
|
|
19403
19416
|
return {
|
|
@@ -27759,6 +27772,7 @@ var init_src = __esm({
|
|
|
27759
27772
|
init_mcp();
|
|
27760
27773
|
init_model_selection();
|
|
27761
27774
|
init_mounts();
|
|
27775
|
+
init_organization_settings();
|
|
27762
27776
|
init_pricing();
|
|
27763
27777
|
init_provider_grants();
|
|
27764
27778
|
init_project_config();
|
|
@@ -30520,7 +30534,7 @@ var init_package = __esm({
|
|
|
30520
30534
|
"package.json"() {
|
|
30521
30535
|
package_default = {
|
|
30522
30536
|
name: "@autohq/cli",
|
|
30523
|
-
version: "0.1.
|
|
30537
|
+
version: "0.1.347",
|
|
30524
30538
|
license: "SEE LICENSE IN README.md",
|
|
30525
30539
|
publishConfig: {
|
|
30526
30540
|
access: "public"
|