@shisyamo4131/air-guard-v2-schemas 2.2.3-dev.2 → 2.2.3-dev.3
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 +1 -1
- package/src/User.js +2 -1
package/package.json
CHANGED
package/src/User.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* User Model
|
|
3
3
|
* @version 1.1.0
|
|
4
4
|
* @author shisyamo4131
|
|
5
|
-
* @update 2025-11-
|
|
5
|
+
* @update 2025-11-24 Added `companyId`, `isAdmin`, `isTemporary` property.
|
|
6
6
|
*
|
|
7
7
|
* @prop {string} email - User's email address.
|
|
8
8
|
* @prop {string} displayName - User's display name.
|
|
@@ -33,6 +33,7 @@ const classProps = {
|
|
|
33
33
|
hidden: true,
|
|
34
34
|
}),
|
|
35
35
|
companyId: defField("oneLine", { hidden: true, required: true }),
|
|
36
|
+
isAdmin: defField("check", { hidden: true, default: false }),
|
|
36
37
|
isTemporary: defField("check", { hidden: true, default: true }),
|
|
37
38
|
};
|
|
38
39
|
|