@juhuu/sdk-ts 1.0.0 → 1.0.1

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/index.js CHANGED
@@ -30,7 +30,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
30
30
  // src/index.ts
31
31
  var src_exports = {};
32
32
  __export(src_exports, {
33
- default: () => JUHUU
33
+ Juhuu: () => Juhuu
34
34
  });
35
35
  module.exports = __toCommonJS(src_exports);
36
36
 
@@ -991,7 +991,7 @@ var TariffsService = class extends Service {
991
991
  };
992
992
 
993
993
  // src/index.ts
994
- var JUHUU = class {
994
+ var Juhuu = class {
995
995
  constructor(config) {
996
996
  this.sessions = new SessionService(config);
997
997
  this.links = new LinkService(config);
@@ -1020,3 +1020,7 @@ var JUHUU = class {
1020
1020
  terms;
1021
1021
  tariffs;
1022
1022
  };
1023
+ // Annotate the CommonJS export names for ESM import in node:
1024
+ 0 && (module.exports = {
1025
+ Juhuu
1026
+ });
package/dist/index.mjs CHANGED
@@ -955,7 +955,7 @@ var TariffsService = class extends Service {
955
955
  };
956
956
 
957
957
  // src/index.ts
958
- var JUHUU = class {
958
+ var Juhuu = class {
959
959
  constructor(config) {
960
960
  this.sessions = new SessionService(config);
961
961
  this.links = new LinkService(config);
@@ -985,5 +985,5 @@ var JUHUU = class {
985
985
  tariffs;
986
986
  };
987
987
  export {
988
- JUHUU as default
988
+ Juhuu
989
989
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Typescript wrapper for juhuu services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",