Typescript SDK - fetcher option

The documentation mentions an option called “fetcher” for using the package from an unsupported environment.

However FrameioClient.Options does not have a fetcher option:

FrameioClient {
    interface Options {
        environment?: core.Supplier<environments.FrameioEnvironment | string>;
        /** Specify a custom URL to connect the client to. */
        baseUrl?: core.Supplier<string>;
        token: core.Supplier<core.BearerToken>;
        /** Additional headers to include in requests. */
        headers?: Record<string, string | core.Supplier<string | null | undefined> | null | undefined>;
    }
}

This is in frameio@1.2.3

hi @jn441 thanks for catching this, I will bring it up to the SDK team

edit: This has been fixed and should go out for 1.2.4 next week

1 Like