@nmshd/content 2.0.0-beta.3 → 2.0.0-beta.6
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 +6 -4
- package/dist/requests/RequestItem.js.map +1 -1
- package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.d.ts +12 -0
- package/dist/requests/items/{createAttribute/CreateAttributeRequestItem.js → createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.js} +10 -16
- package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.js.map +1 -0
- package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.d.ts +13 -0
- package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.js +29 -0
- package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.js.map +1 -0
- package/dist/requests/items/index.d.ts +4 -3
- package/dist/requests/items/index.js +4 -3
- package/dist/requests/items/index.js.map +1 -1
- package/dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeAcceptResponseItem.d.ts +12 -0
- package/dist/requests/items/{createAttribute/CreateAttributeAcceptResponseItem.js → shareOwnIdentityAttribute/ShareOwnIdentityAttributeAcceptResponseItem.js} +8 -8
- package/dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeAcceptResponseItem.js.map +1 -0
- package/dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem.d.ts +17 -0
- package/dist/requests/items/{shareAttribute/ShareAttributeRequestItem.js → shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem.js} +12 -11
- package/dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem.js.map +1 -0
- package/dist/requests/response/AcceptResponseItem.d.ts +4 -4
- package/dist/requests/response/AcceptResponseItem.js.map +1 -1
- package/lib-web/nmshd.content.js +88 -54
- package/lib-web/nmshd.content.min.js +1 -1
- package/package.json +4 -4
- package/dist/requests/items/createAttribute/CreateAttributeAcceptResponseItem.d.ts +0 -12
- package/dist/requests/items/createAttribute/CreateAttributeAcceptResponseItem.js.map +0 -1
- package/dist/requests/items/createAttribute/CreateAttributeRequestItem.d.ts +0 -17
- package/dist/requests/items/createAttribute/CreateAttributeRequestItem.js.map +0 -1
- package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.d.ts +0 -15
- package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.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.6",
|
|
9
|
+
build: "83",
|
|
10
|
+
date: "2022-08-05T05:36:33+00:00",
|
|
11
|
+
commit: "affabd915b7096e87557486d4a73a66ee428b8f3",
|
|
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,6 +1,8 @@
|
|
|
1
1
|
import { ISerializable, Serializable } from "@js-soft/ts-serval";
|
|
2
2
|
import { ContentJSON } from "../ContentJSON";
|
|
3
|
-
import { ConsentRequestItem, ConsentRequestItemJSON,
|
|
3
|
+
import { ConsentRequestItem, ConsentRequestItemJSON, IConsentRequestItem, IProposeAttributeRequestItem, IReadAttributeRequestItem, ProposeAttributeRequestItem, ProposeAttributeRequestItemJSON, ReadAttributeRequestItem, ReadAttributeRequestItemJSON } from "./items";
|
|
4
|
+
import { CreateOwnRelationshipAttributeRequestItem, CreateOwnRelationshipAttributeRequestItemJSON, ICreateOwnRelationshipAttributeRequestItem } from "./items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem";
|
|
5
|
+
import { IShareOwnIdentityAttributeRequestItem, ShareOwnIdentityAttributeRequestItem, ShareOwnIdentityAttributeRequestItemJSON } from "./items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem";
|
|
4
6
|
export interface RequestItemJSON extends ContentJSON {
|
|
5
7
|
/**
|
|
6
8
|
* The human-readable title of this item.
|
|
@@ -28,7 +30,7 @@ export interface RequestItemJSON extends ContentJSON {
|
|
|
28
30
|
*/
|
|
29
31
|
mustBeAccepted: boolean;
|
|
30
32
|
}
|
|
31
|
-
export declare type RequestItemJSONDerivations = RequestItemJSON |
|
|
33
|
+
export declare type RequestItemJSONDerivations = RequestItemJSON | CreateOwnRelationshipAttributeRequestItemJSON | ShareOwnIdentityAttributeRequestItemJSON | ProposeAttributeRequestItemJSON | ReadAttributeRequestItemJSON | ConsentRequestItemJSON;
|
|
32
34
|
export interface IRequestItem extends ISerializable {
|
|
33
35
|
/**
|
|
34
36
|
* The human-readable title of this item.
|
|
@@ -56,7 +58,7 @@ export interface IRequestItem extends ISerializable {
|
|
|
56
58
|
*/
|
|
57
59
|
mustBeAccepted: boolean;
|
|
58
60
|
}
|
|
59
|
-
export declare type IRequestItemDerivations = IRequestItem |
|
|
61
|
+
export declare type IRequestItemDerivations = IRequestItem | ICreateOwnRelationshipAttributeRequestItem | IShareOwnIdentityAttributeRequestItem | IProposeAttributeRequestItem | IReadAttributeRequestItem | IConsentRequestItem;
|
|
60
62
|
export declare abstract class RequestItem extends Serializable {
|
|
61
63
|
title?: string;
|
|
62
64
|
description?: string;
|
|
@@ -64,4 +66,4 @@ export declare abstract class RequestItem extends Serializable {
|
|
|
64
66
|
metadata?: object;
|
|
65
67
|
toJSON(): RequestItemJSON;
|
|
66
68
|
}
|
|
67
|
-
export declare type RequestItemDerivations = RequestItem |
|
|
69
|
+
export declare type RequestItemDerivations = RequestItem | CreateOwnRelationshipAttributeRequestItem | ShareOwnIdentityAttributeRequestItem | ProposeAttributeRequestItem | ReadAttributeRequestItem | ConsentRequestItem;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RequestItem.js","sourceRoot":"","sources":["../../src/requests/RequestItem.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAqF;
|
|
1
|
+
{"version":3,"file":"RequestItem.js","sourceRoot":"","sources":["../../src/requests/RequestItem.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAqF;AAsGrF,MAAsB,WAAY,SAAQ,wBAAY;IAiBlC,MAAM;QAClB,OAAO,KAAK,CAAC,MAAM,EAAqB,CAAA;IAC5C,CAAC;CACJ;AAjBG;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CACR;AAIrB;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACF;AAI3B;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,GAAE;;mDACmB;AAI9B;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACL;AAf5B,kCAoBC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { CoreId, ICoreId } from "@nmshd/transport";
|
|
2
|
+
import { AcceptResponseItem, AcceptResponseItemJSON, IAcceptResponseItem } from "../../response";
|
|
3
|
+
export interface CreateOwnRelationshipAttributeAcceptResponseItemJSON extends AcceptResponseItemJSON {
|
|
4
|
+
attributeId: string;
|
|
5
|
+
}
|
|
6
|
+
export interface ICreateOwnRelationshipAttributeAcceptResponseItem extends IAcceptResponseItem {
|
|
7
|
+
attributeId: ICoreId;
|
|
8
|
+
}
|
|
9
|
+
export declare class CreateOwnRelationshipAttributeAcceptResponseItem extends AcceptResponseItem implements ICreateOwnRelationshipAttributeAcceptResponseItem {
|
|
10
|
+
attributeId: CoreId;
|
|
11
|
+
static from(value: ICreateOwnRelationshipAttributeAcceptResponseItem | CreateOwnRelationshipAttributeAcceptResponseItemJSON): CreateOwnRelationshipAttributeAcceptResponseItem;
|
|
12
|
+
}
|
|
@@ -9,28 +9,22 @@ 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.CreateOwnRelationshipAttributeAcceptResponseItem = void 0;
|
|
13
13
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
14
14
|
const transport_1 = require("@nmshd/transport");
|
|
15
|
-
const
|
|
16
|
-
|
|
17
|
-
let CreateAttributeRequestItem = class CreateAttributeRequestItem extends RequestItem_1.RequestItem {
|
|
15
|
+
const response_1 = require("../../response");
|
|
16
|
+
let CreateOwnRelationshipAttributeAcceptResponseItem = class CreateOwnRelationshipAttributeAcceptResponseItem extends response_1.AcceptResponseItem {
|
|
18
17
|
static from(value) {
|
|
19
18
|
return this.fromAny(value);
|
|
20
19
|
}
|
|
21
20
|
};
|
|
22
|
-
__decorate([
|
|
23
|
-
(0, ts_serval_1.serialize)({ unionTypes: [attributes_1.IdentityAttribute, attributes_1.RelationshipAttribute] }),
|
|
24
|
-
(0, ts_serval_1.validate)(),
|
|
25
|
-
__metadata("design:type", Object)
|
|
26
|
-
], CreateAttributeRequestItem.prototype, "attribute", void 0);
|
|
27
21
|
__decorate([
|
|
28
22
|
(0, ts_serval_1.serialize)(),
|
|
29
|
-
(0, ts_serval_1.validate)(
|
|
23
|
+
(0, ts_serval_1.validate)(),
|
|
30
24
|
__metadata("design:type", transport_1.CoreId)
|
|
31
|
-
],
|
|
32
|
-
|
|
33
|
-
(0, ts_serval_1.type)("
|
|
34
|
-
],
|
|
35
|
-
exports.
|
|
36
|
-
//# sourceMappingURL=
|
|
25
|
+
], CreateOwnRelationshipAttributeAcceptResponseItem.prototype, "attributeId", void 0);
|
|
26
|
+
CreateOwnRelationshipAttributeAcceptResponseItem = __decorate([
|
|
27
|
+
(0, ts_serval_1.type)("CreateOwnRelationshipAttributeAcceptResponseItem")
|
|
28
|
+
], CreateOwnRelationshipAttributeAcceptResponseItem);
|
|
29
|
+
exports.CreateOwnRelationshipAttributeAcceptResponseItem = CreateOwnRelationshipAttributeAcceptResponseItem;
|
|
30
|
+
//# sourceMappingURL=CreateOwnRelationshipAttributeAcceptResponseItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateOwnRelationshipAttributeAcceptResponseItem.js","sourceRoot":"","sources":["../../../../src/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAA8D;AAC9D,gDAAkD;AAClD,6CAAgG;AAWhG,IAAa,gDAAgD,GAA7D,MAAa,gDACT,SAAQ,6BAAkB;IAOnB,MAAM,CAAU,IAAI,CACvB,KAA+G;QAE/G,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAA;AAPG;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,GAAE;8BACS,kBAAM;qFAAA;AANjB,gDAAgD;IAD5D,IAAA,gBAAI,EAAC,kDAAkD,CAAC;GAC5C,gDAAgD,CAa5D;AAbY,4GAAgD"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { RequestItemJSON } from "../..";
|
|
2
|
+
import { IRelationshipAttribute, RelationshipAttribute, RelationshipAttributeJSON } from "../../../attributes";
|
|
3
|
+
import { IRequestItem, RequestItem } from "../../RequestItem";
|
|
4
|
+
export interface CreateOwnRelationshipAttributeRequestItemJSON extends RequestItemJSON {
|
|
5
|
+
attribute: RelationshipAttributeJSON;
|
|
6
|
+
}
|
|
7
|
+
export interface ICreateOwnRelationshipAttributeRequestItem extends IRequestItem {
|
|
8
|
+
attribute: IRelationshipAttribute;
|
|
9
|
+
}
|
|
10
|
+
export declare class CreateOwnRelationshipAttributeRequestItem extends RequestItem implements ICreateOwnRelationshipAttributeRequestItem {
|
|
11
|
+
attribute: RelationshipAttribute;
|
|
12
|
+
static from(value: ICreateOwnRelationshipAttributeRequestItem | CreateOwnRelationshipAttributeRequestItemJSON): CreateOwnRelationshipAttributeRequestItem;
|
|
13
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CreateOwnRelationshipAttributeRequestItem = void 0;
|
|
13
|
+
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
14
|
+
const attributes_1 = require("../../../attributes");
|
|
15
|
+
const RequestItem_1 = require("../../RequestItem");
|
|
16
|
+
let CreateOwnRelationshipAttributeRequestItem = class CreateOwnRelationshipAttributeRequestItem extends RequestItem_1.RequestItem {
|
|
17
|
+
static from(value) {
|
|
18
|
+
return this.fromAny(value);
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, ts_serval_1.validate)(),
|
|
23
|
+
__metadata("design:type", attributes_1.RelationshipAttribute)
|
|
24
|
+
], CreateOwnRelationshipAttributeRequestItem.prototype, "attribute", void 0);
|
|
25
|
+
CreateOwnRelationshipAttributeRequestItem = __decorate([
|
|
26
|
+
(0, ts_serval_1.type)("CreateOwnRelationshipAttributeRequestItem")
|
|
27
|
+
], CreateOwnRelationshipAttributeRequestItem);
|
|
28
|
+
exports.CreateOwnRelationshipAttributeRequestItem = CreateOwnRelationshipAttributeRequestItem;
|
|
29
|
+
//# sourceMappingURL=CreateOwnRelationshipAttributeRequestItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreateOwnRelationshipAttributeRequestItem.js","sourceRoot":"","sources":["../../../../src/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAAmD;AAEnD,oDAA8G;AAC9G,mDAA6D;AAW7D,IAAa,yCAAyC,GAAtD,MAAa,yCACT,SAAQ,yBAAW;IAMZ,MAAM,CAAC,IAAI,CACd,KAAiG;QAEjG,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAA;AAPG;IADC,IAAA,oBAAQ,GAAE;8BACO,kCAAqB;4EAAA;AAL9B,yCAAyC;IADrD,IAAA,gBAAI,EAAC,2CAA2C,CAAC;GACrC,yCAAyC,CAYrD;AAZY,8FAAyC"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export * from "./consent/ConsentRequestItem";
|
|
2
|
-
export * from "./
|
|
3
|
-
export * from "./
|
|
2
|
+
export * from "./createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem";
|
|
3
|
+
export * from "./createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem";
|
|
4
4
|
export * from "./proposeAttribute/ProposeAttributeAcceptResponseItem";
|
|
5
5
|
export * from "./proposeAttribute/ProposeAttributeRequestItem";
|
|
6
6
|
export * from "./readAttribute/ReadAttributeAcceptResponseItem";
|
|
7
7
|
export * from "./readAttribute/ReadAttributeRequestItem";
|
|
8
|
-
export * from "./
|
|
8
|
+
export * from "./shareOwnIdentityAttribute/ShareOwnIdentityAttributeAcceptResponseItem";
|
|
9
|
+
export * from "./shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem";
|
|
@@ -15,11 +15,12 @@ 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("./createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem"), exports);
|
|
19
|
+
__exportStar(require("./createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem"), exports);
|
|
20
20
|
__exportStar(require("./proposeAttribute/ProposeAttributeAcceptResponseItem"), exports);
|
|
21
21
|
__exportStar(require("./proposeAttribute/ProposeAttributeRequestItem"), exports);
|
|
22
22
|
__exportStar(require("./readAttribute/ReadAttributeAcceptResponseItem"), exports);
|
|
23
23
|
__exportStar(require("./readAttribute/ReadAttributeRequestItem"), exports);
|
|
24
|
-
__exportStar(require("./
|
|
24
|
+
__exportStar(require("./shareOwnIdentityAttribute/ShareOwnIdentityAttributeAcceptResponseItem"), exports);
|
|
25
|
+
__exportStar(require("./shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem"), exports);
|
|
25
26
|
//# sourceMappingURL=index.js.map
|
|
@@ -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,oHAAiG;AACjG,6GAA0F;AAC1F,wFAAqE;AACrE,iFAA8D;AAC9D,kFAA+D;AAC/D,2EAAwD;AACxD,0GAAuF;AACvF,mGAAgF"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { CoreId, ICoreId } from "@nmshd/transport";
|
|
2
|
+
import { AcceptResponseItem, AcceptResponseItemJSON, IAcceptResponseItem } from "../../response";
|
|
3
|
+
export interface ShareOwnIdentityAttributeAcceptResponseItemJSON extends AcceptResponseItemJSON {
|
|
4
|
+
attributeId: string;
|
|
5
|
+
}
|
|
6
|
+
export interface IShareOwnIdentityAttributeAcceptResponseItem extends IAcceptResponseItem {
|
|
7
|
+
attributeId: ICoreId;
|
|
8
|
+
}
|
|
9
|
+
export declare class ShareOwnIdentityAttributeAcceptResponseItem extends AcceptResponseItem implements IShareOwnIdentityAttributeAcceptResponseItem {
|
|
10
|
+
attributeId: CoreId;
|
|
11
|
+
static from(value: IShareOwnIdentityAttributeAcceptResponseItem | ShareOwnIdentityAttributeAcceptResponseItemJSON): ShareOwnIdentityAttributeAcceptResponseItem;
|
|
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.ShareOwnIdentityAttributeAcceptResponseItem = 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 ShareOwnIdentityAttributeAcceptResponseItem = class ShareOwnIdentityAttributeAcceptResponseItem 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
|
+
], ShareOwnIdentityAttributeAcceptResponseItem.prototype, "attributeId", void 0);
|
|
26
|
+
ShareOwnIdentityAttributeAcceptResponseItem = __decorate([
|
|
27
|
+
(0, ts_serval_1.type)("ShareOwnIdentityAttributeAcceptResponseItem")
|
|
28
|
+
], ShareOwnIdentityAttributeAcceptResponseItem);
|
|
29
|
+
exports.ShareOwnIdentityAttributeAcceptResponseItem = ShareOwnIdentityAttributeAcceptResponseItem;
|
|
30
|
+
//# sourceMappingURL=ShareOwnIdentityAttributeAcceptResponseItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShareOwnIdentityAttributeAcceptResponseItem.js","sourceRoot":"","sources":["../../../../src/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeAcceptResponseItem.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAA8D;AAC9D,gDAAkD;AAClD,6CAAgG;AAWhG,IAAa,2CAA2C,GAAxD,MAAa,2CACT,SAAQ,6BAAkB;IAOnB,MAAM,CAAU,IAAI,CACvB,KAAqG;QAErG,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAA;AAPG;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,GAAE;8BACS,kBAAM;gFAAA;AANjB,2CAA2C;IADvD,IAAA,gBAAI,EAAC,6CAA6C,CAAC;GACvC,2CAA2C,CAavD;AAbY,kGAA2C"}
|
package/dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { CoreId, ICoreId } from "@nmshd/transport";
|
|
2
|
+
import { RequestItemJSON } from "../..";
|
|
3
|
+
import { IdentityAttribute, IdentityAttributeJSON, IIdentityAttribute } from "../../../attributes";
|
|
4
|
+
import { IRequestItem, RequestItem } from "../../RequestItem";
|
|
5
|
+
export interface ShareOwnIdentityAttributeRequestItemJSON extends RequestItemJSON {
|
|
6
|
+
attribute: IdentityAttributeJSON;
|
|
7
|
+
sourceAttributeId: string;
|
|
8
|
+
}
|
|
9
|
+
export interface IShareOwnIdentityAttributeRequestItem extends IRequestItem {
|
|
10
|
+
attribute: IIdentityAttribute;
|
|
11
|
+
sourceAttributeId: ICoreId;
|
|
12
|
+
}
|
|
13
|
+
export declare class ShareOwnIdentityAttributeRequestItem extends RequestItem implements IShareOwnIdentityAttributeRequestItem {
|
|
14
|
+
attribute: IdentityAttribute;
|
|
15
|
+
sourceAttributeId: CoreId;
|
|
16
|
+
static from(value: IShareOwnIdentityAttributeRequestItem | ShareOwnIdentityAttributeRequestItemJSON): ShareOwnIdentityAttributeRequestItem;
|
|
17
|
+
}
|
|
@@ -9,11 +9,12 @@ 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.ShareOwnIdentityAttributeRequestItem = void 0;
|
|
13
13
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
14
14
|
const transport_1 = require("@nmshd/transport");
|
|
15
|
+
const attributes_1 = require("../../../attributes");
|
|
15
16
|
const RequestItem_1 = require("../../RequestItem");
|
|
16
|
-
let
|
|
17
|
+
let ShareOwnIdentityAttributeRequestItem = class ShareOwnIdentityAttributeRequestItem extends RequestItem_1.RequestItem {
|
|
17
18
|
static from(value) {
|
|
18
19
|
return this.fromAny(value);
|
|
19
20
|
}
|
|
@@ -21,15 +22,15 @@ let ShareAttributeRequestItem = class ShareAttributeRequestItem extends RequestI
|
|
|
21
22
|
__decorate([
|
|
22
23
|
(0, ts_serval_1.serialize)(),
|
|
23
24
|
(0, ts_serval_1.validate)(),
|
|
24
|
-
__metadata("design:type",
|
|
25
|
-
],
|
|
25
|
+
__metadata("design:type", attributes_1.IdentityAttribute)
|
|
26
|
+
], ShareOwnIdentityAttributeRequestItem.prototype, "attribute", void 0);
|
|
26
27
|
__decorate([
|
|
27
28
|
(0, ts_serval_1.serialize)(),
|
|
28
29
|
(0, ts_serval_1.validate)(),
|
|
29
|
-
__metadata("design:type", transport_1.
|
|
30
|
-
],
|
|
31
|
-
|
|
32
|
-
(0, ts_serval_1.type)("
|
|
33
|
-
],
|
|
34
|
-
exports.
|
|
35
|
-
//# sourceMappingURL=
|
|
30
|
+
__metadata("design:type", transport_1.CoreId)
|
|
31
|
+
], ShareOwnIdentityAttributeRequestItem.prototype, "sourceAttributeId", void 0);
|
|
32
|
+
ShareOwnIdentityAttributeRequestItem = __decorate([
|
|
33
|
+
(0, ts_serval_1.type)("ShareOwnIdentityAttributeRequestItem")
|
|
34
|
+
], ShareOwnIdentityAttributeRequestItem);
|
|
35
|
+
exports.ShareOwnIdentityAttributeRequestItem = ShareOwnIdentityAttributeRequestItem;
|
|
36
|
+
//# sourceMappingURL=ShareOwnIdentityAttributeRequestItem.js.map
|
package/dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShareOwnIdentityAttributeRequestItem.js","sourceRoot":"","sources":["../../../../src/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAA8D;AAC9D,gDAAkD;AAElD,oDAAkG;AAClG,mDAA6D;AAa7D,IAAa,oCAAoC,GAAjD,MAAa,oCAAqC,SAAQ,yBAAW;IAS1D,MAAM,CAAC,IAAI,CACd,KAAuF;QAEvF,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;CACJ,CAAA;AAXG;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,GAAE;8BACO,8BAAiB;uEAAA;AAInC;IAFC,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,GAAE;8BACe,kBAAM;+EAAA;AAPvB,oCAAoC;IADhD,IAAA,gBAAI,EAAC,sCAAsC,CAAC;GAChC,oCAAoC,CAchD;AAdY,oFAAoC"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CreateOwnRelationshipAttributeAcceptResponseItem, CreateOwnRelationshipAttributeAcceptResponseItemJSON, ICreateOwnRelationshipAttributeAcceptResponseItem, IProposeAttributeAcceptResponseItem, IReadAttributeAcceptResponseItem, IShareOwnIdentityAttributeAcceptResponseItem, ProposeAttributeAcceptResponseItem, ProposeAttributeAcceptResponseItemJSON, ReadAttributeAcceptResponseItem, ReadAttributeAcceptResponseItemJSON, ShareOwnIdentityAttributeAcceptResponseItem, ShareOwnIdentityAttributeAcceptResponseItemJSON } 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 | CreateOwnRelationshipAttributeAcceptResponseItemJSON | ShareOwnIdentityAttributeAcceptResponseItemJSON | 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 | ICreateOwnRelationshipAttributeAcceptResponseItem | IShareOwnIdentityAttributeAcceptResponseItem | 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 | CreateOwnRelationshipAttributeAcceptResponseItem | ShareOwnIdentityAttributeAcceptResponseItem | ProposeAttributeAcceptResponseItem | ReadAttributeAcceptResponseItem;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AcceptResponseItem.js","sourceRoot":"","sources":["../../../src/requests/response/AcceptResponseItem.ts"],"names":[],"mappings":";;;;;;;;;AAAA,kDAAyC;
|
|
1
|
+
{"version":3,"file":"AcceptResponseItem.js","sourceRoot":"","sources":["../../../src/requests/response/AcceptResponseItem.ts"],"names":[],"mappings":";;;;;;;;;AAAA,kDAAyC;AAezC,iDAA8E;AA0B9E,IAAa,kBAAkB,GAA/B,MAAa,kBAAmB,SAAQ,2BAAY;IAGzC,MAAM,CAAC,IAAI,CAAC,KAAmD;QAClE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAC9B,CAAC;IAEe,MAAM;QAClB,OAAO,KAAK,CAAC,MAAM,EAA4B,CAAA;IACnD,CAAC;CACJ,CAAA;AAVY,kBAAkB;IAD9B,IAAA,gBAAI,EAAC,oBAAoB,CAAC;GACd,kBAAkB,CAU9B;AAVY,gDAAkB"}
|
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.6",
|
|
5491
|
+
build: "83",
|
|
5492
|
+
date: "2022-08-05T05:36:33+00:00",
|
|
5493
|
+
commit: "affabd915b7096e87557486d4a73a66ee428b8f3",
|
|
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/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.js":
|
|
6481
|
+
/*!****************************************************************************************************************!*\
|
|
6482
|
+
!*** ./dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.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.CreateOwnRelationshipAttributeAcceptResponseItem = 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 CreateOwnRelationshipAttributeAcceptResponseItem = class CreateOwnRelationshipAttributeAcceptResponseItem 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
|
+
], CreateOwnRelationshipAttributeAcceptResponseItem.prototype, "attributeId", void 0);
|
|
6511
|
+
CreateOwnRelationshipAttributeAcceptResponseItem = __decorate([
|
|
6512
|
+
(0, ts_serval_1.type)("CreateOwnRelationshipAttributeAcceptResponseItem")
|
|
6513
|
+
], CreateOwnRelationshipAttributeAcceptResponseItem);
|
|
6514
|
+
exports.CreateOwnRelationshipAttributeAcceptResponseItem = CreateOwnRelationshipAttributeAcceptResponseItem;
|
|
6515
|
+
//# sourceMappingURL=CreateOwnRelationshipAttributeAcceptResponseItem.js.map
|
|
6516
6516
|
|
|
6517
6517
|
/***/ }),
|
|
6518
6518
|
|
|
6519
|
-
/***/ "./dist/requests/items/
|
|
6520
|
-
|
|
6521
|
-
!*** ./dist/requests/items/
|
|
6522
|
-
|
|
6519
|
+
/***/ "./dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.js":
|
|
6520
|
+
/*!*********************************************************************************************************!*\
|
|
6521
|
+
!*** ./dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.js ***!
|
|
6522
|
+
\*********************************************************************************************************/
|
|
6523
6523
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
6524
6524
|
|
|
6525
6525
|
|
|
@@ -6533,31 +6533,24 @@ 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.CreateOwnRelationshipAttributeRequestItem = void 0;
|
|
6537
6537
|
const ts_serval_1 = __webpack_require__(/*! @js-soft/ts-serval */ "@js-soft/ts-serval");
|
|
6538
|
-
const transport_1 = __webpack_require__(/*! @nmshd/transport */ "@nmshd/transport");
|
|
6539
6538
|
const attributes_1 = __webpack_require__(/*! ../../../attributes */ "./dist/attributes/index.js");
|
|
6540
6539
|
const RequestItem_1 = __webpack_require__(/*! ../../RequestItem */ "./dist/requests/RequestItem.js");
|
|
6541
|
-
let
|
|
6540
|
+
let CreateOwnRelationshipAttributeRequestItem = class CreateOwnRelationshipAttributeRequestItem extends RequestItem_1.RequestItem {
|
|
6542
6541
|
static from(value) {
|
|
6543
6542
|
return this.fromAny(value);
|
|
6544
6543
|
}
|
|
6545
6544
|
};
|
|
6546
6545
|
__decorate([
|
|
6547
|
-
(0, ts_serval_1.serialize)({ unionTypes: [attributes_1.IdentityAttribute, attributes_1.RelationshipAttribute] }),
|
|
6548
6546
|
(0, ts_serval_1.validate)(),
|
|
6549
|
-
__metadata("design:type",
|
|
6550
|
-
],
|
|
6551
|
-
__decorate([
|
|
6552
|
-
(0, ts_serval_1.
|
|
6553
|
-
|
|
6554
|
-
|
|
6555
|
-
|
|
6556
|
-
CreateAttributeRequestItem = __decorate([
|
|
6557
|
-
(0, ts_serval_1.type)("CreateAttributeRequestItem")
|
|
6558
|
-
], CreateAttributeRequestItem);
|
|
6559
|
-
exports.CreateAttributeRequestItem = CreateAttributeRequestItem;
|
|
6560
|
-
//# sourceMappingURL=CreateAttributeRequestItem.js.map
|
|
6547
|
+
__metadata("design:type", attributes_1.RelationshipAttribute)
|
|
6548
|
+
], CreateOwnRelationshipAttributeRequestItem.prototype, "attribute", void 0);
|
|
6549
|
+
CreateOwnRelationshipAttributeRequestItem = __decorate([
|
|
6550
|
+
(0, ts_serval_1.type)("CreateOwnRelationshipAttributeRequestItem")
|
|
6551
|
+
], CreateOwnRelationshipAttributeRequestItem);
|
|
6552
|
+
exports.CreateOwnRelationshipAttributeRequestItem = CreateOwnRelationshipAttributeRequestItem;
|
|
6553
|
+
//# sourceMappingURL=CreateOwnRelationshipAttributeRequestItem.js.map
|
|
6561
6554
|
|
|
6562
6555
|
/***/ }),
|
|
6563
6556
|
|
|
@@ -6584,13 +6577,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
6584
6577
|
};
|
|
6585
6578
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
6586
6579
|
__exportStar(__webpack_require__(/*! ./consent/ConsentRequestItem */ "./dist/requests/items/consent/ConsentRequestItem.js"), exports);
|
|
6587
|
-
__exportStar(__webpack_require__(/*! ./
|
|
6588
|
-
__exportStar(__webpack_require__(/*! ./
|
|
6580
|
+
__exportStar(__webpack_require__(/*! ./createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem */ "./dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.js"), exports);
|
|
6581
|
+
__exportStar(__webpack_require__(/*! ./createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem */ "./dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.js"), exports);
|
|
6589
6582
|
__exportStar(__webpack_require__(/*! ./proposeAttribute/ProposeAttributeAcceptResponseItem */ "./dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.js"), exports);
|
|
6590
6583
|
__exportStar(__webpack_require__(/*! ./proposeAttribute/ProposeAttributeRequestItem */ "./dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.js"), exports);
|
|
6591
6584
|
__exportStar(__webpack_require__(/*! ./readAttribute/ReadAttributeAcceptResponseItem */ "./dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.js"), exports);
|
|
6592
6585
|
__exportStar(__webpack_require__(/*! ./readAttribute/ReadAttributeRequestItem */ "./dist/requests/items/readAttribute/ReadAttributeRequestItem.js"), exports);
|
|
6593
|
-
__exportStar(__webpack_require__(/*! ./
|
|
6586
|
+
__exportStar(__webpack_require__(/*! ./shareOwnIdentityAttribute/ShareOwnIdentityAttributeAcceptResponseItem */ "./dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeAcceptResponseItem.js"), exports);
|
|
6587
|
+
__exportStar(__webpack_require__(/*! ./shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem */ "./dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem.js"), exports);
|
|
6594
6588
|
//# sourceMappingURL=index.js.map
|
|
6595
6589
|
|
|
6596
6590
|
/***/ }),
|
|
@@ -6786,10 +6780,10 @@ exports.ReadAttributeRequestItem = ReadAttributeRequestItem;
|
|
|
6786
6780
|
|
|
6787
6781
|
/***/ }),
|
|
6788
6782
|
|
|
6789
|
-
/***/ "./dist/requests/items/
|
|
6790
|
-
|
|
6791
|
-
!*** ./dist/requests/items/
|
|
6792
|
-
|
|
6783
|
+
/***/ "./dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeAcceptResponseItem.js":
|
|
6784
|
+
/*!******************************************************************************************************!*\
|
|
6785
|
+
!*** ./dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeAcceptResponseItem.js ***!
|
|
6786
|
+
\******************************************************************************************************/
|
|
6793
6787
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
6794
6788
|
|
|
6795
6789
|
|
|
@@ -6803,11 +6797,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
6803
6797
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
6804
6798
|
};
|
|
6805
6799
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
6806
|
-
exports.
|
|
6800
|
+
exports.ShareOwnIdentityAttributeAcceptResponseItem = void 0;
|
|
6807
6801
|
const ts_serval_1 = __webpack_require__(/*! @js-soft/ts-serval */ "@js-soft/ts-serval");
|
|
6808
6802
|
const transport_1 = __webpack_require__(/*! @nmshd/transport */ "@nmshd/transport");
|
|
6809
|
-
const
|
|
6810
|
-
let
|
|
6803
|
+
const response_1 = __webpack_require__(/*! ../../response */ "./dist/requests/response/index.js");
|
|
6804
|
+
let ShareOwnIdentityAttributeAcceptResponseItem = class ShareOwnIdentityAttributeAcceptResponseItem extends response_1.AcceptResponseItem {
|
|
6811
6805
|
static from(value) {
|
|
6812
6806
|
return this.fromAny(value);
|
|
6813
6807
|
}
|
|
@@ -6816,17 +6810,57 @@ __decorate([
|
|
|
6816
6810
|
(0, ts_serval_1.serialize)(),
|
|
6817
6811
|
(0, ts_serval_1.validate)(),
|
|
6818
6812
|
__metadata("design:type", transport_1.CoreId)
|
|
6819
|
-
],
|
|
6813
|
+
], ShareOwnIdentityAttributeAcceptResponseItem.prototype, "attributeId", void 0);
|
|
6814
|
+
ShareOwnIdentityAttributeAcceptResponseItem = __decorate([
|
|
6815
|
+
(0, ts_serval_1.type)("ShareOwnIdentityAttributeAcceptResponseItem")
|
|
6816
|
+
], ShareOwnIdentityAttributeAcceptResponseItem);
|
|
6817
|
+
exports.ShareOwnIdentityAttributeAcceptResponseItem = ShareOwnIdentityAttributeAcceptResponseItem;
|
|
6818
|
+
//# sourceMappingURL=ShareOwnIdentityAttributeAcceptResponseItem.js.map
|
|
6819
|
+
|
|
6820
|
+
/***/ }),
|
|
6821
|
+
|
|
6822
|
+
/***/ "./dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem.js":
|
|
6823
|
+
/*!***********************************************************************************************!*\
|
|
6824
|
+
!*** ./dist/requests/items/shareOwnIdentityAttribute/ShareOwnIdentityAttributeRequestItem.js ***!
|
|
6825
|
+
\***********************************************************************************************/
|
|
6826
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
6827
|
+
|
|
6828
|
+
|
|
6829
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
6830
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
6831
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
6832
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6833
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6834
|
+
};
|
|
6835
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
6836
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
6837
|
+
};
|
|
6838
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
6839
|
+
exports.ShareOwnIdentityAttributeRequestItem = void 0;
|
|
6840
|
+
const ts_serval_1 = __webpack_require__(/*! @js-soft/ts-serval */ "@js-soft/ts-serval");
|
|
6841
|
+
const transport_1 = __webpack_require__(/*! @nmshd/transport */ "@nmshd/transport");
|
|
6842
|
+
const attributes_1 = __webpack_require__(/*! ../../../attributes */ "./dist/attributes/index.js");
|
|
6843
|
+
const RequestItem_1 = __webpack_require__(/*! ../../RequestItem */ "./dist/requests/RequestItem.js");
|
|
6844
|
+
let ShareOwnIdentityAttributeRequestItem = class ShareOwnIdentityAttributeRequestItem extends RequestItem_1.RequestItem {
|
|
6845
|
+
static from(value) {
|
|
6846
|
+
return this.fromAny(value);
|
|
6847
|
+
}
|
|
6848
|
+
};
|
|
6820
6849
|
__decorate([
|
|
6821
6850
|
(0, ts_serval_1.serialize)(),
|
|
6822
6851
|
(0, ts_serval_1.validate)(),
|
|
6823
|
-
__metadata("design:type",
|
|
6824
|
-
],
|
|
6825
|
-
|
|
6826
|
-
(0, ts_serval_1.
|
|
6827
|
-
|
|
6828
|
-
|
|
6829
|
-
|
|
6852
|
+
__metadata("design:type", attributes_1.IdentityAttribute)
|
|
6853
|
+
], ShareOwnIdentityAttributeRequestItem.prototype, "attribute", void 0);
|
|
6854
|
+
__decorate([
|
|
6855
|
+
(0, ts_serval_1.serialize)(),
|
|
6856
|
+
(0, ts_serval_1.validate)(),
|
|
6857
|
+
__metadata("design:type", transport_1.CoreId)
|
|
6858
|
+
], ShareOwnIdentityAttributeRequestItem.prototype, "sourceAttributeId", void 0);
|
|
6859
|
+
ShareOwnIdentityAttributeRequestItem = __decorate([
|
|
6860
|
+
(0, ts_serval_1.type)("ShareOwnIdentityAttributeRequestItem")
|
|
6861
|
+
], ShareOwnIdentityAttributeRequestItem);
|
|
6862
|
+
exports.ShareOwnIdentityAttributeRequestItem = ShareOwnIdentityAttributeRequestItem;
|
|
6863
|
+
//# sourceMappingURL=ShareOwnIdentityAttributeRequestItem.js.map
|
|
6830
6864
|
|
|
6831
6865
|
/***/ }),
|
|
6832
6866
|
|