@happyvertical/signatures 0.80.0
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/AGENT.md +49 -0
- package/LICENSE +7 -0
- package/README.md +129 -0
- package/dist/adapters/boldsign.d.ts +48 -0
- package/dist/adapters/boldsign.d.ts.map +1 -0
- package/dist/adapters/boldsign.js +1443 -0
- package/dist/adapters/boldsign.js.map +1 -0
- package/dist/chunks/errors-Bnx7QrSA.js +59 -0
- package/dist/chunks/errors-Bnx7QrSA.js.map +1 -0
- package/dist/errors.d.ts +46 -0
- package/dist/errors.d.ts.map +1 -0
- package/dist/factory.d.ts +7 -0
- package/dist/factory.d.ts.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +35 -0
- package/dist/index.js.map +1 -0
- package/dist/shared.d.ts +12 -0
- package/dist/shared.d.ts.map +1 -0
- package/dist/types.d.ts +173 -0
- package/dist/types.d.ts.map +1 -0
- package/metadata.json +28 -0
- package/package.json +62 -0
package/metadata.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@happyvertical/signatures",
|
|
3
|
+
"path": "packages/signatures",
|
|
4
|
+
"position": {
|
|
5
|
+
"index": 25,
|
|
6
|
+
"count": 32
|
|
7
|
+
},
|
|
8
|
+
"description": "Provider-neutral e-signature workflows with a BoldSign adapter",
|
|
9
|
+
"provides": [
|
|
10
|
+
"Provider-neutral e-signature workflows with a BoldSign adapter"
|
|
11
|
+
],
|
|
12
|
+
"implements": [
|
|
13
|
+
"BoldSign"
|
|
14
|
+
],
|
|
15
|
+
"requires": {
|
|
16
|
+
"workspace": [],
|
|
17
|
+
"externalHappyVertical": [],
|
|
18
|
+
"external": []
|
|
19
|
+
},
|
|
20
|
+
"dependents": [],
|
|
21
|
+
"stability": {
|
|
22
|
+
"level": "experimental",
|
|
23
|
+
"reason": "Marked as preview or experimental in package guidance."
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"signatures"
|
|
27
|
+
]
|
|
28
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@happyvertical/signatures",
|
|
3
|
+
"version": "0.80.0",
|
|
4
|
+
"description": "Provider-neutral e-signature workflows with a BoldSign adapter",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./boldsign": {
|
|
14
|
+
"types": "./dist/adapters/boldsign.d.ts",
|
|
15
|
+
"import": "./dist/adapters/boldsign.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"esignature",
|
|
20
|
+
"signature",
|
|
21
|
+
"boldsign",
|
|
22
|
+
"agreements"
|
|
23
|
+
],
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"README.md",
|
|
27
|
+
"LICENSE",
|
|
28
|
+
"AGENT.md",
|
|
29
|
+
"metadata.json"
|
|
30
|
+
],
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"registry": "https://registry.npmjs.org",
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/happyvertical/sdk.git",
|
|
38
|
+
"directory": "packages/signatures"
|
|
39
|
+
},
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/happyvertical/sdk/issues"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/happyvertical/sdk/tree/main/packages/signatures#readme",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/node": "24.12.2",
|
|
47
|
+
"@vitest/coverage-v8": "4.1.5",
|
|
48
|
+
"typescript": "^5.9.3",
|
|
49
|
+
"vite": "7.3.2",
|
|
50
|
+
"vite-plugin-dts": "4.5.4",
|
|
51
|
+
"vitest": "^4.1.5"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"test": "vitest --config ../../vitest.package.config.ts run",
|
|
55
|
+
"test:watch": "vitest --config ../../vitest.package.config.ts",
|
|
56
|
+
"build": "vite build",
|
|
57
|
+
"build:watch": "vite build --watch",
|
|
58
|
+
"typecheck": "tsc --noEmit",
|
|
59
|
+
"docs": "typedoc --plugin typedoc-plugin-markdown --out docs --entryPoints ./src/index.ts --tsconfig ./tsconfig.json --excludePrivate --excludeInternal --hideGenerator --fileExtension .md --readme none --categorizeByGroup false --includeVersion false --hidePageHeader --hidePageTitle false --outputFileStrategy modules",
|
|
60
|
+
"clean": "rm -rf dist docs"
|
|
61
|
+
}
|
|
62
|
+
}
|