@delopay/sdk 0.12.1 → 0.13.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/internal.cjs CHANGED
@@ -3005,6 +3005,36 @@ var AdminPortal = class {
3005
3005
  async deleteAccount(merchantId) {
3006
3006
  return this.request("DELETE", `/admin-portal/accounts/${encodeURIComponent(merchantId)}`);
3007
3007
  }
3008
+ /**
3009
+ * Create a brand-new user attached to the given merchant. The user is
3010
+ * marked `is_verified = true` so the admin can hand off credentials
3011
+ * immediately — no email round-trip is sent.
3012
+ */
3013
+ async createUserForMerchant(customerId, body) {
3014
+ return this.request(
3015
+ "POST",
3016
+ `/admin-portal/customers/${encodeURIComponent(customerId)}/users`,
3017
+ { body }
3018
+ );
3019
+ }
3020
+ /**
3021
+ * Edit a user record. Any subset of fields may be supplied. `role_id`
3022
+ * requires `merchant_id`. `password` triggers a password reset (validated
3023
+ * against signup policy + JWT blacklist). `reset_2fa` clears TOTP state
3024
+ * so the user re-enrolls on next login. `is_active` supports both
3025
+ * directions: false soft-disables, true reactivates a soft-disabled user.
3026
+ */
3027
+ async updateUser(userId, body) {
3028
+ return this.request("PATCH", `/admin-portal/users/${encodeURIComponent(userId)}`, { body });
3029
+ }
3030
+ /**
3031
+ * Soft-delete a user globally: deactivates the row, blacklists existing
3032
+ * JWTs, and wipes credentials. Distinct from `deleteUserRole`, which
3033
+ * removes a single role binding while leaving the user signed-in elsewhere.
3034
+ */
3035
+ async deleteUser(userId) {
3036
+ return this.request("DELETE", `/admin-portal/users/${encodeURIComponent(userId)}`);
3037
+ }
3008
3038
  };
3009
3039
 
3010
3040
  // src/internal/resources/auditLogs.ts