@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 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/tsclient",
3
- "version": "0.4.36",
3
+ "version": "0.4.37",
4
4
  "description": "TypeScript client for the cloud-agent platform API.",
5
5
  "type": "module",
6
6
  "sideEffects": false,