@avallon-labs/sdk 26.11.0 → 26.12.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.ts CHANGED
@@ -6755,6 +6755,9 @@ declare const useCreateChat: <TError = ErrorType<ErrorResponse>>(options?: {
6755
6755
  };
6756
6756
  /**
6757
6757
  * Return a chat and its messages in chronological order. Used to re-render a transcript after a reload. Only `user` and `assistant` messages are included; tool calls and tool results are omitted. Each message's `content` is the concatenation of its text blocks separated by newlines.
6758
+
6759
+ For compatibility this endpoint is also available using the following (deprecated) paths:
6760
+ `GET /public/v1/chat`
6758
6761
  * @summary Get a chat
6759
6762
  */
6760
6763
  declare const getGetChatUrl: (chatId: string) => string;
@@ -6805,6 +6808,9 @@ declare const useGetPublicChatAgent: <TError = ErrorType<ErrorResponse>>(chatAge
6805
6808
  };
6806
6809
  /**
6807
6810
  * Post a user message to an existing chat and return the assistant reply. Both messages are persisted.
6811
+
6812
+ For compatibility this endpoint is also available using the following (deprecated) paths:
6813
+ `POST /public/v1/chat/messages`
6808
6814
  * @summary Post a message to a chat
6809
6815
  */
6810
6816
  declare const getPostChatMessageUrl: (chatId: string) => string;