@flashbacktech/tsclient 0.4.36 → 0.4.37
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -668,6 +668,10 @@ interface ListChatSessionsResponse {
|
|
|
668
668
|
interface ListChatSessionsQuery {
|
|
669
669
|
cursor?: string;
|
|
670
670
|
limit?: number;
|
|
671
|
+
/** Inclusive lower bound on `created_at`, RFC3339 timestamp. */
|
|
672
|
+
from?: string;
|
|
673
|
+
/** Exclusive upper bound on `created_at`, RFC3339 timestamp. */
|
|
674
|
+
to?: string;
|
|
671
675
|
}
|
|
672
676
|
interface GetChatSessionResponse {
|
|
673
677
|
session: ChatSession;
|
package/dist/index.d.ts
CHANGED
|
@@ -668,6 +668,10 @@ interface ListChatSessionsResponse {
|
|
|
668
668
|
interface ListChatSessionsQuery {
|
|
669
669
|
cursor?: string;
|
|
670
670
|
limit?: number;
|
|
671
|
+
/** Inclusive lower bound on `created_at`, RFC3339 timestamp. */
|
|
672
|
+
from?: string;
|
|
673
|
+
/** Exclusive upper bound on `created_at`, RFC3339 timestamp. */
|
|
674
|
+
to?: string;
|
|
671
675
|
}
|
|
672
676
|
interface GetChatSessionResponse {
|
|
673
677
|
session: ChatSession;
|