File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change
1
+ /*!
2
+ * Copyright (c) 2024 Digital Bazaar, Inc.
3
+ */
4
+
5
+ import { createRequire } from 'node:module' ;
6
+
7
+ const require = createRequire ( import . meta. url ) ;
8
+
9
+ export const unsecured = new Map ( [
10
+ [ '1.1' , require ( './inputs/credentials/v1.1/unsecured.json' ) ] ,
11
+ [ '2.0' , require ( './inputs/credentials/v2.0/unsecured.json' ) ]
12
+ ] ) ;
Original file line number Diff line number Diff line change 1
1
/*!
2
- * Copyright (c) 2022-2023 Digital Bazaar, Inc.
2
+ * Copyright (c) 2022-2024 Digital Bazaar, Inc.
3
3
*/
4
4
import { checkKeyType } from './assertions.js' ;
5
5
import { createRequire } from 'node:module' ;
@@ -160,6 +160,7 @@ export function checkDataIntegrityProofVerifyErrors({
160
160
}
161
161
// export all assertions
162
162
export * as assertions from './assertions.js' ;
163
+ export * as fixtures from './fixtures.js' ;
163
164
export { generators } from './vc-generator/generators.js' ;
164
165
export { deriveCloned , issueCloned } from './vc-generator/issuer.js' ;
165
166
export { createDocLoader } from './vc-generator/documentLoader.js' ;
You can’t perform that action at this time.
0 commit comments