@linebundle-sdk/ts 1.0.0-rc.10 → 1.0.0-rc.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/esm/index.d.ts CHANGED
@@ -306,7 +306,7 @@ type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
306
306
  type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown, TResponseStyle extends ResponseStyle = 'fields'> = OmitKeys<RequestOptions<TResponse, TResponseStyle, ThrowOnError>, 'body' | 'path' | 'query' | 'url'> & ([TData] extends [never] ? unknown : Omit<TData, 'url'>);
307
307
 
308
308
  type ClientOptions = {
309
- baseUrl: `${string}://${string}` | (string & {});
309
+ baseUrl: 'https://api.linebundle.com' | 'https://staging-api.linebundle.com' | (string & {});
310
310
  };
311
311
  type AddAttendeeInputBody = {
312
312
  /**
package/esm/index.js CHANGED
@@ -794,7 +794,7 @@ var createClient = (config = {}) => {
794
794
  };
795
795
 
796
796
  // src/client.gen.ts
797
- var client = createClient(createConfig());
797
+ var client = createClient(createConfig({ baseUrl: "https://api.linebundle.com" }));
798
798
 
799
799
  // src/zod.gen.ts
800
800
  import * as z from "zod";