@nmshd/runtime 2.0.2 → 2.1.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.
Files changed (28) hide show
  1. package/dist/Runtime.js +12 -12
  2. package/dist/Runtime.js.map +1 -1
  3. package/dist/buildInformation.js +5 -5
  4. package/dist/dataViews/DataViewExpander.js +5 -21
  5. package/dist/dataViews/DataViewExpander.js.map +1 -1
  6. package/dist/dataViews/consumption/LocalAttributeDVO.d.ts +1 -1
  7. package/dist/dataViews/content/AttributeDVOs.d.ts +1 -1
  8. package/dist/extensibility/facades/consumption/AttributesFacade.d.ts +1 -1
  9. package/dist/modules/AttributeListenerModule.js +2 -3
  10. package/dist/modules/AttributeListenerModule.js.map +1 -1
  11. package/dist/useCases/common/Schemas.js +1118 -263
  12. package/dist/useCases/common/Schemas.js.map +1 -1
  13. package/dist/useCases/common/validation/ValidatableStrings.d.ts +18 -18
  14. package/dist/useCases/consumption/attributes/ExecuteThirdPartyRelationshipAttributeQuery.d.ts +2 -2
  15. package/dist/useCases/consumption/attributes/ExecuteThirdPartyRelationshipAttributeQuery.js +1 -4
  16. package/dist/useCases/consumption/attributes/ExecuteThirdPartyRelationshipAttributeQuery.js.map +1 -1
  17. package/dist/useCases/transport/account/LoadItemFromTruncatedReference.d.ts +1 -1
  18. package/dist/useCases/transport/challenges/CreateChallenge.d.ts +1 -1
  19. package/dist/useCases/transport/files/GetOrLoadFile.d.ts +1 -1
  20. package/dist/useCases/transport/files/UploadOwnFile.js +3 -3
  21. package/dist/useCases/transport/files/UploadOwnFile.js.map +1 -1
  22. package/dist/useCases/transport/relationshipTemplates/LoadPeerRelationshipTemplate.d.ts +1 -1
  23. package/dist/useCases/transport/tokens/LoadPeerToken.d.ts +1 -1
  24. package/lib-web/nmshd.runtime.js +1103 -264
  25. package/lib-web/nmshd.runtime.js.map +1 -1
  26. package/lib-web/nmshd.runtime.min.js +3 -3
  27. package/lib-web/nmshd.runtime.min.js.map +1 -1
  28. package/package.json +8 -8
@@ -122,18 +122,6 @@ const RuntimeLoggerFactory_1 = __webpack_require__(/*! ./RuntimeLoggerFactory */
122
122
  const useCases_1 = __webpack_require__(/*! ./useCases */ "./dist/useCases/index.js");
123
123
  const SchemaRepository_1 = __webpack_require__(/*! ./useCases/common/SchemaRepository */ "./dist/useCases/common/SchemaRepository.js");
124
124
  class Runtime {
125
- constructor(runtimeConfig, loggerFactory, eventBus) {
126
- this.runtimeConfig = runtimeConfig;
127
- this.loggerFactory = loggerFactory;
128
- this._isInitialized = false;
129
- this._isStarted = false;
130
- this._logger = this.loggerFactory.getLogger(this.constructor.name);
131
- this._eventBus =
132
- eventBus ??
133
- new ts_utils_1.EventEmitter2EventBus((error, namespace) => {
134
- this.logger.error(`An error was thrown in an event handler of the runtime event bus (namespace: '${namespace}'). Root error: ${error}`);
135
- });
136
- }
137
125
  get logger() {
138
126
  return this._logger;
139
127
  }
@@ -168,6 +156,18 @@ class Runtime {
168
156
  get eventBus() {
169
157
  return this._eventBus;
170
158
  }
159
+ constructor(runtimeConfig, loggerFactory, eventBus) {
160
+ this.runtimeConfig = runtimeConfig;
161
+ this.loggerFactory = loggerFactory;
162
+ this._isInitialized = false;
163
+ this._isStarted = false;
164
+ this._logger = this.loggerFactory.getLogger(this.constructor.name);
165
+ this._eventBus =
166
+ eventBus ??
167
+ new ts_utils_1.EventEmitter2EventBus((error, namespace) => {
168
+ this.logger.error(`An error was thrown in an event handler of the runtime event bus (namespace: '${namespace}'). Root error: ${error}`);
169
+ });
170
+ }
171
171
  get isInitialized() {
172
172
  return this._isInitialized;
173
173
  }
@@ -466,11 +466,11 @@ const content_1 = __webpack_require__(/*! @nmshd/content */ "@nmshd/content");
466
466
  const crypto_1 = __webpack_require__(/*! @nmshd/crypto */ "@nmshd/crypto");
467
467
  const transport_1 = __webpack_require__(/*! @nmshd/transport */ "@nmshd/transport");
468
468
  exports.buildInformation = {
469
- version: "2.0.2",
470
- build: "129",
471
- date: "2022-11-11T12:52:53+00:00",
472
- commit: "1422fe683fd588abbcbb9aff14ffd6976fd7ec1e",
473
- dependencies: {"@js-soft/docdb-querytranslator":"1.1.0","@js-soft/logging-abstractions":"1.0.0","@js-soft/ts-serval":"2.0.5","@js-soft/ts-utils":"^2.3.0","@nmshd/consumption":"2.0.0","@nmshd/content":"2.0.2","@nmshd/crypto":"2.0.2","@nmshd/transport":"2.0.0","ajv":"^8.11.0","ajv-errors":"^3.0.0","ajv-formats":"^2.1.1","json-stringify-safe":"^5.0.1","luxon":"^3.1.0","qrcode":"1.5.1","reflect-metadata":"0.1.13","ts-simple-nameof":"1.3.1","typescript-ioc":"3.2.2"},
469
+ version: "2.1.0",
470
+ build: "130",
471
+ date: "2022-11-22T07:57:52+00:00",
472
+ commit: "8b527c1d7fb254864017e07e9b16b3b2640a393b",
473
+ dependencies: {"@js-soft/docdb-querytranslator":"1.1.0","@js-soft/logging-abstractions":"1.0.0","@js-soft/ts-serval":"2.0.5","@js-soft/ts-utils":"^2.3.0","@nmshd/consumption":"2.1.1","@nmshd/content":"2.1.2","@nmshd/crypto":"2.0.3","@nmshd/transport":"2.0.0","ajv":"^8.11.2","ajv-errors":"^3.0.0","ajv-formats":"^2.1.1","json-stringify-safe":"^5.0.1","luxon":"^3.1.0","qrcode":"1.5.1","reflect-metadata":"0.1.13","ts-simple-nameof":"1.3.1","typescript-ioc":"3.2.2"},
474
474
  libraries: {
475
475
  serval: ts_serval_1.buildInformation,
476
476
  consumption: consumption_1.buildInformation,
@@ -1422,6 +1422,7 @@ let DataViewExpander = class DataViewExpander {
1422
1422
  async expandThirdPartyRelationshipAttributeQuery(query) {
1423
1423
  const name = "i18n://dvo.attributeQuery.name.ThirdPartyRelationshipAttributeQuery";
1424
1424
  const description = "i18n://dvo.attributeQuery.name.ThirdPartyRelationshipAttributeQuery";
1425
+ const thirdParty = await Promise.all(query.thirdParty.map((tp) => this.expandAddress(tp)));
1425
1426
  return {
1426
1427
  type: "ThirdPartyRelationshipAttributeQueryDVO",
1427
1428
  id: "",
@@ -1430,7 +1431,7 @@ let DataViewExpander = class DataViewExpander {
1430
1431
  validFrom: query.validFrom,
1431
1432
  validTo: query.validTo,
1432
1433
  owner: await this.expandAddress(query.owner),
1433
- thirdParty: await this.expandAddress(query.thirdParty),
1434
+ thirdParty,
1434
1435
  key: query.key,
1435
1436
  isProcessed: false
1436
1437
  };
@@ -1505,29 +1506,12 @@ let DataViewExpander = class DataViewExpander {
1505
1506
  };
1506
1507
  }
1507
1508
  async processThirdPartyRelationshipAttributeQuery(query) {
1508
- const matchedAttributeDTOResult = await this.consumption.attributes.executeThirdPartyRelationshipAttributeQuery({
1509
- query
1510
- });
1511
- if (matchedAttributeDTOResult.isError) {
1512
- if (matchedAttributeDTOResult.error.code !== "error.runtime.recordNotFound") {
1513
- throw matchedAttributeDTOResult.error;
1514
- }
1515
- return {
1516
- ...(await this.expandThirdPartyRelationshipAttributeQuery(query)),
1517
- type: "ProcessedThirdPartyRelationshipAttributeQueryDVO",
1518
- results: [],
1519
- isProcessed: true
1520
- };
1521
- }
1522
- const matchedAttributeDVO = await this.expandLocalAttributeDTO(matchedAttributeDTOResult.value);
1523
- const correctlyTypedAttribute = matchedAttributeDVO;
1509
+ const matchedAttributeDTOResult = await this.consumption.attributes.executeThirdPartyRelationshipAttributeQuery({ query });
1510
+ const matchedAttributeDVOs = await this.expandLocalAttributeDTOs(matchedAttributeDTOResult.value);
1524
1511
  return {
1525
1512
  ...(await this.expandThirdPartyRelationshipAttributeQuery(query)),
1526
1513
  type: "ProcessedThirdPartyRelationshipAttributeQueryDVO",
1527
- results: [correctlyTypedAttribute],
1528
- renderHints: correctlyTypedAttribute.renderHints,
1529
- valueHints: correctlyTypedAttribute.valueHints,
1530
- valueType: correctlyTypedAttribute.valueType,
1514
+ results: matchedAttributeDVOs,
1531
1515
  isProcessed: true
1532
1516
  };
1533
1517
  }
@@ -4884,11 +4868,10 @@ class AttributeListenerModule extends extensibility_1.RuntimeModule {
4884
4868
  return false;
4885
4869
  const result = await services.consumptionServices.attributes.executeThirdPartyRelationshipAttributeQuery({ query });
4886
4870
  if (result.isError) {
4887
- if (result.error.code !== "error.runtime.recordNotFound")
4888
- this.logger.error("Could not execute ThirdPartyRelationshipAttributeQuery", result.error);
4871
+ this.logger.error("Could not execute ThirdPartyRelationshipAttributeQuery", result.error);
4889
4872
  return false;
4890
4873
  }
4891
- return result.value.id === attribute.id;
4874
+ return result.value.some((value) => value.id === attribute.id);
4892
4875
  }
4893
4876
  }
4894
4877
  }
@@ -7547,6 +7530,9 @@ exports.CreateAttributeRequest = {
7547
7530
  },
7548
7531
  "description": {
7549
7532
  "type": "string"
7533
+ },
7534
+ "valueHintsOverride": {
7535
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7550
7536
  }
7551
7537
  },
7552
7538
  "required": [
@@ -7556,6 +7542,123 @@ exports.CreateAttributeRequest = {
7556
7542
  ],
7557
7543
  "additionalProperties": false
7558
7544
  },
7545
+ "ValueHintsOverrideJSON": {
7546
+ "type": "object",
7547
+ "additionalProperties": false,
7548
+ "properties": {
7549
+ "@type": {
7550
+ "type": "string",
7551
+ "const": "ValueHints"
7552
+ },
7553
+ "editHelp": {
7554
+ "type": "string"
7555
+ },
7556
+ "min": {
7557
+ "type": "number"
7558
+ },
7559
+ "max": {
7560
+ "type": "number"
7561
+ },
7562
+ "pattern": {
7563
+ "type": "string"
7564
+ },
7565
+ "values": {
7566
+ "type": "array",
7567
+ "items": {
7568
+ "$ref": "#/definitions/ValueHintsValueJSON"
7569
+ }
7570
+ },
7571
+ "defaultValue": {
7572
+ "type": [
7573
+ "string",
7574
+ "number",
7575
+ "boolean"
7576
+ ]
7577
+ },
7578
+ "propertyHints": {
7579
+ "type": "object",
7580
+ "additionalProperties": {
7581
+ "$ref": "#/definitions/ValueHintsJSON"
7582
+ }
7583
+ },
7584
+ "@context": {
7585
+ "type": "string"
7586
+ },
7587
+ "@version": {
7588
+ "type": "string"
7589
+ }
7590
+ }
7591
+ },
7592
+ "ValueHintsValueJSON": {
7593
+ "type": "object",
7594
+ "properties": {
7595
+ "key": {
7596
+ "type": [
7597
+ "string",
7598
+ "number",
7599
+ "boolean"
7600
+ ]
7601
+ },
7602
+ "displayName": {
7603
+ "type": "string"
7604
+ }
7605
+ },
7606
+ "required": [
7607
+ "key",
7608
+ "displayName"
7609
+ ],
7610
+ "additionalProperties": false
7611
+ },
7612
+ "ValueHintsJSON": {
7613
+ "type": "object",
7614
+ "properties": {
7615
+ "@type": {
7616
+ "type": "string",
7617
+ "const": "ValueHints"
7618
+ },
7619
+ "@context": {
7620
+ "type": "string"
7621
+ },
7622
+ "@version": {
7623
+ "type": "string"
7624
+ },
7625
+ "editHelp": {
7626
+ "type": "string"
7627
+ },
7628
+ "min": {
7629
+ "type": "number"
7630
+ },
7631
+ "max": {
7632
+ "type": "number"
7633
+ },
7634
+ "pattern": {
7635
+ "type": "string"
7636
+ },
7637
+ "values": {
7638
+ "type": "array",
7639
+ "items": {
7640
+ "$ref": "#/definitions/ValueHintsValueJSON"
7641
+ }
7642
+ },
7643
+ "defaultValue": {
7644
+ "type": [
7645
+ "string",
7646
+ "number",
7647
+ "boolean"
7648
+ ]
7649
+ },
7650
+ "propertyHints": {
7651
+ "type": "object",
7652
+ "additionalProperties": {
7653
+ "$ref": "#/definitions/ValueHintsJSON"
7654
+ }
7655
+ }
7656
+ },
7657
+ "required": [
7658
+ "@type"
7659
+ ],
7660
+ "additionalProperties": false
7661
+ },
7559
7662
  "ProprietaryCountryJSON": {
7560
7663
  "type": "object",
7561
7664
  "properties": {
@@ -7577,6 +7680,9 @@ exports.CreateAttributeRequest = {
7577
7680
  },
7578
7681
  "description": {
7579
7682
  "type": "string"
7683
+ },
7684
+ "valueHintsOverride": {
7685
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7580
7686
  }
7581
7687
  },
7582
7688
  "required": [
@@ -7607,6 +7713,9 @@ exports.CreateAttributeRequest = {
7607
7713
  },
7608
7714
  "description": {
7609
7715
  "type": "string"
7716
+ },
7717
+ "valueHintsOverride": {
7718
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7610
7719
  }
7611
7720
  },
7612
7721
  "required": [
@@ -7637,6 +7746,9 @@ exports.CreateAttributeRequest = {
7637
7746
  },
7638
7747
  "description": {
7639
7748
  "type": "string"
7749
+ },
7750
+ "valueHintsOverride": {
7751
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7640
7752
  }
7641
7753
  },
7642
7754
  "required": [
@@ -7667,6 +7779,9 @@ exports.CreateAttributeRequest = {
7667
7779
  },
7668
7780
  "description": {
7669
7781
  "type": "string"
7782
+ },
7783
+ "valueHintsOverride": {
7784
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7670
7785
  }
7671
7786
  },
7672
7787
  "required": [
@@ -7697,6 +7812,9 @@ exports.CreateAttributeRequest = {
7697
7812
  },
7698
7813
  "description": {
7699
7814
  "type": "string"
7815
+ },
7816
+ "valueHintsOverride": {
7817
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7700
7818
  }
7701
7819
  },
7702
7820
  "required": [
@@ -7727,6 +7845,9 @@ exports.CreateAttributeRequest = {
7727
7845
  },
7728
7846
  "description": {
7729
7847
  "type": "string"
7848
+ },
7849
+ "valueHintsOverride": {
7850
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7730
7851
  }
7731
7852
  },
7732
7853
  "required": [
@@ -7757,6 +7878,9 @@ exports.CreateAttributeRequest = {
7757
7878
  },
7758
7879
  "description": {
7759
7880
  "type": "string"
7881
+ },
7882
+ "valueHintsOverride": {
7883
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7760
7884
  }
7761
7885
  },
7762
7886
  "required": [
@@ -7787,6 +7911,9 @@ exports.CreateAttributeRequest = {
7787
7911
  },
7788
7912
  "description": {
7789
7913
  "type": "string"
7914
+ },
7915
+ "valueHintsOverride": {
7916
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7790
7917
  }
7791
7918
  },
7792
7919
  "required": [
@@ -7817,6 +7944,9 @@ exports.CreateAttributeRequest = {
7817
7944
  },
7818
7945
  "description": {
7819
7946
  "type": "string"
7947
+ },
7948
+ "valueHintsOverride": {
7949
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7820
7950
  }
7821
7951
  },
7822
7952
  "required": [
@@ -7847,6 +7977,9 @@ exports.CreateAttributeRequest = {
7847
7977
  },
7848
7978
  "description": {
7849
7979
  "type": "string"
7980
+ },
7981
+ "valueHintsOverride": {
7982
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
7850
7983
  }
7851
7984
  },
7852
7985
  "required": [
@@ -8491,7 +8624,10 @@ exports.ExecuteThirdPartyRelationshipAttributeQueryRequest = {
8491
8624
  "$ref": "#/definitions/ICoreAddress"
8492
8625
  },
8493
8626
  "thirdParty": {
8494
- "$ref": "#/definitions/ICoreAddress"
8627
+ "type": "array",
8628
+ "items": {
8629
+ "$ref": "#/definitions/ICoreAddress"
8630
+ }
8495
8631
  }
8496
8632
  },
8497
8633
  "required": [
@@ -8551,7 +8687,10 @@ exports.ExecuteThirdPartyRelationshipAttributeQueryRequest = {
8551
8687
  "type": "string"
8552
8688
  },
8553
8689
  "thirdParty": {
8554
- "type": "string"
8690
+ "type": "array",
8691
+ "items": {
8692
+ "type": "string"
8693
+ }
8555
8694
  }
8556
8695
  },
8557
8696
  "required": [
@@ -9569,6 +9708,9 @@ exports.CanCreateOutgoingRequestRequest = {
9569
9708
  },
9570
9709
  "description": {
9571
9710
  "type": "string"
9711
+ },
9712
+ "valueHintsOverride": {
9713
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
9572
9714
  }
9573
9715
  },
9574
9716
  "required": [
@@ -9578,6 +9720,123 @@ exports.CanCreateOutgoingRequestRequest = {
9578
9720
  ],
9579
9721
  "additionalProperties": false
9580
9722
  },
9723
+ "ValueHintsOverrideJSON": {
9724
+ "type": "object",
9725
+ "additionalProperties": false,
9726
+ "properties": {
9727
+ "@type": {
9728
+ "type": "string",
9729
+ "const": "ValueHints"
9730
+ },
9731
+ "editHelp": {
9732
+ "type": "string"
9733
+ },
9734
+ "min": {
9735
+ "type": "number"
9736
+ },
9737
+ "max": {
9738
+ "type": "number"
9739
+ },
9740
+ "pattern": {
9741
+ "type": "string"
9742
+ },
9743
+ "values": {
9744
+ "type": "array",
9745
+ "items": {
9746
+ "$ref": "#/definitions/ValueHintsValueJSON"
9747
+ }
9748
+ },
9749
+ "defaultValue": {
9750
+ "type": [
9751
+ "string",
9752
+ "number",
9753
+ "boolean"
9754
+ ]
9755
+ },
9756
+ "propertyHints": {
9757
+ "type": "object",
9758
+ "additionalProperties": {
9759
+ "$ref": "#/definitions/ValueHintsJSON"
9760
+ }
9761
+ },
9762
+ "@context": {
9763
+ "type": "string"
9764
+ },
9765
+ "@version": {
9766
+ "type": "string"
9767
+ }
9768
+ }
9769
+ },
9770
+ "ValueHintsValueJSON": {
9771
+ "type": "object",
9772
+ "properties": {
9773
+ "key": {
9774
+ "type": [
9775
+ "string",
9776
+ "number",
9777
+ "boolean"
9778
+ ]
9779
+ },
9780
+ "displayName": {
9781
+ "type": "string"
9782
+ }
9783
+ },
9784
+ "required": [
9785
+ "key",
9786
+ "displayName"
9787
+ ],
9788
+ "additionalProperties": false
9789
+ },
9790
+ "ValueHintsJSON": {
9791
+ "type": "object",
9792
+ "properties": {
9793
+ "@type": {
9794
+ "type": "string",
9795
+ "const": "ValueHints"
9796
+ },
9797
+ "@context": {
9798
+ "type": "string"
9799
+ },
9800
+ "@version": {
9801
+ "type": "string"
9802
+ },
9803
+ "editHelp": {
9804
+ "type": "string"
9805
+ },
9806
+ "min": {
9807
+ "type": "number"
9808
+ },
9809
+ "max": {
9810
+ "type": "number"
9811
+ },
9812
+ "pattern": {
9813
+ "type": "string"
9814
+ },
9815
+ "values": {
9816
+ "type": "array",
9817
+ "items": {
9818
+ "$ref": "#/definitions/ValueHintsValueJSON"
9819
+ }
9820
+ },
9821
+ "defaultValue": {
9822
+ "type": [
9823
+ "string",
9824
+ "number",
9825
+ "boolean"
9826
+ ]
9827
+ },
9828
+ "propertyHints": {
9829
+ "type": "object",
9830
+ "additionalProperties": {
9831
+ "$ref": "#/definitions/ValueHintsJSON"
9832
+ }
9833
+ }
9834
+ },
9835
+ "required": [
9836
+ "@type"
9837
+ ],
9838
+ "additionalProperties": false
9839
+ },
9581
9840
  "ProprietaryCountryJSON": {
9582
9841
  "type": "object",
9583
9842
  "properties": {
@@ -9599,6 +9858,9 @@ exports.CanCreateOutgoingRequestRequest = {
9599
9858
  },
9600
9859
  "description": {
9601
9860
  "type": "string"
9861
+ },
9862
+ "valueHintsOverride": {
9863
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
9602
9864
  }
9603
9865
  },
9604
9866
  "required": [
@@ -9629,6 +9891,9 @@ exports.CanCreateOutgoingRequestRequest = {
9629
9891
  },
9630
9892
  "description": {
9631
9893
  "type": "string"
9894
+ },
9895
+ "valueHintsOverride": {
9896
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
9632
9897
  }
9633
9898
  },
9634
9899
  "required": [
@@ -9659,6 +9924,9 @@ exports.CanCreateOutgoingRequestRequest = {
9659
9924
  },
9660
9925
  "description": {
9661
9926
  "type": "string"
9927
+ },
9928
+ "valueHintsOverride": {
9929
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
9662
9930
  }
9663
9931
  },
9664
9932
  "required": [
@@ -9689,6 +9957,9 @@ exports.CanCreateOutgoingRequestRequest = {
9689
9957
  },
9690
9958
  "description": {
9691
9959
  "type": "string"
9960
+ },
9961
+ "valueHintsOverride": {
9962
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
9692
9963
  }
9693
9964
  },
9694
9965
  "required": [
@@ -9719,6 +9990,9 @@ exports.CanCreateOutgoingRequestRequest = {
9719
9990
  },
9720
9991
  "description": {
9721
9992
  "type": "string"
9993
+ },
9994
+ "valueHintsOverride": {
9995
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
9722
9996
  }
9723
9997
  },
9724
9998
  "required": [
@@ -9749,6 +10023,9 @@ exports.CanCreateOutgoingRequestRequest = {
9749
10023
  },
9750
10024
  "description": {
9751
10025
  "type": "string"
10026
+ },
10027
+ "valueHintsOverride": {
10028
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
9752
10029
  }
9753
10030
  },
9754
10031
  "required": [
@@ -9779,6 +10056,9 @@ exports.CanCreateOutgoingRequestRequest = {
9779
10056
  },
9780
10057
  "description": {
9781
10058
  "type": "string"
10059
+ },
10060
+ "valueHintsOverride": {
10061
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
9782
10062
  }
9783
10063
  },
9784
10064
  "required": [
@@ -9809,6 +10089,9 @@ exports.CanCreateOutgoingRequestRequest = {
9809
10089
  },
9810
10090
  "description": {
9811
10091
  "type": "string"
10092
+ },
10093
+ "valueHintsOverride": {
10094
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
9812
10095
  }
9813
10096
  },
9814
10097
  "required": [
@@ -9839,6 +10122,9 @@ exports.CanCreateOutgoingRequestRequest = {
9839
10122
  },
9840
10123
  "description": {
9841
10124
  "type": "string"
10125
+ },
10126
+ "valueHintsOverride": {
10127
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
9842
10128
  }
9843
10129
  },
9844
10130
  "required": [
@@ -9869,6 +10155,9 @@ exports.CanCreateOutgoingRequestRequest = {
9869
10155
  },
9870
10156
  "description": {
9871
10157
  "type": "string"
10158
+ },
10159
+ "valueHintsOverride": {
10160
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
9872
10161
  }
9873
10162
  },
9874
10163
  "required": [
@@ -11446,76 +11735,6 @@ exports.CanCreateOutgoingRequestRequest = {
11446
11735
  "Consent"
11447
11736
  ]
11448
11737
  },
11449
- "ValueHintsJSON": {
11450
- "type": "object",
11451
- "properties": {
11452
- "@type": {
11453
- "type": "string",
11454
- "const": "ValueHints"
11455
- },
11456
- "@context": {
11457
- "type": "string"
11458
- },
11459
- "@version": {
11460
- "type": "string"
11461
- },
11462
- "editHelp": {
11463
- "type": "string"
11464
- },
11465
- "min": {
11466
- "type": "number"
11467
- },
11468
- "max": {
11469
- "type": "number"
11470
- },
11471
- "pattern": {
11472
- "type": "string"
11473
- },
11474
- "values": {
11475
- "type": "array",
11476
- "items": {
11477
- "$ref": "#/definitions/ValueHintsValueJSON"
11478
- }
11479
- },
11480
- "defaultValue": {
11481
- "type": [
11482
- "string",
11483
- "number",
11484
- "boolean"
11485
- ]
11486
- },
11487
- "propertyHints": {
11488
- "type": "object",
11489
- "additionalProperties": {
11490
- "$ref": "#/definitions/ValueHintsJSON"
11491
- }
11492
- }
11493
- },
11494
- "required": [
11495
- "@type"
11496
- ],
11497
- "additionalProperties": false
11498
- },
11499
- "ValueHintsValueJSON": {
11500
- "type": "object",
11501
- "properties": {
11502
- "key": {
11503
- "type": [
11504
- "string",
11505
- "number",
11506
- "boolean"
11507
- ]
11508
- },
11509
- "displayName": {
11510
- "type": "string"
11511
- }
11512
- },
11513
- "required": [
11514
- "key",
11515
- "displayName"
11516
- ],
11517
- "additionalProperties": false
11518
- },
11519
11738
  "ReadAttributeRequestItemJSON": {
11520
11739
  "type": "object",
11521
11740
  "properties": {
@@ -11596,7 +11815,10 @@ exports.CanCreateOutgoingRequestRequest = {
11596
11815
  "type": "string"
11597
11816
  },
11598
11817
  "thirdParty": {
11599
- "type": "string"
11818
+ "type": "array",
11819
+ "items": {
11820
+ "type": "string"
11821
+ }
11600
11822
  }
11601
11823
  },
11602
11824
  "required": [
@@ -13471,6 +13693,9 @@ exports.CompleteOutgoingRequestRequest = {
13471
13693
  },
13472
13694
  "description": {
13473
13695
  "type": "string"
13696
+ },
13697
+ "valueHintsOverride": {
13698
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
13474
13699
  }
13475
13700
  },
13476
13701
  "required": [
@@ -13480,6 +13705,123 @@ exports.CompleteOutgoingRequestRequest = {
13480
13705
  ],
13481
13706
  "additionalProperties": false
13482
13707
  },
13708
+ "ValueHintsOverrideJSON": {
13709
+ "type": "object",
13710
+ "additionalProperties": false,
13711
+ "properties": {
13712
+ "@type": {
13713
+ "type": "string",
13714
+ "const": "ValueHints"
13715
+ },
13716
+ "editHelp": {
13717
+ "type": "string"
13718
+ },
13719
+ "min": {
13720
+ "type": "number"
13721
+ },
13722
+ "max": {
13723
+ "type": "number"
13724
+ },
13725
+ "pattern": {
13726
+ "type": "string"
13727
+ },
13728
+ "values": {
13729
+ "type": "array",
13730
+ "items": {
13731
+ "$ref": "#/definitions/ValueHintsValueJSON"
13732
+ }
13733
+ },
13734
+ "defaultValue": {
13735
+ "type": [
13736
+ "string",
13737
+ "number",
13738
+ "boolean"
13739
+ ]
13740
+ },
13741
+ "propertyHints": {
13742
+ "type": "object",
13743
+ "additionalProperties": {
13744
+ "$ref": "#/definitions/ValueHintsJSON"
13745
+ }
13746
+ },
13747
+ "@context": {
13748
+ "type": "string"
13749
+ },
13750
+ "@version": {
13751
+ "type": "string"
13752
+ }
13753
+ }
13754
+ },
13755
+ "ValueHintsValueJSON": {
13756
+ "type": "object",
13757
+ "properties": {
13758
+ "key": {
13759
+ "type": [
13760
+ "string",
13761
+ "number",
13762
+ "boolean"
13763
+ ]
13764
+ },
13765
+ "displayName": {
13766
+ "type": "string"
13767
+ }
13768
+ },
13769
+ "required": [
13770
+ "key",
13771
+ "displayName"
13772
+ ],
13773
+ "additionalProperties": false
13774
+ },
13775
+ "ValueHintsJSON": {
13776
+ "type": "object",
13777
+ "properties": {
13778
+ "@type": {
13779
+ "type": "string",
13780
+ "const": "ValueHints"
13781
+ },
13782
+ "@context": {
13783
+ "type": "string"
13784
+ },
13785
+ "@version": {
13786
+ "type": "string"
13787
+ },
13788
+ "editHelp": {
13789
+ "type": "string"
13790
+ },
13791
+ "min": {
13792
+ "type": "number"
13793
+ },
13794
+ "max": {
13795
+ "type": "number"
13796
+ },
13797
+ "pattern": {
13798
+ "type": "string"
13799
+ },
13800
+ "values": {
13801
+ "type": "array",
13802
+ "items": {
13803
+ "$ref": "#/definitions/ValueHintsValueJSON"
13804
+ }
13805
+ },
13806
+ "defaultValue": {
13807
+ "type": [
13808
+ "string",
13809
+ "number",
13810
+ "boolean"
13811
+ ]
13812
+ },
13813
+ "propertyHints": {
13814
+ "type": "object",
13815
+ "additionalProperties": {
13816
+ "$ref": "#/definitions/ValueHintsJSON"
13817
+ }
13818
+ }
13819
+ },
13820
+ "required": [
13821
+ "@type"
13822
+ ],
13823
+ "additionalProperties": false
13824
+ },
13483
13825
  "ProprietaryCountryJSON": {
13484
13826
  "type": "object",
13485
13827
  "properties": {
@@ -13501,6 +13843,9 @@ exports.CompleteOutgoingRequestRequest = {
13501
13843
  },
13502
13844
  "description": {
13503
13845
  "type": "string"
13846
+ },
13847
+ "valueHintsOverride": {
13848
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
13504
13849
  }
13505
13850
  },
13506
13851
  "required": [
@@ -13531,6 +13876,9 @@ exports.CompleteOutgoingRequestRequest = {
13531
13876
  },
13532
13877
  "description": {
13533
13878
  "type": "string"
13879
+ },
13880
+ "valueHintsOverride": {
13881
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
13534
13882
  }
13535
13883
  },
13536
13884
  "required": [
@@ -13561,6 +13909,9 @@ exports.CompleteOutgoingRequestRequest = {
13561
13909
  },
13562
13910
  "description": {
13563
13911
  "type": "string"
13912
+ },
13913
+ "valueHintsOverride": {
13914
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
13564
13915
  }
13565
13916
  },
13566
13917
  "required": [
@@ -13591,6 +13942,9 @@ exports.CompleteOutgoingRequestRequest = {
13591
13942
  },
13592
13943
  "description": {
13593
13944
  "type": "string"
13945
+ },
13946
+ "valueHintsOverride": {
13947
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
13594
13948
  }
13595
13949
  },
13596
13950
  "required": [
@@ -13621,6 +13975,9 @@ exports.CompleteOutgoingRequestRequest = {
13621
13975
  },
13622
13976
  "description": {
13623
13977
  "type": "string"
13978
+ },
13979
+ "valueHintsOverride": {
13980
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
13624
13981
  }
13625
13982
  },
13626
13983
  "required": [
@@ -13651,6 +14008,9 @@ exports.CompleteOutgoingRequestRequest = {
13651
14008
  },
13652
14009
  "description": {
13653
14010
  "type": "string"
14011
+ },
14012
+ "valueHintsOverride": {
14013
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
13654
14014
  }
13655
14015
  },
13656
14016
  "required": [
@@ -13681,6 +14041,9 @@ exports.CompleteOutgoingRequestRequest = {
13681
14041
  },
13682
14042
  "description": {
13683
14043
  "type": "string"
14044
+ },
14045
+ "valueHintsOverride": {
14046
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
13684
14047
  }
13685
14048
  },
13686
14049
  "required": [
@@ -13711,6 +14074,9 @@ exports.CompleteOutgoingRequestRequest = {
13711
14074
  },
13712
14075
  "description": {
13713
14076
  "type": "string"
14077
+ },
14078
+ "valueHintsOverride": {
14079
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
13714
14080
  }
13715
14081
  },
13716
14082
  "required": [
@@ -13741,6 +14107,9 @@ exports.CompleteOutgoingRequestRequest = {
13741
14107
  },
13742
14108
  "description": {
13743
14109
  "type": "string"
14110
+ },
14111
+ "valueHintsOverride": {
14112
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
13744
14113
  }
13745
14114
  },
13746
14115
  "required": [
@@ -13771,6 +14140,9 @@ exports.CompleteOutgoingRequestRequest = {
13771
14140
  },
13772
14141
  "description": {
13773
14142
  "type": "string"
14143
+ },
14144
+ "valueHintsOverride": {
14145
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
13774
14146
  }
13775
14147
  },
13776
14148
  "required": [
@@ -14343,6 +14715,9 @@ exports.CreateOutgoingRequestRequest = {
14343
14715
  },
14344
14716
  "description": {
14345
14717
  "type": "string"
14718
+ },
14719
+ "valueHintsOverride": {
14720
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
14346
14721
  }
14347
14722
  },
14348
14723
  "required": [
@@ -14352,6 +14727,123 @@ exports.CreateOutgoingRequestRequest = {
14352
14727
  ],
14353
14728
  "additionalProperties": false
14354
14729
  },
14730
+ "ValueHintsOverrideJSON": {
14731
+ "type": "object",
14732
+ "additionalProperties": false,
14733
+ "properties": {
14734
+ "@type": {
14735
+ "type": "string",
14736
+ "const": "ValueHints"
14737
+ },
14738
+ "editHelp": {
14739
+ "type": "string"
14740
+ },
14741
+ "min": {
14742
+ "type": "number"
14743
+ },
14744
+ "max": {
14745
+ "type": "number"
14746
+ },
14747
+ "pattern": {
14748
+ "type": "string"
14749
+ },
14750
+ "values": {
14751
+ "type": "array",
14752
+ "items": {
14753
+ "$ref": "#/definitions/ValueHintsValueJSON"
14754
+ }
14755
+ },
14756
+ "defaultValue": {
14757
+ "type": [
14758
+ "string",
14759
+ "number",
14760
+ "boolean"
14761
+ ]
14762
+ },
14763
+ "propertyHints": {
14764
+ "type": "object",
14765
+ "additionalProperties": {
14766
+ "$ref": "#/definitions/ValueHintsJSON"
14767
+ }
14768
+ },
14769
+ "@context": {
14770
+ "type": "string"
14771
+ },
14772
+ "@version": {
14773
+ "type": "string"
14774
+ }
14775
+ }
14776
+ },
14777
+ "ValueHintsValueJSON": {
14778
+ "type": "object",
14779
+ "properties": {
14780
+ "key": {
14781
+ "type": [
14782
+ "string",
14783
+ "number",
14784
+ "boolean"
14785
+ ]
14786
+ },
14787
+ "displayName": {
14788
+ "type": "string"
14789
+ }
14790
+ },
14791
+ "required": [
14792
+ "key",
14793
+ "displayName"
14794
+ ],
14795
+ "additionalProperties": false
14796
+ },
14797
+ "ValueHintsJSON": {
14798
+ "type": "object",
14799
+ "properties": {
14800
+ "@type": {
14801
+ "type": "string",
14802
+ "const": "ValueHints"
14803
+ },
14804
+ "@context": {
14805
+ "type": "string"
14806
+ },
14807
+ "@version": {
14808
+ "type": "string"
14809
+ },
14810
+ "editHelp": {
14811
+ "type": "string"
14812
+ },
14813
+ "min": {
14814
+ "type": "number"
14815
+ },
14816
+ "max": {
14817
+ "type": "number"
14818
+ },
14819
+ "pattern": {
14820
+ "type": "string"
14821
+ },
14822
+ "values": {
14823
+ "type": "array",
14824
+ "items": {
14825
+ "$ref": "#/definitions/ValueHintsValueJSON"
14826
+ }
14827
+ },
14828
+ "defaultValue": {
14829
+ "type": [
14830
+ "string",
14831
+ "number",
14832
+ "boolean"
14833
+ ]
14834
+ },
14835
+ "propertyHints": {
14836
+ "type": "object",
14837
+ "additionalProperties": {
14838
+ "$ref": "#/definitions/ValueHintsJSON"
14839
+ }
14840
+ }
14841
+ },
14842
+ "required": [
14843
+ "@type"
14844
+ ],
14845
+ "additionalProperties": false
14846
+ },
14355
14847
  "ProprietaryCountryJSON": {
14356
14848
  "type": "object",
14357
14849
  "properties": {
@@ -14373,6 +14865,9 @@ exports.CreateOutgoingRequestRequest = {
14373
14865
  },
14374
14866
  "description": {
14375
14867
  "type": "string"
14868
+ },
14869
+ "valueHintsOverride": {
14870
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
14376
14871
  }
14377
14872
  },
14378
14873
  "required": [
@@ -14403,6 +14898,9 @@ exports.CreateOutgoingRequestRequest = {
14403
14898
  },
14404
14899
  "description": {
14405
14900
  "type": "string"
14901
+ },
14902
+ "valueHintsOverride": {
14903
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
14406
14904
  }
14407
14905
  },
14408
14906
  "required": [
@@ -14433,6 +14931,9 @@ exports.CreateOutgoingRequestRequest = {
14433
14931
  },
14434
14932
  "description": {
14435
14933
  "type": "string"
14934
+ },
14935
+ "valueHintsOverride": {
14936
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
14436
14937
  }
14437
14938
  },
14438
14939
  "required": [
@@ -14463,6 +14964,9 @@ exports.CreateOutgoingRequestRequest = {
14463
14964
  },
14464
14965
  "description": {
14465
14966
  "type": "string"
14967
+ },
14968
+ "valueHintsOverride": {
14969
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
14466
14970
  }
14467
14971
  },
14468
14972
  "required": [
@@ -14493,6 +14997,9 @@ exports.CreateOutgoingRequestRequest = {
14493
14997
  },
14494
14998
  "description": {
14495
14999
  "type": "string"
15000
+ },
15001
+ "valueHintsOverride": {
15002
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
14496
15003
  }
14497
15004
  },
14498
15005
  "required": [
@@ -14523,6 +15030,9 @@ exports.CreateOutgoingRequestRequest = {
14523
15030
  },
14524
15031
  "description": {
14525
15032
  "type": "string"
15033
+ },
15034
+ "valueHintsOverride": {
15035
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
14526
15036
  }
14527
15037
  },
14528
15038
  "required": [
@@ -14553,6 +15063,9 @@ exports.CreateOutgoingRequestRequest = {
14553
15063
  },
14554
15064
  "description": {
14555
15065
  "type": "string"
15066
+ },
15067
+ "valueHintsOverride": {
15068
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
14556
15069
  }
14557
15070
  },
14558
15071
  "required": [
@@ -14583,6 +15096,9 @@ exports.CreateOutgoingRequestRequest = {
14583
15096
  },
14584
15097
  "description": {
14585
15098
  "type": "string"
15099
+ },
15100
+ "valueHintsOverride": {
15101
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
14586
15102
  }
14587
15103
  },
14588
15104
  "required": [
@@ -14613,6 +15129,9 @@ exports.CreateOutgoingRequestRequest = {
14613
15129
  },
14614
15130
  "description": {
14615
15131
  "type": "string"
15132
+ },
15133
+ "valueHintsOverride": {
15134
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
14616
15135
  }
14617
15136
  },
14618
15137
  "required": [
@@ -14643,6 +15162,9 @@ exports.CreateOutgoingRequestRequest = {
14643
15162
  },
14644
15163
  "description": {
14645
15164
  "type": "string"
15165
+ },
15166
+ "valueHintsOverride": {
15167
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
14646
15168
  }
14647
15169
  },
14648
15170
  "required": [
@@ -16220,76 +16742,6 @@ exports.CreateOutgoingRequestRequest = {
16220
16742
  "Consent"
16221
16743
  ]
16222
16744
  },
16223
- "ValueHintsJSON": {
16224
- "type": "object",
16225
- "properties": {
16226
- "@type": {
16227
- "type": "string",
16228
- "const": "ValueHints"
16229
- },
16230
- "@context": {
16231
- "type": "string"
16232
- },
16233
- "@version": {
16234
- "type": "string"
16235
- },
16236
- "editHelp": {
16237
- "type": "string"
16238
- },
16239
- "min": {
16240
- "type": "number"
16241
- },
16242
- "max": {
16243
- "type": "number"
16244
- },
16245
- "pattern": {
16246
- "type": "string"
16247
- },
16248
- "values": {
16249
- "type": "array",
16250
- "items": {
16251
- "$ref": "#/definitions/ValueHintsValueJSON"
16252
- }
16253
- },
16254
- "defaultValue": {
16255
- "type": [
16256
- "string",
16257
- "number",
16258
- "boolean"
16259
- ]
16260
- },
16261
- "propertyHints": {
16262
- "type": "object",
16263
- "additionalProperties": {
16264
- "$ref": "#/definitions/ValueHintsJSON"
16265
- }
16266
- }
16267
- },
16268
- "required": [
16269
- "@type"
16270
- ],
16271
- "additionalProperties": false
16272
- },
16273
- "ValueHintsValueJSON": {
16274
- "type": "object",
16275
- "properties": {
16276
- "key": {
16277
- "type": [
16278
- "string",
16279
- "number",
16280
- "boolean"
16281
- ]
16282
- },
16283
- "displayName": {
16284
- "type": "string"
16285
- }
16286
- },
16287
- "required": [
16288
- "key",
16289
- "displayName"
16290
- ],
16291
- "additionalProperties": false
16292
- },
16293
16745
  "ReadAttributeRequestItemJSON": {
16294
16746
  "type": "object",
16295
16747
  "properties": {
@@ -16370,7 +16822,10 @@ exports.CreateOutgoingRequestRequest = {
16370
16822
  "type": "string"
16371
16823
  },
16372
16824
  "thirdParty": {
16373
- "type": "string"
16825
+ "type": "array",
16826
+ "items": {
16827
+ "type": "string"
16828
+ }
16374
16829
  }
16375
16830
  },
16376
16831
  "required": [
@@ -17349,6 +17804,9 @@ exports.ReceivedIncomingRequestRequest = {
17349
17804
  },
17350
17805
  "description": {
17351
17806
  "type": "string"
17807
+ },
17808
+ "valueHintsOverride": {
17809
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
17352
17810
  }
17353
17811
  },
17354
17812
  "required": [
@@ -17358,6 +17816,123 @@ exports.ReceivedIncomingRequestRequest = {
17358
17816
  ],
17359
17817
  "additionalProperties": false
17360
17818
  },
17819
+ "ValueHintsOverrideJSON": {
17820
+ "type": "object",
17821
+ "additionalProperties": false,
17822
+ "properties": {
17823
+ "@type": {
17824
+ "type": "string",
17825
+ "const": "ValueHints"
17826
+ },
17827
+ "editHelp": {
17828
+ "type": "string"
17829
+ },
17830
+ "min": {
17831
+ "type": "number"
17832
+ },
17833
+ "max": {
17834
+ "type": "number"
17835
+ },
17836
+ "pattern": {
17837
+ "type": "string"
17838
+ },
17839
+ "values": {
17840
+ "type": "array",
17841
+ "items": {
17842
+ "$ref": "#/definitions/ValueHintsValueJSON"
17843
+ }
17844
+ },
17845
+ "defaultValue": {
17846
+ "type": [
17847
+ "string",
17848
+ "number",
17849
+ "boolean"
17850
+ ]
17851
+ },
17852
+ "propertyHints": {
17853
+ "type": "object",
17854
+ "additionalProperties": {
17855
+ "$ref": "#/definitions/ValueHintsJSON"
17856
+ }
17857
+ },
17858
+ "@context": {
17859
+ "type": "string"
17860
+ },
17861
+ "@version": {
17862
+ "type": "string"
17863
+ }
17864
+ }
17865
+ },
17866
+ "ValueHintsValueJSON": {
17867
+ "type": "object",
17868
+ "properties": {
17869
+ "key": {
17870
+ "type": [
17871
+ "string",
17872
+ "number",
17873
+ "boolean"
17874
+ ]
17875
+ },
17876
+ "displayName": {
17877
+ "type": "string"
17878
+ }
17879
+ },
17880
+ "required": [
17881
+ "key",
17882
+ "displayName"
17883
+ ],
17884
+ "additionalProperties": false
17885
+ },
17886
+ "ValueHintsJSON": {
17887
+ "type": "object",
17888
+ "properties": {
17889
+ "@type": {
17890
+ "type": "string",
17891
+ "const": "ValueHints"
17892
+ },
17893
+ "@context": {
17894
+ "type": "string"
17895
+ },
17896
+ "@version": {
17897
+ "type": "string"
17898
+ },
17899
+ "editHelp": {
17900
+ "type": "string"
17901
+ },
17902
+ "min": {
17903
+ "type": "number"
17904
+ },
17905
+ "max": {
17906
+ "type": "number"
17907
+ },
17908
+ "pattern": {
17909
+ "type": "string"
17910
+ },
17911
+ "values": {
17912
+ "type": "array",
17913
+ "items": {
17914
+ "$ref": "#/definitions/ValueHintsValueJSON"
17915
+ }
17916
+ },
17917
+ "defaultValue": {
17918
+ "type": [
17919
+ "string",
17920
+ "number",
17921
+ "boolean"
17922
+ ]
17923
+ },
17924
+ "propertyHints": {
17925
+ "type": "object",
17926
+ "additionalProperties": {
17927
+ "$ref": "#/definitions/ValueHintsJSON"
17928
+ }
17929
+ }
17930
+ },
17931
+ "required": [
17932
+ "@type"
17933
+ ],
17934
+ "additionalProperties": false
17935
+ },
17361
17936
  "ProprietaryCountryJSON": {
17362
17937
  "type": "object",
17363
17938
  "properties": {
@@ -17379,6 +17954,9 @@ exports.ReceivedIncomingRequestRequest = {
17379
17954
  },
17380
17955
  "description": {
17381
17956
  "type": "string"
17957
+ },
17958
+ "valueHintsOverride": {
17959
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
17382
17960
  }
17383
17961
  },
17384
17962
  "required": [
@@ -17409,6 +17987,9 @@ exports.ReceivedIncomingRequestRequest = {
17409
17987
  },
17410
17988
  "description": {
17411
17989
  "type": "string"
17990
+ },
17991
+ "valueHintsOverride": {
17992
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
17412
17993
  }
17413
17994
  },
17414
17995
  "required": [
@@ -17439,6 +18020,9 @@ exports.ReceivedIncomingRequestRequest = {
17439
18020
  },
17440
18021
  "description": {
17441
18022
  "type": "string"
18023
+ },
18024
+ "valueHintsOverride": {
18025
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
17442
18026
  }
17443
18027
  },
17444
18028
  "required": [
@@ -17469,6 +18053,9 @@ exports.ReceivedIncomingRequestRequest = {
17469
18053
  },
17470
18054
  "description": {
17471
18055
  "type": "string"
18056
+ },
18057
+ "valueHintsOverride": {
18058
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
17472
18059
  }
17473
18060
  },
17474
18061
  "required": [
@@ -17499,6 +18086,9 @@ exports.ReceivedIncomingRequestRequest = {
17499
18086
  },
17500
18087
  "description": {
17501
18088
  "type": "string"
18089
+ },
18090
+ "valueHintsOverride": {
18091
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
17502
18092
  }
17503
18093
  },
17504
18094
  "required": [
@@ -17529,6 +18119,9 @@ exports.ReceivedIncomingRequestRequest = {
17529
18119
  },
17530
18120
  "description": {
17531
18121
  "type": "string"
18122
+ },
18123
+ "valueHintsOverride": {
18124
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
17532
18125
  }
17533
18126
  },
17534
18127
  "required": [
@@ -17559,6 +18152,9 @@ exports.ReceivedIncomingRequestRequest = {
17559
18152
  },
17560
18153
  "description": {
17561
18154
  "type": "string"
18155
+ },
18156
+ "valueHintsOverride": {
18157
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
17562
18158
  }
17563
18159
  },
17564
18160
  "required": [
@@ -17589,6 +18185,9 @@ exports.ReceivedIncomingRequestRequest = {
17589
18185
  },
17590
18186
  "description": {
17591
18187
  "type": "string"
18188
+ },
18189
+ "valueHintsOverride": {
18190
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
17592
18191
  }
17593
18192
  },
17594
18193
  "required": [
@@ -17619,6 +18218,9 @@ exports.ReceivedIncomingRequestRequest = {
17619
18218
  },
17620
18219
  "description": {
17621
18220
  "type": "string"
18221
+ },
18222
+ "valueHintsOverride": {
18223
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
17622
18224
  }
17623
18225
  },
17624
18226
  "required": [
@@ -17649,6 +18251,9 @@ exports.ReceivedIncomingRequestRequest = {
17649
18251
  },
17650
18252
  "description": {
17651
18253
  "type": "string"
18254
+ },
18255
+ "valueHintsOverride": {
18256
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
17652
18257
  }
17653
18258
  },
17654
18259
  "required": [
@@ -19226,76 +19831,6 @@ exports.ReceivedIncomingRequestRequest = {
19226
19831
  "Consent"
19227
19832
  ]
19228
19833
  },
19229
- "ValueHintsJSON": {
19230
- "type": "object",
19231
- "properties": {
19232
- "@type": {
19233
- "type": "string",
19234
- "const": "ValueHints"
19235
- },
19236
- "@context": {
19237
- "type": "string"
19238
- },
19239
- "@version": {
19240
- "type": "string"
19241
- },
19242
- "editHelp": {
19243
- "type": "string"
19244
- },
19245
- "min": {
19246
- "type": "number"
19247
- },
19248
- "max": {
19249
- "type": "number"
19250
- },
19251
- "pattern": {
19252
- "type": "string"
19253
- },
19254
- "values": {
19255
- "type": "array",
19256
- "items": {
19257
- "$ref": "#/definitions/ValueHintsValueJSON"
19258
- }
19259
- },
19260
- "defaultValue": {
19261
- "type": [
19262
- "string",
19263
- "number",
19264
- "boolean"
19265
- ]
19266
- },
19267
- "propertyHints": {
19268
- "type": "object",
19269
- "additionalProperties": {
19270
- "$ref": "#/definitions/ValueHintsJSON"
19271
- }
19272
- }
19273
- },
19274
- "required": [
19275
- "@type"
19276
- ],
19277
- "additionalProperties": false
19278
- },
19279
- "ValueHintsValueJSON": {
19280
- "type": "object",
19281
- "properties": {
19282
- "key": {
19283
- "type": [
19284
- "string",
19285
- "number",
19286
- "boolean"
19287
- ]
19288
- },
19289
- "displayName": {
19290
- "type": "string"
19291
- }
19292
- },
19293
- "required": [
19294
- "key",
19295
- "displayName"
19296
- ],
19297
- "additionalProperties": false
19298
- },
19299
19834
  "ReadAttributeRequestItemJSON": {
19300
19835
  "type": "object",
19301
19836
  "properties": {
@@ -19376,7 +19911,10 @@ exports.ReceivedIncomingRequestRequest = {
19376
19911
  "type": "string"
19377
19912
  },
19378
19913
  "thirdParty": {
19379
- "type": "string"
19914
+ "type": "array",
19915
+ "items": {
19916
+ "type": "string"
19917
+ }
19380
19918
  }
19381
19919
  },
19382
19920
  "required": [
@@ -20979,6 +21517,9 @@ exports.SucceedAttributeRequest = {
20979
21517
  },
20980
21518
  "description": {
20981
21519
  "type": "string"
21520
+ },
21521
+ "valueHintsOverride": {
21522
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
20982
21523
  }
20983
21524
  },
20984
21525
  "required": [
@@ -20988,6 +21529,123 @@ exports.SucceedAttributeRequest = {
20988
21529
  ],
20989
21530
  "additionalProperties": false
20990
21531
  },
21532
+ "ValueHintsOverrideJSON": {
21533
+ "type": "object",
21534
+ "additionalProperties": false,
21535
+ "properties": {
21536
+ "@type": {
21537
+ "type": "string",
21538
+ "const": "ValueHints"
21539
+ },
21540
+ "editHelp": {
21541
+ "type": "string"
21542
+ },
21543
+ "min": {
21544
+ "type": "number"
21545
+ },
21546
+ "max": {
21547
+ "type": "number"
21548
+ },
21549
+ "pattern": {
21550
+ "type": "string"
21551
+ },
21552
+ "values": {
21553
+ "type": "array",
21554
+ "items": {
21555
+ "$ref": "#/definitions/ValueHintsValueJSON"
21556
+ }
21557
+ },
21558
+ "defaultValue": {
21559
+ "type": [
21560
+ "string",
21561
+ "number",
21562
+ "boolean"
21563
+ ]
21564
+ },
21565
+ "propertyHints": {
21566
+ "type": "object",
21567
+ "additionalProperties": {
21568
+ "$ref": "#/definitions/ValueHintsJSON"
21569
+ }
21570
+ },
21571
+ "@context": {
21572
+ "type": "string"
21573
+ },
21574
+ "@version": {
21575
+ "type": "string"
21576
+ }
21577
+ }
21578
+ },
21579
+ "ValueHintsValueJSON": {
21580
+ "type": "object",
21581
+ "properties": {
21582
+ "key": {
21583
+ "type": [
21584
+ "string",
21585
+ "number",
21586
+ "boolean"
21587
+ ]
21588
+ },
21589
+ "displayName": {
21590
+ "type": "string"
21591
+ }
21592
+ },
21593
+ "required": [
21594
+ "key",
21595
+ "displayName"
21596
+ ],
21597
+ "additionalProperties": false
21598
+ },
21599
+ "ValueHintsJSON": {
21600
+ "type": "object",
21601
+ "properties": {
21602
+ "@type": {
21603
+ "type": "string",
21604
+ "const": "ValueHints"
21605
+ },
21606
+ "@context": {
21607
+ "type": "string"
21608
+ },
21609
+ "@version": {
21610
+ "type": "string"
21611
+ },
21612
+ "editHelp": {
21613
+ "type": "string"
21614
+ },
21615
+ "min": {
21616
+ "type": "number"
21617
+ },
21618
+ "max": {
21619
+ "type": "number"
21620
+ },
21621
+ "pattern": {
21622
+ "type": "string"
21623
+ },
21624
+ "values": {
21625
+ "type": "array",
21626
+ "items": {
21627
+ "$ref": "#/definitions/ValueHintsValueJSON"
21628
+ }
21629
+ },
21630
+ "defaultValue": {
21631
+ "type": [
21632
+ "string",
21633
+ "number",
21634
+ "boolean"
21635
+ ]
21636
+ },
21637
+ "propertyHints": {
21638
+ "type": "object",
21639
+ "additionalProperties": {
21640
+ "$ref": "#/definitions/ValueHintsJSON"
21641
+ }
21642
+ }
21643
+ },
21644
+ "required": [
21645
+ "@type"
21646
+ ],
21647
+ "additionalProperties": false
21648
+ },
20991
21649
  "ProprietaryCountryJSON": {
20992
21650
  "type": "object",
20993
21651
  "properties": {
@@ -21009,6 +21667,9 @@ exports.SucceedAttributeRequest = {
21009
21667
  },
21010
21668
  "description": {
21011
21669
  "type": "string"
21670
+ },
21671
+ "valueHintsOverride": {
21672
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
21012
21673
  }
21013
21674
  },
21014
21675
  "required": [
@@ -21039,6 +21700,9 @@ exports.SucceedAttributeRequest = {
21039
21700
  },
21040
21701
  "description": {
21041
21702
  "type": "string"
21703
+ },
21704
+ "valueHintsOverride": {
21705
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
21042
21706
  }
21043
21707
  },
21044
21708
  "required": [
@@ -21069,6 +21733,9 @@ exports.SucceedAttributeRequest = {
21069
21733
  },
21070
21734
  "description": {
21071
21735
  "type": "string"
21736
+ },
21737
+ "valueHintsOverride": {
21738
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
21072
21739
  }
21073
21740
  },
21074
21741
  "required": [
@@ -21099,6 +21766,9 @@ exports.SucceedAttributeRequest = {
21099
21766
  },
21100
21767
  "description": {
21101
21768
  "type": "string"
21769
+ },
21770
+ "valueHintsOverride": {
21771
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
21102
21772
  }
21103
21773
  },
21104
21774
  "required": [
@@ -21129,6 +21799,9 @@ exports.SucceedAttributeRequest = {
21129
21799
  },
21130
21800
  "description": {
21131
21801
  "type": "string"
21802
+ },
21803
+ "valueHintsOverride": {
21804
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
21132
21805
  }
21133
21806
  },
21134
21807
  "required": [
@@ -21159,6 +21832,9 @@ exports.SucceedAttributeRequest = {
21159
21832
  },
21160
21833
  "description": {
21161
21834
  "type": "string"
21835
+ },
21836
+ "valueHintsOverride": {
21837
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
21162
21838
  }
21163
21839
  },
21164
21840
  "required": [
@@ -21189,6 +21865,9 @@ exports.SucceedAttributeRequest = {
21189
21865
  },
21190
21866
  "description": {
21191
21867
  "type": "string"
21868
+ },
21869
+ "valueHintsOverride": {
21870
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
21192
21871
  }
21193
21872
  },
21194
21873
  "required": [
@@ -21219,6 +21898,9 @@ exports.SucceedAttributeRequest = {
21219
21898
  },
21220
21899
  "description": {
21221
21900
  "type": "string"
21901
+ },
21902
+ "valueHintsOverride": {
21903
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
21222
21904
  }
21223
21905
  },
21224
21906
  "required": [
@@ -21249,6 +21931,9 @@ exports.SucceedAttributeRequest = {
21249
21931
  },
21250
21932
  "description": {
21251
21933
  "type": "string"
21934
+ },
21935
+ "valueHintsOverride": {
21936
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
21252
21937
  }
21253
21938
  },
21254
21939
  "required": [
@@ -21279,6 +21964,9 @@ exports.SucceedAttributeRequest = {
21279
21964
  },
21280
21965
  "description": {
21281
21966
  "type": "string"
21967
+ },
21968
+ "valueHintsOverride": {
21969
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
21282
21970
  }
21283
21971
  },
21284
21972
  "required": [
@@ -22708,6 +23396,9 @@ exports.UpdateAttributeRequest = {
22708
23396
  },
22709
23397
  "description": {
22710
23398
  "type": "string"
23399
+ },
23400
+ "valueHintsOverride": {
23401
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
22711
23402
  }
22712
23403
  },
22713
23404
  "required": [
@@ -22717,6 +23408,123 @@ exports.UpdateAttributeRequest = {
22717
23408
  ],
22718
23409
  "additionalProperties": false
22719
23410
  },
23411
+ "ValueHintsOverrideJSON": {
23412
+ "type": "object",
23413
+ "additionalProperties": false,
23414
+ "properties": {
23415
+ "@type": {
23416
+ "type": "string",
23417
+ "const": "ValueHints"
23418
+ },
23419
+ "editHelp": {
23420
+ "type": "string"
23421
+ },
23422
+ "min": {
23423
+ "type": "number"
23424
+ },
23425
+ "max": {
23426
+ "type": "number"
23427
+ },
23428
+ "pattern": {
23429
+ "type": "string"
23430
+ },
23431
+ "values": {
23432
+ "type": "array",
23433
+ "items": {
23434
+ "$ref": "#/definitions/ValueHintsValueJSON"
23435
+ }
23436
+ },
23437
+ "defaultValue": {
23438
+ "type": [
23439
+ "string",
23440
+ "number",
23441
+ "boolean"
23442
+ ]
23443
+ },
23444
+ "propertyHints": {
23445
+ "type": "object",
23446
+ "additionalProperties": {
23447
+ "$ref": "#/definitions/ValueHintsJSON"
23448
+ }
23449
+ },
23450
+ "@context": {
23451
+ "type": "string"
23452
+ },
23453
+ "@version": {
23454
+ "type": "string"
23455
+ }
23456
+ }
23457
+ },
23458
+ "ValueHintsValueJSON": {
23459
+ "type": "object",
23460
+ "properties": {
23461
+ "key": {
23462
+ "type": [
23463
+ "string",
23464
+ "number",
23465
+ "boolean"
23466
+ ]
23467
+ },
23468
+ "displayName": {
23469
+ "type": "string"
23470
+ }
23471
+ },
23472
+ "required": [
23473
+ "key",
23474
+ "displayName"
23475
+ ],
23476
+ "additionalProperties": false
23477
+ },
23478
+ "ValueHintsJSON": {
23479
+ "type": "object",
23480
+ "properties": {
23481
+ "@type": {
23482
+ "type": "string",
23483
+ "const": "ValueHints"
23484
+ },
23485
+ "@context": {
23486
+ "type": "string"
23487
+ },
23488
+ "@version": {
23489
+ "type": "string"
23490
+ },
23491
+ "editHelp": {
23492
+ "type": "string"
23493
+ },
23494
+ "min": {
23495
+ "type": "number"
23496
+ },
23497
+ "max": {
23498
+ "type": "number"
23499
+ },
23500
+ "pattern": {
23501
+ "type": "string"
23502
+ },
23503
+ "values": {
23504
+ "type": "array",
23505
+ "items": {
23506
+ "$ref": "#/definitions/ValueHintsValueJSON"
23507
+ }
23508
+ },
23509
+ "defaultValue": {
23510
+ "type": [
23511
+ "string",
23512
+ "number",
23513
+ "boolean"
23514
+ ]
23515
+ },
23516
+ "propertyHints": {
23517
+ "type": "object",
23518
+ "additionalProperties": {
23519
+ "$ref": "#/definitions/ValueHintsJSON"
23520
+ }
23521
+ }
23522
+ },
23523
+ "required": [
23524
+ "@type"
23525
+ ],
23526
+ "additionalProperties": false
23527
+ },
22720
23528
  "ProprietaryCountryJSON": {
22721
23529
  "type": "object",
22722
23530
  "properties": {
@@ -22738,6 +23546,9 @@ exports.UpdateAttributeRequest = {
22738
23546
  },
22739
23547
  "description": {
22740
23548
  "type": "string"
23549
+ },
23550
+ "valueHintsOverride": {
23551
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
22741
23552
  }
22742
23553
  },
22743
23554
  "required": [
@@ -22768,6 +23579,9 @@ exports.UpdateAttributeRequest = {
22768
23579
  },
22769
23580
  "description": {
22770
23581
  "type": "string"
23582
+ },
23583
+ "valueHintsOverride": {
23584
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
22771
23585
  }
22772
23586
  },
22773
23587
  "required": [
@@ -22798,6 +23612,9 @@ exports.UpdateAttributeRequest = {
22798
23612
  },
22799
23613
  "description": {
22800
23614
  "type": "string"
23615
+ },
23616
+ "valueHintsOverride": {
23617
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
22801
23618
  }
22802
23619
  },
22803
23620
  "required": [
@@ -22828,6 +23645,9 @@ exports.UpdateAttributeRequest = {
22828
23645
  },
22829
23646
  "description": {
22830
23647
  "type": "string"
23648
+ },
23649
+ "valueHintsOverride": {
23650
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
22831
23651
  }
22832
23652
  },
22833
23653
  "required": [
@@ -22858,6 +23678,9 @@ exports.UpdateAttributeRequest = {
22858
23678
  },
22859
23679
  "description": {
22860
23680
  "type": "string"
23681
+ },
23682
+ "valueHintsOverride": {
23683
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
22861
23684
  }
22862
23685
  },
22863
23686
  "required": [
@@ -22888,6 +23711,9 @@ exports.UpdateAttributeRequest = {
22888
23711
  },
22889
23712
  "description": {
22890
23713
  "type": "string"
23714
+ },
23715
+ "valueHintsOverride": {
23716
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
22891
23717
  }
22892
23718
  },
22893
23719
  "required": [
@@ -22918,6 +23744,9 @@ exports.UpdateAttributeRequest = {
22918
23744
  },
22919
23745
  "description": {
22920
23746
  "type": "string"
23747
+ },
23748
+ "valueHintsOverride": {
23749
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
22921
23750
  }
22922
23751
  },
22923
23752
  "required": [
@@ -22948,6 +23777,9 @@ exports.UpdateAttributeRequest = {
22948
23777
  },
22949
23778
  "description": {
22950
23779
  "type": "string"
23780
+ },
23781
+ "valueHintsOverride": {
23782
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
22951
23783
  }
22952
23784
  },
22953
23785
  "required": [
@@ -22978,6 +23810,9 @@ exports.UpdateAttributeRequest = {
22978
23810
  },
22979
23811
  "description": {
22980
23812
  "type": "string"
23813
+ },
23814
+ "valueHintsOverride": {
23815
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
22981
23816
  }
22982
23817
  },
22983
23818
  "required": [
@@ -23008,6 +23843,9 @@ exports.UpdateAttributeRequest = {
23008
23843
  },
23009
23844
  "description": {
23010
23845
  "type": "string"
23846
+ },
23847
+ "valueHintsOverride": {
23848
+ "$ref": "#/definitions/ValueHintsOverrideJSON"
23011
23849
  }
23012
23850
  },
23013
23851
  "required": [
@@ -26097,10 +26935,7 @@ let ExecuteThirdPartyRelationshipAttributeQueryUseCase = class ExecuteThirdParty
26097
26935
  }
26098
26936
  async executeInternal(request) {
26099
26937
  const attribute = await this.attributeController.executeThirdPartyRelationshipAttributeQuery(content_1.ThirdPartyRelationshipAttributeQuery.from(request.query));
26100
- if (!attribute) {
26101
- return ts_utils_1.Result.fail(common_1.RuntimeErrors.general.recordNotFound("RelationshipAttribute"));
26102
- }
26103
- return ts_utils_1.Result.ok(AttributeMapper_1.AttributeMapper.toAttributeDTO(attribute));
26938
+ return ts_utils_1.Result.ok(AttributeMapper_1.AttributeMapper.toAttributeDTOList(attribute));
26104
26939
  }
26105
26940
  };
26106
26941
  ExecuteThirdPartyRelationshipAttributeQueryUseCase = __decorate([
@@ -30830,12 +31665,12 @@ const typescript_ioc_1 = __webpack_require__(/*! typescript-ioc */ "./node_modul
30830
31665
  const common_1 = __webpack_require__(/*! ../../common */ "./dist/useCases/common/index.js");
30831
31666
  const FileMapper_1 = __webpack_require__(/*! ./FileMapper */ "./dist/useCases/transport/files/FileMapper.js");
30832
31667
  let Validator = class Validator extends common_1.SchemaValidator {
30833
- constructor(schemaRepository) {
30834
- super(schemaRepository.getSchema("UploadOwnFileValidatableRequest"));
30835
- }
30836
31668
  set maxFileSize(fileSize) {
30837
31669
  this._maxFileSize = fileSize;
30838
31670
  }
31671
+ constructor(schemaRepository) {
31672
+ super(schemaRepository.getSchema("UploadOwnFileValidatableRequest"));
31673
+ }
30839
31674
  validate(input) {
30840
31675
  const validationResult = super.validate(input);
30841
31676
  if (!validationResult.isValid())
@@ -34732,7 +35567,7 @@ exports["default"] = formatLimitPlugin;
34732
35567
  "use strict";
34733
35568
 
34734
35569
  Object.defineProperty(exports, "__esModule", ({ value: true }));
34735
- exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = void 0;
35570
+ exports.MissingRefError = exports.ValidationError = exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = void 0;
34736
35571
  const core_1 = __webpack_require__(/*! ./core */ "./node_modules/ajv/dist/core.js");
34737
35572
  const draft7_1 = __webpack_require__(/*! ./vocabularies/draft7 */ "./node_modules/ajv/dist/vocabularies/draft7.js");
34738
35573
  const discriminator_1 = __webpack_require__(/*! ./vocabularies/discriminator */ "./node_modules/ajv/dist/vocabularies/discriminator/index.js");
@@ -34773,6 +35608,10 @@ Object.defineProperty(exports, "stringify", ({ enumerable: true, get: function (
34773
35608
  Object.defineProperty(exports, "nil", ({ enumerable: true, get: function () { return codegen_1.nil; } }));
34774
35609
  Object.defineProperty(exports, "Name", ({ enumerable: true, get: function () { return codegen_1.Name; } }));
34775
35610
  Object.defineProperty(exports, "CodeGen", ({ enumerable: true, get: function () { return codegen_1.CodeGen; } }));
35611
+ var validation_error_1 = __webpack_require__(/*! ./runtime/validation_error */ "./node_modules/ajv/dist/runtime/validation_error.js");
35612
+ Object.defineProperty(exports, "ValidationError", ({ enumerable: true, get: function () { return validation_error_1.default; } }));
35613
+ var ref_error_1 = __webpack_require__(/*! ./compile/ref_error */ "./node_modules/ajv/dist/compile/ref_error.js");
35614
+ Object.defineProperty(exports, "MissingRefError", ({ enumerable: true, get: function () { return ref_error_1.default; } }));
34776
35615
  //# sourceMappingURL=ajv.js.map
34777
35616
 
34778
35617
  /***/ }),