windmill-client 1.323.5 → 1.324.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/schemas.gen.d.ts +6 -0
- package/dist/schemas.gen.js +6 -0
- package/dist/services.gen.d.ts +321 -312
- package/dist/services.gen.js +18 -0
- package/dist/types.gen.d.ts +3216 -51
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -116,6 +116,9 @@ export declare const $Script: {
|
|
|
116
116
|
readonly no_main_func: {
|
|
117
117
|
readonly type: "boolean";
|
|
118
118
|
};
|
|
119
|
+
readonly codebase: {
|
|
120
|
+
readonly type: "string";
|
|
121
|
+
};
|
|
119
122
|
};
|
|
120
123
|
readonly required: readonly ["hash", "path", "summary", "description", "content", "created_by", "created_at", "archived", "deleted", "is_template", "extra_perms", "language", "kind", "starred", "no_main_func"];
|
|
121
124
|
};
|
|
@@ -205,6 +208,9 @@ export declare const $NewScript: {
|
|
|
205
208
|
readonly no_main_func: {
|
|
206
209
|
readonly type: "boolean";
|
|
207
210
|
};
|
|
211
|
+
readonly codebase: {
|
|
212
|
+
readonly type: "string";
|
|
213
|
+
};
|
|
208
214
|
};
|
|
209
215
|
readonly required: readonly ["path", "summary", "description", "content", "language"];
|
|
210
216
|
};
|
package/dist/schemas.gen.js
CHANGED
|
@@ -121,6 +121,9 @@ exports.$Script = {
|
|
|
121
121
|
},
|
|
122
122
|
no_main_func: {
|
|
123
123
|
type: 'boolean'
|
|
124
|
+
},
|
|
125
|
+
codebase: {
|
|
126
|
+
type: 'string'
|
|
124
127
|
}
|
|
125
128
|
},
|
|
126
129
|
required: ['hash', 'path', 'summary', 'description', 'content', 'created_by', 'created_at', 'archived', 'deleted', 'is_template', 'extra_perms', 'language', 'kind', 'starred', 'no_main_func']
|
|
@@ -210,6 +213,9 @@ exports.$NewScript = {
|
|
|
210
213
|
},
|
|
211
214
|
no_main_func: {
|
|
212
215
|
type: 'boolean'
|
|
216
|
+
},
|
|
217
|
+
codebase: {
|
|
218
|
+
type: 'string'
|
|
213
219
|
}
|
|
214
220
|
},
|
|
215
221
|
required: ['path', 'summary', 'description', 'content', 'language']
|