@nmshd/content 2.0.0-beta.8 → 2.0.0-beta.9
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/buildInformation.js +4 -4
- package/dist/requests/RequestItem.d.ts +4 -4
- package/dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem.d.ts +12 -0
- package/dist/requests/items/{createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.js → createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem.js} +8 -8
- package/dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem.js.map +1 -0
- package/dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeRequestItem.d.ts +13 -0
- package/dist/requests/items/{createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.js → createRelationshipAttribute/CreateRelationshipAttributeRequestItem.js} +8 -8
- package/dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeRequestItem.js.map +1 -0
- package/dist/requests/items/index.d.ts +2 -2
- package/dist/requests/items/index.js +2 -2
- package/dist/requests/items/index.js.map +1 -1
- package/dist/requests/response/AcceptResponseItem.d.ts +4 -4
- package/lib-web/nmshd.content.js +30 -30
- package/lib-web/nmshd.content.min.js +1 -1
- package/package.json +1 -1
- package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.d.ts +0 -12
- package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.js.map +0 -1
- package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.d.ts +0 -13
- package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.js.map +0 -1
package/dist/buildInformation.js
CHANGED
|
@@ -5,10 +5,10 @@ const ts_serval_1 = require("@js-soft/ts-serval");
|
|
|
5
5
|
const crypto_1 = require("@nmshd/crypto");
|
|
6
6
|
const transport_1 = require("@nmshd/transport");
|
|
7
7
|
exports.buildInformation = {
|
|
8
|
-
version: "2.0.0-beta.
|
|
9
|
-
build: "
|
|
10
|
-
date: "2022-08-
|
|
11
|
-
commit: "
|
|
8
|
+
version: "2.0.0-beta.9",
|
|
9
|
+
build: "86",
|
|
10
|
+
date: "2022-08-05T11:42:09+00:00",
|
|
11
|
+
commit: "57353dbaf28798bfdb98d66da15219e0258429b5",
|
|
12
12
|
dependencies: {"@js-soft/logging-abstractions":"^1.0.0","easy-tsnameof":"^3.0.6"},
|
|
13
13
|
libraries: {
|
|
14
14
|
serval: ts_serval_1.buildInformation,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ISerializable, Serializable } from "@js-soft/ts-serval";
|
|
2
2
|
import { ContentJSON } from "../ContentJSON";
|
|
3
3
|
import { ConsentRequestItem, ConsentRequestItemJSON, IConsentRequestItem, IProposeAttributeRequestItem, IReadAttributeRequestItem, ProposeAttributeRequestItem, ProposeAttributeRequestItemJSON, ReadAttributeRequestItem, ReadAttributeRequestItemJSON } from "./items";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateRelationshipAttributeRequestItem, CreateRelationshipAttributeRequestItemJSON, ICreateRelationshipAttributeRequestItem } from "./items/createRelationshipAttribute/CreateRelationshipAttributeRequestItem";
|
|
5
5
|
import { IShareAttributeRequestItem, ShareAttributeRequestItem, ShareAttributeRequestItemJSON } from "./items/shareAttribute/ShareAttributeRequestItem";
|
|
6
6
|
export interface RequestItemJSON extends ContentJSON {
|
|
7
7
|
/**
|
|
@@ -30,7 +30,7 @@ export interface RequestItemJSON extends ContentJSON {
|
|
|
30
30
|
*/
|
|
31
31
|
mustBeAccepted: boolean;
|
|
32
32
|
}
|
|
33
|
-
export declare type RequestItemJSONDerivations = RequestItemJSON |
|
|
33
|
+
export declare type RequestItemJSONDerivations = RequestItemJSON | CreateRelationshipAttributeRequestItemJSON | ShareAttributeRequestItemJSON | ProposeAttributeRequestItemJSON | ReadAttributeRequestItemJSON | ConsentRequestItemJSON;
|
|
34
34
|
export interface IRequestItem extends ISerializable {
|
|
35
35
|
/**
|
|
36
36
|
* The human-readable title of this item.
|
|
@@ -58,7 +58,7 @@ export interface IRequestItem extends ISerializable {
|
|
|
58
58
|
*/
|
|
59
59
|
mustBeAccepted: boolean;
|
|
60
60
|
}
|
|
61
|
-
export declare type IRequestItemDerivations = IRequestItem |
|
|
61
|
+
export declare type IRequestItemDerivations = IRequestItem | ICreateRelationshipAttributeRequestItem | IShareAttributeRequestItem | IProposeAttributeRequestItem | IReadAttributeRequestItem | IConsentRequestItem;
|
|
62
62
|
export declare abstract class RequestItem extends Serializable {
|
|
63
63
|
title?: string;
|
|
64
64
|
description?: string;
|
|
@@ -66,4 +66,4 @@ export declare abstract class RequestItem extends Serializable {
|
|
|
66
66
|
metadata?: object;
|
|
67
67
|
toJSON(): RequestItemJSON;
|
|
68
68
|
}
|
|
69
|
-
export declare type RequestItemDerivations = RequestItem |
|
|
69
|
+
export declare type RequestItemDerivations = RequestItem | CreateRelationshipAttributeRequestItem | ShareAttributeRequestItem | ProposeAttributeRequestItem | ReadAttributeRequestItem | ConsentRequestItem;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { CoreId, ICoreId } from "@nmshd/transport";
|
|
2
|
+
import { AcceptResponseItem, AcceptResponseItemJSON, IAcceptResponseItem } from "../../response";
|
|
3
|
+
export interface CreateRelationshipAttributeAcceptResponseItemJSON extends AcceptResponseItemJSON {
|
|
4
|
+
attributeId: string;
|
|
5
|
+
}
|
|
6
|
+
export interface ICreateRelationshipAttributeAcceptResponseItem extends IAcceptResponseItem {
|
|
7
|
+
attributeId: ICoreId;
|
|
8
|
+
}
|
|
9
|
+
export declare class CreateRelationshipAttributeAcceptResponseItem extends AcceptResponseItem implements ICreateRelationshipAttributeAcceptResponseItem {
|
|
10
|
+
attributeId: CoreId;
|
|
11
|
+
static from(value: ICreateRelationshipAttributeAcceptResponseItem | CreateRelationshipAttributeAcceptResponseItemJSON): CreateRelationshipAttributeAcceptResponseItem;
|
|
12
|
+
}
|
|
@@ -9,11 +9,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
12
|
+
exports.CreateRelationshipAttributeAcceptResponseItem = void 0;
|
|
13
13
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
14
14
|
const transport_1 = require("@nmshd/transport");
|
|
15
15
|
const response_1 = require("../../response");
|
|
16
|
-
let
|
|
16
|
+
let CreateRelationshipAttributeAcceptResponseItem = class CreateRelationshipAttributeAcceptResponseItem extends response_1.AcceptResponseItem {
|
|
17
17
|
static from(value) {
|
|
18
18
|
return this.fromAny(value);
|
|
19
19
|
}
|
|
@@ -22,9 +22,9 @@ __decorate([
|
|
|
22
22
|
(0, ts_serval_1.serialize)(),
|
|
23
23
|
(0, ts_serval_1.validate)(),
|
|
24
24
|
__metadata("design:type", transport_1.CoreId)
|
|
25
|
-
],
|
|
26
|
-
|
|
27
|
-
(0, ts_serval_1.type)("
|
|
28
|
-
],
|
|
29
|
-
exports.
|
|
30
|
-
//# sourceMappingURL=
|
|
25
|
+
], CreateRelationshipAttributeAcceptResponseItem.prototype, "attributeId", void 0);
|
|
26
|
+
CreateRelationshipAttributeAcceptResponseItem = __decorate([
|
|
27
|
+
(0, ts_serval_1.type)("CreateRelationshipAttributeAcceptResponseItem")
|
|
28
|
+
], CreateRelationshipAttributeAcceptResponseItem);
|
|
29
|
+
exports.CreateRelationshipAttributeAcceptResponseItem = CreateRelationshipAttributeAcceptResponseItem;
|
|
30
|
+
//# sourceMappingURL=CreateRelationshipAttributeAcceptResponseItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateRelationshipAttributeAcceptResponseItem.js","sourceRoot":"","sources":["../../../../src/requests/items/createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAA8D;AAC9D,gDAAkD;AAClD,6CAAgG;AAWhG,IAAa,6CAA6C,GAA1D,MAAa,6CACT,SAAQ,6BAAkB;IAOnB,MAAM,CAAU,IAAI,CACvB,KAAyG;QAEzG,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAA;AAPG;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,GAAE;8BACS,kBAAM;kFAAA;AANjB,6CAA6C;IADzD,IAAA,gBAAI,EAAC,+CAA+C,CAAC;GACzC,6CAA6C,CAazD;AAbY,sGAA6C"}
|
package/dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeRequestItem.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { RequestItemJSON } from "../..";
|
|
2
|
+
import { IRelationshipAttribute, RelationshipAttribute, RelationshipAttributeJSON } from "../../../attributes";
|
|
3
|
+
import { IRequestItem, RequestItem } from "../../RequestItem";
|
|
4
|
+
export interface CreateRelationshipAttributeRequestItemJSON extends RequestItemJSON {
|
|
5
|
+
attribute: RelationshipAttributeJSON;
|
|
6
|
+
}
|
|
7
|
+
export interface ICreateRelationshipAttributeRequestItem extends IRequestItem {
|
|
8
|
+
attribute: IRelationshipAttribute;
|
|
9
|
+
}
|
|
10
|
+
export declare class CreateRelationshipAttributeRequestItem extends RequestItem implements ICreateRelationshipAttributeRequestItem {
|
|
11
|
+
attribute: RelationshipAttribute;
|
|
12
|
+
static from(value: ICreateRelationshipAttributeRequestItem | CreateRelationshipAttributeRequestItemJSON): CreateRelationshipAttributeRequestItem;
|
|
13
|
+
}
|
|
@@ -9,11 +9,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
12
|
+
exports.CreateRelationshipAttributeRequestItem = void 0;
|
|
13
13
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
14
14
|
const attributes_1 = require("../../../attributes");
|
|
15
15
|
const RequestItem_1 = require("../../RequestItem");
|
|
16
|
-
let
|
|
16
|
+
let CreateRelationshipAttributeRequestItem = class CreateRelationshipAttributeRequestItem extends RequestItem_1.RequestItem {
|
|
17
17
|
static from(value) {
|
|
18
18
|
return this.fromAny(value);
|
|
19
19
|
}
|
|
@@ -21,9 +21,9 @@ let CreateOwnRelationshipAttributeRequestItem = class CreateOwnRelationshipAttri
|
|
|
21
21
|
__decorate([
|
|
22
22
|
(0, ts_serval_1.validate)(),
|
|
23
23
|
__metadata("design:type", attributes_1.RelationshipAttribute)
|
|
24
|
-
],
|
|
25
|
-
|
|
26
|
-
(0, ts_serval_1.type)("
|
|
27
|
-
],
|
|
28
|
-
exports.
|
|
29
|
-
//# sourceMappingURL=
|
|
24
|
+
], CreateRelationshipAttributeRequestItem.prototype, "attribute", void 0);
|
|
25
|
+
CreateRelationshipAttributeRequestItem = __decorate([
|
|
26
|
+
(0, ts_serval_1.type)("CreateRelationshipAttributeRequestItem")
|
|
27
|
+
], CreateRelationshipAttributeRequestItem);
|
|
28
|
+
exports.CreateRelationshipAttributeRequestItem = CreateRelationshipAttributeRequestItem;
|
|
29
|
+
//# sourceMappingURL=CreateRelationshipAttributeRequestItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateRelationshipAttributeRequestItem.js","sourceRoot":"","sources":["../../../../src/requests/items/createRelationshipAttribute/CreateRelationshipAttributeRequestItem.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAmD;AAEnD,oDAA8G;AAC9G,mDAA6D;AAW7D,IAAa,sCAAsC,GAAnD,MAAa,sCACT,SAAQ,yBAAW;IAMZ,MAAM,CAAC,IAAI,CACd,KAA2F;QAE3F,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAA;AAPG;IADC,IAAA,oBAAQ,GAAE;8BACO,kCAAqB;yEAAA;AAL9B,sCAAsC;IADlD,IAAA,gBAAI,EAAC,wCAAwC,CAAC;GAClC,sCAAsC,CAYlD;AAZY,wFAAsC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from "./consent/ConsentRequestItem";
|
|
2
|
-
export * from "./
|
|
3
|
-
export * from "./
|
|
2
|
+
export * from "./createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem";
|
|
3
|
+
export * from "./createRelationshipAttribute/CreateRelationshipAttributeRequestItem";
|
|
4
4
|
export * from "./proposeAttribute/ProposeAttributeAcceptResponseItem";
|
|
5
5
|
export * from "./proposeAttribute/ProposeAttributeRequestItem";
|
|
6
6
|
export * from "./readAttribute/ReadAttributeAcceptResponseItem";
|
|
@@ -15,8 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./consent/ConsentRequestItem"), exports);
|
|
18
|
-
__exportStar(require("./
|
|
19
|
-
__exportStar(require("./
|
|
18
|
+
__exportStar(require("./createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem"), exports);
|
|
19
|
+
__exportStar(require("./createRelationshipAttribute/CreateRelationshipAttributeRequestItem"), exports);
|
|
20
20
|
__exportStar(require("./proposeAttribute/ProposeAttributeAcceptResponseItem"), exports);
|
|
21
21
|
__exportStar(require("./proposeAttribute/ProposeAttributeRequestItem"), exports);
|
|
22
22
|
__exportStar(require("./readAttribute/ReadAttributeAcceptResponseItem"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/requests/items/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA4C;AAC5C,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/requests/items/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+DAA4C;AAC5C,8GAA2F;AAC3F,uGAAoF;AACpF,wFAAqE;AACrE,iFAA8D;AAC9D,kFAA+D;AAC/D,2EAAwD;AACxD,oFAAiE;AACjE,6EAA0D"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CreateRelationshipAttributeAcceptResponseItem, CreateRelationshipAttributeAcceptResponseItemJSON, ICreateRelationshipAttributeAcceptResponseItem, IProposeAttributeAcceptResponseItem, IReadAttributeAcceptResponseItem, IShareAttributeAcceptResponseItem, ProposeAttributeAcceptResponseItem, ProposeAttributeAcceptResponseItemJSON, ReadAttributeAcceptResponseItem, ReadAttributeAcceptResponseItemJSON, ShareAttributeAcceptResponseItem, ShareAttributeAcceptResponseItemJSON } from "../items";
|
|
2
2
|
import { IResponseItem, ResponseItem, ResponseItemJSON } from "./ResponseItem";
|
|
3
3
|
import { ResponseItemResult } from "./ResponseItemResult";
|
|
4
4
|
export interface AcceptResponseItemJSON extends ResponseItemJSON {
|
|
5
5
|
result: ResponseItemResult.Accepted;
|
|
6
6
|
}
|
|
7
|
-
export declare type AcceptResponseItemJSONDerivations = AcceptResponseItemJSON |
|
|
7
|
+
export declare type AcceptResponseItemJSONDerivations = AcceptResponseItemJSON | CreateRelationshipAttributeAcceptResponseItemJSON | ShareAttributeAcceptResponseItemJSON | ProposeAttributeAcceptResponseItemJSON | ReadAttributeAcceptResponseItemJSON;
|
|
8
8
|
export interface IAcceptResponseItem extends IResponseItem {
|
|
9
9
|
result: ResponseItemResult.Accepted;
|
|
10
10
|
}
|
|
11
|
-
export declare type IAcceptResponseItemDerivations = IAcceptResponseItem |
|
|
11
|
+
export declare type IAcceptResponseItemDerivations = IAcceptResponseItem | ICreateRelationshipAttributeAcceptResponseItem | IShareAttributeAcceptResponseItem | IProposeAttributeAcceptResponseItem | IReadAttributeAcceptResponseItem;
|
|
12
12
|
export declare class AcceptResponseItem extends ResponseItem implements IAcceptResponseItem {
|
|
13
13
|
result: ResponseItemResult.Accepted;
|
|
14
14
|
static from(value: IAcceptResponseItem | AcceptResponseItemJSON): AcceptResponseItem;
|
|
15
15
|
toJSON(): AcceptResponseItemJSON;
|
|
16
16
|
}
|
|
17
|
-
export declare type AcceptResponseItemDerivations = AcceptResponseItem |
|
|
17
|
+
export declare type AcceptResponseItemDerivations = AcceptResponseItem | CreateRelationshipAttributeAcceptResponseItem | ShareAttributeAcceptResponseItem | ProposeAttributeAcceptResponseItem | ReadAttributeAcceptResponseItem;
|
package/lib-web/nmshd.content.js
CHANGED
|
@@ -5487,10 +5487,10 @@ const ts_serval_1 = __webpack_require__(/*! @js-soft/ts-serval */ "@js-soft/ts-s
|
|
|
5487
5487
|
const crypto_1 = __webpack_require__(/*! @nmshd/crypto */ "@nmshd/crypto");
|
|
5488
5488
|
const transport_1 = __webpack_require__(/*! @nmshd/transport */ "@nmshd/transport");
|
|
5489
5489
|
exports.buildInformation = {
|
|
5490
|
-
version: "2.0.0-beta.
|
|
5491
|
-
build: "
|
|
5492
|
-
date: "2022-08-
|
|
5493
|
-
commit: "
|
|
5490
|
+
version: "2.0.0-beta.9",
|
|
5491
|
+
build: "86",
|
|
5492
|
+
date: "2022-08-05T11:42:09+00:00",
|
|
5493
|
+
commit: "57353dbaf28798bfdb98d66da15219e0258429b5",
|
|
5494
5494
|
dependencies: {"@js-soft/logging-abstractions":"^1.0.0","easy-tsnameof":"^3.0.6"},
|
|
5495
5495
|
libraries: {
|
|
5496
5496
|
serval: ts_serval_1.buildInformation,
|
|
@@ -6477,10 +6477,10 @@ exports.ConsentRequestItem = ConsentRequestItem;
|
|
|
6477
6477
|
|
|
6478
6478
|
/***/ }),
|
|
6479
6479
|
|
|
6480
|
-
/***/ "./dist/requests/items/
|
|
6481
|
-
|
|
6482
|
-
!*** ./dist/requests/items/
|
|
6483
|
-
|
|
6480
|
+
/***/ "./dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem.js":
|
|
6481
|
+
/*!**********************************************************************************************************!*\
|
|
6482
|
+
!*** ./dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem.js ***!
|
|
6483
|
+
\**********************************************************************************************************/
|
|
6484
6484
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
6485
6485
|
|
|
6486
6486
|
|
|
@@ -6494,11 +6494,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
6494
6494
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
6495
6495
|
};
|
|
6496
6496
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
6497
|
-
exports.
|
|
6497
|
+
exports.CreateRelationshipAttributeAcceptResponseItem = void 0;
|
|
6498
6498
|
const ts_serval_1 = __webpack_require__(/*! @js-soft/ts-serval */ "@js-soft/ts-serval");
|
|
6499
6499
|
const transport_1 = __webpack_require__(/*! @nmshd/transport */ "@nmshd/transport");
|
|
6500
6500
|
const response_1 = __webpack_require__(/*! ../../response */ "./dist/requests/response/index.js");
|
|
6501
|
-
let
|
|
6501
|
+
let CreateRelationshipAttributeAcceptResponseItem = class CreateRelationshipAttributeAcceptResponseItem extends response_1.AcceptResponseItem {
|
|
6502
6502
|
static from(value) {
|
|
6503
6503
|
return this.fromAny(value);
|
|
6504
6504
|
}
|
|
@@ -6507,19 +6507,19 @@ __decorate([
|
|
|
6507
6507
|
(0, ts_serval_1.serialize)(),
|
|
6508
6508
|
(0, ts_serval_1.validate)(),
|
|
6509
6509
|
__metadata("design:type", transport_1.CoreId)
|
|
6510
|
-
],
|
|
6511
|
-
|
|
6512
|
-
(0, ts_serval_1.type)("
|
|
6513
|
-
],
|
|
6514
|
-
exports.
|
|
6515
|
-
//# sourceMappingURL=
|
|
6510
|
+
], CreateRelationshipAttributeAcceptResponseItem.prototype, "attributeId", void 0);
|
|
6511
|
+
CreateRelationshipAttributeAcceptResponseItem = __decorate([
|
|
6512
|
+
(0, ts_serval_1.type)("CreateRelationshipAttributeAcceptResponseItem")
|
|
6513
|
+
], CreateRelationshipAttributeAcceptResponseItem);
|
|
6514
|
+
exports.CreateRelationshipAttributeAcceptResponseItem = CreateRelationshipAttributeAcceptResponseItem;
|
|
6515
|
+
//# sourceMappingURL=CreateRelationshipAttributeAcceptResponseItem.js.map
|
|
6516
6516
|
|
|
6517
6517
|
/***/ }),
|
|
6518
6518
|
|
|
6519
|
-
/***/ "./dist/requests/items/
|
|
6520
|
-
|
|
6521
|
-
!*** ./dist/requests/items/
|
|
6522
|
-
|
|
6519
|
+
/***/ "./dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeRequestItem.js":
|
|
6520
|
+
/*!***************************************************************************************************!*\
|
|
6521
|
+
!*** ./dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeRequestItem.js ***!
|
|
6522
|
+
\***************************************************************************************************/
|
|
6523
6523
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
6524
6524
|
|
|
6525
6525
|
|
|
@@ -6533,11 +6533,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
6533
6533
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
6534
6534
|
};
|
|
6535
6535
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
6536
|
-
exports.
|
|
6536
|
+
exports.CreateRelationshipAttributeRequestItem = void 0;
|
|
6537
6537
|
const ts_serval_1 = __webpack_require__(/*! @js-soft/ts-serval */ "@js-soft/ts-serval");
|
|
6538
6538
|
const attributes_1 = __webpack_require__(/*! ../../../attributes */ "./dist/attributes/index.js");
|
|
6539
6539
|
const RequestItem_1 = __webpack_require__(/*! ../../RequestItem */ "./dist/requests/RequestItem.js");
|
|
6540
|
-
let
|
|
6540
|
+
let CreateRelationshipAttributeRequestItem = class CreateRelationshipAttributeRequestItem extends RequestItem_1.RequestItem {
|
|
6541
6541
|
static from(value) {
|
|
6542
6542
|
return this.fromAny(value);
|
|
6543
6543
|
}
|
|
@@ -6545,12 +6545,12 @@ let CreateOwnRelationshipAttributeRequestItem = class CreateOwnRelationshipAttri
|
|
|
6545
6545
|
__decorate([
|
|
6546
6546
|
(0, ts_serval_1.validate)(),
|
|
6547
6547
|
__metadata("design:type", attributes_1.RelationshipAttribute)
|
|
6548
|
-
],
|
|
6549
|
-
|
|
6550
|
-
(0, ts_serval_1.type)("
|
|
6551
|
-
],
|
|
6552
|
-
exports.
|
|
6553
|
-
//# sourceMappingURL=
|
|
6548
|
+
], CreateRelationshipAttributeRequestItem.prototype, "attribute", void 0);
|
|
6549
|
+
CreateRelationshipAttributeRequestItem = __decorate([
|
|
6550
|
+
(0, ts_serval_1.type)("CreateRelationshipAttributeRequestItem")
|
|
6551
|
+
], CreateRelationshipAttributeRequestItem);
|
|
6552
|
+
exports.CreateRelationshipAttributeRequestItem = CreateRelationshipAttributeRequestItem;
|
|
6553
|
+
//# sourceMappingURL=CreateRelationshipAttributeRequestItem.js.map
|
|
6554
6554
|
|
|
6555
6555
|
/***/ }),
|
|
6556
6556
|
|
|
@@ -6577,8 +6577,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
6577
6577
|
};
|
|
6578
6578
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
6579
6579
|
__exportStar(__webpack_require__(/*! ./consent/ConsentRequestItem */ "./dist/requests/items/consent/ConsentRequestItem.js"), exports);
|
|
6580
|
-
__exportStar(__webpack_require__(/*! ./
|
|
6581
|
-
__exportStar(__webpack_require__(/*! ./
|
|
6580
|
+
__exportStar(__webpack_require__(/*! ./createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem */ "./dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeAcceptResponseItem.js"), exports);
|
|
6581
|
+
__exportStar(__webpack_require__(/*! ./createRelationshipAttribute/CreateRelationshipAttributeRequestItem */ "./dist/requests/items/createRelationshipAttribute/CreateRelationshipAttributeRequestItem.js"), exports);
|
|
6582
6582
|
__exportStar(__webpack_require__(/*! ./proposeAttribute/ProposeAttributeAcceptResponseItem */ "./dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.js"), exports);
|
|
6583
6583
|
__exportStar(__webpack_require__(/*! ./proposeAttribute/ProposeAttributeRequestItem */ "./dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.js"), exports);
|
|
6584
6584
|
__exportStar(__webpack_require__(/*! ./readAttribute/ReadAttributeAcceptResponseItem */ "./dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.js"), exports);
|