@proveanything/smartlinks 1.6.4 → 1.6.5

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/package.json CHANGED
@@ -1,18 +1,20 @@
1
1
  {
2
2
  "name": "@proveanything/smartlinks",
3
- "version": "1.6.4",
3
+ "version": "1.6.5",
4
4
  "description": "Official JavaScript/TypeScript SDK for the Smartlinks API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "files": [
8
8
  "dist/",
9
9
  "docs/",
10
+ "openapi.yaml",
10
11
  "README.md"
11
12
  ],
12
13
  "scripts": {
13
- "build": "tsc && node generate-api-summary.js && node scripts/copy-docs-to-dist.js",
14
+ "build": "tsc && node generate-api-summary.js && node generate-openapi.js && node scripts/copy-docs-to-dist.js",
14
15
  "docs": "typedoc",
15
16
  "docs:summary": "node generate-api-summary.js",
17
+ "docs:openapi": "node generate-openapi.js",
16
18
  "build:docs": "tsc build-docs.ts --outDir dist && node dist/build-docs.js",
17
19
  "prepublishOnly": "npm run build"
18
20
  },