@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/{chunk-U6GMDSVQ.js → chunk-4Q3E7XLP.js} +5 -3
- package/dist/chunk-4Q3E7XLP.js.map +1 -0
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/dist/internal.cjs +4 -2
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-U6GMDSVQ.js.map +0 -1
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) {
|