From 4d296b66ba8b825ec02f7db282bd65f8a7c052c6 Mon Sep 17 00:00:00 2001 From: bitheadCody Date: Tue, 5 Sep 2023 13:23:50 -0400 Subject: [PATCH 1/5] updated version --- deploy/node/package-lock.json | 4 ++-- deploy/node/package.json | 2 +- src/brainCloudClient.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/node/package-lock.json b/deploy/node/package-lock.json index 0cb5464..5824eda 100644 --- a/deploy/node/package-lock.json +++ b/deploy/node/package-lock.json @@ -1,12 +1,12 @@ { "name": "braincloud", - "version": "5.0", + "version": "5.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "braincloud", - "version": "5.0", + "version": "5.0.0", "license": "Apache-2.0", "dependencies": { "crypto-js": "^4.1.1", diff --git a/deploy/node/package.json b/deploy/node/package.json index 7ab4ad0..70578ed 100644 --- a/deploy/node/package.json +++ b/deploy/node/package.json @@ -1,6 +1,6 @@ { "name": "braincloud", - "version": "5.0", + "version": "5.0.0", "description": " brainCloud client for NodeJS", "main": "index.js", "react-native": "react-native.js", diff --git a/src/brainCloudClient.js b/src/brainCloudClient.js index 70e5ad5..1b9b035 100644 --- a/src/brainCloudClient.js +++ b/src/brainCloudClient.js @@ -175,7 +175,7 @@ function BrainCloudClient() { } - bcc.version = "5.0"; + bcc.version = "5.0.0"; bcc.countryCode; bcc.languageCode; From f3a712606c464a914a8a7494f675edc11cd1744b Mon Sep 17 00:00:00 2001 From: bitheadCody Date: Tue, 5 Sep 2023 13:26:00 -0400 Subject: [PATCH 2/5] Update package-lock.json --- test/package-lock.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/package-lock.json b/test/package-lock.json index 010f984..9e32667 100644 --- a/test/package-lock.json +++ b/test/package-lock.json @@ -20,7 +20,7 @@ }, "../deploy/node": { "name": "braincloud", - "version": "5.0", + "version": "5.0.0", "license": "Apache-2.0", "dependencies": { "crypto-js": "^4.1.1", From 5176bff3b46165f234519511129065c562c38f24 Mon Sep 17 00:00:00 2001 From: bitheadCody Date: Tue, 12 Sep 2023 15:57:12 -0400 Subject: [PATCH 3/5] removed excess params from handoff functions Was likely a copy/paste error when the handoff functions were added to the brainCloudWrapper resulted in these functions not working when called from the wrapper instead of the client --- src/brainCloudWrapper.js | 7 --- test/test.js | 116 +++++++++++++++++++++++++++++++-------- 2 files changed, 94 insertions(+), 29 deletions(-) diff --git a/src/brainCloudWrapper.js b/src/brainCloudWrapper.js index 7070722..3088257 100644 --- a/src/brainCloudWrapper.js +++ b/src/brainCloudWrapper.js @@ -627,9 +627,6 @@ function BrainCloudWrapper(wrapperName) { bcw.brainCloudClient.authentication.authenticateHandoff( handoffId, securityToken, - bc.authentication.AUTHENTICATION_TYPE_HANDOFF, - null, - false, callback); }; @@ -646,10 +643,6 @@ function BrainCloudWrapper(wrapperName) { bcw.authenticateSettopHandoff= function(handoffCode, callback) { bcw.brainCloudClient.authentication.authenticateSettopHandoff( handoffCode, - "", - bc.authentication.AUTHENTICATION_TYPE_SETTOP_HANDOFF, - null, - false, callback); }; diff --git a/test/test.js b/test/test.js index a81e59b..e6407ab 100644 --- a/test/test.js +++ b/test/test.js @@ -454,6 +454,9 @@ async function testKillSwitch() }); } +//////////////////////////////////////// +// Async Match tests +//////////////////////////////////////// async function testAsyncMatch() { if (!module("Async Match", () => @@ -1029,7 +1032,7 @@ async function testAuthentication() { } //////////////////////////////////////// -// DataStream unit tests +// Data Stream tests //////////////////////////////////////// async function testDataStream() { if (!module("DataStream", () => @@ -1078,7 +1081,7 @@ async function testDataStream() { } //////////////////////////////////////// -// Entity unit tests +// Entity tests //////////////////////////////////////// async function testEntity() { if (!module("Entity", () => @@ -1243,7 +1246,7 @@ async function testEntity() { } //////////////////////////////////////// -// Custom Entity unit tests +// Custom Entity tests //////////////////////////////////////// async function testCustomEntity() { if (!module("CustomEntity", () => @@ -1459,7 +1462,7 @@ async function testCustomEntity() { } //////////////////////////////////////// -// Event unit tests +// Event tests //////////////////////////////////////// async function testEvent() { if (!module("Event", null, () => @@ -1732,7 +1735,7 @@ async function testFriend() { } //////////////////////////////////////// -// Gamification unit tests +// Gamification tests //////////////////////////////////////// async function testGamification() { if (!module("Gamification", () => @@ -1918,7 +1921,7 @@ async function testGamification() { } //////////////////////////////////////// -// Global App unit tests +// Global App tests //////////////////////////////////////// async function testGlobalApp() { if (!module("GlobalApp", () => @@ -1955,7 +1958,7 @@ async function testGlobalApp() { } //////////////////////////////////////// -// GlobalStatistics unit tests +// Global Statistics tests //////////////////////////////////////// async function testGlobalStatistics() { if (!module("GlobalStatistics", () => @@ -2015,9 +2018,8 @@ async function testGlobalStatistics() { } //////////////////////////////////////// -// GlobalEntity unit tests +// Global Entity tests //////////////////////////////////////// - async function testGlobalEntity() { if (!module("GlobalEntity", () => { @@ -3748,7 +3750,7 @@ async function testPlayerStatisticsEvent() { } //////////////////////////////////////// -// PlayerStatistics unit tests +// Player Statistics tests //////////////////////////////////////// async function testPlayerStatistics() { @@ -3839,6 +3841,9 @@ async function testPlayerStatistics() { }); } +//////////////////////////////////////// +// Virtual Currency tests +//////////////////////////////////////// async function testVirtualCurrency() { if (!module("VirtualCurrency", () => { @@ -3907,6 +3912,9 @@ async function testVirtualCurrency() { }); } +//////////////////////////////////////// +// App Store tests +//////////////////////////////////////// async function testAppStore() { if (!module("AppStore", () => { @@ -3986,7 +3994,7 @@ async function testAppStore() { } //////////////////////////////////////// -// Profanity unit tests +// Profanity tests //////////////////////////////////////// async function testProfanity() { if (!module("Profanity", () => @@ -4027,7 +4035,7 @@ async function testProfanity() { //////////////////////////////////////// -// Push notification unit tests +// Push Notification tests //////////////////////////////////////// async function testPushNotification() { if (!module("PushNotification", () => @@ -4230,7 +4238,7 @@ async function testPushNotification() { } //////////////////////////////////////// -// Redemption Code unit tests +// Redemption Code tests //////////////////////////////////////// async function testRedemptionCode() { if (!module("RedemptionCode", () => @@ -4468,7 +4476,7 @@ async function testScript() { } //////////////////////////////////////// -// SocialLeaderboard unit tests +// Social Leaderboard tests //////////////////////////////////////// async function testSocialLeaderboard() { if (!module("SocialLeaderboard", () => @@ -4847,7 +4855,7 @@ async function testSocialLeaderboard() { //////////////////////////////////////// -// Time unit tests +// Time tests //////////////////////////////////////// async function testTime() { if (!module("Time", () => @@ -4889,7 +4897,7 @@ async function testTime() { } //////////////////////////////////////// -// Global File unit tests +// Global File tests //////////////////////////////////////// async function testGlobalFile() { if (!module("GlobalFile", () => @@ -4948,7 +4956,7 @@ async function testGlobalFile() { } //////////////////////////////////////// -// Tournament unit tests +// Tournament tests //////////////////////////////////////// async function testTournament() { if (!module("Tournament", () => @@ -5103,7 +5111,7 @@ async function testTournament() { } //////////////////////////////////////// -// Shared identity unit tests +// Shared Identity tests //////////////////////////////////////// async function testSharedIdentity() { @@ -5255,7 +5263,7 @@ async function testSharedIdentity() { } //////////////////////////////////////// -// Comms unit tests +// Comms tests //////////////////////////////////////// async function testComms() { @@ -5418,7 +5426,7 @@ async function testComms() { } //////////////////////////////////////// -// File unit tests +// File tests //////////////////////////////////////// async function testFile() { if (!module("SingleFile", () => @@ -5517,7 +5525,7 @@ async function testFile() { } //////////////////////////////////////// -// Wrapper unit tests +// Wrapper tests //////////////////////////////////////// async function testWrapper() { @@ -5728,8 +5736,57 @@ async function testWrapper() resolve_test(); }); }); + + await asyncTest("authenticateHandoff()", 3, function () { + bc.brainCloudClient.authentication.initialize("", bc.brainCloudClient.authentication.generateAnonymousId()); + + var handoffId; + var handoffToken; + + bc.brainCloudClient.authentication.authenticateAnonymous( + true, function (result) { + equal(result.status, 200, JSON.stringify(result)); + + bc.brainCloudClient.script.runScript("createHandoffId", {}, function (result) { + equal(result.status, 200, JSON.stringify(result)); + var d = result.data; + handoffId = d.response.handoffId; + handoffToken = d.response.securityToken; + + bc.authenticateHandoff(handoffId, handoffToken, function (result) { + equal(result.status, 200, JSON.stringify(result)); + resolve_test(); + }); + }); + }); + }); + + await asyncTest("authenticateSettopHandoff()", 3, function () { + bc.brainCloudClient.authentication.initialize("", bc.brainCloudClient.authentication.generateAnonymousId()); + + var handoffCode + + bc.brainCloudClient.authentication.authenticateAnonymous( + true, function (result) { + equal(result.status, 200, JSON.stringify(result)); + + bc.brainCloudClient.script.runScript("CreateSettopHandoffCode", {}, function (result) { + equal(result.status, 200, JSON.stringify(result)); + var d = result.data; + handoffCode = d.response.handoffCode + + bc.authenticateSettopHandoff(handoffCode, function (result) { + equal(result.status, 200, JSON.stringify(result)); + resolve_test(); + }); + }); + }); + }); } +//////////////////////////////////////// +// Chat tests +//////////////////////////////////////// async function testChat() { if (!module("Chat", () => @@ -5913,6 +5970,9 @@ async function testChat() }); } +//////////////////////////////////////// +// Messaging tests +//////////////////////////////////////// async function testMessaging() { initializeClient(); @@ -6107,6 +6167,9 @@ async function testMessaging() await tearDownLogout(); } +//////////////////////////////////////// +// RTT tests +//////////////////////////////////////// async function testRTT() { if (!module("RTT", null, null)) return; @@ -6783,6 +6846,9 @@ async function testLobby() { //*/ } +//////////////////////////////////////// +// Presence tests +//////////////////////////////////////// async function testPresence() { if (!module("Presence", () => @@ -6890,6 +6956,9 @@ async function testPresence() } +//////////////////////////////////////// +// Item Catalog tests +//////////////////////////////////////// async function testItemCatalog() { if (!module("ItemCatalog", () => @@ -6938,6 +7007,9 @@ async function testItemCatalog() }); } +//////////////////////////////////////// +// User Items tests +//////////////////////////////////////// async function testUserItems() { let itemId; @@ -7107,7 +7179,7 @@ async function testUserItems() } //////////////////////////////////////// -// Blockchain unit tests +// Blockchain tests //////////////////////////////////////// async function testBlockchain(){ if(!module("Blockchain", () => From de30a6ece26514443fbdcd32d76b1683453b9c6f Mon Sep 17 00:00:00 2001 From: bitheadCody Date: Thu, 14 Sep 2023 10:41:55 -0400 Subject: [PATCH 4/5] updated version for patch --- deploy/node/package-lock.json | 4 ++-- deploy/node/package.json | 2 +- src/brainCloudClient.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/node/package-lock.json b/deploy/node/package-lock.json index 5824eda..40c8a88 100644 --- a/deploy/node/package-lock.json +++ b/deploy/node/package-lock.json @@ -1,12 +1,12 @@ { "name": "braincloud", - "version": "5.0.0", + "version": "5.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "braincloud", - "version": "5.0.0", + "version": "5.0.2", "license": "Apache-2.0", "dependencies": { "crypto-js": "^4.1.1", diff --git a/deploy/node/package.json b/deploy/node/package.json index 70578ed..5c98697 100644 --- a/deploy/node/package.json +++ b/deploy/node/package.json @@ -1,6 +1,6 @@ { "name": "braincloud", - "version": "5.0.0", + "version": "5.0.2", "description": " brainCloud client for NodeJS", "main": "index.js", "react-native": "react-native.js", diff --git a/src/brainCloudClient.js b/src/brainCloudClient.js index 1b9b035..495c787 100644 --- a/src/brainCloudClient.js +++ b/src/brainCloudClient.js @@ -175,7 +175,7 @@ function BrainCloudClient() { } - bcc.version = "5.0.0"; + bcc.version = "5.0.2"; bcc.countryCode; bcc.languageCode; From 85faf1193f714343401d66218c1f4d2a8abd54b3 Mon Sep 17 00:00:00 2001 From: bitheadCody Date: Thu, 14 Sep 2023 11:31:53 -0400 Subject: [PATCH 5/5] Update package-lock.json --- test/package-lock.json | 192 +++++++++++++++-------------------------- 1 file changed, 69 insertions(+), 123 deletions(-) diff --git a/test/package-lock.json b/test/package-lock.json index 9e32667..134842b 100644 --- a/test/package-lock.json +++ b/test/package-lock.json @@ -20,7 +20,7 @@ }, "../deploy/node": { "name": "braincloud", - "version": "5.0.0", + "version": "5.0.2", "license": "Apache-2.0", "dependencies": { "crypto-js": "^4.1.1", @@ -57,101 +57,10 @@ } } }, - "../deploy/node/node_modules/asynckit": { - "version": "0.4.0", - "license": "MIT" - }, - "../deploy/node/node_modules/charenc": { - "version": "0.0.2", - "license": "BSD-3-Clause", - "engines": { - "node": "*" - } - }, - "../deploy/node/node_modules/combined-stream": { - "version": "1.0.8", - "license": "MIT", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "../deploy/node/node_modules/crypt": { - "version": "0.0.2", - "license": "BSD-3-Clause", - "engines": { - "node": "*" - } - }, - "../deploy/node/node_modules/crypto-js": { - "version": "4.1.1", - "license": "MIT" - }, - "../deploy/node/node_modules/delayed-stream": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "../deploy/node/node_modules/form-data": { - "version": "2.5.1", - "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "../deploy/node/node_modules/get-user-locale": { - "version": "1.4.0", - "license": "MIT", - "dependencies": { - "lodash.once": "^4.1.1" - } - }, - "../deploy/node/node_modules/is-buffer": { - "version": "1.1.6", - "license": "MIT" - }, - "../deploy/node/node_modules/lodash.once": { - "version": "4.1.1", - "license": "MIT" - }, - "../deploy/node/node_modules/md5": { - "version": "2.3.0", - "license": "BSD-3-Clause", - "dependencies": { - "charenc": "0.0.2", - "crypt": "0.0.2", - "is-buffer": "~1.1.6" - } - }, - "../deploy/node/node_modules/mime-db": { - "version": "1.40.0", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "../deploy/node/node_modules/mime-types": { - "version": "2.1.24", - "license": "MIT", - "dependencies": { - "mime-db": "1.40.0" - }, - "engines": { - "node": ">= 0.6" - } - }, "node_modules/async-limiter": { "version": "1.0.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" }, "node_modules/braincloud": { "resolved": "../deploy/node", @@ -159,7 +68,8 @@ }, "node_modules/call-bind": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" @@ -170,34 +80,43 @@ }, "node_modules/function-bind": { "version": "1.1.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "node_modules/get-intrinsic": { - "version": "1.1.1", - "license": "MIT", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", - "has-symbols": "^1.0.1" + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/get-user-locale": { - "version": "1.4.0", - "license": "MIT", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/get-user-locale/-/get-user-locale-1.5.1.tgz", + "integrity": "sha512-WiNpoFRcHn1qxP9VabQljzGwkAQDrcpqUtaP0rNBEkFxJdh4f3tik6MfZsMYZc+UgQJdGCxWEjL9wnCUlRQXag==", "dependencies": { - "lodash.once": "^4.1.1" + "lodash.memoize": "^4.1.1" + }, + "funding": { + "url": "https://github.com/wojtekmaj/get-user-locale?sponsor=1" } }, "node_modules/graceful-fs": { - "version": "4.2.2", - "license": "ISC" + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, "node_modules/has": { "version": "1.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dependencies": { "function-bind": "^1.1.1" }, @@ -205,9 +124,21 @@ "node": ">= 0.4.0" } }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-symbols": { - "version": "1.0.2", - "license": "MIT", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "engines": { "node": ">= 0.4" }, @@ -217,36 +148,42 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "engines": { "node": ">=0.8.19" } }, "node_modules/isomorphic-ws": { "version": "4.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz", + "integrity": "sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==", "peerDependencies": { "ws": "*" } }, "node_modules/jquery-deferred": { "version": "0.3.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/jquery-deferred/-/jquery-deferred-0.3.1.tgz", + "integrity": "sha512-YTzoTYR/yrjmNh6B6exK7lC1jlDazEzt9ZlZvdRscv+I1AJqN1SmU3ZAn4iMGiVhwAavCrbijDVyTc0lmr9ZCA==", "engines": { "node": ">=0.4.0" } }, "node_modules/lodash": { "version": "4.17.21", - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, - "node_modules/lodash.once": { - "version": "4.1.1", - "license": "MIT" + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" }, "node_modules/najax": { "version": "1.0.7", - "license": "MIT", + "resolved": "https://registry.npmjs.org/najax/-/najax-1.0.7.tgz", + "integrity": "sha512-JqBMguf2plv1IDqhOE6eebnTivjS/ej0C/Sw831jVc+dRQIMK37oyktdQCGAQtwpl5DikOWI2xGfIlBPSSLgXg==", "dependencies": { "jquery-deferred": "^0.3.0", "lodash": "^4.17.21", @@ -258,6 +195,8 @@ }, "node_modules/node-localstorage": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-localstorage/-/node-localstorage-1.3.1.tgz", + "integrity": "sha512-NMWCSWWc6JbHT5PyWlNT2i8r7PgGYXVntmKawY83k/M0UJScZ5jirb61TLnqKwd815DfBQu+lR3sRw08SPzIaQ==", "dependencies": { "write-file-atomic": "^1.1.4" }, @@ -266,15 +205,17 @@ } }, "node_modules/object-inspect": { - "version": "1.10.3", - "license": "MIT", + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/qs": { "version": "6.11.2", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", "dependencies": { "side-channel": "^1.0.4" }, @@ -287,7 +228,8 @@ }, "node_modules/side-channel": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", @@ -299,14 +241,16 @@ }, "node_modules/slide": { "version": "1.1.6", - "license": "ISC", + "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz", + "integrity": "sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==", "engines": { "node": "*" } }, "node_modules/write-file-atomic": { "version": "1.3.4", - "license": "ISC", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz", + "integrity": "sha512-SdrHoC/yVBPpV0Xq/mUZQIpW2sWXAShb/V4pomcJXh92RuaO+f3UTWItiR3Px+pLnV2PvC2/bfn5cwr5X6Vfxw==", "dependencies": { "graceful-fs": "^4.1.11", "imurmurhash": "^0.1.4", @@ -315,14 +259,16 @@ }, "node_modules/ws": { "version": "6.2.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", "dependencies": { "async-limiter": "~1.0.0" } }, "node_modules/xmlhttprequest": { "version": "1.8.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz", + "integrity": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==", "engines": { "node": ">=0.4.0" }