@digipair/skill-client-mcp 0.117.6 → 0.117.7

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.esm.js +10 -6
  2. package/package.json +1 -1
package/dist/index.esm.js CHANGED
@@ -1,3 +1,4 @@
1
+ import { snakeCase, kebabCase, camelCase } from 'case-anything/dist/index.js';
1
2
  import pkceChallenge from 'pkce-challenge';
2
3
  import require$$0$2 from 'child_process';
3
4
  import require$$0$1 from 'path';
@@ -22845,14 +22846,14 @@ function indent(str, spaces) {
22845
22846
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
22846
22847
  // match is required
22847
22848
  if (!match) {
22848
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
22849
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
22849
22850
  v: nextMatch1
22850
22851
  };
22851
22852
  }
22852
22853
  var token = match.token, offset = match.offset;
22853
22854
  i1 += offset;
22854
22855
  if (token === ' ') {
22855
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
22856
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
22856
22857
  }
22857
22858
  tokens1 = _to_consumable_array$4(tokens1).concat([
22858
22859
  token
@@ -22871,7 +22872,7 @@ function indent(str, spaces) {
22871
22872
  if (contextKeys.some(function(el) {
22872
22873
  return el.startsWith(name);
22873
22874
  })) {
22874
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
22875
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
22875
22876
  }
22876
22877
  if (dateTimeIdentifiers.some(function(el) {
22877
22878
  return el === name;
@@ -22890,9 +22891,9 @@ function indent(str, spaces) {
22890
22891
  if (dateTimeIdentifiers.some(function(el) {
22891
22892
  return el.startsWith(name);
22892
22893
  })) {
22893
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
22894
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
22894
22895
  }
22895
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
22896
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
22896
22897
  v: nextMatch1
22897
22898
  };
22898
22899
  };
@@ -44218,7 +44219,10 @@ const DIGIPAIR_FUNCTIONS = {
44218
44219
  encodeUTF8: (value)=>Array.from(new TextEncoder().encode(value)).map((b)=>String.fromCharCode(b)).join(''),
44219
44220
  decodeUTF8: (value)=>new TextDecoder().decode(new Uint8Array(Array.from(value).map((c)=>c.charCodeAt(0)))),
44220
44221
  JSONparse: (value)=>JSON.parse(value),
44221
- JSONstringify: (value)=>JSON.stringify(value)
44222
+ JSONstringify: (value)=>JSON.stringify(value),
44223
+ camelCase: (value)=>camelCase(value),
44224
+ kebabCase: (value)=>kebabCase(value),
44225
+ snakeCase: (value)=>snakeCase(value)
44222
44226
  };
44223
44227
  const globalInstance = typeof window === 'undefined' ? global : window;
44224
44228
  const _config = globalInstance.__DIGIPAIR_CONFIG__ = globalInstance.__DIGIPAIR_CONFIG__ ?? {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-client-mcp",
3
- "version": "0.117.6",
3
+ "version": "0.117.7",
4
4
  "main": "./index.cjs.js",
5
5
  "module": "./index.esm.js",
6
6
  "types": "./dist/index.d.ts",