@greenarmor/ges-core 1.2.6 → 1.2.8
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/dist/schemas/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const ProjectTypeSchema: z.ZodEnum<["saas", "ai-application", "mcp-server", "blockchain", "wallet", "government-system", "healthcare-system", "event-platform", "photo-storage-platform", "vulnerability-scanner", "generic-web-application", "api-backend", "mobile-application"]>;
|
|
3
|
-
export declare const FrameworkNameSchema: z.ZodEnum<["GDPR", "OWASP", "CIS", "NIST", "ISO27001", "ISO27701", "HIPAA"]>;
|
|
3
|
+
export declare const FrameworkNameSchema: z.ZodEnum<["GDPR", "OWASP", "CIS", "NIST", "NIST-800-53", "ISO27001", "ISO27701", "HIPAA"]>;
|
|
4
4
|
export declare const DataClassificationSchema: z.ZodEnum<["public", "internal", "confidential", "restricted"]>;
|
|
5
5
|
export declare const ControlStatusSchema: z.ZodEnum<["pass", "fail", "warning", "not-applicable", "not-implemented"]>;
|
|
6
6
|
export declare const ReportFormatSchema: z.ZodEnum<["markdown", "html", "pdf"]>;
|
|
@@ -20,7 +20,7 @@ export declare const RequirementConfigSchema: z.ZodObject<{
|
|
|
20
20
|
export declare const ProjectConfigSchema: z.ZodObject<{
|
|
21
21
|
project_name: z.ZodString;
|
|
22
22
|
project_type: z.ZodEnum<["saas", "ai-application", "mcp-server", "blockchain", "wallet", "government-system", "healthcare-system", "event-platform", "photo-storage-platform", "vulnerability-scanner", "generic-web-application", "api-backend", "mobile-application"]>;
|
|
23
|
-
frameworks: z.ZodArray<z.ZodEnum<["GDPR", "OWASP", "CIS", "NIST", "ISO27001", "ISO27701", "HIPAA"]>, "many">;
|
|
23
|
+
frameworks: z.ZodArray<z.ZodEnum<["GDPR", "OWASP", "CIS", "NIST", "NIST-800-53", "ISO27001", "ISO27701", "HIPAA"]>, "many">;
|
|
24
24
|
requirements: z.ZodObject<{
|
|
25
25
|
encryption: z.ZodObject<{
|
|
26
26
|
required: z.ZodBoolean;
|
|
@@ -375,7 +375,7 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
375
375
|
}, "strip", z.ZodTypeAny, {
|
|
376
376
|
project_name: string;
|
|
377
377
|
project_type: "saas" | "ai-application" | "mcp-server" | "blockchain" | "wallet" | "government-system" | "healthcare-system" | "event-platform" | "photo-storage-platform" | "vulnerability-scanner" | "generic-web-application" | "api-backend" | "mobile-application";
|
|
378
|
-
frameworks: ("GDPR" | "OWASP" | "CIS" | "NIST" | "ISO27001" | "ISO27701" | "HIPAA")[];
|
|
378
|
+
frameworks: ("GDPR" | "OWASP" | "CIS" | "NIST" | "NIST-800-53" | "ISO27001" | "ISO27701" | "HIPAA")[];
|
|
379
379
|
requirements: {
|
|
380
380
|
encryption: {
|
|
381
381
|
required: boolean;
|
|
@@ -458,7 +458,7 @@ export declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
458
458
|
}, {
|
|
459
459
|
project_name: string;
|
|
460
460
|
project_type: "saas" | "ai-application" | "mcp-server" | "blockchain" | "wallet" | "government-system" | "healthcare-system" | "event-platform" | "photo-storage-platform" | "vulnerability-scanner" | "generic-web-application" | "api-backend" | "mobile-application";
|
|
461
|
-
frameworks: ("GDPR" | "OWASP" | "CIS" | "NIST" | "ISO27001" | "ISO27701" | "HIPAA")[];
|
|
461
|
+
frameworks: ("GDPR" | "OWASP" | "CIS" | "NIST" | "NIST-800-53" | "ISO27001" | "ISO27701" | "HIPAA")[];
|
|
462
462
|
requirements: {
|
|
463
463
|
encryption: {
|
|
464
464
|
required: boolean;
|
|
@@ -560,7 +560,7 @@ export declare const ControlSchema: z.ZodObject<{
|
|
|
560
560
|
name: z.ZodString;
|
|
561
561
|
description: z.ZodString;
|
|
562
562
|
category: z.ZodString;
|
|
563
|
-
framework: z.ZodEnum<["GDPR", "OWASP", "CIS", "NIST", "ISO27001", "ISO27701", "HIPAA"]>;
|
|
563
|
+
framework: z.ZodEnum<["GDPR", "OWASP", "CIS", "NIST", "NIST-800-53", "ISO27001", "ISO27701", "HIPAA"]>;
|
|
564
564
|
article: z.ZodOptional<z.ZodString>;
|
|
565
565
|
status: z.ZodDefault<z.ZodEnum<["pass", "fail", "warning", "not-applicable", "not-implemented"]>>;
|
|
566
566
|
severity: z.ZodEnum<["critical", "high", "medium", "low"]>;
|
|
@@ -587,7 +587,7 @@ export declare const ControlSchema: z.ZodObject<{
|
|
|
587
587
|
description: string;
|
|
588
588
|
name: string;
|
|
589
589
|
category: string;
|
|
590
|
-
framework: "GDPR" | "OWASP" | "CIS" | "NIST" | "ISO27001" | "ISO27701" | "HIPAA";
|
|
590
|
+
framework: "GDPR" | "OWASP" | "CIS" | "NIST" | "NIST-800-53" | "ISO27001" | "ISO27701" | "HIPAA";
|
|
591
591
|
severity: "critical" | "high" | "medium" | "low";
|
|
592
592
|
implementation_guidance: string;
|
|
593
593
|
checks: {
|
|
@@ -602,7 +602,7 @@ export declare const ControlSchema: z.ZodObject<{
|
|
|
602
602
|
description: string;
|
|
603
603
|
name: string;
|
|
604
604
|
category: string;
|
|
605
|
-
framework: "GDPR" | "OWASP" | "CIS" | "NIST" | "ISO27001" | "ISO27701" | "HIPAA";
|
|
605
|
+
framework: "GDPR" | "OWASP" | "CIS" | "NIST" | "NIST-800-53" | "ISO27001" | "ISO27701" | "HIPAA";
|
|
606
606
|
severity: "critical" | "high" | "medium" | "low";
|
|
607
607
|
implementation_guidance: string;
|
|
608
608
|
checks: {
|
package/dist/schemas/index.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type ProjectType = "saas" | "ai-application" | "mcp-server" | "blockchain" | "wallet" | "government-system" | "healthcare-system" | "event-platform" | "photo-storage-platform" | "vulnerability-scanner" | "generic-web-application" | "api-backend" | "mobile-application";
|
|
2
|
-
export type FrameworkName = "GDPR" | "OWASP" | "CIS" | "NIST" | "ISO27001" | "ISO27701" | "HIPAA";
|
|
2
|
+
export type FrameworkName = "GDPR" | "OWASP" | "CIS" | "NIST" | "NIST-800-53" | "ISO27001" | "ISO27701" | "HIPAA";
|
|
3
3
|
export type DataClassification = "public" | "internal" | "confidential" | "restricted";
|
|
4
4
|
export type SeverityLevel = "critical" | "high" | "medium" | "low";
|
|
5
5
|
export type ControlStatus = "pass" | "fail" | "warning" | "not-applicable" | "not-implemented";
|