@base44-preview/sdk 0.8.28-pr.174.7df2520 → 0.8.28-pr.174.899d90f

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.
@@ -126,22 +126,22 @@ export interface AuthModule {
126
126
  */
127
127
  me(): Promise<User>;
128
128
  /**
129
- * Updates the current authenticated user's custom profile fields.
129
+ * Updates fields on the current authenticated user's profile.
130
130
  *
131
- * Only custom fields defined in your [User entity schema](https://docs.base44.com/developers/backend/resources/entities/user-schema) can be updated.
132
- * The following platform-managed fields are read-only and cannot be changed
133
- * with this method: `id`, `email`, `full_name`, `created_date`, `updated_date`,
134
- * `app_id`, `is_verified`, `is_service`, `disabled`, and `role`.
131
+ * You can update `role` and any custom fields defined in your
132
+ * [User entity schema](https://docs.base44.com/developers/backend/resources/entities/user-schema).
133
+ * The following fields are read-only and cannot be changed with this method:
134
+ * `id`, `email`, `full_name`, `created_date`, `updated_date`, and `created_by`.
135
135
  *
136
- * @param data - Object containing the custom fields to update.
136
+ * @param data - Object containing the fields to update.
137
137
  * @returns Promise resolving to the updated user data.
138
138
  *
139
139
  * @example
140
140
  * ```typescript
141
- * // Update custom fields defined in your User entity
141
+ * // Update role and custom fields defined in your User entity
142
142
  * await base44.auth.updateMe({
143
+ * role: 'admin',
143
144
  * bio: 'Software developer',
144
- * phone: '+1234567890',
145
145
  * preferences: { theme: 'dark' }
146
146
  * });
147
147
  * ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base44-preview/sdk",
3
- "version": "0.8.28-pr.174.7df2520",
3
+ "version": "0.8.28-pr.174.899d90f",
4
4
  "description": "JavaScript SDK for Base44 API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",