@stigg/node-server-sdk 3.41.0 → 3.42.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.ts +2 -1
- package/dist/index.js +4 -3
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { Stigg } from './client';
|
|
1
2
|
export { ClientConfiguration } from './configuration';
|
|
2
3
|
export { Events } from './services/eventEmitter';
|
|
3
4
|
export { LogLevel, LogConfiguration, Logger } from './services/loggerService';
|
|
4
5
|
export * from './models';
|
|
5
6
|
export { StiggEntitlementAPI, StiggManagementAPI } from './client';
|
|
6
|
-
|
|
7
|
+
export { Stigg };
|
|
7
8
|
export default Stigg;
|
package/dist/index.js
CHANGED
|
@@ -10,10 +10,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
10
10
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
-
exports.LogLevel = void 0;
|
|
13
|
+
exports.Stigg = exports.LogLevel = void 0;
|
|
14
|
+
const client_1 = require("./client");
|
|
15
|
+
Object.defineProperty(exports, "Stigg", { enumerable: true, get: function () { return client_1.Stigg; } });
|
|
14
16
|
var loggerService_1 = require("./services/loggerService");
|
|
15
17
|
Object.defineProperty(exports, "LogLevel", { enumerable: true, get: function () { return loggerService_1.LogLevel; } });
|
|
16
18
|
__exportStar(require("./models"), exports);
|
|
17
|
-
const client_1 = require("./client");
|
|
18
19
|
exports.default = client_1.Stigg;
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7OztBQUFBLHFDQUFpQztBQU94QixzRkFQQSxjQUFLLE9BT0E7QUFIZCwwREFBOEU7QUFBckUseUdBQUEsUUFBUSxPQUFBO0FBQ2pCLDJDQUF5QjtBQUl6QixrQkFBZSxjQUFLLENBQUMifQ==
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stigg/node-server-sdk",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.42.1",
|
|
4
4
|
"description": "Stigg server-side node SDK",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -44,13 +44,12 @@
|
|
|
44
44
|
"husky": "^7.0.2",
|
|
45
45
|
"ioredis": "^5.2.4",
|
|
46
46
|
"isomorphic-ws": "^4.0.1",
|
|
47
|
-
"lint-staged": "^11.2.3",
|
|
48
47
|
"lodash": "^4.17.21",
|
|
49
48
|
"lru-cache": "^10.0.1",
|
|
50
49
|
"nanoid": "^3.3.2",
|
|
51
50
|
"redlock": "^5.0.0-beta.2",
|
|
52
51
|
"tiny-typed-emitter": "^2.1.0",
|
|
53
|
-
"ws": "^8.
|
|
52
|
+
"ws": "^8.17.1"
|
|
54
53
|
},
|
|
55
54
|
"devDependencies": {
|
|
56
55
|
"@commitlint/cli": "^13.2.1",
|
|
@@ -81,7 +80,8 @@
|
|
|
81
80
|
"ts-node": "^9.0.0",
|
|
82
81
|
"typedoc": "^0.22.13",
|
|
83
82
|
"typedoc-plugin-rename-defaults": "^0.4.0",
|
|
84
|
-
"typescript": "^4.0.2"
|
|
83
|
+
"typescript": "^4.0.2",
|
|
84
|
+
"lint-staged": "^11.2.3"
|
|
85
85
|
},
|
|
86
86
|
"publishConfig": {
|
|
87
87
|
"access": "public"
|