@cdot65/prisma-airs-sdk 0.8.2 → 0.9.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/README.md +6 -0
- package/dist/index.cjs +2229 -1199
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11265 -5
- package/dist/index.d.ts +11265 -5
- package/dist/index.js +2156 -1198
- package/dist/index.js.map +1 -1
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -67,6 +67,12 @@ client.dlpProfiles; // DLP data profile listing
|
|
|
67
67
|
client.deploymentProfiles; // Deployment profile listing
|
|
68
68
|
client.scanLogs; // Scan activity log queries
|
|
69
69
|
client.oauth; // OAuth token management (get/invalidate)
|
|
70
|
+
|
|
71
|
+
// DLP namespace — separate base URL, same OAuth credentials:
|
|
72
|
+
client.dlp.dataFilteringProfiles; // list / get / replace
|
|
73
|
+
client.dlp.dataPatterns; // full CRUD + JSON Merge Patch
|
|
74
|
+
client.dlp.dataProfiles; // CRUD without DELETE + JSON Merge Patch
|
|
75
|
+
client.dlp.dictionaries; // multipart upload + CRUD + JSON Merge Patch
|
|
70
76
|
```
|
|
71
77
|
|
|
72
78
|
### Model Security — ML Model Scanning (OAuth2)
|