@twin.org/standards-w3c-odrl 0.0.1 → 0.0.2-next.10

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 (55) hide show
  1. package/dist/cjs/index.cjs +448 -726
  2. package/dist/esm/index.mjs +449 -726
  3. package/dist/types/index.d.ts +0 -2
  4. package/dist/types/models/IOdrlAction.d.ts +3 -2
  5. package/dist/types/models/IOdrlAgreement.d.ts +1 -0
  6. package/dist/types/models/IOdrlAsset.d.ts +1 -0
  7. package/dist/types/models/IOdrlAssetCollection.d.ts +1 -0
  8. package/dist/types/models/IOdrlConstraint.d.ts +1 -0
  9. package/dist/types/models/IOdrlDuty.d.ts +1 -0
  10. package/dist/types/models/IOdrlLogicalConstraint.d.ts +1 -0
  11. package/dist/types/models/IOdrlOffer.d.ts +1 -0
  12. package/dist/types/models/IOdrlParty.d.ts +1 -0
  13. package/dist/types/models/IOdrlPartyCollection.d.ts +1 -0
  14. package/dist/types/models/IOdrlPermission.d.ts +1 -0
  15. package/dist/types/models/IOdrlPolicy.d.ts +2 -1
  16. package/dist/types/models/IOdrlProhibition.d.ts +1 -0
  17. package/dist/types/models/IOdrlRule.d.ts +2 -1
  18. package/dist/types/models/IOdrlSet.d.ts +1 -0
  19. package/dist/types/models/odrlContexts.d.ts +4 -4
  20. package/dist/types/models/types/actionType.d.ts +116 -97
  21. package/dist/types/models/types/odrlTypes.d.ts +0 -4
  22. package/docs/changelog.md +160 -0
  23. package/docs/reference/index.md +0 -3
  24. package/docs/reference/interfaces/IOdrlAction.md +4 -3
  25. package/docs/reference/interfaces/IOdrlAgreement.md +3 -2
  26. package/docs/reference/interfaces/IOdrlAsset.md +2 -1
  27. package/docs/reference/interfaces/IOdrlAssetCollection.md +2 -1
  28. package/docs/reference/interfaces/IOdrlConstraint.md +2 -1
  29. package/docs/reference/interfaces/IOdrlDuty.md +3 -2
  30. package/docs/reference/interfaces/IOdrlLogicalConstraint.md +2 -1
  31. package/docs/reference/interfaces/IOdrlOffer.md +3 -2
  32. package/docs/reference/interfaces/IOdrlParty.md +2 -1
  33. package/docs/reference/interfaces/IOdrlPartyCollection.md +2 -1
  34. package/docs/reference/interfaces/IOdrlPermission.md +3 -2
  35. package/docs/reference/interfaces/IOdrlPolicy.md +3 -2
  36. package/docs/reference/interfaces/IOdrlProhibition.md +3 -2
  37. package/docs/reference/interfaces/IOdrlRule.md +3 -2
  38. package/docs/reference/interfaces/IOdrlSet.md +3 -2
  39. package/docs/reference/variables/ActionType.md +169 -142
  40. package/docs/reference/variables/ConflictStrategyType.md +1 -1
  41. package/docs/reference/variables/LeftOperandType.md +1 -1
  42. package/docs/reference/variables/LogicalConstraintType.md +1 -1
  43. package/docs/reference/variables/OdrlContexts.md +7 -7
  44. package/docs/reference/variables/OdrlTypes.md +1 -7
  45. package/docs/reference/variables/OperatorType.md +1 -1
  46. package/docs/reference/variables/PolicyType.md +1 -1
  47. package/docs/reference/variables/RightOperandType.md +1 -1
  48. package/docs/reference/variables/RuleType.md +1 -1
  49. package/docs/reference/variables/StatusType.md +1 -1
  50. package/package.json +7 -7
  51. package/dist/types/models/IOdrlPolicyMetadata.d.ts +0 -58
  52. package/dist/types/models/types/uriActionType.d.ts +0 -215
  53. package/docs/reference/interfaces/IOdrlPolicyMetadata.md +0 -86
  54. package/docs/reference/type-aliases/UriActionType.md +0 -6
  55. package/docs/reference/variables/UriActionType.md +0 -314
@@ -11,7 +11,6 @@ export * from "./models/IOdrlParty";
11
11
  export * from "./models/IOdrlPartyCollection";
12
12
  export * from "./models/IOdrlPermission";
13
13
  export * from "./models/IOdrlPolicy";
14
- export * from "./models/IOdrlPolicyMetadata";
15
14
  export * from "./models/IOdrlProhibition";
16
15
  export * from "./models/IOdrlRule";
17
16
  export * from "./models/IOdrlSet";
@@ -27,4 +26,3 @@ export * from "./models/types/policyType";
27
26
  export * from "./models/types/rightOperandType";
28
27
  export * from "./models/types/ruleType";
29
28
  export * from "./models/types/statusType";
30
- export * from "./models/types/uriActionType";
@@ -4,6 +4,7 @@ import type { IOdrlLogicalConstraint } from "./IOdrlLogicalConstraint";
4
4
  import type { ActionType } from "./types/actionType";
5
5
  /**
6
6
  * Interface for ODRL Actions.
7
+ * https://www.w3.org/TR/odrl-model/#action
7
8
  */
8
9
  export interface IOdrlAction extends IJsonLdNodeObject {
9
10
  /**
@@ -25,9 +26,9 @@ export interface IOdrlAction extends IJsonLdNodeObject {
25
26
  /**
26
27
  * Reference to the action this action is included in.
27
28
  */
28
- includedIn?: ActionType;
29
+ includedIn?: ActionType | string;
29
30
  /**
30
31
  * References to actions this action implies.
31
32
  */
32
- implies?: ActionType[];
33
+ implies?: (ActionType | string)[];
33
34
  }
@@ -4,6 +4,7 @@ import type { OdrlTypes } from "./types/odrlTypes";
4
4
  /**
5
5
  * Interface representing an ODRL Agreement.
6
6
  * An Agreement requires both an assigner and assignee (both agreeing parties).
7
+ * https://www.w3.org/TR/odrl-model/#policy-agreement
7
8
  */
8
9
  export interface IOdrlAgreement extends IOdrlPolicy {
9
10
  /**
@@ -2,6 +2,7 @@ import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
2
2
  import type { IOdrlAssetCollection } from "./IOdrlAssetCollection";
3
3
  /**
4
4
  * Interface for ODRL Assets.
5
+ * https://www.w3.org/TR/odrl-model/#asset
5
6
  */
6
7
  export interface IOdrlAsset extends IJsonLdNodeObject {
7
8
  /**
@@ -4,6 +4,7 @@ import type { IOdrlConstraint } from "./IOdrlConstraint";
4
4
  * Interface for ODRL Asset Collections.
5
5
  * An AssetCollection is a single resource representing a set of member resources,
6
6
  * where all members of the set will be the subject of the Rule.
7
+ * https://www.w3.org/TR/odrl-model/#asset
7
8
  */
8
9
  export interface IOdrlAssetCollection extends IOdrlAsset {
9
10
  /**
@@ -4,6 +4,7 @@ import type { OperatorType } from "./types/operatorType";
4
4
  import type { StatusType } from "./types/statusType";
5
5
  /**
6
6
  * Interface for ODRL Constraints.
7
+ * https://www.w3.org/TR/odrl-model/#constraint
7
8
  */
8
9
  export interface IOdrlConstraint extends IJsonLdNodeObject {
9
10
  /**
@@ -3,6 +3,7 @@ import type { IOdrlRule } from "./IOdrlRule";
3
3
  * Interface for Duty Rules.
4
4
  * A Duty is the obligation to exercise an action, with all refinements satisfied.
5
5
  * A Duty is fulfilled if all constraints are satisfied and if its action has been exercised.
6
+ * https://www.w3.org/TR/odrl-model/#duty
6
7
  */
7
8
  export interface IOdrlDuty extends IOdrlRule {
8
9
  /**
@@ -3,6 +3,7 @@ import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
3
3
  * Interface for ODRL Logical Constraints.
4
4
  * A Logical Constraint compares two or more existing Constraints by one logical operator.
5
5
  * If the comparison returns a logical match, then the Logical Constraint is satisfied.
6
+ * https://www.w3.org/TR/odrl-model/#constraint-logical
6
7
  */
7
8
  export interface IOdrlLogicalConstraint extends IJsonLdNodeObject {
8
9
  /**
@@ -4,6 +4,7 @@ import type { OdrlTypes } from "./types/odrlTypes";
4
4
  /**
5
5
  * Interface representing an ODRL Offer.
6
6
  * An Offer requires an assigner (the party making the offer).
7
+ * https://www.w3.org/TR/odrl-model/#policy-offer
7
8
  */
8
9
  export interface IOdrlOffer extends IOdrlPolicy {
9
10
  /**
@@ -2,6 +2,7 @@ import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
2
2
  import type { IOdrlPartyCollection } from "./IOdrlPartyCollection";
3
3
  /**
4
4
  * Interface for ODRL Parties.
5
+ * https://www.w3.org/TR/odrl-model/#party
5
6
  */
6
7
  export interface IOdrlParty extends IJsonLdNodeObject {
7
8
  /**
@@ -3,6 +3,7 @@ import type { IOdrlParty } from "./IOdrlParty";
3
3
  /**
4
4
  * Interface for ODRL Party Collections.
5
5
  * A PartyCollection identifies a collection of entities and is a subclass of Party.
6
+ * https://www.w3.org/TR/odrl-model/#party
6
7
  */
7
8
  export interface IOdrlPartyCollection extends IOdrlParty {
8
9
  /**
@@ -4,6 +4,7 @@ import type { IOdrlRule } from "./IOdrlRule";
4
4
  * Interface for Permission Rules.
5
5
  * A Permission allows an action to be exercised on an Asset
6
6
  * if all constraints are satisfied and if all duties are fulfilled.
7
+ * https://www.w3.org/TR/odrl-model/#permission
7
8
  */
8
9
  export interface IOdrlPermission extends IOdrlRule {
9
10
  /**
@@ -11,6 +11,7 @@ import type { ConflictStrategyType } from "./types/conflictStrategyType";
11
11
  import type { PolicyType } from "./types/policyType";
12
12
  /**
13
13
  * Interface representing an ODRL Policy.
14
+ * https://www.w3.org/TR/odrl-model/#policy
14
15
  */
15
16
  export interface IOdrlPolicy extends IJsonLdNodeObject {
16
17
  /**
@@ -50,7 +51,7 @@ export interface IOdrlPolicy extends IJsonLdNodeObject {
50
51
  /**
51
52
  * The action associated with the rule.
52
53
  */
53
- action?: ActionType | IOdrlAction | (ActionType | IOdrlAction)[];
54
+ action?: ActionType | string | IOdrlAction | (ActionType | string | IOdrlAction)[];
54
55
  /**
55
56
  * The parent policy(ies) this policy inherits from.
56
57
  * IRIs identifying the parent Policy(ies).
@@ -2,6 +2,7 @@ import type { IOdrlDuty } from "./IOdrlDuty";
2
2
  import type { IOdrlRule } from "./IOdrlRule";
3
3
  /**
4
4
  * Interface for Prohibition Rules.
5
+ * https://www.w3.org/TR/odrl-model/#prohibition
5
6
  */
6
7
  export interface IOdrlProhibition extends IOdrlRule {
7
8
  /**
@@ -6,6 +6,7 @@ import type { IOdrlParty } from "./IOdrlParty";
6
6
  import type { ActionType } from "./types/actionType";
7
7
  /**
8
8
  * Base interface for ODRL Rules.
9
+ * https://www.w3.org/TR/odrl-model/#rule
9
10
  */
10
11
  export interface IOdrlRule extends IJsonLdNodeObject {
11
12
  /**
@@ -15,7 +16,7 @@ export interface IOdrlRule extends IJsonLdNodeObject {
15
16
  /**
16
17
  * The action associated with the rule.
17
18
  */
18
- action?: ActionType | IOdrlAction | (ActionType | IOdrlAction)[];
19
+ action?: ActionType | string | IOdrlAction | (ActionType | string | IOdrlAction)[];
19
20
  /**
20
21
  * The target asset for the rule.
21
22
  */
@@ -3,6 +3,7 @@ import type { OdrlTypes } from "./types/odrlTypes";
3
3
  /**
4
4
  * Interface representing an ODRL Set.
5
5
  * A Set is a basic policy type with no specific party requirements.
6
+ * https://www.w3.org/TR/odrl-model/#policy-set
6
7
  */
7
8
  export interface IOdrlSet extends IOdrlPolicy {
8
9
  /**
@@ -2,14 +2,14 @@
2
2
  * The contexts for ODRL.
3
3
  */
4
4
  export declare const OdrlContexts: {
5
- /**
6
- * The context root for ODRL.
7
- */
8
- readonly ContextRedirect: "https://www.w3.org/ns/odrl.jsonld";
9
5
  /**
10
6
  * The context root for ODRL vocabulary.
11
7
  */
12
8
  readonly ContextRoot: "https://www.w3.org/ns/odrl/2/";
9
+ /**
10
+ * The context root for ODRL.
11
+ */
12
+ readonly ContextRedirect: "https://www.w3.org/ns/odrl.jsonld";
13
13
  };
14
14
  /**
15
15
  * The contexts for ODRL.
@@ -4,209 +4,228 @@
4
4
  */
5
5
  export declare const ActionType: {
6
6
  /**
7
- * To use the Asset - actions that involve general usage by parties.
7
+ * The act of using an asset, covering any general usage where ownership does not change.
8
+ * This is the parent term for most permissions and prohibitions.
8
9
  */
9
10
  readonly Use: "use";
10
11
  /**
11
- * To transfer the ownership to third parties.
12
+ * The act of transferring the ownership of an asset in perpetuity to a third party.
12
13
  */
13
14
  readonly Transfer: "transfer";
14
15
  /**
15
- * To accept that the use of the Asset may be tracked.
16
- */
17
- readonly AcceptTracking: "acceptTracking";
18
- /**
19
- * To use the Asset or parts of it as part of a composite collection.
16
+ * The act of using an asset (or parts of it) as part of a composite collection.
20
17
  */
21
18
  readonly Aggregate: "aggregate";
22
19
  /**
23
- * To add explanatory notations/commentaries to the Asset without modifying the Asset in any other way.
20
+ * The act of adding explanatory notations/commentaries to the asset.
24
21
  */
25
22
  readonly Annotate: "annotate";
26
23
  /**
27
- * To anonymize all or parts of the Asset.
24
+ * The act of anonymising all or parts of the asset, for example, to remove identifying particulars.
28
25
  */
29
26
  readonly Anonymize: "anonymize";
30
27
  /**
31
- * To store the Asset (in a non-transient form).
28
+ * The act of persistently storing the asset in a non-transient form.
32
29
  */
33
30
  readonly Archive: "archive";
34
31
  /**
35
- * To attribute the use of the Asset.
32
+ * The act of multiple concurrent use of the asset.
36
33
  */
37
- readonly Attribute: "attribute";
34
+ readonly ConcurrentUse: "concurrentUse";
38
35
  /**
39
- * Credit be given to copyright holder and/or author.
36
+ * The act of using the asset in a business environment where it may be traded for profit.
40
37
  */
41
- readonly Attribution: "attribution";
38
+ readonly Commercialize: "commercialize";
42
39
  /**
43
- * Exercising rights for commercial purposes.
40
+ * The act of making an exact reproduction of the asset. Also identified as `reproduce`.
44
41
  */
45
- readonly CommercialUse: "commercialUse";
42
+ readonly Copy: "copy";
46
43
  /**
47
- * To compensate by transfer of some amount of value for using or selling the Asset.
44
+ * The act of creating a new derivative asset from the original and editing or modifying it.
48
45
  */
49
- readonly Compensate: "compensate";
46
+ readonly Derive: "derive";
50
47
  /**
51
- * To create multiple copies of the Asset that are being concurrently used.
48
+ * The act of producing a digital copy of an asset from its analogue form.
52
49
  */
53
- readonly ConcurrentUse: "concurrentUse";
50
+ readonly Digitize: "digitize";
54
51
  /**
55
- * To permanently remove all copies of the Asset after it has been used.
52
+ * The act of making a transient visible rendering of the asset, such as displaying an image on a screen.
53
+ * Also identified as `present` in earlier versions.
56
54
  */
57
- readonly Delete: "delete";
55
+ readonly Display: "display";
58
56
  /**
59
- * To create a new derivative Asset from this Asset and to edit or modify the derivative.
57
+ * The act of publicly distributing, displaying, or performing the asset.
60
58
  */
61
- readonly Derive: "derive";
59
+ readonly Distribute: "distribute";
62
60
  /**
63
- * Distribution of derivative works.
61
+ * The act of executing the asset, such as running a program or application.
64
62
  */
65
- readonly DerivativeWorks: "derivativeWorks";
63
+ readonly Execute: "execute";
66
64
  /**
67
- * To produce a digital copy of (or otherwise digitize) the Asset from its analogue form.
65
+ * The act of extracting (replicating) unchanged parts of the asset for reuse.
68
66
  */
69
- readonly Digitize: "digitize";
67
+ readonly Extract: "extract";
70
68
  /**
71
- * To create a static and transient rendition of an Asset.
69
+ * The act of extracting unchanged character(s) from the asset.
72
70
  */
73
- readonly Display: "display";
71
+ readonly ExtractChar: "extractChar";
74
72
  /**
75
- * To supply the Asset to third-parties.
73
+ * The act of extracting unchanged word(s) from the asset.
76
74
  */
77
- readonly Distribute: "distribute";
75
+ readonly ExtractWord: "extractWord";
78
76
  /**
79
- * Distribution, public display, and publicly performance.
77
+ * The act of extracting unchanged page(s) from the asset.
80
78
  */
81
- readonly Distribution: "distribution";
79
+ readonly ExtractPage: "extractPage";
82
80
  /**
83
- * To ensure that the Rule on the Asset is exclusive.
81
+ * The act of recording the asset in an index, for example, a search engine database.
84
82
  */
85
- readonly EnsureExclusivity: "ensureExclusivity";
83
+ readonly Index: "index";
86
84
  /**
87
- * To run the computer program Asset.
85
+ * The act of loading the asset onto a storage device ready for operation.
88
86
  */
89
- readonly Execute: "execute";
87
+ readonly Install: "install";
90
88
  /**
91
- * To extract parts of the Asset and to use it as a new Asset.
89
+ * The act of granting the use of the asset to third parties. Also identified as `sublicense` in earlier versions.
92
90
  */
93
- readonly Extract: "extract";
91
+ readonly License: "license";
94
92
  /**
95
- * To transfer the ownership without compensation and while deleting the original asset.
93
+ * The act of making the asset available to a third-party for a fixed period with exchange of value.
96
94
  */
97
- readonly Give: "give";
95
+ readonly Lease: "lease";
98
96
  /**
99
- * To grant the use of the Asset to third parties.
97
+ * The act of making the asset available to a third-party for a fixed period without exchange of value.
100
98
  */
101
- readonly GrantUse: "grantUse";
99
+ readonly Lend: "lend";
102
100
  /**
103
- * To include other related assets in the Asset.
101
+ * The act of updating existing content of the asset without creating a new one.
104
102
  */
105
- readonly Include: "include";
103
+ readonly Modify: "modify";
106
104
  /**
107
- * To record the Asset in an index.
105
+ * The act of moving the asset from one digital location to another and deleting the original.
108
106
  */
109
- readonly Index: "index";
107
+ readonly Move: "move";
110
108
  /**
111
- * To inform that an action has been performed on or in relation to the Asset.
109
+ * The act of rendering the asset into audio and/or video form.
112
110
  */
113
- readonly Inform: "inform";
111
+ readonly Play: "play";
114
112
  /**
115
- * To load the computer program Asset onto a storage device.
113
+ * The act of providing a short preview of the asset.
116
114
  */
117
- readonly Install: "install";
115
+ readonly Preview: "preview";
118
116
  /**
119
- * To change existing content of the Asset without creating a new asset.
117
+ * The act of rendering the asset onto paper or hard copy form.
120
118
  */
121
- readonly Modify: "modify";
119
+ readonly Print: "print";
122
120
  /**
123
- * To move the Asset from one digital location to another including deleting the original copy.
121
+ * The act of obtaining data from the asset, such as a database record.
124
122
  */
125
- readonly Move: "move";
123
+ readonly Read: "read";
126
124
  /**
127
- * To grant the specified Policy to a third party for their use of the Asset.
125
+ * The act of using the asset for a purpose other than its intended purpose.
128
126
  */
129
- readonly NextPolicy: "nextPolicy";
127
+ readonly SecondaryUse: "secondaryUse";
130
128
  /**
131
- * Copyright and license notices be kept intact.
129
+ * The act of non-commercial reproduction and distribution of the asset to third-parties.
132
130
  */
133
- readonly Notice: "notice";
131
+ readonly Share: "share";
134
132
  /**
135
- * To obtain verifiable consent to perform the requested action.
133
+ * The act of sharing the asset to parties in close proximity to the owner.
136
134
  */
137
- readonly ObtainConsent: "obtainConsent";
135
+ readonly AdhocShare: "adhocShare";
138
136
  /**
139
- * To create a sequential and transient rendition of an Asset.
137
+ * The act of distributing any derivative asset under the same terms as the original.
140
138
  */
141
- readonly Play: "play";
139
+ readonly ShareAlike: "shareAlike";
142
140
  /**
143
- * To publicly perform the Asset.
141
+ * The act of a system reading the text of the asset out loud.
144
142
  */
145
- readonly Present: "present";
143
+ readonly TextToSpeech: "textToSpeech";
146
144
  /**
147
- * To create a tangible and permanent rendition of an Asset.
145
+ * The act of translating the asset's original language into another, creating a new derivative asset.
148
146
  */
149
- readonly Print: "print";
147
+ readonly Translate: "translate";
150
148
  /**
151
- * To obtain data from the Asset.
149
+ * The act of transforming the asset into a different digital format.
152
150
  */
153
- readonly Read: "read";
151
+ readonly Transform: "transform";
154
152
  /**
155
- * To make duplicate copies of the Asset in any material form.
153
+ * The act of unloading the asset from a storage device, making it no longer accessible.
156
154
  */
157
- readonly Reproduce: "reproduce";
155
+ readonly Uninstall: "uninstall";
158
156
  /**
159
- * Making multiple copies.
157
+ * The act of applying a watermark to the asset.
160
158
  */
161
- readonly Reproduction: "reproduction";
159
+ readonly Watermark: "watermark";
162
160
  /**
163
- * To review the Policy applicable to the Asset.
161
+ * The act of writing to or modifying the asset.
164
162
  */
165
- readonly ReviewPolicy: "reviewPolicy";
163
+ readonly Write: "write";
166
164
  /**
167
- * To transfer the ownership with compensation and while deleting the original asset.
165
+ * The act of adding to the end of an asset, for example, a database record.
166
+ * Also identified as `appendTo`.
167
+ */
168
+ readonly Append: "append";
169
+ /**
170
+ * The act of giving away the asset in perpetuity without exchange of value, requiring the original to be deleted.
171
+ */
172
+ readonly Give: "give";
173
+ /**
174
+ * The act of trading the asset in exchange for compensation, requiring the original to be deleted.
168
175
  */
169
176
  readonly Sell: "sell";
170
177
  /**
171
- * Derivative works be licensed under the same terms or compatible terms.
178
+ * The act of accepting that the use of the asset may be tracked by a specified party.
172
179
  */
173
- readonly ShareAlike: "shareAlike";
180
+ readonly AcceptTracking: "acceptTracking";
174
181
  /**
175
- * Permits commercial derivatives, but only non-commercial distribution.
182
+ * The act of keeping a policy notice attached to the asset.
176
183
  */
177
- readonly Sharing: "sharing";
184
+ readonly AttachPolicy: "attachPolicy";
178
185
  /**
179
- * Source code must be provided when exercising some rights.
186
+ * The act of attaching the source of the asset and its derivatives.
180
187
  */
181
- readonly SourceCode: "sourceCode";
188
+ readonly AttachSource: "attachSource";
182
189
  /**
183
- * To deliver the Asset in real-time.
190
+ * The act of attributing the asset to a specified party.
184
191
  */
185
- readonly Stream: "stream";
192
+ readonly Attribute: "attribute";
186
193
  /**
187
- * To use the Asset in timed relations with media elements of another Asset.
194
+ * The act of compensating a specified party by some amount for use of the asset.
188
195
  */
189
- readonly Synchronize: "synchronize";
196
+ readonly Compensate: "compensate";
190
197
  /**
191
- * To have a text Asset read out loud.
198
+ * The act of permanently removing all copies of the asset.
192
199
  */
193
- readonly TextToSpeech: "textToSpeech";
200
+ readonly Delete: "delete";
194
201
  /**
195
- * To convert the Asset into a different format.
202
+ * The act of requiring the assigner to ensure a permission is exclusive to the assignee.
196
203
  */
197
- readonly Transform: "transform";
204
+ readonly EnsureExclusivity: "ensureExclusivity";
198
205
  /**
199
- * To translate the Asset into another natural language.
206
+ * The act of including other related assets to fulfil the function.
200
207
  */
201
- readonly Translate: "translate";
208
+ readonly Include: "include";
202
209
  /**
203
- * To unload and delete the computer program Asset.
210
+ * The act of informing a party that an action has been performed on the asset.
204
211
  */
205
- readonly Uninstall: "uninstall";
212
+ readonly Inform: "inform";
206
213
  /**
207
- * To apply a watermark to the Asset.
214
+ * The act of specifying a policy for third-party use of the asset.
208
215
  */
209
- readonly Watermark: "watermark";
216
+ readonly NextPolicy: "nextPolicy";
217
+ /**
218
+ * The act of requiring explicit consent from a party to perform an action.
219
+ */
220
+ readonly ObtainConsent: "obtainConsent";
221
+ /**
222
+ * The act of paying a financial amount to a party for use of the asset.
223
+ */
224
+ readonly Pay: "pay";
225
+ /**
226
+ * The act of performing a manual review of the terms associated with the asset.
227
+ */
228
+ readonly ReviewPolicy: "reviewPolicy";
210
229
  };
211
230
  /**
212
231
  * The types for ODRL Actions.
@@ -66,10 +66,6 @@ export declare const OdrlTypes: {
66
66
  * ContextType.
67
67
  */
68
68
  readonly ContextType: "ContextType";
69
- /**
70
- * PolicyMetadata type.
71
- */
72
- readonly PolicyMetadata: "PolicyMetadata";
73
69
  };
74
70
  /**
75
71
  * The types for ODRL.