@rebasepro/schema-inference 0.0.1-canary.4d4fb3e

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,581 @@
1
+ (function(global, factory) {
2
+ typeof exports === "object" && typeof module !== "undefined" ? factory(exports) : typeof define === "function" && define.amd ? define(["exports"], factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self, factory(global["Rebase schema inference"] = {}));
3
+ })(this, (function(exports2) {
4
+ "use strict";
5
+ function parseReferenceString(value) {
6
+ if (!value) return null;
7
+ let database = void 0;
8
+ let fullPath = value;
9
+ if (value.includes(":::")) {
10
+ const [dbName, pathPart] = value.split(":::");
11
+ if (dbName && dbName !== "(default)") {
12
+ database = dbName;
13
+ }
14
+ fullPath = pathPart;
15
+ }
16
+ if (!fullPath || !fullPath.includes("/")) {
17
+ return null;
18
+ }
19
+ const path = fullPath.substring(0, fullPath.lastIndexOf("/"));
20
+ return { path, database };
21
+ }
22
+ function looksLikeReference(value) {
23
+ if (typeof value !== "string") return false;
24
+ return parseReferenceString(value) !== null;
25
+ }
26
+ function findCommonInitialStringInPath(valuesCount) {
27
+ if (!valuesCount) return void 0;
28
+ function getPath(value) {
29
+ let pathString;
30
+ if (typeof value === "string") {
31
+ pathString = value;
32
+ } else if (value.slug) {
33
+ pathString = value.slug;
34
+ } else {
35
+ console.warn("findCommonInitialStringInPath: value is not a string or document with path", value);
36
+ return void 0;
37
+ }
38
+ if (!pathString) return void 0;
39
+ if (pathString.includes(":::")) {
40
+ const [, pathPart] = pathString.split(":::");
41
+ pathString = pathPart;
42
+ }
43
+ return pathString;
44
+ }
45
+ const strings = valuesCount.values.map((v) => getPath(v)).filter((v) => !!v);
46
+ const pathWithSlash = strings.find((s) => s.includes("/"));
47
+ if (!pathWithSlash)
48
+ return void 0;
49
+ const searchedPath = pathWithSlash.substring(0, pathWithSlash.lastIndexOf("/"));
50
+ const yep = valuesCount.values.filter((value) => {
51
+ const path = getPath(value);
52
+ if (!path) return false;
53
+ return path.startsWith(searchedPath);
54
+ }).length > valuesCount.values.length / 3 * 2;
55
+ return yep ? searchedPath : void 0;
56
+ }
57
+ function removeInitialAndTrailingSlashes(s) {
58
+ return removeInitialSlash(removeTrailingSlash(s));
59
+ }
60
+ function removeInitialSlash(s) {
61
+ if (s.startsWith("/"))
62
+ return s.slice(1);
63
+ else return s;
64
+ }
65
+ function removeTrailingSlash(s) {
66
+ if (s.endsWith("/"))
67
+ return s.slice(0, -1);
68
+ else return s;
69
+ }
70
+ function extractEnumFromValues(values) {
71
+ if (!Array.isArray(values)) {
72
+ return [];
73
+ }
74
+ const enumValues = values.map((value) => {
75
+ if (typeof value === "string") {
76
+ return {
77
+ id: value,
78
+ label: unslugify(value)
79
+ };
80
+ } else
81
+ return null;
82
+ }).filter(Boolean);
83
+ enumValues.sort((a, b) => a.label.localeCompare(b.label));
84
+ return enumValues;
85
+ }
86
+ function prettifyIdentifier(input) {
87
+ if (!input) return "";
88
+ let text = input;
89
+ text = text.replace(/([a-z])([A-Z])|([A-Z])([A-Z][a-z])/g, "$1$3 $2$4");
90
+ text = text.replace(/[_-]+/g, " ");
91
+ const s = text.trim().replace(/\b\w/g, (char) => char.toUpperCase());
92
+ console.log("Prettified identifier:", {
93
+ input,
94
+ s
95
+ });
96
+ return s;
97
+ }
98
+ function unslugify(slug) {
99
+ if (!slug) return "";
100
+ if (slug.includes("-") || slug.includes("_") || !slug.includes(" ")) {
101
+ const result = slug.replace(/[-_]/g, " ");
102
+ return result.replace(/\w\S*/g, function(txt) {
103
+ return txt.charAt(0).toUpperCase() + txt.substring(1);
104
+ }).trim();
105
+ } else {
106
+ return slug.trim();
107
+ }
108
+ }
109
+ function resolveEnumValues(input) {
110
+ if (Array.isArray(input)) {
111
+ return input;
112
+ } else if (typeof input === "object" && input !== null) {
113
+ return Object.entries(input).map(([id, value]) => typeof value === "string" ? {
114
+ id,
115
+ label: value
116
+ } : value);
117
+ } else {
118
+ return void 0;
119
+ }
120
+ }
121
+ function mergeDeep(target, source, ignoreUndefined = false) {
122
+ const targetIsObject = isObject(target);
123
+ const output = targetIsObject ? { ...target } : target;
124
+ if (targetIsObject && isObject(source)) {
125
+ Object.keys(source).forEach((key) => {
126
+ const sourceElement = source[key];
127
+ if (ignoreUndefined && sourceElement === void 0) {
128
+ return;
129
+ }
130
+ if (sourceElement instanceof Date) {
131
+ Object.assign(output, { [key]: new Date(sourceElement.getTime()) });
132
+ } else if (isPlainObject(sourceElement)) {
133
+ if (!(key in target))
134
+ Object.assign(output, { [key]: sourceElement });
135
+ else if (isPlainObject(target[key]))
136
+ output[key] = mergeDeep(target[key], sourceElement);
137
+ else
138
+ Object.assign(output, { [key]: sourceElement });
139
+ } else if (isObject(sourceElement)) {
140
+ Object.assign(output, { [key]: sourceElement });
141
+ } else {
142
+ Object.assign(output, { [key]: sourceElement });
143
+ }
144
+ });
145
+ }
146
+ return output;
147
+ }
148
+ function isObject(item) {
149
+ return item && typeof item === "object" && !Array.isArray(item);
150
+ }
151
+ function isPlainObject(obj) {
152
+ if (typeof obj !== "object" || obj === null || Array.isArray(obj)) {
153
+ return false;
154
+ }
155
+ return Object.getPrototypeOf(obj) === Object.prototype;
156
+ }
157
+ const IMAGE_EXTENSIONS = [".jpg", ".jpeg", ".png", ".webp", ".gif", ".avif"];
158
+ const AUDIO_EXTENSIONS = [".mp3", ".ogg", ".opus", ".aac"];
159
+ const VIDEO_EXTENSIONS = [".avi", ".mp4"];
160
+ const emailRegEx = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;
161
+ function buildStringProperty({
162
+ name,
163
+ totalDocsCount,
164
+ valuesResult
165
+ }) {
166
+ let stringProperty = {
167
+ name: name ?? "",
168
+ type: "string"
169
+ };
170
+ if (valuesResult) {
171
+ const totalEntriesCount = valuesResult.values.length;
172
+ const totalValues = Array.from(valuesResult.valuesCount.keys()).length;
173
+ const config = {};
174
+ const probablyAURL = valuesResult.values.filter((value) => typeof value === "string" && value.toString().startsWith("http")).length > totalDocsCount / 3 * 2;
175
+ if (probablyAURL) {
176
+ config.url = true;
177
+ }
178
+ const probablyAnEmail = valuesResult.values.filter((value) => typeof value === "string" && emailRegEx.test(value)).length > totalDocsCount / 3 * 2;
179
+ if (probablyAnEmail) {
180
+ config.email = true;
181
+ }
182
+ const probablyUserIds = valuesResult.values.filter((value) => typeof value === "string" && value.length === 28 && !value.includes(" ")).length > totalDocsCount / 3 * 2;
183
+ if (probablyUserIds)
184
+ config.readOnly = true;
185
+ if (!probablyAnEmail && !probablyAURL && !probablyUserIds && !probablyAURL && totalValues < totalEntriesCount / 3) {
186
+ const enumValues = extractEnumFromValues(Array.from(valuesResult.valuesCount.keys()));
187
+ if (Object.keys(enumValues).length > 1)
188
+ config.enum = enumValues;
189
+ }
190
+ if (!probablyAnEmail && !probablyAURL && !probablyUserIds && !probablyAURL && !config.enum) {
191
+ const fileType = probableFileType(valuesResult, totalDocsCount);
192
+ if (fileType) {
193
+ config.storage = {
194
+ acceptedFiles: fileType,
195
+ storagePath: findCommonInitialStringInPath(valuesResult) ?? "/"
196
+ };
197
+ }
198
+ }
199
+ if (Object.keys(config).length > 0)
200
+ stringProperty = {
201
+ ...stringProperty,
202
+ ...config
203
+ };
204
+ }
205
+ return stringProperty;
206
+ }
207
+ function probableFileType(valuesCount, totalDocsCount) {
208
+ const isImage = (value) => IMAGE_EXTENSIONS.some((extension) => value.toString().endsWith(extension));
209
+ const isAudio = (value) => AUDIO_EXTENSIONS.some((extension) => value.toString().endsWith(extension));
210
+ const isVideo = (value) => VIDEO_EXTENSIONS.some((extension) => value.toString().endsWith(extension));
211
+ const stringValues = valuesCount.values.filter((v) => typeof v === "string");
212
+ let imageCount = 0;
213
+ let audioCount = 0;
214
+ let videoCount = 0;
215
+ for (const value of stringValues) {
216
+ if (isImage(value)) imageCount++;
217
+ else if (isAudio(value)) audioCount++;
218
+ else if (isVideo(value)) videoCount++;
219
+ }
220
+ const totalMediaCount = imageCount + audioCount + videoCount;
221
+ if (totalMediaCount > totalDocsCount * 2 / 3) {
222
+ const fileTypes = [];
223
+ if (imageCount > 0) fileTypes.push("image/*");
224
+ if (audioCount > 0) fileTypes.push("audio/*");
225
+ if (videoCount > 0) fileTypes.push("video/*");
226
+ return fileTypes.length > 0 ? fileTypes : false;
227
+ }
228
+ return false;
229
+ }
230
+ function buildValidation({
231
+ totalDocsCount,
232
+ valuesResult
233
+ }) {
234
+ if (valuesResult) {
235
+ const totalEntriesCount = valuesResult.values.length;
236
+ if (totalDocsCount === totalEntriesCount)
237
+ return {
238
+ required: true
239
+ };
240
+ }
241
+ return void 0;
242
+ }
243
+ function buildReferenceProperty({
244
+ name,
245
+ totalDocsCount,
246
+ valuesResult
247
+ }) {
248
+ const property = {
249
+ name: name ?? "",
250
+ type: "reference",
251
+ path: findCommonInitialStringInPath(valuesResult) ?? "!!!FIX_ME!!!"
252
+ };
253
+ return property;
254
+ }
255
+ async function buildEntityPropertiesFromData(data, getType) {
256
+ const typesCount = {};
257
+ const valuesCount = {};
258
+ if (data) {
259
+ data.forEach((entry) => {
260
+ if (entry) {
261
+ Object.entries(entry).forEach(([key, value]) => {
262
+ if (key.startsWith("_")) return;
263
+ increaseMapTypeCount(typesCount, key, value, getType);
264
+ increaseValuesCount(valuesCount, key, value, getType);
265
+ });
266
+ }
267
+ });
268
+ }
269
+ return buildPropertiesFromCount(data.length, typesCount, valuesCount);
270
+ }
271
+ function buildPropertyFromData(data, property, getType) {
272
+ const typesCount = {};
273
+ const valuesCount = {};
274
+ if (data) {
275
+ data.forEach((entry) => {
276
+ increaseTypeCount(property.type, typesCount, entry, getType);
277
+ increaseValuesCount(valuesCount, "inferred_prop", entry, getType);
278
+ });
279
+ }
280
+ const enumValues = "enum" in property ? resolveEnumValues(property["enum"]) : void 0;
281
+ if (enumValues) {
282
+ const newEnumValues = extractEnumFromValues(Array.from(valuesCount["inferred_prop"].valuesCount.keys()));
283
+ return {
284
+ ...property,
285
+ enum: [...newEnumValues, ...enumValues]
286
+ };
287
+ }
288
+ const generatedProperty = buildPropertyFromCount(
289
+ "inferred_prop",
290
+ data.length,
291
+ property.type,
292
+ typesCount,
293
+ valuesCount["inferred_prop"]
294
+ );
295
+ return mergeDeep(generatedProperty, property);
296
+ }
297
+ function buildPropertiesOrder(properties, propertiesOrder, priorityKeys) {
298
+ const lowerCasePriorityKeys = (priorityKeys ?? []).map((key) => key.toLowerCase());
299
+ function propOrder(s) {
300
+ const k = s.toLowerCase();
301
+ if (lowerCasePriorityKeys.includes(k)) return 4;
302
+ if (k === "title" || k === "name") return 3;
303
+ if (k.includes("title") || k.includes("name")) return 2;
304
+ if (k.includes("image") || k.includes("picture")) return 1;
305
+ return 0;
306
+ }
307
+ const keys = propertiesOrder ?? Object.keys(properties);
308
+ keys.sort();
309
+ keys.sort((a, b) => {
310
+ return propOrder(b) - propOrder(a);
311
+ });
312
+ return keys;
313
+ }
314
+ function increaseTypeCount(type, typesCount, fieldValue, getType) {
315
+ if (type === "map") {
316
+ if (fieldValue) {
317
+ let mapTypesCount = typesCount[type];
318
+ if (!mapTypesCount) {
319
+ mapTypesCount = {};
320
+ typesCount[type] = mapTypesCount;
321
+ }
322
+ Object.entries(fieldValue).forEach(([key, value]) => {
323
+ increaseMapTypeCount(mapTypesCount, key, value, getType);
324
+ });
325
+ }
326
+ } else if (type === "array") {
327
+ let arrayTypesCount = typesCount[type];
328
+ if (!arrayTypesCount) {
329
+ arrayTypesCount = {};
330
+ typesCount[type] = arrayTypesCount;
331
+ }
332
+ if (fieldValue && Array.isArray(fieldValue) && fieldValue.length > 0) {
333
+ const arrayType = getMostProbableTypeInArray(fieldValue, getType);
334
+ if (arrayType === "map") {
335
+ let mapTypesCount = arrayTypesCount[arrayType];
336
+ if (!mapTypesCount) {
337
+ mapTypesCount = {};
338
+ }
339
+ fieldValue.forEach((value) => {
340
+ if (value && typeof value === "object" && !Array.isArray(value)) {
341
+ Object.entries(value).forEach(
342
+ ([key, v]) => increaseMapTypeCount(mapTypesCount, key, v, getType)
343
+ );
344
+ }
345
+ });
346
+ arrayTypesCount[arrayType] = mapTypesCount;
347
+ } else {
348
+ if (!arrayTypesCount[arrayType]) arrayTypesCount[arrayType] = 1;
349
+ else arrayTypesCount[arrayType] = Number(arrayTypesCount[arrayType]) + 1;
350
+ }
351
+ }
352
+ } else {
353
+ if (!typesCount[type]) typesCount[type] = 1;
354
+ else typesCount[type] = Number(typesCount[type]) + 1;
355
+ }
356
+ }
357
+ function increaseMapTypeCount(typesCountRecord, key, fieldValue, getType) {
358
+ if (key.startsWith("_")) return;
359
+ let typesCount = typesCountRecord[key];
360
+ if (!typesCount) {
361
+ typesCount = {};
362
+ typesCountRecord[key] = typesCount;
363
+ }
364
+ if (fieldValue != null) {
365
+ const type = getType(fieldValue);
366
+ increaseTypeCount(type, typesCount, fieldValue, getType);
367
+ }
368
+ }
369
+ function increaseValuesCount(typeValuesRecord, key, fieldValue, getType) {
370
+ if (key.startsWith("_")) return;
371
+ const type = getType(fieldValue);
372
+ let valuesRecord = typeValuesRecord[key];
373
+ if (!valuesRecord) {
374
+ valuesRecord = {
375
+ values: [],
376
+ valuesCount: /* @__PURE__ */ new Map()
377
+ };
378
+ typeValuesRecord[key] = valuesRecord;
379
+ }
380
+ if (type === "map") {
381
+ let mapValuesRecord = valuesRecord.map;
382
+ if (!mapValuesRecord) {
383
+ mapValuesRecord = {};
384
+ valuesRecord.map = mapValuesRecord;
385
+ }
386
+ if (fieldValue)
387
+ Object.entries(fieldValue).forEach(
388
+ ([subKey, value]) => increaseValuesCount(mapValuesRecord, subKey, value, getType)
389
+ );
390
+ } else if (type === "array") {
391
+ if (Array.isArray(fieldValue)) {
392
+ fieldValue.forEach((value) => {
393
+ valuesRecord.values.push(value);
394
+ valuesRecord.valuesCount.set(value, (valuesRecord.valuesCount.get(value) ?? 0) + 1);
395
+ });
396
+ }
397
+ } else {
398
+ if (fieldValue !== null && fieldValue !== void 0) {
399
+ valuesRecord.values.push(fieldValue);
400
+ valuesRecord.valuesCount.set(fieldValue, (valuesRecord.valuesCount.get(fieldValue) ?? 0) + 1);
401
+ }
402
+ }
403
+ }
404
+ function getHighestTypesCount(typesCount) {
405
+ let highestCount = 0;
406
+ Object.entries(typesCount).forEach(([type, count]) => {
407
+ let countValue = 0;
408
+ if (type === "map") {
409
+ countValue = getHighestRecordCount(count);
410
+ } else if (type === "array") {
411
+ countValue = getHighestTypesCount(count);
412
+ } else {
413
+ countValue = Number(count);
414
+ }
415
+ if (countValue > highestCount) {
416
+ highestCount = countValue;
417
+ }
418
+ });
419
+ return highestCount;
420
+ }
421
+ function getHighestRecordCount(record) {
422
+ return Object.entries(record).map(([key, typesCount]) => getHighestTypesCount(typesCount)).reduce((a, b) => Math.max(a, b), 0);
423
+ }
424
+ function getMostProbableType(typesCount) {
425
+ let highestCount = -1;
426
+ let probableType = "string";
427
+ Object.entries(typesCount).forEach(([type, count]) => {
428
+ let countValue;
429
+ if (type === "map") {
430
+ countValue = getHighestRecordCount(count);
431
+ } else if (type === "array") {
432
+ countValue = getHighestTypesCount(count);
433
+ } else {
434
+ countValue = Number(count);
435
+ }
436
+ if (countValue > highestCount) {
437
+ highestCount = countValue;
438
+ probableType = type;
439
+ }
440
+ });
441
+ return probableType;
442
+ }
443
+ function buildPropertyFromCount(key, totalDocsCount, mostProbableType, typesCount, valuesResult) {
444
+ let title;
445
+ if (key) {
446
+ title = prettifyIdentifier(key);
447
+ }
448
+ let result = void 0;
449
+ if (mostProbableType === "map") {
450
+ const highVariability = checkTypesCountHighVariability(typesCount);
451
+ if (highVariability) {
452
+ result = {
453
+ type: "map",
454
+ name: title ?? key ?? "",
455
+ keyValue: true,
456
+ properties: {}
457
+ };
458
+ }
459
+ const properties = buildPropertiesFromCount(
460
+ totalDocsCount,
461
+ typesCount.map,
462
+ valuesResult ? valuesResult.mapValues : void 0
463
+ );
464
+ result = {
465
+ type: "map",
466
+ name: title ?? key ?? "",
467
+ properties
468
+ };
469
+ } else if (mostProbableType === "array") {
470
+ const arrayTypesCount = typesCount.array;
471
+ const arrayMostProbableType = getMostProbableType(arrayTypesCount);
472
+ const of = buildPropertyFromCount(
473
+ key,
474
+ totalDocsCount,
475
+ arrayMostProbableType,
476
+ arrayTypesCount,
477
+ valuesResult
478
+ );
479
+ result = {
480
+ type: "array",
481
+ name: title ?? key ?? "",
482
+ of
483
+ };
484
+ }
485
+ if (!result) {
486
+ const propertyProps = {
487
+ name: key,
488
+ totalDocsCount,
489
+ valuesResult
490
+ };
491
+ if (mostProbableType === "string") {
492
+ result = buildStringProperty(propertyProps);
493
+ } else if (mostProbableType === "reference") {
494
+ result = buildReferenceProperty(propertyProps);
495
+ } else {
496
+ result = {
497
+ type: mostProbableType
498
+ };
499
+ }
500
+ if (title) {
501
+ result.name = title;
502
+ }
503
+ const validation = buildValidation(propertyProps);
504
+ if (validation) {
505
+ result.validation = validation;
506
+ }
507
+ }
508
+ return result;
509
+ }
510
+ function buildPropertiesFromCount(totalDocsCount, typesCountRecord, valuesCountRecord) {
511
+ const res = {};
512
+ Object.entries(typesCountRecord).forEach(([key, typesCount]) => {
513
+ const mostProbableType = getMostProbableType(typesCount);
514
+ res[key] = buildPropertyFromCount(
515
+ key,
516
+ totalDocsCount,
517
+ mostProbableType,
518
+ typesCount,
519
+ valuesCountRecord ? valuesCountRecord[key] : void 0
520
+ );
521
+ });
522
+ return res;
523
+ }
524
+ function countMaxDocumentsUnder(typesCount) {
525
+ let count = 0;
526
+ Object.entries(typesCount).forEach(([type, value]) => {
527
+ if (typeof value === "object") {
528
+ count = Math.max(count, countMaxDocumentsUnder(value));
529
+ } else {
530
+ count = Math.max(count, Number(value));
531
+ }
532
+ });
533
+ return count;
534
+ }
535
+ function getMostProbableTypeInArray(array, getType) {
536
+ const typesCount = {};
537
+ array.forEach((value) => {
538
+ increaseTypeCount(getType(value), typesCount, value, getType);
539
+ });
540
+ return getMostProbableType(typesCount);
541
+ }
542
+ function checkTypesCountHighVariability(typesCount) {
543
+ const maxCount = countMaxDocumentsUnder(typesCount);
544
+ let keysWithFewValues = 0;
545
+ Object.entries(typesCount.map ?? {}).forEach(([key, value]) => {
546
+ const count = countMaxDocumentsUnder(value);
547
+ if (count < maxCount / 3) {
548
+ keysWithFewValues++;
549
+ }
550
+ });
551
+ return keysWithFewValues / Object.entries(typesCount.map ?? {}).length > 0.5;
552
+ }
553
+ function inferTypeFromValue(value) {
554
+ if (value === null || value === void 0) return "string";
555
+ if (typeof value === "string") return "string";
556
+ if (typeof value === "number") return "number";
557
+ if (typeof value === "boolean") return "boolean";
558
+ if (Array.isArray(value)) return "array";
559
+ if (typeof value === "object") return "map";
560
+ return "string";
561
+ }
562
+ exports2.buildEntityPropertiesFromData = buildEntityPropertiesFromData;
563
+ exports2.buildPropertiesOrder = buildPropertiesOrder;
564
+ exports2.buildPropertyFromData = buildPropertyFromData;
565
+ exports2.extractEnumFromValues = extractEnumFromValues;
566
+ exports2.findCommonInitialStringInPath = findCommonInitialStringInPath;
567
+ exports2.inferTypeFromValue = inferTypeFromValue;
568
+ exports2.isObject = isObject;
569
+ exports2.isPlainObject = isPlainObject;
570
+ exports2.looksLikeReference = looksLikeReference;
571
+ exports2.mergeDeep = mergeDeep;
572
+ exports2.parseReferenceString = parseReferenceString;
573
+ exports2.prettifyIdentifier = prettifyIdentifier;
574
+ exports2.removeInitialAndTrailingSlashes = removeInitialAndTrailingSlashes;
575
+ exports2.removeInitialSlash = removeInitialSlash;
576
+ exports2.removeTrailingSlash = removeTrailingSlash;
577
+ exports2.resolveEnumValues = resolveEnumValues;
578
+ exports2.unslugify = unslugify;
579
+ Object.defineProperty(exports2, Symbol.toStringTag, { value: "Module" });
580
+ }));
581
+ //# sourceMappingURL=index.umd.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.umd.cjs","sources":["../src/strings.ts","../src/util.ts","../src/builders/string_property_builder.ts","../src/builders/validation_builder.ts","../src/builders/reference_property_builder.ts","../src/collection_builder.ts"],"sourcesContent":["import { ValuesCountEntry } from \"./types\";\n\n/**\n * Parse a reference string value which can be in the format:\n * - Simple: \"path/entityId\"\n * - With database: \"database_name:::path/entityId\"\n * Returns the path and database (undefined if not specified or if \"(default)\")\n */\nexport function parseReferenceString(value: string): { path: string; database?: string } | null {\n if (!value) return null;\n\n let database: string | undefined = undefined;\n let fullPath = value;\n\n // Parse the new format: database_name:::path/entityId\n if (value.includes(\":::\")) {\n const [dbName, pathPart] = value.split(\":::\");\n if (dbName && dbName !== \"(default)\") {\n database = dbName;\n }\n fullPath = pathPart;\n }\n\n // Check if it looks like a path (contains at least one slash)\n if (!fullPath || !fullPath.includes(\"/\")) {\n return null;\n }\n\n // Extract the collection path (everything before the last slash)\n const path = fullPath.substring(0, fullPath.lastIndexOf(\"/\"));\n\n return { path, database };\n}\n\n/**\n * Check if a string value looks like a reference\n */\nexport function looksLikeReference(value: any): boolean {\n if (typeof value !== \"string\") return false;\n return parseReferenceString(value) !== null;\n}\n\nexport function findCommonInitialStringInPath(valuesCount?: ValuesCountEntry) {\n\n if (!valuesCount) return undefined;\n\n function getPath(value: any): string | undefined {\n let pathString: string | undefined;\n\n if (typeof value === \"string\") {\n pathString = value;\n } else if (value.slug) {\n pathString = value.slug;\n } else {\n console.warn(\"findCommonInitialStringInPath: value is not a string or document with path\", value);\n return undefined;\n }\n\n if (!pathString) return undefined;\n\n // Parse the new format: database_name:::path/entityId\n // Extract just the path portion for comparison\n if (pathString.includes(\":::\")) {\n const [, pathPart] = pathString.split(\":::\");\n pathString = pathPart;\n }\n\n return pathString;\n }\n\n const strings: string[] = valuesCount.values.map((v) => getPath(v)).filter(v => !!v) as string[];\n const pathWithSlash = strings.find((s) => s.includes(\"/\"));\n if (!pathWithSlash)\n return undefined;\n\n const searchedPath = pathWithSlash.substring(0, pathWithSlash.lastIndexOf(\"/\"));\n\n const yep = valuesCount.values\n .filter((value) => {\n const path = getPath(value);\n if (!path) return false;\n return path.startsWith(searchedPath)\n }).length > valuesCount.values.length / 3 * 2;\n\n return yep ? searchedPath : undefined;\n\n}\n\nexport function removeInitialAndTrailingSlashes(s: string): string {\n return removeInitialSlash(removeTrailingSlash(s));\n}\n\nexport function removeInitialSlash(s: string) {\n if (s.startsWith(\"/\"))\n return s.slice(1);\n else return s;\n}\n\nexport function removeTrailingSlash(s: string) {\n if (s.endsWith(\"/\"))\n return s.slice(0, -1);\n else return s;\n}\n","import { EnumValueConfig, EnumValues } from \"@rebasepro/types\";\n\nexport function extractEnumFromValues(values: unknown[]) {\n if (!Array.isArray(values)) {\n return [];\n }\n const enumValues = values\n .map((value) => {\n if (typeof value === \"string\") {\n return ({\n id: value,\n label: unslugify(value)\n });\n } else\n return null;\n }).filter(Boolean) as Array<{ id: string, label: string }>;\n enumValues.sort((a, b) => a.label.localeCompare(b.label));\n return enumValues;\n}\n\nexport function prettifyIdentifier(input: string) {\n if (!input) return \"\";\n\n let text = input;\n\n // 1. Handle camelCase and Acronyms\n // Group 1 ($1 $2): Lowercase followed by Uppercase (e.g., imageURL -> image URL)\n // Group 2 ($3 $4): Uppercase followed by Uppercase+lowercase (e.g., XMLParser -> XML Parser)\n text = text.replace(/([a-z])([A-Z])|([A-Z])([A-Z][a-z])/g, \"$1$3 $2$4\");\n\n // 2. Replace hyphens/underscores with spaces\n text = text.replace(/[_-]+/g, \" \");\n\n // 3. Capitalize first letter of each word (Title Case)\n const s = text\n .trim()\n .replace(/\\b\\w/g, (char) => char.toUpperCase());\n console.log(\"Prettified identifier:\", {\n input,\n s\n });\n return s;\n}\n\nexport function unslugify(slug?: string): string {\n if (!slug) return \"\";\n if (slug.includes(\"-\") || slug.includes(\"_\") || !slug.includes(\" \")) {\n const result = slug.replace(/[-_]/g, \" \");\n return result.replace(/\\w\\S*/g, function (txt) {\n return txt.charAt(0).toUpperCase() + txt.substring(1);\n }).trim();\n } else {\n return slug.trim();\n }\n}\n\nexport function resolveEnumValues(input: EnumValues): EnumValueConfig[] | undefined {\n // Check Array.isArray first since typeof [] === \"object\" is true in JavaScript\n if (Array.isArray(input)) {\n return input as EnumValueConfig[];\n } else if (typeof input === \"object\" && input !== null) {\n return Object.entries(input).map(([id, value]) =>\n (typeof value === \"string\"\n ? {\n id,\n label: value\n }\n : value));\n } else {\n return undefined;\n }\n}\n\nexport function mergeDeep<T extends Record<any, any>, U extends Record<any, any>>(target: T, source: U, ignoreUndefined: boolean = false): T & U {\n const targetIsObject = isObject(target);\n const output = targetIsObject ? { ...target } : target;\n if (targetIsObject && isObject(source)) {\n Object.keys(source).forEach(key => {\n const sourceElement = source[key];\n // Skip undefined values when ignoreUndefined is true\n if (ignoreUndefined && sourceElement === undefined) {\n return;\n }\n if (sourceElement instanceof Date) {\n // Assign a new Date instance with the same time value\n Object.assign(output, { [key]: new Date(sourceElement.getTime()) });\n } else if (isPlainObject(sourceElement)) {\n // Only recursively merge plain objects, not class instances\n if (!(key in target))\n Object.assign(output, { [key]: sourceElement });\n else if (isPlainObject((target as Record<string, unknown>)[key]))\n (output as Record<string, unknown>)[key] = mergeDeep((target as Record<string, unknown>)[key] as Record<string, unknown>, sourceElement);\n else\n Object.assign(output, { [key]: sourceElement });\n } else if (isObject(sourceElement)) {\n // For class instances (EntityReference, GeoPoint, etc.), assign directly to preserve prototype\n Object.assign(output, { [key]: sourceElement });\n } else {\n Object.assign(output, { [key]: sourceElement });\n }\n });\n }\n return output as T;\n}\n\nexport function isObject(item: any) {\n return item && typeof item === \"object\" && !Array.isArray(item);\n}\n\nexport function isPlainObject(obj: any) {\n if (typeof obj !== \"object\" || obj === null || Array.isArray(obj)) {\n return false;\n }\n return Object.getPrototypeOf(obj) === Object.prototype;\n}\n\n","import { findCommonInitialStringInPath } from \"../strings\";\nimport { extractEnumFromValues } from \"../util\";\nimport { FileType, Property, StringProperty } from \"@rebasepro/types\";\nimport { InferencePropertyBuilderProps, ValuesCountEntry } from \"../types\";\n\nconst IMAGE_EXTENSIONS = [\".jpg\", \".jpeg\", \".png\", \".webp\", \".gif\", \".avif\"];\nconst AUDIO_EXTENSIONS = [\".mp3\", \".ogg\", \".opus\", \".aac\"];\nconst VIDEO_EXTENSIONS = [\".avi\", \".mp4\"];\n\nconst emailRegEx = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;\n\nexport function buildStringProperty({\n name,\n totalDocsCount,\n valuesResult\n}: InferencePropertyBuilderProps): Property {\n\n let stringProperty: Property = {\n name: name ?? \"\",\n type: \"string\",\n\n };\n\n if (valuesResult) {\n\n const totalEntriesCount = valuesResult.values.length;\n const totalValues = Array.from(valuesResult.valuesCount.keys()).length;\n\n const config: Partial<StringProperty> = {};\n\n const probablyAURL = valuesResult.values\n .filter((value) => typeof value === \"string\" &&\n value.toString().startsWith(\"http\")).length > totalDocsCount / 3 * 2;\n if (probablyAURL) {\n config.url = true;\n }\n\n const probablyAnEmail = valuesResult.values\n .filter((value) => typeof value === \"string\" &&\n emailRegEx.test(value)).length > totalDocsCount / 3 * 2;\n if (probablyAnEmail) {\n config.email = true;\n }\n\n const probablyUserIds = valuesResult.values\n .filter((value) => typeof value === \"string\" && value.length === 28 && !value.includes(\" \"))\n .length > totalDocsCount / 3 * 2;\n if (probablyUserIds)\n config.readOnly = true;\n\n if (!probablyAnEmail &&\n !probablyAURL &&\n !probablyUserIds &&\n !probablyAURL &&\n totalValues < totalEntriesCount / 3\n ) {\n const enumValues = extractEnumFromValues(Array.from(valuesResult.valuesCount.keys()));\n\n if (Object.keys(enumValues).length > 1)\n config.enum = enumValues;\n }\n\n // regular string\n if (!probablyAnEmail &&\n !probablyAURL &&\n !probablyUserIds &&\n !probablyAURL &&\n !config.enum) {\n const fileType = probableFileType(valuesResult, totalDocsCount);\n if (fileType) {\n config.storage = {\n acceptedFiles: fileType as FileType[],\n storagePath: findCommonInitialStringInPath(valuesResult) ?? \"/\"\n };\n }\n }\n\n if (Object.keys(config).length > 0)\n stringProperty = {\n ...stringProperty,\n ...config\n } as StringProperty;\n }\n\n return stringProperty;\n}\n\nfunction probableFileType(valuesCount: ValuesCountEntry, totalDocsCount: number): false | FileType[] {\n const isImage = (value: string) => IMAGE_EXTENSIONS.some((extension) => value.toString().endsWith(extension));\n const isAudio = (value: string) => AUDIO_EXTENSIONS.some((extension) => value.toString().endsWith(extension));\n const isVideo = (value: string) => VIDEO_EXTENSIONS.some((extension) => value.toString().endsWith(extension));\n\n const stringValues = valuesCount.values.filter((v): v is string => typeof v === \"string\");\n \n let imageCount = 0;\n let audioCount = 0;\n let videoCount = 0;\n\n for (const value of stringValues) {\n if (isImage(value)) imageCount++;\n else if (isAudio(value)) audioCount++;\n else if (isVideo(value)) videoCount++;\n }\n\n const totalMediaCount = imageCount + audioCount + videoCount;\n if (totalMediaCount > (totalDocsCount * 2) / 3) {\n const fileTypes: FileType[] = [];\n if (imageCount > 0) fileTypes.push(\"image/*\");\n if (audioCount > 0) fileTypes.push(\"audio/*\");\n if (videoCount > 0) fileTypes.push(\"video/*\");\n return fileTypes.length > 0 ? fileTypes : false;\n }\n\n return false;\n}\n","import { PropertyValidationSchema } from \"@rebasepro/types\";\nimport { InferencePropertyBuilderProps } from \"../types\";\n\nexport function buildValidation({\n totalDocsCount,\n valuesResult\n}: InferencePropertyBuilderProps): PropertyValidationSchema | undefined {\n\n if (valuesResult) {\n const totalEntriesCount = valuesResult.values.length;\n if (totalDocsCount === totalEntriesCount)\n return {\n required: true\n }\n }\n\n return undefined;\n}\n","import { findCommonInitialStringInPath } from \"../strings\";\nimport { InferencePropertyBuilderProps } from \"../types\";\nimport { Property } from \"@rebasepro/types\";\n\nexport function buildReferenceProperty({\n name,\n totalDocsCount,\n valuesResult\n}: InferencePropertyBuilderProps): Property {\n\n const property: Property = {\n name: name ?? \"\",\n type: \"reference\",\n path: findCommonInitialStringInPath(valuesResult) ?? \"!!!FIX_ME!!!\"\n };\n\n return property;\n}\n","import {\n InferencePropertyBuilderProps,\n TypesCount,\n TypesCountRecord,\n ValuesCountEntry,\n ValuesCountRecord\n} from \"./types\";\nimport { buildStringProperty } from \"./builders/string_property_builder\";\nimport { buildValidation } from \"./builders/validation_builder\";\nimport { buildReferenceProperty } from \"./builders/reference_property_builder\";\nimport { extractEnumFromValues, mergeDeep, prettifyIdentifier, resolveEnumValues } from \"./util\";\nimport { DataType, EnumValues, Properties, Property, StringProperty } from \"@rebasepro/types\";\n\nexport type InferenceTypeBuilder = (value: any) => DataType;\n\nexport async function buildEntityPropertiesFromData(\n data: object[],\n getType: InferenceTypeBuilder\n): Promise<Properties> {\n const typesCount: TypesCountRecord = {};\n const valuesCount: ValuesCountRecord = {};\n if (data) {\n data.forEach((entry) => {\n if (entry) {\n Object.entries(entry).forEach(([key, value]) => {\n if (key.startsWith(\"_\")) return; // Ignore properties starting with _\n increaseMapTypeCount(typesCount, key, value, getType);\n increaseValuesCount(valuesCount, key, value, getType);\n });\n }\n });\n }\n return buildPropertiesFromCount(data.length, typesCount, valuesCount);\n}\n\nexport function buildPropertyFromData(\n data: any[],\n property: Property,\n getType: InferenceTypeBuilder\n): Property {\n const typesCount = {};\n const valuesCount: ValuesCountRecord = {};\n if (data) {\n data.forEach((entry) => {\n increaseTypeCount(property.type, typesCount, entry, getType);\n increaseValuesCount(valuesCount, \"inferred_prop\", entry, getType);\n });\n }\n const enumValues = \"enum\" in property ? resolveEnumValues(property[\"enum\"] as EnumValues) : undefined;\n if (enumValues) {\n const newEnumValues = extractEnumFromValues(Array.from(valuesCount[\"inferred_prop\"].valuesCount.keys()));\n return {\n ...property,\n enum: [...newEnumValues, ...enumValues]\n } as StringProperty;\n }\n const generatedProperty = buildPropertyFromCount(\n \"inferred_prop\",\n data.length,\n property.type,\n typesCount,\n valuesCount[\"inferred_prop\"]\n );\n return mergeDeep(generatedProperty, property);\n}\n\nexport function buildPropertiesOrder(\n properties: Properties,\n propertiesOrder?: string[],\n priorityKeys?: string[]\n): string[] {\n const lowerCasePriorityKeys = (priorityKeys ?? []).map((key) => key.toLowerCase());\n\n function propOrder(s: string) {\n const k = s.toLowerCase();\n if (lowerCasePriorityKeys.includes(k)) return 4;\n if (k === \"title\" || k === \"name\") return 3;\n if (k.includes(\"title\") || k.includes(\"name\")) return 2;\n if (k.includes(\"image\") || k.includes(\"picture\")) return 1;\n return 0;\n }\n\n const keys = propertiesOrder ?? Object.keys(properties);\n keys.sort(); // alphabetically\n keys.sort((a, b) => {\n return propOrder(b) - propOrder(a);\n });\n return keys;\n}\n\n/**\n * @param type\n * @param typesCount\n * @param fieldValue\n * @param getType\n */\nfunction increaseTypeCount(\n type: DataType,\n typesCount: TypesCount,\n fieldValue: any,\n getType: InferenceTypeBuilder\n) {\n if (type === \"map\") {\n if (fieldValue) {\n let mapTypesCount = typesCount[type];\n if (!mapTypesCount) {\n mapTypesCount = {};\n typesCount[type] = mapTypesCount;\n }\n Object.entries(fieldValue).forEach(([key, value]) => {\n increaseMapTypeCount(mapTypesCount as TypesCountRecord, key, value, getType);\n });\n }\n } else if (type === \"array\") {\n let arrayTypesCount = typesCount[type];\n if (!arrayTypesCount) {\n arrayTypesCount = {};\n typesCount[type] = arrayTypesCount;\n }\n if (fieldValue && Array.isArray(fieldValue) && fieldValue.length > 0) {\n const arrayType = getMostProbableTypeInArray(fieldValue, getType);\n if (arrayType === \"map\") {\n let mapTypesCount = arrayTypesCount[arrayType];\n if (!mapTypesCount) {\n mapTypesCount = {};\n }\n fieldValue.forEach((value) => {\n if (value && typeof value === \"object\" && !Array.isArray(value)) { // Ensure value is an object for Object.entries\n Object.entries(value).forEach(([key, v]) =>\n increaseMapTypeCount(mapTypesCount, key, v, getType)\n );\n }\n });\n arrayTypesCount[arrayType] = mapTypesCount;\n } else {\n if (!arrayTypesCount[arrayType]) arrayTypesCount[arrayType] = 1;\n else arrayTypesCount[arrayType] = Number(arrayTypesCount[arrayType]) + 1;\n }\n }\n } else {\n if (!typesCount[type]) typesCount[type] = 1;\n else typesCount[type] = Number(typesCount[type]) + 1;\n }\n}\n\nfunction increaseMapTypeCount(\n typesCountRecord: TypesCountRecord,\n key: string,\n fieldValue: any,\n getType: InferenceTypeBuilder\n) {\n if (key.startsWith(\"_\")) return; // Ignore properties starting with _\n\n let typesCount: TypesCount = typesCountRecord[key];\n if (!typesCount) {\n typesCount = {};\n typesCountRecord[key] = typesCount;\n }\n\n if (fieldValue != null) {\n // Check that fieldValue is not null or undefined before proceeding\n const type = getType(fieldValue);\n increaseTypeCount(type, typesCount, fieldValue, getType);\n }\n}\n\nfunction increaseValuesCount(\n typeValuesRecord: ValuesCountRecord,\n key: string,\n fieldValue: any,\n getType: InferenceTypeBuilder\n) {\n if (key.startsWith(\"_\")) return; // Ignore properties starting with _\n\n const type = getType(fieldValue);\n\n let valuesRecord: {\n values: any[];\n valuesCount: Map<any, number>;\n map?: ValuesCountRecord;\n } = typeValuesRecord[key];\n\n if (!valuesRecord) {\n valuesRecord = {\n values: [],\n valuesCount: new Map()\n };\n typeValuesRecord[key] = valuesRecord;\n }\n\n if (type === \"map\") {\n let mapValuesRecord: ValuesCountRecord | undefined = valuesRecord.map;\n if (!mapValuesRecord) {\n mapValuesRecord = {};\n valuesRecord.map = mapValuesRecord;\n }\n if (fieldValue)\n Object.entries(fieldValue).forEach(([subKey, value]) =>\n increaseValuesCount(mapValuesRecord as ValuesCountRecord, subKey, value, getType)\n );\n } else if (type === \"array\") {\n if (Array.isArray(fieldValue)) {\n fieldValue.forEach((value) => {\n valuesRecord.values.push(value);\n valuesRecord.valuesCount.set(value, (valuesRecord.valuesCount.get(value) ?? 0) + 1);\n });\n }\n } else {\n if (fieldValue !== null && fieldValue !== undefined) {\n valuesRecord.values.push(fieldValue);\n valuesRecord.valuesCount.set(fieldValue, (valuesRecord.valuesCount.get(fieldValue) ?? 0) + 1);\n }\n }\n}\n\nfunction getHighestTypesCount(typesCount: TypesCount): number {\n let highestCount = 0;\n Object.entries(typesCount).forEach(([type, count]) => {\n let countValue = 0;\n if (type === \"map\") {\n countValue = getHighestRecordCount(count as TypesCountRecord);\n } else if (type === \"array\") {\n countValue = getHighestTypesCount(count as TypesCount);\n } else {\n countValue = Number(count);\n }\n if (countValue > highestCount) {\n highestCount = countValue;\n }\n });\n\n return highestCount;\n}\n\nfunction getHighestRecordCount(record: TypesCountRecord): number {\n return Object.entries(record)\n .map(([key, typesCount]) => getHighestTypesCount(typesCount))\n .reduce((a, b) => Math.max(a, b), 0);\n}\n\nfunction getMostProbableType(typesCount: TypesCount): DataType {\n let highestCount = -1;\n let probableType: DataType = \"string\"; // default\n Object.entries(typesCount).forEach(([type, count]) => {\n let countValue;\n if (type === \"map\") {\n countValue = getHighestRecordCount(count as TypesCountRecord);\n } else if (type === \"array\") {\n countValue = getHighestTypesCount(count as TypesCount);\n } else {\n countValue = Number(count);\n }\n if (countValue > highestCount) {\n highestCount = countValue;\n probableType = type as DataType;\n }\n });\n return probableType;\n}\n\nfunction buildPropertyFromCount(\n key: string,\n totalDocsCount: number,\n mostProbableType: DataType,\n typesCount: TypesCount,\n valuesResult?: ValuesCountEntry\n): Property {\n let title: string | undefined;\n\n if (key) {\n title = prettifyIdentifier(key);\n }\n\n let result: Property | undefined = undefined;\n if (mostProbableType === \"map\") {\n const highVariability = checkTypesCountHighVariability(typesCount);\n if (highVariability) {\n result = {\n type: \"map\",\n name: title ?? key ?? \"\",\n keyValue: true,\n properties: {}\n };\n }\n const properties = buildPropertiesFromCount(\n totalDocsCount,\n typesCount.map as TypesCountRecord,\n valuesResult ? valuesResult.mapValues : undefined\n );\n result = {\n type: \"map\",\n name: title ?? key ?? \"\",\n properties\n };\n } else if (mostProbableType === \"array\") {\n const arrayTypesCount = typesCount.array as TypesCount;\n const arrayMostProbableType = getMostProbableType(arrayTypesCount);\n const of = buildPropertyFromCount(\n key,\n totalDocsCount,\n arrayMostProbableType,\n arrayTypesCount,\n valuesResult\n );\n result = {\n type: \"array\",\n name: title ?? key ?? \"\",\n of\n };\n }\n\n if (!result) {\n const propertyProps: InferencePropertyBuilderProps = {\n name: key,\n totalDocsCount,\n valuesResult\n };\n if (mostProbableType === \"string\") {\n result = buildStringProperty(propertyProps);\n } else if (mostProbableType === \"reference\") {\n result = buildReferenceProperty(propertyProps);\n } else {\n result = {\n type: mostProbableType\n } as Property;\n }\n\n if (title) {\n result.name = title;\n }\n\n const validation = buildValidation(propertyProps);\n if (validation) {\n result.validation = validation;\n }\n }\n\n return result;\n}\n\nfunction buildPropertiesFromCount(\n totalDocsCount: number,\n typesCountRecord: TypesCountRecord,\n valuesCountRecord?: ValuesCountRecord\n): Properties {\n const res: Properties = {};\n Object.entries(typesCountRecord).forEach(([key, typesCount]) => {\n const mostProbableType = getMostProbableType(typesCount);\n res[key] = buildPropertyFromCount(\n key,\n totalDocsCount,\n mostProbableType,\n typesCount,\n valuesCountRecord ? valuesCountRecord[key] : undefined\n );\n });\n return res;\n}\n\nfunction countMaxDocumentsUnder(typesCount: TypesCount) {\n let count = 0;\n Object.entries(typesCount).forEach(([type, value]) => {\n if (typeof value === \"object\") {\n count = Math.max(count, countMaxDocumentsUnder(value as TypesCountRecord));\n } else {\n count = Math.max(count, Number(value));\n }\n });\n return count;\n}\n\nfunction getMostProbableTypeInArray(\n array: any[],\n getType: InferenceTypeBuilder\n): DataType {\n const typesCount: TypesCount = {};\n array.forEach((value) => {\n increaseTypeCount(getType(value), typesCount, value, getType);\n });\n return getMostProbableType(typesCount);\n}\n\nfunction checkTypesCountHighVariability(typesCount: TypesCount) {\n const maxCount = countMaxDocumentsUnder(typesCount);\n let keysWithFewValues = 0;\n Object.entries(typesCount.map ?? {}).forEach(([key, value]) => {\n const count = countMaxDocumentsUnder(value);\n if (count < maxCount / 3) {\n keysWithFewValues++;\n }\n });\n return keysWithFewValues / Object.entries(typesCount.map ?? {}).length > 0.5;\n}\n\n\nexport function inferTypeFromValue(value: any): DataType {\n if (value === null || value === undefined) return \"string\";\n if (typeof value === \"string\") return \"string\";\n if (typeof value === \"number\") return \"number\";\n if (typeof value === \"boolean\") return \"boolean\";\n if (Array.isArray(value)) return \"array\";\n if (typeof value === \"object\") return \"map\";\n return \"string\";\n}\n"],"names":[],"mappings":"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"}