@astralform/js 7.5.1 → 8.0.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/index.d.cts CHANGED
@@ -625,8 +625,9 @@ interface AgentInfo {
625
625
  * Derived by the server from the connector, so it cannot go stale the way the
626
626
  * retired `mode` toggle could. It gates a SURFACE, not an ability: naming a
627
627
  * repository is optional on every task, and a task that names none is an
628
- * ordinary chat. Absent on Astralform older than 0.69.50 fall back to `mode`
629
- * there.
628
+ * ordinary chat. Absent on Astralform older than 0.69.50, where it should be
629
+ * read as false: those backends had an agent-level mode instead, and this
630
+ * SDK no longer carries the field that expressed it.
630
631
  *
631
632
  * It is a property of the WORKSPACE, not of a persona: `GET /v1/agents` selects
632
633
  * the workspace row itself and returns exactly one entry, so read
@@ -634,17 +635,6 @@ interface AgentInfo {
634
635
  * carry it, so a client learns this after opening an agent.
635
636
  */
636
637
  codeProjectsEnabled?: boolean;
637
- /**
638
- * @deprecated Removed in the next Astralform release. There is no agent mode —
639
- * a repository belongs to the TASK, so one agent answers general questions and
640
- * works in repositories from the same list. Read {@link codeProjectsEnabled}.
641
- *
642
- * Still reported for one release, as the STORED value of the retired column, so
643
- * clients built before the change keep behaving exactly as they did. Do not
644
- * treat it as an alias for `codeProjectsEnabled`: an agent that never had the
645
- * toggle set still reports `"chat"` while its tasks can bind perfectly well.
646
- */
647
- mode?: "chat" | "code";
648
638
  }
649
639
  interface TeamSummary {
650
640
  id: string;
package/dist/index.d.ts CHANGED
@@ -625,8 +625,9 @@ interface AgentInfo {
625
625
  * Derived by the server from the connector, so it cannot go stale the way the
626
626
  * retired `mode` toggle could. It gates a SURFACE, not an ability: naming a
627
627
  * repository is optional on every task, and a task that names none is an
628
- * ordinary chat. Absent on Astralform older than 0.69.50 fall back to `mode`
629
- * there.
628
+ * ordinary chat. Absent on Astralform older than 0.69.50, where it should be
629
+ * read as false: those backends had an agent-level mode instead, and this
630
+ * SDK no longer carries the field that expressed it.
630
631
  *
631
632
  * It is a property of the WORKSPACE, not of a persona: `GET /v1/agents` selects
632
633
  * the workspace row itself and returns exactly one entry, so read
@@ -634,17 +635,6 @@ interface AgentInfo {
634
635
  * carry it, so a client learns this after opening an agent.
635
636
  */
636
637
  codeProjectsEnabled?: boolean;
637
- /**
638
- * @deprecated Removed in the next Astralform release. There is no agent mode —
639
- * a repository belongs to the TASK, so one agent answers general questions and
640
- * works in repositories from the same list. Read {@link codeProjectsEnabled}.
641
- *
642
- * Still reported for one release, as the STORED value of the retired column, so
643
- * clients built before the change keep behaving exactly as they did. Do not
644
- * treat it as an alias for `codeProjectsEnabled`: an agent that never had the
645
- * toggle set still reports `"chat"` while its tasks can bind perfectly well.
646
- */
647
- mode?: "chat" | "code";
648
638
  }
649
639
  interface TeamSummary {
650
640
  id: string;