@turtleclub/hooks 0.5.0-beta.96 → 0.5.0-beta.97

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 CHANGED
@@ -482,6 +482,14 @@ var organizationSchema = z6.object({
482
482
  landingUrl: z6.string().optional().nullable(),
483
483
  iconUrl: z6.string().optional().nullable(),
484
484
  organizationType: z6.string().optional().nullable(),
485
+ organizationPermissions: z6.array(
486
+ z6.object({
487
+ id: z6.string().uuid(),
488
+ permissionId: z6.string().uuid(),
489
+ status: z6.enum(["revoked", "approved"]),
490
+ permissionName: z6.string()
491
+ })
492
+ ).optional(),
485
493
  turtleRefCode: z6.string().optional().nullable(),
486
494
  twitterHandle: z6.string().optional().nullable(),
487
495
  status: z6.string().optional().nullable(),