@juhuu/sdk-ts 1.2.28 → 1.2.29

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.mts CHANGED
@@ -1291,7 +1291,10 @@ declare namespace JUHUU {
1291
1291
  userId?: string;
1292
1292
  chatId?: string;
1293
1293
  };
1294
- type Options = JUHUU.RequestOptions;
1294
+ type Options = {
1295
+ limit?: number;
1296
+ skip?: number;
1297
+ } & JUHUU.RequestOptions;
1295
1298
  type Response = {
1296
1299
  chatMessageArray: JUHUU.ChatMessage.Object[];
1297
1300
  };
package/dist/index.d.ts CHANGED
@@ -1291,7 +1291,10 @@ declare namespace JUHUU {
1291
1291
  userId?: string;
1292
1292
  chatId?: string;
1293
1293
  };
1294
- type Options = JUHUU.RequestOptions;
1294
+ type Options = {
1295
+ limit?: number;
1296
+ skip?: number;
1297
+ } & JUHUU.RequestOptions;
1295
1298
  type Response = {
1296
1299
  chatMessageArray: JUHUU.ChatMessage.Object[];
1297
1300
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.28",
3
+ "version": "1.2.29",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",