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