@bubblelab/shared-schemas 0.1.49 → 0.1.50
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.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/milk-tea.d.ts +2 -2
- package/dist/pearl.d.ts +2 -2
- package/dist/subscription-status-schema.d.ts +16 -16
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3161,18 +3161,18 @@ var userUsageItemSchema = z14.object({
|
|
|
3161
3161
|
description: "User ID from Clerk",
|
|
3162
3162
|
example: "user_30Gbwrzto1VZvAHcGUm5NLQhpkp"
|
|
3163
3163
|
}),
|
|
3164
|
-
|
|
3165
|
-
description: "User
|
|
3166
|
-
example: "John
|
|
3164
|
+
firstName: z14.string().optional().openapi({
|
|
3165
|
+
description: "User's first name",
|
|
3166
|
+
example: "John"
|
|
3167
|
+
}),
|
|
3168
|
+
lastName: z14.string().optional().openapi({
|
|
3169
|
+
description: "User's last name",
|
|
3170
|
+
example: "Doe"
|
|
3167
3171
|
}),
|
|
3168
3172
|
userEmail: z14.string().optional().openapi({
|
|
3169
3173
|
description: "User email address",
|
|
3170
3174
|
example: "john@acme.com"
|
|
3171
3175
|
}),
|
|
3172
|
-
userImageUrl: z14.string().optional().openapi({
|
|
3173
|
-
description: "User profile image URL",
|
|
3174
|
-
example: "https://img.clerk.com/..."
|
|
3175
|
-
}),
|
|
3176
3176
|
role: orgRoleSchema.openapi({
|
|
3177
3177
|
description: "User's role in the organization"
|
|
3178
3178
|
}),
|