@cdot65/prisma-airs-sdk 0.20.1 → 0.22.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/LICENSE +21 -0
- package/README.md +28 -9
- package/dist/index.cjs +19016 -10272
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +50840 -6976
- package/dist/index.d.ts +50840 -6976
- package/dist/index.js +18454 -10272
- package/dist/index.js.map +1 -1
- package/package.json +17 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cdot65/prisma-airs-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"description": "TypeScript SDK for Palo Alto Networks Prisma AIRS — scanning, management, model security, red teaming, and AI Gateway APIs",
|
|
5
5
|
"author": "Calvin Remsburg <cremsburg.dev@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"format:check": "prettier --check .",
|
|
45
45
|
"lint": "eslint .",
|
|
46
46
|
"typecheck": "tsc --noEmit",
|
|
47
|
+
"typecheck:tooling": "tsc --project tsconfig.tooling.json",
|
|
47
48
|
"test": "vitest run",
|
|
48
49
|
"test:watch": "vitest",
|
|
49
50
|
"test:coverage": "vitest run --coverage",
|
|
@@ -54,7 +55,16 @@
|
|
|
54
55
|
"docs:check:warn": "tsx scripts/check-example-coverage.ts --warn-only",
|
|
55
56
|
"e2e:ai-gateway": "tsx scripts/e2e-ai-gateway.ts",
|
|
56
57
|
"e2e:ai-gateway:writes": "tsx scripts/e2e-ai-gateway-writes.ts",
|
|
57
|
-
"preflight": "
|
|
58
|
+
"preflight": "npm run openapi:check",
|
|
59
|
+
"preflight:legacy": "tsx scripts/preflight-schemas.ts",
|
|
60
|
+
"openapi:check": "vitest run test/openapi",
|
|
61
|
+
"openapi:audit": "tsx scripts/openapi/audit.ts",
|
|
62
|
+
"e2e:scan": "tsx scripts/e2e-scan.ts",
|
|
63
|
+
"e2e:management": "tsx scripts/e2e-management.ts",
|
|
64
|
+
"e2e:model-security": "tsx scripts/e2e-model-security.ts",
|
|
65
|
+
"e2e:red-team": "tsx scripts/e2e-red-team.ts",
|
|
66
|
+
"e2e:gateway:read": "tsx scripts/e2e-gateway-config.ts",
|
|
67
|
+
"e2e:gateway:extensions": "tsx scripts/e2e-gateway-extensions.ts",
|
|
58
68
|
"preflight:warn": "tsx scripts/preflight-schemas.ts --warn-only",
|
|
59
69
|
"probe:ai-gateway": "tsx scripts/ai-gateway-probe.ts",
|
|
60
70
|
"smoke:ai-gateway": "tsx scripts/smoke-ai-gateway.ts",
|
|
@@ -66,10 +76,13 @@
|
|
|
66
76
|
},
|
|
67
77
|
"devDependencies": {
|
|
68
78
|
"@apidevtools/swagger-parser": "^12.1.0",
|
|
79
|
+
"@modelcontextprotocol/sdk": "1.30.0",
|
|
69
80
|
"@types/node": "^25.3.3",
|
|
81
|
+
"@types/ws": "8.18.1",
|
|
70
82
|
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
|
71
83
|
"@typescript-eslint/parser": "^8.18.2",
|
|
72
84
|
"@vitest/coverage-v8": "^3.2.4",
|
|
85
|
+
"ajv": "^6.15.0",
|
|
73
86
|
"eslint": "^9.17.0",
|
|
74
87
|
"prettier": "^3.8.1",
|
|
75
88
|
"tsup": "^8.3.0",
|
|
@@ -78,6 +91,8 @@
|
|
|
78
91
|
"typedoc-plugin-markdown": "^4.11.0",
|
|
79
92
|
"typescript": "^5.3.3",
|
|
80
93
|
"vitest": "^3.0.0",
|
|
94
|
+
"ws": "8.21.3",
|
|
95
|
+
"yaml": "^2.9.0",
|
|
81
96
|
"zod-to-json-schema": "^3.25.2"
|
|
82
97
|
}
|
|
83
98
|
}
|