@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.d.mts +259 -263
- package/dist/index.d.ts +259 -263
- package/dist/index.js +6 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
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
|
-
|
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
|
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
|
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
|
-
|
988
|
+
Juhuu
|
989
989
|
};
|