@nmshd/runtime 5.1.2 → 5.2.1
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/Runtime.d.ts.map +1 -1
- package/dist/Runtime.js +3 -0
- package/dist/Runtime.js.map +1 -1
- package/dist/buildInformation.js +4 -4
- package/dist/extensibility/AnonymousServices.d.ts +3 -2
- package/dist/extensibility/AnonymousServices.d.ts.map +1 -1
- package/dist/extensibility/AnonymousServices.js +5 -2
- package/dist/extensibility/AnonymousServices.js.map +1 -1
- package/dist/extensibility/facades/anonymous/BackboneCompatibilityFacade.d.ts +8 -0
- package/dist/extensibility/facades/anonymous/BackboneCompatibilityFacade.d.ts.map +1 -0
- package/dist/extensibility/facades/anonymous/BackboneCompatibilityFacade.js +31 -0
- package/dist/extensibility/facades/anonymous/BackboneCompatibilityFacade.js.map +1 -0
- package/dist/extensibility/facades/anonymous/index.d.ts +1 -0
- package/dist/extensibility/facades/anonymous/index.d.ts.map +1 -1
- package/dist/extensibility/facades/anonymous/index.js +1 -0
- package/dist/extensibility/facades/anonymous/index.js.map +1 -1
- package/dist/types/consumption/LocalAttributeDTO.d.ts +20 -3
- package/dist/types/consumption/LocalAttributeDTO.d.ts.map +1 -1
- package/dist/types/consumption/LocalAttributeDTO.js +10 -0
- package/dist/types/consumption/LocalAttributeDTO.js.map +1 -1
- package/dist/types/consumption/LocalNotificationDTO.d.ts +6 -1
- package/dist/types/consumption/LocalNotificationDTO.d.ts.map +1 -1
- package/dist/types/consumption/LocalNotificationDTO.js +8 -0
- package/dist/types/consumption/LocalNotificationDTO.js.map +1 -1
- package/dist/types/consumption/LocalRequestDTO.d.ts +9 -1
- package/dist/types/consumption/LocalRequestDTO.d.ts.map +1 -1
- package/dist/types/consumption/LocalRequestDTO.js +11 -0
- package/dist/types/consumption/LocalRequestDTO.js.map +1 -1
- package/dist/types/consumption/SettingDTO.d.ts +5 -1
- package/dist/types/consumption/SettingDTO.d.ts.map +1 -1
- package/dist/types/consumption/SettingDTO.js +7 -0
- package/dist/types/consumption/SettingDTO.js.map +1 -1
- package/dist/types/transport/IdentityDeletionProcessDTO.d.ts +6 -1
- package/dist/types/transport/IdentityDeletionProcessDTO.d.ts.map +1 -1
- package/dist/types/transport/IdentityDeletionProcessDTO.js +8 -0
- package/dist/types/transport/IdentityDeletionProcessDTO.js.map +1 -1
- package/dist/useCases/anonymous/backboneCompatibility/CheckBackboneCompatibilityUseCase.d.ts +15 -0
- package/dist/useCases/anonymous/backboneCompatibility/CheckBackboneCompatibilityUseCase.d.ts.map +1 -0
- package/dist/useCases/anonymous/backboneCompatibility/CheckBackboneCompatibilityUseCase.js +37 -0
- package/dist/useCases/anonymous/backboneCompatibility/CheckBackboneCompatibilityUseCase.js.map +1 -0
- package/dist/useCases/anonymous/backboneCompatibility/index.d.ts +2 -0
- package/dist/useCases/anonymous/backboneCompatibility/index.d.ts.map +1 -0
- package/dist/useCases/anonymous/backboneCompatibility/index.js +18 -0
- package/dist/useCases/anonymous/backboneCompatibility/index.js.map +1 -0
- package/dist/useCases/anonymous/index.d.ts +1 -0
- package/dist/useCases/anonymous/index.d.ts.map +1 -1
- package/dist/useCases/anonymous/index.js +1 -0
- package/dist/useCases/anonymous/index.js.map +1 -1
- package/dist/useCases/common/Schemas.d.ts.map +1 -1
- package/dist/useCases/common/Schemas.js +100 -4
- package/dist/useCases/common/Schemas.js.map +1 -1
- package/package.json +4 -4
|
@@ -2778,7 +2778,23 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
2778
2778
|
"type": "string"
|
|
2779
2779
|
},
|
|
2780
2780
|
"owner": {
|
|
2781
|
-
"
|
|
2781
|
+
"anyOf": [
|
|
2782
|
+
{
|
|
2783
|
+
"$ref": "#/definitions/ThirdPartyRelationshipAttributeQueryOwner"
|
|
2784
|
+
},
|
|
2785
|
+
{
|
|
2786
|
+
"type": "string",
|
|
2787
|
+
"const": "thirdParty"
|
|
2788
|
+
},
|
|
2789
|
+
{
|
|
2790
|
+
"type": "string",
|
|
2791
|
+
"const": "recipient"
|
|
2792
|
+
},
|
|
2793
|
+
{
|
|
2794
|
+
"type": "string",
|
|
2795
|
+
"const": ""
|
|
2796
|
+
}
|
|
2797
|
+
]
|
|
2782
2798
|
},
|
|
2783
2799
|
"thirdParty": {
|
|
2784
2800
|
"type": "array",
|
|
@@ -2801,6 +2817,14 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
2801
2817
|
],
|
|
2802
2818
|
"additionalProperties": false
|
|
2803
2819
|
},
|
|
2820
|
+
"ThirdPartyRelationshipAttributeQueryOwner": {
|
|
2821
|
+
"type": "string",
|
|
2822
|
+
"enum": [
|
|
2823
|
+
"thirdParty",
|
|
2824
|
+
"recipient",
|
|
2825
|
+
""
|
|
2826
|
+
]
|
|
2827
|
+
},
|
|
2804
2828
|
"ConsentRequestItemJSON": {
|
|
2805
2829
|
"type": "object",
|
|
2806
2830
|
"properties": {
|
|
@@ -10566,7 +10590,23 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
10566
10590
|
"type": "string"
|
|
10567
10591
|
},
|
|
10568
10592
|
"owner": {
|
|
10569
|
-
"
|
|
10593
|
+
"anyOf": [
|
|
10594
|
+
{
|
|
10595
|
+
"$ref": "#/definitions/ThirdPartyRelationshipAttributeQueryOwner"
|
|
10596
|
+
},
|
|
10597
|
+
{
|
|
10598
|
+
"type": "string",
|
|
10599
|
+
"const": "thirdParty"
|
|
10600
|
+
},
|
|
10601
|
+
{
|
|
10602
|
+
"type": "string",
|
|
10603
|
+
"const": "recipient"
|
|
10604
|
+
},
|
|
10605
|
+
{
|
|
10606
|
+
"type": "string",
|
|
10607
|
+
"const": ""
|
|
10608
|
+
}
|
|
10609
|
+
]
|
|
10570
10610
|
},
|
|
10571
10611
|
"thirdParty": {
|
|
10572
10612
|
"type": "array",
|
|
@@ -10589,6 +10629,14 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
10589
10629
|
],
|
|
10590
10630
|
"additionalProperties": false
|
|
10591
10631
|
},
|
|
10632
|
+
"ThirdPartyRelationshipAttributeQueryOwner": {
|
|
10633
|
+
"type": "string",
|
|
10634
|
+
"enum": [
|
|
10635
|
+
"thirdParty",
|
|
10636
|
+
"recipient",
|
|
10637
|
+
""
|
|
10638
|
+
]
|
|
10639
|
+
},
|
|
10592
10640
|
"ConsentRequestItemJSON": {
|
|
10593
10641
|
"type": "object",
|
|
10594
10642
|
"properties": {
|
|
@@ -13865,7 +13913,23 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
13865
13913
|
"type": "string"
|
|
13866
13914
|
},
|
|
13867
13915
|
"owner": {
|
|
13868
|
-
"
|
|
13916
|
+
"anyOf": [
|
|
13917
|
+
{
|
|
13918
|
+
"$ref": "#/definitions/ThirdPartyRelationshipAttributeQueryOwner"
|
|
13919
|
+
},
|
|
13920
|
+
{
|
|
13921
|
+
"type": "string",
|
|
13922
|
+
"const": "thirdParty"
|
|
13923
|
+
},
|
|
13924
|
+
{
|
|
13925
|
+
"type": "string",
|
|
13926
|
+
"const": "recipient"
|
|
13927
|
+
},
|
|
13928
|
+
{
|
|
13929
|
+
"type": "string",
|
|
13930
|
+
"const": ""
|
|
13931
|
+
}
|
|
13932
|
+
]
|
|
13869
13933
|
},
|
|
13870
13934
|
"thirdParty": {
|
|
13871
13935
|
"type": "array",
|
|
@@ -13888,6 +13952,14 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
13888
13952
|
],
|
|
13889
13953
|
"additionalProperties": false
|
|
13890
13954
|
},
|
|
13955
|
+
"ThirdPartyRelationshipAttributeQueryOwner": {
|
|
13956
|
+
"type": "string",
|
|
13957
|
+
"enum": [
|
|
13958
|
+
"thirdParty",
|
|
13959
|
+
"recipient",
|
|
13960
|
+
""
|
|
13961
|
+
]
|
|
13962
|
+
},
|
|
13891
13963
|
"ConsentRequestItemJSON": {
|
|
13892
13964
|
"type": "object",
|
|
13893
13965
|
"properties": {
|
|
@@ -16652,7 +16724,23 @@ exports.ExecuteThirdPartyRelationshipAttributeQueryRequest = {
|
|
|
16652
16724
|
"type": "string"
|
|
16653
16725
|
},
|
|
16654
16726
|
"owner": {
|
|
16655
|
-
"
|
|
16727
|
+
"anyOf": [
|
|
16728
|
+
{
|
|
16729
|
+
"$ref": "#/definitions/ThirdPartyRelationshipAttributeQueryOwner"
|
|
16730
|
+
},
|
|
16731
|
+
{
|
|
16732
|
+
"type": "string",
|
|
16733
|
+
"const": "thirdParty"
|
|
16734
|
+
},
|
|
16735
|
+
{
|
|
16736
|
+
"type": "string",
|
|
16737
|
+
"const": "recipient"
|
|
16738
|
+
},
|
|
16739
|
+
{
|
|
16740
|
+
"type": "string",
|
|
16741
|
+
"const": ""
|
|
16742
|
+
}
|
|
16743
|
+
]
|
|
16656
16744
|
},
|
|
16657
16745
|
"thirdParty": {
|
|
16658
16746
|
"type": "array",
|
|
@@ -16674,6 +16762,14 @@ exports.ExecuteThirdPartyRelationshipAttributeQueryRequest = {
|
|
|
16674
16762
|
"thirdParty"
|
|
16675
16763
|
],
|
|
16676
16764
|
"additionalProperties": false
|
|
16765
|
+
},
|
|
16766
|
+
"ThirdPartyRelationshipAttributeQueryOwner": {
|
|
16767
|
+
"type": "string",
|
|
16768
|
+
"enum": [
|
|
16769
|
+
"thirdParty",
|
|
16770
|
+
"recipient",
|
|
16771
|
+
""
|
|
16772
|
+
]
|
|
16677
16773
|
}
|
|
16678
16774
|
}
|
|
16679
16775
|
};
|