@juhuu/sdk-ts 1.2.154 → 1.2.155
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 +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1233,7 +1233,11 @@ declare namespace JUHUU {
|
|
1233
1233
|
limit?: number;
|
1234
1234
|
skip?: number;
|
1235
1235
|
} & JUHUU.RequestOptions;
|
1236
|
-
type Response =
|
1236
|
+
type Response = {
|
1237
|
+
userArray: JUHUU.User.Object[];
|
1238
|
+
count: number;
|
1239
|
+
hasMore: boolean;
|
1240
|
+
};
|
1237
1241
|
}
|
1238
1242
|
export namespace Exists {
|
1239
1243
|
type Params = {
|
package/dist/index.d.ts
CHANGED
@@ -1233,7 +1233,11 @@ declare namespace JUHUU {
|
|
1233
1233
|
limit?: number;
|
1234
1234
|
skip?: number;
|
1235
1235
|
} & JUHUU.RequestOptions;
|
1236
|
-
type Response =
|
1236
|
+
type Response = {
|
1237
|
+
userArray: JUHUU.User.Object[];
|
1238
|
+
count: number;
|
1239
|
+
hasMore: boolean;
|
1240
|
+
};
|
1237
1241
|
}
|
1238
1242
|
export namespace Exists {
|
1239
1243
|
type Params = {
|