@cdot65/prisma-airs-cli 7.0.1 → 7.1.3
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 +1 -1
- package/dist/{chunk-KZRSHNUC.js → chunk-T4S4FMTZ.js} +5 -0
- package/dist/cli/index.js +1281 -108
- package/dist/index.d.ts +9 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1674,6 +1674,9 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
1674
1674
|
aiGwInferenceApiKey: z.ZodOptional<z.ZodString>;
|
|
1675
1675
|
aiGwInferenceModel: z.ZodOptional<z.ZodString>;
|
|
1676
1676
|
aiGwEmbeddingModel: z.ZodOptional<z.ZodString>;
|
|
1677
|
+
typesafeApiKey: z.ZodOptional<z.ZodString>;
|
|
1678
|
+
typesafeBaseUrl: z.ZodOptional<z.ZodString>;
|
|
1679
|
+
typesafeModel: z.ZodOptional<z.ZodString>;
|
|
1677
1680
|
scanConcurrency: z.ZodDefault<z.ZodNumber>;
|
|
1678
1681
|
defaultOutput: z.ZodOptional<z.ZodEnum<["pretty", "table", "markdown", "csv", "json", "yaml"]>>;
|
|
1679
1682
|
dataDir: z.ZodDefault<z.ZodString>;
|
|
@@ -1705,6 +1708,9 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
1705
1708
|
aiGwInferenceApiKey?: string | undefined;
|
|
1706
1709
|
aiGwInferenceModel?: string | undefined;
|
|
1707
1710
|
aiGwEmbeddingModel?: string | undefined;
|
|
1711
|
+
typesafeApiKey?: string | undefined;
|
|
1712
|
+
typesafeBaseUrl?: string | undefined;
|
|
1713
|
+
typesafeModel?: string | undefined;
|
|
1708
1714
|
defaultOutput?: "json" | "yaml" | "pretty" | "table" | "markdown" | "csv" | undefined;
|
|
1709
1715
|
}, {
|
|
1710
1716
|
airsApiKey?: string | undefined;
|
|
@@ -1732,6 +1738,9 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
1732
1738
|
aiGwInferenceApiKey?: string | undefined;
|
|
1733
1739
|
aiGwInferenceModel?: string | undefined;
|
|
1734
1740
|
aiGwEmbeddingModel?: string | undefined;
|
|
1741
|
+
typesafeApiKey?: string | undefined;
|
|
1742
|
+
typesafeBaseUrl?: string | undefined;
|
|
1743
|
+
typesafeModel?: string | undefined;
|
|
1735
1744
|
scanConcurrency?: number | undefined;
|
|
1736
1745
|
defaultOutput?: "json" | "yaml" | "pretty" | "table" | "markdown" | "csv" | undefined;
|
|
1737
1746
|
dataDir?: string | undefined;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cdot65/prisma-airs-cli",
|
|
3
3
|
"packageManager": "pnpm@10.6.5",
|
|
4
|
-
"version": "7.
|
|
5
|
-
"description": "CLI and library for Palo Alto Prisma AIRS
|
|
4
|
+
"version": "7.1.3",
|
|
5
|
+
"description": "CLI and library for Palo Alto Prisma AIRS — guardrail refinement, AI red teaming, model security scanning, profile audits",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|