@autohq/cli 0.1.616 → 0.1.618
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 +14 -1
- package/dist/index.js +15 -2
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -37770,7 +37770,7 @@ Object.assign(lookup, {
|
|
|
37770
37770
|
// package.json
|
|
37771
37771
|
var package_default = {
|
|
37772
37772
|
name: "@autohq/cli",
|
|
37773
|
-
version: "0.1.
|
|
37773
|
+
version: "0.1.618",
|
|
37774
37774
|
license: "SEE LICENSE IN README.md",
|
|
37775
37775
|
publishConfig: {
|
|
37776
37776
|
access: "public"
|
|
@@ -39000,6 +39000,7 @@ var AuthScopeSchema = external_exports.enum([
|
|
|
39000
39000
|
"provider_grants:use",
|
|
39001
39001
|
"members:read",
|
|
39002
39002
|
"project_members:read",
|
|
39003
|
+
"waitlist_reporting:read",
|
|
39003
39004
|
"tasks:read",
|
|
39004
39005
|
"tasks:write",
|
|
39005
39006
|
"task_management:write",
|
|
@@ -42868,6 +42869,10 @@ var PROJECT_MEMBER_CAPABILITY_LEVELS = ["none", "read"];
|
|
|
42868
42869
|
var ProjectMemberCapabilityLevelSchema = external_exports.enum(
|
|
42869
42870
|
PROJECT_MEMBER_CAPABILITY_LEVELS
|
|
42870
42871
|
);
|
|
42872
|
+
var WAITLIST_REPORTING_CAPABILITY_LEVELS = ["none", "read"];
|
|
42873
|
+
var WaitlistReportingCapabilityLevelSchema = external_exports.enum(
|
|
42874
|
+
WAITLIST_REPORTING_CAPABILITY_LEVELS
|
|
42875
|
+
);
|
|
42871
42876
|
var RUNTIME_CAPABILITY_LEVELS = ["none", "read", "write"];
|
|
42872
42877
|
var RuntimeCapabilityLevelSchema = external_exports.enum(RUNTIME_CAPABILITY_LEVELS);
|
|
42873
42878
|
var TASK_CAPABILITY_LEVELS = ["none", "read", "write"];
|
|
@@ -42913,6 +42918,7 @@ var ProjectMemberCapabilitySchema = attenuatedCapabilitySchema({
|
|
|
42913
42918
|
levelSchema: ProjectMemberCapabilityLevelSchema,
|
|
42914
42919
|
levels: PROJECT_MEMBER_CAPABILITY_LEVELS
|
|
42915
42920
|
});
|
|
42921
|
+
var WaitlistReportingCapabilitySchema = external_exports.literal("read");
|
|
42916
42922
|
var RuntimeCapabilitySchema = attenuatedCapabilitySchema({
|
|
42917
42923
|
levelSchema: RuntimeCapabilityLevelSchema,
|
|
42918
42924
|
levels: RUNTIME_CAPABILITY_LEVELS
|
|
@@ -42936,6 +42942,9 @@ var WebhookCapabilitySchema = attenuatedCapabilitySchema({
|
|
|
42936
42942
|
var LocalAutoToolCapabilitiesSchema = external_exports.object({
|
|
42937
42943
|
billing: BillingCapabilitySchema.default("none"),
|
|
42938
42944
|
projectMembers: ProjectMemberCapabilitySchema.default("none"),
|
|
42945
|
+
// Optional preserves legacy persisted tool snapshots byte-for-byte while
|
|
42946
|
+
// making absence an explicit deny at every read site.
|
|
42947
|
+
waitlistReporting: WaitlistReportingCapabilitySchema.optional(),
|
|
42939
42948
|
runtimes: RuntimeCapabilitySchema.default("none"),
|
|
42940
42949
|
tasks: TaskCapabilitySchema.default("none"),
|
|
42941
42950
|
// Project-wide coordination is an explicit session-snapshot grant, not a
|
|
@@ -45146,6 +45155,10 @@ var SessionUiMessageRecordSchema = external_exports.object({
|
|
|
45146
45155
|
// aligned with message.parts. Null entries/field preserve legacy rows that
|
|
45147
45156
|
// predate part-level cursor capture.
|
|
45148
45157
|
partStreamCursors: external_exports.array(external_exports.number().int().positive().nullable()).nullable().default(null),
|
|
45158
|
+
// First durable snapshot timestamp for each UI part, aligned with
|
|
45159
|
+
// message.parts. This remains available on rows that predate part-level
|
|
45160
|
+
// cursor capture and lets read projections preserve their chronology.
|
|
45161
|
+
partCreatedAts: external_exports.array(external_exports.string().datetime()).nullable().default(null),
|
|
45149
45162
|
createdAt: external_exports.string().datetime(),
|
|
45150
45163
|
updatedAt: external_exports.string().datetime(),
|
|
45151
45164
|
completedAt: external_exports.string().datetime().nullable()
|
package/dist/index.js
CHANGED
|
@@ -15486,6 +15486,7 @@ var init_auth = __esm({
|
|
|
15486
15486
|
"provider_grants:use",
|
|
15487
15487
|
"members:read",
|
|
15488
15488
|
"project_members:read",
|
|
15489
|
+
"waitlist_reporting:read",
|
|
15489
15490
|
"tasks:read",
|
|
15490
15491
|
"tasks:write",
|
|
15491
15492
|
"task_management:write",
|
|
@@ -19696,7 +19697,7 @@ function remoteMcpToolSchema(input) {
|
|
|
19696
19697
|
]).default({ kind: "none" })
|
|
19697
19698
|
});
|
|
19698
19699
|
}
|
|
19699
|
-
var REMOTE_MCP_TRANSPORTS, LOCAL_TOOL_IMPLEMENTATIONS, BILLING_CAPABILITY_LEVELS, BillingCapabilityLevelSchema, PROJECT_MEMBER_CAPABILITY_LEVELS, ProjectMemberCapabilityLevelSchema, RUNTIME_CAPABILITY_LEVELS, RuntimeCapabilityLevelSchema, TASK_CAPABILITY_LEVELS, TaskCapabilityLevelSchema, TASK_MANAGEMENT_CAPABILITY_LEVELS, TaskManagementCapabilityLevelSchema, CONNECTION_CAPABILITY_LEVELS, ConnectionCapabilityLevelSchema, SECRET_CAPABILITY_LEVELS, SecretCapabilityLevelSchema, WEBHOOK_CAPABILITY_LEVELS, WebhookCapabilityLevelSchema, BillingCapabilitySchema, ProjectMemberCapabilitySchema, RuntimeCapabilitySchema, TaskCapabilitySchema, ConnectionCapabilitySchema, SecretCapabilitySchema, WebhookCapabilitySchema, LocalAutoToolCapabilitiesSchema, SecretReferenceSchema, NoToolAuthSchema, OptionalConnectionField, McpOAuthToolAuthSchema, ConnectionToolAuthSchema, ConnectionsToolAuthSchema, ConnectionBackedToolSchema, ToolAliasSchema, RemoteMcpToolSchema, LocalAutoToolSchema, LocalPingToolSchema, LocalChatToolSchema, LocalToolSchema, GithubToolSchema, ToolSpecSchema, AgentToolConnectRequestSchema, AgentToolConnectResponseSchema, AgentToolConnectCompleteResponseSchema, InlineAgentToolSchema, AgentToolRefSchema, AgentToolsSchema;
|
|
19700
|
+
var REMOTE_MCP_TRANSPORTS, LOCAL_TOOL_IMPLEMENTATIONS, BILLING_CAPABILITY_LEVELS, BillingCapabilityLevelSchema, PROJECT_MEMBER_CAPABILITY_LEVELS, ProjectMemberCapabilityLevelSchema, WAITLIST_REPORTING_CAPABILITY_LEVELS, WaitlistReportingCapabilityLevelSchema, RUNTIME_CAPABILITY_LEVELS, RuntimeCapabilityLevelSchema, TASK_CAPABILITY_LEVELS, TaskCapabilityLevelSchema, TASK_MANAGEMENT_CAPABILITY_LEVELS, TaskManagementCapabilityLevelSchema, CONNECTION_CAPABILITY_LEVELS, ConnectionCapabilityLevelSchema, SECRET_CAPABILITY_LEVELS, SecretCapabilityLevelSchema, WEBHOOK_CAPABILITY_LEVELS, WebhookCapabilityLevelSchema, BillingCapabilitySchema, ProjectMemberCapabilitySchema, WaitlistReportingCapabilitySchema, RuntimeCapabilitySchema, TaskCapabilitySchema, ConnectionCapabilitySchema, SecretCapabilitySchema, WebhookCapabilitySchema, LocalAutoToolCapabilitiesSchema, SecretReferenceSchema, NoToolAuthSchema, OptionalConnectionField, McpOAuthToolAuthSchema, ConnectionToolAuthSchema, ConnectionsToolAuthSchema, ConnectionBackedToolSchema, ToolAliasSchema, RemoteMcpToolSchema, LocalAutoToolSchema, LocalPingToolSchema, LocalChatToolSchema, LocalToolSchema, GithubToolSchema, ToolSpecSchema, AgentToolConnectRequestSchema, AgentToolConnectResponseSchema, AgentToolConnectCompleteResponseSchema, InlineAgentToolSchema, AgentToolRefSchema, AgentToolsSchema;
|
|
19700
19701
|
var init_tools = __esm({
|
|
19701
19702
|
"../../packages/schemas/src/tools.ts"() {
|
|
19702
19703
|
"use strict";
|
|
@@ -19714,6 +19715,10 @@ var init_tools = __esm({
|
|
|
19714
19715
|
ProjectMemberCapabilityLevelSchema = external_exports.enum(
|
|
19715
19716
|
PROJECT_MEMBER_CAPABILITY_LEVELS
|
|
19716
19717
|
);
|
|
19718
|
+
WAITLIST_REPORTING_CAPABILITY_LEVELS = ["none", "read"];
|
|
19719
|
+
WaitlistReportingCapabilityLevelSchema = external_exports.enum(
|
|
19720
|
+
WAITLIST_REPORTING_CAPABILITY_LEVELS
|
|
19721
|
+
);
|
|
19717
19722
|
RUNTIME_CAPABILITY_LEVELS = ["none", "read", "write"];
|
|
19718
19723
|
RuntimeCapabilityLevelSchema = external_exports.enum(RUNTIME_CAPABILITY_LEVELS);
|
|
19719
19724
|
TASK_CAPABILITY_LEVELS = ["none", "read", "write"];
|
|
@@ -19738,6 +19743,7 @@ var init_tools = __esm({
|
|
|
19738
19743
|
levelSchema: ProjectMemberCapabilityLevelSchema,
|
|
19739
19744
|
levels: PROJECT_MEMBER_CAPABILITY_LEVELS
|
|
19740
19745
|
});
|
|
19746
|
+
WaitlistReportingCapabilitySchema = external_exports.literal("read");
|
|
19741
19747
|
RuntimeCapabilitySchema = attenuatedCapabilitySchema({
|
|
19742
19748
|
levelSchema: RuntimeCapabilityLevelSchema,
|
|
19743
19749
|
levels: RUNTIME_CAPABILITY_LEVELS
|
|
@@ -19761,6 +19767,9 @@ var init_tools = __esm({
|
|
|
19761
19767
|
LocalAutoToolCapabilitiesSchema = external_exports.object({
|
|
19762
19768
|
billing: BillingCapabilitySchema.default("none"),
|
|
19763
19769
|
projectMembers: ProjectMemberCapabilitySchema.default("none"),
|
|
19770
|
+
// Optional preserves legacy persisted tool snapshots byte-for-byte while
|
|
19771
|
+
// making absence an explicit deny at every read site.
|
|
19772
|
+
waitlistReporting: WaitlistReportingCapabilitySchema.optional(),
|
|
19764
19773
|
runtimes: RuntimeCapabilitySchema.default("none"),
|
|
19765
19774
|
tasks: TaskCapabilitySchema.default("none"),
|
|
19766
19775
|
// Project-wide coordination is an explicit session-snapshot grant, not a
|
|
@@ -22140,6 +22149,10 @@ var init_sessions = __esm({
|
|
|
22140
22149
|
// aligned with message.parts. Null entries/field preserve legacy rows that
|
|
22141
22150
|
// predate part-level cursor capture.
|
|
22142
22151
|
partStreamCursors: external_exports.array(external_exports.number().int().positive().nullable()).nullable().default(null),
|
|
22152
|
+
// First durable snapshot timestamp for each UI part, aligned with
|
|
22153
|
+
// message.parts. This remains available on rows that predate part-level
|
|
22154
|
+
// cursor capture and lets read projections preserve their chronology.
|
|
22155
|
+
partCreatedAts: external_exports.array(external_exports.string().datetime()).nullable().default(null),
|
|
22143
22156
|
createdAt: external_exports.string().datetime(),
|
|
22144
22157
|
updatedAt: external_exports.string().datetime(),
|
|
22145
22158
|
completedAt: external_exports.string().datetime().nullable()
|
|
@@ -93746,7 +93759,7 @@ var init_package = __esm({
|
|
|
93746
93759
|
"package.json"() {
|
|
93747
93760
|
package_default = {
|
|
93748
93761
|
name: "@autohq/cli",
|
|
93749
|
-
version: "0.1.
|
|
93762
|
+
version: "0.1.618",
|
|
93750
93763
|
license: "SEE LICENSE IN README.md",
|
|
93751
93764
|
publishConfig: {
|
|
93752
93765
|
access: "public"
|