@cdot65/prisma-airs-sdk 0.7.0 → 0.8.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cdot65/prisma-airs-sdk",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "TypeScript SDK for Palo Alto Networks Prisma AIRS — scanning, management, model security, and red teaming APIs",
5
5
  "author": "Calvin Remsburg <cremsburg.dev@gmail.com>",
6
6
  "license": "MIT",
@@ -47,6 +47,8 @@
47
47
  "test": "vitest run",
48
48
  "test:watch": "vitest",
49
49
  "test:coverage": "vitest run --coverage",
50
+ "preflight": "tsx scripts/preflight-schemas.ts",
51
+ "preflight:warn": "tsx scripts/preflight-schemas.ts --warn-only",
50
52
  "prepare": "git config core.hooksPath .githooks && npm run build",
51
53
  "prepublishOnly": "npm run lint && npm run test",
52
54
  "example:scan": "npx tsx --env-file=.env examples/basic-scan.ts",
@@ -67,6 +69,7 @@
67
69
  "zod": "^3.24.0"
68
70
  },
69
71
  "devDependencies": {
72
+ "@apidevtools/swagger-parser": "^12.1.0",
70
73
  "@types/node": "^25.3.3",
71
74
  "@typescript-eslint/eslint-plugin": "^8.18.2",
72
75
  "@typescript-eslint/parser": "^8.18.2",
@@ -74,7 +77,9 @@
74
77
  "eslint": "^9.17.0",
75
78
  "prettier": "^3.8.1",
76
79
  "tsup": "^8.3.0",
80
+ "tsx": "^4.21.0",
77
81
  "typescript": "^5.3.3",
78
- "vitest": "^3.0.0"
82
+ "vitest": "^3.0.0",
83
+ "zod-to-json-schema": "^3.25.2"
79
84
  }
80
85
  }