@adaptic/lumic-utils 1.0.25 → 1.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. package/dist/{apollo-client.client-D6jG5B1n.js → apollo-client.client-CtjgIfRT.js} +3 -3
  2. package/dist/{apollo-client.client-D6jG5B1n.js.map → apollo-client.client-CtjgIfRT.js.map} +1 -1
  3. package/dist/{apollo-client.client-DLW-p46Y.js → apollo-client.client-Uv0-ZrFd.js} +4 -4
  4. package/dist/{apollo-client.client-DLW-p46Y.js.map → apollo-client.client-Uv0-ZrFd.js.map} +1 -1
  5. package/dist/{apollo-client.server-CXLiLmSz.js → apollo-client.server-DaXmxoBl.js} +3 -3
  6. package/dist/{apollo-client.server-CXLiLmSz.js.map → apollo-client.server-DaXmxoBl.js.map} +1 -1
  7. package/dist/{apollo-client.server-Cx30LaNh.js → apollo-client.server-JYHXy9ib.js} +3 -3
  8. package/dist/{apollo-client.server-Cx30LaNh.js.map → apollo-client.server-JYHXy9ib.js.map} +1 -1
  9. package/dist/{index-CqnZ-XiI.js → index-Bu-2kk3p.js} +2 -2
  10. package/dist/{index-CqnZ-XiI.js.map → index-Bu-2kk3p.js.map} +1 -1
  11. package/dist/{index-ChygDqeG.js → index-DgFDhFuO.js} +190 -82
  12. package/dist/{index-Bvc61lYS.js.map → index-DgFDhFuO.js.map} +1 -1
  13. package/dist/{index-D2TPDKw0.js → index-HopiPnjc.js} +2 -2
  14. package/dist/{index-D2TPDKw0.js.map → index-HopiPnjc.js.map} +1 -1
  15. package/dist/{index-Bvc61lYS.js → index-z7Y1nTVX.js} +190 -82
  16. package/dist/{index-ChygDqeG.js.map → index-z7Y1nTVX.js.map} +1 -1
  17. package/dist/index.cjs +1 -1
  18. package/dist/index.mjs +1 -1
  19. package/dist/test.cjs +1 -1
  20. package/dist/test.mjs +1 -1
  21. package/dist/types/functions/llm-deepseek.d.ts +4 -0
  22. package/package.json +1 -1
@@ -1628,8 +1628,17 @@ async function parseResponse(content, responseFormat, options = {}) {
1628
1628
  getLumicLogger().info(`Code block for type ${detectedType} detected and removed. Cleaned content: ${cleanedContent}`);
1629
1629
  }
1630
1630
  }
1631
- // Multiple JSON parsing strategies
1632
- // Default pipeline: direct parse -> extract from brackets -> remove leading/trailing text -> fixBrokenJson (string manipulation) -> FAIL
1631
+ // Whether the cleaned content structurally resembles JSON. Used to gate the
1632
+ // lenient fixBrokenJson strategy, which will otherwise coerce arbitrary
1633
+ // prose into a bogus object/array.
1634
+ const inputResemblesJson = cleanedContent.startsWith('{') || cleanedContent.startsWith('[');
1635
+ // Multiple JSON parsing strategies.
1636
+ // Default pipeline: direct parse -> extract from brackets -> remove
1637
+ // leading/trailing text -> GATED fixBrokenJson -> FAIL. fixBrokenJson is
1638
+ // deliberately gated (Strategy 4): its output is accepted only when the
1639
+ // input looked like JSON AND the repaired value round-trips through
1640
+ // JSON.stringify/JSON.parse, so a "successful" repair of non-JSON text is
1641
+ // rejected instead of silently returned as garbage.
1633
1642
  const jsonParsingStrategies = [
1634
1643
  // Strategy 1: Direct parsing
1635
1644
  () => {
@@ -1663,45 +1672,65 @@ async function parseResponse(content, responseFormat, options = {}) {
1663
1672
  return null;
1664
1673
  }
1665
1674
  },
1666
- // Strategy 4: Use fixBrokenJson (string manipulation only, no AI)
1675
+ // Strategy 4: Gated fixBrokenJson (string manipulation only, no AI)
1667
1676
  () => {
1668
- return fixBrokenJson(cleanedContent);
1677
+ if (!inputResemblesJson) {
1678
+ return null;
1679
+ }
1680
+ const fixed = fixBrokenJson(cleanedContent);
1681
+ if (fixed === null) {
1682
+ return null;
1683
+ }
1684
+ try {
1685
+ // Round-trip guard: ensures the repaired value is genuinely
1686
+ // JSON-serializable before we trust it.
1687
+ return JSON.parse(JSON.stringify(fixed));
1688
+ }
1689
+ catch {
1690
+ return null;
1691
+ }
1669
1692
  },
1670
1693
  ];
1671
1694
  // Try each parsing strategy
1672
1695
  for (const strategy of jsonParsingStrategies) {
1673
- const result = await strategy();
1696
+ const result = strategy();
1674
1697
  if (result !== null) {
1675
- return result;
1698
+ return finalizeJsonResult(result, responseFormat);
1676
1699
  }
1677
1700
  }
1678
1701
  // Strategy 5: Use AI fixing (only if explicitly enabled)
1679
1702
  if (enableAiFix) {
1680
1703
  getLumicLogger().warn('Using AI-powered JSON fixing. This adds cost and latency. Consider improving JSON generation instead.');
1704
+ let aiFixedJson = null;
1681
1705
  try {
1682
- const aiFixedJson = await fixJsonWithAI(cleanedContent);
1683
- if (aiFixedJson !== null) {
1684
- // Validate the AI-fixed JSON by attempting to stringify and re-parse it
1685
- // This ensures it's actually valid JSON and not just something that passed fixJsonWithAI
1686
- try {
1687
- const validated = JSON.parse(JSON.stringify(aiFixedJson));
1688
- return validated;
1689
- }
1690
- catch {
1691
- // AI returned something that looks like JSON but isn't valid
1692
- // Increment recursion depth and try parsing the AI response
1693
- getLumicLogger().warn('AI fixing returned invalid JSON, attempting recursive parse...');
1694
- return parseResponse(JSON.stringify(aiFixedJson), responseFormat, {
1695
- ...options,
1696
- _recursionDepth: recursionDepth + 1,
1697
- });
1698
- }
1699
- }
1706
+ aiFixedJson = await fixJsonWithAI(cleanedContent);
1700
1707
  }
1701
1708
  catch (error) {
1702
1709
  const errorMessage = error instanceof Error ? error.message : 'Unknown error';
1703
1710
  getLumicLogger().error(`AI JSON fixing failed: ${errorMessage}`);
1704
- // Continue to final error below
1711
+ // Fall through to the final error below.
1712
+ }
1713
+ if (aiFixedJson !== null) {
1714
+ let validated;
1715
+ try {
1716
+ // Validate the AI-fixed JSON by attempting to stringify and re-parse
1717
+ // it. This ensures it is actually valid JSON, not just something that
1718
+ // passed fixJsonWithAI.
1719
+ validated = JSON.parse(JSON.stringify(aiFixedJson));
1720
+ }
1721
+ catch {
1722
+ // AI returned something that looks like JSON but isn't valid.
1723
+ // Increment recursion depth and try parsing the AI response.
1724
+ getLumicLogger().warn('AI fixing returned invalid JSON, attempting recursive parse...');
1725
+ return parseResponse(JSON.stringify(aiFixedJson), responseFormat, {
1726
+ ...options,
1727
+ _recursionDepth: recursionDepth + 1,
1728
+ });
1729
+ }
1730
+ // Schema validation (json_schema format) happens here, OUTSIDE the
1731
+ // JSON.parse try/catch, so a schema mismatch propagates as a thrown
1732
+ // JsonParseError rather than being mistaken for invalid JSON.
1733
+ return finalizeJsonResult(validated, responseFormat);
1705
1734
  }
1706
1735
  }
1707
1736
  // If all strategies fail, throw an error
@@ -1712,6 +1741,106 @@ async function parseResponse(content, responseFormat, options = {}) {
1712
1741
  return content;
1713
1742
  }
1714
1743
  }
1744
+ /**
1745
+ * Reports the JSON type of a runtime value for schema-validation diagnostics.
1746
+ *
1747
+ * @param value The value whose JSON type should be described.
1748
+ * @returns One of `'null' | 'array' | 'object' | 'string' | 'number' | 'boolean' | 'undefined'`.
1749
+ */
1750
+ function jsonTypeOf(value) {
1751
+ if (value === null)
1752
+ return 'null';
1753
+ if (Array.isArray(value))
1754
+ return 'array';
1755
+ return typeof value;
1756
+ }
1757
+ /**
1758
+ * Extracts a declared primitive `type` string from a property schema, if present.
1759
+ *
1760
+ * @param propertySchema The (untyped) per-property JSON-Schema fragment.
1761
+ * @returns The declared type string, or null when none is declared.
1762
+ */
1763
+ function extractSchemaType(propertySchema) {
1764
+ if (typeof propertySchema === 'object' && propertySchema !== null && 'type' in propertySchema) {
1765
+ const declared = propertySchema.type;
1766
+ return typeof declared === 'string' ? declared : null;
1767
+ }
1768
+ return null;
1769
+ }
1770
+ /**
1771
+ * Checks whether a runtime value satisfies a declared JSON-Schema primitive
1772
+ * type. Unknown/unsupported type keywords are treated permissively (they never
1773
+ * cause a rejection), so this validator only ever rejects clear mismatches.
1774
+ *
1775
+ * @param value The runtime value to check.
1776
+ * @param expectedType The declared JSON-Schema type keyword.
1777
+ * @returns True when the value matches (or the keyword is unsupported).
1778
+ */
1779
+ function valueMatchesJsonType(value, expectedType) {
1780
+ switch (expectedType) {
1781
+ case 'string':
1782
+ return typeof value === 'string';
1783
+ case 'number':
1784
+ return typeof value === 'number';
1785
+ case 'integer':
1786
+ return typeof value === 'number' && Number.isInteger(value);
1787
+ case 'boolean':
1788
+ return typeof value === 'boolean';
1789
+ case 'object':
1790
+ return typeof value === 'object' && value !== null && !Array.isArray(value);
1791
+ case 'array':
1792
+ return Array.isArray(value);
1793
+ case 'null':
1794
+ return value === null;
1795
+ default:
1796
+ return true;
1797
+ }
1798
+ }
1799
+ /**
1800
+ * Validates a parsed value against a `json_schema` object schema. Enforces that
1801
+ * the value is a plain object, that every `required` property is present, and
1802
+ * that present properties whose schema declares a primitive `type` match it.
1803
+ *
1804
+ * @param value The parsed value to validate.
1805
+ * @param schema The object schema supplied on the response format.
1806
+ * @throws {JsonParseError} When the value violates the schema.
1807
+ */
1808
+ function validateJsonSchema(value, schema) {
1809
+ if (typeof value !== 'object' || value === null || Array.isArray(value)) {
1810
+ throw new JsonParseError(`JSON schema validation failed: expected an object but received ${jsonTypeOf(value)}.`);
1811
+ }
1812
+ const record = value;
1813
+ const missing = (schema.required ?? []).filter((key) => !(key in record));
1814
+ if (missing.length > 0) {
1815
+ throw new JsonParseError(`JSON schema validation failed: missing required properties: ${missing.join(', ')}.`);
1816
+ }
1817
+ for (const [key, propertySchema] of Object.entries(schema.properties)) {
1818
+ if (!(key in record))
1819
+ continue;
1820
+ const expectedType = extractSchemaType(propertySchema);
1821
+ if (expectedType !== null && !valueMatchesJsonType(record[key], expectedType)) {
1822
+ throw new JsonParseError(`JSON schema validation failed: property "${key}" expected type "${expectedType}" but received ${jsonTypeOf(record[key])}.`);
1823
+ }
1824
+ }
1825
+ }
1826
+ /**
1827
+ * Finalizes a successfully-parsed JSON value. When the caller supplied a
1828
+ * `json_schema` response format, the value is validated against that schema
1829
+ * before being returned so schema violations surface as a thrown
1830
+ * {@link JsonParseError} instead of flowing silently downstream. For plain
1831
+ * `json` formats the value is returned unchanged.
1832
+ *
1833
+ * @param value The parsed value produced by a parsing strategy.
1834
+ * @param responseFormat The originally requested response format.
1835
+ * @returns The value narrowed to `T`.
1836
+ * @throws {JsonParseError} When a supplied json_schema is not satisfied.
1837
+ */
1838
+ function finalizeJsonResult(value, responseFormat) {
1839
+ if (typeof responseFormat === 'object' && responseFormat?.type === 'json_schema') {
1840
+ validateJsonSchema(value, responseFormat.schema);
1841
+ }
1842
+ return value;
1843
+ }
1715
1844
 
1716
1845
  /**
1717
1846
  * Default timeout values (in milliseconds) for external service calls.
@@ -9048,6 +9177,10 @@ async function createDeepseekCompletion(content, responseFormat, options = {}) {
9048
9177
  * @param responseFormat The format of the response. Defaults to 'json'.
9049
9178
  * @param options Configuration options including model ('deepseek-chat' or 'deepseek-reasoner'), tools, and apiKey.
9050
9179
  * @return A promise that resolves to the response from the Deepseek API.
9180
+ * @throws {Error} If the requested capability (JSON output / tool calling) is
9181
+ * unsupported by the model, or if the underlying API call fails. This matches
9182
+ * the OpenAI and Anthropic providers, which surface failures by throwing
9183
+ * rather than returning a success-shaped response carrying an error payload.
9051
9184
  */
9052
9185
  const makeDeepseekCall = async (content, responseFormat = 'json', options = {}) => {
9053
9186
  // Set default model if not provided
@@ -9058,43 +9191,15 @@ const makeDeepseekCall = async (content, responseFormat = 'json', options = {})
9058
9191
  mergedOptions.model = DEFAULT_DEEPSEEK_OPTIONS.defaultModel;
9059
9192
  }
9060
9193
  const modelName = normalizeModelName(mergedOptions.model);
9061
- // Check if the requested response format is compatible with the model
9194
+ // Check if the requested response format is compatible with the model.
9195
+ // Throw rather than returning a fake-success LLMResponse: a caller that
9196
+ // asked for JSON must not silently receive an { error } payload typed as T.
9062
9197
  if (responseFormat !== 'text' && !supportsJsonOutput(modelName)) {
9063
- getLumicLogger().warn(`Model ${modelName} does not support JSON output. Will return error in the response.`);
9064
- return {
9065
- response: {
9066
- error: `Model ${modelName} does not support JSON output format.`
9067
- },
9068
- usage: {
9069
- prompt_tokens: 0,
9070
- completion_tokens: 0,
9071
- reasoning_tokens: 0,
9072
- provider: 'deepseek',
9073
- model: modelName,
9074
- cached_tokens: 0,
9075
- cost: 0,
9076
- },
9077
- tool_calls: undefined,
9078
- };
9198
+ throw new Error(`Model ${modelName} does not support JSON output format.`);
9079
9199
  }
9080
- // Check if tools are requested with a model that doesn't support them
9200
+ // Check if tools are requested with a model that doesn't support them.
9081
9201
  if (mergedOptions.tools && mergedOptions.tools.length > 0 && !supportsToolCalling(modelName)) {
9082
- getLumicLogger().warn(`Model ${modelName} does not support tool calling. Will return error in the response.`);
9083
- return {
9084
- response: {
9085
- error: `Model ${modelName} does not support tool calling.`
9086
- },
9087
- usage: {
9088
- prompt_tokens: 0,
9089
- completion_tokens: 0,
9090
- reasoning_tokens: 0,
9091
- provider: 'deepseek',
9092
- model: modelName,
9093
- cached_tokens: 0,
9094
- cost: 0,
9095
- },
9096
- tool_calls: undefined,
9097
- };
9202
+ throw new Error(`Model ${modelName} does not support tool calling.`);
9098
9203
  }
9099
9204
  try {
9100
9205
  const completion = await createDeepseekCompletion(content, responseFormat, mergedOptions);
@@ -9144,23 +9249,13 @@ const makeDeepseekCall = async (content, responseFormat = 'json', options = {})
9144
9249
  };
9145
9250
  }
9146
9251
  catch (error) {
9147
- // If there's an error due to incompatible features, return a structured error
9252
+ // Mirror the OpenAI/Anthropic providers: log with sanitized context and
9253
+ // rethrow so callers observe the failure. Returning a success-shaped
9254
+ // response with an { error } payload here previously let hard failures
9255
+ // (auth, timeout, rate-limit exhaustion, unparseable output) masquerade as
9256
+ // successful completions downstream.
9148
9257
  getLumicLogger().error(`Error in Deepseek API call: ${sanitizeError(error)}`);
9149
- return {
9150
- response: {
9151
- error: sanitizeError(error)
9152
- },
9153
- usage: {
9154
- prompt_tokens: 0,
9155
- completion_tokens: 0,
9156
- reasoning_tokens: 0,
9157
- provider: 'deepseek',
9158
- model: modelName,
9159
- cached_tokens: 0,
9160
- cost: 0,
9161
- },
9162
- tool_calls: undefined,
9163
- };
9258
+ throw error;
9164
9259
  }
9165
9260
  };
9166
9261
 
@@ -10094,14 +10189,27 @@ async function downloadFile(s3Client, bucketName, s3Key, localFilePath) {
10094
10189
  async function unzipFile(zipPath, destPath) {
10095
10190
  const zip = new AdmZip(zipPath);
10096
10191
  try {
10097
- zip.extractAllToAsync(destPath, true);
10098
- const stats = await getDirectoryStats(destPath);
10099
- return stats;
10192
+ // extractAllToAsync is fire-and-forget: it returns void and reports
10193
+ // failures through its callback. The previous call neither awaited it nor
10194
+ // observed the callback, so getDirectoryStats raced an in-flight (or
10195
+ // failed) extraction and any extraction error was silently dropped. Wrap
10196
+ // it in a Promise so the extraction is fully awaited and errors surface.
10197
+ await new Promise((resolve, reject) => {
10198
+ zip.extractAllToAsync(destPath, true, false, (error) => {
10199
+ if (error) {
10200
+ reject(error);
10201
+ }
10202
+ else {
10203
+ resolve();
10204
+ }
10205
+ });
10206
+ });
10207
+ return await getDirectoryStats(destPath);
10100
10208
  }
10101
10209
  catch (error) {
10102
10210
  const errorMessage = error instanceof Error ? error.message : String(error);
10103
10211
  getLumicLogger().error(`Error unzipping file: ${errorMessage}`);
10104
- throw error;
10212
+ throw new ZipError(`Failed to extract archive "${zipPath}" to "${destPath}": ${errorMessage}`, error);
10105
10213
  }
10106
10214
  }
10107
10215
  async function getDirectoryStats(dirPath) {
@@ -23055,11 +23163,11 @@ let poolConfig = DEFAULT_POOL_CONFIG;
23055
23163
  async function loadApolloModules() {
23056
23164
  if (typeof window === "undefined" || process.env.AWS_EXECUTION_ENV) {
23057
23165
  // Server-side (or Lambda): load the CommonJS‑based implementation.
23058
- return (await import('./apollo-client.server-CXLiLmSz.js'));
23166
+ return (await import('./apollo-client.server-DaXmxoBl.js'));
23059
23167
  }
23060
23168
  else {
23061
23169
  // Client-side: load the ESM‑based implementation.
23062
- return (await import('./apollo-client.client-DLW-p46Y.js'));
23170
+ return (await import('./apollo-client.client-Uv0-ZrFd.js'));
23063
23171
  }
23064
23172
  }
23065
23173
  /**
@@ -81583,4 +81691,4 @@ const lumic = {
81583
81691
  };
81584
81692
 
81585
81693
  export { GraphQLInterfaceType as $, print as A, getNamedType as B, isInputType as C, isRequiredArgument as D, isNamedType as E, GraphQLError as F, GraphQLNonNull as G, isOutputType as H, isRequiredInputField as I, isCompositeType as J, Kind as K, getNullableType as L, getEnterLeaveForKind as M, isNode as N, OperationTypeNode as O, didYouMean as P, naturalCompare as Q, suggestionList as R, specifiedScalarTypes as S, keyMap as T, isType as U, isNullableType as V, visit as W, visitInParallel as X, keyValMap as Y, assertObjectType as Z, GraphQLScalarType as _, isListType as a, validateGoogleSheetsRange as a$, GraphQLUnionType as a0, GraphQLInputObjectType as a1, assertNullableType as a2, assertInterfaceType as a3, mapValue as a4, isSpecifiedScalarType as a5, isPrintableAsBlockString as a6, printBlockString as a7, BREAK as a8, GRAPHQL_MAX_INT as a9, printSourceLocation as aA, resolveObjMapThunk as aB, resolveReadonlyArrayThunk as aC, valueFromASTUntyped as aD, version$4 as aE, versionInfo as aF, getAugmentedNamespace as aG, isDigit$1 as aH, isNameStart as aI, dedentBlockStringLines as aJ, isNameContinue as aK, setLumicLogger as aL, getLumicLogger as aM, sanitizeForLog as aN, sanitizeError as aO, sanitizeAWSAuth as aP, sanitizeObject as aQ, getSecrets as aR, resetSecrets as aS, requireSecret as aT, withRetry as aU, CircuitBreaker as aV, CircuitBreakerState as aW, CircuitBreakerOpenError as aX, DEFAULT_CIRCUIT_BREAKER_CONFIG as aY, validateSlackChannel as aZ, validateS3Key as a_, GRAPHQL_MIN_INT as aa, GraphQLFloat as ab, GraphQLInt as ac, Location as ad, Token as ae, assertAbstractType as af, assertCompositeType as ag, assertEnumType as ah, assertEnumValueName as ai, assertInputObjectType as aj, assertInputType as ak, assertLeafType as al, assertListType as am, assertNamedType as an, assertNonNullType as ao, assertOutputType as ap, assertScalarType as aq, assertType as ar, assertUnionType as as, assertWrappingType as at, formatError as au, getLocation as av, getVisitFn as aw, isWrappingType as ax, printError as ay, printLocation as az, isAbstractType as b, PDFError as b$, LLMCostTracker as b0, getLLMCostTracker as b1, setLLMCostTracker as b2, resetLLMCostTracker as b3, setMetricsCollector as b4, getMetricsCollector as b5, resetMetricsCollector as b6, withMetrics as b7, generateCorrelationId as b8, getCorrelationId as b9, openAIChatCompletionSchema as bA, openAIImageResponseSchema as bB, validateOpenAIChatCompletion as bC, safeValidateOpenAIChatCompletion as bD, perplexityResponseSchema as bE, validatePerplexityResponse as bF, safeValidatePerplexityResponse as bG, googleSheetsValueRangeSchema as bH, validateGoogleSheetsResponse as bI, safeValidateGoogleSheetsResponse as bJ, s3ListObjectsSchema as bK, s3GetObjectSchema as bL, lambdaInvokeResponseSchema as bM, validateS3ListObjects as bN, safeValidateS3ListObjects as bO, validateLambdaResponse as bP, safeValidateLambdaResponse as bQ, createValidator as bR, createSafeValidator as bS, LumicError as bT, SlackError as bU, LLMError as bV, AWSLambdaError as bW, AWSS3Error as bX, GoogleSheetsError as bY, PerplexityError as bZ, JsonParseError as b_, getCorrelationContext as ba, withCorrelationId as bb, getCorrelationHeaders as bc, TokenBucketRateLimiter as bd, RATE_LIMIT_PROFILES as be, getRateLimiter as bf, resetAllRateLimiters as bg, withRateLimit as bh, checkIntegrationHealth as bi, SUPPORTED_MODELS as bj, isValidModel as bk, getModelCapabilities as bl, getModelProvider as bm, MODEL_ALIASES as bn, OPENAI_COMPATIBLE_PROVIDERS as bo, PROVIDER_DEFAULT_MODELS as bp, LLM_DEFAULT_PROVIDER as bq, LLM_MINI_PROVIDER as br, LLM_NORMAL_PROVIDER as bs, LLM_ADVANCED_PROVIDER as bt, LLM_PROVIDER as bu, LLM_MODEL_MINI as bv, LLM_MODEL_NORMAL as bw, LLM_MODEL_ADVANCED as bx, makeAnthropicCall as by, makeOpenAICompatibleCall as bz, isInterfaceType as c, ZipError as c0, SLACK_TIMEOUT_MS as c1, PERPLEXITY_TIMEOUT_MS as c2, GOOGLE_SHEETS_TIMEOUT_MS as c3, LLM_TIMEOUT_MS as c4, AWS_LAMBDA_TIMEOUT_MS as c5, AWS_S3_TIMEOUT_MS as c6, OPENWEATHER_TIMEOUT_MS as c7, GENERIC_FETCH_TIMEOUT_MS as c8, isObjectType as d, assertName as e, devAssert as f, isObjectLike as g, defineArguments as h, isNonNullType as i, argsToArgsConfig as j, GraphQLBoolean as k, lumic as l, GraphQLString as m, instanceOf as n, inspect as o, isInputObjectType as p, isLeafType as q, isEnumType as r, GraphQLID as s, toObjMap as t, invariant as u, GraphQLObjectType as v, GraphQLEnumType as w, GraphQLList as x, isScalarType as y, isUnionType as z };
81586
- //# sourceMappingURL=index-Bvc61lYS.js.map
81694
+ //# sourceMappingURL=index-z7Y1nTVX.js.map