@zimic/http 0.1.0-canary.13 → 0.1.0-canary.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-PRWTKZHR.mjs → chunk-SSSE2VVN.mjs} +74 -29
- package/dist/chunk-SSSE2VVN.mjs.map +1 -0
- package/dist/{chunk-2CRLX2VH.js → chunk-WHT4TCQM.js} +74 -33
- package/dist/chunk-WHT4TCQM.js.map +1 -0
- package/dist/cli.js +8 -8
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +2 -2
- package/dist/cli.mjs.map +1 -1
- package/dist/index.js +23 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +24 -4
- package/dist/index.mjs.map +1 -1
- package/dist/typegen.js +2 -2
- package/dist/typegen.mjs +1 -1
- package/package.json +6 -6
- package/src/utils/prettier.ts +1 -1
- package/dist/chunk-2CRLX2VH.js.map +0 -1
- package/dist/chunk-PRWTKZHR.mjs.map +0 -1
|
@@ -1,27 +1,31 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var isDefined2 = require('@zimic/utils/data/isDefined');
|
|
4
3
|
var filesystem = require('fs/promises');
|
|
5
4
|
var path = require('path');
|
|
6
5
|
var ts3 = require('typescript');
|
|
7
6
|
var chalk = require('chalk');
|
|
8
|
-
var isNonEmpty = require('@zimic/utils/data/isNonEmpty');
|
|
9
|
-
var createRegExpFromWildcardPath = require('@zimic/utils/url/createRegExpFromWildcardPath');
|
|
10
|
-
var createCachedDynamicImport = require('@zimic/utils/import/createCachedDynamicImport');
|
|
11
7
|
|
|
12
8
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
9
|
|
|
14
|
-
var isDefined2__default = /*#__PURE__*/_interopDefault(isDefined2);
|
|
15
10
|
var filesystem__default = /*#__PURE__*/_interopDefault(filesystem);
|
|
16
11
|
var path__default = /*#__PURE__*/_interopDefault(path);
|
|
17
12
|
var ts3__default = /*#__PURE__*/_interopDefault(ts3);
|
|
18
13
|
var chalk__default = /*#__PURE__*/_interopDefault(chalk);
|
|
19
|
-
var isNonEmpty__default = /*#__PURE__*/_interopDefault(isNonEmpty);
|
|
20
|
-
var createRegExpFromWildcardPath__default = /*#__PURE__*/_interopDefault(createRegExpFromWildcardPath);
|
|
21
|
-
var createCachedDynamicImport__default = /*#__PURE__*/_interopDefault(createCachedDynamicImport);
|
|
22
14
|
|
|
23
15
|
var __defProp = Object.defineProperty;
|
|
24
16
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
17
|
+
|
|
18
|
+
// ../zimic-utils/dist/chunk-PAWJFY3S.mjs
|
|
19
|
+
var __defProp2 = Object.defineProperty;
|
|
20
|
+
var __name2 = /* @__PURE__ */ __name((target, value) => __defProp2(target, "name", { value, configurable: true }), "__name");
|
|
21
|
+
|
|
22
|
+
// ../zimic-utils/dist/chunk-3O5CS47X.mjs
|
|
23
|
+
function isDefined(value) {
|
|
24
|
+
return value !== undefined && value !== null;
|
|
25
|
+
}
|
|
26
|
+
__name(isDefined, "isDefined");
|
|
27
|
+
__name2(isDefined, "isDefined");
|
|
28
|
+
var isDefined_default = isDefined;
|
|
25
29
|
function isNeverType(type) {
|
|
26
30
|
return type.kind === ts3__default.default.SyntaxKind.NeverKeyword;
|
|
27
31
|
}
|
|
@@ -101,7 +105,7 @@ function normalizeOperation(operation, context) {
|
|
|
101
105
|
__name(normalizeOperation, "normalizeOperation");
|
|
102
106
|
function normalizeOperations(operations, context) {
|
|
103
107
|
const newIdentifier = createOperationsIdentifier(context.serviceName);
|
|
104
|
-
const newMembers = operations.members.map((operation) => normalizeOperation(operation, context)).filter(
|
|
108
|
+
const newMembers = operations.members.map((operation) => normalizeOperation(operation, context)).filter(isDefined_default);
|
|
105
109
|
return ts3__default.default.factory.updateInterfaceDeclaration(
|
|
106
110
|
operations,
|
|
107
111
|
operations.modifiers,
|
|
@@ -126,7 +130,7 @@ function removeOperationIfUnreferenced(operation, context) {
|
|
|
126
130
|
}
|
|
127
131
|
__name(removeOperationIfUnreferenced, "removeOperationIfUnreferenced");
|
|
128
132
|
function removeUnreferencedOperations(operations, context) {
|
|
129
|
-
const newMembers = operations.members.map((operation) => removeOperationIfUnreferenced(operation, context)).filter(
|
|
133
|
+
const newMembers = operations.members.map((operation) => removeOperationIfUnreferenced(operation, context)).filter(isDefined_default);
|
|
130
134
|
context.referencedTypes.operations.clear();
|
|
131
135
|
if (newMembers.length === 0) {
|
|
132
136
|
return undefined;
|
|
@@ -318,16 +322,16 @@ function normalizeContentType(contentType, context, options) {
|
|
|
318
322
|
if (!ts3__default.default.isTypeLiteralNode(contentType)) {
|
|
319
323
|
return contentType;
|
|
320
324
|
}
|
|
321
|
-
const newHeader = contentType.members.map((member) => normalizeRequestHeaders(member, context)).find(
|
|
325
|
+
const newHeader = contentType.members.map((member) => normalizeRequestHeaders(member, context)).find(isDefined_default);
|
|
322
326
|
const newBodyMembers = contentType.members.flatMap((body) => {
|
|
323
327
|
if (isContentPropertySignature(body)) {
|
|
324
|
-
return body.type.members.map((member) => normalizeRequestBodyMember(member, context, { questionToken: bodyQuestionToken })).filter(
|
|
328
|
+
return body.type.members.map((member) => normalizeRequestBodyMember(member, context, { questionToken: bodyQuestionToken })).filter(isDefined_default);
|
|
325
329
|
}
|
|
326
330
|
return [];
|
|
327
331
|
});
|
|
328
332
|
if (newBodyMembers.length <= 1) {
|
|
329
333
|
const newBodyMemberPropertySignatures = newBodyMembers.map((bodyMember) => bodyMember.propertySignature);
|
|
330
|
-
const newMembers = [newHeader, ...newBodyMemberPropertySignatures].filter(
|
|
334
|
+
const newMembers = [newHeader, ...newBodyMemberPropertySignatures].filter(isDefined_default);
|
|
331
335
|
return ts3__default.default.factory.updateTypeLiteralNode(contentType, ts3__default.default.factory.createNodeArray(newMembers));
|
|
332
336
|
} else {
|
|
333
337
|
const bodyMemberUnionTypes = newBodyMembers.map((bodyMember) => {
|
|
@@ -432,7 +436,7 @@ function normalizeResponses(responses, context) {
|
|
|
432
436
|
}
|
|
433
437
|
const newIdentifier = ts3__default.default.factory.createIdentifier("response");
|
|
434
438
|
const newQuestionToken = undefined;
|
|
435
|
-
const newMembers = responses.type.members.map((response) => normalizeResponse(response, context), context).filter(
|
|
439
|
+
const newMembers = responses.type.members.map((response) => normalizeResponse(response, context), context).filter(isDefined_default);
|
|
436
440
|
const sortedNewMembers = Array.from(newMembers).sort((response, otherResponse) => {
|
|
437
441
|
return response.statusCode.value.localeCompare(otherResponse.statusCode.value);
|
|
438
442
|
});
|
|
@@ -569,7 +573,7 @@ function mergeRequestHeadersMembers(members) {
|
|
|
569
573
|
if (firstHeadersIndex !== undefined) {
|
|
570
574
|
mergedHeadersMembers[firstHeadersIndex] = mergedHeaders;
|
|
571
575
|
}
|
|
572
|
-
return mergedHeadersMembers.filter(
|
|
576
|
+
return mergedHeadersMembers.filter(isDefined_default);
|
|
573
577
|
}
|
|
574
578
|
__name(mergeRequestHeadersMembers, "mergeRequestHeadersMembers");
|
|
575
579
|
function mergeRequestAndParameterTypes(requestType, methodMembers, context) {
|
|
@@ -589,12 +593,12 @@ function mergeRequestAndParameterTypes(requestType, methodMembers, context) {
|
|
|
589
593
|
__name(mergeRequestAndParameterTypes, "mergeRequestAndParameterTypes");
|
|
590
594
|
function normalizeRequestTypeWithParameters(requestType, methodMembers, context) {
|
|
591
595
|
if (ts3__default.default.isUnionTypeNode(requestType)) {
|
|
592
|
-
const newTypes = requestType.types.map((type) => normalizeRequestTypeWithParameters(type, methodMembers, context)).filter(
|
|
596
|
+
const newTypes = requestType.types.map((type) => normalizeRequestTypeWithParameters(type, methodMembers, context)).filter(isDefined_default);
|
|
593
597
|
return ts3__default.default.factory.updateUnionTypeNode(requestType, ts3__default.default.factory.createNodeArray(newTypes));
|
|
594
598
|
}
|
|
595
599
|
if (ts3__default.default.isIndexedAccessTypeNode(requestType)) {
|
|
596
600
|
const newType = normalizeRequestTypeWithParameters(ts3__default.default.factory.createTypeLiteralNode([]), methodMembers, context);
|
|
597
|
-
return ts3__default.default.factory.createIntersectionTypeNode([requestType, newType].filter(
|
|
601
|
+
return ts3__default.default.factory.createIntersectionTypeNode([requestType, newType].filter(isDefined_default));
|
|
598
602
|
}
|
|
599
603
|
return mergeRequestAndParameterTypes(requestType, methodMembers, context);
|
|
600
604
|
}
|
|
@@ -623,7 +627,7 @@ function normalizeMethodMemberWithParameters(methodMember, methodMembers, contex
|
|
|
623
627
|
}
|
|
624
628
|
__name(normalizeMethodMemberWithParameters, "normalizeMethodMemberWithParameters");
|
|
625
629
|
function normalizeTypeLiteralMethodType(methodType, context) {
|
|
626
|
-
const newMembers = methodType.members.map((member) => normalizeMethodMember(member, context)).filter(
|
|
630
|
+
const newMembers = methodType.members.map((member) => normalizeMethodMember(member, context)).filter(isDefined_default).map((member, _index, partialMembers) => normalizeMethodMemberWithParameters(member, partialMembers, context)).filter(isDefined_default);
|
|
627
631
|
return ts3__default.default.factory.updateTypeLiteralNode(methodType, ts3__default.default.factory.createNodeArray(newMembers));
|
|
628
632
|
}
|
|
629
633
|
__name(normalizeTypeLiteralMethodType, "normalizeTypeLiteralMethodType");
|
|
@@ -695,7 +699,7 @@ function normalizePath(path4, context, options = {}) {
|
|
|
695
699
|
const newIdentifier = isComponent2 ? path4.name : ts3__default.default.factory.createStringLiteral(newPathName);
|
|
696
700
|
let newType;
|
|
697
701
|
if (ts3__default.default.isTypeLiteralNode(path4.type)) {
|
|
698
|
-
const newMethods = path4.type.members.map((method) => normalizeMethod(method, context, { pathName: newPathName })).filter(
|
|
702
|
+
const newMethods = path4.type.members.map((method) => normalizeMethod(method, context, { pathName: newPathName })).filter(isDefined_default);
|
|
699
703
|
if (newMethods.length === 0) {
|
|
700
704
|
return undefined;
|
|
701
705
|
}
|
|
@@ -721,7 +725,7 @@ __name(wrapPathsType, "wrapPathsType");
|
|
|
721
725
|
function normalizePaths(pathsOrTypeAlias, context) {
|
|
722
726
|
const newIdentifier = createPathsIdentifier(context.serviceName);
|
|
723
727
|
const paths = ts3__default.default.isTypeAliasDeclaration(pathsOrTypeAlias) ? ts3__default.default.factory.createInterfaceDeclaration(pathsOrTypeAlias.modifiers, pathsOrTypeAlias.name, undefined, undefined, []) : pathsOrTypeAlias;
|
|
724
|
-
const newMembers = paths.members.map((path4) => normalizePath(path4, context)).filter(
|
|
728
|
+
const newMembers = paths.members.map((path4) => normalizePath(path4, context)).filter(isDefined_default);
|
|
725
729
|
const newType = ts3__default.default.factory.createTypeLiteralNode(newMembers);
|
|
726
730
|
return ts3__default.default.factory.createTypeAliasDeclaration(
|
|
727
731
|
paths.modifiers,
|
|
@@ -934,7 +938,7 @@ function normalizeComponentGroup(componentGroup, context) {
|
|
|
934
938
|
}
|
|
935
939
|
const componentGroupName = normalizeComponentGroupName(componentGroup.name.text);
|
|
936
940
|
const newIdentifier = ts3__default.default.factory.createIdentifier(componentGroupName);
|
|
937
|
-
const newComponents = componentGroup.type.members.map((component) => normalizeComponent(component, componentGroupName, context)).filter(
|
|
941
|
+
const newComponents = componentGroup.type.members.map((component) => normalizeComponent(component, componentGroupName, context)).filter(isDefined_default);
|
|
938
942
|
const newType = ts3__default.default.factory.updateTypeLiteralNode(componentGroup.type, ts3__default.default.factory.createNodeArray(newComponents));
|
|
939
943
|
return ts3__default.default.factory.updatePropertySignature(
|
|
940
944
|
componentGroup,
|
|
@@ -947,7 +951,7 @@ function normalizeComponentGroup(componentGroup, context) {
|
|
|
947
951
|
__name(normalizeComponentGroup, "normalizeComponentGroup");
|
|
948
952
|
function normalizeComponents(components, context) {
|
|
949
953
|
const newIdentifier = createComponentsIdentifier(context.serviceName);
|
|
950
|
-
const newMembers = components.members.map((componentGroup) => normalizeComponentGroup(componentGroup, context)).filter(
|
|
954
|
+
const newMembers = components.members.map((componentGroup) => normalizeComponentGroup(componentGroup, context)).filter(isDefined_default);
|
|
951
955
|
return ts3__default.default.factory.updateInterfaceDeclaration(
|
|
952
956
|
components,
|
|
953
957
|
components.modifiers,
|
|
@@ -1010,7 +1014,7 @@ function removeUnreferencedComponentsInGroup(componentGroup, context) {
|
|
|
1010
1014
|
return undefined;
|
|
1011
1015
|
}
|
|
1012
1016
|
const componentGroupName = normalizeComponentGroupName(componentGroup.name.text);
|
|
1013
|
-
const newComponents = componentGroup.type.members.map((component) => removeComponentIfUnreferenced(component, componentGroupName, context)).filter(
|
|
1017
|
+
const newComponents = componentGroup.type.members.map((component) => removeComponentIfUnreferenced(component, componentGroupName, context)).filter(isDefined_default);
|
|
1014
1018
|
if (newComponents.length === 0) {
|
|
1015
1019
|
return undefined;
|
|
1016
1020
|
}
|
|
@@ -1024,7 +1028,7 @@ function removeUnreferencedComponentsInGroup(componentGroup, context) {
|
|
|
1024
1028
|
}
|
|
1025
1029
|
__name(removeUnreferencedComponentsInGroup, "removeUnreferencedComponentsInGroup");
|
|
1026
1030
|
function removeUnreferencedComponents(components, context) {
|
|
1027
|
-
const newComponentGroups = components.members.map((componentGroup) => removeUnreferencedComponentsInGroup(componentGroup, context)).filter(
|
|
1031
|
+
const newComponentGroups = components.members.map((componentGroup) => removeUnreferencedComponentsInGroup(componentGroup, context)).filter(isDefined_default);
|
|
1028
1032
|
context.referencedTypes.components.clear();
|
|
1029
1033
|
if (newComponentGroups.length === 0) {
|
|
1030
1034
|
return undefined;
|
|
@@ -1045,6 +1049,29 @@ function convertToPascalCase(value) {
|
|
|
1045
1049
|
return value.replace(/(?:^|[^A-Za-z\d])([A-Za-z\d])/g, (_match, letter) => letter.toUpperCase());
|
|
1046
1050
|
}
|
|
1047
1051
|
__name(convertToPascalCase, "convertToPascalCase");
|
|
1052
|
+
|
|
1053
|
+
// ../zimic-utils/dist/data/isNonEmpty.mjs
|
|
1054
|
+
function isNonEmpty(value) {
|
|
1055
|
+
return isDefined_default(value) && value !== "";
|
|
1056
|
+
}
|
|
1057
|
+
__name(isNonEmpty, "isNonEmpty");
|
|
1058
|
+
__name2(isNonEmpty, "isNonEmpty");
|
|
1059
|
+
var isNonEmpty_default = isNonEmpty;
|
|
1060
|
+
|
|
1061
|
+
// ../zimic-utils/dist/url/createRegExpFromWildcardPath.mjs
|
|
1062
|
+
function prepareURLForRegex(url) {
|
|
1063
|
+
const encodedURL = encodeURI(url);
|
|
1064
|
+
return encodedURL.replace(/([.()*?+$\\])/g, "\\$1");
|
|
1065
|
+
}
|
|
1066
|
+
__name(prepareURLForRegex, "prepareURLForRegex");
|
|
1067
|
+
__name2(prepareURLForRegex, "prepareURLForRegex");
|
|
1068
|
+
function createRegExpFromWildcardPath(path4, options) {
|
|
1069
|
+
const pathWithReplacedWildcards = prepareURLForRegex(path4).replace(/^\/+|\/+$/g, "").replace(/\\\*/g, "*").replace(/\*\*\/\*/g, "**").replace(/(^|[^*])\*([^*]|$)/g, "$1[^/]*$2").replace(/\*\*/g, ".*");
|
|
1070
|
+
return new RegExp(`^${options.prefix}/*${pathWithReplacedWildcards}/*$`);
|
|
1071
|
+
}
|
|
1072
|
+
__name(createRegExpFromWildcardPath, "createRegExpFromWildcardPath");
|
|
1073
|
+
__name2(createRegExpFromWildcardPath, "createRegExpFromWildcardPath");
|
|
1074
|
+
var createRegExpFromWildcardPath_default = createRegExpFromWildcardPath;
|
|
1048
1075
|
var HTTP_METHOD_OPTIONS = HTTP_METHODS.join("|");
|
|
1049
1076
|
var MODIFIER_GROUP = "(?<modifier>!?)";
|
|
1050
1077
|
var METHOD_FILTER_GROUP = `(?<method>(?:\\*|(?:${HTTP_METHOD_OPTIONS})(?:,\\s*(?:${HTTP_METHOD_OPTIONS}))*))`;
|
|
@@ -1063,7 +1090,7 @@ function parseRawFilter(rawFilter) {
|
|
|
1063
1090
|
const methodFilterGroup = `(?:${filteredMethodsOrWildcard.toUpperCase().replace(/,/g, "|").replace(/\*/g, ".*")}) `;
|
|
1064
1091
|
const isNegativeMatch = filterModifier === "!";
|
|
1065
1092
|
return {
|
|
1066
|
-
expression:
|
|
1093
|
+
expression: createRegExpFromWildcardPath_default(filteredPath, { prefix: methodFilterGroup }),
|
|
1067
1094
|
isNegativeMatch
|
|
1068
1095
|
};
|
|
1069
1096
|
}
|
|
@@ -1092,7 +1119,7 @@ async function readPathFiltersFromFile(filePath) {
|
|
|
1092
1119
|
}
|
|
1093
1120
|
__name(readPathFiltersFromFile, "readPathFiltersFromFile");
|
|
1094
1121
|
function ignoreEmptyFilters(filters) {
|
|
1095
|
-
return filters.map((line) => line.trim()).filter(
|
|
1122
|
+
return filters.map((line) => line.trim()).filter(isNonEmpty_default);
|
|
1096
1123
|
}
|
|
1097
1124
|
__name(ignoreEmptyFilters, "ignoreEmptyFilters");
|
|
1098
1125
|
|
|
@@ -1130,7 +1157,21 @@ function createImportDeclarations(context) {
|
|
|
1130
1157
|
return [httpImportDeclaration];
|
|
1131
1158
|
}
|
|
1132
1159
|
__name(createImportDeclarations, "createImportDeclarations");
|
|
1133
|
-
|
|
1160
|
+
|
|
1161
|
+
// ../zimic-utils/dist/import/createCachedDynamicImport.mjs
|
|
1162
|
+
function createCachedDynamicImport(importModuleDynamically) {
|
|
1163
|
+
let cachedImportResult;
|
|
1164
|
+
return /* @__PURE__ */ __name2(/* @__PURE__ */ __name(async function importModuleDynamicallyWithCache() {
|
|
1165
|
+
if (cachedImportResult === undefined) {
|
|
1166
|
+
cachedImportResult = await importModuleDynamically();
|
|
1167
|
+
}
|
|
1168
|
+
return cachedImportResult;
|
|
1169
|
+
}, "importModuleDynamicallyWithCache"), "importModuleDynamicallyWithCache");
|
|
1170
|
+
}
|
|
1171
|
+
__name(createCachedDynamicImport, "createCachedDynamicImport");
|
|
1172
|
+
__name2(createCachedDynamicImport, "createCachedDynamicImport");
|
|
1173
|
+
var createCachedDynamicImport_default = createCachedDynamicImport;
|
|
1174
|
+
var importOpenapiTypeScript = createCachedDynamicImport_default(() => import('openapi-typescript'));
|
|
1134
1175
|
function transformSchemaObject(schemaObject) {
|
|
1135
1176
|
if (schemaObject.format === "binary") {
|
|
1136
1177
|
const blobType = createBlobType();
|
|
@@ -1210,18 +1251,18 @@ __name(removeUnknownResources, "removeUnknownResources");
|
|
|
1210
1251
|
function normalizeRawNodes(rawNodes, context, options) {
|
|
1211
1252
|
let normalizedNodes = rawNodes.map((node) => isPathsDeclaration(node) ? normalizePaths(node, context) : node);
|
|
1212
1253
|
if (options.prune) {
|
|
1213
|
-
normalizedNodes = normalizedNodes.map((node) => isOperationsDeclaration(node) ? removeUnreferencedOperations(node, context) : node).filter(
|
|
1254
|
+
normalizedNodes = normalizedNodes.map((node) => isOperationsDeclaration(node) ? removeUnreferencedOperations(node, context) : node).filter(isDefined_default);
|
|
1214
1255
|
}
|
|
1215
|
-
normalizedNodes = normalizedNodes.map((node) => isOperationsDeclaration(node) ? normalizeOperations(node, context) : node).filter(
|
|
1256
|
+
normalizedNodes = normalizedNodes.map((node) => isOperationsDeclaration(node) ? normalizeOperations(node, context) : node).filter(isDefined_default);
|
|
1216
1257
|
if (options.prune) {
|
|
1217
1258
|
for (const node of normalizedNodes) {
|
|
1218
1259
|
if (isComponentsDeclaration(node, context)) {
|
|
1219
1260
|
populateReferencedComponents(node, context);
|
|
1220
1261
|
}
|
|
1221
1262
|
}
|
|
1222
|
-
normalizedNodes = normalizedNodes.map((node) => isComponentsDeclaration(node, context) ? removeUnreferencedComponents(node, context) : node).filter(
|
|
1263
|
+
normalizedNodes = normalizedNodes.map((node) => isComponentsDeclaration(node, context) ? removeUnreferencedComponents(node, context) : node).filter(isDefined_default);
|
|
1223
1264
|
}
|
|
1224
|
-
normalizedNodes = normalizedNodes.map((node) => isComponentsDeclaration(node, context) ? normalizeComponents(node, context) : node).map(removeUnknownResources).filter(
|
|
1265
|
+
normalizedNodes = normalizedNodes.map((node) => isComponentsDeclaration(node, context) ? normalizeComponents(node, context) : node).map(removeUnknownResources).filter(isDefined_default);
|
|
1225
1266
|
return normalizedNodes;
|
|
1226
1267
|
}
|
|
1227
1268
|
__name(normalizeRawNodes, "normalizeRawNodes");
|
|
@@ -1315,5 +1356,5 @@ var typegen = Object.freeze(new TypegenNamespace_default());
|
|
|
1315
1356
|
exports.__name = __name;
|
|
1316
1357
|
exports.logWithPrefix = logWithPrefix;
|
|
1317
1358
|
exports.typegen = typegen;
|
|
1318
|
-
//# sourceMappingURL=chunk-
|
|
1319
|
-
//# sourceMappingURL=chunk-
|
|
1359
|
+
//# sourceMappingURL=chunk-WHT4TCQM.js.map
|
|
1360
|
+
//# sourceMappingURL=chunk-WHT4TCQM.js.map
|