@getlimelight/sdk 0.4.2 → 0.4.3

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.mjs CHANGED
@@ -202,9 +202,9 @@ var parseGraphQL = (body) => {
202
202
  // src/helpers/graphql/normalizeOperationType.ts
203
203
  var normalizeOperationType = (type) => {
204
204
  if (!type) return null;
205
- if (type === "query") return "query";
206
- if (type === "mutation") return "mutation";
207
- if (type === "subscription") return "subscription";
205
+ if (type === "query") return "QUERY" /* QUERY */;
206
+ if (type === "mutation") return "MUTATION" /* MUTATION */;
207
+ if (type === "subscription") return "SUBSCRIPTION" /* SUB */;
208
208
  return type;
209
209
  };
210
210
 
@@ -231,7 +231,7 @@ var SENSITIVE_HEADERS = [
231
231
  var LIMELIGHT_WEB_WSS_URL = "wss://api.getlimelight.io";
232
232
  var LIMELIGHT_DESKTOP_WSS_URL = "ws://localhost:8484";
233
233
  var WS_PATH = "/limelight";
234
- var SDK_VERSION = true ? "0.4.2" : "test-version";
234
+ var SDK_VERSION = true ? "0.4.3" : "test-version";
235
235
  var RENDER_THRESHOLDS = {
236
236
  HOT_VELOCITY: 5,
237
237
  HIGH_RENDER_COUNT: 50,