@getzep/zep-cloud 3.15.0 → 3.16.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.
@@ -50,8 +50,8 @@ class ZepClient {
50
50
  this._options = Object.assign(Object.assign({}, _options), { headers: (0, headers_js_1.mergeHeaders)({
51
51
  "X-Fern-Language": "JavaScript",
52
52
  "X-Fern-SDK-Name": "zep-cloud",
53
- "X-Fern-SDK-Version": "3.15.0",
54
- "User-Agent": "zep-cloud/3.15.0",
53
+ "X-Fern-SDK-Version": "3.16.0",
54
+ "User-Agent": "zep-cloud/3.16.0",
55
55
  "X-Fern-Runtime": core.RUNTIME.type,
56
56
  "X-Fern-Runtime-Version": core.RUNTIME.version,
57
57
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -6,6 +6,7 @@ export interface GetTaskResponse {
6
6
  completedAt?: string;
7
7
  createdAt?: string;
8
8
  error?: Zep.TaskErrorResponse;
9
+ params?: Record<string, unknown>;
9
10
  progress?: Zep.TaskProgress;
10
11
  startedAt?: string;
11
12
  status?: string;
@@ -9,4 +9,6 @@ export interface MessageListResponse {
9
9
  rowCount?: number;
10
10
  /** The total number of messages. */
11
11
  totalCount?: number;
12
+ /** The user ID associated with this thread. */
13
+ userId?: string;
12
14
  }
@@ -12,6 +12,7 @@ export declare namespace GetTaskResponse {
12
12
  completed_at?: string | null;
13
13
  created_at?: string | null;
14
14
  error?: TaskErrorResponse.Raw | null;
15
+ params?: Record<string, unknown> | null;
15
16
  progress?: TaskProgress.Raw | null;
16
17
  started_at?: string | null;
17
18
  status?: string | null;
@@ -44,6 +44,7 @@ exports.GetTaskResponse = core.serialization.object({
44
44
  completedAt: core.serialization.property("completed_at", core.serialization.string().optional()),
45
45
  createdAt: core.serialization.property("created_at", core.serialization.string().optional()),
46
46
  error: TaskErrorResponse_js_1.TaskErrorResponse.optional(),
47
+ params: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(),
47
48
  progress: TaskProgress_js_1.TaskProgress.optional(),
48
49
  startedAt: core.serialization.property("started_at", core.serialization.string().optional()),
49
50
  status: core.serialization.string().optional(),
@@ -11,5 +11,6 @@ export declare namespace MessageListResponse {
11
11
  messages?: Message.Raw[] | null;
12
12
  row_count?: number | null;
13
13
  total_count?: number | null;
14
+ user_id?: string | null;
14
15
  }
15
16
  }
@@ -43,4 +43,5 @@ exports.MessageListResponse = core.serialization.object({
43
43
  messages: core.serialization.list(Message_js_1.Message).optional(),
44
44
  rowCount: core.serialization.property("row_count", core.serialization.number().optional()),
45
45
  totalCount: core.serialization.property("total_count", core.serialization.number().optional()),
46
+ userId: core.serialization.property("user_id", core.serialization.string().optional()),
46
47
  });
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "3.15.0";
1
+ export declare const SDK_VERSION = "3.16.0";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "3.15.0";
4
+ exports.SDK_VERSION = "3.16.0";
@@ -14,8 +14,8 @@ export class ZepClient {
14
14
  this._options = Object.assign(Object.assign({}, _options), { headers: mergeHeaders({
15
15
  "X-Fern-Language": "JavaScript",
16
16
  "X-Fern-SDK-Name": "zep-cloud",
17
- "X-Fern-SDK-Version": "3.15.0",
18
- "User-Agent": "zep-cloud/3.15.0",
17
+ "X-Fern-SDK-Version": "3.16.0",
18
+ "User-Agent": "zep-cloud/3.16.0",
19
19
  "X-Fern-Runtime": core.RUNTIME.type,
20
20
  "X-Fern-Runtime-Version": core.RUNTIME.version,
21
21
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -6,6 +6,7 @@ export interface GetTaskResponse {
6
6
  completedAt?: string;
7
7
  createdAt?: string;
8
8
  error?: Zep.TaskErrorResponse;
9
+ params?: Record<string, unknown>;
9
10
  progress?: Zep.TaskProgress;
10
11
  startedAt?: string;
11
12
  status?: string;
@@ -9,4 +9,6 @@ export interface MessageListResponse {
9
9
  rowCount?: number;
10
10
  /** The total number of messages. */
11
11
  totalCount?: number;
12
+ /** The user ID associated with this thread. */
13
+ userId?: string;
12
14
  }
@@ -12,6 +12,7 @@ export declare namespace GetTaskResponse {
12
12
  completed_at?: string | null;
13
13
  created_at?: string | null;
14
14
  error?: TaskErrorResponse.Raw | null;
15
+ params?: Record<string, unknown> | null;
15
16
  progress?: TaskProgress.Raw | null;
16
17
  started_at?: string | null;
17
18
  status?: string | null;
@@ -8,6 +8,7 @@ export const GetTaskResponse = core.serialization.object({
8
8
  completedAt: core.serialization.property("completed_at", core.serialization.string().optional()),
9
9
  createdAt: core.serialization.property("created_at", core.serialization.string().optional()),
10
10
  error: TaskErrorResponse.optional(),
11
+ params: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(),
11
12
  progress: TaskProgress.optional(),
12
13
  startedAt: core.serialization.property("started_at", core.serialization.string().optional()),
13
14
  status: core.serialization.string().optional(),
@@ -11,5 +11,6 @@ export declare namespace MessageListResponse {
11
11
  messages?: Message.Raw[] | null;
12
12
  row_count?: number | null;
13
13
  total_count?: number | null;
14
+ user_id?: string | null;
14
15
  }
15
16
  }
@@ -7,4 +7,5 @@ export const MessageListResponse = core.serialization.object({
7
7
  messages: core.serialization.list(Message).optional(),
8
8
  rowCount: core.serialization.property("row_count", core.serialization.number().optional()),
9
9
  totalCount: core.serialization.property("total_count", core.serialization.number().optional()),
10
+ userId: core.serialization.property("user_id", core.serialization.string().optional()),
10
11
  });
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "3.15.0";
1
+ export declare const SDK_VERSION = "3.16.0";
@@ -1 +1 @@
1
- export const SDK_VERSION = "3.15.0";
1
+ export const SDK_VERSION = "3.16.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getzep/zep-cloud",
3
- "version": "3.15.0",
3
+ "version": "3.16.0",
4
4
  "private": false,
5
5
  "repository": "https://github.com/getzep/zep-js",
6
6
  "description": "Zep: Fast, scalable building blocks for production LLM apps",