@makinbakin/sdk 0.0.1-rc.29 → 0.0.1-rc.30
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.
|
@@ -514,6 +514,17 @@ export interface RuntimeRoutingSupport {
|
|
|
514
514
|
* declares and declare every level it honors (conformance-pinned).
|
|
515
515
|
*/
|
|
516
516
|
supportedThinkingLevels: readonly string[];
|
|
517
|
+
/**
|
|
518
|
+
* Whether messaging.send/stream turns may carry a per-turn `model`
|
|
519
|
+
* override (#880: OpenClaw 2026.9.5 gates this behind operator.admin
|
|
520
|
+
* scope). MAY BE DYNAMIC — OpenClaw derives it from the gateway
|
|
521
|
+
* connection's GRANTED scopes (optimistic true before first connect;
|
|
522
|
+
* flips false after a scope downgrade or an admission rejection). Bakin's
|
|
523
|
+
* routing layer clamps routed models to the agent default (with a
|
|
524
|
+
* modelClamp receipt + audit) when false — same posture as thinking
|
|
525
|
+
* levels: declare only what the runtime will honor (conformance-pinned).
|
|
526
|
+
*/
|
|
527
|
+
perTurnModel: boolean;
|
|
517
528
|
}
|
|
518
529
|
export interface RuntimeAvailableModel {
|
|
519
530
|
id: string;
|
|
@@ -84,6 +84,12 @@ export declare const ListRowLabels: import("react").ForwardRefExoticComponent<Om
|
|
|
84
84
|
export interface ListRowGroupProps extends ComponentPropsWithoutRef<'div'> {
|
|
85
85
|
/** Group heading rendered above the group's rows. */
|
|
86
86
|
label: ReactNode;
|
|
87
|
+
/** Compact rail label (default), or a flush, filled collection section heading. */
|
|
88
|
+
headerVariant?: 'plain' | 'section';
|
|
89
|
+
/** Section heading rail color; neutral by default. Does not color the rows. */
|
|
90
|
+
headerTone?: 'neutral' | 'accent' | 'success' | 'attention' | 'danger' | 'info';
|
|
91
|
+
/** Semantic heading level for section headers. Defaults to 3. */
|
|
92
|
+
headingLevel?: 2 | 3 | 4 | 5 | 6;
|
|
87
93
|
}
|
|
88
94
|
/**
|
|
89
95
|
* Section wrapper for date/section-grouped row lists (chat rail, plan lists,
|
|
@@ -102,4 +108,4 @@ export interface ListRowGroupProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
102
108
|
* list, 4 items"), whereas grouping roles inside lists have uneven AT support
|
|
103
109
|
* and a single flat list would either miscount headings as items or lose them.
|
|
104
110
|
*/
|
|
105
|
-
export declare function ListRowGroup({ label, className, children, ...props }: ListRowGroupProps): import("react/jsx-runtime").JSX.Element;
|
|
111
|
+
export declare function ListRowGroup({ label, headerVariant, headerTone, headingLevel, className, children, ...props }: ListRowGroupProps): import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED