@juhuu/sdk-ts 1.3.54 → 1.3.55
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1202,6 +1202,9 @@ var UsersService = class extends Service {
|
|
|
1202
1202
|
"customerOfPropertyId=" + UserListParams.customerOfPropertyId
|
|
1203
1203
|
);
|
|
1204
1204
|
}
|
|
1205
|
+
if (UserListParams.search !== void 0) {
|
|
1206
|
+
queryArray.push("search=" + encodeURIComponent(UserListParams.search));
|
|
1207
|
+
}
|
|
1205
1208
|
if (UserListOptions?.cursor !== void 0) {
|
|
1206
1209
|
queryArray.push("cursor=" + UserListOptions.cursor);
|
|
1207
1210
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -1158,6 +1158,9 @@ var UsersService = class extends Service {
|
|
|
1158
1158
|
"customerOfPropertyId=" + UserListParams.customerOfPropertyId
|
|
1159
1159
|
);
|
|
1160
1160
|
}
|
|
1161
|
+
if (UserListParams.search !== void 0) {
|
|
1162
|
+
queryArray.push("search=" + encodeURIComponent(UserListParams.search));
|
|
1163
|
+
}
|
|
1161
1164
|
if (UserListOptions?.cursor !== void 0) {
|
|
1162
1165
|
queryArray.push("cursor=" + UserListOptions.cursor);
|
|
1163
1166
|
}
|