@nmshd/runtime 2.7.2 → 2.8.0
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 +5 -5
- package/dist/dataViews/DataViewExpander.js +31 -1
- package/dist/dataViews/DataViewExpander.js.map +1 -1
- package/dist/dataViews/consumption/LocalAttributeDVO.d.ts +1 -0
- package/dist/dataViews/content/AttributeDVOs.d.ts +6 -1
- package/dist/useCases/common/Schemas.js +273 -0
- package/dist/useCases/common/Schemas.js.map +1 -1
- package/dist/useCases/consumption/attributes/ValidateIQLQuery.d.ts +1 -2
- package/lib-web/nmshd.runtime.js +320 -7
- package/lib-web/nmshd.runtime.js.map +1 -1
- package/lib-web/nmshd.runtime.min.js +3 -3
- package/lib-web/nmshd.runtime.min.js.map +1 -1
- package/package.json +7 -7
|
@@ -2461,6 +2461,9 @@ exports.ExecuteIQLQueryRequest = {
|
|
|
2461
2461
|
"properties": {
|
|
2462
2462
|
"queryString": {
|
|
2463
2463
|
"type": "string"
|
|
2464
|
+
},
|
|
2465
|
+
"attributeCreationHints": {
|
|
2466
|
+
"$ref": "#/definitions/IIQLQueryCreationHints"
|
|
2464
2467
|
}
|
|
2465
2468
|
},
|
|
2466
2469
|
"required": [
|
|
@@ -2468,6 +2471,87 @@ exports.ExecuteIQLQueryRequest = {
|
|
|
2468
2471
|
],
|
|
2469
2472
|
"additionalProperties": false
|
|
2470
2473
|
},
|
|
2474
|
+
"IIQLQueryCreationHints": {
|
|
2475
|
+
"type": "object",
|
|
2476
|
+
"properties": {
|
|
2477
|
+
"valueType": {
|
|
2478
|
+
"$ref": "#/definitions/AttributeValues.Identity.TypeName"
|
|
2479
|
+
},
|
|
2480
|
+
"tags": {
|
|
2481
|
+
"type": "array",
|
|
2482
|
+
"items": {
|
|
2483
|
+
"type": "string"
|
|
2484
|
+
}
|
|
2485
|
+
}
|
|
2486
|
+
},
|
|
2487
|
+
"required": [
|
|
2488
|
+
"valueType"
|
|
2489
|
+
],
|
|
2490
|
+
"additionalProperties": false
|
|
2491
|
+
},
|
|
2492
|
+
"AttributeValues.Identity.TypeName": {
|
|
2493
|
+
"anyOf": [
|
|
2494
|
+
{
|
|
2495
|
+
"$ref": "#/definitions/AttributeValues.Identity.Editable.TypeName"
|
|
2496
|
+
},
|
|
2497
|
+
{
|
|
2498
|
+
"$ref": "#/definitions/AttributeValues.Identity.Uneditable.TypeName"
|
|
2499
|
+
}
|
|
2500
|
+
]
|
|
2501
|
+
},
|
|
2502
|
+
"AttributeValues.Identity.Editable.TypeName": {
|
|
2503
|
+
"type": "string",
|
|
2504
|
+
"enum": [
|
|
2505
|
+
"Affiliation",
|
|
2506
|
+
"BirthDate",
|
|
2507
|
+
"BirthName",
|
|
2508
|
+
"BirthPlace",
|
|
2509
|
+
"Citizenship",
|
|
2510
|
+
"CommunicationLanguage",
|
|
2511
|
+
"DeliveryBoxAddress",
|
|
2512
|
+
"DisplayName",
|
|
2513
|
+
"EMailAddress",
|
|
2514
|
+
"FaxNumber",
|
|
2515
|
+
"IdentityFileReference",
|
|
2516
|
+
"SchematizedXML",
|
|
2517
|
+
"JobTitle",
|
|
2518
|
+
"Nationality",
|
|
2519
|
+
"PersonName",
|
|
2520
|
+
"PhoneNumber",
|
|
2521
|
+
"PostOfficeBoxAddress",
|
|
2522
|
+
"Pseudonym",
|
|
2523
|
+
"Sex",
|
|
2524
|
+
"StreetAddress",
|
|
2525
|
+
"Website"
|
|
2526
|
+
]
|
|
2527
|
+
},
|
|
2528
|
+
"AttributeValues.Identity.Uneditable.TypeName": {
|
|
2529
|
+
"type": "string",
|
|
2530
|
+
"enum": [
|
|
2531
|
+
"AffiliationOrganization",
|
|
2532
|
+
"AffiliationRole",
|
|
2533
|
+
"AffiliationUnit",
|
|
2534
|
+
"BirthCity",
|
|
2535
|
+
"BirthCountry",
|
|
2536
|
+
"BirthDay",
|
|
2537
|
+
"BirthMonth",
|
|
2538
|
+
"BirthState",
|
|
2539
|
+
"BirthYear",
|
|
2540
|
+
"City",
|
|
2541
|
+
"Country",
|
|
2542
|
+
"GivenName",
|
|
2543
|
+
"HonorificPrefix",
|
|
2544
|
+
"HonorificSuffix",
|
|
2545
|
+
"HouseNumber",
|
|
2546
|
+
"MiddleName",
|
|
2547
|
+
"SchematizedXML",
|
|
2548
|
+
"State",
|
|
2549
|
+
"Statement",
|
|
2550
|
+
"Street",
|
|
2551
|
+
"Surname",
|
|
2552
|
+
"ZipCode"
|
|
2553
|
+
]
|
|
2554
|
+
},
|
|
2471
2555
|
"IQLQueryJSON": {
|
|
2472
2556
|
"type": "object",
|
|
2473
2557
|
"properties": {
|
|
@@ -2483,6 +2567,9 @@ exports.ExecuteIQLQueryRequest = {
|
|
|
2483
2567
|
},
|
|
2484
2568
|
"queryString": {
|
|
2485
2569
|
"type": "string"
|
|
2570
|
+
},
|
|
2571
|
+
"attributeCreationHints": {
|
|
2572
|
+
"$ref": "#/definitions/IQLQueryCreationHintsJSON"
|
|
2486
2573
|
}
|
|
2487
2574
|
},
|
|
2488
2575
|
"required": [
|
|
@@ -2490,6 +2577,24 @@ exports.ExecuteIQLQueryRequest = {
|
|
|
2490
2577
|
"queryString"
|
|
2491
2578
|
],
|
|
2492
2579
|
"additionalProperties": false
|
|
2580
|
+
},
|
|
2581
|
+
"IQLQueryCreationHintsJSON": {
|
|
2582
|
+
"type": "object",
|
|
2583
|
+
"properties": {
|
|
2584
|
+
"valueType": {
|
|
2585
|
+
"$ref": "#/definitions/AttributeValues.Identity.TypeName"
|
|
2586
|
+
},
|
|
2587
|
+
"tags": {
|
|
2588
|
+
"type": "array",
|
|
2589
|
+
"items": {
|
|
2590
|
+
"type": "string"
|
|
2591
|
+
}
|
|
2592
|
+
}
|
|
2593
|
+
},
|
|
2594
|
+
"required": [
|
|
2595
|
+
"valueType"
|
|
2596
|
+
],
|
|
2597
|
+
"additionalProperties": false
|
|
2493
2598
|
}
|
|
2494
2599
|
}
|
|
2495
2600
|
};
|
|
@@ -6269,6 +6374,9 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
6269
6374
|
},
|
|
6270
6375
|
"queryString": {
|
|
6271
6376
|
"type": "string"
|
|
6377
|
+
},
|
|
6378
|
+
"attributeCreationHints": {
|
|
6379
|
+
"$ref": "#/definitions/IQLQueryCreationHintsJSON"
|
|
6272
6380
|
}
|
|
6273
6381
|
},
|
|
6274
6382
|
"required": [
|
|
@@ -6277,6 +6385,24 @@ exports.CanCreateOutgoingRequestRequest = {
|
|
|
6277
6385
|
],
|
|
6278
6386
|
"additionalProperties": false
|
|
6279
6387
|
},
|
|
6388
|
+
"IQLQueryCreationHintsJSON": {
|
|
6389
|
+
"type": "object",
|
|
6390
|
+
"properties": {
|
|
6391
|
+
"valueType": {
|
|
6392
|
+
"$ref": "#/definitions/AttributeValues.Identity.TypeName"
|
|
6393
|
+
},
|
|
6394
|
+
"tags": {
|
|
6395
|
+
"type": "array",
|
|
6396
|
+
"items": {
|
|
6397
|
+
"type": "string"
|
|
6398
|
+
}
|
|
6399
|
+
}
|
|
6400
|
+
},
|
|
6401
|
+
"required": [
|
|
6402
|
+
"valueType"
|
|
6403
|
+
],
|
|
6404
|
+
"additionalProperties": false
|
|
6405
|
+
},
|
|
6280
6406
|
"ReadAttributeRequestItemJSON": {
|
|
6281
6407
|
"type": "object",
|
|
6282
6408
|
"properties": {
|
|
@@ -14459,6 +14585,9 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
14459
14585
|
},
|
|
14460
14586
|
"queryString": {
|
|
14461
14587
|
"type": "string"
|
|
14588
|
+
},
|
|
14589
|
+
"attributeCreationHints": {
|
|
14590
|
+
"$ref": "#/definitions/IQLQueryCreationHintsJSON"
|
|
14462
14591
|
}
|
|
14463
14592
|
},
|
|
14464
14593
|
"required": [
|
|
@@ -14467,6 +14596,24 @@ exports.CreateOutgoingRequestRequest = {
|
|
|
14467
14596
|
],
|
|
14468
14597
|
"additionalProperties": false
|
|
14469
14598
|
},
|
|
14599
|
+
"IQLQueryCreationHintsJSON": {
|
|
14600
|
+
"type": "object",
|
|
14601
|
+
"properties": {
|
|
14602
|
+
"valueType": {
|
|
14603
|
+
"$ref": "#/definitions/AttributeValues.Identity.TypeName"
|
|
14604
|
+
},
|
|
14605
|
+
"tags": {
|
|
14606
|
+
"type": "array",
|
|
14607
|
+
"items": {
|
|
14608
|
+
"type": "string"
|
|
14609
|
+
}
|
|
14610
|
+
}
|
|
14611
|
+
},
|
|
14612
|
+
"required": [
|
|
14613
|
+
"valueType"
|
|
14614
|
+
],
|
|
14615
|
+
"additionalProperties": false
|
|
14616
|
+
},
|
|
14470
14617
|
"ReadAttributeRequestItemJSON": {
|
|
14471
14618
|
"type": "object",
|
|
14472
14619
|
"properties": {
|
|
@@ -17902,6 +18049,9 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
17902
18049
|
},
|
|
17903
18050
|
"queryString": {
|
|
17904
18051
|
"type": "string"
|
|
18052
|
+
},
|
|
18053
|
+
"attributeCreationHints": {
|
|
18054
|
+
"$ref": "#/definitions/IQLQueryCreationHintsJSON"
|
|
17905
18055
|
}
|
|
17906
18056
|
},
|
|
17907
18057
|
"required": [
|
|
@@ -17910,6 +18060,24 @@ exports.ReceivedIncomingRequestRequest = {
|
|
|
17910
18060
|
],
|
|
17911
18061
|
"additionalProperties": false
|
|
17912
18062
|
},
|
|
18063
|
+
"IQLQueryCreationHintsJSON": {
|
|
18064
|
+
"type": "object",
|
|
18065
|
+
"properties": {
|
|
18066
|
+
"valueType": {
|
|
18067
|
+
"$ref": "#/definitions/AttributeValues.Identity.TypeName"
|
|
18068
|
+
},
|
|
18069
|
+
"tags": {
|
|
18070
|
+
"type": "array",
|
|
18071
|
+
"items": {
|
|
18072
|
+
"type": "string"
|
|
18073
|
+
}
|
|
18074
|
+
}
|
|
18075
|
+
},
|
|
18076
|
+
"required": [
|
|
18077
|
+
"valueType"
|
|
18078
|
+
],
|
|
18079
|
+
"additionalProperties": false
|
|
18080
|
+
},
|
|
17913
18081
|
"ReadAttributeRequestItemJSON": {
|
|
17914
18082
|
"type": "object",
|
|
17915
18083
|
"properties": {
|
|
@@ -22620,6 +22788,9 @@ exports.ValidateIQLQueryRequest = {
|
|
|
22620
22788
|
"properties": {
|
|
22621
22789
|
"queryString": {
|
|
22622
22790
|
"type": "string"
|
|
22791
|
+
},
|
|
22792
|
+
"attributeCreationHints": {
|
|
22793
|
+
"$ref": "#/definitions/IIQLQueryCreationHints"
|
|
22623
22794
|
}
|
|
22624
22795
|
},
|
|
22625
22796
|
"required": [
|
|
@@ -22627,6 +22798,87 @@ exports.ValidateIQLQueryRequest = {
|
|
|
22627
22798
|
],
|
|
22628
22799
|
"additionalProperties": false
|
|
22629
22800
|
},
|
|
22801
|
+
"IIQLQueryCreationHints": {
|
|
22802
|
+
"type": "object",
|
|
22803
|
+
"properties": {
|
|
22804
|
+
"valueType": {
|
|
22805
|
+
"$ref": "#/definitions/AttributeValues.Identity.TypeName"
|
|
22806
|
+
},
|
|
22807
|
+
"tags": {
|
|
22808
|
+
"type": "array",
|
|
22809
|
+
"items": {
|
|
22810
|
+
"type": "string"
|
|
22811
|
+
}
|
|
22812
|
+
}
|
|
22813
|
+
},
|
|
22814
|
+
"required": [
|
|
22815
|
+
"valueType"
|
|
22816
|
+
],
|
|
22817
|
+
"additionalProperties": false
|
|
22818
|
+
},
|
|
22819
|
+
"AttributeValues.Identity.TypeName": {
|
|
22820
|
+
"anyOf": [
|
|
22821
|
+
{
|
|
22822
|
+
"$ref": "#/definitions/AttributeValues.Identity.Editable.TypeName"
|
|
22823
|
+
},
|
|
22824
|
+
{
|
|
22825
|
+
"$ref": "#/definitions/AttributeValues.Identity.Uneditable.TypeName"
|
|
22826
|
+
}
|
|
22827
|
+
]
|
|
22828
|
+
},
|
|
22829
|
+
"AttributeValues.Identity.Editable.TypeName": {
|
|
22830
|
+
"type": "string",
|
|
22831
|
+
"enum": [
|
|
22832
|
+
"Affiliation",
|
|
22833
|
+
"BirthDate",
|
|
22834
|
+
"BirthName",
|
|
22835
|
+
"BirthPlace",
|
|
22836
|
+
"Citizenship",
|
|
22837
|
+
"CommunicationLanguage",
|
|
22838
|
+
"DeliveryBoxAddress",
|
|
22839
|
+
"DisplayName",
|
|
22840
|
+
"EMailAddress",
|
|
22841
|
+
"FaxNumber",
|
|
22842
|
+
"IdentityFileReference",
|
|
22843
|
+
"SchematizedXML",
|
|
22844
|
+
"JobTitle",
|
|
22845
|
+
"Nationality",
|
|
22846
|
+
"PersonName",
|
|
22847
|
+
"PhoneNumber",
|
|
22848
|
+
"PostOfficeBoxAddress",
|
|
22849
|
+
"Pseudonym",
|
|
22850
|
+
"Sex",
|
|
22851
|
+
"StreetAddress",
|
|
22852
|
+
"Website"
|
|
22853
|
+
]
|
|
22854
|
+
},
|
|
22855
|
+
"AttributeValues.Identity.Uneditable.TypeName": {
|
|
22856
|
+
"type": "string",
|
|
22857
|
+
"enum": [
|
|
22858
|
+
"AffiliationOrganization",
|
|
22859
|
+
"AffiliationRole",
|
|
22860
|
+
"AffiliationUnit",
|
|
22861
|
+
"BirthCity",
|
|
22862
|
+
"BirthCountry",
|
|
22863
|
+
"BirthDay",
|
|
22864
|
+
"BirthMonth",
|
|
22865
|
+
"BirthState",
|
|
22866
|
+
"BirthYear",
|
|
22867
|
+
"City",
|
|
22868
|
+
"Country",
|
|
22869
|
+
"GivenName",
|
|
22870
|
+
"HonorificPrefix",
|
|
22871
|
+
"HonorificSuffix",
|
|
22872
|
+
"HouseNumber",
|
|
22873
|
+
"MiddleName",
|
|
22874
|
+
"SchematizedXML",
|
|
22875
|
+
"State",
|
|
22876
|
+
"Statement",
|
|
22877
|
+
"Street",
|
|
22878
|
+
"Surname",
|
|
22879
|
+
"ZipCode"
|
|
22880
|
+
]
|
|
22881
|
+
},
|
|
22630
22882
|
"IQLQueryJSON": {
|
|
22631
22883
|
"type": "object",
|
|
22632
22884
|
"properties": {
|
|
@@ -22642,6 +22894,9 @@ exports.ValidateIQLQueryRequest = {
|
|
|
22642
22894
|
},
|
|
22643
22895
|
"queryString": {
|
|
22644
22896
|
"type": "string"
|
|
22897
|
+
},
|
|
22898
|
+
"attributeCreationHints": {
|
|
22899
|
+
"$ref": "#/definitions/IQLQueryCreationHintsJSON"
|
|
22645
22900
|
}
|
|
22646
22901
|
},
|
|
22647
22902
|
"required": [
|
|
@@ -22649,6 +22904,24 @@ exports.ValidateIQLQueryRequest = {
|
|
|
22649
22904
|
"queryString"
|
|
22650
22905
|
],
|
|
22651
22906
|
"additionalProperties": false
|
|
22907
|
+
},
|
|
22908
|
+
"IQLQueryCreationHintsJSON": {
|
|
22909
|
+
"type": "object",
|
|
22910
|
+
"properties": {
|
|
22911
|
+
"valueType": {
|
|
22912
|
+
"$ref": "#/definitions/AttributeValues.Identity.TypeName"
|
|
22913
|
+
},
|
|
22914
|
+
"tags": {
|
|
22915
|
+
"type": "array",
|
|
22916
|
+
"items": {
|
|
22917
|
+
"type": "string"
|
|
22918
|
+
}
|
|
22919
|
+
}
|
|
22920
|
+
},
|
|
22921
|
+
"required": [
|
|
22922
|
+
"valueType"
|
|
22923
|
+
],
|
|
22924
|
+
"additionalProperties": false
|
|
22652
22925
|
}
|
|
22653
22926
|
}
|
|
22654
22927
|
};
|