windmill-client 1.445.0 → 1.445.1

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.
@@ -39,7 +39,7 @@ exports.OpenAPI = {
39
39
  PASSWORD: undefined,
40
40
  TOKEN: getEnv("WM_TOKEN"),
41
41
  USERNAME: undefined,
42
- VERSION: '1.445.0',
42
+ VERSION: '1.445.1',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -3599,6 +3599,8 @@ export declare class CaptureService {
3599
3599
  * @param data.runnableKind
3600
3600
  * @param data.path
3601
3601
  * @param data.triggerKind
3602
+ * @param data.page which page to return (start at 1, default 1)
3603
+ * @param data.perPage number of items to return for a given page (default 30, max 100)
3602
3604
  * @returns Capture list of captures for a script or flow
3603
3605
  * @throws ApiError
3604
3606
  */
@@ -3642,6 +3644,7 @@ export declare class InputService {
3642
3644
  * @param data.runnableType
3643
3645
  * @param data.page which page to return (start at 1, default 1)
3644
3646
  * @param data.perPage number of items to return for a given page (default 30, max 100)
3647
+ * @param data.includePreview
3645
3648
  * @returns Input Input history for completed jobs
3646
3649
  * @throws ApiError
3647
3650
  */
@@ -7256,6 +7256,8 @@ class CaptureService {
7256
7256
  * @param data.runnableKind
7257
7257
  * @param data.path
7258
7258
  * @param data.triggerKind
7259
+ * @param data.page which page to return (start at 1, default 1)
7260
+ * @param data.perPage number of items to return for a given page (default 30, max 100)
7259
7261
  * @returns Capture list of captures for a script or flow
7260
7262
  * @throws ApiError
7261
7263
  */
@@ -7269,7 +7271,9 @@ class CaptureService {
7269
7271
  path: data.path
7270
7272
  },
7271
7273
  query: {
7272
- trigger_kind: data.triggerKind
7274
+ trigger_kind: data.triggerKind,
7275
+ page: data.page,
7276
+ per_page: data.perPage
7273
7277
  }
7274
7278
  });
7275
7279
  }
@@ -7343,6 +7347,7 @@ class InputService {
7343
7347
  * @param data.runnableType
7344
7348
  * @param data.page which page to return (start at 1, default 1)
7345
7349
  * @param data.perPage number of items to return for a given page (default 30, max 100)
7350
+ * @param data.includePreview
7346
7351
  * @returns Input Input history for completed jobs
7347
7352
  * @throws ApiError
7348
7353
  */
@@ -7357,7 +7362,8 @@ class InputService {
7357
7362
  runnable_id: data.runnableId,
7358
7363
  runnable_type: data.runnableType,
7359
7364
  page: data.page,
7360
- per_page: data.perPage
7365
+ per_page: data.perPage,
7366
+ include_preview: data.includePreview
7361
7367
  }
7362
7368
  });
7363
7369
  }
@@ -5234,7 +5234,15 @@ export type GetCaptureConfigsData = {
5234
5234
  };
5235
5235
  export type GetCaptureConfigsResponse = Array<CaptureConfig>;
5236
5236
  export type ListCapturesData = {
5237
+ /**
5238
+ * which page to return (start at 1, default 1)
5239
+ */
5240
+ page?: number;
5237
5241
  path: string;
5242
+ /**
5243
+ * number of items to return for a given page (default 30, max 100)
5244
+ */
5245
+ perPage?: number;
5238
5246
  runnableKind: 'script' | 'flow';
5239
5247
  triggerKind?: CaptureTriggerKind;
5240
5248
  workspace: string;
@@ -5262,6 +5270,7 @@ export type UnstarData = {
5262
5270
  };
5263
5271
  export type UnstarResponse = unknown;
5264
5272
  export type GetInputHistoryData = {
5273
+ includePreview?: boolean;
5265
5274
  /**
5266
5275
  * which page to return (start at 1, default 1)
5267
5276
  */
@@ -12639,7 +12648,15 @@ export type $OpenApiTs = {
12639
12648
  '/w/{workspace}/capture/list/{runnable_kind}/{path}': {
12640
12649
  get: {
12641
12650
  req: {
12651
+ /**
12652
+ * which page to return (start at 1, default 1)
12653
+ */
12654
+ page?: number;
12642
12655
  path: string;
12656
+ /**
12657
+ * number of items to return for a given page (default 30, max 100)
12658
+ */
12659
+ perPage?: number;
12643
12660
  runnableKind: 'script' | 'flow';
12644
12661
  triggerKind?: CaptureTriggerKind;
12645
12662
  workspace: string;
@@ -12703,6 +12720,7 @@ export type $OpenApiTs = {
12703
12720
  '/w/{workspace}/inputs/history': {
12704
12721
  get: {
12705
12722
  req: {
12723
+ includePreview?: boolean;
12706
12724
  /**
12707
12725
  * which page to return (start at 1, default 1)
12708
12726
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.445.0",
4
+ "version": "1.445.1",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {