@twin.org/identity-authentication 0.0.3-next.6 → 0.0.3-next.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/models/IVerifiableCredentialAuthenticationGeneratorConfig.js.map +1 -1
- package/dist/types/models/IVerifiableCredentialAuthenticationGeneratorConfig.d.ts +0 -5
- package/docs/changelog.md +21 -0
- package/docs/reference/interfaces/IVerifiableCredentialAuthenticationGeneratorConfig.md +0 -14
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IVerifiableCredentialAuthenticationGeneratorConfig.js","sourceRoot":"","sources":["../../../src/models/IVerifiableCredentialAuthenticationGeneratorConfig.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * Configuration for the Verifiable Credential Authentication Generator.\n */\nexport interface IVerifiableCredentialAuthenticationGeneratorConfig {\n\t/**\n\t * The time-to-live (TTL) for token in seconds.\n\t * @default 60 (1 minute)\n\t */\n\ttokenTtlInSeconds?: number;\n\n\t/**\n\t * The
|
|
1
|
+
{"version":3,"file":"IVerifiableCredentialAuthenticationGeneratorConfig.js","sourceRoot":"","sources":["../../../src/models/IVerifiableCredentialAuthenticationGeneratorConfig.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * Configuration for the Verifiable Credential Authentication Generator.\n */\nexport interface IVerifiableCredentialAuthenticationGeneratorConfig {\n\t/**\n\t * The time-to-live (TTL) for token in seconds.\n\t * @default 60 (1 minute)\n\t */\n\ttokenTtlInSeconds?: number;\n\n\t/**\n\t * The id of the identity method to use when creating/verifying tokens.\n\t */\n\tverificationMethodId: string;\n}\n"]}
|
|
@@ -7,11 +7,6 @@ export interface IVerifiableCredentialAuthenticationGeneratorConfig {
|
|
|
7
7
|
* @default 60 (1 minute)
|
|
8
8
|
*/
|
|
9
9
|
tokenTtlInSeconds?: number;
|
|
10
|
-
/**
|
|
11
|
-
* The context id to use as the base for the verification method e.g. node/organization.
|
|
12
|
-
* @default node
|
|
13
|
-
*/
|
|
14
|
-
contextId?: string;
|
|
15
10
|
/**
|
|
16
11
|
* The id of the identity method to use when creating/verifying tokens.
|
|
17
12
|
*/
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.7](https://github.com/twinfoundation/identity/compare/identity-authentication-v0.0.3-next.6...identity-authentication-v0.0.3-next.7) (2026-01-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* remove unused config property ([672e61f](https://github.com/twinfoundation/identity/commit/672e61f83925e9fe5cd188af30bc2d45d75d2882))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* associate vault keys with document not controller ([#86](https://github.com/twinfoundation/identity/issues/86)) ([6430f4b](https://github.com/twinfoundation/identity/commit/6430f4b559315a1fe99b60c6db1c661d317bc243))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* The following workspace dependencies were updated
|
|
19
|
+
* dependencies
|
|
20
|
+
* @twin.org/identity-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
21
|
+
* devDependencies
|
|
22
|
+
* @twin.org/identity-connector-entity-storage bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
23
|
+
|
|
3
24
|
## [0.0.3-next.6](https://github.com/twinfoundation/identity/compare/identity-authentication-v0.0.3-next.5...identity-authentication-v0.0.3-next.6) (2025-11-26)
|
|
4
25
|
|
|
5
26
|
|
|
@@ -18,20 +18,6 @@ The time-to-live (TTL) for token in seconds.
|
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
### contextId?
|
|
22
|
-
|
|
23
|
-
> `optional` **contextId**: `string`
|
|
24
|
-
|
|
25
|
-
The context id to use as the base for the verification method e.g. node/organization.
|
|
26
|
-
|
|
27
|
-
#### Default
|
|
28
|
-
|
|
29
|
-
```ts
|
|
30
|
-
node
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
***
|
|
34
|
-
|
|
35
21
|
### verificationMethodId
|
|
36
22
|
|
|
37
23
|
> **verificationMethodId**: `string`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-authentication",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.7",
|
|
4
4
|
"description": "Authentication components implemented using identity",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@twin.org/core": "next",
|
|
20
20
|
"@twin.org/crypto": "next",
|
|
21
21
|
"@twin.org/data-json-ld": "next",
|
|
22
|
-
"@twin.org/identity-models": "0.0.3-next.
|
|
22
|
+
"@twin.org/identity-models": "0.0.3-next.7",
|
|
23
23
|
"@twin.org/standards-w3c-did": "next",
|
|
24
24
|
"@twin.org/web": "next"
|
|
25
25
|
},
|