Skip to content

Commit 8ec548c

Browse files
committed
[WM] Script 'f/c/trusted_script' deployed
1 parent 9db5d9b commit 8ec548c

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

f/c/trusted_script.script.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"dependencies": {}
33
}
4-
//bun.lockb
4+
//bun.lock
55
<empty>

f/c/trusted_script.script.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ schema:
1515
description: ''
1616
default: null
1717
enum:
18-
- my
18+
- myyy
1919
- enum
20+
originalType: enum
2021
e:
2122
type: string
2223
description: ''
2324
default: inferred type string from default arg
25+
originalType: string
2426
f:
2527
type: object
2628
description: ''
@@ -29,6 +31,7 @@ schema:
2931
properties:
3032
nested:
3133
type: string
34+
originalType: string
3235
required:
3336
- a
3437
- b

f/c/trusted_script.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import * as wmill from "windmill-client"
33

44
// fill the type, or use the +Resource type to get a type-safe reference to a resource
55
// type Postgresql = object
6-
6+
//f
77
export async function main(
88
a: number,
9-
b: "my" | "enum",
9+
b: "myyy" | "enum",
1010
//c: Postgresql,
1111
//d: wmill.S3Object, // for large files backed by S3 (https://www.windmill.dev/docs/core_concepts/persistent_storage/large_data_files)
1212
e = "inferred type string from default arg",

0 commit comments

Comments
 (0)