Skip to content

Commit c29b03f

Browse files
authored
Merge pull request #17
Update deps + Remove EA message
2 parents ab119d2 + bb4fe34 commit c29b03f

File tree

3 files changed

+487
-222
lines changed

3 files changed

+487
-222
lines changed

package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chkp/harmony-endpoint-management-sdk",
3-
"version": "1.1.85",
3+
"version": "1.1.102",
44
"description": "The official Harmony Endpoint management SDK for JavaScript ecosystem",
55
"main": "dist/index.js",
66
"files": [
@@ -58,7 +58,7 @@
5858
"unitsnet-js": "^2.2.4"
5959
},
6060
"devDependencies": {
61-
"@openapitools/openapi-generator-cli": "^2.7.0",
61+
"@openapitools/openapi-generator-cli": "^2.16.3",
6262
"@types/chai": "^4.2.20",
6363
"@types/debug": "^4.1.8",
6464
"@types/jsonwebtoken": "^9.0.6",
@@ -67,6 +67,7 @@
6767
"@types/node-fetch": "^2.6.4",
6868
"@typescript-eslint/eslint-plugin": "^4.28.0",
6969
"cross-env": "^7.0.3",
70+
"cross-spawn": "7.0.5",
7071
"dotenv": "^16.3.1",
7172
"eslint": "^7.29.0",
7273
"eslint-config-airbnb-base": "^14.2.1",
@@ -75,11 +76,16 @@
7576
"eslint-plugin-import": "^2.27.5",
7677
"eslint-plugin-jsx-a11y": "^6.4.1",
7778
"eslint-plugin-prettier": "^3.4.0",
78-
"mocha": "^10.2.0",
79+
"mocha": "^11.1.0",
7980
"mocha-lcov-reporter": "^1.3.0",
8081
"nyc": "^15.1.0",
8182
"prettier": "^2.3.2",
8283
"ts-node": "^10.9.1",
8384
"typescript": "^4.3.4"
85+
},
86+
"resolutions": {
87+
"cross-spawn": "7.0.5",
88+
"path-to-regexp": "8.0.0",
89+
"braces": "3.0.3"
8490
}
8591
}

src/core/harmony.endpoint.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ import { HarmonyEndpointSaaSOptions, InfinityPortalAuth } from '../interfaces/in
77

88
export class HarmonyEndpoint extends HarmonyEndpointCloudBase {
99
constructor() {
10-
// eslint-disable-next-line no-console
11-
console.warn(
12-
`This package is currently in EA (Early Availability) stage. Use with caution, as it may undergo significant changes and improvements. Feedback and contributions are highly encouraged. To report a bug, please go to https://github.com/CheckPointSW/harmony-endpoint-management-js-ts-sdk/issues or contact us at harmony-endpoint-external-api@checkpoint.com`
13-
);
1410
super('HarmonyEndpoint');
1511
}
1612

@@ -24,10 +20,6 @@ export class HarmonyEndpoint extends HarmonyEndpointCloudBase {
2420

2521
export class HarmonyEndpointSaaS extends HarmonyEndpointSaasBase {
2622
constructor() {
27-
// eslint-disable-next-line no-console
28-
console.warn(
29-
`This package is currently in EA (Early Availability) stage. Use with caution, as it may undergo significant changes and improvements. Feedback and contributions are highly encouraged. To report a bug, please go to https://github.com/CheckPointSW/harmony-endpoint-management-js-ts-sdk/issues or contact us at harmony-endpoint-external-api@checkpoint.com`
30-
);
3123
super('HarmonyEndpointSaaS');
3224
}
3325

@@ -46,10 +38,6 @@ export class HarmonyEndpointSaaS extends HarmonyEndpointSaasBase {
4638
// TODO: Open when on-premise will be release to public
4739
// export class HarmonyEndpointPremise extends HarmonyEndpointPremiseBase {
4840
// constructor() {
49-
// // eslint-disable-next-line no-console
50-
// console.warn(
51-
// `This API is currently under development. Please make sure you know what you are doing!!! For any question contact us at harmony-endpoint-external-api@checkpoint.com`
52-
// );
5341
// super('HarmonyEndpointPremise');
5442
// }
5543

0 commit comments

Comments
 (0)