@enonic/js-utils
Advanced tools
Comparing version 0.6.0 to 0.7.0
@@ -122,2 +122,3 @@ var __defProp = Object.defineProperty; | ||
flatten: () => flatten, | ||
fold: () => fold, | ||
forceArray: () => forceArray, | ||
@@ -156,3 +157,4 @@ fulltext: () => fulltext, | ||
uniqueId: () => uniqueId, | ||
updateIndexConfigs: () => updateIndexConfigs | ||
updateIndexConfigs: () => updateIndexConfigs, | ||
validateRepoId: () => validateRepoId | ||
}); | ||
@@ -872,2 +874,1286 @@ | ||
// src/storage/repo/index.ts | ||
function validateRepoId(repoId) { | ||
if (!isString(repoId)) { | ||
return "repoId must be a string!"; | ||
} | ||
if (repoId === "") { | ||
return "repoId can't be an empty string!"; | ||
} | ||
const firstChar = repoId.charAt(0); | ||
if (firstChar === "_") { | ||
return "repoId can't start with an underscore!"; | ||
} | ||
if (firstChar === ".") { | ||
return "repoId can't start with a dot!"; | ||
} | ||
if (repoId.toLowerCase() !== repoId) { | ||
return "repoId can't contains uppercase letters!"; | ||
} | ||
for (var i = 0; i < repoId.length; i++) { | ||
const char = repoId.charAt(i); | ||
const code = char.charCodeAt(0); | ||
if (!(code === 45 || code === 46 || code >= 49 && code <= 58 || code === 95 || code >= 97 && code <= 122)) { | ||
return `char:${toStr(char)} with charCode:${code} is illegal! repoId can only contain - . 1-9 : _ a-z`; | ||
} | ||
} | ||
return null; | ||
} | ||
// src/string/fold.ts | ||
var MAPPING = { | ||
192: "A", | ||
193: "A", | ||
194: "A", | ||
195: "A", | ||
196: "A", | ||
197: "A", | ||
256: "A", | ||
258: "A", | ||
260: "A", | ||
399: "A", | ||
461: "A", | ||
478: "A", | ||
480: "A", | ||
506: "A", | ||
512: "A", | ||
514: "A", | ||
550: "A", | ||
570: "A", | ||
7424: "A", | ||
7680: "A", | ||
7840: "A", | ||
7842: "A", | ||
7844: "A", | ||
7846: "A", | ||
7848: "A", | ||
7850: "A", | ||
7852: "A", | ||
7854: "A", | ||
7856: "A", | ||
7858: "A", | ||
7860: "A", | ||
7862: "A", | ||
9398: "A", | ||
65313: "A", | ||
224: "a", | ||
225: "a", | ||
226: "a", | ||
227: "a", | ||
228: "a", | ||
229: "a", | ||
257: "a", | ||
259: "a", | ||
261: "a", | ||
462: "a", | ||
479: "a", | ||
481: "a", | ||
507: "a", | ||
513: "a", | ||
515: "a", | ||
551: "a", | ||
592: "a", | ||
601: "a", | ||
602: "a", | ||
7567: "a", | ||
7573: "a", | ||
7681: "a", | ||
7834: "a", | ||
7841: "a", | ||
7843: "a", | ||
7845: "a", | ||
7847: "a", | ||
7849: "a", | ||
7851: "a", | ||
7853: "a", | ||
7855: "a", | ||
7857: "a", | ||
7859: "a", | ||
7861: "a", | ||
7863: "a", | ||
8336: "a", | ||
8340: "a", | ||
9424: "a", | ||
11365: "a", | ||
11375: "a", | ||
65345: "a", | ||
42802: "AA", | ||
198: "AE", | ||
482: "AE", | ||
508: "AE", | ||
7425: "AE", | ||
42804: "AO", | ||
42806: "AU", | ||
42808: "AV", | ||
42810: "AV", | ||
42812: "AY", | ||
9372: "(a)", | ||
42803: "aa", | ||
230: "ae", | ||
483: "ae", | ||
509: "ae", | ||
7426: "ae", | ||
42805: "ao", | ||
42807: "au", | ||
42809: "av", | ||
42811: "av", | ||
42813: "ay", | ||
385: "B", | ||
386: "B", | ||
579: "B", | ||
665: "B", | ||
7427: "B", | ||
7682: "B", | ||
7684: "B", | ||
7686: "B", | ||
9399: "B", | ||
65314: "B", | ||
384: "b", | ||
387: "b", | ||
595: "b", | ||
7532: "b", | ||
7552: "b", | ||
7683: "b", | ||
7685: "b", | ||
7687: "b", | ||
9425: "b", | ||
65346: "b", | ||
9373: "(b)", | ||
199: "C", | ||
262: "C", | ||
264: "C", | ||
266: "C", | ||
268: "C", | ||
391: "C", | ||
571: "C", | ||
663: "C", | ||
7428: "C", | ||
7688: "C", | ||
9400: "C", | ||
65315: "C", | ||
231: "c", | ||
263: "c", | ||
265: "c", | ||
267: "c", | ||
269: "c", | ||
392: "c", | ||
572: "c", | ||
597: "c", | ||
7689: "c", | ||
8580: "c", | ||
9426: "c", | ||
42814: "c", | ||
42815: "c", | ||
65347: "c", | ||
9374: "(c)", | ||
208: "D", | ||
270: "D", | ||
272: "D", | ||
393: "D", | ||
394: "D", | ||
395: "D", | ||
7429: "D", | ||
7430: "D", | ||
7690: "D", | ||
7692: "D", | ||
7694: "D", | ||
7696: "D", | ||
7698: "D", | ||
9401: "D", | ||
42873: "D", | ||
65316: "D", | ||
240: "d", | ||
271: "d", | ||
273: "d", | ||
396: "d", | ||
545: "d", | ||
598: "d", | ||
599: "d", | ||
7533: "d", | ||
7553: "d", | ||
7569: "d", | ||
7691: "d", | ||
7693: "d", | ||
7695: "d", | ||
7697: "d", | ||
7699: "d", | ||
9427: "d", | ||
42874: "d", | ||
65348: "d", | ||
452: "DZ", | ||
497: "DZ", | ||
453: "Dz", | ||
498: "Dz", | ||
9375: "(d)", | ||
568: "db", | ||
454: "dz", | ||
499: "dz", | ||
675: "dz", | ||
677: "dz", | ||
200: "E", | ||
201: "E", | ||
202: "E", | ||
203: "E", | ||
274: "E", | ||
276: "E", | ||
278: "E", | ||
280: "E", | ||
282: "E", | ||
398: "E", | ||
400: "E", | ||
516: "E", | ||
518: "E", | ||
552: "E", | ||
582: "E", | ||
7431: "E", | ||
7700: "E", | ||
7702: "E", | ||
7704: "E", | ||
7706: "E", | ||
7708: "E", | ||
7864: "E", | ||
7866: "E", | ||
7868: "E", | ||
7870: "E", | ||
7872: "E", | ||
7874: "E", | ||
7876: "E", | ||
7878: "E", | ||
9402: "E", | ||
11387: "E", | ||
65317: "E", | ||
232: "e", | ||
233: "e", | ||
234: "e", | ||
235: "e", | ||
275: "e", | ||
277: "e", | ||
279: "e", | ||
281: "e", | ||
283: "e", | ||
477: "e", | ||
517: "e", | ||
519: "e", | ||
553: "e", | ||
583: "e", | ||
600: "e", | ||
603: "e", | ||
604: "e", | ||
605: "e", | ||
606: "e", | ||
666: "e", | ||
7432: "e", | ||
7570: "e", | ||
7571: "e", | ||
7572: "e", | ||
7701: "e", | ||
7703: "e", | ||
7705: "e", | ||
7707: "e", | ||
7709: "e", | ||
7865: "e", | ||
7867: "e", | ||
7869: "e", | ||
7871: "e", | ||
7873: "e", | ||
7875: "e", | ||
7877: "e", | ||
7879: "e", | ||
8337: "e", | ||
9428: "e", | ||
11384: "e", | ||
65349: "e", | ||
9376: "(e)", | ||
401: "F", | ||
7710: "F", | ||
9403: "F", | ||
42800: "F", | ||
42875: "F", | ||
43003: "F", | ||
65318: "F", | ||
402: "f", | ||
7534: "f", | ||
7554: "f", | ||
7711: "f", | ||
7835: "f", | ||
9429: "f", | ||
42876: "f", | ||
65350: "f", | ||
9377: "(f)", | ||
64256: "ff", | ||
64259: "ffi", | ||
64260: "ffl", | ||
64257: "fi", | ||
64258: "fl", | ||
284: "G", | ||
286: "G", | ||
288: "G", | ||
290: "G", | ||
403: "G", | ||
484: "G", | ||
485: "G", | ||
486: "G", | ||
487: "G", | ||
500: "G", | ||
610: "G", | ||
667: "G", | ||
7712: "G", | ||
9404: "G", | ||
42877: "G", | ||
42878: "G", | ||
65319: "G", | ||
285: "g", | ||
287: "g", | ||
289: "g", | ||
291: "g", | ||
501: "g", | ||
608: "g", | ||
609: "g", | ||
7543: "g", | ||
7545: "g", | ||
7555: "g", | ||
7713: "g", | ||
9430: "g", | ||
42879: "g", | ||
65351: "g", | ||
9378: "(g)", | ||
292: "H", | ||
294: "H", | ||
542: "H", | ||
668: "H", | ||
7714: "H", | ||
7716: "H", | ||
7718: "H", | ||
7720: "H", | ||
7722: "H", | ||
9405: "H", | ||
11367: "H", | ||
11381: "H", | ||
65320: "H", | ||
293: "h", | ||
295: "h", | ||
543: "h", | ||
613: "h", | ||
614: "h", | ||
686: "h", | ||
687: "h", | ||
7715: "h", | ||
7717: "h", | ||
7719: "h", | ||
7721: "h", | ||
7723: "h", | ||
7830: "h", | ||
9431: "h", | ||
11368: "h", | ||
11382: "h", | ||
65352: "h", | ||
502: "HV", | ||
9379: "(h)", | ||
405: "hv", | ||
204: "I", | ||
205: "I", | ||
206: "I", | ||
207: "I", | ||
296: "I", | ||
298: "I", | ||
300: "I", | ||
302: "I", | ||
304: "I", | ||
406: "I", | ||
407: "I", | ||
463: "I", | ||
520: "I", | ||
522: "I", | ||
618: "I", | ||
7547: "I", | ||
7724: "I", | ||
7726: "I", | ||
7880: "I", | ||
7882: "I", | ||
9406: "I", | ||
43006: "I", | ||
65321: "I", | ||
236: "i", | ||
237: "i", | ||
238: "i", | ||
239: "i", | ||
297: "i", | ||
299: "i", | ||
301: "i", | ||
303: "i", | ||
305: "i", | ||
464: "i", | ||
521: "i", | ||
523: "i", | ||
616: "i", | ||
7433: "i", | ||
7522: "i", | ||
7548: "i", | ||
7574: "i", | ||
7725: "i", | ||
7727: "i", | ||
7881: "i", | ||
7883: "i", | ||
8305: "i", | ||
9432: "i", | ||
65353: "i", | ||
306: "IJ", | ||
9380: "(i)", | ||
307: "ij", | ||
308: "J", | ||
584: "J", | ||
7434: "J", | ||
9407: "J", | ||
65322: "J", | ||
309: "j", | ||
496: "j", | ||
567: "j", | ||
585: "j", | ||
607: "j", | ||
644: "j", | ||
669: "j", | ||
9433: "j", | ||
11388: "j", | ||
65354: "j", | ||
9381: "(j)", | ||
310: "K", | ||
408: "K", | ||
488: "K", | ||
7435: "K", | ||
7728: "K", | ||
7730: "K", | ||
7732: "K", | ||
9408: "K", | ||
11369: "K", | ||
42816: "K", | ||
42818: "K", | ||
42820: "K", | ||
65323: "K", | ||
311: "k", | ||
409: "k", | ||
489: "k", | ||
670: "k", | ||
7556: "k", | ||
7729: "k", | ||
7731: "k", | ||
7733: "k", | ||
9434: "k", | ||
11370: "k", | ||
42817: "k", | ||
42819: "k", | ||
42821: "k", | ||
65355: "k", | ||
9382: "(k)", | ||
313: "L", | ||
315: "L", | ||
317: "L", | ||
319: "L", | ||
321: "L", | ||
573: "L", | ||
671: "L", | ||
7436: "L", | ||
7734: "L", | ||
7736: "L", | ||
7738: "L", | ||
7740: "L", | ||
9409: "L", | ||
11360: "L", | ||
11362: "L", | ||
42822: "L", | ||
42824: "L", | ||
42880: "L", | ||
65324: "L", | ||
314: "l", | ||
316: "l", | ||
318: "l", | ||
320: "l", | ||
322: "l", | ||
410: "l", | ||
564: "l", | ||
619: "l", | ||
620: "l", | ||
621: "l", | ||
7557: "l", | ||
7735: "l", | ||
7737: "l", | ||
7739: "l", | ||
7741: "l", | ||
9435: "l", | ||
11361: "l", | ||
42823: "l", | ||
42825: "l", | ||
42881: "l", | ||
65356: "l", | ||
455: "LJ", | ||
7930: "LL", | ||
456: "Lj", | ||
9383: "(l)", | ||
457: "lj", | ||
7931: "ll", | ||
682: "ls", | ||
683: "lz", | ||
412: "M", | ||
7437: "M", | ||
7742: "M", | ||
7744: "M", | ||
7746: "M", | ||
9410: "M", | ||
11374: "M", | ||
43005: "M", | ||
43007: "M", | ||
65325: "M", | ||
623: "m", | ||
624: "m", | ||
625: "m", | ||
7535: "m", | ||
7558: "m", | ||
7743: "m", | ||
7745: "m", | ||
7747: "m", | ||
9436: "m", | ||
65357: "m", | ||
9384: "(m)", | ||
209: "N", | ||
323: "N", | ||
325: "N", | ||
327: "N", | ||
330: "N", | ||
413: "N", | ||
504: "N", | ||
544: "N", | ||
628: "N", | ||
7438: "N", | ||
7748: "N", | ||
7750: "N", | ||
7752: "N", | ||
7754: "N", | ||
9411: "N", | ||
65326: "N", | ||
241: "n", | ||
324: "n", | ||
326: "n", | ||
328: "n", | ||
329: "n", | ||
331: "n", | ||
414: "n", | ||
505: "n", | ||
565: "n", | ||
626: "n", | ||
627: "n", | ||
7536: "n", | ||
7559: "n", | ||
7749: "n", | ||
7751: "n", | ||
7753: "n", | ||
7755: "n", | ||
8319: "n", | ||
9437: "n", | ||
65358: "n", | ||
458: "NJ", | ||
459: "Nj", | ||
9385: "(n)", | ||
460: "nj", | ||
210: "O", | ||
211: "O", | ||
212: "O", | ||
213: "O", | ||
214: "O", | ||
216: "O", | ||
332: "O", | ||
334: "O", | ||
336: "O", | ||
390: "O", | ||
415: "O", | ||
416: "O", | ||
465: "O", | ||
490: "O", | ||
492: "O", | ||
510: "O", | ||
524: "O", | ||
526: "O", | ||
554: "O", | ||
556: "O", | ||
558: "O", | ||
560: "O", | ||
7439: "O", | ||
7440: "O", | ||
7756: "O", | ||
7758: "O", | ||
7760: "O", | ||
7762: "O", | ||
7884: "O", | ||
7886: "O", | ||
7888: "O", | ||
7890: "O", | ||
7892: "O", | ||
7894: "O", | ||
7896: "O", | ||
7898: "O", | ||
7900: "O", | ||
7902: "O", | ||
7904: "O", | ||
7906: "O", | ||
9412: "O", | ||
42826: "O", | ||
42828: "O", | ||
65327: "O", | ||
242: "o", | ||
243: "o", | ||
244: "o", | ||
245: "o", | ||
246: "o", | ||
248: "o", | ||
333: "o", | ||
335: "o", | ||
337: "o", | ||
417: "o", | ||
466: "o", | ||
491: "o", | ||
493: "o", | ||
511: "o", | ||
525: "o", | ||
527: "o", | ||
555: "o", | ||
557: "o", | ||
559: "o", | ||
561: "o", | ||
596: "o", | ||
629: "o", | ||
7446: "o", | ||
7447: "o", | ||
7575: "o", | ||
7757: "o", | ||
7759: "o", | ||
7761: "o", | ||
7763: "o", | ||
7885: "o", | ||
7887: "o", | ||
7889: "o", | ||
7891: "o", | ||
7893: "o", | ||
7895: "o", | ||
7897: "o", | ||
7899: "o", | ||
7901: "o", | ||
7903: "o", | ||
7905: "o", | ||
7907: "o", | ||
8338: "o", | ||
9438: "o", | ||
11386: "o", | ||
42827: "o", | ||
42829: "o", | ||
65359: "o", | ||
338: "OE", | ||
630: "OE", | ||
42830: "OO", | ||
546: "OU", | ||
7445: "OU", | ||
9386: "(o)", | ||
339: "oe", | ||
7444: "oe", | ||
42831: "oo", | ||
547: "ou", | ||
420: "P", | ||
7448: "P", | ||
7764: "P", | ||
7766: "P", | ||
9413: "P", | ||
11363: "P", | ||
42832: "P", | ||
42834: "P", | ||
42836: "P", | ||
65328: "P", | ||
421: "p", | ||
7537: "p", | ||
7549: "p", | ||
7560: "p", | ||
7765: "p", | ||
7767: "p", | ||
9439: "p", | ||
42833: "p", | ||
42835: "p", | ||
42837: "p", | ||
43004: "p", | ||
65360: "p", | ||
9387: "(p)", | ||
586: "Q", | ||
9414: "Q", | ||
42838: "Q", | ||
42840: "Q", | ||
65329: "Q", | ||
312: "q", | ||
587: "q", | ||
672: "q", | ||
9440: "q", | ||
42839: "q", | ||
42841: "q", | ||
65361: "q", | ||
9388: "(q)", | ||
569: "qp", | ||
340: "R", | ||
342: "R", | ||
344: "R", | ||
528: "R", | ||
530: "R", | ||
588: "R", | ||
640: "R", | ||
641: "R", | ||
7449: "R", | ||
7450: "R", | ||
7768: "R", | ||
7770: "R", | ||
7772: "R", | ||
7774: "R", | ||
9415: "R", | ||
11364: "R", | ||
42842: "R", | ||
42882: "R", | ||
65330: "R", | ||
341: "r", | ||
343: "r", | ||
345: "r", | ||
529: "r", | ||
531: "r", | ||
589: "r", | ||
636: "r", | ||
637: "r", | ||
638: "r", | ||
639: "r", | ||
7523: "r", | ||
7538: "r", | ||
7539: "r", | ||
7561: "r", | ||
7769: "r", | ||
7771: "r", | ||
7773: "r", | ||
7775: "r", | ||
9441: "r", | ||
42843: "r", | ||
42883: "r", | ||
65362: "r", | ||
9389: "(r)", | ||
346: "S", | ||
348: "S", | ||
350: "S", | ||
352: "S", | ||
536: "S", | ||
7776: "S", | ||
7778: "S", | ||
7780: "S", | ||
7782: "S", | ||
7784: "S", | ||
9416: "S", | ||
42801: "S", | ||
42885: "S", | ||
65331: "S", | ||
347: "s", | ||
349: "s", | ||
351: "s", | ||
353: "s", | ||
383: "s", | ||
537: "s", | ||
575: "s", | ||
642: "s", | ||
7540: "s", | ||
7562: "s", | ||
7777: "s", | ||
7779: "s", | ||
7781: "s", | ||
7783: "s", | ||
7785: "s", | ||
7836: "s", | ||
7837: "s", | ||
9442: "s", | ||
42884: "s", | ||
65363: "s", | ||
7838: "SS", | ||
9390: "(s)", | ||
223: "ss", | ||
64262: "st", | ||
354: "T", | ||
356: "T", | ||
358: "T", | ||
428: "T", | ||
430: "T", | ||
538: "T", | ||
574: "T", | ||
7451: "T", | ||
7786: "T", | ||
7788: "T", | ||
7790: "T", | ||
7792: "T", | ||
9417: "T", | ||
42886: "T", | ||
65332: "T", | ||
355: "t", | ||
357: "t", | ||
359: "t", | ||
427: "t", | ||
429: "t", | ||
539: "t", | ||
566: "t", | ||
647: "t", | ||
648: "t", | ||
7541: "t", | ||
7787: "t", | ||
7789: "t", | ||
7791: "t", | ||
7793: "t", | ||
7831: "t", | ||
9443: "t", | ||
11366: "t", | ||
65364: "t", | ||
222: "TH", | ||
42854: "TH", | ||
42792: "TZ", | ||
9391: "(t)", | ||
680: "tc", | ||
254: "th", | ||
7546: "th", | ||
42855: "th", | ||
678: "ts", | ||
42793: "tz", | ||
217: "U", | ||
218: "U", | ||
219: "U", | ||
220: "U", | ||
360: "U", | ||
362: "U", | ||
364: "U", | ||
366: "U", | ||
368: "U", | ||
370: "U", | ||
431: "U", | ||
467: "U", | ||
469: "U", | ||
471: "U", | ||
473: "U", | ||
475: "U", | ||
532: "U", | ||
534: "U", | ||
580: "U", | ||
7452: "U", | ||
7550: "U", | ||
7794: "U", | ||
7796: "U", | ||
7798: "U", | ||
7800: "U", | ||
7802: "U", | ||
7908: "U", | ||
7910: "U", | ||
7912: "U", | ||
7914: "U", | ||
7916: "U", | ||
7918: "U", | ||
7920: "U", | ||
9418: "U", | ||
65333: "U", | ||
249: "u", | ||
250: "u", | ||
251: "u", | ||
252: "u", | ||
361: "u", | ||
363: "u", | ||
365: "u", | ||
367: "u", | ||
369: "u", | ||
371: "u", | ||
432: "u", | ||
468: "u", | ||
470: "u", | ||
472: "u", | ||
474: "u", | ||
476: "u", | ||
533: "u", | ||
535: "u", | ||
649: "u", | ||
7524: "u", | ||
7577: "u", | ||
7795: "u", | ||
7797: "u", | ||
7799: "u", | ||
7801: "u", | ||
7803: "u", | ||
7909: "u", | ||
7911: "u", | ||
7913: "u", | ||
7915: "u", | ||
7917: "u", | ||
7919: "u", | ||
7921: "u", | ||
9444: "u", | ||
65365: "u", | ||
9392: "(u)", | ||
7531: "ue", | ||
434: "V", | ||
581: "V", | ||
7456: "V", | ||
7804: "V", | ||
7806: "V", | ||
7932: "V", | ||
9419: "V", | ||
42846: "V", | ||
42856: "V", | ||
65334: "V", | ||
651: "v", | ||
652: "v", | ||
7525: "v", | ||
7564: "v", | ||
7805: "v", | ||
7807: "v", | ||
9445: "v", | ||
11377: "v", | ||
11380: "v", | ||
42847: "v", | ||
65366: "v", | ||
42848: "VY", | ||
9393: "(v)", | ||
42849: "vy", | ||
372: "W", | ||
503: "W", | ||
7457: "W", | ||
7808: "W", | ||
7810: "W", | ||
7812: "W", | ||
7814: "W", | ||
7816: "W", | ||
9420: "W", | ||
11378: "W", | ||
65335: "W", | ||
373: "w", | ||
447: "w", | ||
653: "w", | ||
7809: "w", | ||
7811: "w", | ||
7813: "w", | ||
7815: "w", | ||
7817: "w", | ||
7832: "w", | ||
9446: "w", | ||
11379: "w", | ||
65367: "w", | ||
9394: "(w)", | ||
7818: "X", | ||
7820: "X", | ||
9421: "X", | ||
65336: "X", | ||
7565: "x", | ||
7819: "x", | ||
7821: "x", | ||
8339: "x", | ||
9447: "x", | ||
65368: "x", | ||
9395: "(x)", | ||
221: "Y", | ||
374: "Y", | ||
376: "Y", | ||
435: "Y", | ||
562: "Y", | ||
590: "Y", | ||
655: "Y", | ||
7822: "Y", | ||
7922: "Y", | ||
7924: "Y", | ||
7926: "Y", | ||
7928: "Y", | ||
7934: "Y", | ||
9422: "Y", | ||
65337: "Y", | ||
253: "y", | ||
255: "y", | ||
375: "y", | ||
436: "y", | ||
563: "y", | ||
591: "y", | ||
654: "y", | ||
7823: "y", | ||
7833: "y", | ||
7923: "y", | ||
7925: "y", | ||
7927: "y", | ||
7929: "y", | ||
7935: "y", | ||
9448: "y", | ||
65369: "y", | ||
9396: "(y)", | ||
377: "Z", | ||
379: "Z", | ||
381: "Z", | ||
437: "Z", | ||
540: "Z", | ||
548: "Z", | ||
7458: "Z", | ||
7824: "Z", | ||
7826: "Z", | ||
7828: "Z", | ||
9423: "Z", | ||
11371: "Z", | ||
42850: "Z", | ||
65338: "Z", | ||
378: "z", | ||
380: "z", | ||
382: "z", | ||
438: "z", | ||
541: "z", | ||
549: "z", | ||
576: "z", | ||
656: "z", | ||
657: "z", | ||
7542: "z", | ||
7566: "z", | ||
7825: "z", | ||
7827: "z", | ||
7829: "z", | ||
9449: "z", | ||
11372: "z", | ||
42851: "z", | ||
65370: "z", | ||
9397: "(z)", | ||
8304: "0", | ||
8320: "0", | ||
9450: "0", | ||
9471: "0", | ||
65296: "0", | ||
185: "1", | ||
8321: "1", | ||
9312: "1", | ||
9461: "1", | ||
10102: "1", | ||
10112: "1", | ||
10122: "1", | ||
65297: "1", | ||
9352: "1.", | ||
9332: "(1)", | ||
178: "2", | ||
8322: "2", | ||
9313: "2", | ||
9462: "2", | ||
10103: "2", | ||
10113: "2", | ||
10123: "2", | ||
65298: "2", | ||
9353: "2.", | ||
9333: "(2)", | ||
179: "3", | ||
8323: "3", | ||
9314: "3", | ||
9463: "3", | ||
10104: "3", | ||
10114: "3", | ||
10124: "3", | ||
65299: "3", | ||
9354: "3.", | ||
9334: "(3)", | ||
8308: "4", | ||
8324: "4", | ||
9315: "4", | ||
9464: "4", | ||
10105: "4", | ||
10115: "4", | ||
10125: "4", | ||
65300: "4", | ||
9355: "4.", | ||
9335: "(4)", | ||
8309: "5", | ||
8325: "5", | ||
9316: "5", | ||
9465: "5", | ||
10106: "5", | ||
10116: "5", | ||
10126: "5", | ||
65301: "5", | ||
9356: "5.", | ||
9336: "(5)", | ||
8310: "6", | ||
8326: "6", | ||
9317: "6", | ||
9466: "6", | ||
10107: "6", | ||
10117: "6", | ||
10127: "6", | ||
65302: "6", | ||
9357: "6.", | ||
9337: "(6)", | ||
8311: "7", | ||
8327: "7", | ||
9318: "7", | ||
9467: "7", | ||
10108: "7", | ||
10118: "7", | ||
10128: "7", | ||
65303: "7", | ||
9358: "7.", | ||
9338: "(7)", | ||
8312: "8", | ||
8328: "8", | ||
9319: "8", | ||
9468: "8", | ||
10109: "8", | ||
10119: "8", | ||
10129: "8", | ||
65304: "8", | ||
9359: "8.", | ||
9339: "(8)", | ||
8313: "9", | ||
8329: "9", | ||
9320: "9", | ||
9469: "9", | ||
10110: "9", | ||
10120: "9", | ||
10130: "9", | ||
65305: "9", | ||
9360: "9.", | ||
9340: "(9)", | ||
9321: "10", | ||
9470: "10", | ||
10111: "10", | ||
10121: "10", | ||
10131: "10", | ||
9361: "10.", | ||
9341: "(10)", | ||
9322: "11", | ||
9451: "11", | ||
9362: "11.", | ||
9342: "(11)", | ||
9323: "12", | ||
9452: "12", | ||
9363: "12.", | ||
9343: "(12)", | ||
9324: "13", | ||
9453: "13", | ||
9364: "13.", | ||
9344: "(13)", | ||
9325: "14", | ||
9454: "14", | ||
9365: "14.", | ||
9345: "(14)", | ||
9326: "15", | ||
9455: "15", | ||
9366: "15.", | ||
9346: "(15)", | ||
9327: "16", | ||
9456: "16", | ||
9367: "16.", | ||
9347: "(16)", | ||
9328: "17", | ||
9457: "17", | ||
9368: "17.", | ||
9348: "(17)", | ||
9329: "18", | ||
9458: "18", | ||
9369: "18.", | ||
9349: "(18)", | ||
9330: "19", | ||
9459: "19", | ||
9370: "19.", | ||
9350: "(19)", | ||
9331: "20", | ||
9460: "20", | ||
9371: "20.", | ||
9351: "(20)", | ||
171: '"', | ||
187: '"', | ||
8220: '"', | ||
8221: '"', | ||
8222: '"', | ||
8243: '"', | ||
8246: '"', | ||
10077: '"', | ||
10078: '"', | ||
10094: '"', | ||
10095: '"', | ||
65282: '"', | ||
8216: "'", | ||
8217: "'", | ||
8218: "'", | ||
8219: "'", | ||
8242: "'", | ||
8245: "'", | ||
8249: "'", | ||
8250: "'", | ||
10075: "'", | ||
10076: "'", | ||
65287: "'", | ||
8208: "-", | ||
8209: "-", | ||
8210: "-", | ||
8211: "-", | ||
8212: "-", | ||
8315: "-", | ||
8331: "-", | ||
65293: "-", | ||
8261: "[", | ||
10098: "[", | ||
65339: "[", | ||
8262: "]", | ||
10099: "]", | ||
65341: "]", | ||
8317: "(", | ||
8333: "(", | ||
10088: "(", | ||
10090: "(", | ||
65288: "(", | ||
11816: "((", | ||
8318: ")", | ||
8334: ")", | ||
10089: ")", | ||
10091: ")", | ||
65289: ")", | ||
11817: "))", | ||
10092: "<", | ||
10096: "<", | ||
65308: "<", | ||
10093: ">", | ||
10097: ">", | ||
65310: ">", | ||
10100: "{", | ||
65371: "{", | ||
10101: "}", | ||
65373: "}", | ||
8314: "+", | ||
8330: "+", | ||
65291: "+", | ||
8316: "=", | ||
8332: "=", | ||
65309: "=", | ||
65281: "!", | ||
8252: "!!", | ||
8265: "!?", | ||
65283: "#", | ||
65284: "$", | ||
8274: "%", | ||
65285: "%", | ||
65286: "&", | ||
8270: "*", | ||
65290: "*", | ||
65292: ",", | ||
65294: ".", | ||
8260: "/", | ||
65295: "/", | ||
65306: ":", | ||
8271: ";", | ||
65307: ";", | ||
65311: "?", | ||
8263: "??", | ||
8264: "?!", | ||
65312: "@", | ||
65340: "\\", | ||
8248: "^", | ||
65342: "^", | ||
65343: "_", | ||
8275: "~", | ||
65374: "~" | ||
}; | ||
function fold(inStr) { | ||
return inStr.split("").map((character) => { | ||
if (character.charCodeAt(0) < 128) { | ||
return character; | ||
} else { | ||
const replacement = MAPPING[character.charCodeAt(0)]; | ||
return replacement === void 0 ? "-" : replacement; | ||
} | ||
}).join(""); | ||
} | ||
// src/string/unStem.ts | ||
@@ -874,0 +2160,0 @@ function unStemEnglish(word) { |
@@ -120,3 +120,4 @@ var __defProp = Object.defineProperty; | ||
uniqueId: () => uniqueId, | ||
updateIndexConfigs: () => updateIndexConfigs | ||
updateIndexConfigs: () => updateIndexConfigs, | ||
validateRepoId: () => validateRepoId | ||
}); | ||
@@ -179,2 +180,6 @@ | ||
var isObject = (value) => Object.prototype.toString.call(value).slice(8, -1) === "Object"; | ||
var isString = (value) => typeof value === "string" || value instanceof String; | ||
function toStr(value, replacer = null, space = 4) { | ||
return JSON.stringify(value, replacer, space); | ||
} | ||
@@ -762,1 +767,29 @@ // src/storage/indexing/enonify.ts | ||
} | ||
// src/storage/repo/index.ts | ||
function validateRepoId(repoId) { | ||
if (!isString(repoId)) { | ||
return "repoId must be a string!"; | ||
} | ||
if (repoId === "") { | ||
return "repoId can't be an empty string!"; | ||
} | ||
const firstChar = repoId.charAt(0); | ||
if (firstChar === "_") { | ||
return "repoId can't start with an underscore!"; | ||
} | ||
if (firstChar === ".") { | ||
return "repoId can't start with a dot!"; | ||
} | ||
if (repoId.toLowerCase() !== repoId) { | ||
return "repoId can't contains uppercase letters!"; | ||
} | ||
for (var i = 0; i < repoId.length; i++) { | ||
const char = repoId.charAt(i); | ||
const code = char.charCodeAt(0); | ||
if (!(code === 45 || code === 46 || code >= 49 && code <= 58 || code === 95 || code >= 97 && code <= 122)) { | ||
return `char:${toStr(char)} with charCode:${code} is illegal! repoId can only contain - . 1-9 : _ a-z`; | ||
} | ||
} | ||
return null; | ||
} |
@@ -15,2 +15,3 @@ var __defProp = Object.defineProperty; | ||
camelize: () => camelize, | ||
fold: () => fold, | ||
lpad: () => lpad, | ||
@@ -28,2 +29,1258 @@ rpad: () => rpad, | ||
// src/string/fold.ts | ||
var MAPPING = { | ||
192: "A", | ||
193: "A", | ||
194: "A", | ||
195: "A", | ||
196: "A", | ||
197: "A", | ||
256: "A", | ||
258: "A", | ||
260: "A", | ||
399: "A", | ||
461: "A", | ||
478: "A", | ||
480: "A", | ||
506: "A", | ||
512: "A", | ||
514: "A", | ||
550: "A", | ||
570: "A", | ||
7424: "A", | ||
7680: "A", | ||
7840: "A", | ||
7842: "A", | ||
7844: "A", | ||
7846: "A", | ||
7848: "A", | ||
7850: "A", | ||
7852: "A", | ||
7854: "A", | ||
7856: "A", | ||
7858: "A", | ||
7860: "A", | ||
7862: "A", | ||
9398: "A", | ||
65313: "A", | ||
224: "a", | ||
225: "a", | ||
226: "a", | ||
227: "a", | ||
228: "a", | ||
229: "a", | ||
257: "a", | ||
259: "a", | ||
261: "a", | ||
462: "a", | ||
479: "a", | ||
481: "a", | ||
507: "a", | ||
513: "a", | ||
515: "a", | ||
551: "a", | ||
592: "a", | ||
601: "a", | ||
602: "a", | ||
7567: "a", | ||
7573: "a", | ||
7681: "a", | ||
7834: "a", | ||
7841: "a", | ||
7843: "a", | ||
7845: "a", | ||
7847: "a", | ||
7849: "a", | ||
7851: "a", | ||
7853: "a", | ||
7855: "a", | ||
7857: "a", | ||
7859: "a", | ||
7861: "a", | ||
7863: "a", | ||
8336: "a", | ||
8340: "a", | ||
9424: "a", | ||
11365: "a", | ||
11375: "a", | ||
65345: "a", | ||
42802: "AA", | ||
198: "AE", | ||
482: "AE", | ||
508: "AE", | ||
7425: "AE", | ||
42804: "AO", | ||
42806: "AU", | ||
42808: "AV", | ||
42810: "AV", | ||
42812: "AY", | ||
9372: "(a)", | ||
42803: "aa", | ||
230: "ae", | ||
483: "ae", | ||
509: "ae", | ||
7426: "ae", | ||
42805: "ao", | ||
42807: "au", | ||
42809: "av", | ||
42811: "av", | ||
42813: "ay", | ||
385: "B", | ||
386: "B", | ||
579: "B", | ||
665: "B", | ||
7427: "B", | ||
7682: "B", | ||
7684: "B", | ||
7686: "B", | ||
9399: "B", | ||
65314: "B", | ||
384: "b", | ||
387: "b", | ||
595: "b", | ||
7532: "b", | ||
7552: "b", | ||
7683: "b", | ||
7685: "b", | ||
7687: "b", | ||
9425: "b", | ||
65346: "b", | ||
9373: "(b)", | ||
199: "C", | ||
262: "C", | ||
264: "C", | ||
266: "C", | ||
268: "C", | ||
391: "C", | ||
571: "C", | ||
663: "C", | ||
7428: "C", | ||
7688: "C", | ||
9400: "C", | ||
65315: "C", | ||
231: "c", | ||
263: "c", | ||
265: "c", | ||
267: "c", | ||
269: "c", | ||
392: "c", | ||
572: "c", | ||
597: "c", | ||
7689: "c", | ||
8580: "c", | ||
9426: "c", | ||
42814: "c", | ||
42815: "c", | ||
65347: "c", | ||
9374: "(c)", | ||
208: "D", | ||
270: "D", | ||
272: "D", | ||
393: "D", | ||
394: "D", | ||
395: "D", | ||
7429: "D", | ||
7430: "D", | ||
7690: "D", | ||
7692: "D", | ||
7694: "D", | ||
7696: "D", | ||
7698: "D", | ||
9401: "D", | ||
42873: "D", | ||
65316: "D", | ||
240: "d", | ||
271: "d", | ||
273: "d", | ||
396: "d", | ||
545: "d", | ||
598: "d", | ||
599: "d", | ||
7533: "d", | ||
7553: "d", | ||
7569: "d", | ||
7691: "d", | ||
7693: "d", | ||
7695: "d", | ||
7697: "d", | ||
7699: "d", | ||
9427: "d", | ||
42874: "d", | ||
65348: "d", | ||
452: "DZ", | ||
497: "DZ", | ||
453: "Dz", | ||
498: "Dz", | ||
9375: "(d)", | ||
568: "db", | ||
454: "dz", | ||
499: "dz", | ||
675: "dz", | ||
677: "dz", | ||
200: "E", | ||
201: "E", | ||
202: "E", | ||
203: "E", | ||
274: "E", | ||
276: "E", | ||
278: "E", | ||
280: "E", | ||
282: "E", | ||
398: "E", | ||
400: "E", | ||
516: "E", | ||
518: "E", | ||
552: "E", | ||
582: "E", | ||
7431: "E", | ||
7700: "E", | ||
7702: "E", | ||
7704: "E", | ||
7706: "E", | ||
7708: "E", | ||
7864: "E", | ||
7866: "E", | ||
7868: "E", | ||
7870: "E", | ||
7872: "E", | ||
7874: "E", | ||
7876: "E", | ||
7878: "E", | ||
9402: "E", | ||
11387: "E", | ||
65317: "E", | ||
232: "e", | ||
233: "e", | ||
234: "e", | ||
235: "e", | ||
275: "e", | ||
277: "e", | ||
279: "e", | ||
281: "e", | ||
283: "e", | ||
477: "e", | ||
517: "e", | ||
519: "e", | ||
553: "e", | ||
583: "e", | ||
600: "e", | ||
603: "e", | ||
604: "e", | ||
605: "e", | ||
606: "e", | ||
666: "e", | ||
7432: "e", | ||
7570: "e", | ||
7571: "e", | ||
7572: "e", | ||
7701: "e", | ||
7703: "e", | ||
7705: "e", | ||
7707: "e", | ||
7709: "e", | ||
7865: "e", | ||
7867: "e", | ||
7869: "e", | ||
7871: "e", | ||
7873: "e", | ||
7875: "e", | ||
7877: "e", | ||
7879: "e", | ||
8337: "e", | ||
9428: "e", | ||
11384: "e", | ||
65349: "e", | ||
9376: "(e)", | ||
401: "F", | ||
7710: "F", | ||
9403: "F", | ||
42800: "F", | ||
42875: "F", | ||
43003: "F", | ||
65318: "F", | ||
402: "f", | ||
7534: "f", | ||
7554: "f", | ||
7711: "f", | ||
7835: "f", | ||
9429: "f", | ||
42876: "f", | ||
65350: "f", | ||
9377: "(f)", | ||
64256: "ff", | ||
64259: "ffi", | ||
64260: "ffl", | ||
64257: "fi", | ||
64258: "fl", | ||
284: "G", | ||
286: "G", | ||
288: "G", | ||
290: "G", | ||
403: "G", | ||
484: "G", | ||
485: "G", | ||
486: "G", | ||
487: "G", | ||
500: "G", | ||
610: "G", | ||
667: "G", | ||
7712: "G", | ||
9404: "G", | ||
42877: "G", | ||
42878: "G", | ||
65319: "G", | ||
285: "g", | ||
287: "g", | ||
289: "g", | ||
291: "g", | ||
501: "g", | ||
608: "g", | ||
609: "g", | ||
7543: "g", | ||
7545: "g", | ||
7555: "g", | ||
7713: "g", | ||
9430: "g", | ||
42879: "g", | ||
65351: "g", | ||
9378: "(g)", | ||
292: "H", | ||
294: "H", | ||
542: "H", | ||
668: "H", | ||
7714: "H", | ||
7716: "H", | ||
7718: "H", | ||
7720: "H", | ||
7722: "H", | ||
9405: "H", | ||
11367: "H", | ||
11381: "H", | ||
65320: "H", | ||
293: "h", | ||
295: "h", | ||
543: "h", | ||
613: "h", | ||
614: "h", | ||
686: "h", | ||
687: "h", | ||
7715: "h", | ||
7717: "h", | ||
7719: "h", | ||
7721: "h", | ||
7723: "h", | ||
7830: "h", | ||
9431: "h", | ||
11368: "h", | ||
11382: "h", | ||
65352: "h", | ||
502: "HV", | ||
9379: "(h)", | ||
405: "hv", | ||
204: "I", | ||
205: "I", | ||
206: "I", | ||
207: "I", | ||
296: "I", | ||
298: "I", | ||
300: "I", | ||
302: "I", | ||
304: "I", | ||
406: "I", | ||
407: "I", | ||
463: "I", | ||
520: "I", | ||
522: "I", | ||
618: "I", | ||
7547: "I", | ||
7724: "I", | ||
7726: "I", | ||
7880: "I", | ||
7882: "I", | ||
9406: "I", | ||
43006: "I", | ||
65321: "I", | ||
236: "i", | ||
237: "i", | ||
238: "i", | ||
239: "i", | ||
297: "i", | ||
299: "i", | ||
301: "i", | ||
303: "i", | ||
305: "i", | ||
464: "i", | ||
521: "i", | ||
523: "i", | ||
616: "i", | ||
7433: "i", | ||
7522: "i", | ||
7548: "i", | ||
7574: "i", | ||
7725: "i", | ||
7727: "i", | ||
7881: "i", | ||
7883: "i", | ||
8305: "i", | ||
9432: "i", | ||
65353: "i", | ||
306: "IJ", | ||
9380: "(i)", | ||
307: "ij", | ||
308: "J", | ||
584: "J", | ||
7434: "J", | ||
9407: "J", | ||
65322: "J", | ||
309: "j", | ||
496: "j", | ||
567: "j", | ||
585: "j", | ||
607: "j", | ||
644: "j", | ||
669: "j", | ||
9433: "j", | ||
11388: "j", | ||
65354: "j", | ||
9381: "(j)", | ||
310: "K", | ||
408: "K", | ||
488: "K", | ||
7435: "K", | ||
7728: "K", | ||
7730: "K", | ||
7732: "K", | ||
9408: "K", | ||
11369: "K", | ||
42816: "K", | ||
42818: "K", | ||
42820: "K", | ||
65323: "K", | ||
311: "k", | ||
409: "k", | ||
489: "k", | ||
670: "k", | ||
7556: "k", | ||
7729: "k", | ||
7731: "k", | ||
7733: "k", | ||
9434: "k", | ||
11370: "k", | ||
42817: "k", | ||
42819: "k", | ||
42821: "k", | ||
65355: "k", | ||
9382: "(k)", | ||
313: "L", | ||
315: "L", | ||
317: "L", | ||
319: "L", | ||
321: "L", | ||
573: "L", | ||
671: "L", | ||
7436: "L", | ||
7734: "L", | ||
7736: "L", | ||
7738: "L", | ||
7740: "L", | ||
9409: "L", | ||
11360: "L", | ||
11362: "L", | ||
42822: "L", | ||
42824: "L", | ||
42880: "L", | ||
65324: "L", | ||
314: "l", | ||
316: "l", | ||
318: "l", | ||
320: "l", | ||
322: "l", | ||
410: "l", | ||
564: "l", | ||
619: "l", | ||
620: "l", | ||
621: "l", | ||
7557: "l", | ||
7735: "l", | ||
7737: "l", | ||
7739: "l", | ||
7741: "l", | ||
9435: "l", | ||
11361: "l", | ||
42823: "l", | ||
42825: "l", | ||
42881: "l", | ||
65356: "l", | ||
455: "LJ", | ||
7930: "LL", | ||
456: "Lj", | ||
9383: "(l)", | ||
457: "lj", | ||
7931: "ll", | ||
682: "ls", | ||
683: "lz", | ||
412: "M", | ||
7437: "M", | ||
7742: "M", | ||
7744: "M", | ||
7746: "M", | ||
9410: "M", | ||
11374: "M", | ||
43005: "M", | ||
43007: "M", | ||
65325: "M", | ||
623: "m", | ||
624: "m", | ||
625: "m", | ||
7535: "m", | ||
7558: "m", | ||
7743: "m", | ||
7745: "m", | ||
7747: "m", | ||
9436: "m", | ||
65357: "m", | ||
9384: "(m)", | ||
209: "N", | ||
323: "N", | ||
325: "N", | ||
327: "N", | ||
330: "N", | ||
413: "N", | ||
504: "N", | ||
544: "N", | ||
628: "N", | ||
7438: "N", | ||
7748: "N", | ||
7750: "N", | ||
7752: "N", | ||
7754: "N", | ||
9411: "N", | ||
65326: "N", | ||
241: "n", | ||
324: "n", | ||
326: "n", | ||
328: "n", | ||
329: "n", | ||
331: "n", | ||
414: "n", | ||
505: "n", | ||
565: "n", | ||
626: "n", | ||
627: "n", | ||
7536: "n", | ||
7559: "n", | ||
7749: "n", | ||
7751: "n", | ||
7753: "n", | ||
7755: "n", | ||
8319: "n", | ||
9437: "n", | ||
65358: "n", | ||
458: "NJ", | ||
459: "Nj", | ||
9385: "(n)", | ||
460: "nj", | ||
210: "O", | ||
211: "O", | ||
212: "O", | ||
213: "O", | ||
214: "O", | ||
216: "O", | ||
332: "O", | ||
334: "O", | ||
336: "O", | ||
390: "O", | ||
415: "O", | ||
416: "O", | ||
465: "O", | ||
490: "O", | ||
492: "O", | ||
510: "O", | ||
524: "O", | ||
526: "O", | ||
554: "O", | ||
556: "O", | ||
558: "O", | ||
560: "O", | ||
7439: "O", | ||
7440: "O", | ||
7756: "O", | ||
7758: "O", | ||
7760: "O", | ||
7762: "O", | ||
7884: "O", | ||
7886: "O", | ||
7888: "O", | ||
7890: "O", | ||
7892: "O", | ||
7894: "O", | ||
7896: "O", | ||
7898: "O", | ||
7900: "O", | ||
7902: "O", | ||
7904: "O", | ||
7906: "O", | ||
9412: "O", | ||
42826: "O", | ||
42828: "O", | ||
65327: "O", | ||
242: "o", | ||
243: "o", | ||
244: "o", | ||
245: "o", | ||
246: "o", | ||
248: "o", | ||
333: "o", | ||
335: "o", | ||
337: "o", | ||
417: "o", | ||
466: "o", | ||
491: "o", | ||
493: "o", | ||
511: "o", | ||
525: "o", | ||
527: "o", | ||
555: "o", | ||
557: "o", | ||
559: "o", | ||
561: "o", | ||
596: "o", | ||
629: "o", | ||
7446: "o", | ||
7447: "o", | ||
7575: "o", | ||
7757: "o", | ||
7759: "o", | ||
7761: "o", | ||
7763: "o", | ||
7885: "o", | ||
7887: "o", | ||
7889: "o", | ||
7891: "o", | ||
7893: "o", | ||
7895: "o", | ||
7897: "o", | ||
7899: "o", | ||
7901: "o", | ||
7903: "o", | ||
7905: "o", | ||
7907: "o", | ||
8338: "o", | ||
9438: "o", | ||
11386: "o", | ||
42827: "o", | ||
42829: "o", | ||
65359: "o", | ||
338: "OE", | ||
630: "OE", | ||
42830: "OO", | ||
546: "OU", | ||
7445: "OU", | ||
9386: "(o)", | ||
339: "oe", | ||
7444: "oe", | ||
42831: "oo", | ||
547: "ou", | ||
420: "P", | ||
7448: "P", | ||
7764: "P", | ||
7766: "P", | ||
9413: "P", | ||
11363: "P", | ||
42832: "P", | ||
42834: "P", | ||
42836: "P", | ||
65328: "P", | ||
421: "p", | ||
7537: "p", | ||
7549: "p", | ||
7560: "p", | ||
7765: "p", | ||
7767: "p", | ||
9439: "p", | ||
42833: "p", | ||
42835: "p", | ||
42837: "p", | ||
43004: "p", | ||
65360: "p", | ||
9387: "(p)", | ||
586: "Q", | ||
9414: "Q", | ||
42838: "Q", | ||
42840: "Q", | ||
65329: "Q", | ||
312: "q", | ||
587: "q", | ||
672: "q", | ||
9440: "q", | ||
42839: "q", | ||
42841: "q", | ||
65361: "q", | ||
9388: "(q)", | ||
569: "qp", | ||
340: "R", | ||
342: "R", | ||
344: "R", | ||
528: "R", | ||
530: "R", | ||
588: "R", | ||
640: "R", | ||
641: "R", | ||
7449: "R", | ||
7450: "R", | ||
7768: "R", | ||
7770: "R", | ||
7772: "R", | ||
7774: "R", | ||
9415: "R", | ||
11364: "R", | ||
42842: "R", | ||
42882: "R", | ||
65330: "R", | ||
341: "r", | ||
343: "r", | ||
345: "r", | ||
529: "r", | ||
531: "r", | ||
589: "r", | ||
636: "r", | ||
637: "r", | ||
638: "r", | ||
639: "r", | ||
7523: "r", | ||
7538: "r", | ||
7539: "r", | ||
7561: "r", | ||
7769: "r", | ||
7771: "r", | ||
7773: "r", | ||
7775: "r", | ||
9441: "r", | ||
42843: "r", | ||
42883: "r", | ||
65362: "r", | ||
9389: "(r)", | ||
346: "S", | ||
348: "S", | ||
350: "S", | ||
352: "S", | ||
536: "S", | ||
7776: "S", | ||
7778: "S", | ||
7780: "S", | ||
7782: "S", | ||
7784: "S", | ||
9416: "S", | ||
42801: "S", | ||
42885: "S", | ||
65331: "S", | ||
347: "s", | ||
349: "s", | ||
351: "s", | ||
353: "s", | ||
383: "s", | ||
537: "s", | ||
575: "s", | ||
642: "s", | ||
7540: "s", | ||
7562: "s", | ||
7777: "s", | ||
7779: "s", | ||
7781: "s", | ||
7783: "s", | ||
7785: "s", | ||
7836: "s", | ||
7837: "s", | ||
9442: "s", | ||
42884: "s", | ||
65363: "s", | ||
7838: "SS", | ||
9390: "(s)", | ||
223: "ss", | ||
64262: "st", | ||
354: "T", | ||
356: "T", | ||
358: "T", | ||
428: "T", | ||
430: "T", | ||
538: "T", | ||
574: "T", | ||
7451: "T", | ||
7786: "T", | ||
7788: "T", | ||
7790: "T", | ||
7792: "T", | ||
9417: "T", | ||
42886: "T", | ||
65332: "T", | ||
355: "t", | ||
357: "t", | ||
359: "t", | ||
427: "t", | ||
429: "t", | ||
539: "t", | ||
566: "t", | ||
647: "t", | ||
648: "t", | ||
7541: "t", | ||
7787: "t", | ||
7789: "t", | ||
7791: "t", | ||
7793: "t", | ||
7831: "t", | ||
9443: "t", | ||
11366: "t", | ||
65364: "t", | ||
222: "TH", | ||
42854: "TH", | ||
42792: "TZ", | ||
9391: "(t)", | ||
680: "tc", | ||
254: "th", | ||
7546: "th", | ||
42855: "th", | ||
678: "ts", | ||
42793: "tz", | ||
217: "U", | ||
218: "U", | ||
219: "U", | ||
220: "U", | ||
360: "U", | ||
362: "U", | ||
364: "U", | ||
366: "U", | ||
368: "U", | ||
370: "U", | ||
431: "U", | ||
467: "U", | ||
469: "U", | ||
471: "U", | ||
473: "U", | ||
475: "U", | ||
532: "U", | ||
534: "U", | ||
580: "U", | ||
7452: "U", | ||
7550: "U", | ||
7794: "U", | ||
7796: "U", | ||
7798: "U", | ||
7800: "U", | ||
7802: "U", | ||
7908: "U", | ||
7910: "U", | ||
7912: "U", | ||
7914: "U", | ||
7916: "U", | ||
7918: "U", | ||
7920: "U", | ||
9418: "U", | ||
65333: "U", | ||
249: "u", | ||
250: "u", | ||
251: "u", | ||
252: "u", | ||
361: "u", | ||
363: "u", | ||
365: "u", | ||
367: "u", | ||
369: "u", | ||
371: "u", | ||
432: "u", | ||
468: "u", | ||
470: "u", | ||
472: "u", | ||
474: "u", | ||
476: "u", | ||
533: "u", | ||
535: "u", | ||
649: "u", | ||
7524: "u", | ||
7577: "u", | ||
7795: "u", | ||
7797: "u", | ||
7799: "u", | ||
7801: "u", | ||
7803: "u", | ||
7909: "u", | ||
7911: "u", | ||
7913: "u", | ||
7915: "u", | ||
7917: "u", | ||
7919: "u", | ||
7921: "u", | ||
9444: "u", | ||
65365: "u", | ||
9392: "(u)", | ||
7531: "ue", | ||
434: "V", | ||
581: "V", | ||
7456: "V", | ||
7804: "V", | ||
7806: "V", | ||
7932: "V", | ||
9419: "V", | ||
42846: "V", | ||
42856: "V", | ||
65334: "V", | ||
651: "v", | ||
652: "v", | ||
7525: "v", | ||
7564: "v", | ||
7805: "v", | ||
7807: "v", | ||
9445: "v", | ||
11377: "v", | ||
11380: "v", | ||
42847: "v", | ||
65366: "v", | ||
42848: "VY", | ||
9393: "(v)", | ||
42849: "vy", | ||
372: "W", | ||
503: "W", | ||
7457: "W", | ||
7808: "W", | ||
7810: "W", | ||
7812: "W", | ||
7814: "W", | ||
7816: "W", | ||
9420: "W", | ||
11378: "W", | ||
65335: "W", | ||
373: "w", | ||
447: "w", | ||
653: "w", | ||
7809: "w", | ||
7811: "w", | ||
7813: "w", | ||
7815: "w", | ||
7817: "w", | ||
7832: "w", | ||
9446: "w", | ||
11379: "w", | ||
65367: "w", | ||
9394: "(w)", | ||
7818: "X", | ||
7820: "X", | ||
9421: "X", | ||
65336: "X", | ||
7565: "x", | ||
7819: "x", | ||
7821: "x", | ||
8339: "x", | ||
9447: "x", | ||
65368: "x", | ||
9395: "(x)", | ||
221: "Y", | ||
374: "Y", | ||
376: "Y", | ||
435: "Y", | ||
562: "Y", | ||
590: "Y", | ||
655: "Y", | ||
7822: "Y", | ||
7922: "Y", | ||
7924: "Y", | ||
7926: "Y", | ||
7928: "Y", | ||
7934: "Y", | ||
9422: "Y", | ||
65337: "Y", | ||
253: "y", | ||
255: "y", | ||
375: "y", | ||
436: "y", | ||
563: "y", | ||
591: "y", | ||
654: "y", | ||
7823: "y", | ||
7833: "y", | ||
7923: "y", | ||
7925: "y", | ||
7927: "y", | ||
7929: "y", | ||
7935: "y", | ||
9448: "y", | ||
65369: "y", | ||
9396: "(y)", | ||
377: "Z", | ||
379: "Z", | ||
381: "Z", | ||
437: "Z", | ||
540: "Z", | ||
548: "Z", | ||
7458: "Z", | ||
7824: "Z", | ||
7826: "Z", | ||
7828: "Z", | ||
9423: "Z", | ||
11371: "Z", | ||
42850: "Z", | ||
65338: "Z", | ||
378: "z", | ||
380: "z", | ||
382: "z", | ||
438: "z", | ||
541: "z", | ||
549: "z", | ||
576: "z", | ||
656: "z", | ||
657: "z", | ||
7542: "z", | ||
7566: "z", | ||
7825: "z", | ||
7827: "z", | ||
7829: "z", | ||
9449: "z", | ||
11372: "z", | ||
42851: "z", | ||
65370: "z", | ||
9397: "(z)", | ||
8304: "0", | ||
8320: "0", | ||
9450: "0", | ||
9471: "0", | ||
65296: "0", | ||
185: "1", | ||
8321: "1", | ||
9312: "1", | ||
9461: "1", | ||
10102: "1", | ||
10112: "1", | ||
10122: "1", | ||
65297: "1", | ||
9352: "1.", | ||
9332: "(1)", | ||
178: "2", | ||
8322: "2", | ||
9313: "2", | ||
9462: "2", | ||
10103: "2", | ||
10113: "2", | ||
10123: "2", | ||
65298: "2", | ||
9353: "2.", | ||
9333: "(2)", | ||
179: "3", | ||
8323: "3", | ||
9314: "3", | ||
9463: "3", | ||
10104: "3", | ||
10114: "3", | ||
10124: "3", | ||
65299: "3", | ||
9354: "3.", | ||
9334: "(3)", | ||
8308: "4", | ||
8324: "4", | ||
9315: "4", | ||
9464: "4", | ||
10105: "4", | ||
10115: "4", | ||
10125: "4", | ||
65300: "4", | ||
9355: "4.", | ||
9335: "(4)", | ||
8309: "5", | ||
8325: "5", | ||
9316: "5", | ||
9465: "5", | ||
10106: "5", | ||
10116: "5", | ||
10126: "5", | ||
65301: "5", | ||
9356: "5.", | ||
9336: "(5)", | ||
8310: "6", | ||
8326: "6", | ||
9317: "6", | ||
9466: "6", | ||
10107: "6", | ||
10117: "6", | ||
10127: "6", | ||
65302: "6", | ||
9357: "6.", | ||
9337: "(6)", | ||
8311: "7", | ||
8327: "7", | ||
9318: "7", | ||
9467: "7", | ||
10108: "7", | ||
10118: "7", | ||
10128: "7", | ||
65303: "7", | ||
9358: "7.", | ||
9338: "(7)", | ||
8312: "8", | ||
8328: "8", | ||
9319: "8", | ||
9468: "8", | ||
10109: "8", | ||
10119: "8", | ||
10129: "8", | ||
65304: "8", | ||
9359: "8.", | ||
9339: "(8)", | ||
8313: "9", | ||
8329: "9", | ||
9320: "9", | ||
9469: "9", | ||
10110: "9", | ||
10120: "9", | ||
10130: "9", | ||
65305: "9", | ||
9360: "9.", | ||
9340: "(9)", | ||
9321: "10", | ||
9470: "10", | ||
10111: "10", | ||
10121: "10", | ||
10131: "10", | ||
9361: "10.", | ||
9341: "(10)", | ||
9322: "11", | ||
9451: "11", | ||
9362: "11.", | ||
9342: "(11)", | ||
9323: "12", | ||
9452: "12", | ||
9363: "12.", | ||
9343: "(12)", | ||
9324: "13", | ||
9453: "13", | ||
9364: "13.", | ||
9344: "(13)", | ||
9325: "14", | ||
9454: "14", | ||
9365: "14.", | ||
9345: "(14)", | ||
9326: "15", | ||
9455: "15", | ||
9366: "15.", | ||
9346: "(15)", | ||
9327: "16", | ||
9456: "16", | ||
9367: "16.", | ||
9347: "(16)", | ||
9328: "17", | ||
9457: "17", | ||
9368: "17.", | ||
9348: "(17)", | ||
9329: "18", | ||
9458: "18", | ||
9369: "18.", | ||
9349: "(18)", | ||
9330: "19", | ||
9459: "19", | ||
9370: "19.", | ||
9350: "(19)", | ||
9331: "20", | ||
9460: "20", | ||
9371: "20.", | ||
9351: "(20)", | ||
171: '"', | ||
187: '"', | ||
8220: '"', | ||
8221: '"', | ||
8222: '"', | ||
8243: '"', | ||
8246: '"', | ||
10077: '"', | ||
10078: '"', | ||
10094: '"', | ||
10095: '"', | ||
65282: '"', | ||
8216: "'", | ||
8217: "'", | ||
8218: "'", | ||
8219: "'", | ||
8242: "'", | ||
8245: "'", | ||
8249: "'", | ||
8250: "'", | ||
10075: "'", | ||
10076: "'", | ||
65287: "'", | ||
8208: "-", | ||
8209: "-", | ||
8210: "-", | ||
8211: "-", | ||
8212: "-", | ||
8315: "-", | ||
8331: "-", | ||
65293: "-", | ||
8261: "[", | ||
10098: "[", | ||
65339: "[", | ||
8262: "]", | ||
10099: "]", | ||
65341: "]", | ||
8317: "(", | ||
8333: "(", | ||
10088: "(", | ||
10090: "(", | ||
65288: "(", | ||
11816: "((", | ||
8318: ")", | ||
8334: ")", | ||
10089: ")", | ||
10091: ")", | ||
65289: ")", | ||
11817: "))", | ||
10092: "<", | ||
10096: "<", | ||
65308: "<", | ||
10093: ">", | ||
10097: ">", | ||
65310: ">", | ||
10100: "{", | ||
65371: "{", | ||
10101: "}", | ||
65373: "}", | ||
8314: "+", | ||
8330: "+", | ||
65291: "+", | ||
8316: "=", | ||
8332: "=", | ||
65309: "=", | ||
65281: "!", | ||
8252: "!!", | ||
8265: "!?", | ||
65283: "#", | ||
65284: "$", | ||
8274: "%", | ||
65285: "%", | ||
65286: "&", | ||
8270: "*", | ||
65290: "*", | ||
65292: ",", | ||
65294: ".", | ||
8260: "/", | ||
65295: "/", | ||
65306: ":", | ||
8271: ";", | ||
65307: ";", | ||
65311: "?", | ||
8263: "??", | ||
8264: "?!", | ||
65312: "@", | ||
65340: "\\", | ||
8248: "^", | ||
65342: "^", | ||
65343: "_", | ||
8275: "~", | ||
65374: "~" | ||
}; | ||
function fold(inStr) { | ||
return inStr.split("").map((character) => { | ||
if (character.charCodeAt(0) < 128) { | ||
return character; | ||
} else { | ||
const replacement = MAPPING[character.charCodeAt(0)]; | ||
return replacement === void 0 ? "-" : replacement; | ||
} | ||
}).join(""); | ||
} | ||
// src/string/unStem.ts | ||
@@ -30,0 +1287,0 @@ function unStemEnglish(word) { |
@@ -1,1 +0,1 @@ | ||
window.searchData = {"kinds":{"32":"Variable","64":"Function"},"rows":[{"id":0,"kind":64,"name":"findIndex","url":"modules.html#findIndex","classes":"tsd-kind-function"},{"id":1,"kind":64,"name":"flatten","url":"modules.html#flatten","classes":"tsd-kind-function"},{"id":2,"kind":64,"name":"forceArray","url":"modules.html#forceArray","classes":"tsd-kind-function"},{"id":3,"kind":64,"name":"sortKeys","url":"modules.html#sortKeys","classes":"tsd-kind-function"},{"id":4,"kind":64,"name":"sortKeysRec","url":"modules.html#sortKeysRec","classes":"tsd-kind-function"},{"id":5,"kind":32,"name":"AGGREGATION_COUNT","url":"modules.html#AGGREGATION_COUNT","classes":"tsd-kind-variable"},{"id":6,"kind":32,"name":"AGGREGATION_DATE_HISTOGRAM","url":"modules.html#AGGREGATION_DATE_HISTOGRAM","classes":"tsd-kind-variable"},{"id":7,"kind":32,"name":"AGGREGATION_DATE_RANGE","url":"modules.html#AGGREGATION_DATE_RANGE","classes":"tsd-kind-variable"},{"id":8,"kind":32,"name":"AGGREGATION_GEO_DISTANCE","url":"modules.html#AGGREGATION_GEO_DISTANCE","classes":"tsd-kind-variable"},{"id":9,"kind":32,"name":"AGGREGATION_MAX","url":"modules.html#AGGREGATION_MAX","classes":"tsd-kind-variable"},{"id":10,"kind":32,"name":"AGGREGATION_MIN","url":"modules.html#AGGREGATION_MIN","classes":"tsd-kind-variable"},{"id":11,"kind":32,"name":"AGGREGATION_RANGE","url":"modules.html#AGGREGATION_RANGE","classes":"tsd-kind-variable"},{"id":12,"kind":32,"name":"AGGREGATION_STATS","url":"modules.html#AGGREGATION_STATS","classes":"tsd-kind-variable"},{"id":13,"kind":32,"name":"AGGREGATION_TERMS","url":"modules.html#AGGREGATION_TERMS","classes":"tsd-kind-variable"},{"id":14,"kind":32,"name":"FILTER_CLAUSE_MUST","url":"modules.html#FILTER_CLAUSE_MUST","classes":"tsd-kind-variable"},{"id":15,"kind":32,"name":"FILTER_CLAUSE_MUST_NOT","url":"modules.html#FILTER_CLAUSE_MUST_NOT","classes":"tsd-kind-variable"},{"id":16,"kind":32,"name":"FILTER_CLAUSE_SHOULD","url":"modules.html#FILTER_CLAUSE_SHOULD","classes":"tsd-kind-variable"},{"id":17,"kind":32,"name":"FILTER_CLAUSES","url":"modules.html#FILTER_CLAUSES","classes":"tsd-kind-variable"},{"id":18,"kind":32,"name":"INDEX_CONFIG_ENABLED","url":"modules.html#INDEX_CONFIG_ENABLED","classes":"tsd-kind-variable"},{"id":19,"kind":32,"name":"INDEX_CONFIG_ENABLED_DEFAULT","url":"modules.html#INDEX_CONFIG_ENABLED_DEFAULT","classes":"tsd-kind-variable"},{"id":20,"kind":32,"name":"INDEX_CONFIG_DECIDE_BY_TYPE","url":"modules.html#INDEX_CONFIG_DECIDE_BY_TYPE","classes":"tsd-kind-variable"},{"id":21,"kind":32,"name":"INDEX_CONFIG_DECIDE_BY_TYPE_DEFAULT","url":"modules.html#INDEX_CONFIG_DECIDE_BY_TYPE_DEFAULT","classes":"tsd-kind-variable"},{"id":22,"kind":32,"name":"INDEX_CONFIG_FULLTEXT","url":"modules.html#INDEX_CONFIG_FULLTEXT","classes":"tsd-kind-variable"},{"id":23,"kind":32,"name":"INDEX_CONFIG_FULLTEXT_DEFAULT","url":"modules.html#INDEX_CONFIG_FULLTEXT_DEFAULT","classes":"tsd-kind-variable"},{"id":24,"kind":32,"name":"INDEX_CONFIG_INCLUDE_IN_ALL_TEXT","url":"modules.html#INDEX_CONFIG_INCLUDE_IN_ALL_TEXT","classes":"tsd-kind-variable"},{"id":25,"kind":32,"name":"INDEX_CONFIG_INCLUDE_IN_ALL_TEXT_DEFAULT","url":"modules.html#INDEX_CONFIG_INCLUDE_IN_ALL_TEXT_DEFAULT","classes":"tsd-kind-variable"},{"id":26,"kind":32,"name":"INDEX_CONFIG_N_GRAM","url":"modules.html#INDEX_CONFIG_N_GRAM","classes":"tsd-kind-variable"},{"id":27,"kind":32,"name":"INDEX_CONFIG_N_GRAM_DEFAULT","url":"modules.html#INDEX_CONFIG_N_GRAM_DEFAULT","classes":"tsd-kind-variable"},{"id":28,"kind":32,"name":"INDEX_CONFIG_PATH","url":"modules.html#INDEX_CONFIG_PATH","classes":"tsd-kind-variable"},{"id":29,"kind":32,"name":"INDEX_CONFIG_PATH_DEFAULT","url":"modules.html#INDEX_CONFIG_PATH_DEFAULT","classes":"tsd-kind-variable"},{"id":30,"kind":32,"name":"INDEX_CONFIG_TEMPLATE_NONE","url":"modules.html#INDEX_CONFIG_TEMPLATE_NONE","classes":"tsd-kind-variable"},{"id":31,"kind":32,"name":"INDEX_CONFIG_TEMPLATE_BY_TYPE","url":"modules.html#INDEX_CONFIG_TEMPLATE_BY_TYPE","classes":"tsd-kind-variable"},{"id":32,"kind":32,"name":"INDEX_CONFIG_TEMPLATE_FULLTEXT","url":"modules.html#INDEX_CONFIG_TEMPLATE_FULLTEXT","classes":"tsd-kind-variable"},{"id":33,"kind":32,"name":"INDEX_CONFIG_TEMPLATE_PATH","url":"modules.html#INDEX_CONFIG_TEMPLATE_PATH","classes":"tsd-kind-variable"},{"id":34,"kind":32,"name":"INDEX_CONFIG_TEMPLATE_MINIMAL","url":"modules.html#INDEX_CONFIG_TEMPLATE_MINIMAL","classes":"tsd-kind-variable"},{"id":35,"kind":32,"name":"INDEX_CONFIG_TEMPLATES","url":"modules.html#INDEX_CONFIG_TEMPLATES","classes":"tsd-kind-variable"},{"id":36,"kind":32,"name":"QUERY_FUNCTION_FULLTEXT","url":"modules.html#QUERY_FUNCTION_FULLTEXT","classes":"tsd-kind-variable"},{"id":37,"kind":32,"name":"QUERY_FUNCTION_NGRAM","url":"modules.html#QUERY_FUNCTION_NGRAM","classes":"tsd-kind-variable"},{"id":38,"kind":32,"name":"QUERY_FUNCTION_PATH_MATCH","url":"modules.html#QUERY_FUNCTION_PATH_MATCH","classes":"tsd-kind-variable"},{"id":39,"kind":32,"name":"QUERY_FUNCTION_RANGE","url":"modules.html#QUERY_FUNCTION_RANGE","classes":"tsd-kind-variable"},{"id":40,"kind":32,"name":"QUERY_FUNCTION_STEMMED","url":"modules.html#QUERY_FUNCTION_STEMMED","classes":"tsd-kind-variable"},{"id":41,"kind":32,"name":"QUERY_OPERATOR_AND","url":"modules.html#QUERY_OPERATOR_AND","classes":"tsd-kind-variable"},{"id":42,"kind":32,"name":"QUERY_OPERATOR_OR","url":"modules.html#QUERY_OPERATOR_OR","classes":"tsd-kind-variable"},{"id":43,"kind":32,"name":"SORT_CREATED","url":"modules.html#SORT_CREATED","classes":"tsd-kind-variable"},{"id":44,"kind":32,"name":"SORT_DISPLAYNAME","url":"modules.html#SORT_DISPLAYNAME","classes":"tsd-kind-variable"},{"id":45,"kind":32,"name":"SORT_MANUAL","url":"modules.html#SORT_MANUAL","classes":"tsd-kind-variable"},{"id":46,"kind":32,"name":"SORT_MODIFIED","url":"modules.html#SORT_MODIFIED","classes":"tsd-kind-variable"},{"id":47,"kind":32,"name":"STEMMING_LANGUAGE_CODE_ARABIC","url":"modules.html#STEMMING_LANGUAGE_CODE_ARABIC","classes":"tsd-kind-variable"},{"id":48,"kind":32,"name":"STEMMING_LANGUAGE_CODE_BULGARIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_BULGARIAN","classes":"tsd-kind-variable"},{"id":49,"kind":32,"name":"STEMMING_LANGUAGE_CODE_BENGALI","url":"modules.html#STEMMING_LANGUAGE_CODE_BENGALI","classes":"tsd-kind-variable"},{"id":50,"kind":32,"name":"STEMMING_LANGUAGE_CODE_CATALAN","url":"modules.html#STEMMING_LANGUAGE_CODE_CATALAN","classes":"tsd-kind-variable"},{"id":51,"kind":32,"name":"STEMMING_LANGUAGE_CODE_CZECH","url":"modules.html#STEMMING_LANGUAGE_CODE_CZECH","classes":"tsd-kind-variable"},{"id":52,"kind":32,"name":"STEMMING_LANGUAGE_CODE_DANISH","url":"modules.html#STEMMING_LANGUAGE_CODE_DANISH","classes":"tsd-kind-variable"},{"id":53,"kind":32,"name":"STEMMING_LANGUAGE_CODE_GERMAN","url":"modules.html#STEMMING_LANGUAGE_CODE_GERMAN","classes":"tsd-kind-variable"},{"id":54,"kind":32,"name":"STEMMING_LANGUAGE_CODE_GREEK","url":"modules.html#STEMMING_LANGUAGE_CODE_GREEK","classes":"tsd-kind-variable"},{"id":55,"kind":32,"name":"STEMMING_LANGUAGE_CODE_ENGLISH","url":"modules.html#STEMMING_LANGUAGE_CODE_ENGLISH","classes":"tsd-kind-variable"},{"id":56,"kind":32,"name":"STEMMING_LANGUAGE_CODE_BASQUE","url":"modules.html#STEMMING_LANGUAGE_CODE_BASQUE","classes":"tsd-kind-variable"},{"id":57,"kind":32,"name":"STEMMING_LANGUAGE_CODE_PERSIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_PERSIAN","classes":"tsd-kind-variable"},{"id":58,"kind":32,"name":"STEMMING_LANGUAGE_CODE_FINNISH","url":"modules.html#STEMMING_LANGUAGE_CODE_FINNISH","classes":"tsd-kind-variable"},{"id":59,"kind":32,"name":"STEMMING_LANGUAGE_CODE_FRENCH","url":"modules.html#STEMMING_LANGUAGE_CODE_FRENCH","classes":"tsd-kind-variable"},{"id":60,"kind":32,"name":"STEMMING_LANGUAGE_CODE_IRISH","url":"modules.html#STEMMING_LANGUAGE_CODE_IRISH","classes":"tsd-kind-variable"},{"id":61,"kind":32,"name":"STEMMING_LANGUAGE_CODE_GALICIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_GALICIAN","classes":"tsd-kind-variable"},{"id":62,"kind":32,"name":"STEMMING_LANGUAGE_CODE_HINDI","url":"modules.html#STEMMING_LANGUAGE_CODE_HINDI","classes":"tsd-kind-variable"},{"id":63,"kind":32,"name":"STEMMING_LANGUAGE_CODE_HUNGARIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_HUNGARIAN","classes":"tsd-kind-variable"},{"id":64,"kind":32,"name":"STEMMING_LANGUAGE_CODE_ARMENIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_ARMENIAN","classes":"tsd-kind-variable"},{"id":65,"kind":32,"name":"STEMMING_LANGUAGE_CODE_INDONESIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_INDONESIAN","classes":"tsd-kind-variable"},{"id":66,"kind":32,"name":"STEMMING_LANGUAGE_CODE_ITALIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_ITALIAN","classes":"tsd-kind-variable"},{"id":67,"kind":32,"name":"STEMMING_LANGUAGE_CODE_JAPANESE","url":"modules.html#STEMMING_LANGUAGE_CODE_JAPANESE","classes":"tsd-kind-variable"},{"id":68,"kind":32,"name":"STEMMING_LANGUAGE_CODE_KOREAN","url":"modules.html#STEMMING_LANGUAGE_CODE_KOREAN","classes":"tsd-kind-variable"},{"id":69,"kind":32,"name":"STEMMING_LANGUAGE_CODE_SORANI","url":"modules.html#STEMMING_LANGUAGE_CODE_SORANI","classes":"tsd-kind-variable"},{"id":70,"kind":32,"name":"STEMMING_LANGUAGE_CODE_LITHUANIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_LITHUANIAN","classes":"tsd-kind-variable"},{"id":71,"kind":32,"name":"STEMMING_LANGUAGE_CODE_LATVIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_LATVIAN","classes":"tsd-kind-variable"},{"id":72,"kind":32,"name":"STEMMING_LANGUAGE_CODE_DUTCH","url":"modules.html#STEMMING_LANGUAGE_CODE_DUTCH","classes":"tsd-kind-variable"},{"id":73,"kind":32,"name":"STEMMING_LANGUAGE_CODE_NORWEGIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_NORWEGIAN","classes":"tsd-kind-variable"},{"id":74,"kind":32,"name":"STEMMING_LANGUAGE_CODE_PORTUGUESE","url":"modules.html#STEMMING_LANGUAGE_CODE_PORTUGUESE","classes":"tsd-kind-variable"},{"id":75,"kind":32,"name":"STEMMING_LANGUAGE_CODE_BRAZILIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_BRAZILIAN","classes":"tsd-kind-variable"},{"id":76,"kind":32,"name":"STEMMING_LANGUAGE_CODE_ROMANIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_ROMANIAN","classes":"tsd-kind-variable"},{"id":77,"kind":32,"name":"STEMMING_LANGUAGE_CODE_RUSSIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_RUSSIAN","classes":"tsd-kind-variable"},{"id":78,"kind":32,"name":"STEMMING_LANGUAGE_CODE_SPANISH","url":"modules.html#STEMMING_LANGUAGE_CODE_SPANISH","classes":"tsd-kind-variable"},{"id":79,"kind":32,"name":"STEMMING_LANGUAGE_CODE_SWEDISH","url":"modules.html#STEMMING_LANGUAGE_CODE_SWEDISH","classes":"tsd-kind-variable"},{"id":80,"kind":32,"name":"STEMMING_LANGUAGE_CODE_TURKISH","url":"modules.html#STEMMING_LANGUAGE_CODE_TURKISH","classes":"tsd-kind-variable"},{"id":81,"kind":32,"name":"STEMMING_LANGUAGE_CODE_THAI","url":"modules.html#STEMMING_LANGUAGE_CODE_THAI","classes":"tsd-kind-variable"},{"id":82,"kind":32,"name":"STEMMING_LANGUAGE_CODE_CHINESE","url":"modules.html#STEMMING_LANGUAGE_CODE_CHINESE","classes":"tsd-kind-variable"},{"id":83,"kind":32,"name":"STEMMING_LANGUAGE_CODES","url":"modules.html#STEMMING_LANGUAGE_CODES","classes":"tsd-kind-variable"},{"id":84,"kind":32,"name":"STEMMING_LANGUAGES","url":"modules.html#STEMMING_LANGUAGES","classes":"tsd-kind-variable"},{"id":85,"kind":32,"name":"VALUE_TYPE_ANY","url":"modules.html#VALUE_TYPE_ANY","classes":"tsd-kind-variable"},{"id":86,"kind":32,"name":"VALUE_TYPE_BOOLEAN","url":"modules.html#VALUE_TYPE_BOOLEAN","classes":"tsd-kind-variable"},{"id":87,"kind":32,"name":"VALUE_TYPE_DOUBLE","url":"modules.html#VALUE_TYPE_DOUBLE","classes":"tsd-kind-variable"},{"id":88,"kind":32,"name":"VALUE_TYPE_GEO_POINT","url":"modules.html#VALUE_TYPE_GEO_POINT","classes":"tsd-kind-variable"},{"id":89,"kind":32,"name":"VALUE_TYPE_INSTANT","url":"modules.html#VALUE_TYPE_INSTANT","classes":"tsd-kind-variable"},{"id":90,"kind":32,"name":"VALUE_TYPE_LOCAL_DATE","url":"modules.html#VALUE_TYPE_LOCAL_DATE","classes":"tsd-kind-variable"},{"id":91,"kind":32,"name":"VALUE_TYPE_LOCAL_DATE_TIME","url":"modules.html#VALUE_TYPE_LOCAL_DATE_TIME","classes":"tsd-kind-variable"},{"id":92,"kind":32,"name":"VALUE_TYPE_LOCAL_TIME","url":"modules.html#VALUE_TYPE_LOCAL_TIME","classes":"tsd-kind-variable"},{"id":93,"kind":32,"name":"VALUE_TYPE_LONG","url":"modules.html#VALUE_TYPE_LONG","classes":"tsd-kind-variable"},{"id":94,"kind":32,"name":"VALUE_TYPE_REFERENCE","url":"modules.html#VALUE_TYPE_REFERENCE","classes":"tsd-kind-variable"},{"id":95,"kind":32,"name":"VALUE_TYPE_SET","url":"modules.html#VALUE_TYPE_SET","classes":"tsd-kind-variable"},{"id":96,"kind":32,"name":"VALUE_TYPE_STRING","url":"modules.html#VALUE_TYPE_STRING","classes":"tsd-kind-variable"},{"id":97,"kind":64,"name":"and","url":"modules.html#and","classes":"tsd-kind-function"},{"id":98,"kind":64,"name":"addQueryFilter","url":"modules.html#addQueryFilter","classes":"tsd-kind-function"},{"id":99,"kind":64,"name":"dirname","url":"modules.html#dirname","classes":"tsd-kind-function"},{"id":100,"kind":64,"name":"enonify","url":"modules.html#enonify","classes":"tsd-kind-function"},{"id":101,"kind":64,"name":"fulltext","url":"modules.html#fulltext","classes":"tsd-kind-function"},{"id":102,"kind":64,"name":"group","url":"modules.html#group","classes":"tsd-kind-function"},{"id":103,"kind":64,"name":"indexTemplateToConfig","url":"modules.html#indexTemplateToConfig","classes":"tsd-kind-function"},{"id":104,"kind":64,"name":"join","url":"modules.html#join","classes":"tsd-kind-function"},{"id":105,"kind":64,"name":"ngram","url":"modules.html#ngram","classes":"tsd-kind-function"},{"id":106,"kind":64,"name":"or","url":"modules.html#or","classes":"tsd-kind-function"},{"id":107,"kind":64,"name":"stemmed","url":"modules.html#stemmed","classes":"tsd-kind-function"},{"id":108,"kind":64,"name":"uniqueId","url":"modules.html#uniqueId","classes":"tsd-kind-function"},{"id":109,"kind":64,"name":"updateIndexConfigs","url":"modules.html#updateIndexConfigs","classes":"tsd-kind-function"},{"id":110,"kind":64,"name":"camelize","url":"modules.html#camelize","classes":"tsd-kind-function"},{"id":111,"kind":64,"name":"lpad","url":"modules.html#lpad","classes":"tsd-kind-function"},{"id":112,"kind":64,"name":"rpad","url":"modules.html#rpad","classes":"tsd-kind-function"},{"id":113,"kind":64,"name":"ucFirst","url":"modules.html#ucFirst","classes":"tsd-kind-function"},{"id":114,"kind":64,"name":"unStem","url":"modules.html#unStem","classes":"tsd-kind-function"},{"id":115,"kind":32,"name":"TASK_STATE_FAILED","url":"modules.html#TASK_STATE_FAILED","classes":"tsd-kind-variable"},{"id":116,"kind":32,"name":"TASK_STATE_FINISHED","url":"modules.html#TASK_STATE_FINISHED","classes":"tsd-kind-variable"},{"id":117,"kind":32,"name":"TASK_STATE_RUNNING","url":"modules.html#TASK_STATE_RUNNING","classes":"tsd-kind-variable"},{"id":118,"kind":32,"name":"TASK_STATE_WAITING","url":"modules.html#TASK_STATE_WAITING","classes":"tsd-kind-variable"},{"id":119,"kind":64,"name":"isBoolean","url":"modules.html#isBoolean","classes":"tsd-kind-function"},{"id":120,"kind":64,"name":"isDate","url":"modules.html#isDate","classes":"tsd-kind-function"},{"id":121,"kind":64,"name":"isDateString","url":"modules.html#isDateString","classes":"tsd-kind-function"},{"id":122,"kind":64,"name":"isFalse","url":"modules.html#isFalse","classes":"tsd-kind-function"},{"id":123,"kind":64,"name":"isFunction","url":"modules.html#isFunction","classes":"tsd-kind-function"},{"id":124,"kind":64,"name":"isInfinity","url":"modules.html#isInfinity","classes":"tsd-kind-function"},{"id":125,"kind":64,"name":"isInt","url":"modules.html#isInt","classes":"tsd-kind-function"},{"id":126,"kind":64,"name":"isNotFalse","url":"modules.html#isNotFalse","classes":"tsd-kind-function"},{"id":127,"kind":64,"name":"isNotSet","url":"modules.html#isNotSet","classes":"tsd-kind-function"},{"id":128,"kind":64,"name":"isNotTrue","url":"modules.html#isNotTrue","classes":"tsd-kind-function"},{"id":129,"kind":64,"name":"isNull","url":"modules.html#isNull","classes":"tsd-kind-function"},{"id":130,"kind":64,"name":"isNumber","url":"modules.html#isNumber","classes":"tsd-kind-function"},{"id":131,"kind":64,"name":"isObject","url":"modules.html#isObject","classes":"tsd-kind-function"},{"id":132,"kind":64,"name":"isSet","url":"modules.html#isSet","classes":"tsd-kind-function"},{"id":133,"kind":64,"name":"isString","url":"modules.html#isString","classes":"tsd-kind-function"},{"id":134,"kind":64,"name":"isTrue","url":"modules.html#isTrue","classes":"tsd-kind-function"},{"id":135,"kind":64,"name":"isUndefined","url":"modules.html#isUndefined","classes":"tsd-kind-function"},{"id":136,"kind":64,"name":"toStr","url":"modules.html#toStr","classes":"tsd-kind-function"},{"id":137,"kind":32,"name":"COLON_SIGN","url":"modules.html#COLON_SIGN","classes":"tsd-kind-variable"},{"id":138,"kind":32,"name":"DOT_SIGN","url":"modules.html#DOT_SIGN","classes":"tsd-kind-variable"},{"id":139,"kind":32,"name":"ELLIPSIS","url":"modules.html#ELLIPSIS","classes":"tsd-kind-variable"},{"id":140,"kind":32,"name":"RESPONSE_TYPE_JSON","url":"modules.html#RESPONSE_TYPE_JSON","classes":"tsd-kind-variable"},{"id":141,"kind":32,"name":"RESPONSE_TYPE_HTML","url":"modules.html#RESPONSE_TYPE_HTML","classes":"tsd-kind-variable"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,45.574]],["parent/0",[]],["name/1",[1,45.574]],["parent/1",[]],["name/2",[2,45.574]],["parent/2",[]],["name/3",[3,45.574]],["parent/3",[]],["name/4",[4,45.574]],["parent/4",[]],["name/5",[5,45.574]],["parent/5",[]],["name/6",[6,45.574]],["parent/6",[]],["name/7",[7,45.574]],["parent/7",[]],["name/8",[8,45.574]],["parent/8",[]],["name/9",[9,45.574]],["parent/9",[]],["name/10",[10,45.574]],["parent/10",[]],["name/11",[11,45.574]],["parent/11",[]],["name/12",[12,45.574]],["parent/12",[]],["name/13",[13,45.574]],["parent/13",[]],["name/14",[14,45.574]],["parent/14",[]],["name/15",[15,45.574]],["parent/15",[]],["name/16",[16,45.574]],["parent/16",[]],["name/17",[17,45.574]],["parent/17",[]],["name/18",[18,45.574]],["parent/18",[]],["name/19",[19,45.574]],["parent/19",[]],["name/20",[20,45.574]],["parent/20",[]],["name/21",[21,45.574]],["parent/21",[]],["name/22",[22,45.574]],["parent/22",[]],["name/23",[23,45.574]],["parent/23",[]],["name/24",[24,45.574]],["parent/24",[]],["name/25",[25,45.574]],["parent/25",[]],["name/26",[26,45.574]],["parent/26",[]],["name/27",[27,45.574]],["parent/27",[]],["name/28",[28,45.574]],["parent/28",[]],["name/29",[29,45.574]],["parent/29",[]],["name/30",[30,45.574]],["parent/30",[]],["name/31",[31,45.574]],["parent/31",[]],["name/32",[32,45.574]],["parent/32",[]],["name/33",[33,45.574]],["parent/33",[]],["name/34",[34,45.574]],["parent/34",[]],["name/35",[35,45.574]],["parent/35",[]],["name/36",[36,45.574]],["parent/36",[]],["name/37",[37,45.574]],["parent/37",[]],["name/38",[38,45.574]],["parent/38",[]],["name/39",[39,45.574]],["parent/39",[]],["name/40",[40,45.574]],["parent/40",[]],["name/41",[41,45.574]],["parent/41",[]],["name/42",[42,45.574]],["parent/42",[]],["name/43",[43,45.574]],["parent/43",[]],["name/44",[44,45.574]],["parent/44",[]],["name/45",[45,45.574]],["parent/45",[]],["name/46",[46,45.574]],["parent/46",[]],["name/47",[47,45.574]],["parent/47",[]],["name/48",[48,45.574]],["parent/48",[]],["name/49",[49,45.574]],["parent/49",[]],["name/50",[50,45.574]],["parent/50",[]],["name/51",[51,45.574]],["parent/51",[]],["name/52",[52,45.574]],["parent/52",[]],["name/53",[53,45.574]],["parent/53",[]],["name/54",[54,45.574]],["parent/54",[]],["name/55",[55,45.574]],["parent/55",[]],["name/56",[56,45.574]],["parent/56",[]],["name/57",[57,45.574]],["parent/57",[]],["name/58",[58,45.574]],["parent/58",[]],["name/59",[59,45.574]],["parent/59",[]],["name/60",[60,45.574]],["parent/60",[]],["name/61",[61,45.574]],["parent/61",[]],["name/62",[62,45.574]],["parent/62",[]],["name/63",[63,45.574]],["parent/63",[]],["name/64",[64,45.574]],["parent/64",[]],["name/65",[65,45.574]],["parent/65",[]],["name/66",[66,45.574]],["parent/66",[]],["name/67",[67,45.574]],["parent/67",[]],["name/68",[68,45.574]],["parent/68",[]],["name/69",[69,45.574]],["parent/69",[]],["name/70",[70,45.574]],["parent/70",[]],["name/71",[71,45.574]],["parent/71",[]],["name/72",[72,45.574]],["parent/72",[]],["name/73",[73,45.574]],["parent/73",[]],["name/74",[74,45.574]],["parent/74",[]],["name/75",[75,45.574]],["parent/75",[]],["name/76",[76,45.574]],["parent/76",[]],["name/77",[77,45.574]],["parent/77",[]],["name/78",[78,45.574]],["parent/78",[]],["name/79",[79,45.574]],["parent/79",[]],["name/80",[80,45.574]],["parent/80",[]],["name/81",[81,45.574]],["parent/81",[]],["name/82",[82,45.574]],["parent/82",[]],["name/83",[83,45.574]],["parent/83",[]],["name/84",[84,45.574]],["parent/84",[]],["name/85",[85,45.574]],["parent/85",[]],["name/86",[86,45.574]],["parent/86",[]],["name/87",[87,45.574]],["parent/87",[]],["name/88",[88,45.574]],["parent/88",[]],["name/89",[89,45.574]],["parent/89",[]],["name/90",[90,45.574]],["parent/90",[]],["name/91",[91,45.574]],["parent/91",[]],["name/92",[92,45.574]],["parent/92",[]],["name/93",[93,45.574]],["parent/93",[]],["name/94",[94,45.574]],["parent/94",[]],["name/95",[95,45.574]],["parent/95",[]],["name/96",[96,45.574]],["parent/96",[]],["name/97",[97,45.574]],["parent/97",[]],["name/98",[98,45.574]],["parent/98",[]],["name/99",[99,45.574]],["parent/99",[]],["name/100",[100,45.574]],["parent/100",[]],["name/101",[101,45.574]],["parent/101",[]],["name/102",[102,45.574]],["parent/102",[]],["name/103",[103,45.574]],["parent/103",[]],["name/104",[104,45.574]],["parent/104",[]],["name/105",[105,45.574]],["parent/105",[]],["name/106",[106,45.574]],["parent/106",[]],["name/107",[107,45.574]],["parent/107",[]],["name/108",[108,45.574]],["parent/108",[]],["name/109",[109,45.574]],["parent/109",[]],["name/110",[110,45.574]],["parent/110",[]],["name/111",[111,45.574]],["parent/111",[]],["name/112",[112,45.574]],["parent/112",[]],["name/113",[113,45.574]],["parent/113",[]],["name/114",[114,45.574]],["parent/114",[]],["name/115",[115,45.574]],["parent/115",[]],["name/116",[116,45.574]],["parent/116",[]],["name/117",[117,45.574]],["parent/117",[]],["name/118",[118,45.574]],["parent/118",[]],["name/119",[119,45.574]],["parent/119",[]],["name/120",[120,45.574]],["parent/120",[]],["name/121",[121,45.574]],["parent/121",[]],["name/122",[122,45.574]],["parent/122",[]],["name/123",[123,45.574]],["parent/123",[]],["name/124",[124,45.574]],["parent/124",[]],["name/125",[125,45.574]],["parent/125",[]],["name/126",[126,45.574]],["parent/126",[]],["name/127",[127,45.574]],["parent/127",[]],["name/128",[128,45.574]],["parent/128",[]],["name/129",[129,45.574]],["parent/129",[]],["name/130",[130,45.574]],["parent/130",[]],["name/131",[131,45.574]],["parent/131",[]],["name/132",[132,45.574]],["parent/132",[]],["name/133",[133,45.574]],["parent/133",[]],["name/134",[134,45.574]],["parent/134",[]],["name/135",[135,45.574]],["parent/135",[]],["name/136",[136,45.574]],["parent/136",[]],["name/137",[137,45.574]],["parent/137",[]],["name/138",[138,45.574]],["parent/138",[]],["name/139",[139,45.574]],["parent/139",[]],["name/140",[140,45.574]],["parent/140",[]],["name/141",[141,45.574]],["parent/141",[]]],"invertedIndex":[["addqueryfilter",{"_index":98,"name":{"98":{}},"parent":{}}],["aggregation_count",{"_index":5,"name":{"5":{}},"parent":{}}],["aggregation_date_histogram",{"_index":6,"name":{"6":{}},"parent":{}}],["aggregation_date_range",{"_index":7,"name":{"7":{}},"parent":{}}],["aggregation_geo_distance",{"_index":8,"name":{"8":{}},"parent":{}}],["aggregation_max",{"_index":9,"name":{"9":{}},"parent":{}}],["aggregation_min",{"_index":10,"name":{"10":{}},"parent":{}}],["aggregation_range",{"_index":11,"name":{"11":{}},"parent":{}}],["aggregation_stats",{"_index":12,"name":{"12":{}},"parent":{}}],["aggregation_terms",{"_index":13,"name":{"13":{}},"parent":{}}],["and",{"_index":97,"name":{"97":{}},"parent":{}}],["camelize",{"_index":110,"name":{"110":{}},"parent":{}}],["colon_sign",{"_index":137,"name":{"137":{}},"parent":{}}],["dirname",{"_index":99,"name":{"99":{}},"parent":{}}],["dot_sign",{"_index":138,"name":{"138":{}},"parent":{}}],["ellipsis",{"_index":139,"name":{"139":{}},"parent":{}}],["enonify",{"_index":100,"name":{"100":{}},"parent":{}}],["filter_clause_must",{"_index":14,"name":{"14":{}},"parent":{}}],["filter_clause_must_not",{"_index":15,"name":{"15":{}},"parent":{}}],["filter_clause_should",{"_index":16,"name":{"16":{}},"parent":{}}],["filter_clauses",{"_index":17,"name":{"17":{}},"parent":{}}],["findindex",{"_index":0,"name":{"0":{}},"parent":{}}],["flatten",{"_index":1,"name":{"1":{}},"parent":{}}],["forcearray",{"_index":2,"name":{"2":{}},"parent":{}}],["fulltext",{"_index":101,"name":{"101":{}},"parent":{}}],["group",{"_index":102,"name":{"102":{}},"parent":{}}],["index_config_decide_by_type",{"_index":20,"name":{"20":{}},"parent":{}}],["index_config_decide_by_type_default",{"_index":21,"name":{"21":{}},"parent":{}}],["index_config_enabled",{"_index":18,"name":{"18":{}},"parent":{}}],["index_config_enabled_default",{"_index":19,"name":{"19":{}},"parent":{}}],["index_config_fulltext",{"_index":22,"name":{"22":{}},"parent":{}}],["index_config_fulltext_default",{"_index":23,"name":{"23":{}},"parent":{}}],["index_config_include_in_all_text",{"_index":24,"name":{"24":{}},"parent":{}}],["index_config_include_in_all_text_default",{"_index":25,"name":{"25":{}},"parent":{}}],["index_config_n_gram",{"_index":26,"name":{"26":{}},"parent":{}}],["index_config_n_gram_default",{"_index":27,"name":{"27":{}},"parent":{}}],["index_config_path",{"_index":28,"name":{"28":{}},"parent":{}}],["index_config_path_default",{"_index":29,"name":{"29":{}},"parent":{}}],["index_config_template_by_type",{"_index":31,"name":{"31":{}},"parent":{}}],["index_config_template_fulltext",{"_index":32,"name":{"32":{}},"parent":{}}],["index_config_template_minimal",{"_index":34,"name":{"34":{}},"parent":{}}],["index_config_template_none",{"_index":30,"name":{"30":{}},"parent":{}}],["index_config_template_path",{"_index":33,"name":{"33":{}},"parent":{}}],["index_config_templates",{"_index":35,"name":{"35":{}},"parent":{}}],["indextemplatetoconfig",{"_index":103,"name":{"103":{}},"parent":{}}],["isboolean",{"_index":119,"name":{"119":{}},"parent":{}}],["isdate",{"_index":120,"name":{"120":{}},"parent":{}}],["isdatestring",{"_index":121,"name":{"121":{}},"parent":{}}],["isfalse",{"_index":122,"name":{"122":{}},"parent":{}}],["isfunction",{"_index":123,"name":{"123":{}},"parent":{}}],["isinfinity",{"_index":124,"name":{"124":{}},"parent":{}}],["isint",{"_index":125,"name":{"125":{}},"parent":{}}],["isnotfalse",{"_index":126,"name":{"126":{}},"parent":{}}],["isnotset",{"_index":127,"name":{"127":{}},"parent":{}}],["isnottrue",{"_index":128,"name":{"128":{}},"parent":{}}],["isnull",{"_index":129,"name":{"129":{}},"parent":{}}],["isnumber",{"_index":130,"name":{"130":{}},"parent":{}}],["isobject",{"_index":131,"name":{"131":{}},"parent":{}}],["isset",{"_index":132,"name":{"132":{}},"parent":{}}],["isstring",{"_index":133,"name":{"133":{}},"parent":{}}],["istrue",{"_index":134,"name":{"134":{}},"parent":{}}],["isundefined",{"_index":135,"name":{"135":{}},"parent":{}}],["join",{"_index":104,"name":{"104":{}},"parent":{}}],["lpad",{"_index":111,"name":{"111":{}},"parent":{}}],["ngram",{"_index":105,"name":{"105":{}},"parent":{}}],["or",{"_index":106,"name":{"106":{}},"parent":{}}],["query_function_fulltext",{"_index":36,"name":{"36":{}},"parent":{}}],["query_function_ngram",{"_index":37,"name":{"37":{}},"parent":{}}],["query_function_path_match",{"_index":38,"name":{"38":{}},"parent":{}}],["query_function_range",{"_index":39,"name":{"39":{}},"parent":{}}],["query_function_stemmed",{"_index":40,"name":{"40":{}},"parent":{}}],["query_operator_and",{"_index":41,"name":{"41":{}},"parent":{}}],["query_operator_or",{"_index":42,"name":{"42":{}},"parent":{}}],["response_type_html",{"_index":141,"name":{"141":{}},"parent":{}}],["response_type_json",{"_index":140,"name":{"140":{}},"parent":{}}],["rpad",{"_index":112,"name":{"112":{}},"parent":{}}],["sort_created",{"_index":43,"name":{"43":{}},"parent":{}}],["sort_displayname",{"_index":44,"name":{"44":{}},"parent":{}}],["sort_manual",{"_index":45,"name":{"45":{}},"parent":{}}],["sort_modified",{"_index":46,"name":{"46":{}},"parent":{}}],["sortkeys",{"_index":3,"name":{"3":{}},"parent":{}}],["sortkeysrec",{"_index":4,"name":{"4":{}},"parent":{}}],["stemmed",{"_index":107,"name":{"107":{}},"parent":{}}],["stemming_language_code_arabic",{"_index":47,"name":{"47":{}},"parent":{}}],["stemming_language_code_armenian",{"_index":64,"name":{"64":{}},"parent":{}}],["stemming_language_code_basque",{"_index":56,"name":{"56":{}},"parent":{}}],["stemming_language_code_bengali",{"_index":49,"name":{"49":{}},"parent":{}}],["stemming_language_code_brazilian",{"_index":75,"name":{"75":{}},"parent":{}}],["stemming_language_code_bulgarian",{"_index":48,"name":{"48":{}},"parent":{}}],["stemming_language_code_catalan",{"_index":50,"name":{"50":{}},"parent":{}}],["stemming_language_code_chinese",{"_index":82,"name":{"82":{}},"parent":{}}],["stemming_language_code_czech",{"_index":51,"name":{"51":{}},"parent":{}}],["stemming_language_code_danish",{"_index":52,"name":{"52":{}},"parent":{}}],["stemming_language_code_dutch",{"_index":72,"name":{"72":{}},"parent":{}}],["stemming_language_code_english",{"_index":55,"name":{"55":{}},"parent":{}}],["stemming_language_code_finnish",{"_index":58,"name":{"58":{}},"parent":{}}],["stemming_language_code_french",{"_index":59,"name":{"59":{}},"parent":{}}],["stemming_language_code_galician",{"_index":61,"name":{"61":{}},"parent":{}}],["stemming_language_code_german",{"_index":53,"name":{"53":{}},"parent":{}}],["stemming_language_code_greek",{"_index":54,"name":{"54":{}},"parent":{}}],["stemming_language_code_hindi",{"_index":62,"name":{"62":{}},"parent":{}}],["stemming_language_code_hungarian",{"_index":63,"name":{"63":{}},"parent":{}}],["stemming_language_code_indonesian",{"_index":65,"name":{"65":{}},"parent":{}}],["stemming_language_code_irish",{"_index":60,"name":{"60":{}},"parent":{}}],["stemming_language_code_italian",{"_index":66,"name":{"66":{}},"parent":{}}],["stemming_language_code_japanese",{"_index":67,"name":{"67":{}},"parent":{}}],["stemming_language_code_korean",{"_index":68,"name":{"68":{}},"parent":{}}],["stemming_language_code_latvian",{"_index":71,"name":{"71":{}},"parent":{}}],["stemming_language_code_lithuanian",{"_index":70,"name":{"70":{}},"parent":{}}],["stemming_language_code_norwegian",{"_index":73,"name":{"73":{}},"parent":{}}],["stemming_language_code_persian",{"_index":57,"name":{"57":{}},"parent":{}}],["stemming_language_code_portuguese",{"_index":74,"name":{"74":{}},"parent":{}}],["stemming_language_code_romanian",{"_index":76,"name":{"76":{}},"parent":{}}],["stemming_language_code_russian",{"_index":77,"name":{"77":{}},"parent":{}}],["stemming_language_code_sorani",{"_index":69,"name":{"69":{}},"parent":{}}],["stemming_language_code_spanish",{"_index":78,"name":{"78":{}},"parent":{}}],["stemming_language_code_swedish",{"_index":79,"name":{"79":{}},"parent":{}}],["stemming_language_code_thai",{"_index":81,"name":{"81":{}},"parent":{}}],["stemming_language_code_turkish",{"_index":80,"name":{"80":{}},"parent":{}}],["stemming_language_codes",{"_index":83,"name":{"83":{}},"parent":{}}],["stemming_languages",{"_index":84,"name":{"84":{}},"parent":{}}],["task_state_failed",{"_index":115,"name":{"115":{}},"parent":{}}],["task_state_finished",{"_index":116,"name":{"116":{}},"parent":{}}],["task_state_running",{"_index":117,"name":{"117":{}},"parent":{}}],["task_state_waiting",{"_index":118,"name":{"118":{}},"parent":{}}],["tostr",{"_index":136,"name":{"136":{}},"parent":{}}],["ucfirst",{"_index":113,"name":{"113":{}},"parent":{}}],["uniqueid",{"_index":108,"name":{"108":{}},"parent":{}}],["unstem",{"_index":114,"name":{"114":{}},"parent":{}}],["updateindexconfigs",{"_index":109,"name":{"109":{}},"parent":{}}],["value_type_any",{"_index":85,"name":{"85":{}},"parent":{}}],["value_type_boolean",{"_index":86,"name":{"86":{}},"parent":{}}],["value_type_double",{"_index":87,"name":{"87":{}},"parent":{}}],["value_type_geo_point",{"_index":88,"name":{"88":{}},"parent":{}}],["value_type_instant",{"_index":89,"name":{"89":{}},"parent":{}}],["value_type_local_date",{"_index":90,"name":{"90":{}},"parent":{}}],["value_type_local_date_time",{"_index":91,"name":{"91":{}},"parent":{}}],["value_type_local_time",{"_index":92,"name":{"92":{}},"parent":{}}],["value_type_long",{"_index":93,"name":{"93":{}},"parent":{}}],["value_type_reference",{"_index":94,"name":{"94":{}},"parent":{}}],["value_type_set",{"_index":95,"name":{"95":{}},"parent":{}}],["value_type_string",{"_index":96,"name":{"96":{}},"parent":{}}]],"pipeline":[]}} | ||
window.searchData = {"kinds":{"32":"Variable","64":"Function"},"rows":[{"id":0,"kind":64,"name":"findIndex","url":"modules.html#findIndex","classes":"tsd-kind-function"},{"id":1,"kind":64,"name":"flatten","url":"modules.html#flatten","classes":"tsd-kind-function"},{"id":2,"kind":64,"name":"forceArray","url":"modules.html#forceArray","classes":"tsd-kind-function"},{"id":3,"kind":64,"name":"sortKeys","url":"modules.html#sortKeys","classes":"tsd-kind-function"},{"id":4,"kind":64,"name":"sortKeysRec","url":"modules.html#sortKeysRec","classes":"tsd-kind-function"},{"id":5,"kind":32,"name":"AGGREGATION_COUNT","url":"modules.html#AGGREGATION_COUNT","classes":"tsd-kind-variable"},{"id":6,"kind":32,"name":"AGGREGATION_DATE_HISTOGRAM","url":"modules.html#AGGREGATION_DATE_HISTOGRAM","classes":"tsd-kind-variable"},{"id":7,"kind":32,"name":"AGGREGATION_DATE_RANGE","url":"modules.html#AGGREGATION_DATE_RANGE","classes":"tsd-kind-variable"},{"id":8,"kind":32,"name":"AGGREGATION_GEO_DISTANCE","url":"modules.html#AGGREGATION_GEO_DISTANCE","classes":"tsd-kind-variable"},{"id":9,"kind":32,"name":"AGGREGATION_MAX","url":"modules.html#AGGREGATION_MAX","classes":"tsd-kind-variable"},{"id":10,"kind":32,"name":"AGGREGATION_MIN","url":"modules.html#AGGREGATION_MIN","classes":"tsd-kind-variable"},{"id":11,"kind":32,"name":"AGGREGATION_RANGE","url":"modules.html#AGGREGATION_RANGE","classes":"tsd-kind-variable"},{"id":12,"kind":32,"name":"AGGREGATION_STATS","url":"modules.html#AGGREGATION_STATS","classes":"tsd-kind-variable"},{"id":13,"kind":32,"name":"AGGREGATION_TERMS","url":"modules.html#AGGREGATION_TERMS","classes":"tsd-kind-variable"},{"id":14,"kind":32,"name":"FILTER_CLAUSE_MUST","url":"modules.html#FILTER_CLAUSE_MUST","classes":"tsd-kind-variable"},{"id":15,"kind":32,"name":"FILTER_CLAUSE_MUST_NOT","url":"modules.html#FILTER_CLAUSE_MUST_NOT","classes":"tsd-kind-variable"},{"id":16,"kind":32,"name":"FILTER_CLAUSE_SHOULD","url":"modules.html#FILTER_CLAUSE_SHOULD","classes":"tsd-kind-variable"},{"id":17,"kind":32,"name":"FILTER_CLAUSES","url":"modules.html#FILTER_CLAUSES","classes":"tsd-kind-variable"},{"id":18,"kind":32,"name":"INDEX_CONFIG_ENABLED","url":"modules.html#INDEX_CONFIG_ENABLED","classes":"tsd-kind-variable"},{"id":19,"kind":32,"name":"INDEX_CONFIG_ENABLED_DEFAULT","url":"modules.html#INDEX_CONFIG_ENABLED_DEFAULT","classes":"tsd-kind-variable"},{"id":20,"kind":32,"name":"INDEX_CONFIG_DECIDE_BY_TYPE","url":"modules.html#INDEX_CONFIG_DECIDE_BY_TYPE","classes":"tsd-kind-variable"},{"id":21,"kind":32,"name":"INDEX_CONFIG_DECIDE_BY_TYPE_DEFAULT","url":"modules.html#INDEX_CONFIG_DECIDE_BY_TYPE_DEFAULT","classes":"tsd-kind-variable"},{"id":22,"kind":32,"name":"INDEX_CONFIG_FULLTEXT","url":"modules.html#INDEX_CONFIG_FULLTEXT","classes":"tsd-kind-variable"},{"id":23,"kind":32,"name":"INDEX_CONFIG_FULLTEXT_DEFAULT","url":"modules.html#INDEX_CONFIG_FULLTEXT_DEFAULT","classes":"tsd-kind-variable"},{"id":24,"kind":32,"name":"INDEX_CONFIG_INCLUDE_IN_ALL_TEXT","url":"modules.html#INDEX_CONFIG_INCLUDE_IN_ALL_TEXT","classes":"tsd-kind-variable"},{"id":25,"kind":32,"name":"INDEX_CONFIG_INCLUDE_IN_ALL_TEXT_DEFAULT","url":"modules.html#INDEX_CONFIG_INCLUDE_IN_ALL_TEXT_DEFAULT","classes":"tsd-kind-variable"},{"id":26,"kind":32,"name":"INDEX_CONFIG_N_GRAM","url":"modules.html#INDEX_CONFIG_N_GRAM","classes":"tsd-kind-variable"},{"id":27,"kind":32,"name":"INDEX_CONFIG_N_GRAM_DEFAULT","url":"modules.html#INDEX_CONFIG_N_GRAM_DEFAULT","classes":"tsd-kind-variable"},{"id":28,"kind":32,"name":"INDEX_CONFIG_PATH","url":"modules.html#INDEX_CONFIG_PATH","classes":"tsd-kind-variable"},{"id":29,"kind":32,"name":"INDEX_CONFIG_PATH_DEFAULT","url":"modules.html#INDEX_CONFIG_PATH_DEFAULT","classes":"tsd-kind-variable"},{"id":30,"kind":32,"name":"INDEX_CONFIG_TEMPLATE_NONE","url":"modules.html#INDEX_CONFIG_TEMPLATE_NONE","classes":"tsd-kind-variable"},{"id":31,"kind":32,"name":"INDEX_CONFIG_TEMPLATE_BY_TYPE","url":"modules.html#INDEX_CONFIG_TEMPLATE_BY_TYPE","classes":"tsd-kind-variable"},{"id":32,"kind":32,"name":"INDEX_CONFIG_TEMPLATE_FULLTEXT","url":"modules.html#INDEX_CONFIG_TEMPLATE_FULLTEXT","classes":"tsd-kind-variable"},{"id":33,"kind":32,"name":"INDEX_CONFIG_TEMPLATE_PATH","url":"modules.html#INDEX_CONFIG_TEMPLATE_PATH","classes":"tsd-kind-variable"},{"id":34,"kind":32,"name":"INDEX_CONFIG_TEMPLATE_MINIMAL","url":"modules.html#INDEX_CONFIG_TEMPLATE_MINIMAL","classes":"tsd-kind-variable"},{"id":35,"kind":32,"name":"INDEX_CONFIG_TEMPLATES","url":"modules.html#INDEX_CONFIG_TEMPLATES","classes":"tsd-kind-variable"},{"id":36,"kind":32,"name":"QUERY_FUNCTION_FULLTEXT","url":"modules.html#QUERY_FUNCTION_FULLTEXT","classes":"tsd-kind-variable"},{"id":37,"kind":32,"name":"QUERY_FUNCTION_NGRAM","url":"modules.html#QUERY_FUNCTION_NGRAM","classes":"tsd-kind-variable"},{"id":38,"kind":32,"name":"QUERY_FUNCTION_PATH_MATCH","url":"modules.html#QUERY_FUNCTION_PATH_MATCH","classes":"tsd-kind-variable"},{"id":39,"kind":32,"name":"QUERY_FUNCTION_RANGE","url":"modules.html#QUERY_FUNCTION_RANGE","classes":"tsd-kind-variable"},{"id":40,"kind":32,"name":"QUERY_FUNCTION_STEMMED","url":"modules.html#QUERY_FUNCTION_STEMMED","classes":"tsd-kind-variable"},{"id":41,"kind":32,"name":"QUERY_OPERATOR_AND","url":"modules.html#QUERY_OPERATOR_AND","classes":"tsd-kind-variable"},{"id":42,"kind":32,"name":"QUERY_OPERATOR_OR","url":"modules.html#QUERY_OPERATOR_OR","classes":"tsd-kind-variable"},{"id":43,"kind":32,"name":"SORT_CREATED","url":"modules.html#SORT_CREATED","classes":"tsd-kind-variable"},{"id":44,"kind":32,"name":"SORT_DISPLAYNAME","url":"modules.html#SORT_DISPLAYNAME","classes":"tsd-kind-variable"},{"id":45,"kind":32,"name":"SORT_MANUAL","url":"modules.html#SORT_MANUAL","classes":"tsd-kind-variable"},{"id":46,"kind":32,"name":"SORT_MODIFIED","url":"modules.html#SORT_MODIFIED","classes":"tsd-kind-variable"},{"id":47,"kind":32,"name":"STEMMING_LANGUAGE_CODE_ARABIC","url":"modules.html#STEMMING_LANGUAGE_CODE_ARABIC","classes":"tsd-kind-variable"},{"id":48,"kind":32,"name":"STEMMING_LANGUAGE_CODE_BULGARIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_BULGARIAN","classes":"tsd-kind-variable"},{"id":49,"kind":32,"name":"STEMMING_LANGUAGE_CODE_BENGALI","url":"modules.html#STEMMING_LANGUAGE_CODE_BENGALI","classes":"tsd-kind-variable"},{"id":50,"kind":32,"name":"STEMMING_LANGUAGE_CODE_CATALAN","url":"modules.html#STEMMING_LANGUAGE_CODE_CATALAN","classes":"tsd-kind-variable"},{"id":51,"kind":32,"name":"STEMMING_LANGUAGE_CODE_CZECH","url":"modules.html#STEMMING_LANGUAGE_CODE_CZECH","classes":"tsd-kind-variable"},{"id":52,"kind":32,"name":"STEMMING_LANGUAGE_CODE_DANISH","url":"modules.html#STEMMING_LANGUAGE_CODE_DANISH","classes":"tsd-kind-variable"},{"id":53,"kind":32,"name":"STEMMING_LANGUAGE_CODE_GERMAN","url":"modules.html#STEMMING_LANGUAGE_CODE_GERMAN","classes":"tsd-kind-variable"},{"id":54,"kind":32,"name":"STEMMING_LANGUAGE_CODE_GREEK","url":"modules.html#STEMMING_LANGUAGE_CODE_GREEK","classes":"tsd-kind-variable"},{"id":55,"kind":32,"name":"STEMMING_LANGUAGE_CODE_ENGLISH","url":"modules.html#STEMMING_LANGUAGE_CODE_ENGLISH","classes":"tsd-kind-variable"},{"id":56,"kind":32,"name":"STEMMING_LANGUAGE_CODE_BASQUE","url":"modules.html#STEMMING_LANGUAGE_CODE_BASQUE","classes":"tsd-kind-variable"},{"id":57,"kind":32,"name":"STEMMING_LANGUAGE_CODE_PERSIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_PERSIAN","classes":"tsd-kind-variable"},{"id":58,"kind":32,"name":"STEMMING_LANGUAGE_CODE_FINNISH","url":"modules.html#STEMMING_LANGUAGE_CODE_FINNISH","classes":"tsd-kind-variable"},{"id":59,"kind":32,"name":"STEMMING_LANGUAGE_CODE_FRENCH","url":"modules.html#STEMMING_LANGUAGE_CODE_FRENCH","classes":"tsd-kind-variable"},{"id":60,"kind":32,"name":"STEMMING_LANGUAGE_CODE_IRISH","url":"modules.html#STEMMING_LANGUAGE_CODE_IRISH","classes":"tsd-kind-variable"},{"id":61,"kind":32,"name":"STEMMING_LANGUAGE_CODE_GALICIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_GALICIAN","classes":"tsd-kind-variable"},{"id":62,"kind":32,"name":"STEMMING_LANGUAGE_CODE_HINDI","url":"modules.html#STEMMING_LANGUAGE_CODE_HINDI","classes":"tsd-kind-variable"},{"id":63,"kind":32,"name":"STEMMING_LANGUAGE_CODE_HUNGARIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_HUNGARIAN","classes":"tsd-kind-variable"},{"id":64,"kind":32,"name":"STEMMING_LANGUAGE_CODE_ARMENIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_ARMENIAN","classes":"tsd-kind-variable"},{"id":65,"kind":32,"name":"STEMMING_LANGUAGE_CODE_INDONESIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_INDONESIAN","classes":"tsd-kind-variable"},{"id":66,"kind":32,"name":"STEMMING_LANGUAGE_CODE_ITALIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_ITALIAN","classes":"tsd-kind-variable"},{"id":67,"kind":32,"name":"STEMMING_LANGUAGE_CODE_JAPANESE","url":"modules.html#STEMMING_LANGUAGE_CODE_JAPANESE","classes":"tsd-kind-variable"},{"id":68,"kind":32,"name":"STEMMING_LANGUAGE_CODE_KOREAN","url":"modules.html#STEMMING_LANGUAGE_CODE_KOREAN","classes":"tsd-kind-variable"},{"id":69,"kind":32,"name":"STEMMING_LANGUAGE_CODE_SORANI","url":"modules.html#STEMMING_LANGUAGE_CODE_SORANI","classes":"tsd-kind-variable"},{"id":70,"kind":32,"name":"STEMMING_LANGUAGE_CODE_LITHUANIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_LITHUANIAN","classes":"tsd-kind-variable"},{"id":71,"kind":32,"name":"STEMMING_LANGUAGE_CODE_LATVIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_LATVIAN","classes":"tsd-kind-variable"},{"id":72,"kind":32,"name":"STEMMING_LANGUAGE_CODE_DUTCH","url":"modules.html#STEMMING_LANGUAGE_CODE_DUTCH","classes":"tsd-kind-variable"},{"id":73,"kind":32,"name":"STEMMING_LANGUAGE_CODE_NORWEGIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_NORWEGIAN","classes":"tsd-kind-variable"},{"id":74,"kind":32,"name":"STEMMING_LANGUAGE_CODE_PORTUGUESE","url":"modules.html#STEMMING_LANGUAGE_CODE_PORTUGUESE","classes":"tsd-kind-variable"},{"id":75,"kind":32,"name":"STEMMING_LANGUAGE_CODE_BRAZILIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_BRAZILIAN","classes":"tsd-kind-variable"},{"id":76,"kind":32,"name":"STEMMING_LANGUAGE_CODE_ROMANIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_ROMANIAN","classes":"tsd-kind-variable"},{"id":77,"kind":32,"name":"STEMMING_LANGUAGE_CODE_RUSSIAN","url":"modules.html#STEMMING_LANGUAGE_CODE_RUSSIAN","classes":"tsd-kind-variable"},{"id":78,"kind":32,"name":"STEMMING_LANGUAGE_CODE_SPANISH","url":"modules.html#STEMMING_LANGUAGE_CODE_SPANISH","classes":"tsd-kind-variable"},{"id":79,"kind":32,"name":"STEMMING_LANGUAGE_CODE_SWEDISH","url":"modules.html#STEMMING_LANGUAGE_CODE_SWEDISH","classes":"tsd-kind-variable"},{"id":80,"kind":32,"name":"STEMMING_LANGUAGE_CODE_TURKISH","url":"modules.html#STEMMING_LANGUAGE_CODE_TURKISH","classes":"tsd-kind-variable"},{"id":81,"kind":32,"name":"STEMMING_LANGUAGE_CODE_THAI","url":"modules.html#STEMMING_LANGUAGE_CODE_THAI","classes":"tsd-kind-variable"},{"id":82,"kind":32,"name":"STEMMING_LANGUAGE_CODE_CHINESE","url":"modules.html#STEMMING_LANGUAGE_CODE_CHINESE","classes":"tsd-kind-variable"},{"id":83,"kind":32,"name":"STEMMING_LANGUAGE_CODES","url":"modules.html#STEMMING_LANGUAGE_CODES","classes":"tsd-kind-variable"},{"id":84,"kind":32,"name":"STEMMING_LANGUAGES","url":"modules.html#STEMMING_LANGUAGES","classes":"tsd-kind-variable"},{"id":85,"kind":32,"name":"VALUE_TYPE_ANY","url":"modules.html#VALUE_TYPE_ANY","classes":"tsd-kind-variable"},{"id":86,"kind":32,"name":"VALUE_TYPE_BOOLEAN","url":"modules.html#VALUE_TYPE_BOOLEAN","classes":"tsd-kind-variable"},{"id":87,"kind":32,"name":"VALUE_TYPE_DOUBLE","url":"modules.html#VALUE_TYPE_DOUBLE","classes":"tsd-kind-variable"},{"id":88,"kind":32,"name":"VALUE_TYPE_GEO_POINT","url":"modules.html#VALUE_TYPE_GEO_POINT","classes":"tsd-kind-variable"},{"id":89,"kind":32,"name":"VALUE_TYPE_INSTANT","url":"modules.html#VALUE_TYPE_INSTANT","classes":"tsd-kind-variable"},{"id":90,"kind":32,"name":"VALUE_TYPE_LOCAL_DATE","url":"modules.html#VALUE_TYPE_LOCAL_DATE","classes":"tsd-kind-variable"},{"id":91,"kind":32,"name":"VALUE_TYPE_LOCAL_DATE_TIME","url":"modules.html#VALUE_TYPE_LOCAL_DATE_TIME","classes":"tsd-kind-variable"},{"id":92,"kind":32,"name":"VALUE_TYPE_LOCAL_TIME","url":"modules.html#VALUE_TYPE_LOCAL_TIME","classes":"tsd-kind-variable"},{"id":93,"kind":32,"name":"VALUE_TYPE_LONG","url":"modules.html#VALUE_TYPE_LONG","classes":"tsd-kind-variable"},{"id":94,"kind":32,"name":"VALUE_TYPE_REFERENCE","url":"modules.html#VALUE_TYPE_REFERENCE","classes":"tsd-kind-variable"},{"id":95,"kind":32,"name":"VALUE_TYPE_SET","url":"modules.html#VALUE_TYPE_SET","classes":"tsd-kind-variable"},{"id":96,"kind":32,"name":"VALUE_TYPE_STRING","url":"modules.html#VALUE_TYPE_STRING","classes":"tsd-kind-variable"},{"id":97,"kind":64,"name":"and","url":"modules.html#and","classes":"tsd-kind-function"},{"id":98,"kind":64,"name":"addQueryFilter","url":"modules.html#addQueryFilter","classes":"tsd-kind-function"},{"id":99,"kind":64,"name":"dirname","url":"modules.html#dirname","classes":"tsd-kind-function"},{"id":100,"kind":64,"name":"enonify","url":"modules.html#enonify","classes":"tsd-kind-function"},{"id":101,"kind":64,"name":"fulltext","url":"modules.html#fulltext","classes":"tsd-kind-function"},{"id":102,"kind":64,"name":"group","url":"modules.html#group","classes":"tsd-kind-function"},{"id":103,"kind":64,"name":"indexTemplateToConfig","url":"modules.html#indexTemplateToConfig","classes":"tsd-kind-function"},{"id":104,"kind":64,"name":"join","url":"modules.html#join","classes":"tsd-kind-function"},{"id":105,"kind":64,"name":"ngram","url":"modules.html#ngram","classes":"tsd-kind-function"},{"id":106,"kind":64,"name":"or","url":"modules.html#or","classes":"tsd-kind-function"},{"id":107,"kind":64,"name":"stemmed","url":"modules.html#stemmed","classes":"tsd-kind-function"},{"id":108,"kind":64,"name":"uniqueId","url":"modules.html#uniqueId","classes":"tsd-kind-function"},{"id":109,"kind":64,"name":"updateIndexConfigs","url":"modules.html#updateIndexConfigs","classes":"tsd-kind-function"},{"id":110,"kind":64,"name":"validateRepoId","url":"modules.html#validateRepoId","classes":"tsd-kind-function"},{"id":111,"kind":64,"name":"camelize","url":"modules.html#camelize","classes":"tsd-kind-function"},{"id":112,"kind":64,"name":"fold","url":"modules.html#fold","classes":"tsd-kind-function"},{"id":113,"kind":64,"name":"lpad","url":"modules.html#lpad","classes":"tsd-kind-function"},{"id":114,"kind":64,"name":"rpad","url":"modules.html#rpad","classes":"tsd-kind-function"},{"id":115,"kind":64,"name":"ucFirst","url":"modules.html#ucFirst","classes":"tsd-kind-function"},{"id":116,"kind":64,"name":"unStem","url":"modules.html#unStem","classes":"tsd-kind-function"},{"id":117,"kind":32,"name":"TASK_STATE_FAILED","url":"modules.html#TASK_STATE_FAILED","classes":"tsd-kind-variable"},{"id":118,"kind":32,"name":"TASK_STATE_FINISHED","url":"modules.html#TASK_STATE_FINISHED","classes":"tsd-kind-variable"},{"id":119,"kind":32,"name":"TASK_STATE_RUNNING","url":"modules.html#TASK_STATE_RUNNING","classes":"tsd-kind-variable"},{"id":120,"kind":32,"name":"TASK_STATE_WAITING","url":"modules.html#TASK_STATE_WAITING","classes":"tsd-kind-variable"},{"id":121,"kind":64,"name":"isBoolean","url":"modules.html#isBoolean","classes":"tsd-kind-function"},{"id":122,"kind":64,"name":"isDate","url":"modules.html#isDate","classes":"tsd-kind-function"},{"id":123,"kind":64,"name":"isDateString","url":"modules.html#isDateString","classes":"tsd-kind-function"},{"id":124,"kind":64,"name":"isFalse","url":"modules.html#isFalse","classes":"tsd-kind-function"},{"id":125,"kind":64,"name":"isFunction","url":"modules.html#isFunction","classes":"tsd-kind-function"},{"id":126,"kind":64,"name":"isInfinity","url":"modules.html#isInfinity","classes":"tsd-kind-function"},{"id":127,"kind":64,"name":"isInt","url":"modules.html#isInt","classes":"tsd-kind-function"},{"id":128,"kind":64,"name":"isNotFalse","url":"modules.html#isNotFalse","classes":"tsd-kind-function"},{"id":129,"kind":64,"name":"isNotSet","url":"modules.html#isNotSet","classes":"tsd-kind-function"},{"id":130,"kind":64,"name":"isNotTrue","url":"modules.html#isNotTrue","classes":"tsd-kind-function"},{"id":131,"kind":64,"name":"isNull","url":"modules.html#isNull","classes":"tsd-kind-function"},{"id":132,"kind":64,"name":"isNumber","url":"modules.html#isNumber","classes":"tsd-kind-function"},{"id":133,"kind":64,"name":"isObject","url":"modules.html#isObject","classes":"tsd-kind-function"},{"id":134,"kind":64,"name":"isSet","url":"modules.html#isSet","classes":"tsd-kind-function"},{"id":135,"kind":64,"name":"isString","url":"modules.html#isString","classes":"tsd-kind-function"},{"id":136,"kind":64,"name":"isTrue","url":"modules.html#isTrue","classes":"tsd-kind-function"},{"id":137,"kind":64,"name":"isUndefined","url":"modules.html#isUndefined","classes":"tsd-kind-function"},{"id":138,"kind":64,"name":"toStr","url":"modules.html#toStr","classes":"tsd-kind-function"},{"id":139,"kind":32,"name":"COLON_SIGN","url":"modules.html#COLON_SIGN","classes":"tsd-kind-variable"},{"id":140,"kind":32,"name":"DOT_SIGN","url":"modules.html#DOT_SIGN","classes":"tsd-kind-variable"},{"id":141,"kind":32,"name":"ELLIPSIS","url":"modules.html#ELLIPSIS","classes":"tsd-kind-variable"},{"id":142,"kind":32,"name":"RESPONSE_TYPE_JSON","url":"modules.html#RESPONSE_TYPE_JSON","classes":"tsd-kind-variable"},{"id":143,"kind":32,"name":"RESPONSE_TYPE_HTML","url":"modules.html#RESPONSE_TYPE_HTML","classes":"tsd-kind-variable"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,45.713]],["parent/0",[]],["name/1",[1,45.713]],["parent/1",[]],["name/2",[2,45.713]],["parent/2",[]],["name/3",[3,45.713]],["parent/3",[]],["name/4",[4,45.713]],["parent/4",[]],["name/5",[5,45.713]],["parent/5",[]],["name/6",[6,45.713]],["parent/6",[]],["name/7",[7,45.713]],["parent/7",[]],["name/8",[8,45.713]],["parent/8",[]],["name/9",[9,45.713]],["parent/9",[]],["name/10",[10,45.713]],["parent/10",[]],["name/11",[11,45.713]],["parent/11",[]],["name/12",[12,45.713]],["parent/12",[]],["name/13",[13,45.713]],["parent/13",[]],["name/14",[14,45.713]],["parent/14",[]],["name/15",[15,45.713]],["parent/15",[]],["name/16",[16,45.713]],["parent/16",[]],["name/17",[17,45.713]],["parent/17",[]],["name/18",[18,45.713]],["parent/18",[]],["name/19",[19,45.713]],["parent/19",[]],["name/20",[20,45.713]],["parent/20",[]],["name/21",[21,45.713]],["parent/21",[]],["name/22",[22,45.713]],["parent/22",[]],["name/23",[23,45.713]],["parent/23",[]],["name/24",[24,45.713]],["parent/24",[]],["name/25",[25,45.713]],["parent/25",[]],["name/26",[26,45.713]],["parent/26",[]],["name/27",[27,45.713]],["parent/27",[]],["name/28",[28,45.713]],["parent/28",[]],["name/29",[29,45.713]],["parent/29",[]],["name/30",[30,45.713]],["parent/30",[]],["name/31",[31,45.713]],["parent/31",[]],["name/32",[32,45.713]],["parent/32",[]],["name/33",[33,45.713]],["parent/33",[]],["name/34",[34,45.713]],["parent/34",[]],["name/35",[35,45.713]],["parent/35",[]],["name/36",[36,45.713]],["parent/36",[]],["name/37",[37,45.713]],["parent/37",[]],["name/38",[38,45.713]],["parent/38",[]],["name/39",[39,45.713]],["parent/39",[]],["name/40",[40,45.713]],["parent/40",[]],["name/41",[41,45.713]],["parent/41",[]],["name/42",[42,45.713]],["parent/42",[]],["name/43",[43,45.713]],["parent/43",[]],["name/44",[44,45.713]],["parent/44",[]],["name/45",[45,45.713]],["parent/45",[]],["name/46",[46,45.713]],["parent/46",[]],["name/47",[47,45.713]],["parent/47",[]],["name/48",[48,45.713]],["parent/48",[]],["name/49",[49,45.713]],["parent/49",[]],["name/50",[50,45.713]],["parent/50",[]],["name/51",[51,45.713]],["parent/51",[]],["name/52",[52,45.713]],["parent/52",[]],["name/53",[53,45.713]],["parent/53",[]],["name/54",[54,45.713]],["parent/54",[]],["name/55",[55,45.713]],["parent/55",[]],["name/56",[56,45.713]],["parent/56",[]],["name/57",[57,45.713]],["parent/57",[]],["name/58",[58,45.713]],["parent/58",[]],["name/59",[59,45.713]],["parent/59",[]],["name/60",[60,45.713]],["parent/60",[]],["name/61",[61,45.713]],["parent/61",[]],["name/62",[62,45.713]],["parent/62",[]],["name/63",[63,45.713]],["parent/63",[]],["name/64",[64,45.713]],["parent/64",[]],["name/65",[65,45.713]],["parent/65",[]],["name/66",[66,45.713]],["parent/66",[]],["name/67",[67,45.713]],["parent/67",[]],["name/68",[68,45.713]],["parent/68",[]],["name/69",[69,45.713]],["parent/69",[]],["name/70",[70,45.713]],["parent/70",[]],["name/71",[71,45.713]],["parent/71",[]],["name/72",[72,45.713]],["parent/72",[]],["name/73",[73,45.713]],["parent/73",[]],["name/74",[74,45.713]],["parent/74",[]],["name/75",[75,45.713]],["parent/75",[]],["name/76",[76,45.713]],["parent/76",[]],["name/77",[77,45.713]],["parent/77",[]],["name/78",[78,45.713]],["parent/78",[]],["name/79",[79,45.713]],["parent/79",[]],["name/80",[80,45.713]],["parent/80",[]],["name/81",[81,45.713]],["parent/81",[]],["name/82",[82,45.713]],["parent/82",[]],["name/83",[83,45.713]],["parent/83",[]],["name/84",[84,45.713]],["parent/84",[]],["name/85",[85,45.713]],["parent/85",[]],["name/86",[86,45.713]],["parent/86",[]],["name/87",[87,45.713]],["parent/87",[]],["name/88",[88,45.713]],["parent/88",[]],["name/89",[89,45.713]],["parent/89",[]],["name/90",[90,45.713]],["parent/90",[]],["name/91",[91,45.713]],["parent/91",[]],["name/92",[92,45.713]],["parent/92",[]],["name/93",[93,45.713]],["parent/93",[]],["name/94",[94,45.713]],["parent/94",[]],["name/95",[95,45.713]],["parent/95",[]],["name/96",[96,45.713]],["parent/96",[]],["name/97",[97,45.713]],["parent/97",[]],["name/98",[98,45.713]],["parent/98",[]],["name/99",[99,45.713]],["parent/99",[]],["name/100",[100,45.713]],["parent/100",[]],["name/101",[101,45.713]],["parent/101",[]],["name/102",[102,45.713]],["parent/102",[]],["name/103",[103,45.713]],["parent/103",[]],["name/104",[104,45.713]],["parent/104",[]],["name/105",[105,45.713]],["parent/105",[]],["name/106",[106,45.713]],["parent/106",[]],["name/107",[107,45.713]],["parent/107",[]],["name/108",[108,45.713]],["parent/108",[]],["name/109",[109,45.713]],["parent/109",[]],["name/110",[110,45.713]],["parent/110",[]],["name/111",[111,45.713]],["parent/111",[]],["name/112",[112,45.713]],["parent/112",[]],["name/113",[113,45.713]],["parent/113",[]],["name/114",[114,45.713]],["parent/114",[]],["name/115",[115,45.713]],["parent/115",[]],["name/116",[116,45.713]],["parent/116",[]],["name/117",[117,45.713]],["parent/117",[]],["name/118",[118,45.713]],["parent/118",[]],["name/119",[119,45.713]],["parent/119",[]],["name/120",[120,45.713]],["parent/120",[]],["name/121",[121,45.713]],["parent/121",[]],["name/122",[122,45.713]],["parent/122",[]],["name/123",[123,45.713]],["parent/123",[]],["name/124",[124,45.713]],["parent/124",[]],["name/125",[125,45.713]],["parent/125",[]],["name/126",[126,45.713]],["parent/126",[]],["name/127",[127,45.713]],["parent/127",[]],["name/128",[128,45.713]],["parent/128",[]],["name/129",[129,45.713]],["parent/129",[]],["name/130",[130,45.713]],["parent/130",[]],["name/131",[131,45.713]],["parent/131",[]],["name/132",[132,45.713]],["parent/132",[]],["name/133",[133,45.713]],["parent/133",[]],["name/134",[134,45.713]],["parent/134",[]],["name/135",[135,45.713]],["parent/135",[]],["name/136",[136,45.713]],["parent/136",[]],["name/137",[137,45.713]],["parent/137",[]],["name/138",[138,45.713]],["parent/138",[]],["name/139",[139,45.713]],["parent/139",[]],["name/140",[140,45.713]],["parent/140",[]],["name/141",[141,45.713]],["parent/141",[]],["name/142",[142,45.713]],["parent/142",[]],["name/143",[143,45.713]],["parent/143",[]]],"invertedIndex":[["addqueryfilter",{"_index":98,"name":{"98":{}},"parent":{}}],["aggregation_count",{"_index":5,"name":{"5":{}},"parent":{}}],["aggregation_date_histogram",{"_index":6,"name":{"6":{}},"parent":{}}],["aggregation_date_range",{"_index":7,"name":{"7":{}},"parent":{}}],["aggregation_geo_distance",{"_index":8,"name":{"8":{}},"parent":{}}],["aggregation_max",{"_index":9,"name":{"9":{}},"parent":{}}],["aggregation_min",{"_index":10,"name":{"10":{}},"parent":{}}],["aggregation_range",{"_index":11,"name":{"11":{}},"parent":{}}],["aggregation_stats",{"_index":12,"name":{"12":{}},"parent":{}}],["aggregation_terms",{"_index":13,"name":{"13":{}},"parent":{}}],["and",{"_index":97,"name":{"97":{}},"parent":{}}],["camelize",{"_index":111,"name":{"111":{}},"parent":{}}],["colon_sign",{"_index":139,"name":{"139":{}},"parent":{}}],["dirname",{"_index":99,"name":{"99":{}},"parent":{}}],["dot_sign",{"_index":140,"name":{"140":{}},"parent":{}}],["ellipsis",{"_index":141,"name":{"141":{}},"parent":{}}],["enonify",{"_index":100,"name":{"100":{}},"parent":{}}],["filter_clause_must",{"_index":14,"name":{"14":{}},"parent":{}}],["filter_clause_must_not",{"_index":15,"name":{"15":{}},"parent":{}}],["filter_clause_should",{"_index":16,"name":{"16":{}},"parent":{}}],["filter_clauses",{"_index":17,"name":{"17":{}},"parent":{}}],["findindex",{"_index":0,"name":{"0":{}},"parent":{}}],["flatten",{"_index":1,"name":{"1":{}},"parent":{}}],["fold",{"_index":112,"name":{"112":{}},"parent":{}}],["forcearray",{"_index":2,"name":{"2":{}},"parent":{}}],["fulltext",{"_index":101,"name":{"101":{}},"parent":{}}],["group",{"_index":102,"name":{"102":{}},"parent":{}}],["index_config_decide_by_type",{"_index":20,"name":{"20":{}},"parent":{}}],["index_config_decide_by_type_default",{"_index":21,"name":{"21":{}},"parent":{}}],["index_config_enabled",{"_index":18,"name":{"18":{}},"parent":{}}],["index_config_enabled_default",{"_index":19,"name":{"19":{}},"parent":{}}],["index_config_fulltext",{"_index":22,"name":{"22":{}},"parent":{}}],["index_config_fulltext_default",{"_index":23,"name":{"23":{}},"parent":{}}],["index_config_include_in_all_text",{"_index":24,"name":{"24":{}},"parent":{}}],["index_config_include_in_all_text_default",{"_index":25,"name":{"25":{}},"parent":{}}],["index_config_n_gram",{"_index":26,"name":{"26":{}},"parent":{}}],["index_config_n_gram_default",{"_index":27,"name":{"27":{}},"parent":{}}],["index_config_path",{"_index":28,"name":{"28":{}},"parent":{}}],["index_config_path_default",{"_index":29,"name":{"29":{}},"parent":{}}],["index_config_template_by_type",{"_index":31,"name":{"31":{}},"parent":{}}],["index_config_template_fulltext",{"_index":32,"name":{"32":{}},"parent":{}}],["index_config_template_minimal",{"_index":34,"name":{"34":{}},"parent":{}}],["index_config_template_none",{"_index":30,"name":{"30":{}},"parent":{}}],["index_config_template_path",{"_index":33,"name":{"33":{}},"parent":{}}],["index_config_templates",{"_index":35,"name":{"35":{}},"parent":{}}],["indextemplatetoconfig",{"_index":103,"name":{"103":{}},"parent":{}}],["isboolean",{"_index":121,"name":{"121":{}},"parent":{}}],["isdate",{"_index":122,"name":{"122":{}},"parent":{}}],["isdatestring",{"_index":123,"name":{"123":{}},"parent":{}}],["isfalse",{"_index":124,"name":{"124":{}},"parent":{}}],["isfunction",{"_index":125,"name":{"125":{}},"parent":{}}],["isinfinity",{"_index":126,"name":{"126":{}},"parent":{}}],["isint",{"_index":127,"name":{"127":{}},"parent":{}}],["isnotfalse",{"_index":128,"name":{"128":{}},"parent":{}}],["isnotset",{"_index":129,"name":{"129":{}},"parent":{}}],["isnottrue",{"_index":130,"name":{"130":{}},"parent":{}}],["isnull",{"_index":131,"name":{"131":{}},"parent":{}}],["isnumber",{"_index":132,"name":{"132":{}},"parent":{}}],["isobject",{"_index":133,"name":{"133":{}},"parent":{}}],["isset",{"_index":134,"name":{"134":{}},"parent":{}}],["isstring",{"_index":135,"name":{"135":{}},"parent":{}}],["istrue",{"_index":136,"name":{"136":{}},"parent":{}}],["isundefined",{"_index":137,"name":{"137":{}},"parent":{}}],["join",{"_index":104,"name":{"104":{}},"parent":{}}],["lpad",{"_index":113,"name":{"113":{}},"parent":{}}],["ngram",{"_index":105,"name":{"105":{}},"parent":{}}],["or",{"_index":106,"name":{"106":{}},"parent":{}}],["query_function_fulltext",{"_index":36,"name":{"36":{}},"parent":{}}],["query_function_ngram",{"_index":37,"name":{"37":{}},"parent":{}}],["query_function_path_match",{"_index":38,"name":{"38":{}},"parent":{}}],["query_function_range",{"_index":39,"name":{"39":{}},"parent":{}}],["query_function_stemmed",{"_index":40,"name":{"40":{}},"parent":{}}],["query_operator_and",{"_index":41,"name":{"41":{}},"parent":{}}],["query_operator_or",{"_index":42,"name":{"42":{}},"parent":{}}],["response_type_html",{"_index":143,"name":{"143":{}},"parent":{}}],["response_type_json",{"_index":142,"name":{"142":{}},"parent":{}}],["rpad",{"_index":114,"name":{"114":{}},"parent":{}}],["sort_created",{"_index":43,"name":{"43":{}},"parent":{}}],["sort_displayname",{"_index":44,"name":{"44":{}},"parent":{}}],["sort_manual",{"_index":45,"name":{"45":{}},"parent":{}}],["sort_modified",{"_index":46,"name":{"46":{}},"parent":{}}],["sortkeys",{"_index":3,"name":{"3":{}},"parent":{}}],["sortkeysrec",{"_index":4,"name":{"4":{}},"parent":{}}],["stemmed",{"_index":107,"name":{"107":{}},"parent":{}}],["stemming_language_code_arabic",{"_index":47,"name":{"47":{}},"parent":{}}],["stemming_language_code_armenian",{"_index":64,"name":{"64":{}},"parent":{}}],["stemming_language_code_basque",{"_index":56,"name":{"56":{}},"parent":{}}],["stemming_language_code_bengali",{"_index":49,"name":{"49":{}},"parent":{}}],["stemming_language_code_brazilian",{"_index":75,"name":{"75":{}},"parent":{}}],["stemming_language_code_bulgarian",{"_index":48,"name":{"48":{}},"parent":{}}],["stemming_language_code_catalan",{"_index":50,"name":{"50":{}},"parent":{}}],["stemming_language_code_chinese",{"_index":82,"name":{"82":{}},"parent":{}}],["stemming_language_code_czech",{"_index":51,"name":{"51":{}},"parent":{}}],["stemming_language_code_danish",{"_index":52,"name":{"52":{}},"parent":{}}],["stemming_language_code_dutch",{"_index":72,"name":{"72":{}},"parent":{}}],["stemming_language_code_english",{"_index":55,"name":{"55":{}},"parent":{}}],["stemming_language_code_finnish",{"_index":58,"name":{"58":{}},"parent":{}}],["stemming_language_code_french",{"_index":59,"name":{"59":{}},"parent":{}}],["stemming_language_code_galician",{"_index":61,"name":{"61":{}},"parent":{}}],["stemming_language_code_german",{"_index":53,"name":{"53":{}},"parent":{}}],["stemming_language_code_greek",{"_index":54,"name":{"54":{}},"parent":{}}],["stemming_language_code_hindi",{"_index":62,"name":{"62":{}},"parent":{}}],["stemming_language_code_hungarian",{"_index":63,"name":{"63":{}},"parent":{}}],["stemming_language_code_indonesian",{"_index":65,"name":{"65":{}},"parent":{}}],["stemming_language_code_irish",{"_index":60,"name":{"60":{}},"parent":{}}],["stemming_language_code_italian",{"_index":66,"name":{"66":{}},"parent":{}}],["stemming_language_code_japanese",{"_index":67,"name":{"67":{}},"parent":{}}],["stemming_language_code_korean",{"_index":68,"name":{"68":{}},"parent":{}}],["stemming_language_code_latvian",{"_index":71,"name":{"71":{}},"parent":{}}],["stemming_language_code_lithuanian",{"_index":70,"name":{"70":{}},"parent":{}}],["stemming_language_code_norwegian",{"_index":73,"name":{"73":{}},"parent":{}}],["stemming_language_code_persian",{"_index":57,"name":{"57":{}},"parent":{}}],["stemming_language_code_portuguese",{"_index":74,"name":{"74":{}},"parent":{}}],["stemming_language_code_romanian",{"_index":76,"name":{"76":{}},"parent":{}}],["stemming_language_code_russian",{"_index":77,"name":{"77":{}},"parent":{}}],["stemming_language_code_sorani",{"_index":69,"name":{"69":{}},"parent":{}}],["stemming_language_code_spanish",{"_index":78,"name":{"78":{}},"parent":{}}],["stemming_language_code_swedish",{"_index":79,"name":{"79":{}},"parent":{}}],["stemming_language_code_thai",{"_index":81,"name":{"81":{}},"parent":{}}],["stemming_language_code_turkish",{"_index":80,"name":{"80":{}},"parent":{}}],["stemming_language_codes",{"_index":83,"name":{"83":{}},"parent":{}}],["stemming_languages",{"_index":84,"name":{"84":{}},"parent":{}}],["task_state_failed",{"_index":117,"name":{"117":{}},"parent":{}}],["task_state_finished",{"_index":118,"name":{"118":{}},"parent":{}}],["task_state_running",{"_index":119,"name":{"119":{}},"parent":{}}],["task_state_waiting",{"_index":120,"name":{"120":{}},"parent":{}}],["tostr",{"_index":138,"name":{"138":{}},"parent":{}}],["ucfirst",{"_index":115,"name":{"115":{}},"parent":{}}],["uniqueid",{"_index":108,"name":{"108":{}},"parent":{}}],["unstem",{"_index":116,"name":{"116":{}},"parent":{}}],["updateindexconfigs",{"_index":109,"name":{"109":{}},"parent":{}}],["validaterepoid",{"_index":110,"name":{"110":{}},"parent":{}}],["value_type_any",{"_index":85,"name":{"85":{}},"parent":{}}],["value_type_boolean",{"_index":86,"name":{"86":{}},"parent":{}}],["value_type_double",{"_index":87,"name":{"87":{}},"parent":{}}],["value_type_geo_point",{"_index":88,"name":{"88":{}},"parent":{}}],["value_type_instant",{"_index":89,"name":{"89":{}},"parent":{}}],["value_type_local_date",{"_index":90,"name":{"90":{}},"parent":{}}],["value_type_local_date_time",{"_index":91,"name":{"91":{}},"parent":{}}],["value_type_local_time",{"_index":92,"name":{"92":{}},"parent":{}}],["value_type_long",{"_index":93,"name":{"93":{}},"parent":{}}],["value_type_reference",{"_index":94,"name":{"94":{}},"parent":{}}],["value_type_set",{"_index":95,"name":{"95":{}},"parent":{}}],["value_type_string",{"_index":96,"name":{"96":{}},"parent":{}}]],"pipeline":[]}} |
@@ -44,3 +44,3 @@ { | ||
}, | ||
"version": "0.6.0" | ||
"version": "0.7.0" | ||
} |
@@ -117,3 +117,4 @@ export { | ||
uniqueId, | ||
updateIndexConfigs | ||
updateIndexConfigs, | ||
validateRepoId | ||
} from './storage'; | ||
@@ -123,2 +124,3 @@ | ||
camelize, | ||
fold, | ||
lpad, | ||
@@ -125,0 +127,0 @@ rpad, |
@@ -114,1 +114,4 @@ export { | ||
} from './query'; | ||
export { | ||
validateRepoId | ||
} from './repo'; |
@@ -5,5 +5,4 @@ import { | ||
} from '../value/'; | ||
export { | ||
unStem | ||
} from './unStem'; | ||
export {fold} from './fold'; | ||
export {unStem} from './unStem'; | ||
@@ -10,0 +9,0 @@ export const camelize = ( |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
808248
129
20647
40