Skip to content

Commit d574ea2

Browse files
committed
fix: update nebula SDK with latest changes.
1 parent 5ec35e1 commit d574ea2

File tree

6 files changed

+721
-538
lines changed

6 files changed

+721
-538
lines changed

packages/nebula/src/client/client.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ export type CreateClientConfig<T extends DefaultClientOptions = ClientOptions> =
2323

2424
export const client = createClient(
2525
createConfig<ClientOptions>({
26-
baseUrl: "https://nebula-api.thirdweb-dev.com/",
26+
baseUrl: "https://nebula-api.thirdweb-dev.com",
2727
}),
2828
);

packages/nebula/src/client/client/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Client, Config, RequestOptions } from "./types.js";
1+
import type { Client, Config, RequestOptions } from "./types";
22
import {
33
buildUrl,
44
createConfig,
@@ -7,7 +7,7 @@ import {
77
mergeConfigs,
88
mergeHeaders,
99
setAuthParams,
10-
} from "./utils.js";
10+
} from "./utils";
1111

1212
type ReqInit = Omit<RequestInit, "body" | "headers"> & {
1313
body?: any;
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
export type { Auth } from "../core/auth.js";
22
export type { QuerySerializerOptions } from "../core/bodySerializer.js";
33
export {
4-
formDataBodySerializer,
5-
jsonBodySerializer,
6-
urlSearchParamsBodySerializer,
4+
formDataBodySerializer,
5+
jsonBodySerializer,
6+
urlSearchParamsBodySerializer,
77
} from "../core/bodySerializer.js";
88
export { buildClientParams } from "../core/params.js";
99
export { createClient } from "./client.js";
1010
export 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";
2222
export { createConfig, mergeHeaders } from "./utils.js";

0 commit comments

Comments
 (0)