@twin.org/standards-w3c-did 0.0.1-next.7 → 0.0.1-next.8

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.
@@ -17,6 +17,23 @@ const DidContexts = {
17
17
  ContextV2: "https://www.w3.org/ns/credentials/v2"
18
18
  };
19
19
 
20
+ // Copyright 2024 IOTA Stiftung.
21
+ // SPDX-License-Identifier: Apache-2.0.
22
+ /**
23
+ * The types for DIDs.
24
+ */
25
+ // eslint-disable-next-line @typescript-eslint/naming-convention
26
+ const DidTypes = {
27
+ /**
28
+ * The type for Verifiable Credential.
29
+ */
30
+ VerifiableCredential: "VerifiableCredential",
31
+ /**
32
+ * The type for Verifiable Presentation.
33
+ */
34
+ VerifiablePresentation: "VerifiablePresentation"
35
+ };
36
+
20
37
  /**
21
38
  * The types of verification method.
22
39
  */
@@ -49,4 +66,5 @@ const DidVerificationMethodType = {
49
66
  };
50
67
 
51
68
  exports.DidContexts = DidContexts;
69
+ exports.DidTypes = DidTypes;
52
70
  exports.DidVerificationMethodType = DidVerificationMethodType;
@@ -15,6 +15,23 @@ const DidContexts = {
15
15
  ContextV2: "https://www.w3.org/ns/credentials/v2"
16
16
  };
17
17
 
18
+ // Copyright 2024 IOTA Stiftung.
19
+ // SPDX-License-Identifier: Apache-2.0.
20
+ /**
21
+ * The types for DIDs.
22
+ */
23
+ // eslint-disable-next-line @typescript-eslint/naming-convention
24
+ const DidTypes = {
25
+ /**
26
+ * The type for Verifiable Credential.
27
+ */
28
+ VerifiableCredential: "VerifiableCredential",
29
+ /**
30
+ * The type for Verifiable Presentation.
31
+ */
32
+ VerifiablePresentation: "VerifiablePresentation"
33
+ };
34
+
18
35
  /**
19
36
  * The types of verification method.
20
37
  */
@@ -46,4 +63,4 @@ const DidVerificationMethodType = {
46
63
  CapabilityDelegation: "capabilityDelegation"
47
64
  };
48
65
 
49
- export { DidContexts, DidVerificationMethodType };
66
+ export { DidContexts, DidTypes, DidVerificationMethodType };
@@ -1,4 +1,5 @@
1
1
  export * from "./models/didContexts";
2
+ export * from "./models/didTypes";
2
3
  export * from "./models/didVerificationMethodType";
3
4
  export * from "./models/IDidCredentialStatus";
4
5
  export * from "./models/IDidDocument";
@@ -0,0 +1,17 @@
1
+ /**
2
+ * The types for DIDs.
3
+ */
4
+ export declare const DidTypes: {
5
+ /**
6
+ * The type for Verifiable Credential.
7
+ */
8
+ readonly VerifiableCredential: "VerifiableCredential";
9
+ /**
10
+ * The type for Verifiable Presentation.
11
+ */
12
+ readonly VerifiablePresentation: "VerifiablePresentation";
13
+ };
14
+ /**
15
+ * The types for DIDs.
16
+ */
17
+ export type DidTypes = (typeof DidTypes)[keyof typeof DidTypes];
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/standards-w3c-did - Changelog
2
2
 
3
- ## v0.0.1-next.7
3
+ ## v0.0.1-next.8
4
4
 
5
5
  - Initial Release
@@ -14,9 +14,11 @@
14
14
  ## Type Aliases
15
15
 
16
16
  - [DidContexts](type-aliases/DidContexts.md)
17
+ - [DidTypes](type-aliases/DidTypes.md)
17
18
  - [DidVerificationMethodType](type-aliases/DidVerificationMethodType.md)
18
19
 
19
20
  ## Variables
20
21
 
21
22
  - [DidContexts](variables/DidContexts.md)
23
+ - [DidTypes](variables/DidTypes.md)
22
24
  - [DidVerificationMethodType](variables/DidVerificationMethodType.md)
@@ -0,0 +1,5 @@
1
+ # Type Alias: DidTypes
2
+
3
+ > **DidTypes**: *typeof* [`DidTypes`](../variables/DidTypes.md)\[keyof *typeof* [`DidTypes`](../variables/DidTypes.md)\]
4
+
5
+ The types for DIDs.
@@ -0,0 +1,19 @@
1
+ # Variable: DidTypes
2
+
3
+ > `const` **DidTypes**: `object`
4
+
5
+ The types for DIDs.
6
+
7
+ ## Type declaration
8
+
9
+ ### VerifiableCredential
10
+
11
+ > `readonly` **VerifiableCredential**: `"VerifiableCredential"` = `"VerifiableCredential"`
12
+
13
+ The type for Verifiable Credential.
14
+
15
+ ### VerifiablePresentation
16
+
17
+ > `readonly` **VerifiablePresentation**: `"VerifiablePresentation"` = `"VerifiablePresentation"`
18
+
19
+ The type for Verifiable Presentation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/standards-w3c-did",
3
- "version": "0.0.1-next.7",
3
+ "version": "0.0.1-next.8",
4
4
  "description": "Models which define the structure of W3C DID Standard",
5
5
  "repository": {
6
6
  "type": "git",