@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
|
@@ -2145,8 +2145,10 @@ var Users = class {
|
|
|
2145
2145
|
return this.request("POST", "/user/auth/select", { body: params });
|
|
2146
2146
|
}
|
|
2147
2147
|
/** List users in lineage. `GET /user/employees/list` */
|
|
2148
|
-
async listUsersInLineage() {
|
|
2149
|
-
return this.request("GET", "/user/employees/list"
|
|
2148
|
+
async listUsersInLineage(params) {
|
|
2149
|
+
return this.request("GET", "/user/employees/list", {
|
|
2150
|
+
query: params
|
|
2151
|
+
});
|
|
2150
2152
|
}
|
|
2151
2153
|
/** Resend invite. `POST /user/employees/resend-invite` */
|
|
2152
2154
|
async resendInvite(params) {
|
|
@@ -3622,4 +3624,4 @@ export {
|
|
|
3622
3624
|
applyBrandingVariables,
|
|
3623
3625
|
shadowFor
|
|
3624
3626
|
};
|
|
3625
|
-
//# sourceMappingURL=chunk-
|
|
3627
|
+
//# sourceMappingURL=chunk-4Q3E7XLP.js.map
|