@verdocs/js-sdk 4.2.136 → 4.2.156
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/README.md +3 -45
- package/dist/README.md +3 -45
- package/dist/index.d.mts +222 -20
- package/dist/index.d.ts +222 -20
- package/dist/index.js +236 -39
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +236 -39
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +7 -7
- package/dist/tsconfig.json +1 -0
- package/package.json +7 -7
package/dist/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdocs/js-sdk",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.156",
|
|
4
4
|
"private": false,
|
|
5
5
|
"homepage": "https://github.com/Verdocs/js-sdk",
|
|
6
|
-
"description": "Isomorphic JS SDK providing types and API wrappers for the Verdocs platform for Node and
|
|
6
|
+
"description": "Isomorphic JS/TS SDK providing types and API wrappers for the Verdocs platform for Node and browser clients",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"pdf",
|
|
9
9
|
"document",
|
|
@@ -38,9 +38,10 @@
|
|
|
38
38
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jestconfig.json",
|
|
39
39
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
40
40
|
"lint": "tslint -p tsconfig.json",
|
|
41
|
-
"docs
|
|
42
|
-
"
|
|
43
|
-
"
|
|
41
|
+
"docs": "typedoc && npm run generate-openapi && cp openapi.json ../developers.verdocs.com/public/openapi.json",
|
|
42
|
+
"generate-openapi": "npx tsx openapi/generate-openapi.ts",
|
|
43
|
+
"edit-openapi": "docker run -p 8081:80 -v $(pwd):/sdk -v $(pwd):/sdk swaggerapi/swagger-editor:next-v5",
|
|
44
|
+
"view-openapi": "docker run -p 8081:80 -v $(pwd):/sdk swaggerapi/swagger-ui",
|
|
44
45
|
"clear-docs": "aws --profile=verdocs cloudfront create-invalidation --distribution-id E29UFGU4KEH1GQ --paths \"/*\"",
|
|
45
46
|
"deploy-docs": "npm run docs && aws --profile=verdocs s3 sync --acl public-read --delete docs-html s3://verdocs-developers-js-sdk/ && yarn clear-docs",
|
|
46
47
|
"push": "npm run build && npm publish"
|
|
@@ -70,8 +71,7 @@
|
|
|
70
71
|
"ts-jest": "^29.2.4",
|
|
71
72
|
"tslint": "^6.1.3",
|
|
72
73
|
"tslint-config-prettier": "^1.18.0",
|
|
73
|
-
"typedoc": "^0.
|
|
74
|
-
"typedoc-plugin-markdown": "^4.2.3",
|
|
74
|
+
"typedoc": "^0.27.0-beta.0",
|
|
75
75
|
"typescript": "^5.5.4"
|
|
76
76
|
}
|
|
77
77
|
}
|
package/dist/tsconfig.json
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdocs/js-sdk",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.156",
|
|
4
4
|
"private": false,
|
|
5
5
|
"homepage": "https://github.com/Verdocs/js-sdk",
|
|
6
|
-
"description": "Isomorphic JS SDK providing types and API wrappers for the Verdocs platform for Node and
|
|
6
|
+
"description": "Isomorphic JS/TS SDK providing types and API wrappers for the Verdocs platform for Node and browser clients",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"pdf",
|
|
9
9
|
"document",
|
|
@@ -38,9 +38,10 @@
|
|
|
38
38
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jestconfig.json",
|
|
39
39
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
40
40
|
"lint": "tslint -p tsconfig.json",
|
|
41
|
-
"docs
|
|
42
|
-
"
|
|
43
|
-
"
|
|
41
|
+
"docs": "typedoc && npm run generate-openapi && cp openapi.json ../developers.verdocs.com/public/openapi.json",
|
|
42
|
+
"generate-openapi": "npx tsx openapi/generate-openapi.ts",
|
|
43
|
+
"edit-openapi": "docker run -p 8081:80 -v $(pwd):/sdk -v $(pwd):/sdk swaggerapi/swagger-editor:next-v5",
|
|
44
|
+
"view-openapi": "docker run -p 8081:80 -v $(pwd):/sdk swaggerapi/swagger-ui",
|
|
44
45
|
"clear-docs": "aws --profile=verdocs cloudfront create-invalidation --distribution-id E29UFGU4KEH1GQ --paths \"/*\"",
|
|
45
46
|
"deploy-docs": "npm run docs && aws --profile=verdocs s3 sync --acl public-read --delete docs-html s3://verdocs-developers-js-sdk/ && yarn clear-docs",
|
|
46
47
|
"push": "npm run build && npm publish"
|
|
@@ -70,8 +71,7 @@
|
|
|
70
71
|
"ts-jest": "^29.2.4",
|
|
71
72
|
"tslint": "^6.1.3",
|
|
72
73
|
"tslint-config-prettier": "^1.18.0",
|
|
73
|
-
"typedoc": "^0.
|
|
74
|
-
"typedoc-plugin-markdown": "^4.2.3",
|
|
74
|
+
"typedoc": "^0.27.0-beta.0",
|
|
75
75
|
"typescript": "^5.5.4"
|
|
76
76
|
}
|
|
77
77
|
}
|