Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chkp/harmony-endpoint-management-sdk",
"version": "1.1.85",
"version": "1.1.102",
"description": "The official Harmony Endpoint management SDK for JavaScript ecosystem",
"main": "dist/index.js",
"files": [
Expand Down Expand Up @@ -58,7 +58,7 @@
"unitsnet-js": "^2.2.4"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.7.0",
"@openapitools/openapi-generator-cli": "^2.16.3",
"@types/chai": "^4.2.20",
"@types/debug": "^4.1.8",
"@types/jsonwebtoken": "^9.0.6",
Expand All @@ -67,6 +67,7 @@
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"cross-env": "^7.0.3",
"cross-spawn": "7.0.5",
"dotenv": "^16.3.1",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
Expand All @@ -75,11 +76,16 @@
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^10.2.0",
"mocha": "^11.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"ts-node": "^10.9.1",
"typescript": "^4.3.4"
},
"resolutions": {
"cross-spawn": "7.0.5",
"path-to-regexp": "8.0.0",
"braces": "3.0.3"
}
}
12 changes: 0 additions & 12 deletions src/core/harmony.endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ import { HarmonyEndpointSaaSOptions, InfinityPortalAuth } from '../interfaces/in

export class HarmonyEndpoint extends HarmonyEndpointCloudBase {
constructor() {
// eslint-disable-next-line no-console
console.warn(
`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 [email protected]`
);
super('HarmonyEndpoint');
}

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

export class HarmonyEndpointSaaS extends HarmonyEndpointSaasBase {
constructor() {
// eslint-disable-next-line no-console
console.warn(
`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 [email protected]`
);
super('HarmonyEndpointSaaS');
}

Expand All @@ -46,10 +38,6 @@ export class HarmonyEndpointSaaS extends HarmonyEndpointSaasBase {
// TODO: Open when on-premise will be release to public
// export class HarmonyEndpointPremise extends HarmonyEndpointPremiseBase {
// constructor() {
// // eslint-disable-next-line no-console
// console.warn(
// `This API is currently under development. Please make sure you know what you are doing!!! For any question contact us at [email protected]`
// );
// super('HarmonyEndpointPremise');
// }

Expand Down
Loading