@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.js CHANGED
@@ -238,9 +238,9 @@ var parseGraphQL = (body) => {
238
238
  // src/helpers/graphql/normalizeOperationType.ts
239
239
  var normalizeOperationType = (type) => {
240
240
  if (!type) return null;
241
- if (type === "query") return "query";
242
- if (type === "mutation") return "mutation";
243
- if (type === "subscription") return "subscription";
241
+ if (type === "query") return "QUERY" /* QUERY */;
242
+ if (type === "mutation") return "MUTATION" /* MUTATION */;
243
+ if (type === "subscription") return "SUBSCRIPTION" /* SUB */;
244
244
  return type;
245
245
  };
246
246
 
@@ -267,7 +267,7 @@ var SENSITIVE_HEADERS = [
267
267
  var LIMELIGHT_WEB_WSS_URL = "wss://api.getlimelight.io";
268
268
  var LIMELIGHT_DESKTOP_WSS_URL = "ws://localhost:8484";
269
269
  var WS_PATH = "/limelight";
270
- var SDK_VERSION = true ? "0.4.2" : "test-version";
270
+ var SDK_VERSION = true ? "0.4.3" : "test-version";
271
271
  var RENDER_THRESHOLDS = {
272
272
  HOT_VELOCITY: 5,
273
273
  HIGH_RENDER_COUNT: 50,