@wspc/cli 0.0.7 → 0.0.8
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 +166 -39
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/spec/openapi.json +2225 -799
package/dist/index.d.ts
CHANGED
|
@@ -536,9 +536,9 @@ interface TDataShape {
|
|
|
536
536
|
type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
537
537
|
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'>);
|
|
538
538
|
|
|
539
|
-
declare const VERSION = "0.0.
|
|
540
|
-
declare const SPEC_SHA = "
|
|
541
|
-
declare const SPEC_FETCHED_AT = "2026-06-
|
|
539
|
+
declare const VERSION = "0.0.8";
|
|
540
|
+
declare const SPEC_SHA = "9735a255";
|
|
541
|
+
declare const SPEC_FETCHED_AT = "2026-06-08T08:32:23.241Z";
|
|
542
542
|
declare const API_BASE = "https://api.wspc.ai";
|
|
543
543
|
|
|
544
544
|
type WspcClientOptions = {
|
package/dist/index.js
CHANGED
|
@@ -902,9 +902,9 @@ var todoUpdate = (options) => (options.client ?? client).patch({
|
|
|
902
902
|
});
|
|
903
903
|
|
|
904
904
|
// src/version.ts
|
|
905
|
-
var VERSION = "0.0.
|
|
906
|
-
var SPEC_SHA = "
|
|
907
|
-
var SPEC_FETCHED_AT = "2026-06-
|
|
905
|
+
var VERSION = "0.0.8";
|
|
906
|
+
var SPEC_SHA = "9735a255";
|
|
907
|
+
var SPEC_FETCHED_AT = "2026-06-08T08:32:23.241Z";
|
|
908
908
|
var API_BASE = "https://api.wspc.ai";
|
|
909
909
|
|
|
910
910
|
// src/index.ts
|