@domu-ai/kiban-sdk 1.143.0 → 1.145.0

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.
@@ -689,7 +689,6 @@ export type DashboardInovoWindmillSchedulesNamePutBodyArgs = {
689
689
  [key: string]: unknown;
690
690
  };
691
691
  export type DashboardInovoWindmillSchedulesNamePutBody = {
692
- schedule?: string;
693
692
  args?: DashboardInovoWindmillSchedulesNamePutBodyArgs;
694
693
  no_flow_overlap?: boolean;
695
694
  summary?: string;
@@ -708,6 +707,11 @@ export type DashboardInovoWindmillSchedulesNamePut404 = {
708
707
  code?: string;
709
708
  details?: unknown | null;
710
709
  };
710
+ export type DashboardInovoWindmillSchedulesNamePut422 = {
711
+ message: string;
712
+ code?: string;
713
+ details?: unknown | null;
714
+ };
711
715
  export type DashboardInovoWindmillSchedulesNamePut500 = {
712
716
  message: string;
713
717
  code?: string;
@@ -1362,6 +1366,10 @@ export type dashboardInovoWindmillSchedulesNamePutResponse404 = {
1362
1366
  data: DashboardInovoWindmillSchedulesNamePut404;
1363
1367
  status: 404;
1364
1368
  };
1369
+ export type dashboardInovoWindmillSchedulesNamePutResponse422 = {
1370
+ data: DashboardInovoWindmillSchedulesNamePut422;
1371
+ status: 422;
1372
+ };
1365
1373
  export type dashboardInovoWindmillSchedulesNamePutResponse500 = {
1366
1374
  data: DashboardInovoWindmillSchedulesNamePut500;
1367
1375
  status: 500;
@@ -1369,7 +1377,7 @@ export type dashboardInovoWindmillSchedulesNamePutResponse500 = {
1369
1377
  export type dashboardInovoWindmillSchedulesNamePutResponseSuccess = (dashboardInovoWindmillSchedulesNamePutResponse200) & {
1370
1378
  headers: Headers;
1371
1379
  };
1372
- export type dashboardInovoWindmillSchedulesNamePutResponseError = (dashboardInovoWindmillSchedulesNamePutResponse401 | dashboardInovoWindmillSchedulesNamePutResponse404 | dashboardInovoWindmillSchedulesNamePutResponse500) & {
1380
+ export type dashboardInovoWindmillSchedulesNamePutResponseError = (dashboardInovoWindmillSchedulesNamePutResponse401 | dashboardInovoWindmillSchedulesNamePutResponse404 | dashboardInovoWindmillSchedulesNamePutResponse422 | dashboardInovoWindmillSchedulesNamePutResponse500) & {
1373
1381
  headers: Headers;
1374
1382
  };
1375
1383
  export type dashboardInovoWindmillSchedulesNamePutResponse = (dashboardInovoWindmillSchedulesNamePutResponseSuccess | dashboardInovoWindmillSchedulesNamePutResponseError);
@@ -1371,7 +1371,6 @@ export declare const WindmillSchedulesUpdateParams: zod.ZodObject<{
1371
1371
  name: string;
1372
1372
  }>;
1373
1373
  export declare const WindmillSchedulesUpdateBody: zod.ZodObject<{
1374
- schedule: zod.ZodOptional<zod.ZodString>;
1375
1374
  args: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodUnknown>>;
1376
1375
  no_flow_overlap: zod.ZodOptional<zod.ZodBoolean>;
1377
1376
  summary: zod.ZodOptional<zod.ZodString>;
@@ -1379,13 +1378,11 @@ export declare const WindmillSchedulesUpdateBody: zod.ZodObject<{
1379
1378
  }, "strip", zod.ZodTypeAny, {
1380
1379
  description?: string | undefined;
1381
1380
  summary?: string | undefined;
1382
- schedule?: string | undefined;
1383
1381
  args?: Record<string, unknown> | undefined;
1384
1382
  no_flow_overlap?: boolean | undefined;
1385
1383
  }, {
1386
1384
  description?: string | undefined;
1387
1385
  summary?: string | undefined;
1388
- schedule?: string | undefined;
1389
1386
  args?: Record<string, unknown> | undefined;
1390
1387
  no_flow_overlap?: boolean | undefined;
1391
1388
  }>;
@@ -369,7 +369,6 @@ exports.WindmillSchedulesUpdateParams = zod.object({
369
369
  "name": zod.string()
370
370
  });
371
371
  exports.WindmillSchedulesUpdateBody = zod.object({
372
- "schedule": zod.string().optional(),
373
372
  "args": zod.record(zod.string(), zod.unknown()).optional(),
374
373
  "no_flow_overlap": zod.boolean().optional(),
375
374
  "summary": zod.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domu-ai/kiban-sdk",
3
- "version": "1.143.0",
3
+ "version": "1.145.0",
4
4
  "description": "Generated TypeScript SDKs for Kiban public, internal, and dashboard APIs.",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./index.js",