@nmshd/content 7.0.0-alpha.6 → 7.0.0-alpha.7
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/README.md +1 -1
- package/dist/attributes/types/relationship/Consent.d.ts +5 -0
- package/dist/attributes/types/relationship/Consent.d.ts.map +1 -1
- package/dist/attributes/types/relationship/Consent.js +19 -6
- package/dist/attributes/types/relationship/Consent.js.map +1 -1
- package/dist/buildInformation.js +5 -5
- package/dist/requests/items/consent/ConsentRequestItem.d.ts +5 -0
- package/dist/requests/items/consent/ConsentRequestItem.d.ts.map +1 -1
- package/dist/requests/items/consent/ConsentRequestItem.js +17 -2
- package/dist/requests/items/consent/ConsentRequestItem.js.map +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ Share your feedback with the enmeshed team by contributing to the [discussions](
|
|
|
16
16
|
|
|
17
17
|
## Contribute
|
|
18
18
|
|
|
19
|
-
Contribution to this project is highly
|
|
19
|
+
Contribution to this project is highly appreciated. Head over to our [contribution guide](https://github.com/nmshd/.github/blob/main/CONTRIBUTING.md) to learn more.
|
|
20
20
|
|
|
21
21
|
## License
|
|
22
22
|
|
|
@@ -1,16 +1,21 @@
|
|
|
1
|
+
import { Serializable } from "@js-soft/ts-serval";
|
|
1
2
|
import { AbstractAttributeValue, AbstractAttributeValueJSON, IAbstractAttributeValue } from "../../AbstractAttributeValue";
|
|
2
3
|
import { RenderHints, ValueHints } from "../../hints";
|
|
3
4
|
export interface ConsentJSON extends AbstractAttributeValueJSON {
|
|
4
5
|
consent: string;
|
|
5
6
|
link?: string;
|
|
7
|
+
linkDisplayText?: string;
|
|
6
8
|
}
|
|
7
9
|
export interface IConsent extends IAbstractAttributeValue {
|
|
8
10
|
consent: string;
|
|
9
11
|
link?: string;
|
|
12
|
+
linkDisplayText?: string;
|
|
10
13
|
}
|
|
11
14
|
export declare class Consent extends AbstractAttributeValue implements IConsent {
|
|
12
15
|
consent: string;
|
|
13
16
|
link?: string;
|
|
17
|
+
linkDisplayText?: string;
|
|
18
|
+
protected static postFrom<T extends Serializable>(value: T): T;
|
|
14
19
|
static from(value: IConsent | Omit<ConsentJSON, "@type">): Consent;
|
|
15
20
|
toJSON(verbose?: boolean | undefined, serializeAsString?: boolean | undefined): ConsentJSON;
|
|
16
21
|
static get valueHints(): ValueHints;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Consent.d.ts","sourceRoot":"","sources":["../../../../src/attributes/types/relationship/Consent.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Consent.d.ts","sourceRoot":"","sources":["../../../../src/attributes/types/relationship/Consent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAA8C,MAAM,oBAAoB,CAAC;AAE9F,OAAO,EAAE,sBAAsB,EAAE,0BAA0B,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAC3H,OAAO,EAAE,WAAW,EAAsE,UAAU,EAAE,MAAM,aAAa,CAAC;AAE1H,MAAM,WAAW,WAAY,SAAQ,0BAA0B;IAC3D,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,QAAS,SAAQ,uBAAuB;IACrD,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,qBACa,OAAQ,SAAQ,sBAAuB,YAAW,QAAQ;IAG5D,OAAO,EAAE,MAAM,CAAC;IAYhB,IAAI,CAAC,EAAE,MAAM,CAAC;IAId,eAAe,CAAC,EAAE,MAAM,CAAC;qBAEN,QAAQ,CAAC,CAAC,SAAS,YAAY,EAAE,KAAK,EAAE,CAAC,GAAG,CAAC;WAczD,IAAI,CAAC,KAAK,EAAE,QAAQ,GAAG,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,GAAG,OAAO;IAIzD,MAAM,CAAC,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,EAAE,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW;IAI3G,WAAkB,UAAU,IAAI,UAAU,CAQzC;IAED,WAAkB,WAAW,IAAI,WAAW,CAgB3C;CACJ"}
|
|
@@ -8,12 +8,22 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
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
|
+
var Consent_1;
|
|
11
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
13
|
exports.Consent = void 0;
|
|
13
14
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
15
|
+
const ts_simple_nameof_1 = require("ts-simple-nameof");
|
|
14
16
|
const AbstractAttributeValue_1 = require("../../AbstractAttributeValue");
|
|
15
17
|
const hints_1 = require("../../hints");
|
|
16
|
-
let Consent = class Consent extends AbstractAttributeValue_1.AbstractAttributeValue {
|
|
18
|
+
let Consent = Consent_1 = class Consent extends AbstractAttributeValue_1.AbstractAttributeValue {
|
|
19
|
+
static postFrom(value) {
|
|
20
|
+
if (!(value instanceof Consent_1))
|
|
21
|
+
throw new Error("this should never happen");
|
|
22
|
+
if (typeof value.linkDisplayText === "string" && typeof value.link === "undefined") {
|
|
23
|
+
throw new ts_serval_1.ValidationError(Consent_1.name, (0, ts_simple_nameof_1.nameof)((x) => x.linkDisplayText), `A ${(0, ts_simple_nameof_1.nameof)((x) => x.linkDisplayText)} can only be defined if a ${(0, ts_simple_nameof_1.nameof)((x) => x.link)} is defined too.`);
|
|
24
|
+
}
|
|
25
|
+
return value;
|
|
26
|
+
}
|
|
17
27
|
static from(value) {
|
|
18
28
|
return this.fromAny(value);
|
|
19
29
|
}
|
|
@@ -24,10 +34,8 @@ let Consent = class Consent extends AbstractAttributeValue_1.AbstractAttributeVa
|
|
|
24
34
|
return hints_1.ValueHints.from({
|
|
25
35
|
propertyHints: {
|
|
26
36
|
consent: { max: 2000 },
|
|
27
|
-
link: {
|
|
28
|
-
|
|
29
|
-
max: 1024
|
|
30
|
-
}
|
|
37
|
+
link: { min: 3, max: 1024 },
|
|
38
|
+
linkDisplayText: { min: 3, max: 30 }
|
|
31
39
|
}
|
|
32
40
|
});
|
|
33
41
|
}
|
|
@@ -67,7 +75,12 @@ __decorate([
|
|
|
67
75
|
}),
|
|
68
76
|
__metadata("design:type", String)
|
|
69
77
|
], Consent.prototype, "link", void 0);
|
|
70
|
-
|
|
78
|
+
__decorate([
|
|
79
|
+
(0, ts_serval_1.serialize)(),
|
|
80
|
+
(0, ts_serval_1.validate)({ nullable: true, min: 3, max: 30 }),
|
|
81
|
+
__metadata("design:type", String)
|
|
82
|
+
], Consent.prototype, "linkDisplayText", void 0);
|
|
83
|
+
exports.Consent = Consent = Consent_1 = __decorate([
|
|
71
84
|
(0, ts_serval_1.type)("Consent")
|
|
72
85
|
], Consent);
|
|
73
86
|
//# sourceMappingURL=Consent.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Consent.js","sourceRoot":"","sources":["../../../../src/attributes/types/relationship/Consent.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Consent.js","sourceRoot":"","sources":["../../../../src/attributes/types/relationship/Consent.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,kDAA8F;AAC9F,uDAA0C;AAC1C,yEAA2H;AAC3H,uCAA0H;AAenH,IAAM,OAAO,eAAb,MAAM,OAAQ,SAAQ,+CAAsB;IAqBrC,MAAM,CAAU,QAAQ,CAAyB,KAAQ;QAC/D,IAAI,CAAC,CAAC,KAAK,YAAY,SAAO,CAAC;YAAE,MAAM,IAAI,KAAK,CAAC,0BAA0B,CAAC,CAAC;QAE7E,IAAI,OAAO,KAAK,CAAC,eAAe,KAAK,QAAQ,IAAI,OAAO,KAAK,CAAC,IAAI,KAAK,WAAW,EAAE,CAAC;YACjF,MAAM,IAAI,2BAAe,CACrB,SAAO,CAAC,IAAI,EACZ,IAAA,yBAAM,EAAU,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,EACzC,KAAK,IAAA,yBAAM,EAAU,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,6BAA6B,IAAA,yBAAM,EAAU,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAC9H,CAAC;QACN,CAAC;QAED,OAAO,KAAK,CAAC;IACjB,CAAC;IAEM,MAAM,CAAC,IAAI,CAAC,KAA4C;QAC3D,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;IAC/B,CAAC;IAEe,MAAM,CAAC,OAA6B,EAAE,iBAAuC;QACzF,OAAO,KAAK,CAAC,MAAM,CAAC,OAAO,EAAE,iBAAiB,CAAgB,CAAC;IACnE,CAAC;IAEM,MAAM,KAAK,UAAU;QACxB,OAAO,kBAAU,CAAC,IAAI,CAAC;YACnB,aAAa,EAAE;gBACX,OAAO,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE;gBACtB,IAAI,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE;gBAC3B,eAAe,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE;aACvC;SACJ,CAAC,CAAC;IACP,CAAC;IAEM,MAAM,KAAK,WAAW;QACzB,OAAO,mBAAW,CAAC,IAAI,CAAC;YACpB,QAAQ,EAAE,2BAAmB,CAAC,OAAO;YACrC,aAAa,EAAE,gCAAwB,CAAC,MAAM;YAC9C,aAAa,EAAE;gBACX,OAAO,EAAE;oBACL,QAAQ,EAAE,2BAAmB,CAAC,QAAQ;oBACtC,aAAa,EAAE,gCAAwB,CAAC,MAAM;iBACjD;gBACD,IAAI,EAAE;oBACF,QAAQ,EAAE,2BAAmB,CAAC,SAAS;oBACvC,aAAa,EAAE,gCAAwB,CAAC,MAAM;oBAC9C,QAAQ,EAAE,2BAAmB,CAAC,GAAG;iBACpC;aACJ;SACJ,CAAC,CAAC;IACP,CAAC;CACJ,CAAA;AAtEY,0BAAO;AAGT;IAFN,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC;;wCACD;AAYhB;IAVN,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC;QACN,QAAQ,EAAE,IAAI;QACd,GAAG,EAAE,CAAC;QACN,GAAG,EAAE,IAAI;QACT,MAAM,EAAE,IAAI,MAAM;QACd,6CAA6C;QAC7C,yLAAyL,CAC5L;KACJ,CAAC;;qCACmB;AAId;IAFN,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC;;gDACd;kBAnBvB,OAAO;IADnB,IAAA,gBAAI,EAAC,SAAS,CAAC;GACH,OAAO,CAsEnB"}
|
package/dist/buildInformation.js
CHANGED
|
@@ -3,11 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.buildInformation = void 0;
|
|
4
4
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
5
5
|
exports.buildInformation = {
|
|
6
|
-
version: "7.0.0-alpha.
|
|
7
|
-
build: "
|
|
8
|
-
date: "2025-
|
|
9
|
-
commit: "
|
|
10
|
-
dependencies: {"@js-soft/ts-serval":"2.0.12","@nmshd/core-types":"*","@nmshd/iql":"^1.0.2","luxon":"^3.
|
|
6
|
+
version: "7.0.0-alpha.7",
|
|
7
|
+
build: "215",
|
|
8
|
+
date: "2025-04-08T08:49:49+00:00",
|
|
9
|
+
commit: "bcbc734c49a433fe72ac0a18f1aa7dff7a93a1aa",
|
|
10
|
+
dependencies: {"@js-soft/ts-serval":"2.0.12","@nmshd/core-types":"*","@nmshd/iql":"^1.0.2","luxon":"^3.6.1","ts-simple-nameof":"^1.3.1"},
|
|
11
11
|
libraries: { serval: ts_serval_1.buildInformation }
|
|
12
12
|
};
|
|
13
13
|
//# sourceMappingURL=buildInformation.js.map
|
|
@@ -1,16 +1,21 @@
|
|
|
1
|
+
import { Serializable } from "@js-soft/ts-serval";
|
|
1
2
|
import { IRequestItem, RequestItem, RequestItemJSON } from "../../RequestItem";
|
|
2
3
|
export interface ConsentRequestItemJSON extends RequestItemJSON {
|
|
3
4
|
"@type": "ConsentRequestItem";
|
|
4
5
|
consent: string;
|
|
5
6
|
link?: string;
|
|
7
|
+
linkDisplayText?: string;
|
|
6
8
|
}
|
|
7
9
|
export interface IConsentRequestItem extends IRequestItem {
|
|
8
10
|
consent: string;
|
|
9
11
|
link?: string;
|
|
12
|
+
linkDisplayText?: string;
|
|
10
13
|
}
|
|
11
14
|
export declare class ConsentRequestItem extends RequestItem implements IConsentRequestItem {
|
|
12
15
|
consent: string;
|
|
13
16
|
link?: string;
|
|
17
|
+
linkDisplayText?: string;
|
|
18
|
+
protected static postFrom<T extends Serializable>(value: T): T;
|
|
14
19
|
static from(value: IConsentRequestItem | Omit<ConsentRequestItemJSON, "@type"> | ConsentRequestItemJSON): ConsentRequestItem;
|
|
15
20
|
toJSON(verbose?: boolean | undefined, serializeAsString?: boolean | undefined): ConsentRequestItemJSON;
|
|
16
21
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConsentRequestItem.d.ts","sourceRoot":"","sources":["../../../../src/requests/items/consent/ConsentRequestItem.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ConsentRequestItem.d.ts","sourceRoot":"","sources":["../../../../src/requests/items/consent/ConsentRequestItem.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAA8C,MAAM,oBAAoB,CAAC;AAE9F,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAE/E,MAAM,WAAW,sBAAuB,SAAQ,eAAe;IAC3D,OAAO,EAAE,oBAAoB,CAAC;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,mBAAoB,SAAQ,YAAY;IACrD,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,qBACa,kBAAmB,SAAQ,WAAY,YAAW,mBAAmB;IAGvE,OAAO,EAAE,MAAM,CAAC;IAYhB,IAAI,CAAC,EAAE,MAAM,CAAC;IAId,eAAe,CAAC,EAAE,MAAM,CAAC;qBAEN,QAAQ,CAAC,CAAC,SAAS,YAAY,EAAE,KAAK,EAAE,CAAC,GAAG,CAAC;WAczD,IAAI,CAAC,KAAK,EAAE,mBAAmB,GAAG,IAAI,CAAC,sBAAsB,EAAE,OAAO,CAAC,GAAG,sBAAsB,GAAG,kBAAkB;IAInH,MAAM,CAAC,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,EAAE,iBAAiB,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,sBAAsB;CAGzH"}
|
|
@@ -8,11 +8,21 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
8
8
|
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
|
+
var ConsentRequestItem_1;
|
|
11
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
13
|
exports.ConsentRequestItem = void 0;
|
|
13
14
|
const ts_serval_1 = require("@js-soft/ts-serval");
|
|
15
|
+
const ts_simple_nameof_1 = require("ts-simple-nameof");
|
|
14
16
|
const RequestItem_1 = require("../../RequestItem");
|
|
15
|
-
let ConsentRequestItem = class ConsentRequestItem extends RequestItem_1.RequestItem {
|
|
17
|
+
let ConsentRequestItem = ConsentRequestItem_1 = class ConsentRequestItem extends RequestItem_1.RequestItem {
|
|
18
|
+
static postFrom(value) {
|
|
19
|
+
if (!(value instanceof ConsentRequestItem_1))
|
|
20
|
+
throw new Error("this should never happen");
|
|
21
|
+
if (typeof value.linkDisplayText === "string" && typeof value.link === "undefined") {
|
|
22
|
+
throw new ts_serval_1.ValidationError(ConsentRequestItem_1.name, (0, ts_simple_nameof_1.nameof)((x) => x.linkDisplayText), `A ${(0, ts_simple_nameof_1.nameof)((x) => x.linkDisplayText)} can only be defined if a ${(0, ts_simple_nameof_1.nameof)((x) => x.link)} is defined too.`);
|
|
23
|
+
}
|
|
24
|
+
return value;
|
|
25
|
+
}
|
|
16
26
|
static from(value) {
|
|
17
27
|
return this.fromAny(value);
|
|
18
28
|
}
|
|
@@ -38,7 +48,12 @@ __decorate([
|
|
|
38
48
|
}),
|
|
39
49
|
__metadata("design:type", String)
|
|
40
50
|
], ConsentRequestItem.prototype, "link", void 0);
|
|
41
|
-
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, ts_serval_1.serialize)(),
|
|
53
|
+
(0, ts_serval_1.validate)({ nullable: true, min: 3, max: 30 }),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], ConsentRequestItem.prototype, "linkDisplayText", void 0);
|
|
56
|
+
exports.ConsentRequestItem = ConsentRequestItem = ConsentRequestItem_1 = __decorate([
|
|
42
57
|
(0, ts_serval_1.type)("ConsentRequestItem")
|
|
43
58
|
], ConsentRequestItem);
|
|
44
59
|
//# sourceMappingURL=ConsentRequestItem.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConsentRequestItem.js","sourceRoot":"","sources":["../../../../src/requests/items/consent/ConsentRequestItem.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ConsentRequestItem.js","sourceRoot":"","sources":["../../../../src/requests/items/consent/ConsentRequestItem.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,kDAA8F;AAC9F,uDAA0C;AAC1C,mDAA+E;AAgBxE,IAAM,kBAAkB,0BAAxB,MAAM,kBAAmB,SAAQ,yBAAW;IAqBrC,MAAM,CAAU,QAAQ,CAAyB,KAAQ;QAC/D,IAAI,CAAC,CAAC,KAAK,YAAY,oBAAkB,CAAC;YAAE,MAAM,IAAI,KAAK,CAAC,0BAA0B,CAAC,CAAC;QAExF,IAAI,OAAO,KAAK,CAAC,eAAe,KAAK,QAAQ,IAAI,OAAO,KAAK,CAAC,IAAI,KAAK,WAAW,EAAE,CAAC;YACjF,MAAM,IAAI,2BAAe,CACrB,oBAAkB,CAAC,IAAI,EACvB,IAAA,yBAAM,EAAqB,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,EACpD,KAAK,IAAA,yBAAM,EAAqB,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,6BAA6B,IAAA,yBAAM,EAAqB,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CACpJ,CAAC;QACN,CAAC;QAED,OAAO,KAAK,CAAC;IACjB,CAAC;IAEM,MAAM,CAAC,IAAI,CAAC,KAA2F;QAC1G,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;IAC/B,CAAC;IAEe,MAAM,CAAC,OAA6B,EAAE,iBAAuC;QACzF,OAAO,KAAK,CAAC,MAAM,CAAC,OAAO,EAAE,iBAAiB,CAA2B,CAAC;IAC9E,CAAC;CACJ,CAAA;AA1CY,gDAAkB;AAGpB;IAFN,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC;;mDACD;AAYhB;IAVN,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC;QACN,QAAQ,EAAE,IAAI;QACd,GAAG,EAAE,CAAC;QACN,GAAG,EAAE,IAAI;QACT,MAAM,EAAE,IAAI,MAAM;QACd,6CAA6C;QAC7C,yLAAyL,CAC5L;KACJ,CAAC;;gDACmB;AAId;IAFN,IAAA,qBAAS,GAAE;IACX,IAAA,oBAAQ,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC;;2DACd;6BAnBvB,kBAAkB;IAD9B,IAAA,gBAAI,EAAC,oBAAoB,CAAC;GACd,kBAAkB,CA0C9B"}
|
package/package.json
CHANGED
|
@@ -52,18 +52,18 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@js-soft/ts-serval": "2.0.12",
|
|
55
|
-
"@nmshd/core-types": "7.0.0-alpha.
|
|
55
|
+
"@nmshd/core-types": "7.0.0-alpha.7",
|
|
56
56
|
"@nmshd/iql": "^1.0.2",
|
|
57
|
-
"luxon": "^3.
|
|
57
|
+
"luxon": "^3.6.1",
|
|
58
58
|
"ts-simple-nameof": "^1.3.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@types/luxon": "^3.
|
|
62
|
-
"@nmshd/crypto": "2.1.
|
|
61
|
+
"@types/luxon": "^3.6.2",
|
|
62
|
+
"@nmshd/crypto": "2.1.1"
|
|
63
63
|
},
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public",
|
|
66
66
|
"provenance": true
|
|
67
67
|
},
|
|
68
|
-
"version": "7.0.0-alpha.
|
|
68
|
+
"version": "7.0.0-alpha.7"
|
|
69
69
|
}
|