@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/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.21";
625
- declare const SPEC_SHA = "dcbc193f";
626
- declare const SPEC_FETCHED_AT = "2026-06-17T16:32:49.096Z";
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.21";
788
- var SPEC_SHA = "dcbc193f";
789
- var SPEC_FETCHED_AT = "2026-06-17T16:32:49.096Z";
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