@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 +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
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 =
|
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 =
|
1294
|
+
type Options = {
|
1295
|
+
limit?: number;
|
1296
|
+
skip?: number;
|
1297
|
+
} & JUHUU.RequestOptions;
|
1295
1298
|
type Response = {
|
1296
1299
|
chatMessageArray: JUHUU.ChatMessage.Object[];
|
1297
1300
|
};
|