@xmobitea/gn-server 2.4.15 → 2.4.16

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -77927,14 +77927,14 @@ class AnalyticsService {
77927
77927
  thisCurrentRequestCompleteErrorCode.count += 1;
77928
77928
  }
77929
77929
  if (!eventName.startsWith("dashboard_")) {
77930
- if (!eventName.startWith("system_")) {
77930
+ if (!eventName.startsWith("system_")) {
77931
77931
  this.currentCost.requestCount += 1;
77932
77932
  this.currentMonthlyCost.requestCount += 1;
77933
- if (eventName.startWith("multiplayer_")) {
77933
+ if (eventName.startsWith("multiplayer_")) {
77934
77934
  this.currentCost.matchmakingRequestCount += 1;
77935
77935
  this.currentMonthlyCost.matchmakingRequestCount += 1;
77936
77936
  }
77937
- else if (eventName.startWith("cloudScript_")) {
77937
+ else if (eventName.startsWith("cloudScript_")) {
77938
77938
  let parameters = operationResponse === null || operationResponse === void 0 ? void 0 : operationResponse.parameters;
77939
77939
  if (parameters) {
77940
77940
  let executionTimeInMs = parameters.executionTimeInMs;
@@ -77953,12 +77953,12 @@ class AnalyticsService {
77953
77953
  }
77954
77954
  else {
77955
77955
  if (!eventName.startsWith("dashboard_")) {
77956
- if (!eventName.startWith("system_")) {
77956
+ if (!eventName.startsWith("system_")) {
77957
77957
  this.currentMonthlyCost.requestCount += 1;
77958
- if (eventName.startWith("multiplayer_")) {
77958
+ if (eventName.startsWith("multiplayer_")) {
77959
77959
  this.currentMonthlyCost.matchmakingRequestCount += 1;
77960
77960
  }
77961
- else if (eventName.startWith("cloudScript_")) {
77961
+ else if (eventName.startsWith("cloudScript_")) {
77962
77962
  let parameters = operationResponse === null || operationResponse === void 0 ? void 0 : operationResponse.parameters;
77963
77963
  if (parameters) {
77964
77964
  let executionTimeInMs = parameters.executionTimeInMs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmobitea/gn-server",
3
- "version": "2.4.15",
3
+ "version": "2.4.16",
4
4
  "description": "Game Networking Server by XmobiTea (Pro)",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",