theprogrammablemind_4wp 7.5.8-beta.15 → 7.5.8-beta.16

Sign up to get free protection for your applications and to get access to all the features.
package/client.js CHANGED
@@ -9,7 +9,6 @@ const _ = require('lodash')
9
9
  const stringify = require('json-stable-stringify')
10
10
  const Lines = require('./lines')
11
11
  const flattens = require('./src/flatten')
12
- const { config_toServer } = require('./src/config.js')
13
12
  const { appendNoDups, InitCalls, updateQueries } = require('./src/helpers')
14
13
  const runtime = require('./runtime')
15
14
  const sortJson = runtime.sortJson
@@ -553,7 +552,7 @@ const setupProcessB = ({ config, initializer, allowDelta=false } = {}) => {
553
552
  Object.assign(data, config.config)
554
553
  }
555
554
 
556
- config_toServer(data)
555
+ config.toServer(data)
557
556
 
558
557
  if (data.namespaces) {
559
558
  for (const uuid of Object.keys(data.namespaces)) {
package/package.json CHANGED
@@ -63,6 +63,6 @@
63
63
  "json-stable-stringify": "^1.0.1",
64
64
  "node-fetch": "^2.6.1"
65
65
  },
66
- "version": "7.5.8-beta.15",
66
+ "version": "7.5.8-beta.16",
67
67
  "license": "ISC"
68
68
  }
package/src/config.js CHANGED
@@ -79,7 +79,6 @@ const elist = (list, check, prefix) => {
79
79
  }
80
80
  }
81
81
  const contextual_priorities_valid = (cps) => {
82
- debugger
83
82
  elist(cps, (cp) => contextual_priority_valid(cp), (index, e) => `contextual_priorities has an invalid contextual priority at position ${index}. ${e}`)
84
83
  }
85
84
 
@@ -570,6 +569,10 @@ const multiApiImpl = (initializer) => {
570
569
 
571
570
  class Config {
572
571
 
572
+ toServer (config) {
573
+ return config_toServer(config)
574
+ }
575
+
573
576
  inDevelopmentMode (call) {
574
577
  config.developmentModeOn += 1
575
578
  try {