@paroicms/public-server-lib 0.48.1 → 0.48.2
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/package.json
CHANGED
|
@@ -412,12 +412,14 @@ export interface RiLocalNewAccount {
|
|
|
412
412
|
email: string;
|
|
413
413
|
name: string;
|
|
414
414
|
password: string;
|
|
415
|
+
roles: string[];
|
|
415
416
|
}
|
|
416
417
|
|
|
417
418
|
export interface RiExternalNewAccount {
|
|
418
419
|
kind: "google";
|
|
419
420
|
email: string;
|
|
420
421
|
name: string;
|
|
422
|
+
roles: string[];
|
|
421
423
|
}
|
|
422
424
|
|
|
423
425
|
export type RiNodeContent = RiDocumentContent | RiPartContent;
|