@datviet/nbp-sdk 0.0.328 → 0.0.329

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datviet/nbp-sdk",
3
- "version": "0.0.328",
3
+ "version": "0.0.329",
4
4
  "description": "TypeScript SDK cho NBP API (nbp.datviet.ai) — listings, clients, tasks, agent sessions.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -1350,6 +1350,7 @@ export declare class Clients extends HeyApiClient {
1350
1350
  interactionsFeed<ThrowOnError extends boolean = false>(parameters?: {
1351
1351
  directory?: string;
1352
1352
  limit?: number;
1353
+ offset?: number;
1353
1354
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<NbpClientsInteractionsFeedResponses, unknown, ThrowOnError, "fields">;
1354
1355
  /**
1355
1356
  * List clients
package/v2/gen/sdk.gen.js CHANGED
@@ -1371,6 +1371,7 @@ export class Clients extends HeyApiClient {
1371
1371
  args: [
1372
1372
  { in: "query", key: "directory" },
1373
1373
  { in: "query", key: "limit" },
1374
+ { in: "query", key: "offset" },
1374
1375
  ],
1375
1376
  },
1376
1377
  ]);
@@ -1191,6 +1191,7 @@ export type Task = {
1191
1191
  clientId?: string | null;
1192
1192
  clientName?: string | null;
1193
1193
  listingId?: string | null;
1194
+ listingCode?: string | null;
1194
1195
  createdAt: string;
1195
1196
  updatedAt: string;
1196
1197
  };
@@ -6208,6 +6209,7 @@ export type NbpClientsStatsResponses = {
6208
6209
  bySourceChannel: {
6209
6210
  [key: string]: number;
6210
6211
  };
6212
+ pipelineValue: number;
6211
6213
  };
6212
6214
  };
6213
6215
  export type NbpClientsStatsResponse = NbpClientsStatsResponses[keyof NbpClientsStatsResponses];
@@ -6234,6 +6236,7 @@ export type NbpClientsInteractionsFeedData = {
6234
6236
  query?: {
6235
6237
  directory?: string;
6236
6238
  limit?: number;
6239
+ offset?: number;
6237
6240
  };
6238
6241
  url: "/nbp/clients/interactions";
6239
6242
  };