@cosyte/synth 0.0.6 → 0.0.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.
Files changed (57) hide show
  1. package/CHANGELOG.md +165 -17
  2. package/README.md +47 -45
  3. package/dist/astm/index.cjs +7 -7
  4. package/dist/astm/index.cjs.map +1 -1
  5. package/dist/astm/index.d.cts +47 -47
  6. package/dist/astm/index.d.ts +47 -47
  7. package/dist/astm/index.mjs +7 -7
  8. package/dist/astm/index.mjs.map +1 -1
  9. package/dist/ccda/index.cjs +15 -15
  10. package/dist/ccda/index.cjs.map +1 -1
  11. package/dist/ccda/index.d.cts +31 -31
  12. package/dist/ccda/index.d.ts +31 -31
  13. package/dist/ccda/index.mjs +15 -15
  14. package/dist/ccda/index.mjs.map +1 -1
  15. package/dist/deid/index.cjs +15 -15
  16. package/dist/deid/index.cjs.map +1 -1
  17. package/dist/deid/index.d.cts +37 -37
  18. package/dist/deid/index.d.ts +37 -37
  19. package/dist/deid/index.mjs +15 -15
  20. package/dist/deid/index.mjs.map +1 -1
  21. package/dist/{example-codes-DeXcnCSK.d.cts → example-codes-88f3_bQZ.d.cts} +8 -8
  22. package/dist/{example-codes-DeXcnCSK.d.ts → example-codes-88f3_bQZ.d.ts} +8 -8
  23. package/dist/fhir/index.cjs +12 -12
  24. package/dist/fhir/index.cjs.map +1 -1
  25. package/dist/fhir/index.d.cts +46 -46
  26. package/dist/fhir/index.d.ts +46 -46
  27. package/dist/fhir/index.mjs +12 -12
  28. package/dist/fhir/index.mjs.map +1 -1
  29. package/dist/hl7/index.cjs +6 -6
  30. package/dist/hl7/index.cjs.map +1 -1
  31. package/dist/hl7/index.d.cts +45 -45
  32. package/dist/hl7/index.d.ts +45 -45
  33. package/dist/hl7/index.mjs +6 -6
  34. package/dist/hl7/index.mjs.map +1 -1
  35. package/dist/index.cjs +9 -9
  36. package/dist/index.cjs.map +1 -1
  37. package/dist/index.d.cts +49 -49
  38. package/dist/index.d.ts +49 -49
  39. package/dist/index.mjs +9 -9
  40. package/dist/index.mjs.map +1 -1
  41. package/dist/ncpdp/index.cjs +3 -3
  42. package/dist/ncpdp/index.cjs.map +1 -1
  43. package/dist/ncpdp/index.d.cts +42 -42
  44. package/dist/ncpdp/index.d.ts +42 -42
  45. package/dist/ncpdp/index.mjs +3 -3
  46. package/dist/ncpdp/index.mjs.map +1 -1
  47. package/dist/{providers-OLz3zAc-.d.cts → providers-B9uVinAe.d.cts} +24 -24
  48. package/dist/{providers-OLz3zAc-.d.ts → providers-B9uVinAe.d.ts} +24 -24
  49. package/dist/{quirk-C9t9CkPS.d.ts → quirk-HZdznAkM.d.ts} +23 -23
  50. package/dist/{quirk-DYMDojVw.d.cts → quirk-IaHp4z7N.d.cts} +23 -23
  51. package/dist/x12/index.cjs +6 -6
  52. package/dist/x12/index.cjs.map +1 -1
  53. package/dist/x12/index.d.cts +44 -44
  54. package/dist/x12/index.d.ts +44 -44
  55. package/dist/x12/index.mjs +6 -6
  56. package/dist/x12/index.mjs.map +1 -1
  57. package/package.json +3 -2
@@ -34,24 +34,24 @@ function sfc32Next(s) {
34
34
  // src/codes.ts
35
35
  var SYNTH_FATAL_CODES = {
36
36
  /**
37
- * A vendor quirk was requested that the target format's profile system does not support. Fatal —
37
+ * A vendor quirk was requested that the target format's profile system does not support. Fatal,
38
38
  * never a silent no-op and never a fabricated quirk.
39
39
  */
40
40
  SYNTH_UNSUPPORTED_QUIRK: "SYNTH_UNSUPPORTED_QUIRK",
41
41
  /**
42
42
  * A bare parse of a freshly-generated quirk artifact did not produce exactly the declared intended
43
- * warning code(s). Fatal — never emit a mislabeled fixture.
43
+ * warning code(s). Fatal, never emit a mislabeled fixture.
44
44
  */
45
45
  SYNTH_INTENDED_WARNING_MISMATCH: "SYNTH_INTENDED_WARNING_MISMATCH",
46
46
  /** An integer range was requested with its maximum below its minimum. Fatal. */
47
47
  SYNTH_INVALID_RANGE: "SYNTH_INVALID_RANGE",
48
- /** A value was drawn from an empty pool. Fatal — never a fabricated substitute. */
48
+ /** A value was drawn from an empty pool. Fatal, never a fabricated substitute. */
49
49
  SYNTH_EMPTY_POOL: "SYNTH_EMPTY_POOL",
50
50
  /** A `defineSynthProfile` spec was not usable (a missing or blank `name`). Fatal. */
51
51
  SYNTH_INVALID_PROFILE: "SYNTH_INVALID_PROFILE",
52
52
  /**
53
53
  * A caller-supplied selector (a message kind, a document type, a corpus mix entry, a claim
54
- * variant, a Bundle type, a resource profile) is not in the closed set that governs it. Fatal —
54
+ * variant, a Bundle type, a resource profile) is not in the closed set that governs it. Fatal:
55
55
  * see `resolveKind`: a selector union is erased at run time, and a selector that falls through
56
56
  * either mislabels the fixture or hands the value to a peer builder that quotes it back.
57
57
  */
@@ -153,7 +153,7 @@ function componentsField(components) {
153
153
  var SYNTHETIC_ASSIGNING_AUTHORITY = Object.freeze({
154
154
  /** The human-readable assigning-authority namespace id (HL7 HD.1). */
155
155
  namespaceId: "COSYTE-SYNTH",
156
- /** The universal id — an OID under HL7's example arc `2.16.840.1.113883.19` (HD.2). */
156
+ /** The universal id, an OID under HL7's example arc `2.16.840.1.113883.19` (HD.2). */
157
157
  universalId: "2.16.840.1.113883.19.999",
158
158
  /** The universal id type (HD.3). */
159
159
  universalIdType: "ISO"
@@ -866,7 +866,7 @@ var HL7_QUIRKS = Object.freeze({
866
866
  name: "unknown-escape",
867
867
  format: "hl7v2",
868
868
  intendedWarnings: Object.freeze(["UNKNOWN_ESCAPE_SEQUENCE"]),
869
- grounding: "HL7 v2.x \xA72.7 escaping \u2014 a locally-defined \\Z..\\ escape is preserved verbatim and flagged. HL7 v2 has no profile re-badge, so no built-in profile downgrades it.",
869
+ grounding: "HL7 v2.x \xA72.7 escaping: a locally-defined \\Z..\\ escape is preserved verbatim and flagged. HL7 v2 has no profile re-badge, so no built-in profile downgrades it.",
870
870
  disposition: "bare"
871
871
  })
872
872
  });