windmill-client 1.519.2 → 1.520.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.519.2',
42
+ VERSION: '1.520.1',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -1147,7 +1147,7 @@ export declare class VariableService {
1147
1147
  * @param data The data for the request.
1148
1148
  * @param data.workspace
1149
1149
  * @param data.requestBody new variable
1150
- * @param data.alreadyEncrypted
1150
+ * @param data.alreadyEncrypted whether the variable is already encrypted (default false)
1151
1151
  * @returns string variable created
1152
1152
  * @throws ApiError
1153
1153
  */
@@ -1176,7 +1176,7 @@ export declare class VariableService {
1176
1176
  * @param data.workspace
1177
1177
  * @param data.path
1178
1178
  * @param data.requestBody updated variable
1179
- * @param data.alreadyEncrypted
1179
+ * @param data.alreadyEncrypted whether the variable is already encrypted (default false)
1180
1180
  * @returns string variable updated
1181
1181
  * @throws ApiError
1182
1182
  */
@@ -1217,7 +1217,7 @@ export declare class VariableService {
1217
1217
  * list variables
1218
1218
  * @param data The data for the request.
1219
1219
  * @param data.workspace
1220
- * @param data.pathStart
1220
+ * @param data.pathStart filter variables by path prefix
1221
1221
  * @param data.page which page to return (start at 1, default 1)
1222
1222
  * @param data.perPage number of items to return for a given page (default 30, max 100)
1223
1223
  * @returns ListableVariable variable list
@@ -1357,7 +1357,7 @@ export declare class ResourceService {
1357
1357
  * @param data The data for the request.
1358
1358
  * @param data.workspace
1359
1359
  * @param data.requestBody new resource
1360
- * @param data.updateIfExists
1360
+ * @param data.updateIfExists update the resource if it already exists (default false)
1361
1361
  * @returns string resource created
1362
1362
  * @throws ApiError
1363
1363
  */
@@ -1436,7 +1436,7 @@ export declare class ResourceService {
1436
1436
  * @param data.perPage number of items to return for a given page (default 30, max 100)
1437
1437
  * @param data.resourceType resource_types to list from, separated by ',',
1438
1438
  * @param data.resourceTypeExclude resource_types to not list from, separated by ',',
1439
- * @param data.pathStart
1439
+ * @param data.pathStart filter resources by path prefix
1440
1440
  * @returns ListableResource resource list
1441
1441
  * @throws ApiError
1442
1442
  */
@@ -2929,6 +2929,7 @@ export declare class JobService {
2929
2929
  * @param data.id
2930
2930
  * @param data.running
2931
2931
  * @param data.logOffset
2932
+ * @param data.streamOffset
2932
2933
  * @param data.getProgress
2933
2934
  * @param data.onlyResult
2934
2935
  * @param data.noLogs
@@ -3352,8 +3353,8 @@ export declare class ScheduleService {
3352
3353
  * @param data.perPage number of items to return for a given page (default 30, max 100)
3353
3354
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
3354
3355
  * @param data.path filter by path
3355
- * @param data.isFlow
3356
- * @param data.pathStart
3356
+ * @param data.isFlow filter schedules by whether they target a flow
3357
+ * @param data.pathStart filter schedules by path prefix
3357
3358
  * @returns Schedule schedule list
3358
3359
  * @throws ApiError
3359
3360
  */
@@ -4066,7 +4067,7 @@ export declare class PostgresTriggerService {
4066
4067
  * @param data The data for the request.
4067
4068
  * @param data.workspace
4068
4069
  * @param data.path
4069
- * @param data.publication
4070
+ * @param data.publication The name of the publication
4070
4071
  * @returns PublicationData postgres publication get
4071
4072
  * @throws ApiError
4072
4073
  */
@@ -4076,7 +4077,7 @@ export declare class PostgresTriggerService {
4076
4077
  * @param data The data for the request.
4077
4078
  * @param data.workspace
4078
4079
  * @param data.path
4079
- * @param data.publication
4080
+ * @param data.publication The name of the publication
4080
4081
  * @param data.requestBody new publication for postgres
4081
4082
  * @returns string publication created
4082
4083
  * @throws ApiError
@@ -4087,7 +4088,7 @@ export declare class PostgresTriggerService {
4087
4088
  * @param data The data for the request.
4088
4089
  * @param data.workspace
4089
4090
  * @param data.path
4090
- * @param data.publication
4091
+ * @param data.publication The name of the publication
4091
4092
  * @param data.requestBody update publication for postgres
4092
4093
  * @returns string publication updated
4093
4094
  * @throws ApiError
@@ -4098,7 +4099,7 @@ export declare class PostgresTriggerService {
4098
4099
  * @param data The data for the request.
4099
4100
  * @param data.workspace
4100
4101
  * @param data.path
4101
- * @param data.publication
4102
+ * @param data.publication The name of the publication
4102
4103
  * @returns string postgres publication deleted
4103
4104
  * @throws ApiError
4104
4105
  */
@@ -2280,7 +2280,7 @@ class VariableService {
2280
2280
  * @param data The data for the request.
2281
2281
  * @param data.workspace
2282
2282
  * @param data.requestBody new variable
2283
- * @param data.alreadyEncrypted
2283
+ * @param data.alreadyEncrypted whether the variable is already encrypted (default false)
2284
2284
  * @returns string variable created
2285
2285
  * @throws ApiError
2286
2286
  */
@@ -2341,7 +2341,7 @@ class VariableService {
2341
2341
  * @param data.workspace
2342
2342
  * @param data.path
2343
2343
  * @param data.requestBody updated variable
2344
- * @param data.alreadyEncrypted
2344
+ * @param data.alreadyEncrypted whether the variable is already encrypted (default false)
2345
2345
  * @returns string variable updated
2346
2346
  * @throws ApiError
2347
2347
  */
@@ -2427,7 +2427,7 @@ class VariableService {
2427
2427
  * list variables
2428
2428
  * @param data The data for the request.
2429
2429
  * @param data.workspace
2430
- * @param data.pathStart
2430
+ * @param data.pathStart filter variables by path prefix
2431
2431
  * @param data.page which page to return (start at 1, default 1)
2432
2432
  * @param data.perPage number of items to return for a given page (default 30, max 100)
2433
2433
  * @returns ListableVariable variable list
@@ -2704,7 +2704,7 @@ class ResourceService {
2704
2704
  * @param data The data for the request.
2705
2705
  * @param data.workspace
2706
2706
  * @param data.requestBody new resource
2707
- * @param data.updateIfExists
2707
+ * @param data.updateIfExists update the resource if it already exists (default false)
2708
2708
  * @returns string resource created
2709
2709
  * @throws ApiError
2710
2710
  */
@@ -2866,7 +2866,7 @@ class ResourceService {
2866
2866
  * @param data.perPage number of items to return for a given page (default 30, max 100)
2867
2867
  * @param data.resourceType resource_types to list from, separated by ',',
2868
2868
  * @param data.resourceTypeExclude resource_types to not list from, separated by ',',
2869
- * @param data.pathStart
2869
+ * @param data.pathStart filter resources by path prefix
2870
2870
  * @returns ListableResource resource list
2871
2871
  * @throws ApiError
2872
2872
  */
@@ -5867,6 +5867,7 @@ class JobService {
5867
5867
  * @param data.id
5868
5868
  * @param data.running
5869
5869
  * @param data.logOffset
5870
+ * @param data.streamOffset
5870
5871
  * @param data.getProgress
5871
5872
  * @param data.onlyResult
5872
5873
  * @param data.noLogs
@@ -5884,6 +5885,7 @@ class JobService {
5884
5885
  query: {
5885
5886
  running: data.running,
5886
5887
  log_offset: data.logOffset,
5888
+ stream_offset: data.streamOffset,
5887
5889
  get_progress: data.getProgress,
5888
5890
  only_result: data.onlyResult,
5889
5891
  no_logs: data.noLogs
@@ -6745,8 +6747,8 @@ class ScheduleService {
6745
6747
  * @param data.perPage number of items to return for a given page (default 30, max 100)
6746
6748
  * @param data.args filter on jobs containing those args as a json subset (@> in postgres)
6747
6749
  * @param data.path filter by path
6748
- * @param data.isFlow
6749
- * @param data.pathStart
6750
+ * @param data.isFlow filter schedules by whether they target a flow
6751
+ * @param data.pathStart filter schedules by path prefix
6750
6752
  * @returns Schedule schedule list
6751
6753
  * @throws ApiError
6752
6754
  */
@@ -8221,7 +8223,7 @@ class PostgresTriggerService {
8221
8223
  * @param data The data for the request.
8222
8224
  * @param data.workspace
8223
8225
  * @param data.path
8224
- * @param data.publication
8226
+ * @param data.publication The name of the publication
8225
8227
  * @returns PublicationData postgres publication get
8226
8228
  * @throws ApiError
8227
8229
  */
@@ -8241,7 +8243,7 @@ class PostgresTriggerService {
8241
8243
  * @param data The data for the request.
8242
8244
  * @param data.workspace
8243
8245
  * @param data.path
8244
- * @param data.publication
8246
+ * @param data.publication The name of the publication
8245
8247
  * @param data.requestBody new publication for postgres
8246
8248
  * @returns string publication created
8247
8249
  * @throws ApiError
@@ -8264,7 +8266,7 @@ class PostgresTriggerService {
8264
8266
  * @param data The data for the request.
8265
8267
  * @param data.workspace
8266
8268
  * @param data.path
8267
- * @param data.publication
8269
+ * @param data.publication The name of the publication
8268
8270
  * @param data.requestBody update publication for postgres
8269
8271
  * @returns string publication updated
8270
8272
  * @throws ApiError
@@ -8287,7 +8289,7 @@ class PostgresTriggerService {
8287
8289
  * @param data The data for the request.
8288
8290
  * @param data.workspace
8289
8291
  * @param data.path
8290
- * @param data.publication
8292
+ * @param data.publication The name of the publication
8291
8293
  * @returns string postgres publication deleted
8292
8294
  * @throws ApiError
8293
8295
  */
@@ -319,6 +319,9 @@ export type ScriptHistory = {
319
319
  script_hash: string;
320
320
  deployment_msg?: string;
321
321
  };
322
+ /**
323
+ * The arguments to pass to the script or flow
324
+ */
322
325
  export type ScriptArgs = {
323
326
  [key: string]: unknown;
324
327
  };
@@ -509,18 +512,51 @@ export type ContextualVariable = {
509
512
  is_custom: boolean;
510
513
  };
511
514
  export type CreateVariable = {
515
+ /**
516
+ * The path to the variable
517
+ */
512
518
  path: string;
519
+ /**
520
+ * The value of the variable
521
+ */
513
522
  value: string;
523
+ /**
524
+ * Whether the variable is a secret
525
+ */
514
526
  is_secret: boolean;
527
+ /**
528
+ * The description of the variable
529
+ */
515
530
  description: string;
531
+ /**
532
+ * The account identifier
533
+ */
516
534
  account?: number;
535
+ /**
536
+ * Whether the variable is an OAuth variable
537
+ */
517
538
  is_oauth?: boolean;
539
+ /**
540
+ * The expiration date of the variable
541
+ */
518
542
  expires_at?: string;
519
543
  };
520
544
  export type EditVariable = {
545
+ /**
546
+ * The path to the variable
547
+ */
521
548
  path?: string;
549
+ /**
550
+ * The new value of the variable
551
+ */
522
552
  value?: string;
553
+ /**
554
+ * Whether the variable is a secret
555
+ */
523
556
  is_secret?: boolean;
557
+ /**
558
+ * The new description of the variable
559
+ */
524
560
  description?: string;
525
561
  };
526
562
  export type AuditLog = {
@@ -592,15 +628,34 @@ export type WorkflowStatus = {
592
628
  name?: string;
593
629
  };
594
630
  export type CreateResource = {
631
+ /**
632
+ * The path to the resource
633
+ */
595
634
  path: string;
596
635
  value: unknown;
636
+ /**
637
+ * The description of the resource
638
+ */
597
639
  description?: string;
640
+ /**
641
+ * The resource_type associated with the resource
642
+ */
598
643
  resource_type: string;
599
644
  };
600
645
  export type EditResource = {
646
+ /**
647
+ * The path to the resource
648
+ */
601
649
  path?: string;
650
+ /**
651
+ * The new description of the resource
652
+ */
602
653
  description?: string;
603
654
  value?: unknown;
655
+ /**
656
+ * The new resource_type to be associated with the resource
657
+ */
658
+ resource_type?: string;
604
659
  };
605
660
  export type Resource = {
606
661
  workspace_id?: string;
@@ -686,52 +741,185 @@ export type ScheduleWJobs = Schedule & {
686
741
  duration_ms: number;
687
742
  }>;
688
743
  };
744
+ export type ErrorHandler = 'custom' | 'slack' | 'teams' | 'email';
689
745
  export type NewSchedule = {
746
+ /**
747
+ * The path where the schedule will be created
748
+ */
690
749
  path: string;
750
+ /**
751
+ * The cron schedule to trigger the script or flow. Should include seconds.
752
+ */
691
753
  schedule: string;
754
+ /**
755
+ * The timezone to use for the cron schedule
756
+ */
692
757
  timezone: string;
758
+ /**
759
+ * The path to the script or flow to trigger
760
+ */
693
761
  script_path: string;
762
+ /**
763
+ * Whether the schedule is for a flow
764
+ */
694
765
  is_flow: boolean;
766
+ /**
767
+ * The arguments to pass to the script or flow
768
+ */
695
769
  args: ScriptArgs;
770
+ /**
771
+ * Whether the schedule is enabled
772
+ */
696
773
  enabled?: boolean;
774
+ /**
775
+ * The path to the script or flow to trigger on failure
776
+ */
697
777
  on_failure?: string;
778
+ /**
779
+ * The number of times to retry on failure
780
+ */
698
781
  on_failure_times?: number;
782
+ /**
783
+ * Whether the schedule should only run on the exact time
784
+ */
699
785
  on_failure_exact?: boolean;
786
+ /**
787
+ * The arguments to pass to the script or flow on failure
788
+ */
700
789
  on_failure_extra_args?: ScriptArgs;
790
+ /**
791
+ * The path to the script or flow to trigger on recovery
792
+ */
701
793
  on_recovery?: string;
794
+ /**
795
+ * The number of times to retry on recovery
796
+ */
702
797
  on_recovery_times?: number;
798
+ /**
799
+ * The arguments to pass to the script or flow on recovery
800
+ */
703
801
  on_recovery_extra_args?: ScriptArgs;
802
+ /**
803
+ * The path to the script or flow to trigger on success
804
+ */
704
805
  on_success?: string;
806
+ /**
807
+ * The arguments to pass to the script or flow on success
808
+ */
705
809
  on_success_extra_args?: ScriptArgs;
810
+ /**
811
+ * Whether the WebSocket error handler is muted
812
+ */
706
813
  ws_error_handler_muted?: boolean;
814
+ /**
815
+ * The retry configuration for the schedule
816
+ */
707
817
  retry?: Retry;
818
+ /**
819
+ * Whether the schedule should not run if a flow is already running
820
+ */
708
821
  no_flow_overlap?: boolean;
822
+ /**
823
+ * The summary of the schedule
824
+ */
709
825
  summary?: string;
826
+ /**
827
+ * The description of the schedule
828
+ */
710
829
  description?: string;
830
+ /**
831
+ * The tag of the schedule
832
+ */
711
833
  tag?: string;
834
+ /**
835
+ * The date and time the schedule will be paused until
836
+ */
712
837
  paused_until?: string;
838
+ /**
839
+ * The version of the cron schedule to use (last is v2)
840
+ */
713
841
  cron_version?: string;
714
842
  };
715
843
  export type EditSchedule = {
844
+ /**
845
+ * The cron schedule to trigger the script or flow. Should include seconds.
846
+ */
716
847
  schedule: string;
848
+ /**
849
+ * The timezone to use for the cron schedule
850
+ */
717
851
  timezone: string;
852
+ /**
853
+ * The arguments to pass to the script or flow
854
+ */
718
855
  args: ScriptArgs;
856
+ /**
857
+ * The path to the script or flow to trigger on failure
858
+ */
719
859
  on_failure?: string;
860
+ /**
861
+ * The number of times to retry on failure
862
+ */
720
863
  on_failure_times?: number;
864
+ /**
865
+ * Whether the schedule should only run on the exact time
866
+ */
721
867
  on_failure_exact?: boolean;
868
+ /**
869
+ * The arguments to pass to the script or flow on failure
870
+ */
722
871
  on_failure_extra_args?: ScriptArgs;
872
+ /**
873
+ * The path to the script or flow to trigger on recovery
874
+ */
723
875
  on_recovery?: string;
876
+ /**
877
+ * The number of times to retry on recovery
878
+ */
724
879
  on_recovery_times?: number;
880
+ /**
881
+ * The arguments to pass to the script or flow on recovery
882
+ */
725
883
  on_recovery_extra_args?: ScriptArgs;
884
+ /**
885
+ * The path to the script or flow to trigger on success
886
+ */
726
887
  on_success?: string;
888
+ /**
889
+ * The arguments to pass to the script or flow on success
890
+ */
727
891
  on_success_extra_args?: ScriptArgs;
892
+ /**
893
+ * Whether the WebSocket error handler is muted
894
+ */
728
895
  ws_error_handler_muted?: boolean;
896
+ /**
897
+ * The retry configuration for the schedule
898
+ */
729
899
  retry?: Retry;
900
+ /**
901
+ * Whether the schedule should not run if a flow is already running
902
+ */
730
903
  no_flow_overlap?: boolean;
904
+ /**
905
+ * The summary of the schedule
906
+ */
731
907
  summary?: string;
908
+ /**
909
+ * The description of the schedule
910
+ */
732
911
  description?: string;
912
+ /**
913
+ * The tag of the schedule
914
+ */
733
915
  tag?: string;
916
+ /**
917
+ * The date and time the schedule will be paused until
918
+ */
734
919
  paused_until?: string;
920
+ /**
921
+ * The version of the cron schedule to use (last is v2)
922
+ */
735
923
  cron_version?: string;
736
924
  };
737
925
  export type TriggerExtraProperty = {
@@ -1772,6 +1960,9 @@ export type Asset = {
1772
1960
  export type ParameterId = string;
1773
1961
  export type ParameterKey = string;
1774
1962
  export type ParameterWorkspaceId = string;
1963
+ /**
1964
+ * The name of the publication
1965
+ */
1775
1966
  export type ParameterPublicationName = string;
1776
1967
  export type ParameterVersionId = number;
1777
1968
  export type ParameterToken = string;
@@ -2954,6 +3145,9 @@ export type GetOidcTokenData = {
2954
3145
  };
2955
3146
  export type GetOidcTokenResponse = string;
2956
3147
  export type CreateVariableData = {
3148
+ /**
3149
+ * whether the variable is already encrypted (default false)
3150
+ */
2957
3151
  alreadyEncrypted?: boolean;
2958
3152
  /**
2959
3153
  * new variable
@@ -2976,6 +3170,9 @@ export type DeleteVariableData = {
2976
3170
  };
2977
3171
  export type DeleteVariableResponse = string;
2978
3172
  export type UpdateVariableData = {
3173
+ /**
3174
+ * whether the variable is already encrypted (default false)
3175
+ */
2979
3176
  alreadyEncrypted?: boolean;
2980
3177
  path: string;
2981
3178
  /**
@@ -3016,6 +3213,9 @@ export type ListVariableData = {
3016
3213
  * which page to return (start at 1, default 1)
3017
3214
  */
3018
3215
  page?: number;
3216
+ /**
3217
+ * filter variables by path prefix
3218
+ */
3019
3219
  pathStart?: string;
3020
3220
  /**
3021
3221
  * number of items to return for a given page (default 30, max 100)
@@ -3184,6 +3384,9 @@ export type CreateResourceData = {
3184
3384
  * new resource
3185
3385
  */
3186
3386
  requestBody: CreateResource;
3387
+ /**
3388
+ * update the resource if it already exists (default false)
3389
+ */
3187
3390
  updateIfExists?: boolean;
3188
3391
  workspace: string;
3189
3392
  };
@@ -3242,6 +3445,9 @@ export type ListResourceData = {
3242
3445
  * which page to return (start at 1, default 1)
3243
3446
  */
3244
3447
  page?: number;
3448
+ /**
3449
+ * filter resources by path prefix
3450
+ */
3245
3451
  pathStart?: string;
3246
3452
  /**
3247
3453
  * number of items to return for a given page (default 30, max 100)
@@ -5282,6 +5488,7 @@ export type GetJobUpdatesSseData = {
5282
5488
  noLogs?: boolean;
5283
5489
  onlyResult?: boolean;
5284
5490
  running?: boolean;
5491
+ streamOffset?: number;
5285
5492
  workspace: string;
5286
5493
  };
5287
5494
  export type GetJobUpdatesSseResponse = string;
@@ -5730,6 +5937,9 @@ export type ListSchedulesData = {
5730
5937
  * filter on jobs containing those args as a json subset (@> in postgres)
5731
5938
  */
5732
5939
  args?: string;
5940
+ /**
5941
+ * filter schedules by whether they target a flow
5942
+ */
5733
5943
  isFlow?: boolean;
5734
5944
  /**
5735
5945
  * which page to return (start at 1, default 1)
@@ -5739,6 +5949,9 @@ export type ListSchedulesData = {
5739
5949
  * filter by path
5740
5950
  */
5741
5951
  path?: string;
5952
+ /**
5953
+ * filter schedules by path prefix
5954
+ */
5742
5955
  pathStart?: string;
5743
5956
  /**
5744
5957
  * number of items to return for a given page (default 30, max 100)
@@ -6378,12 +6591,18 @@ export type ListPostgresPublicationData = {
6378
6591
  export type ListPostgresPublicationResponse = Array<(string)>;
6379
6592
  export type GetPostgresPublicationData = {
6380
6593
  path: string;
6594
+ /**
6595
+ * The name of the publication
6596
+ */
6381
6597
  publication: string;
6382
6598
  workspace: string;
6383
6599
  };
6384
6600
  export type GetPostgresPublicationResponse = PublicationData;
6385
6601
  export type CreatePostgresPublicationData = {
6386
6602
  path: string;
6603
+ /**
6604
+ * The name of the publication
6605
+ */
6387
6606
  publication: string;
6388
6607
  /**
6389
6608
  * new publication for postgres
@@ -6394,6 +6613,9 @@ export type CreatePostgresPublicationData = {
6394
6613
  export type CreatePostgresPublicationResponse = string;
6395
6614
  export type UpdatePostgresPublicationData = {
6396
6615
  path: string;
6616
+ /**
6617
+ * The name of the publication
6618
+ */
6397
6619
  publication: string;
6398
6620
  /**
6399
6621
  * update publication for postgres
@@ -6404,6 +6626,9 @@ export type UpdatePostgresPublicationData = {
6404
6626
  export type UpdatePostgresPublicationResponse = string;
6405
6627
  export type DeletePostgresPublicationData = {
6406
6628
  path: string;
6629
+ /**
6630
+ * The name of the publication
6631
+ */
6407
6632
  publication: string;
6408
6633
  workspace: string;
6409
6634
  };
@@ -9532,6 +9757,9 @@ export type $OpenApiTs = {
9532
9757
  '/w/{workspace}/variables/create': {
9533
9758
  post: {
9534
9759
  req: {
9760
+ /**
9761
+ * whether the variable is already encrypted (default false)
9762
+ */
9535
9763
  alreadyEncrypted?: boolean;
9536
9764
  /**
9537
9765
  * new variable
@@ -9581,6 +9809,9 @@ export type $OpenApiTs = {
9581
9809
  '/w/{workspace}/variables/update/{path}': {
9582
9810
  post: {
9583
9811
  req: {
9812
+ /**
9813
+ * whether the variable is already encrypted (default false)
9814
+ */
9584
9815
  alreadyEncrypted?: boolean;
9585
9816
  path: string;
9586
9817
  /**
@@ -9657,6 +9888,9 @@ export type $OpenApiTs = {
9657
9888
  * which page to return (start at 1, default 1)
9658
9889
  */
9659
9890
  page?: number;
9891
+ /**
9892
+ * filter variables by path prefix
9893
+ */
9660
9894
  pathStart?: string;
9661
9895
  /**
9662
9896
  * number of items to return for a given page (default 30, max 100)
@@ -9969,6 +10203,9 @@ export type $OpenApiTs = {
9969
10203
  * new resource
9970
10204
  */
9971
10205
  requestBody: CreateResource;
10206
+ /**
10207
+ * update the resource if it already exists (default false)
10208
+ */
9972
10209
  updateIfExists?: boolean;
9973
10210
  workspace: string;
9974
10211
  };
@@ -10099,6 +10336,9 @@ export type $OpenApiTs = {
10099
10336
  * which page to return (start at 1, default 1)
10100
10337
  */
10101
10338
  page?: number;
10339
+ /**
10340
+ * filter resources by path prefix
10341
+ */
10102
10342
  pathStart?: string;
10103
10343
  /**
10104
10344
  * number of items to return for a given page (default 30, max 100)
@@ -13298,6 +13538,7 @@ export type $OpenApiTs = {
13298
13538
  noLogs?: boolean;
13299
13539
  onlyResult?: boolean;
13300
13540
  running?: boolean;
13541
+ streamOffset?: number;
13301
13542
  workspace: string;
13302
13543
  };
13303
13544
  res: {
@@ -14064,6 +14305,9 @@ export type $OpenApiTs = {
14064
14305
  * filter on jobs containing those args as a json subset (@> in postgres)
14065
14306
  */
14066
14307
  args?: string;
14308
+ /**
14309
+ * filter schedules by whether they target a flow
14310
+ */
14067
14311
  isFlow?: boolean;
14068
14312
  /**
14069
14313
  * which page to return (start at 1, default 1)
@@ -14073,6 +14317,9 @@ export type $OpenApiTs = {
14073
14317
  * filter by path
14074
14318
  */
14075
14319
  path?: string;
14320
+ /**
14321
+ * filter schedules by path prefix
14322
+ */
14076
14323
  pathStart?: string;
14077
14324
  /**
14078
14325
  * number of items to return for a given page (default 30, max 100)
@@ -15360,6 +15607,9 @@ export type $OpenApiTs = {
15360
15607
  get: {
15361
15608
  req: {
15362
15609
  path: string;
15610
+ /**
15611
+ * The name of the publication
15612
+ */
15363
15613
  publication: string;
15364
15614
  workspace: string;
15365
15615
  };
@@ -15375,6 +15625,9 @@ export type $OpenApiTs = {
15375
15625
  post: {
15376
15626
  req: {
15377
15627
  path: string;
15628
+ /**
15629
+ * The name of the publication
15630
+ */
15378
15631
  publication: string;
15379
15632
  /**
15380
15633
  * new publication for postgres
@@ -15394,6 +15647,9 @@ export type $OpenApiTs = {
15394
15647
  post: {
15395
15648
  req: {
15396
15649
  path: string;
15650
+ /**
15651
+ * The name of the publication
15652
+ */
15397
15653
  publication: string;
15398
15654
  /**
15399
15655
  * update publication for postgres
@@ -15413,6 +15669,9 @@ export type $OpenApiTs = {
15413
15669
  delete: {
15414
15670
  req: {
15415
15671
  path: string;
15672
+ /**
15673
+ * The name of the publication
15674
+ */
15416
15675
  publication: string;
15417
15676
  workspace: string;
15418
15677
  };
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.519.2",
4
+ "version": "1.520.1",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {