@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 CHANGED
@@ -3245,6 +3245,7 @@ declare namespace JUHUU {
3245
3245
  managementUserId?: string;
3246
3246
  createdByPropertyId?: string;
3247
3247
  customerOfPropertyId?: string;
3248
+ search?: string;
3248
3249
  };
3249
3250
  type Options = {
3250
3251
  limit?: number;
package/dist/index.d.ts CHANGED
@@ -3245,6 +3245,7 @@ declare namespace JUHUU {
3245
3245
  managementUserId?: string;
3246
3246
  createdByPropertyId?: string;
3247
3247
  customerOfPropertyId?: string;
3248
+ search?: string;
3248
3249
  };
3249
3250
  type Options = {
3250
3251
  limit?: number;
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
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "provenance": true
4
4
  },
5
5
  "name": "@juhuu/sdk-ts",
6
- "version": "1.3.54",
6
+ "version": "1.3.55",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",