File tree Expand file tree Collapse file tree 6 files changed +721
-538
lines changed
packages/nebula/src/client Expand file tree Collapse file tree 6 files changed +721
-538
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,6 @@ export type CreateClientConfig<T extends DefaultClientOptions = ClientOptions> =
2323
2424export const client = createClient (
2525 createConfig < ClientOptions > ( {
26- baseUrl : "https://nebula-api.thirdweb-dev.com/ " ,
26+ baseUrl : "https://nebula-api.thirdweb-dev.com" ,
2727 } ) ,
2828) ;
Original file line number Diff line number Diff line change 1- import type { Client , Config , RequestOptions } from "./types.js " ;
1+ import type { Client , Config , RequestOptions } from "./types" ;
22import {
33 buildUrl ,
44 createConfig ,
77 mergeConfigs ,
88 mergeHeaders ,
99 setAuthParams ,
10- } from "./utils.js " ;
10+ } from "./utils" ;
1111
1212type ReqInit = Omit < RequestInit , "body" | "headers" > & {
1313 body ?: any ;
Original file line number Diff line number Diff line change 11export type { Auth } from "../core/auth.js" ;
22export type { QuerySerializerOptions } from "../core/bodySerializer.js" ;
33export {
4- formDataBodySerializer ,
5- jsonBodySerializer ,
6- urlSearchParamsBodySerializer ,
4+ formDataBodySerializer ,
5+ jsonBodySerializer ,
6+ urlSearchParamsBodySerializer ,
77} from "../core/bodySerializer.js" ;
88export { buildClientParams } from "../core/params.js" ;
99export { createClient } from "./client.js" ;
1010export type {
11- Client ,
12- ClientOptions ,
13- Config ,
14- CreateClientConfig ,
15- Options ,
16- OptionsLegacyParser ,
17- RequestOptions ,
18- RequestResult ,
19- ResponseStyle ,
20- TDataShape ,
11+ Client ,
12+ ClientOptions ,
13+ Config ,
14+ CreateClientConfig ,
15+ Options ,
16+ OptionsLegacyParser ,
17+ RequestOptions ,
18+ RequestResult ,
19+ ResponseStyle ,
20+ TDataShape ,
2121} from "./types.js" ;
2222export { createConfig , mergeHeaders } from "./utils.js" ;
You can’t perform that action at this time.
0 commit comments