Skip to content

FriendlyTransferOptions

type FriendlyTransferOptions = Omit<RunRouteOptions, "client" | "route"> & {
routeId?: string;
routeName?: string;
};

Defined in: src/client/operations.ts:28

Shared options consumed by uploadFile, downloadFile, and copyBetween.

NameTypeDescriptionDefined in
routeId?stringStable route id assigned to the synthetic route. Defaults to "upload:...", "download:...", or "copy:...".src/client/operations.ts:30
routeName?stringOptional human-readable route name forwarded to telemetry.src/client/operations.ts:32