bruce-models 5.8.1 → 5.8.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/dist/bruce-models.es5.js +4 -2
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +4 -2
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/entity/entity-attribute.js +3 -1
- package/dist/lib/entity/entity-attribute.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/entity/entity-attribute.d.ts +9 -9
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -2322,6 +2322,8 @@
|
|
|
2322
2322
|
EType["UserGroup"] = "UserGroup";
|
|
2323
2323
|
// String Entity ID.
|
|
2324
2324
|
EType["Entity"] = "Entity";
|
|
2325
|
+
// Url attribute.
|
|
2326
|
+
EType["Url"] = "Url";
|
|
2325
2327
|
})(EType = EntityAttribute.EType || (EntityAttribute.EType = {}));
|
|
2326
2328
|
/**
|
|
2327
2329
|
* Describes url open behavior.
|
|
@@ -2330,7 +2332,7 @@
|
|
|
2330
2332
|
(function (EOpenBehavior) {
|
|
2331
2333
|
EOpenBehavior["POPUP"] = "POPUP";
|
|
2332
2334
|
EOpenBehavior["NEW_TAB"] = "NEW_TAB";
|
|
2333
|
-
})(EOpenBehavior || (EOpenBehavior = {}));
|
|
2335
|
+
})(EOpenBehavior = EntityAttribute.EOpenBehavior || (EntityAttribute.EOpenBehavior = {}));
|
|
2334
2336
|
/**
|
|
2335
2337
|
* Returns an attribute from a provided hierarchy of attributes.
|
|
2336
2338
|
* Eg: Use the path: ["Bruce", "ID"] to find the "ID" attribute.
|
|
@@ -15032,7 +15034,7 @@
|
|
|
15032
15034
|
})(exports.Scenario || (exports.Scenario = {}));
|
|
15033
15035
|
|
|
15034
15036
|
// This is updated with the package.json version on build.
|
|
15035
|
-
const VERSION = "5.8.
|
|
15037
|
+
const VERSION = "5.8.3";
|
|
15036
15038
|
|
|
15037
15039
|
exports.VERSION = VERSION;
|
|
15038
15040
|
exports.AbstractApi = AbstractApi;
|