@pluve/logger-sdk 0.0.9 → 0.0.11

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/cjs/index.js CHANGED
@@ -19,11 +19,16 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
19
19
  // src/index.ts
20
20
  var src_exports = {};
21
21
  __export(src_exports, {
22
- LoggerSDK: () => import_loggerSDK.LoggerSDK
22
+ LoggerSDK: () => import_loggerSDK.LoggerSDK,
23
+ gzipCompress: () => import_compression.gzipCompress,
24
+ isGzipSupported: () => import_compression.isGzipSupported
23
25
  });
24
26
  module.exports = __toCommonJS(src_exports);
25
27
  var import_loggerSDK = require("./core/loggerSDK");
28
+ var import_compression = require("./compress/compression");
26
29
  // Annotate the CommonJS export names for ESM import in node:
27
30
  0 && (module.exports = {
28
- LoggerSDK
31
+ LoggerSDK,
32
+ gzipCompress,
33
+ isGzipSupported
29
34
  });
package/dist/esm/index.js CHANGED
@@ -1,5 +1,8 @@
1
1
  // src/index.ts
2
2
  import { LoggerSDK } from "./core/loggerSDK";
3
+ import { isGzipSupported, gzipCompress } from "./compress/compression";
3
4
  export {
4
- LoggerSDK
5
+ LoggerSDK,
6
+ gzipCompress,
7
+ isGzipSupported
5
8
  };
@@ -1 +1,3 @@
1
1
  export { LoggerSDK } from './core/loggerSDK';
2
+ export type { Env, Stage } from './types/env';
3
+ export { isGzipSupported, gzipCompress } from './compress/compression';