@adaptic/lumic-utils 1.0.21 → 1.0.23
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/{apollo-client.client-CUIakkzs.js → apollo-client.client-DrSy1wz-.js} +4 -4
- package/dist/{apollo-client.client-CUIakkzs.js.map → apollo-client.client-DrSy1wz-.js.map} +1 -1
- package/dist/{apollo-client.client-ByADDB46.js → apollo-client.client-FeVPHV0i.js} +3 -3
- package/dist/{apollo-client.client-ByADDB46.js.map → apollo-client.client-FeVPHV0i.js.map} +1 -1
- package/dist/{apollo-client.server-BnZhh39o.js → apollo-client.server-BEGHAF48.js} +3 -3
- package/dist/{apollo-client.server-BnZhh39o.js.map → apollo-client.server-BEGHAF48.js.map} +1 -1
- package/dist/{apollo-client.server-JucuAyrj.js → apollo-client.server-CJ6iRLa2.js} +3 -3
- package/dist/{apollo-client.server-JucuAyrj.js.map → apollo-client.server-CJ6iRLa2.js.map} +1 -1
- package/dist/{index-DYehXKUX.js → index-CWoI2dXN.js} +194 -27
- package/dist/{index-Ca3x8X5U.js.map → index-CWoI2dXN.js.map} +1 -1
- package/dist/{index-DT0dXUtn.js → index-Dz0wKyTF.js} +2 -2
- package/dist/{index-DT0dXUtn.js.map → index-Dz0wKyTF.js.map} +1 -1
- package/dist/{index-Ca3x8X5U.js → index-WGzi__C5.js} +194 -27
- package/dist/{index-DYehXKUX.js.map → index-WGzi__C5.js.map} +1 -1
- package/dist/{index-BLXN1stF.js → index-vRskhk1H.js} +2 -2
- package/dist/{index-BLXN1stF.js.map → index-vRskhk1H.js.map} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/test.cjs +1 -1
- package/dist/test.mjs +1 -1
- package/dist/types/functions/llm-config.d.ts +1 -1
- package/dist/types/types/openai-types.d.ts +100 -10
- package/package.json +1 -1
|
@@ -99,6 +99,33 @@ const OPENAI_COMPATIBLE_PROVIDERS = {
|
|
|
99
99
|
* Supported models with their capabilities
|
|
100
100
|
*/
|
|
101
101
|
const SUPPORTED_MODELS = {
|
|
102
|
+
// ── OpenAI GPT-5.5 series (current flagship) ─────────────────────────
|
|
103
|
+
// GPT-5.x series: OpenAI's 2026 API constraint — only the default
|
|
104
|
+
// temperature value (1.0) is accepted. Passing any other value returns
|
|
105
|
+
// HTTP 400: "Unsupported value: 'temperature' does not support 0.2 with
|
|
106
|
+
// this model. Only the default (1) value is supported." Mark
|
|
107
|
+
// supportsTemperature=false so the lumic-utils gate at llm-call.ts:194
|
|
108
|
+
// OMITS the parameter entirely (OpenAI then uses its default of 1.0).
|
|
109
|
+
// Ref: community.openai.com/t/temperature-in-gpt-5-models/1337133
|
|
110
|
+
// Ref: developers.openai.com/api/docs/models/gpt-5.4-nano
|
|
111
|
+
'gpt-5.5': {
|
|
112
|
+
provider: 'openai',
|
|
113
|
+
supportsTools: true,
|
|
114
|
+
supportsJson: true,
|
|
115
|
+
supportsStructuredOutput: true,
|
|
116
|
+
supportsDeveloperPrompt: true,
|
|
117
|
+
supportsTemperature: false,
|
|
118
|
+
isReasoningModel: false,
|
|
119
|
+
},
|
|
120
|
+
'gpt-5.5-pro': {
|
|
121
|
+
provider: 'openai',
|
|
122
|
+
supportsTools: true,
|
|
123
|
+
supportsJson: true,
|
|
124
|
+
supportsStructuredOutput: true,
|
|
125
|
+
supportsDeveloperPrompt: true,
|
|
126
|
+
supportsTemperature: false,
|
|
127
|
+
isReasoningModel: false,
|
|
128
|
+
},
|
|
102
129
|
// ── OpenAI GPT-5.4 series ────────────────────────────────────────────
|
|
103
130
|
'gpt-5.4': {
|
|
104
131
|
provider: 'openai',
|
|
@@ -106,7 +133,7 @@ const SUPPORTED_MODELS = {
|
|
|
106
133
|
supportsJson: true,
|
|
107
134
|
supportsStructuredOutput: true,
|
|
108
135
|
supportsDeveloperPrompt: true,
|
|
109
|
-
supportsTemperature:
|
|
136
|
+
supportsTemperature: false,
|
|
110
137
|
isReasoningModel: false,
|
|
111
138
|
},
|
|
112
139
|
'gpt-5.4-mini': {
|
|
@@ -115,7 +142,7 @@ const SUPPORTED_MODELS = {
|
|
|
115
142
|
supportsJson: true,
|
|
116
143
|
supportsStructuredOutput: true,
|
|
117
144
|
supportsDeveloperPrompt: true,
|
|
118
|
-
supportsTemperature:
|
|
145
|
+
supportsTemperature: false,
|
|
119
146
|
isReasoningModel: false,
|
|
120
147
|
},
|
|
121
148
|
'gpt-5.4-nano': {
|
|
@@ -124,7 +151,7 @@ const SUPPORTED_MODELS = {
|
|
|
124
151
|
supportsJson: true,
|
|
125
152
|
supportsStructuredOutput: true,
|
|
126
153
|
supportsDeveloperPrompt: true,
|
|
127
|
-
supportsTemperature:
|
|
154
|
+
supportsTemperature: false,
|
|
128
155
|
isReasoningModel: false,
|
|
129
156
|
},
|
|
130
157
|
// ── OpenAI GPT-5 series ──────────────────────────────────────────────
|
|
@@ -134,7 +161,7 @@ const SUPPORTED_MODELS = {
|
|
|
134
161
|
supportsJson: true,
|
|
135
162
|
supportsStructuredOutput: true,
|
|
136
163
|
supportsDeveloperPrompt: true,
|
|
137
|
-
supportsTemperature:
|
|
164
|
+
supportsTemperature: false,
|
|
138
165
|
isReasoningModel: false,
|
|
139
166
|
},
|
|
140
167
|
'gpt-5-mini': {
|
|
@@ -143,7 +170,7 @@ const SUPPORTED_MODELS = {
|
|
|
143
170
|
supportsJson: true,
|
|
144
171
|
supportsStructuredOutput: true,
|
|
145
172
|
supportsDeveloperPrompt: true,
|
|
146
|
-
supportsTemperature:
|
|
173
|
+
supportsTemperature: false,
|
|
147
174
|
isReasoningModel: false,
|
|
148
175
|
},
|
|
149
176
|
// ── OpenAI GPT-4.1 series ────────────────────────────────────────────
|
|
@@ -221,6 +248,15 @@ const SUPPORTED_MODELS = {
|
|
|
221
248
|
isReasoningModel: true,
|
|
222
249
|
},
|
|
223
250
|
// ── Anthropic Claude models ──────────────────────────────────────────
|
|
251
|
+
'claude-opus-4-7': {
|
|
252
|
+
provider: 'anthropic',
|
|
253
|
+
supportsTools: true,
|
|
254
|
+
supportsJson: false,
|
|
255
|
+
supportsStructuredOutput: false,
|
|
256
|
+
supportsDeveloperPrompt: true,
|
|
257
|
+
supportsTemperature: true,
|
|
258
|
+
isReasoningModel: false,
|
|
259
|
+
},
|
|
224
260
|
'claude-opus-4-6': {
|
|
225
261
|
provider: 'anthropic',
|
|
226
262
|
supportsTools: true,
|
|
@@ -249,6 +285,24 @@ const SUPPORTED_MODELS = {
|
|
|
249
285
|
isReasoningModel: false,
|
|
250
286
|
},
|
|
251
287
|
// ── Deepseek models ──────────────────────────────────────────────────
|
|
288
|
+
'deepseek-v4-pro': {
|
|
289
|
+
provider: 'deepseek',
|
|
290
|
+
supportsTools: true,
|
|
291
|
+
supportsJson: true,
|
|
292
|
+
supportsStructuredOutput: false,
|
|
293
|
+
supportsDeveloperPrompt: true,
|
|
294
|
+
supportsTemperature: true,
|
|
295
|
+
isReasoningModel: true,
|
|
296
|
+
},
|
|
297
|
+
'deepseek-v4-flash': {
|
|
298
|
+
provider: 'deepseek',
|
|
299
|
+
supportsTools: true,
|
|
300
|
+
supportsJson: true,
|
|
301
|
+
supportsStructuredOutput: false,
|
|
302
|
+
supportsDeveloperPrompt: true,
|
|
303
|
+
supportsTemperature: true,
|
|
304
|
+
isReasoningModel: true,
|
|
305
|
+
},
|
|
252
306
|
'deepseek-chat': {
|
|
253
307
|
provider: 'deepseek',
|
|
254
308
|
supportsTools: true,
|
|
@@ -268,6 +322,24 @@ const SUPPORTED_MODELS = {
|
|
|
268
322
|
isReasoningModel: true,
|
|
269
323
|
},
|
|
270
324
|
// ── Kimi (Moonshot) models ───────────────────────────────────────────
|
|
325
|
+
'kimi-k2.6': {
|
|
326
|
+
provider: 'kimi',
|
|
327
|
+
supportsTools: true,
|
|
328
|
+
supportsJson: true,
|
|
329
|
+
supportsStructuredOutput: false,
|
|
330
|
+
supportsDeveloperPrompt: true,
|
|
331
|
+
supportsTemperature: true,
|
|
332
|
+
isReasoningModel: false,
|
|
333
|
+
},
|
|
334
|
+
'kimi-k2.5': {
|
|
335
|
+
provider: 'kimi',
|
|
336
|
+
supportsTools: true,
|
|
337
|
+
supportsJson: true,
|
|
338
|
+
supportsStructuredOutput: false,
|
|
339
|
+
supportsDeveloperPrompt: true,
|
|
340
|
+
supportsTemperature: true,
|
|
341
|
+
isReasoningModel: false,
|
|
342
|
+
},
|
|
271
343
|
'kimi-k2-0905-preview': {
|
|
272
344
|
provider: 'kimi',
|
|
273
345
|
supportsTools: true,
|
|
@@ -333,6 +405,33 @@ const SUPPORTED_MODELS = {
|
|
|
333
405
|
isReasoningModel: false,
|
|
334
406
|
},
|
|
335
407
|
// ── xAI Grok models ─────────────────────────────────────────────────
|
|
408
|
+
'grok-4.3': {
|
|
409
|
+
provider: 'xai',
|
|
410
|
+
supportsTools: true,
|
|
411
|
+
supportsJson: true,
|
|
412
|
+
supportsStructuredOutput: true,
|
|
413
|
+
supportsDeveloperPrompt: true,
|
|
414
|
+
supportsTemperature: true,
|
|
415
|
+
isReasoningModel: false,
|
|
416
|
+
},
|
|
417
|
+
'grok-4.20': {
|
|
418
|
+
provider: 'xai',
|
|
419
|
+
supportsTools: true,
|
|
420
|
+
supportsJson: true,
|
|
421
|
+
supportsStructuredOutput: true,
|
|
422
|
+
supportsDeveloperPrompt: true,
|
|
423
|
+
supportsTemperature: true,
|
|
424
|
+
isReasoningModel: false,
|
|
425
|
+
},
|
|
426
|
+
'grok-4.1-fast': {
|
|
427
|
+
provider: 'xai',
|
|
428
|
+
supportsTools: true,
|
|
429
|
+
supportsJson: true,
|
|
430
|
+
supportsStructuredOutput: true,
|
|
431
|
+
supportsDeveloperPrompt: true,
|
|
432
|
+
supportsTemperature: true,
|
|
433
|
+
isReasoningModel: false,
|
|
434
|
+
},
|
|
336
435
|
'grok-4': {
|
|
337
436
|
provider: 'xai',
|
|
338
437
|
supportsTools: true,
|
|
@@ -411,21 +510,41 @@ const SUPPORTED_MODELS = {
|
|
|
411
510
|
* Common model aliases that map to canonical model names
|
|
412
511
|
*/
|
|
413
512
|
const MODEL_ALIASES = {
|
|
414
|
-
|
|
415
|
-
'
|
|
416
|
-
|
|
513
|
+
// OpenAI aliases
|
|
514
|
+
'gpt-5.5-flagship': 'gpt-5.5',
|
|
515
|
+
// Anthropic aliases
|
|
516
|
+
'claude-opus-4.7': 'claude-opus-4-7',
|
|
517
|
+
'claude-opus-4.6': 'claude-opus-4-6',
|
|
518
|
+
'claude-sonnet-4.6': 'claude-sonnet-4-6',
|
|
519
|
+
'claude-haiku-4.5': 'claude-haiku-4-5',
|
|
520
|
+
'claude-4-opus': 'claude-opus-4-7',
|
|
417
521
|
'claude-4-sonnet': 'claude-sonnet-4-6',
|
|
418
522
|
'claude-4-haiku': 'claude-haiku-4-5',
|
|
523
|
+
'claude-4.7-opus': 'claude-opus-4-7',
|
|
524
|
+
'claude-4.6-opus': 'claude-opus-4-6',
|
|
525
|
+
// Deepseek aliases (legacy names route to V4 Flash thinking modes per DeepSeek migration policy)
|
|
526
|
+
'deepseek-r1': 'deepseek-reasoner',
|
|
527
|
+
'deepseek-v3': 'deepseek-chat',
|
|
528
|
+
'deepseek-v4': 'deepseek-v4-pro',
|
|
529
|
+
// xAI aliases
|
|
419
530
|
'grok-4-0709': 'grok-4',
|
|
531
|
+
'grok-3-fast': 'grok-4-fast-non-reasoning',
|
|
532
|
+
'grok-3-mini-fast': 'grok-3-mini',
|
|
533
|
+
'grok-4-3': 'grok-4.3',
|
|
534
|
+
'grok-4-20': 'grok-4.20',
|
|
535
|
+
// Gemini aliases
|
|
420
536
|
'gemini-pro': 'gemini-3.1-pro-preview',
|
|
421
537
|
'gemini-flash': 'gemini-3-flash-preview',
|
|
422
|
-
'
|
|
423
|
-
'
|
|
538
|
+
'gemini-3.1-pro': 'gemini-3.1-pro-preview',
|
|
539
|
+
'gemini-3-flash': 'gemini-3-flash-preview',
|
|
540
|
+
'gemini-3.1-flash-lite': 'gemini-3.1-flash-lite-preview',
|
|
541
|
+
// Kimi aliases
|
|
542
|
+
'moonshot-v1-auto': 'kimi-k2.6',
|
|
543
|
+
'kimi-k3': 'kimi-k2.6',
|
|
544
|
+
// Qwen aliases
|
|
424
545
|
'qwen-plus': 'qwen3.5-plus',
|
|
425
546
|
'qwen-max': 'qwen3-max',
|
|
426
547
|
'qwen-turbo': 'qwen3.5-flash',
|
|
427
|
-
'grok-3-fast': 'grok-4-fast-non-reasoning',
|
|
428
|
-
'grok-3-mini-fast': 'grok-3-mini',
|
|
429
548
|
};
|
|
430
549
|
/**
|
|
431
550
|
* Type guard to check if a string is a valid supported model
|
|
@@ -455,12 +574,12 @@ function getModelProvider(model) {
|
|
|
455
574
|
* Default model tiers per provider for use with LLM_MODEL_MINI/NORMAL/ADVANCED env vars
|
|
456
575
|
*/
|
|
457
576
|
const PROVIDER_DEFAULT_MODELS = {
|
|
458
|
-
openai: { mini: 'gpt-5.4-nano', normal: 'gpt-5.4-mini', advanced: 'gpt-5.
|
|
459
|
-
anthropic: { mini: 'claude-haiku-4-5', normal: 'claude-sonnet-4-6', advanced: 'claude-opus-4-
|
|
460
|
-
deepseek: { mini: 'deepseek-
|
|
461
|
-
kimi: { mini: 'kimi-k2-0905-preview', normal: 'kimi-k2
|
|
577
|
+
openai: { mini: 'gpt-5.4-nano', normal: 'gpt-5.4-mini', advanced: 'gpt-5.5' },
|
|
578
|
+
anthropic: { mini: 'claude-haiku-4-5', normal: 'claude-sonnet-4-6', advanced: 'claude-opus-4-7' },
|
|
579
|
+
deepseek: { mini: 'deepseek-v4-flash', normal: 'deepseek-v4-flash', advanced: 'deepseek-v4-pro' },
|
|
580
|
+
kimi: { mini: 'kimi-k2-0905-preview', normal: 'kimi-k2.5', advanced: 'kimi-k2.6' },
|
|
462
581
|
qwen: { mini: 'qwen3.5-flash', normal: 'qwen3.5-plus', advanced: 'qwen3-max' },
|
|
463
|
-
xai: { mini: 'grok-
|
|
582
|
+
xai: { mini: 'grok-4.1-fast', normal: 'grok-4-fast-non-reasoning', advanced: 'grok-4.3' },
|
|
464
583
|
gemini: { mini: 'gemini-3.1-flash-lite-preview', normal: 'gemini-3-flash-preview', advanced: 'gemini-3.1-pro-preview' },
|
|
465
584
|
};
|
|
466
585
|
|
|
@@ -769,7 +888,7 @@ const DEFAULT_DEVELOPER_PROMPT = `
|
|
|
769
888
|
Respond only with final content (e.g. code, a json or yaml object, a formatted string, or a markdown document) and nothing else. Do not reply with a preamble, introduction, or conclusion.
|
|
770
889
|
`;
|
|
771
890
|
/**
|
|
772
|
-
* Token costs in USD per token. Last updated
|
|
891
|
+
* Token costs in USD per token. Last updated May 2026.
|
|
773
892
|
*
|
|
774
893
|
* `cacheHitCost` reflects OpenAI's cached-input billing rate (~50% of the
|
|
775
894
|
* standard input rate per OpenAI's prompt caching documentation). When set,
|
|
@@ -778,6 +897,16 @@ const DEFAULT_DEVELOPER_PROMPT = `
|
|
|
778
897
|
* rate (a silent ~50% cost overstatement for cache-friendly workloads).
|
|
779
898
|
*/
|
|
780
899
|
const openAiModelCosts = {
|
|
900
|
+
'gpt-5.5': {
|
|
901
|
+
inputCost: 5 / 1_000_000,
|
|
902
|
+
cacheHitCost: 2.5 / 1_000_000,
|
|
903
|
+
outputCost: 30 / 1_000_000,
|
|
904
|
+
},
|
|
905
|
+
'gpt-5.5-pro': {
|
|
906
|
+
inputCost: 30 / 1_000_000,
|
|
907
|
+
cacheHitCost: 15 / 1_000_000,
|
|
908
|
+
outputCost: 180 / 1_000_000,
|
|
909
|
+
},
|
|
781
910
|
'gpt-5.4': {
|
|
782
911
|
inputCost: 2.5 / 1_000_000,
|
|
783
912
|
cacheHitCost: 1.25 / 1_000_000,
|
|
@@ -845,6 +974,11 @@ const openAiModelCosts = {
|
|
|
845
974
|
},
|
|
846
975
|
};
|
|
847
976
|
const anthropicModelCosts = {
|
|
977
|
+
'claude-opus-4-7': {
|
|
978
|
+
inputCost: 5 / 1_000_000,
|
|
979
|
+
outputCost: 25 / 1_000_000,
|
|
980
|
+
cacheHitCost: 0.5 / 1_000_000,
|
|
981
|
+
},
|
|
848
982
|
'claude-opus-4-6': {
|
|
849
983
|
inputCost: 15 / 1_000_000,
|
|
850
984
|
outputCost: 75 / 1_000_000,
|
|
@@ -862,6 +996,16 @@ const anthropicModelCosts = {
|
|
|
862
996
|
},
|
|
863
997
|
};
|
|
864
998
|
const deepseekModelCosts = {
|
|
999
|
+
'deepseek-v4-pro': {
|
|
1000
|
+
inputCost: 0.55 / 1_000_000,
|
|
1001
|
+
cacheHitCost: 0.14 / 1_000_000,
|
|
1002
|
+
outputCost: 2.19 / 1_000_000,
|
|
1003
|
+
},
|
|
1004
|
+
'deepseek-v4-flash': {
|
|
1005
|
+
inputCost: 0.27 / 1_000_000,
|
|
1006
|
+
cacheHitCost: 0.07 / 1_000_000,
|
|
1007
|
+
outputCost: 1.1 / 1_000_000,
|
|
1008
|
+
},
|
|
865
1009
|
'deepseek-chat': {
|
|
866
1010
|
inputCost: 0.27 / 1_000_000,
|
|
867
1011
|
cacheHitCost: 0.07 / 1_000_000,
|
|
@@ -874,6 +1018,14 @@ const deepseekModelCosts = {
|
|
|
874
1018
|
},
|
|
875
1019
|
};
|
|
876
1020
|
const kimiModelCosts = {
|
|
1021
|
+
'kimi-k2.6': {
|
|
1022
|
+
inputCost: 0.74 / 1_000_000,
|
|
1023
|
+
outputCost: 3.49 / 1_000_000,
|
|
1024
|
+
},
|
|
1025
|
+
'kimi-k2.5': {
|
|
1026
|
+
inputCost: 0.44 / 1_000_000,
|
|
1027
|
+
outputCost: 2 / 1_000_000,
|
|
1028
|
+
},
|
|
877
1029
|
'kimi-k2-0905-preview': {
|
|
878
1030
|
inputCost: 0.15 / 1_000_000,
|
|
879
1031
|
outputCost: 0.6 / 1_000_000,
|
|
@@ -906,6 +1058,21 @@ const qwenModelCosts = {
|
|
|
906
1058
|
},
|
|
907
1059
|
};
|
|
908
1060
|
const xaiModelCosts = {
|
|
1061
|
+
'grok-4.3': {
|
|
1062
|
+
inputCost: 1.25 / 1_000_000,
|
|
1063
|
+
outputCost: 2.5 / 1_000_000,
|
|
1064
|
+
cacheHitCost: 0.31 / 1_000_000,
|
|
1065
|
+
},
|
|
1066
|
+
'grok-4.20': {
|
|
1067
|
+
inputCost: 2 / 1_000_000,
|
|
1068
|
+
outputCost: 6 / 1_000_000,
|
|
1069
|
+
cacheHitCost: 0.5 / 1_000_000,
|
|
1070
|
+
},
|
|
1071
|
+
'grok-4.1-fast': {
|
|
1072
|
+
inputCost: 0.2 / 1_000_000,
|
|
1073
|
+
outputCost: 0.5 / 1_000_000,
|
|
1074
|
+
cacheHitCost: 0.05 / 1_000_000,
|
|
1075
|
+
},
|
|
909
1076
|
'grok-4': {
|
|
910
1077
|
inputCost: 3 / 1_000_000,
|
|
911
1078
|
outputCost: 15 / 1_000_000,
|
|
@@ -932,16 +1099,16 @@ const xaiModelCosts = {
|
|
|
932
1099
|
};
|
|
933
1100
|
const geminiModelCosts = {
|
|
934
1101
|
'gemini-3.1-pro-preview': {
|
|
935
|
-
inputCost:
|
|
936
|
-
outputCost:
|
|
1102
|
+
inputCost: 2 / 1_000_000,
|
|
1103
|
+
outputCost: 12 / 1_000_000,
|
|
937
1104
|
},
|
|
938
1105
|
'gemini-3-flash-preview': {
|
|
939
|
-
inputCost: 0.
|
|
940
|
-
outputCost:
|
|
1106
|
+
inputCost: 0.5 / 1_000_000,
|
|
1107
|
+
outputCost: 3 / 1_000_000,
|
|
941
1108
|
},
|
|
942
1109
|
'gemini-3.1-flash-lite-preview': {
|
|
943
|
-
inputCost: 0.
|
|
944
|
-
outputCost:
|
|
1110
|
+
inputCost: 0.25 / 1_000_000,
|
|
1111
|
+
outputCost: 1.5 / 1_000_000,
|
|
945
1112
|
},
|
|
946
1113
|
};
|
|
947
1114
|
/**
|
|
@@ -22850,11 +23017,11 @@ let poolConfig = DEFAULT_POOL_CONFIG;
|
|
|
22850
23017
|
async function loadApolloModules() {
|
|
22851
23018
|
if (typeof window === "undefined" || process.env.AWS_EXECUTION_ENV) {
|
|
22852
23019
|
// Server-side (or Lambda): load the CommonJS‑based implementation.
|
|
22853
|
-
return (await Promise.resolve().then(function () { return require('./apollo-client.server-
|
|
23020
|
+
return (await Promise.resolve().then(function () { return require('./apollo-client.server-BEGHAF48.js'); }));
|
|
22854
23021
|
}
|
|
22855
23022
|
else {
|
|
22856
23023
|
// Client-side: load the ESM‑based implementation.
|
|
22857
|
-
return (await Promise.resolve().then(function () { return require('./apollo-client.client-
|
|
23024
|
+
return (await Promise.resolve().then(function () { return require('./apollo-client.client-FeVPHV0i.js'); }));
|
|
22858
23025
|
}
|
|
22859
23026
|
}
|
|
22860
23027
|
/**
|
|
@@ -81565,4 +81732,4 @@ exports.withCorrelationId = withCorrelationId;
|
|
|
81565
81732
|
exports.withMetrics = withMetrics;
|
|
81566
81733
|
exports.withRateLimit = withRateLimit;
|
|
81567
81734
|
exports.withRetry = withRetry;
|
|
81568
|
-
//# sourceMappingURL=index-
|
|
81735
|
+
//# sourceMappingURL=index-WGzi__C5.js.map
|