windmill-client 1.482.0 → 1.483.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.
- package/dist/core/OpenAPI.js +1 -1
- package/dist/types.gen.d.ts +9 -4
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -349,6 +349,7 @@ export type ScriptLang = 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'po
|
|
|
349
349
|
export type Preview = {
|
|
350
350
|
content?: string;
|
|
351
351
|
path?: string;
|
|
352
|
+
script_hash?: string;
|
|
352
353
|
args: ScriptArgs;
|
|
353
354
|
language?: ScriptLang;
|
|
354
355
|
tag?: string;
|
|
@@ -757,8 +758,10 @@ export type GetAllTopicSubscription = {
|
|
|
757
758
|
export type DeleteGcpSubscription = {
|
|
758
759
|
subscription_id: string;
|
|
759
760
|
};
|
|
761
|
+
export type AwsAuthResourceType = 'oidc' | 'credentials';
|
|
760
762
|
export type SqsTrigger = TriggerExtraProperty & {
|
|
761
763
|
queue_url: string;
|
|
764
|
+
aws_auth_resource_type: AwsAuthResourceType;
|
|
762
765
|
aws_resource_path: string;
|
|
763
766
|
message_attributes?: Array<(string)>;
|
|
764
767
|
server_id?: string;
|
|
@@ -768,6 +771,7 @@ export type SqsTrigger = TriggerExtraProperty & {
|
|
|
768
771
|
};
|
|
769
772
|
export type NewSqsTrigger = {
|
|
770
773
|
queue_url: string;
|
|
774
|
+
aws_auth_resource_type: AwsAuthResourceType;
|
|
771
775
|
aws_resource_path: string;
|
|
772
776
|
message_attributes?: Array<(string)>;
|
|
773
777
|
path: string;
|
|
@@ -777,6 +781,7 @@ export type NewSqsTrigger = {
|
|
|
777
781
|
};
|
|
778
782
|
export type EditSqsTrigger = {
|
|
779
783
|
queue_url: string;
|
|
784
|
+
aws_auth_resource_type: AwsAuthResourceType;
|
|
780
785
|
aws_resource_path: string;
|
|
781
786
|
message_attributes?: Array<(string)>;
|
|
782
787
|
path: string;
|
|
@@ -4136,7 +4141,7 @@ export type BatchReRunJobsData = {
|
|
|
4136
4141
|
input_transforms?: {
|
|
4137
4142
|
[key: string]: InputTransform;
|
|
4138
4143
|
};
|
|
4139
|
-
use_latest_version?:
|
|
4144
|
+
use_latest_version?: boolean;
|
|
4140
4145
|
};
|
|
4141
4146
|
};
|
|
4142
4147
|
flow_options_by_path: {
|
|
@@ -4144,7 +4149,7 @@ export type BatchReRunJobsData = {
|
|
|
4144
4149
|
input_transforms?: {
|
|
4145
4150
|
[key: string]: InputTransform;
|
|
4146
4151
|
};
|
|
4147
|
-
use_latest_version?:
|
|
4152
|
+
use_latest_version?: boolean;
|
|
4148
4153
|
};
|
|
4149
4154
|
};
|
|
4150
4155
|
};
|
|
@@ -11540,7 +11545,7 @@ export type $OpenApiTs = {
|
|
|
11540
11545
|
input_transforms?: {
|
|
11541
11546
|
[key: string]: InputTransform;
|
|
11542
11547
|
};
|
|
11543
|
-
use_latest_version?:
|
|
11548
|
+
use_latest_version?: boolean;
|
|
11544
11549
|
};
|
|
11545
11550
|
};
|
|
11546
11551
|
flow_options_by_path: {
|
|
@@ -11548,7 +11553,7 @@ export type $OpenApiTs = {
|
|
|
11548
11553
|
input_transforms?: {
|
|
11549
11554
|
[key: string]: InputTransform;
|
|
11550
11555
|
};
|
|
11551
|
-
use_latest_version?:
|
|
11556
|
+
use_latest_version?: boolean;
|
|
11552
11557
|
};
|
|
11553
11558
|
};
|
|
11554
11559
|
};
|