@flashbacktech/tsclient 0.4.70 → 0.4.71

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
@@ -1066,6 +1066,14 @@ interface ListChatSessionsQuery {
1066
1066
  interface GetChatSessionResponse {
1067
1067
  session: ChatSession;
1068
1068
  messages: ChatMessage[];
1069
+ /**
1070
+ * Action categories the user has sticky-allowed for the rest of this chat
1071
+ * session (the ConfirmationCard "Allow for session" opt-in). Held in
1072
+ * engine memory, so this re-hydrates the dashboard's guardrail chips after
1073
+ * a reload while the engine process is alive; `null` (or omitted) when
1074
+ * there are none or after an engine restart.
1075
+ */
1076
+ session_allows?: ActionCategory[] | null;
1069
1077
  }
1070
1078
  interface PostChatMessageRequest {
1071
1079
  text: string;
package/dist/index.d.ts CHANGED
@@ -1066,6 +1066,14 @@ interface ListChatSessionsQuery {
1066
1066
  interface GetChatSessionResponse {
1067
1067
  session: ChatSession;
1068
1068
  messages: ChatMessage[];
1069
+ /**
1070
+ * Action categories the user has sticky-allowed for the rest of this chat
1071
+ * session (the ConfirmationCard "Allow for session" opt-in). Held in
1072
+ * engine memory, so this re-hydrates the dashboard's guardrail chips after
1073
+ * a reload while the engine process is alive; `null` (or omitted) when
1074
+ * there are none or after an engine restart.
1075
+ */
1076
+ session_allows?: ActionCategory[] | null;
1069
1077
  }
1070
1078
  interface PostChatMessageRequest {
1071
1079
  text: string;