oca_package 1.7.0 → 2.0.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.
Files changed (29) hide show
  1. package/dist/cjs/oca_extensions/state/overlays/example.js +2 -1
  2. package/dist/cjs/oca_extensions/state/overlays/form.js +2 -1
  3. package/dist/cjs/oca_extensions/state/overlays/framing/attribute_framing.js +2 -1
  4. package/dist/cjs/oca_extensions/state/overlays/framing/unit_framing.js +2 -1
  5. package/dist/cjs/oca_extensions/state/overlays/ordering.js +2 -1
  6. package/dist/cjs/oca_extensions/state/overlays/range.js +2 -1
  7. package/dist/cjs/oca_extensions/state/overlays/sensitive.js +2 -1
  8. package/dist/cjs/oca_extensions/state/overlays/separator.js +2 -30
  9. package/dist/cjs/types/types.js +3 -1
  10. package/dist/esm/oca_extensions/state/overlays/example.js +2 -1
  11. package/dist/esm/oca_extensions/state/overlays/form.js +2 -1
  12. package/dist/esm/oca_extensions/state/overlays/framing/attribute_framing.js +2 -1
  13. package/dist/esm/oca_extensions/state/overlays/framing/unit_framing.js +2 -1
  14. package/dist/esm/oca_extensions/state/overlays/ordering.js +2 -1
  15. package/dist/esm/oca_extensions/state/overlays/range.js +2 -1
  16. package/dist/esm/oca_extensions/state/overlays/sensitive.js +2 -1
  17. package/dist/esm/oca_extensions/state/overlays/separator.js +2 -30
  18. package/dist/esm/types/types.js +2 -0
  19. package/dist/types/oca_extensions/state/overlays/example.d.ts.map +1 -1
  20. package/dist/types/oca_extensions/state/overlays/form.d.ts.map +1 -1
  21. package/dist/types/oca_extensions/state/overlays/framing/attribute_framing.d.ts.map +1 -1
  22. package/dist/types/oca_extensions/state/overlays/framing/unit_framing.d.ts.map +1 -1
  23. package/dist/types/oca_extensions/state/overlays/ordering.d.ts.map +1 -1
  24. package/dist/types/oca_extensions/state/overlays/range.d.ts.map +1 -1
  25. package/dist/types/oca_extensions/state/overlays/sensitive.d.ts.map +1 -1
  26. package/dist/types/oca_extensions/state/overlays/separator.d.ts.map +1 -1
  27. package/dist/types/types/types.d.ts +1 -0
  28. package/dist/types/types/types.d.ts.map +1 -1
  29. package/package.json +1 -1
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const saidify_1 = require("saidify");
7
7
  const canonical_js_1 = __importDefault(require("../../../utils/canonical.js"));
8
+ const types_js_1 = require("../../../types/types.js");
8
9
  class ExampleOverlay {
9
10
  constructor(dynOverlay, capture_base_digest) {
10
11
  if (!dynOverlay) {
@@ -29,7 +30,7 @@ class ExampleOverlay {
29
30
  return {
30
31
  d: '',
31
32
  capture_base: this.capture_base_digest,
32
- type: 'community/overlays/adc/example/1.1',
33
+ type: `community/overlays/adc/example/${types_js_1.OVERLAY_VERSION}`,
33
34
  language: this.language,
34
35
  attribute_examples: this.GetAttributeExamples(),
35
36
  };
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const saidify_1 = require("saidify");
7
7
  const canonical_js_1 = __importDefault(require("../../../utils/canonical.js"));
8
+ const types_js_1 = require("../../../types/types.js");
8
9
  class FormOverlay {
9
10
  constructor(dynOverlay, capture_base_digest) {
10
11
  if (!dynOverlay) {
@@ -106,7 +107,7 @@ class FormOverlay {
106
107
  return {
107
108
  d: '',
108
109
  capture_base: this.capture_base_digest,
109
- type: 'community/overlays/adc/form/1.1',
110
+ type: `community/overlays/adc/form/${types_js_1.OVERLAY_VERSION}`,
110
111
  language: this.language,
111
112
  pages: this.GetPages(),
112
113
  page_order: this.GetPageOrder(),
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const saidify_1 = require("saidify");
7
7
  const canonical_js_1 = __importDefault(require("../../../../utils/canonical.js"));
8
+ const types_js_1 = require("../../../../types/types.js");
8
9
  class AttributeFraming {
9
10
  constructor(dynOverlay, capture_base_digest) {
10
11
  if (!dynOverlay) {
@@ -46,7 +47,7 @@ class AttributeFraming {
46
47
  return {
47
48
  d: '',
48
49
  capture_base: this.capture_base_digest,
49
- type: 'community/overlays/adc/attribute_framing/1.1',
50
+ type: `community/overlays/adc/attribute_framing/${types_js_1.OVERLAY_VERSION}`,
50
51
  framing_metadata: this.GetFramingMetadata(),
51
52
  attributes: this.GetFramedAttributes(),
52
53
  };
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const saidify_1 = require("saidify");
7
7
  const canonical_js_1 = __importDefault(require("../../../../utils/canonical.js"));
8
+ const types_js_1 = require("../../../../types/types.js");
8
9
  class UnitFraming {
9
10
  constructor(dynOverlay, capture_base_digest) {
10
11
  if (!dynOverlay) {
@@ -38,7 +39,7 @@ class UnitFraming {
38
39
  return {
39
40
  d: '',
40
41
  capture_base: this.capture_base_digest,
41
- type: 'community/overlays/adc/unit_framing/1.1',
42
+ type: `community/overlays/adc/unit_framing/${types_js_1.OVERLAY_VERSION}`,
42
43
  framing_metadata: {
43
44
  id: this.GetId(),
44
45
  label: this.GetLabel(),
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const saidify_1 = require("saidify");
4
+ const types_js_1 = require("../../../types/types.js");
4
5
  class Ordering {
5
6
  constructor(dynOverlay, capture_base_digest) {
6
7
  if (!dynOverlay) {
@@ -22,7 +23,7 @@ class Ordering {
22
23
  return {
23
24
  d: '',
24
25
  capture_base: this.capture_base_digest,
25
- type: 'community/overlays/adc/ordering/1.1',
26
+ type: `community/overlays/adc/ordering/${types_js_1.OVERLAY_VERSION}`,
26
27
  attribute_ordering: this.GetAttributeOrdering(),
27
28
  entry_code_ordering: this.GetEntryCodeOrdering(),
28
29
  };
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const saidify_1 = require("saidify");
7
7
  const canonical_js_1 = __importDefault(require("../../../utils/canonical.js"));
8
+ const types_js_1 = require("../../../types/types.js");
8
9
  class Range {
9
10
  constructor(dynOverlay, capture_base_digest) {
10
11
  if (!dynOverlay) {
@@ -26,7 +27,7 @@ class Range {
26
27
  return {
27
28
  d: '',
28
29
  capture_base: this.capture_base_digest,
29
- type: 'community/overlays/adc/range/1.1',
30
+ type: `community/overlays/adc/range/${types_js_1.OVERLAY_VERSION}`,
30
31
  attributes: this.GetAttributes(),
31
32
  };
32
33
  }
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ const types_js_1 = require("../../../types/types.js");
3
4
  const saidify_1 = require("saidify");
4
5
  class Sensitive {
5
6
  constructor(dynOverlay, capture_base_digest) {
@@ -22,7 +23,7 @@ class Sensitive {
22
23
  return {
23
24
  d: '',
24
25
  capture_base: this.capture_base_digest,
25
- type: 'community/overlays/adc/sensitive/1.1',
26
+ type: `community/overlays/adc/sensitive/${types_js_1.OVERLAY_VERSION}`,
26
27
  sensitive_attributes: this.GetSensitiveAttributes(),
27
28
  };
28
29
  }
@@ -1,39 +1,11 @@
1
1
  "use strict";
2
- /*
3
- Separator overlay
4
-
5
- This overlay is used to define the separators used in the dataset and the attributes in the dataset.
6
-
7
- Canoncial rules:
8
- - d, type, capture_base has to be present in this order
9
- - other properties (dataset_separator, attribute_separators) will be lexically sorted by key
10
- - attributes in attribute_separators will lexically sorted by key as currently current canonical rules applied in the OCA bundle
11
-
12
- - Example:
13
- {
14
- "d": "said:...",
15
- "type": "community/adc/overlays/separator/1.0",
16
- "capture_base": "said:...",
17
- "attribute_separators": {
18
- "attribute_name": {
19
- "attr1": {
20
- "delimiter": "...",
21
- "escape": "..."
22
- }
23
- }
24
- },
25
- "dataset_separator": {
26
- "delimiter": "...",
27
- "escape": "..."
28
- }
29
- }
30
- */
31
2
  var __importDefault = (this && this.__importDefault) || function (mod) {
32
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
33
4
  };
34
5
  Object.defineProperty(exports, "__esModule", { value: true });
35
6
  const saidify_1 = require("saidify");
36
7
  const canonical_js_1 = __importDefault(require("../../../utils/canonical.js"));
8
+ const types_js_1 = require("../../../types/types.js");
37
9
  class Separator {
38
10
  constructor(dynOverlay, capture_base_digest) {
39
11
  if (!dynOverlay) {
@@ -61,7 +33,7 @@ class Separator {
61
33
  return {
62
34
  d: '',
63
35
  capture_base: this.capture_base_digest,
64
- type: 'community/overlays/adc/separator/1.1',
36
+ type: `community/overlays/adc/separator/${types_js_1.OVERLAY_VERSION}`,
65
37
  attribute_separators: this.GetAttributesSeparators(),
66
38
  dataset_separator: this.GetDatasetSeparator(),
67
39
  };
@@ -1,6 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.OverlayTypes = void 0;
3
+ exports.OverlayTypes = exports.OVERLAY_VERSION = void 0;
4
+ // overlay version
5
+ exports.OVERLAY_VERSION = '1.0';
4
6
  // overlay types
5
7
  var OverlayTypes;
6
8
  (function (OverlayTypes) {
@@ -1,5 +1,6 @@
1
1
  import { saidify } from 'saidify';
2
2
  import canonicalize from '../../../utils/canonical.js';
3
+ import { OVERLAY_VERSION } from '../../../types/types.js';
3
4
  class ExampleOverlay {
4
5
  constructor(dynOverlay, capture_base_digest) {
5
6
  if (!dynOverlay) {
@@ -24,7 +25,7 @@ class ExampleOverlay {
24
25
  return {
25
26
  d: '',
26
27
  capture_base: this.capture_base_digest,
27
- type: 'community/overlays/adc/example/1.1',
28
+ type: `community/overlays/adc/example/${OVERLAY_VERSION}`,
28
29
  language: this.language,
29
30
  attribute_examples: this.GetAttributeExamples(),
30
31
  };
@@ -1,5 +1,6 @@
1
1
  import { saidify } from 'saidify';
2
2
  import canonicalize from '../../../utils/canonical.js';
3
+ import { OVERLAY_VERSION } from '../../../types/types.js';
3
4
  class FormOverlay {
4
5
  constructor(dynOverlay, capture_base_digest) {
5
6
  if (!dynOverlay) {
@@ -101,7 +102,7 @@ class FormOverlay {
101
102
  return {
102
103
  d: '',
103
104
  capture_base: this.capture_base_digest,
104
- type: 'community/overlays/adc/form/1.1',
105
+ type: `community/overlays/adc/form/${OVERLAY_VERSION}`,
105
106
  language: this.language,
106
107
  pages: this.GetPages(),
107
108
  page_order: this.GetPageOrder(),
@@ -1,5 +1,6 @@
1
1
  import { saidify } from 'saidify';
2
2
  import canonicalize from '../../../../utils/canonical.js';
3
+ import { OVERLAY_VERSION } from '../../../../types/types.js';
3
4
  class AttributeFraming {
4
5
  constructor(dynOverlay, capture_base_digest) {
5
6
  if (!dynOverlay) {
@@ -41,7 +42,7 @@ class AttributeFraming {
41
42
  return {
42
43
  d: '',
43
44
  capture_base: this.capture_base_digest,
44
- type: 'community/overlays/adc/attribute_framing/1.1',
45
+ type: `community/overlays/adc/attribute_framing/${OVERLAY_VERSION}`,
45
46
  framing_metadata: this.GetFramingMetadata(),
46
47
  attributes: this.GetFramedAttributes(),
47
48
  };
@@ -1,5 +1,6 @@
1
1
  import { saidify } from 'saidify';
2
2
  import canonicalize from '../../../../utils/canonical.js';
3
+ import { OVERLAY_VERSION } from '../../../../types/types.js';
3
4
  class UnitFraming {
4
5
  constructor(dynOverlay, capture_base_digest) {
5
6
  if (!dynOverlay) {
@@ -33,7 +34,7 @@ class UnitFraming {
33
34
  return {
34
35
  d: '',
35
36
  capture_base: this.capture_base_digest,
36
- type: 'community/overlays/adc/unit_framing/1.1',
37
+ type: `community/overlays/adc/unit_framing/${OVERLAY_VERSION}`,
37
38
  framing_metadata: {
38
39
  id: this.GetId(),
39
40
  label: this.GetLabel(),
@@ -1,4 +1,5 @@
1
1
  import { saidify } from 'saidify';
2
+ import { OVERLAY_VERSION } from '../../../types/types.js';
2
3
  class Ordering {
3
4
  constructor(dynOverlay, capture_base_digest) {
4
5
  if (!dynOverlay) {
@@ -20,7 +21,7 @@ class Ordering {
20
21
  return {
21
22
  d: '',
22
23
  capture_base: this.capture_base_digest,
23
- type: 'community/overlays/adc/ordering/1.1',
24
+ type: `community/overlays/adc/ordering/${OVERLAY_VERSION}`,
24
25
  attribute_ordering: this.GetAttributeOrdering(),
25
26
  entry_code_ordering: this.GetEntryCodeOrdering(),
26
27
  };
@@ -1,5 +1,6 @@
1
1
  import { saidify } from 'saidify';
2
2
  import canonicalize from '../../../utils/canonical.js';
3
+ import { OVERLAY_VERSION } from '../../../types/types.js';
3
4
  class Range {
4
5
  constructor(dynOverlay, capture_base_digest) {
5
6
  if (!dynOverlay) {
@@ -21,7 +22,7 @@ class Range {
21
22
  return {
22
23
  d: '',
23
24
  capture_base: this.capture_base_digest,
24
- type: 'community/overlays/adc/range/1.1',
25
+ type: `community/overlays/adc/range/${OVERLAY_VERSION}`,
25
26
  attributes: this.GetAttributes(),
26
27
  };
27
28
  }
@@ -1,3 +1,4 @@
1
+ import { OVERLAY_VERSION } from '../../../types/types.js';
1
2
  import { saidify } from 'saidify';
2
3
  class Sensitive {
3
4
  constructor(dynOverlay, capture_base_digest) {
@@ -20,7 +21,7 @@ class Sensitive {
20
21
  return {
21
22
  d: '',
22
23
  capture_base: this.capture_base_digest,
23
- type: 'community/overlays/adc/sensitive/1.1',
24
+ type: `community/overlays/adc/sensitive/${OVERLAY_VERSION}`,
24
25
  sensitive_attributes: this.GetSensitiveAttributes(),
25
26
  };
26
27
  }
@@ -1,34 +1,6 @@
1
- /*
2
- Separator overlay
3
-
4
- This overlay is used to define the separators used in the dataset and the attributes in the dataset.
5
-
6
- Canoncial rules:
7
- - d, type, capture_base has to be present in this order
8
- - other properties (dataset_separator, attribute_separators) will be lexically sorted by key
9
- - attributes in attribute_separators will lexically sorted by key as currently current canonical rules applied in the OCA bundle
10
-
11
- - Example:
12
- {
13
- "d": "said:...",
14
- "type": "community/adc/overlays/separator/1.0",
15
- "capture_base": "said:...",
16
- "attribute_separators": {
17
- "attribute_name": {
18
- "attr1": {
19
- "delimiter": "...",
20
- "escape": "..."
21
- }
22
- }
23
- },
24
- "dataset_separator": {
25
- "delimiter": "...",
26
- "escape": "..."
27
- }
28
- }
29
- */
30
1
  import { saidify } from 'saidify';
31
2
  import canonicalize from '../../../utils/canonical.js';
3
+ import { OVERLAY_VERSION } from '../../../types/types.js';
32
4
  class Separator {
33
5
  constructor(dynOverlay, capture_base_digest) {
34
6
  if (!dynOverlay) {
@@ -56,7 +28,7 @@ class Separator {
56
28
  return {
57
29
  d: '',
58
30
  capture_base: this.capture_base_digest,
59
- type: 'community/overlays/adc/separator/1.1',
31
+ type: `community/overlays/adc/separator/${OVERLAY_VERSION}`,
60
32
  attribute_separators: this.GetAttributesSeparators(),
61
33
  dataset_separator: this.GetDatasetSeparator(),
62
34
  };
@@ -1,3 +1,5 @@
1
+ // overlay version
2
+ export const OVERLAY_VERSION = '1.0';
1
3
  // overlay types
2
4
  export var OverlayTypes;
3
5
  (function (OverlayTypes) {
@@ -1 +1 @@
1
- {"version":3,"file":"example.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/example.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAIjD,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,UAAU,CAAC;IACvB,sBAAsB,IAAI,MAAM,CAAC;CAClC;AAED,cAAM,cAAe,YAAW,eAAe;IACtC,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAW/D,IAAW,QAAQ,IAAI,GAAG,CAEzB;IAED,OAAO,CAAC,oBAAoB;IAO5B,OAAO,CAAC,MAAM;IAUd,OAAO,CAAC,UAAU;IAMX,sBAAsB,IAAI,MAAM;WAIzB,eAAe,CAAC,UAAU,EAAE;QAAE,gBAAgB,EAAE,GAAG,EAAE,CAAA;KAAE,EAAE,mBAAmB,EAAE,MAAM,GAAG,MAAM;CAqB5G;AAED,eAAe,cAAc,CAAC"}
1
+ {"version":3,"file":"example.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/example.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAKjD,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,UAAU,CAAC;IACvB,sBAAsB,IAAI,MAAM,CAAC;CAClC;AAED,cAAM,cAAe,YAAW,eAAe;IACtC,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAW/D,IAAW,QAAQ,IAAI,GAAG,CAEzB;IAED,OAAO,CAAC,oBAAoB;IAO5B,OAAO,CAAC,MAAM;IAUd,OAAO,CAAC,UAAU;IAMX,sBAAsB,IAAI,MAAM;WAIzB,eAAe,CAAC,UAAU,EAAE;QAAE,gBAAgB,EAAE,GAAG,EAAE,CAAA;KAAE,EAAE,mBAAmB,EAAE,MAAM,GAAG,MAAM;CAqB5G;AAED,eAAe,cAAc,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"form.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/form.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAIjD,MAAM,WAAW,YAAY;IAC3B,UAAU,EAAE,UAAU,CAAC;IACvB,mBAAmB,IAAI,MAAM,CAAC;CAC/B;AAED,cAAM,WAAY,YAAW,YAAY;IAChC,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAW/D,IAAW,QAAQ,IAAI,GAAG,CAEzB;IAED,OAAO,CAAC,QAAQ;IAOhB,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,aAAa;IASrB,OAAO,CAAC,eAAe;IASvB,OAAO,CAAC,cAAc;IAStB,OAAO,CAAC,QAAQ;IAShB,OAAO,CAAC,cAAc;IAoDtB,OAAO,CAAC,MAAM;IAgBd,OAAO,CAAC,UAAU;IAMX,mBAAmB,IAAI,MAAM;WAItB,eAAe,CAAC,UAAU,EAAE;QAAE,aAAa,EAAE,GAAG,EAAE,CAAA;KAAE,EAAE,mBAAmB,EAAE,MAAM,GAAG,MAAM;CAuBzG;AAED,eAAe,WAAW,CAAC"}
1
+ {"version":3,"file":"form.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/form.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAKjD,MAAM,WAAW,YAAY;IAC3B,UAAU,EAAE,UAAU,CAAC;IACvB,mBAAmB,IAAI,MAAM,CAAC;CAC/B;AAED,cAAM,WAAY,YAAW,YAAY;IAChC,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAW/D,IAAW,QAAQ,IAAI,GAAG,CAEzB;IAED,OAAO,CAAC,QAAQ;IAOhB,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,aAAa;IASrB,OAAO,CAAC,eAAe;IASvB,OAAO,CAAC,cAAc;IAStB,OAAO,CAAC,QAAQ;IAShB,OAAO,CAAC,cAAc;IAoDtB,OAAO,CAAC,MAAM;IAgBd,OAAO,CAAC,UAAU;IAMX,mBAAmB,IAAI,MAAM;WAItB,eAAe,CAAC,UAAU,EAAE;QAAE,aAAa,EAAE,GAAG,EAAE,CAAA;KAAE,EAAE,mBAAmB,EAAE,MAAM,GAAG,MAAM;CAuBzG;AAED,eAAe,WAAW,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"attribute_framing.d.ts","sourceRoot":"","sources":["../../../../../../src/oca_extensions/state/overlays/framing/attribute_framing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAIpD,MAAM,WAAW,iBAAiB;IAChC,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,gBAAiB,YAAW,iBAAiB;IAC1C,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,mBAAmB;IAM3B,OAAO,CAAC,KAAK;IAGb,OAAO,CAAC,QAAQ;IAGhB,OAAO,CAAC,WAAW;IAGnB,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,kBAAkB;IAS1B,OAAO,CAAC,MAAM;IASd,OAAO,CAAC,UAAU;IAIX,eAAe,IAAI,MAAM;CAGjC;AACD,eAAe,gBAAgB,CAAC"}
1
+ {"version":3,"file":"attribute_framing.d.ts","sourceRoot":"","sources":["../../../../../../src/oca_extensions/state/overlays/framing/attribute_framing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAKpD,MAAM,WAAW,iBAAiB;IAChC,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,gBAAiB,YAAW,iBAAiB;IAC1C,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,mBAAmB;IAM3B,OAAO,CAAC,KAAK;IAGb,OAAO,CAAC,QAAQ;IAGhB,OAAO,CAAC,WAAW;IAGnB,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,kBAAkB;IAS1B,OAAO,CAAC,MAAM;IASd,OAAO,CAAC,UAAU;IAIX,eAAe,IAAI,MAAM;CAGjC;AACD,eAAe,gBAAgB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"unit_framing.d.ts","sourceRoot":"","sources":["../../../../../../src/oca_extensions/state/overlays/framing/unit_framing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAOpD,MAAM,WAAW,YAAY;IAC3B,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,WAAY,YAAW,YAAY;IAChC,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,QAAQ;IAMhB,OAAO,CAAC,KAAK;IAGb,OAAO,CAAC,QAAQ;IAGhB,OAAO,CAAC,WAAW;IAGnB,OAAO,CAAC,UAAU;IAGlB,OAAO,CAAC,MAAM;IAcd,OAAO,CAAC,UAAU;IAIX,eAAe,IAAI,MAAM;CAGjC;AACD,eAAe,WAAW,CAAC"}
1
+ {"version":3,"file":"unit_framing.d.ts","sourceRoot":"","sources":["../../../../../../src/oca_extensions/state/overlays/framing/unit_framing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAQpD,MAAM,WAAW,YAAY;IAC3B,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,WAAY,YAAW,YAAY;IAChC,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,QAAQ;IAMhB,OAAO,CAAC,KAAK;IAGb,OAAO,CAAC,QAAQ;IAGhB,OAAO,CAAC,WAAW;IAGnB,OAAO,CAAC,UAAU;IAGlB,OAAO,CAAC,MAAM;IAcd,OAAO,CAAC,UAAU;IAIX,eAAe,IAAI,MAAM;CAGjC;AACD,eAAe,WAAW,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"ordering.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/ordering.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAGjD,MAAM,WAAW,SAAS;IACxB,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,QAAS,YAAW,SAAS;IAC1B,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,oBAAoB;IAI5B,OAAO,CAAC,oBAAoB;IAI5B,OAAO,CAAC,MAAM;IAUd,OAAO,CAAC,UAAU;IAKX,eAAe,IAAI,MAAM;CAGjC;AAED,eAAe,QAAQ,CAAC"}
1
+ {"version":3,"file":"ordering.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/ordering.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAIjD,MAAM,WAAW,SAAS;IACxB,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,QAAS,YAAW,SAAS;IAC1B,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,oBAAoB;IAI5B,OAAO,CAAC,oBAAoB;IAI5B,OAAO,CAAC,MAAM;IAUd,OAAO,CAAC,UAAU;IAKX,eAAe,IAAI,MAAM;CAGjC;AAED,eAAe,QAAQ,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"range.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/range.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAIjD,MAAM,WAAW,MAAM;IACrB,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,KAAM,YAAW,MAAM;IACpB,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,aAAa;IAQrB,OAAO,CAAC,MAAM;IAQd,OAAO,CAAC,UAAU;IAIX,eAAe,IAAI,MAAM;CAGjC;AACD,eAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"range.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/range.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAKjD,MAAM,WAAW,MAAM;IACrB,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,KAAM,YAAW,MAAM;IACpB,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,aAAa;IAQrB,OAAO,CAAC,MAAM;IAQd,OAAO,CAAC,UAAU;IAIX,eAAe,IAAI,MAAM;CAGjC;AACD,eAAe,KAAK,CAAC"}
@@ -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;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,sBAAsB;IAQ9B,OAAO,CAAC,MAAM;IASd,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":"AACA,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;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,sBAAsB;IAQ9B,OAAO,CAAC,MAAM;IASd,OAAO,CAAC,UAAU;IAKX,eAAe,IAAI,MAAM;CAGjC;AAED,eAAe,SAAS,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"separator.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/separator.ts"],"names":[],"mappings":"AAwIA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAIjD,UAAU,UAAU;IAClB,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,SAAU,YAAW,UAAU;IAC5B,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,uBAAuB;IAO/B,OAAO,CAAC,mBAAmB;IAO3B,OAAO,CAAC,MAAM;IAUd,OAAO,CAAC,UAAU;IAIX,eAAe,IAAI,MAAM;CAGjC;AAED,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"separator.d.ts","sourceRoot":"","sources":["../../../../../src/oca_extensions/state/overlays/separator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAKjD,UAAU,UAAU;IAClB,UAAU,EAAE,UAAU,CAAC;IACvB,eAAe,IAAI,MAAM,CAAC;CAC3B;AAED,cAAM,SAAU,YAAW,UAAU;IAC5B,UAAU,EAAE,UAAU,CAAC;IAC9B,OAAO,CAAC,mBAAmB,CAAS;gBAExB,UAAU,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM;IAY/D,OAAO,CAAC,uBAAuB;IAO/B,OAAO,CAAC,mBAAmB;IAO3B,OAAO,CAAC,MAAM;IAUd,OAAO,CAAC,UAAU;IAIX,eAAe,IAAI,MAAM;CAGjC;AAED,eAAe,SAAS,CAAC"}
@@ -1,4 +1,5 @@
1
1
  export type Said = string;
2
+ export declare const OVERLAY_VERSION: string;
2
3
  export interface OcaBundleCaptureBase {
3
4
  d: Said;
4
5
  type: string;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types/types.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,IAAI,GAAG,MAAM,CAAC;AAG1B,MAAM,WAAW,oBAAoB;IACnC,CAAC,EAAE,IAAI,CAAC;IACR,IAAI,EAAE,MAAM,CAAC;IACb,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IACtC,kBAAkB,EAAE,MAAM,EAAE,CAAC;CAC9B;AAGD,oBAAY,YAAY;IACtB,SAAS,cAAc;IACvB,OAAO,YAAY;CACpB"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types/types.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,IAAI,GAAG,MAAM,CAAC;AAG1B,eAAO,MAAM,eAAe,EAAE,MAAc,CAAC;AAG7C,MAAM,WAAW,oBAAoB;IACnC,CAAC,EAAE,IAAI,CAAC;IACR,IAAI,EAAE,MAAM,CAAC;IACb,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IACtC,kBAAkB,EAAE,MAAM,EAAE,CAAC;CAC9B;AAGD,oBAAY,YAAY;IACtB,SAAS,cAAc;IACvB,OAAO,YAAY;CACpB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oca_package",
3
- "version": "1.7.0",
3
+ "version": "2.0.0",
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",