Initial commit: Windmill workspace sync

Scripts, flows, apps, resources and resource types from the Windmill workspace.
API token excluded via .gitignore (config/).
This commit is contained in:
Sebastian Serfling
2026-04-24 09:06:07 +02:00
commit 2b5d29ef67
302 changed files with 9229 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
description: ''
format_extension: null
is_fileset: false
schema:
$schema: https://json-schema.org/draft/2020-12/schema
type: object
order:
- url
- consumerKey
- consumerSecret
- version
- queryStringAuth
properties:
version:
type: string
description: The version of the WooCommerce API, default is v3
default: wc/v3
consumerKey:
type: string
description: The consumer key for WooCommerce API authentication
consumerSecret:
type: string
description: The consumer secret for WooCommerce API authentication
queryStringAuth:
type: boolean
description: When true and using under HTTPS, forces Basic Authentication as
query string, default is false
default: false
url:
type: string
description: Your Store URL
required:
- url
- consumerKey
- consumerSecret