oca_package 1.2.2 → 1.2.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.
@@ -9,7 +9,10 @@ class Sensitive {
9
9
  this.dynOverlay = dynOverlay;
10
10
  }
11
11
  GetSensitiveAttributes() {
12
- return this.dynOverlay.sensitive_attributes;
12
+ const sensitive_overlay_attributes = this.dynOverlay.sensitive_attributes;
13
+ // to match the canonicalization of of attributs in the capture base
14
+ const sortedAttributes = sensitive_overlay_attributes.sort();
15
+ return sortedAttributes;
13
16
  }
14
17
  toJSON() {
15
18
  return {
@@ -7,7 +7,10 @@ class Sensitive {
7
7
  this.dynOverlay = dynOverlay;
8
8
  }
9
9
  GetSensitiveAttributes() {
10
- return this.dynOverlay.sensitive_attributes;
10
+ const sensitive_overlay_attributes = this.dynOverlay.sensitive_attributes;
11
+ // to match the canonicalization of of attributs in the capture base
12
+ const sortedAttributes = sensitive_overlay_attributes.sort();
13
+ return sortedAttributes;
11
14
  }
12
15
  toJSON() {
13
16
  return {
@@ -1 +1 @@
1
- {"version":3,"file":"sensitive.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/sensitive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAGjD,MAAM,WAAW,UAAU;IACzB,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,SAAU,YAAW,UAAU;IAC5B,UAAU,EAAE,UAAU,CAAC;gBAElB,UAAU,EAAE,UAAU;IAQlC,OAAO,CAAC,sBAAsB;IAI9B,OAAO,CAAC,MAAM;IAQd,OAAO,CAAC,UAAU;IAKX,eAAe,IAAI,MAAM;CAGjC;AAED,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"sensitive.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/sensitive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAGjD,MAAM,WAAW,UAAU;IACzB,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,SAAU,YAAW,UAAU;IAC5B,UAAU,EAAE,UAAU,CAAC;gBAElB,UAAU,EAAE,UAAU;IAQlC,OAAO,CAAC,sBAAsB;IAQ9B,OAAO,CAAC,MAAM;IAQd,OAAO,CAAC,UAAU;IAKX,eAAe,IAAI,MAAM;CAGjC;AAED,eAAe,SAAS,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oca_package",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "The wrapper of OCA bundle to generate OCA Package at ADC",
5
5
  "type": "module",
6
6
  "main": "./dist/cjs/index.js",