@adminide-stack/core 1.1.1-alpha.295 → 1.1.1-alpha.301
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/lib/interfaces/generated/generated-models.d.ts +78 -27
- package/lib/interfaces/generated/generated-models.js +39 -11
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/lib/interfaces/page-store.d.ts +3 -2
- package/lib/modules/account-api/enums/index.d.ts +2 -0
- package/lib/modules/account-api/enums/index.js +2 -0
- package/lib/modules/account-api/enums/index.js.map +1 -1
- package/package.json +2 -2
@@ -1,11 +1,12 @@
|
|
1
|
-
import { IMenuPosition } from '@common-stack/client-react';
|
2
|
-
export interface IPageStore {
|
1
|
+
import { IMenuPosition, IMappedData } from '@common-stack/client-react';
|
2
|
+
export interface IPageStore extends IMappedData {
|
3
3
|
key: string;
|
4
4
|
tab?: string;
|
5
5
|
tabTitle?: string;
|
6
6
|
path: string;
|
7
7
|
exact?: boolean;
|
8
8
|
name?: string;
|
9
|
+
authority?: string[];
|
9
10
|
/**
|
10
11
|
* When `exact: false` we may not have an component
|
11
12
|
*/
|
@@ -3,6 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.IPreDefineAccountPermissions = void 0;
|
4
4
|
var IPreDefineAccountPermissions;
|
5
5
|
(function (IPreDefineAccountPermissions) {
|
6
|
+
IPreDefineAccountPermissions["secureUser"] = "account.user.secure";
|
7
|
+
IPreDefineAccountPermissions["guestUser"] = "account.user.guest";
|
6
8
|
IPreDefineAccountPermissions["inviteMember"] = "organization.teams.inviteMember";
|
7
9
|
IPreDefineAccountPermissions["viewTeams"] = "organization.teams.view";
|
8
10
|
IPreDefineAccountPermissions["createTeams"] = "organization.teams.create";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/account-api/enums/index.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/account-api/enums/index.ts"],"names":[],"mappings":";;;AAAA,IAAY,4BAoDX;AApDD,WAAY,4BAA4B;IACtC,kEAAkC,CAAA;IAClC,gEAAgC,CAAA;IAChC,gFAAgD,CAAA;IAChD,qEAAqC,CAAA;IACrC,yEAAyC,CAAA;IACzC,qEAAqC,CAAA;IACrC,yEAAyC,CAAA;IACzC,yEAAyC,CAAA;IACzC,2FAA2D,CAAA;IAE3D,2EAA2C,CAAA;IAC3C,+EAA+C,CAAA;IAC/C,2EAA2C,CAAA;IAC3C,+EAA+C,CAAA;IAC/C,+EAA+C,CAAA;IAC/C,uFAAuD,CAAA;IAEvD,yEAAyC,CAAA;IACzC,6EAA6C,CAAA;IAC7C,yEAAyC,CAAA;IACzC,6EAA6C,CAAA;IAC7C,6EAA6C,CAAA;IAE7C,qEAAqC,CAAA;IACrC,yEAAyC,CAAA;IACzC,qEAAqC,CAAA;IACrC,yEAAyC,CAAA;IACzC,yEAAyC,CAAA;IAEzC,mEAAmC,CAAA;IACnC,uEAAuC,CAAA;IACvC,mEAAmC,CAAA;IACnC,uEAAuC,CAAA;IACvC,uEAAuC,CAAA;IAEvC,sEAAsC,CAAA;IACtC,0EAA0C,CAAA;IAC1C,sEAAsC,CAAA;IACtC,0EAA0C,CAAA;IAC1C,0EAA0C,CAAA;IAE1C,qEAAqC,CAAA;IACrC,qEAAsC,CAAA;IACtC,iFAAiD,CAAA;IACjD,iFAAiD,CAAA;IACjD,2EAA2C,CAAA;IAC3C,2EAA2C,CAAA;IAC3C,2EAA2C,CAAA;IAC3C,2EAA2C,CAAA;IAE3C,yEAAyC,CAAA;AAC3C,CAAC,EApDW,4BAA4B,GAA5B,oCAA4B,KAA5B,oCAA4B,QAoDvC"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@adminide-stack/core",
|
3
|
-
"version": "1.1.1-alpha.
|
3
|
+
"version": "1.1.1-alpha.301",
|
4
4
|
"description": "AdminIDE core for higher packages to depend on",
|
5
5
|
"license": "ISC",
|
6
6
|
"author": "CDMBase LLC",
|
@@ -52,5 +52,5 @@
|
|
52
52
|
"typescript": {
|
53
53
|
"definition": "lib/index.d.ts"
|
54
54
|
},
|
55
|
-
"gitHead": "
|
55
|
+
"gitHead": "8366d15bdcf351c02fd98ff51218cdc9ed0a96ed"
|
56
56
|
}
|