@wspc/cli 0.0.16 → 0.0.18
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 +80 -27
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +15 -15
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -2
- package/spec/openapi.json +180 -180
package/dist/index.d.ts
CHANGED
|
@@ -199,9 +199,9 @@ type ProjectCreateData = {
|
|
|
199
199
|
body?: CreateProjectBody;
|
|
200
200
|
headers?: {
|
|
201
201
|
/**
|
|
202
|
-
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency.
|
|
202
|
+
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency for todo D1 data.
|
|
203
203
|
*/
|
|
204
|
-
'x-
|
|
204
|
+
'x-cb-todo'?: string;
|
|
205
205
|
};
|
|
206
206
|
path?: never;
|
|
207
207
|
query?: never;
|
|
@@ -211,9 +211,9 @@ type RecurrenceRuleListData = {
|
|
|
211
211
|
body?: never;
|
|
212
212
|
headers?: {
|
|
213
213
|
/**
|
|
214
|
-
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency.
|
|
214
|
+
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency for todo D1 data.
|
|
215
215
|
*/
|
|
216
|
-
'x-
|
|
216
|
+
'x-cb-todo'?: string;
|
|
217
217
|
};
|
|
218
218
|
path?: never;
|
|
219
219
|
query: {
|
|
@@ -229,9 +229,9 @@ type TodoListData = {
|
|
|
229
229
|
body?: never;
|
|
230
230
|
headers?: {
|
|
231
231
|
/**
|
|
232
|
-
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency.
|
|
232
|
+
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency for todo D1 data.
|
|
233
233
|
*/
|
|
234
|
-
'x-
|
|
234
|
+
'x-cb-todo'?: string;
|
|
235
235
|
};
|
|
236
236
|
path?: never;
|
|
237
237
|
query: {
|
|
@@ -265,9 +265,9 @@ type TodoCreateData = {
|
|
|
265
265
|
body?: CreateTodoBody;
|
|
266
266
|
headers?: {
|
|
267
267
|
/**
|
|
268
|
-
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency.
|
|
268
|
+
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency for todo D1 data.
|
|
269
269
|
*/
|
|
270
|
-
'x-
|
|
270
|
+
'x-cb-todo'?: string;
|
|
271
271
|
};
|
|
272
272
|
path?: never;
|
|
273
273
|
query?: never;
|
|
@@ -277,9 +277,9 @@ type TodoTypeListData = {
|
|
|
277
277
|
body?: never;
|
|
278
278
|
headers?: {
|
|
279
279
|
/**
|
|
280
|
-
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency.
|
|
280
|
+
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency for todo D1 data.
|
|
281
281
|
*/
|
|
282
|
-
'x-
|
|
282
|
+
'x-cb-todo'?: string;
|
|
283
283
|
};
|
|
284
284
|
path?: never;
|
|
285
285
|
query: {
|
|
@@ -296,9 +296,9 @@ type TodoUpdateData = {
|
|
|
296
296
|
body?: UpdateTodoBody;
|
|
297
297
|
headers?: {
|
|
298
298
|
/**
|
|
299
|
-
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency.
|
|
299
|
+
* Optional opaque consistency bookmark returned by a previous todo response. Send it back unchanged to continue read-after-write consistency for todo D1 data.
|
|
300
300
|
*/
|
|
301
|
-
'x-
|
|
301
|
+
'x-cb-todo'?: string;
|
|
302
302
|
};
|
|
303
303
|
path: {
|
|
304
304
|
id: string;
|
|
@@ -621,9 +621,9 @@ interface TDataShape {
|
|
|
621
621
|
type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
622
622
|
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
623
|
|
|
624
|
-
declare const VERSION = "0.0.
|
|
625
|
-
declare const SPEC_SHA = "
|
|
626
|
-
declare const SPEC_FETCHED_AT = "2026-06-
|
|
624
|
+
declare const VERSION = "0.0.18";
|
|
625
|
+
declare const SPEC_SHA = "d0ccc741";
|
|
626
|
+
declare const SPEC_FETCHED_AT = "2026-06-16T16:17:05.958Z";
|
|
627
627
|
declare const API_BASE = "https://api.wspc.ai";
|
|
628
628
|
|
|
629
629
|
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.18";
|
|
788
|
+
var SPEC_SHA = "d0ccc741";
|
|
789
|
+
var SPEC_FETCHED_AT = "2026-06-16T16:17:05.958Z";
|
|
790
790
|
var API_BASE = "https://api.wspc.ai";
|
|
791
791
|
|
|
792
792
|
// src/handwritten/auth/sdk-auth.ts
|