@@ -7,6 +7,7 @@ import { apiClientManager } from "../apiClientManager-api.js";
7
7
import { zodfetch } from "../zodfetch.js" ;
8
8
import { z } from "zod" ;
9
9
import type { RetryOptions } from "../schemas/index.js" ;
10
+ import { ApiClient } from "../apiClient/index.js" ;
10
11
11
12
export type IOPacket = {
12
13
data ?: string | undefined ;
@@ -36,8 +37,11 @@ export async function parsePacket(value: IOPacket): Promise<any> {
36
37
}
37
38
}
38
39
39
- export async function conditionallyImportAndParsePacket ( value : IOPacket ) : Promise < any > {
40
- const importedPacket = await conditionallyImportPacket ( value ) ;
40
+ export async function conditionallyImportAndParsePacket (
41
+ value : IOPacket ,
42
+ client ?: ApiClient
43
+ ) : Promise < any > {
44
+ const importedPacket = await conditionallyImportPacket ( value , undefined , client ) ;
41
45
42
46
return await parsePacket ( importedPacket ) ;
43
47
}
@@ -159,19 +163,20 @@ async function exportPacket(packet: IOPacket, pathPrefix: string): Promise<IOPac
159
163
160
164
export async function conditionallyImportPacket (
161
165
packet : IOPacket ,
162
- tracer ?: TriggerTracer
166
+ tracer ?: TriggerTracer ,
167
+ client ?: ApiClient
163
168
) : Promise < IOPacket > {
164
169
if ( packet . dataType !== "application/store" ) {
165
170
return packet ;
166
171
}
167
172
168
173
if ( ! tracer ) {
169
- return await importPacket ( packet ) ;
174
+ return await importPacket ( packet , undefined , client ) ;
170
175
} else {
171
176
const result = await tracer . startActiveSpan (
172
177
"store.downloadPayload" ,
173
178
async ( span ) => {
174
- return await importPacket ( packet , span ) ;
179
+ return await importPacket ( packet , span , client ) ;
175
180
} ,
176
181
{
177
182
attributes : {
@@ -209,16 +214,18 @@ export async function resolvePresignedPacketUrl(
209
214
}
210
215
}
211
216
212
- async function importPacket ( packet : IOPacket , span ?: Span ) : Promise < IOPacket > {
217
+ async function importPacket ( packet : IOPacket , span ?: Span , client ?: ApiClient ) : Promise < IOPacket > {
213
218
if ( ! packet . data ) {
214
219
return packet ;
215
220
}
216
221
217
- if ( ! apiClientManager . client ) {
222
+ const $client = client ?? apiClientManager . client ;
223
+
224
+ if ( ! $client ) {
218
225
return packet ;
219
226
}
220
227
221
- const presignedResponse = await apiClientManager . client . getPayloadUrl ( packet . data ) ;
228
+ const presignedResponse = await $ client. getPayloadUrl ( packet . data ) ;
222
229
223
230
const response = await zodfetch ( z . any ( ) , presignedResponse . presignedUrl , undefined , {
224
231
retry : ioRetryOptions ,
0 commit comments