your-ai-workflow-firebase-os 1.2.44 → 1.2.48

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/README.md CHANGED
@@ -132,11 +132,12 @@ interface FirebaseOSProps {
132
132
  };
133
133
 
134
134
  /**
135
- * Email addresses that are automatically assigned the 'admin' role once
136
- * they have verified their email. Replaces the VITE_ADMIN_EMAILS env var.
137
- * The same addresses have to be in the Firestore rules you pasted during
138
- * setup/setup writes them in for you since the rules, not the client,
139
- * are what actually grant the role.
135
+ * Optional. Who owns the app is decided by the Firestore rules alone: the
136
+ * /setup page has a bar where the owner types their address and generates
137
+ * rules that already name them, and the app simply asks Firebase for the
138
+ * rolethe rules say yes to the listed addresses and no to everyone else.
139
+ * This prop only prefills that bar (handy for pre-configured installs);
140
+ * nothing requires it any more.
140
141
  */
141
142
  adminEmails?: string[];
142
143