@wspc/cli 0.1.0 → 0.1.1
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/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -622,9 +622,9 @@ interface TDataShape {
|
|
|
622
622
|
type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
623
623
|
type Options<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'>);
|
|
624
624
|
|
|
625
|
-
declare const VERSION = "0.1.
|
|
625
|
+
declare const VERSION = "0.1.1";
|
|
626
626
|
declare const SPEC_SHA = "51d0418e";
|
|
627
|
-
declare const SPEC_FETCHED_AT = "2026-06-
|
|
627
|
+
declare const SPEC_FETCHED_AT = "2026-06-21T12:30:00.342Z";
|
|
628
628
|
declare const API_BASE = "https://api.wspc.ai";
|
|
629
629
|
|
|
630
630
|
type WspcClientOptions = {
|
package/dist/index.js
CHANGED
|
@@ -784,9 +784,9 @@ var createClient = (config = {}) => {
|
|
|
784
784
|
};
|
|
785
785
|
|
|
786
786
|
// src/version.ts
|
|
787
|
-
var VERSION = "0.1.
|
|
787
|
+
var VERSION = "0.1.1";
|
|
788
788
|
var SPEC_SHA = "51d0418e";
|
|
789
|
-
var SPEC_FETCHED_AT = "2026-06-
|
|
789
|
+
var SPEC_FETCHED_AT = "2026-06-21T12:30:00.342Z";
|
|
790
790
|
var API_BASE = "https://api.wspc.ai";
|
|
791
791
|
|
|
792
792
|
// src/handwritten/auth/sdk-auth.ts
|