@credo-ts/indy-vdr 0.4.1-alpha.157

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 (75) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +31 -0
  3. package/build/IndyVdrApi.d.ts +34 -0
  4. package/build/IndyVdrApi.js +82 -0
  5. package/build/IndyVdrApi.js.map +1 -0
  6. package/build/IndyVdrModule.d.ts +14 -0
  7. package/build/IndyVdrModule.js +31 -0
  8. package/build/IndyVdrModule.js.map +1 -0
  9. package/build/IndyVdrModuleConfig.d.ts +66 -0
  10. package/build/IndyVdrModuleConfig.js +18 -0
  11. package/build/IndyVdrModuleConfig.js.map +1 -0
  12. package/build/anoncreds/IndyVdrAnonCredsRegistry.d.ts +113 -0
  13. package/build/anoncreds/IndyVdrAnonCredsRegistry.js +681 -0
  14. package/build/anoncreds/IndyVdrAnonCredsRegistry.js.map +1 -0
  15. package/build/anoncreds/index.d.ts +1 -0
  16. package/build/anoncreds/index.js +18 -0
  17. package/build/anoncreds/index.js.map +1 -0
  18. package/build/anoncreds/utils/identifiers.d.ts +5 -0
  19. package/build/anoncreds/utils/identifiers.js +40 -0
  20. package/build/anoncreds/utils/identifiers.js.map +1 -0
  21. package/build/anoncreds/utils/transform.d.ts +32 -0
  22. package/build/anoncreds/utils/transform.js +92 -0
  23. package/build/anoncreds/utils/transform.js.map +1 -0
  24. package/build/dids/IndyVdrIndyDidRegistrar.d.ts +85 -0
  25. package/build/dids/IndyVdrIndyDidRegistrar.js +339 -0
  26. package/build/dids/IndyVdrIndyDidRegistrar.js.map +1 -0
  27. package/build/dids/IndyVdrIndyDidResolver.d.ts +6 -0
  28. package/build/dids/IndyVdrIndyDidResolver.js +38 -0
  29. package/build/dids/IndyVdrIndyDidResolver.js.map +1 -0
  30. package/build/dids/IndyVdrSovDidResolver.d.ts +8 -0
  31. package/build/dids/IndyVdrSovDidResolver.js +79 -0
  32. package/build/dids/IndyVdrSovDidResolver.js.map +1 -0
  33. package/build/dids/didIndyUtil.d.ts +47 -0
  34. package/build/dids/didIndyUtil.js +234 -0
  35. package/build/dids/didIndyUtil.js.map +1 -0
  36. package/build/dids/didSovUtil.d.ts +26 -0
  37. package/build/dids/didSovUtil.js +155 -0
  38. package/build/dids/didSovUtil.js.map +1 -0
  39. package/build/dids/index.d.ts +3 -0
  40. package/build/dids/index.js +10 -0
  41. package/build/dids/index.js.map +1 -0
  42. package/build/error/IndyVdrError.d.ts +6 -0
  43. package/build/error/IndyVdrError.js +11 -0
  44. package/build/error/IndyVdrError.js.map +1 -0
  45. package/build/error/IndyVdrNotConfiguredError.d.ts +6 -0
  46. package/build/error/IndyVdrNotConfiguredError.js +11 -0
  47. package/build/error/IndyVdrNotConfiguredError.js.map +1 -0
  48. package/build/error/IndyVdrNotFound.d.ts +6 -0
  49. package/build/error/IndyVdrNotFound.js +11 -0
  50. package/build/error/IndyVdrNotFound.js.map +1 -0
  51. package/build/error/index.d.ts +3 -0
  52. package/build/error/index.js +20 -0
  53. package/build/error/index.js.map +1 -0
  54. package/build/index.d.ts +5 -0
  55. package/build/index.js +27 -0
  56. package/build/index.js.map +1 -0
  57. package/build/pool/IndyVdrPool.d.ts +54 -0
  58. package/build/pool/IndyVdrPool.js +131 -0
  59. package/build/pool/IndyVdrPool.js.map +1 -0
  60. package/build/pool/IndyVdrPoolService.d.ts +55 -0
  61. package/build/pool/IndyVdrPoolService.js +175 -0
  62. package/build/pool/IndyVdrPoolService.js.map +1 -0
  63. package/build/pool/index.d.ts +2 -0
  64. package/build/pool/index.js +19 -0
  65. package/build/pool/index.js.map +1 -0
  66. package/build/utils/did.d.ts +32 -0
  67. package/build/utils/did.js +57 -0
  68. package/build/utils/did.js.map +1 -0
  69. package/build/utils/promises.d.ts +11 -0
  70. package/build/utils/promises.js +27 -0
  71. package/build/utils/promises.js.map +1 -0
  72. package/build/utils/sign.d.ts +5 -0
  73. package/build/utils/sign.js +24 -0
  74. package/build/utils/sign.js.map +1 -0
  75. package/package.json +44 -0
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@credo-ts/indy-vdr",
3
+ "main": "build/index",
4
+ "types": "build/index",
5
+ "version": "0.4.1-alpha.157+b83c5173",
6
+ "files": [
7
+ "build"
8
+ ],
9
+ "license": "Apache-2.0",
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "homepage": "https://github.com/openwallet-foundation/credo-ts/tree/main/packages/indy-vdr",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/openwallet-foundation/credo-ts",
17
+ "directory": "packages/indy-vdr"
18
+ },
19
+ "scripts": {
20
+ "build": "yarn run clean && yarn run compile",
21
+ "clean": "rimraf ./build",
22
+ "compile": "tsc -p tsconfig.build.json",
23
+ "prepublishOnly": "yarn run build",
24
+ "test": "jest"
25
+ },
26
+ "dependencies": {
27
+ "@credo-ts/anoncreds": "0.4.1-alpha.157+b83c5173",
28
+ "@credo-ts/core": "0.4.1-alpha.157+b83c5173"
29
+ },
30
+ "devDependencies": {
31
+ "@hyperledger/indy-vdr-nodejs": "^0.2.0",
32
+ "@hyperledger/indy-vdr-shared": "^0.2.0",
33
+ "@stablelib/ed25519": "^1.0.2",
34
+ "@types/ref-array-di": "^1.2.6",
35
+ "@types/ref-struct-di": "^1.1.10",
36
+ "rimraf": "^4.4.0",
37
+ "rxjs": "^7.8.0",
38
+ "typescript": "~4.9.5"
39
+ },
40
+ "peerDependencies": {
41
+ "@hyperledger/indy-vdr-shared": "^0.2.0"
42
+ },
43
+ "gitHead": "b83c5173070594448d92f801331b3a31c7ac8049"
44
+ }