@greenarmor/ges-policy-engine 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/index.d.ts CHANGED
@@ -10,6 +10,7 @@ export { createBlockchainPolicyPack } from "./packs/blockchain.js";
10
10
  export { createGovernmentPolicyPack } from "./packs/government.js";
11
11
  export { createCISPolicyPack } from "./packs/cis.js";
12
12
  export { createNISTPolicyPack } from "./packs/nist.js";
13
+ export { createNIST80053PolicyPack } from "./packs/nist-800-53.js";
13
14
  export { createISO27001PolicyPack } from "./packs/iso27001.js";
14
15
  export { createISO27701PolicyPack } from "./packs/iso27701.js";
15
16
  export { createHIPAAPolicyPack } from "./packs/hipaa.js";
package/dist/index.js CHANGED
@@ -5,6 +5,7 @@ import { createBlockchainPolicyPack } from "./packs/blockchain.js";
5
5
  import { createGovernmentPolicyPack } from "./packs/government.js";
6
6
  import { createCISPolicyPack } from "./packs/cis.js";
7
7
  import { createNISTPolicyPack } from "./packs/nist.js";
8
+ import { createNIST80053PolicyPack } from "./packs/nist-800-53.js";
8
9
  import { createISO27001PolicyPack } from "./packs/iso27001.js";
9
10
  import { createISO27701PolicyPack } from "./packs/iso27701.js";
10
11
  import { createHIPAAPolicyPack } from "./packs/hipaa.js";
@@ -16,6 +17,7 @@ const ALL_PACKS = [
16
17
  createGovernmentPolicyPack,
17
18
  createCISPolicyPack,
18
19
  createNISTPolicyPack,
20
+ createNIST80053PolicyPack,
19
21
  createISO27001PolicyPack,
20
22
  createISO27701PolicyPack,
21
23
  createHIPAAPolicyPack,
@@ -28,6 +30,7 @@ const PACK_MAP = {
28
30
  government: createGovernmentPolicyPack,
29
31
  cis: createCISPolicyPack,
30
32
  nist: createNISTPolicyPack,
33
+ "nist-800-53": createNIST80053PolicyPack,
31
34
  iso27001: createISO27001PolicyPack,
32
35
  iso27701: createISO27701PolicyPack,
33
36
  hipaa: createHIPAAPolicyPack,
@@ -52,6 +55,7 @@ export { createBlockchainPolicyPack } from "./packs/blockchain.js";
52
55
  export { createGovernmentPolicyPack } from "./packs/government.js";
53
56
  export { createCISPolicyPack } from "./packs/cis.js";
54
57
  export { createNISTPolicyPack } from "./packs/nist.js";
58
+ export { createNIST80053PolicyPack } from "./packs/nist-800-53.js";
55
59
  export { createISO27001PolicyPack } from "./packs/iso27001.js";
56
60
  export { createISO27701PolicyPack } from "./packs/iso27701.js";
57
61
  export { createHIPAAPolicyPack } from "./packs/hipaa.js";
@@ -76,8 +76,8 @@ export function createGovernmentPolicyPack() {
76
76
  ];
77
77
  return {
78
78
  id: "government",
79
- name: "Government Policy Pack",
80
- description: "Additional controls for government systems including data sovereignty and chain of custody.",
79
+ name: "Government Policy Pack (GESF Initiative)",
80
+ description: "GESF-defined government controls for data sovereignty, chain of custody, tamper evidence, record integrity, and auditability. This is a GESF initiative — not based on an external standard. For official government compliance frameworks, install the NIST SP 800-53 Rev 5 pack (`nist-800-53`).",
81
81
  version: "1.0.0",
82
82
  project_types: ["government-system"],
83
83
  controls,
@@ -0,0 +1,2 @@
1
+ import type { PolicyPack } from "@greenarmor/ges-core";
2
+ export declare function createNIST80053PolicyPack(): PolicyPack;