From 9d2785beceecbbcb87dfd9486e5d42b3705a0ea2 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Fri, 30 Jan 2026 08:17:58 +0000 Subject: [PATCH] fix npm check --- backend/windmill-api/openapi.yaml | 15 +++----- frontend/src/lib/components/Star.svelte | 27 ++++++++------ .../lib/components/common/table/AppRow.svelte | 5 ++- .../components/common/table/FlowRow.svelte | 5 ++- .../components/common/table/RawAppRow.svelte | 5 ++- .../lib/components/common/table/Row.svelte | 37 +++++++------------ .../components/common/table/ScriptRow.svelte | 5 ++- .../(logged)/flows/get/[...path]/+page.svelte | 4 +- .../scripts/get/[...hash]/+page.svelte | 7 ++-- 9 files changed, 58 insertions(+), 52 deletions(-) diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 9a1f0ecb32..09c50c31bf 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -18121,7 +18121,6 @@ components: - visible_to_owner - tag - ExportableCompletedJob: type: object description: Completed job with full data for export/import operations @@ -22276,7 +22275,8 @@ components: properties: kind: type: string - enum: ["script", "flow", "app", "resource", "variable"] + enum: + ["script", "flow", "app", "resource", "variable", "resource_type"] description: Type of the item path: type: string @@ -22588,14 +22588,13 @@ components: type: object properties: service_name: - $ref: '#/components/schemas/NativeServiceName' + $ref: "#/components/schemas/NativeServiceName" oauth_data: nullable: true - $ref: '#/components/schemas/WorkspaceOAuthConfig' + $ref: "#/components/schemas/WorkspaceOAuthConfig" required: - service_name - WorkspaceOAuthConfig: type: object properties: @@ -22626,7 +22625,7 @@ components: type: string enum: [webhook] request_type: - $ref: '#/components/schemas/WebhookRequestType' + $ref: "#/components/schemas/WebhookRequestType" required: - type - request_type @@ -22642,12 +22641,10 @@ components: type: object properties: redirect_uri: - type: - string + type: string required: - redirect_uri - NativeTriggerData: type: object description: Data for creating or updating a native trigger diff --git a/frontend/src/lib/components/Star.svelte b/frontend/src/lib/components/Star.svelte index b4ac4c61ab..04a67bb388 100644 --- a/frontend/src/lib/components/Star.svelte +++ b/frontend/src/lib/components/Star.svelte @@ -1,16 +1,22 @@