Skip to content

Commit f544086

Browse files
fix url
1 parent 1098ddf commit f544086

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { defineConfig } from "@hey-api/openapi-ts";
22

33
export default defineConfig({
4-
input: "https://engine.thirdweb-dev.com/openapi",
5-
// input: "http://localhost:3001/openapi",
4+
input: "https://engine.thirdweb.com/openapi",
65
output: { format: "biome", lint: "biome", path: "src/client" },
76
});

packages/engine/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://engine.thirdweb-dev.com",
26+
baseUrl: "https://engine.thirdweb.com",
2727
}),
2828
);

packages/engine/src/client/types.gen.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,7 @@ export type ExecutionOptions = BaseExecutionOptions & SpecificExecutionOptions;
650650
*/
651651
export type IawError =
652652
| {
653+
message: string;
653654
type: "API_ERROR";
654655
}
655656
| {
@@ -1696,5 +1697,5 @@ export type SearchActivityLogsResponse =
16961697
SearchActivityLogsResponses[keyof SearchActivityLogsResponses];
16971698

16981699
export type ClientOptions = {
1699-
baseUrl: "http://localhost:3001" | (string & {});
1700+
baseUrl: "https://engine.thirdweb.com" | (string & {});
17001701
};

0 commit comments

Comments
 (0)