@nmshd/runtime 7.0.0-alpha.3 → 7.0.0-alpha.5

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 (35) hide show
  1. package/dist/buildInformation.js +5 -5
  2. package/dist/dataViews/DataViewExpander.d.ts.map +1 -1
  3. package/dist/dataViews/DataViewExpander.js +46 -1
  4. package/dist/dataViews/DataViewExpander.js.map +1 -1
  5. package/dist/dataViews/consumption/DecidableRequestItemDVOs.d.ts +6 -0
  6. package/dist/dataViews/consumption/DecidableRequestItemDVOs.d.ts.map +1 -1
  7. package/dist/dataViews/content/RequestItemDVOs.d.ts +6 -0
  8. package/dist/dataViews/content/RequestItemDVOs.d.ts.map +1 -1
  9. package/dist/dataViews/content/ResponseItemDVOs.d.ts +7 -1
  10. package/dist/dataViews/content/ResponseItemDVOs.d.ts.map +1 -1
  11. package/dist/modules/decide/RequestConfig.d.ts +4 -1
  12. package/dist/modules/decide/RequestConfig.d.ts.map +1 -1
  13. package/dist/modules/decide/RequestConfig.js.map +1 -1
  14. package/dist/useCases/common/Schemas.d.ts.map +1 -1
  15. package/dist/useCases/common/Schemas.js +141 -9
  16. package/dist/useCases/common/Schemas.js.map +1 -1
  17. package/dist/useCases/consumption/attributes/GetAttributes.d.ts +0 -1
  18. package/dist/useCases/consumption/attributes/GetAttributes.d.ts.map +1 -1
  19. package/dist/useCases/consumption/attributes/GetAttributes.js +1 -1
  20. package/dist/useCases/consumption/attributes/GetAttributes.js.map +1 -1
  21. package/dist/useCases/consumption/attributes/GetOwnSharedAttributes.d.ts +0 -1
  22. package/dist/useCases/consumption/attributes/GetOwnSharedAttributes.d.ts.map +1 -1
  23. package/dist/useCases/consumption/attributes/GetOwnSharedAttributes.js +1 -1
  24. package/dist/useCases/consumption/attributes/GetOwnSharedAttributes.js.map +1 -1
  25. package/dist/useCases/consumption/attributes/GetPeerSharedAttributes.d.ts +0 -1
  26. package/dist/useCases/consumption/attributes/GetPeerSharedAttributes.d.ts.map +1 -1
  27. package/dist/useCases/consumption/attributes/GetPeerSharedAttributes.js +1 -1
  28. package/dist/useCases/consumption/attributes/GetPeerSharedAttributes.js.map +1 -1
  29. package/dist/useCases/transport/relationshipTemplates/CreateTokenForOwnRelationshipTemplate.d.ts.map +1 -1
  30. package/dist/useCases/transport/relationshipTemplates/CreateTokenForOwnRelationshipTemplate.js +1 -1
  31. package/dist/useCases/transport/relationshipTemplates/CreateTokenForOwnRelationshipTemplate.js.map +1 -1
  32. package/dist/useCases/transport/relationshipTemplates/CreateTokenQRCodeForOwnRelationshipTemplate.d.ts.map +1 -1
  33. package/dist/useCases/transport/relationshipTemplates/CreateTokenQRCodeForOwnRelationshipTemplate.js +1 -1
  34. package/dist/useCases/transport/relationshipTemplates/CreateTokenQRCodeForOwnRelationshipTemplate.js.map +1 -1
  35. package/package.json +6 -6
@@ -323,6 +323,9 @@ exports.CanCreateOutgoingRequestRequest = {
323
323
  },
324
324
  {
325
325
  "$ref": "#/definitions/RegisterAttributeListenerRequestItemJSON"
326
+ },
327
+ {
328
+ "$ref": "#/definitions/TransferFileOwnershipRequestItemJSON"
326
329
  }
327
330
  ]
328
331
  },
@@ -2990,6 +2993,50 @@ exports.CanCreateOutgoingRequestRequest = {
2990
2993
  ],
2991
2994
  "additionalProperties": false
2992
2995
  },
2996
+ "TransferFileOwnershipRequestItemJSON": {
2997
+ "type": "object",
2998
+ "properties": {
2999
+ "@type": {
3000
+ "type": "string",
3001
+ "const": "TransferFileOwnershipRequestItem"
3002
+ },
3003
+ "@context": {
3004
+ "type": "string"
3005
+ },
3006
+ "@version": {
3007
+ "type": "string"
3008
+ },
3009
+ "title": {
3010
+ "type": "string",
3011
+ "description": "The human-readable title of this item."
3012
+ },
3013
+ "description": {
3014
+ "type": "string",
3015
+ "description": "The human-readable description of this item."
3016
+ },
3017
+ "metadata": {
3018
+ "type": "object",
3019
+ "description": "This property can be used to add some arbitrary metadata to this item. The content of this property will be copied into the response on the side of the recipient, so the sender can use it to identify the item as they receive the response."
3020
+ },
3021
+ "mustBeAccepted": {
3022
+ "type": "boolean",
3023
+ "description": "If set to `true`, the recipient has to accept this item if they want to accept the Request. If set to `false`, the recipient can decide whether they want to accept it or not."
3024
+ },
3025
+ "requireManualDecision": {
3026
+ "type": "boolean",
3027
+ "description": "If set to `true`, it advices the recipient of this RequestItem to carefully consider their decision and especially do not decide based on some automation rules."
3028
+ },
3029
+ "fileReference": {
3030
+ "type": "string"
3031
+ }
3032
+ },
3033
+ "required": [
3034
+ "@type",
3035
+ "fileReference",
3036
+ "mustBeAccepted"
3037
+ ],
3038
+ "additionalProperties": false
3039
+ },
2993
3040
  "AddressString": {
2994
3041
  "type": "string",
2995
3042
  "pattern": "did:e:((([A-Za-z0-9]+(-[A-Za-z0-9]+)*)\\.)+[a-z]{2,}|localhost):dids:[0-9a-f]{22}"
@@ -8091,6 +8138,9 @@ exports.CreateOutgoingRequestRequest = {
8091
8138
  },
8092
8139
  {
8093
8140
  "$ref": "#/definitions/RegisterAttributeListenerRequestItemJSON"
8141
+ },
8142
+ {
8143
+ "$ref": "#/definitions/TransferFileOwnershipRequestItemJSON"
8094
8144
  }
8095
8145
  ]
8096
8146
  },
@@ -10758,6 +10808,50 @@ exports.CreateOutgoingRequestRequest = {
10758
10808
  ],
10759
10809
  "additionalProperties": false
10760
10810
  },
10811
+ "TransferFileOwnershipRequestItemJSON": {
10812
+ "type": "object",
10813
+ "properties": {
10814
+ "@type": {
10815
+ "type": "string",
10816
+ "const": "TransferFileOwnershipRequestItem"
10817
+ },
10818
+ "@context": {
10819
+ "type": "string"
10820
+ },
10821
+ "@version": {
10822
+ "type": "string"
10823
+ },
10824
+ "title": {
10825
+ "type": "string",
10826
+ "description": "The human-readable title of this item."
10827
+ },
10828
+ "description": {
10829
+ "type": "string",
10830
+ "description": "The human-readable description of this item."
10831
+ },
10832
+ "metadata": {
10833
+ "type": "object",
10834
+ "description": "This property can be used to add some arbitrary metadata to this item. The content of this property will be copied into the response on the side of the recipient, so the sender can use it to identify the item as they receive the response."
10835
+ },
10836
+ "mustBeAccepted": {
10837
+ "type": "boolean",
10838
+ "description": "If set to `true`, the recipient has to accept this item if they want to accept the Request. If set to `false`, the recipient can decide whether they want to accept it or not."
10839
+ },
10840
+ "requireManualDecision": {
10841
+ "type": "boolean",
10842
+ "description": "If set to `true`, it advices the recipient of this RequestItem to carefully consider their decision and especially do not decide based on some automation rules."
10843
+ },
10844
+ "fileReference": {
10845
+ "type": "string"
10846
+ }
10847
+ },
10848
+ "required": [
10849
+ "@type",
10850
+ "fileReference",
10851
+ "mustBeAccepted"
10852
+ ],
10853
+ "additionalProperties": false
10854
+ },
10761
10855
  "AddressString": {
10762
10856
  "type": "string",
10763
10857
  "pattern": "did:e:((([A-Za-z0-9]+(-[A-Za-z0-9]+)*)\\.)+[a-z]{2,}|localhost):dids:[0-9a-f]{22}"
@@ -11406,6 +11500,9 @@ exports.ReceivedIncomingRequestRequest = {
11406
11500
  },
11407
11501
  {
11408
11502
  "$ref": "#/definitions/RegisterAttributeListenerRequestItemJSON"
11503
+ },
11504
+ {
11505
+ "$ref": "#/definitions/TransferFileOwnershipRequestItemJSON"
11409
11506
  }
11410
11507
  ]
11411
11508
  },
@@ -14073,6 +14170,50 @@ exports.ReceivedIncomingRequestRequest = {
14073
14170
  ],
14074
14171
  "additionalProperties": false
14075
14172
  },
14173
+ "TransferFileOwnershipRequestItemJSON": {
14174
+ "type": "object",
14175
+ "properties": {
14176
+ "@type": {
14177
+ "type": "string",
14178
+ "const": "TransferFileOwnershipRequestItem"
14179
+ },
14180
+ "@context": {
14181
+ "type": "string"
14182
+ },
14183
+ "@version": {
14184
+ "type": "string"
14185
+ },
14186
+ "title": {
14187
+ "type": "string",
14188
+ "description": "The human-readable title of this item."
14189
+ },
14190
+ "description": {
14191
+ "type": "string",
14192
+ "description": "The human-readable description of this item."
14193
+ },
14194
+ "metadata": {
14195
+ "type": "object",
14196
+ "description": "This property can be used to add some arbitrary metadata to this item. The content of this property will be copied into the response on the side of the recipient, so the sender can use it to identify the item as they receive the response."
14197
+ },
14198
+ "mustBeAccepted": {
14199
+ "type": "boolean",
14200
+ "description": "If set to `true`, the recipient has to accept this item if they want to accept the Request. If set to `false`, the recipient can decide whether they want to accept it or not."
14201
+ },
14202
+ "requireManualDecision": {
14203
+ "type": "boolean",
14204
+ "description": "If set to `true`, it advices the recipient of this RequestItem to carefully consider their decision and especially do not decide based on some automation rules."
14205
+ },
14206
+ "fileReference": {
14207
+ "type": "string"
14208
+ }
14209
+ },
14210
+ "required": [
14211
+ "@type",
14212
+ "fileReference",
14213
+ "mustBeAccepted"
14214
+ ],
14215
+ "additionalProperties": false
14216
+ },
14076
14217
  "MessageIdString": {
14077
14218
  "type": "string",
14078
14219
  "pattern": "MSG[A-Za-z0-9]{17}"
@@ -15495,9 +15636,6 @@ exports.GetAttributesRequest = {
15495
15636
  "query": {
15496
15637
  "$ref": "#/definitions/GetAttributesRequestQuery"
15497
15638
  },
15498
- "onlyValid": {
15499
- "type": "boolean"
15500
- },
15501
15639
  "hideTechnical": {
15502
15640
  "type": "boolean"
15503
15641
  }
@@ -15765,9 +15903,6 @@ exports.GetOwnSharedAttributesRequest = {
15765
15903
  "peer": {
15766
15904
  "$ref": "#/definitions/AddressString"
15767
15905
  },
15768
- "onlyValid": {
15769
- "type": "boolean"
15770
- },
15771
15906
  "query": {
15772
15907
  "$ref": "#/definitions/GetOwnSharedAttributeRequestQuery"
15773
15908
  },
@@ -15981,9 +16116,6 @@ exports.GetPeerSharedAttributesRequest = {
15981
16116
  "peer": {
15982
16117
  "$ref": "#/definitions/AddressString"
15983
16118
  },
15984
- "onlyValid": {
15985
- "type": "boolean"
15986
- },
15987
16119
  "query": {
15988
16120
  "$ref": "#/definitions/GetPeerSharedAttributesRequestQuery"
15989
16121
  },