test-entity-library-asm 3.8.2 → 3.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.
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { PartnerPlatformSection, PartnerPlatformSectionPermissionAssociate } from "..";
|
|
2
|
-
import { PartnerRole } from "./PartnerRole";
|
|
1
|
+
import { PartnerPlatformSection, PartnerPlatformSectionPermissionAssociate, PartnerRole } from "..";
|
|
3
2
|
export declare class PartnerPlatformSectionPermission {
|
|
4
3
|
id: number;
|
|
5
4
|
code: string;
|
|
@@ -12,7 +12,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.PartnerPlatformSectionPermission = void 0;
|
|
13
13
|
var typeorm_1 = require("typeorm");
|
|
14
14
|
var __1 = require("..");
|
|
15
|
-
var PartnerRole_1 = require("./PartnerRole");
|
|
16
15
|
var PartnerPlatformSectionPermission = /** @class */ (function () {
|
|
17
16
|
function PartnerPlatformSectionPermission() {
|
|
18
17
|
}
|
|
@@ -108,7 +107,7 @@ var PartnerPlatformSectionPermission = /** @class */ (function () {
|
|
|
108
107
|
__metadata("design:type", Array)
|
|
109
108
|
], PartnerPlatformSectionPermission.prototype, "associated_by", void 0);
|
|
110
109
|
__decorate([
|
|
111
|
-
(0, typeorm_1.ManyToMany)(function () { return
|
|
110
|
+
(0, typeorm_1.ManyToMany)(function () { return __1.PartnerRole; }, function (partnerRole) { return partnerRole.roles_permissions; }),
|
|
112
111
|
(0, typeorm_1.JoinTable)({
|
|
113
112
|
name: "partner_role_permission",
|
|
114
113
|
joinColumn: {
|
package/package.json
CHANGED