@justair/justair-library 4.8.30 → 4.8.31

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +13 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justair/justair-library",
3
- "version": "4.8.30",
3
+ "version": "4.8.31",
4
4
  "description": "JustAir Internal Library",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/index.js CHANGED
@@ -67,6 +67,14 @@ import {
67
67
  sampleParametersEnum,
68
68
  } from "./models/sampleSites.js";
69
69
 
70
+ // Samples related imports
71
+ import {
72
+ samplesSchema,
73
+ Samples,
74
+ samplesAuditSchema,
75
+ SamplesAudit,
76
+ } from "./models/samples.js";
77
+
70
78
  export function createLoggerInstance({ DATADOG_API_KEY, APPLICATION_NAME }) {
71
79
  return new CustomLogger({ DATADOG_API_KEY, APPLICATION_NAME });
72
80
  }
@@ -130,4 +138,9 @@ export {
130
138
  sampleSiteAuditSchema,
131
139
  SampleSiteAudit,
132
140
  sampleParametersEnum,
141
+ // Samples related exports
142
+ samplesSchema,
143
+ Samples,
144
+ samplesAuditSchema,
145
+ SamplesAudit,
133
146
  };