@delopay/sdk 0.28.0 → 0.29.0

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.cjs CHANGED
@@ -2212,8 +2212,10 @@ var Users = class {
2212
2212
  return this.request("POST", "/user/auth/select", { body: params });
2213
2213
  }
2214
2214
  /** List users in lineage. `GET /user/employees/list` */
2215
- async listUsersInLineage() {
2216
- return this.request("GET", "/user/employees/list");
2215
+ async listUsersInLineage(params) {
2216
+ return this.request("GET", "/user/employees/list", {
2217
+ query: params
2218
+ });
2217
2219
  }
2218
2220
  /** Resend invite. `POST /user/employees/resend-invite` */
2219
2221
  async resendInvite(params) {