@stackable-labs/sdk-extension-contracts 1.35.0 → 1.37.0
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 +4 -18
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -322,15 +322,13 @@ var SUPER_ROLE = {
|
|
|
322
322
|
};
|
|
323
323
|
var ORG_ROLE = {
|
|
324
324
|
ADMIN: "org:admin",
|
|
325
|
-
OWNER: "org:owner"
|
|
326
|
-
MEMBER: "org:member"
|
|
327
|
-
};
|
|
325
|
+
OWNER: "org:owner"};
|
|
328
326
|
var EDITOR_ROLES = [
|
|
329
327
|
SUPER_ROLE.ADMIN,
|
|
330
328
|
ORG_ROLE.ADMIN,
|
|
331
329
|
ORG_ROLE.OWNER
|
|
332
330
|
];
|
|
333
|
-
|
|
331
|
+
[
|
|
334
332
|
...Object.values(SUPER_ROLE),
|
|
335
333
|
...Object.values(EDITOR_ROLES)
|
|
336
334
|
];
|
|
@@ -345,17 +343,5 @@ var EXTENSION_CATEGORIES = [
|
|
|
345
343
|
"other"
|
|
346
344
|
];
|
|
347
345
|
var EXTENSION_VISIBILITIES = ["public", "protected"];
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
CAPABILITY_PERMISSION_MAP,
|
|
351
|
-
EXTENSION_CATEGORIES,
|
|
352
|
-
EXTENSION_VISIBILITIES,
|
|
353
|
-
PERMISSIONS,
|
|
354
|
-
UI_TAGS,
|
|
355
|
-
UI_TAG_ATTRIBUTES,
|
|
356
|
-
UI_TAG_ATTRIBUTE_VALUES,
|
|
357
|
-
UI_TAG_CATEGORIES,
|
|
358
|
-
UI_TAG_CHILDREN,
|
|
359
|
-
UI_TAG_DEFINITIONS,
|
|
360
|
-
tagToComponentName
|
|
361
|
-
};
|
|
346
|
+
|
|
347
|
+
export { ALLOWED_ICONS, CAPABILITY_PERMISSION_MAP, EXTENSION_CATEGORIES, EXTENSION_VISIBILITIES, PERMISSIONS, UI_TAGS, UI_TAG_ATTRIBUTES, UI_TAG_ATTRIBUTE_VALUES, UI_TAG_CATEGORIES, UI_TAG_CHILDREN, UI_TAG_DEFINITIONS, tagToComponentName };
|