@wspc/cli 0.0.21 → 0.0.22
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 +8 -6
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/spec/openapi.json +2756 -4046
package/dist/index.d.ts
CHANGED
|
@@ -85,6 +85,7 @@ type CreateTodoBody = {
|
|
|
85
85
|
* Optional calendar due date in ISO date-only format (`YYYY-MM-DD`). Stored without timezone offsets to represent the same local calendar day globally. Pass `""` or omit the field to skip setting a due date. Passing `null` is strictly rejected.
|
|
86
86
|
*/
|
|
87
87
|
due_at?: string;
|
|
88
|
+
idempotency_key?: string;
|
|
88
89
|
/**
|
|
89
90
|
* Type id this todo belongs to. Omit to use the project's default type. When project_id is also supplied, the type must belong to the same project. New server-generated type ids use typ_<ULID>; legacy ids remain accepted.
|
|
90
91
|
*/
|
|
@@ -621,9 +622,9 @@ interface TDataShape {
|
|
|
621
622
|
type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
622
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'>);
|
|
623
624
|
|
|
624
|
-
declare const VERSION = "0.0.
|
|
625
|
-
declare const SPEC_SHA = "
|
|
626
|
-
declare const SPEC_FETCHED_AT = "2026-06-
|
|
625
|
+
declare const VERSION = "0.0.22";
|
|
626
|
+
declare const SPEC_SHA = "a2dfa511";
|
|
627
|
+
declare const SPEC_FETCHED_AT = "2026-06-20T14:16:47.131Z";
|
|
627
628
|
declare const API_BASE = "https://api.wspc.ai";
|
|
628
629
|
|
|
629
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.0.
|
|
788
|
-
var SPEC_SHA = "
|
|
789
|
-
var SPEC_FETCHED_AT = "2026-06-
|
|
787
|
+
var VERSION = "0.0.22";
|
|
788
|
+
var SPEC_SHA = "a2dfa511";
|
|
789
|
+
var SPEC_FETCHED_AT = "2026-06-20T14:16:47.131Z";
|
|
790
790
|
var API_BASE = "https://api.wspc.ai";
|
|
791
791
|
|
|
792
792
|
// src/handwritten/auth/sdk-auth.ts
|