bruce-models 7.1.8 → 7.1.12
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 +3 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +3 -3
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/bruce-models.js.map +1 -1
- package/dist/lib/entity/entity-type.js +2 -2
- package/dist/lib/entity/entity-type.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/entity/entity-type.d.ts +2 -2
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -3506,7 +3506,7 @@
|
|
|
3506
3506
|
EntityType.GetSourceDependencies = GetSourceDependencies;
|
|
3507
3507
|
/**
|
|
3508
3508
|
* Gets dictionary data schema dependency records for an Entity Type.
|
|
3509
|
-
* This calls: GET entityType/{entityType_id}/
|
|
3509
|
+
* This calls: GET v1/entityType/{entityType_id}/dictionaryDependencies
|
|
3510
3510
|
*/
|
|
3511
3511
|
function GetDictionaryDataSchemaDependencies(params) {
|
|
3512
3512
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3517,7 +3517,7 @@
|
|
|
3517
3517
|
if (!api) {
|
|
3518
3518
|
api = exports.ENVIRONMENT.Api().GetBruceApi();
|
|
3519
3519
|
}
|
|
3520
|
-
const res = yield api.GET(`entityType/${entityTypeId}/
|
|
3520
|
+
const res = yield api.GET(`v1/entityType/${entityTypeId}/dictionaryDependencies`, exports.Api.PrepReqParams(req));
|
|
3521
3521
|
return {
|
|
3522
3522
|
dictionaryDataSchemaDependencies: ParseDictionaryDataSchemaDependenciesResponse(res)
|
|
3523
3523
|
};
|
|
@@ -16926,7 +16926,7 @@
|
|
|
16926
16926
|
})(exports.ChangeSet || (exports.ChangeSet = {}));
|
|
16927
16927
|
|
|
16928
16928
|
// This is updated with the package.json version on build.
|
|
16929
|
-
const VERSION = "7.1.
|
|
16929
|
+
const VERSION = "7.1.12";
|
|
16930
16930
|
|
|
16931
16931
|
exports.VERSION = VERSION;
|
|
16932
16932
|
exports.AbstractApi = AbstractApi;
|