Add Windmill workflows and Git auto-sync
- Add wmill.yaml configuration with includes for f/**, u/**, g/** - Add sync_to_git.sh script for automatic Git synchronization - Add initial workflows synced from Windmill: - Test script: u/antigravity/test_git_sync - Admin scripts: u/admin/hub_sync - Setup app: g/all/setup_app - Folders: f/app_custom, f/app_groups, f/app_themes
This commit is contained in:
14
.gitignore
vendored
14
.gitignore
vendored
@@ -28,3 +28,17 @@ Thumbs.db
|
||||
# Resolved markdown files (generated by editor)
|
||||
*.resolved
|
||||
*.resolved.*
|
||||
|
||||
# Windmill workflows - exclude cache and temp files
|
||||
workflows/.wmill/
|
||||
|
||||
# Windmill workflows directory
|
||||
workflows/.wmill/cache/
|
||||
workflows/.wmill/tmp/
|
||||
|
||||
# But track the actual workflows
|
||||
!workflows/f/
|
||||
!workflows/u/
|
||||
!workflows/g/
|
||||
!workflows/wmill.yaml
|
||||
!workflows/wmill-lock.yaml
|
||||
|
||||
43
sync_to_git.sh
Executable file
43
sync_to_git.sh
Executable file
@@ -0,0 +1,43 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Windmill Workflow Git Auto-Sync Script
|
||||
# このスクリプトは、Windmillワークフローを自動的にGitにコミットします
|
||||
|
||||
set -e
|
||||
|
||||
# 色付き出力
|
||||
GREEN='\033[0;32m'
|
||||
YELLOW='\033[1;33m'
|
||||
NC='\033[0m' # No Color
|
||||
|
||||
echo -e "${GREEN}=== Windmill Workflow Git Sync ===${NC}"
|
||||
|
||||
# ディレクトリに移動
|
||||
cd /home/akira/develop/windmill/workflows
|
||||
|
||||
# PATHを設定
|
||||
export PATH=~/.npm-global/bin:$PATH
|
||||
|
||||
# Windmillから最新を取得
|
||||
echo -e "${YELLOW}Pulling from Windmill...${NC}"
|
||||
wmill sync pull --skip-variables --skip-secrets --skip-resources --yes
|
||||
|
||||
# 変更があるか確認
|
||||
if [[ -n $(git status --porcelain) ]]; then
|
||||
echo -e "${YELLOW}Changes detected, committing to Git...${NC}"
|
||||
|
||||
# 変更をステージング
|
||||
git add -A
|
||||
|
||||
# コミット
|
||||
TIMESTAMP=$(date '+%Y-%m-%d %H:%M:%S')
|
||||
git commit -m "Auto-sync: ${TIMESTAMP}
|
||||
|
||||
Synced workflows from Windmill workspace"
|
||||
|
||||
echo -e "${GREEN}✓ Changes committed to Git${NC}"
|
||||
else
|
||||
echo -e "${GREEN}✓ No changes detected${NC}"
|
||||
fi
|
||||
|
||||
echo -e "${GREEN}=== Sync Complete ===${NC}"
|
||||
5
workflows/f/app_custom/folder.meta.yaml
Normal file
5
workflows/f/app_custom/folder.meta.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
summary: null
|
||||
display_name: App Custom Components
|
||||
extra_perms:
|
||||
g/all: false
|
||||
owners: []
|
||||
5
workflows/f/app_groups/folder.meta.yaml
Normal file
5
workflows/f/app_groups/folder.meta.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
summary: null
|
||||
display_name: App Groups
|
||||
extra_perms:
|
||||
g/all: false
|
||||
owners: []
|
||||
5
workflows/f/app_themes/folder.meta.yaml
Normal file
5
workflows/f/app_themes/folder.meta.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
summary: null
|
||||
display_name: App Themes
|
||||
extra_perms:
|
||||
g/all: false
|
||||
owners: []
|
||||
828
workflows/g/all/setup_app__app/app.yaml
Normal file
828
workflows/g/all/setup_app__app/app.yaml
Normal file
@@ -0,0 +1,828 @@
|
||||
summary: New User Setup App
|
||||
value:
|
||||
css:
|
||||
buttoncomponent:
|
||||
button:
|
||||
class: ''
|
||||
style: ''
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
containercomponent:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
htmlcomponent:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
imagecomponent:
|
||||
image:
|
||||
class: ''
|
||||
style: ''
|
||||
schemaformcomponent:
|
||||
description:
|
||||
class: ''
|
||||
style: ''
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
label:
|
||||
class: ''
|
||||
style: ''
|
||||
textcomponent:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
text:
|
||||
class: ''
|
||||
style: ''
|
||||
textinputcomponent:
|
||||
input:
|
||||
class: ''
|
||||
style: ''
|
||||
fullscreen: false
|
||||
grid:
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 2
|
||||
w: 11
|
||||
x: 0
|
||||
'y': 1
|
||||
'3':
|
||||
fixed: false
|
||||
h: 2
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 0
|
||||
id: a
|
||||
data:
|
||||
id: a
|
||||
type: textcomponent
|
||||
componentInput:
|
||||
type: templatev2
|
||||
value: 'Hello ${ctx.username}'
|
||||
connections: []
|
||||
eval: Setup your Windmill Instance
|
||||
fieldType: template
|
||||
configuration:
|
||||
copyButton:
|
||||
type: static
|
||||
value: false
|
||||
style:
|
||||
type: static
|
||||
value: Body
|
||||
tooltip:
|
||||
type: static
|
||||
value: ''
|
||||
customCss:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
text:
|
||||
class: text-3xl font-semibold
|
||||
style: ''
|
||||
horizontalAlignment: left
|
||||
verticalAlignment: center
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 2
|
||||
w: 1
|
||||
x: 11
|
||||
'y': 1
|
||||
'3':
|
||||
fixed: false
|
||||
h: 3
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 2
|
||||
id: b
|
||||
data:
|
||||
id: b
|
||||
type: imagecomponent
|
||||
configuration:
|
||||
altText:
|
||||
type: static
|
||||
value: ''
|
||||
imageFit:
|
||||
type: static
|
||||
value: contain
|
||||
source:
|
||||
type: static
|
||||
value: /logo.svg
|
||||
sourceKind:
|
||||
type: static
|
||||
value: url
|
||||
customCss:
|
||||
image:
|
||||
class: ''
|
||||
style: ''
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 12
|
||||
w: 6
|
||||
x: 0
|
||||
'y': 6
|
||||
'3':
|
||||
fixed: false
|
||||
h: 11
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 6
|
||||
id: d
|
||||
data:
|
||||
id: d
|
||||
type: containercomponent
|
||||
configuration: {}
|
||||
customCss:
|
||||
container:
|
||||
class: shadow-lg rounded-lg border p-2 mr-2
|
||||
style: ''
|
||||
numberOfSubgrids: 1
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 12
|
||||
w: 6
|
||||
x: 6
|
||||
'y': 6
|
||||
'3':
|
||||
fixed: false
|
||||
h: 9
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 17
|
||||
id: f
|
||||
data:
|
||||
id: f
|
||||
type: containercomponent
|
||||
configuration: {}
|
||||
customCss:
|
||||
container:
|
||||
class: shadow-lg rounded-lg border p-2 ml-2
|
||||
style: ''
|
||||
numberOfSubgrids: 1
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 2
|
||||
w: 9
|
||||
x: 3
|
||||
'y': 19
|
||||
'3':
|
||||
fixed: false
|
||||
h: 2
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 26
|
||||
id: i
|
||||
data:
|
||||
id: i
|
||||
type: buttoncomponent
|
||||
componentInput:
|
||||
type: runnable
|
||||
autoRefresh: false
|
||||
fields:
|
||||
enable_hub_sync:
|
||||
type: evalv2
|
||||
value: null
|
||||
connections:
|
||||
- id: result
|
||||
componentId: h
|
||||
expr: h.result
|
||||
fieldType: boolean
|
||||
newEmail:
|
||||
type: evalv2
|
||||
value: null
|
||||
connections:
|
||||
- id: values
|
||||
componentId: c
|
||||
expr: c.values.new_email
|
||||
fieldType: string
|
||||
newPassword:
|
||||
type: evalv2
|
||||
value: null
|
||||
connections:
|
||||
- id: values
|
||||
componentId: c
|
||||
expr: c.values.password
|
||||
fieldType: string
|
||||
oldEmail:
|
||||
type: evalv2
|
||||
value: null
|
||||
connections:
|
||||
- id: email
|
||||
componentId: ctx
|
||||
expr: ctx.email
|
||||
fieldType: string
|
||||
sync_now:
|
||||
type: evalv2
|
||||
value: null
|
||||
connections:
|
||||
- id: result
|
||||
componentId: k
|
||||
expr: k.result
|
||||
fieldType: boolean
|
||||
fieldType: any
|
||||
recomputeOnInputChanged: false
|
||||
runnable:
|
||||
name: Change Account
|
||||
inlineScript:
|
||||
content: '!inline change_account.deno.ts'
|
||||
language: deno
|
||||
path: g/all/setup_app/Change_Account
|
||||
schema:
|
||||
$schema: 'https://json-schema.org/draft/2020-12/schema'
|
||||
type: object
|
||||
properties:
|
||||
enable_hub_sync:
|
||||
type: boolean
|
||||
description: ''
|
||||
default: null
|
||||
newEmail:
|
||||
type: string
|
||||
description: ''
|
||||
default: null
|
||||
newPassword:
|
||||
type: string
|
||||
description: ''
|
||||
default: null
|
||||
oldEmail:
|
||||
type: string
|
||||
description: ''
|
||||
default: null
|
||||
sync_now:
|
||||
type: boolean
|
||||
description: ''
|
||||
default: null
|
||||
required:
|
||||
- oldEmail
|
||||
- newEmail
|
||||
- newPassword
|
||||
- enable_hub_sync
|
||||
- sync_now
|
||||
configuration:
|
||||
afterIcon:
|
||||
type: static
|
||||
value: Zap
|
||||
beforeIcon:
|
||||
type: static
|
||||
value: ''
|
||||
color:
|
||||
type: static
|
||||
value: dark
|
||||
disabled:
|
||||
type: evalv2
|
||||
value: false
|
||||
connections:
|
||||
- id: values
|
||||
componentId: c
|
||||
- id: valid
|
||||
componentId: c
|
||||
expr: >-
|
||||
c?.values?.new_email === '' || c?.values?.password === ''||c.valid
|
||||
=== false
|
||||
fillContainer:
|
||||
type: static
|
||||
value: false
|
||||
label:
|
||||
type: static
|
||||
value: Set admin account and hub sync
|
||||
onError:
|
||||
type: oneOf
|
||||
configuration:
|
||||
close:
|
||||
id:
|
||||
type: static
|
||||
value: ''
|
||||
errorOverlay: {}
|
||||
gotoUrl:
|
||||
newTab:
|
||||
type: static
|
||||
value: true
|
||||
url:
|
||||
type: static
|
||||
value: ''
|
||||
open:
|
||||
id:
|
||||
type: static
|
||||
value: ''
|
||||
sendErrorToast:
|
||||
appendError:
|
||||
type: static
|
||||
value: true
|
||||
message:
|
||||
type: static
|
||||
value: ''
|
||||
setTab:
|
||||
setTab:
|
||||
type: static
|
||||
value:
|
||||
- id: p
|
||||
index: 0
|
||||
selected: setTab
|
||||
onSuccess:
|
||||
type: oneOf
|
||||
configuration:
|
||||
clearFiles:
|
||||
id:
|
||||
type: static
|
||||
value: ''
|
||||
close:
|
||||
id:
|
||||
type: static
|
||||
value: ''
|
||||
closeModal:
|
||||
modalId:
|
||||
type: static
|
||||
value: ''
|
||||
gotoUrl:
|
||||
newTab:
|
||||
type: static
|
||||
value: false
|
||||
url:
|
||||
type: evalv2
|
||||
value: ''
|
||||
connections:
|
||||
- id: result
|
||||
componentId: bg_1
|
||||
expr: bg_1.result
|
||||
none: {}
|
||||
open:
|
||||
id:
|
||||
type: static
|
||||
value: ''
|
||||
openModal:
|
||||
modalId:
|
||||
type: static
|
||||
value: ''
|
||||
sendToast:
|
||||
message:
|
||||
type: static
|
||||
value: ''
|
||||
setTab:
|
||||
setTab:
|
||||
type: static
|
||||
value:
|
||||
- id: p
|
||||
index: 1
|
||||
selected: gotoUrl
|
||||
size:
|
||||
type: static
|
||||
value: lg
|
||||
triggerOnAppLoad:
|
||||
type: static
|
||||
value: false
|
||||
customCss:
|
||||
button:
|
||||
class: ''
|
||||
style: ''
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
horizontalAlignment: right
|
||||
recomputeIds: []
|
||||
verticalAlignment: center
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 7
|
||||
w: 12
|
||||
x: 0
|
||||
'y': 21
|
||||
'3':
|
||||
fixed: false
|
||||
h: 8
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 28
|
||||
id: p
|
||||
data:
|
||||
id: p
|
||||
type: conditionalwrapper
|
||||
conditions:
|
||||
- type: evalv2
|
||||
connections:
|
||||
- id: result
|
||||
componentId: i
|
||||
expr: i?.result.error
|
||||
fieldType: boolean
|
||||
- type: evalv2
|
||||
connections: []
|
||||
expr: 'true'
|
||||
fieldType: boolean
|
||||
configuration: {}
|
||||
customCss:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
numberOfSubgrids: 2
|
||||
hiddenInlineScripts:
|
||||
- type: runnableByName
|
||||
name: Background Runnable 0
|
||||
fields: {}
|
||||
hidden: true
|
||||
- name: Compute URL
|
||||
autoRefresh: true
|
||||
fields: {}
|
||||
inlineScript:
|
||||
content: '!inline compute_url.frontend.js'
|
||||
language: frontend
|
||||
path: u/faton/captivating_app/Compute_URL
|
||||
refreshOn:
|
||||
- id: c
|
||||
key: values
|
||||
suggestedRefreshOn: []
|
||||
recomputeIds: []
|
||||
recomputeOnInputChanged: true
|
||||
norefreshbar: true
|
||||
subgrids:
|
||||
d-0:
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 1
|
||||
w: 12
|
||||
x: 0
|
||||
'y': 0
|
||||
'3':
|
||||
fixed: false
|
||||
h: 1
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 0
|
||||
id: e
|
||||
data:
|
||||
id: e
|
||||
type: textcomponent
|
||||
componentInput:
|
||||
type: templatev2
|
||||
value: 'Hello ${ctx.username}'
|
||||
connections: []
|
||||
eval: Setup a secure account
|
||||
fieldType: template
|
||||
configuration:
|
||||
copyButton:
|
||||
type: static
|
||||
value: false
|
||||
style:
|
||||
type: static
|
||||
value: Body
|
||||
tooltip:
|
||||
type: static
|
||||
value: ''
|
||||
customCss:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
text:
|
||||
class: text-xl font-semibold px-2
|
||||
style: ''
|
||||
horizontalAlignment: left
|
||||
verticalAlignment: center
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 5
|
||||
w: 12
|
||||
x: 0
|
||||
'y': 2
|
||||
'3':
|
||||
fixed: false
|
||||
h: 5
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 2
|
||||
id: c
|
||||
data:
|
||||
id: c
|
||||
type: schemaformcomponent
|
||||
componentInput:
|
||||
type: static
|
||||
value:
|
||||
order:
|
||||
- new_email
|
||||
- password
|
||||
properties:
|
||||
new_email:
|
||||
type: string
|
||||
description: ''
|
||||
default: ''
|
||||
format: email
|
||||
pattern: '^[\w-.]+@([\w-]+\.)+[\w-]{2,4}$'
|
||||
password:
|
||||
type: string
|
||||
description: ''
|
||||
customErrorMessage: Must have at least 2 chars
|
||||
default: ''
|
||||
password: true
|
||||
pattern: ^..+$
|
||||
required: []
|
||||
fieldType: schema
|
||||
configuration:
|
||||
defaultValues:
|
||||
type: static
|
||||
value: {}
|
||||
displayType:
|
||||
type: static
|
||||
value: false
|
||||
dynamicEnums:
|
||||
type: static
|
||||
value: {}
|
||||
largeGap:
|
||||
type: static
|
||||
value: false
|
||||
customCss:
|
||||
description:
|
||||
class: ''
|
||||
style: ''
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
label:
|
||||
class: ''
|
||||
style: ''
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 1
|
||||
w: 12
|
||||
x: 0
|
||||
'y': 10
|
||||
'3':
|
||||
fixed: false
|
||||
h: 1
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 9
|
||||
id: l
|
||||
data:
|
||||
id: l
|
||||
type: textcomponent
|
||||
componentInput:
|
||||
type: templatev2
|
||||
value: 'Hello ${ctx.username}'
|
||||
connections:
|
||||
- id: email
|
||||
componentId: ctx
|
||||
eval: 'Current email: ${ctx.email}'
|
||||
fieldType: template
|
||||
configuration:
|
||||
copyButton:
|
||||
type: static
|
||||
value: false
|
||||
style:
|
||||
type: static
|
||||
value: Caption
|
||||
tooltip:
|
||||
type: static
|
||||
value: ''
|
||||
customCss:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
text:
|
||||
class: px-2
|
||||
style: ''
|
||||
horizontalAlignment: left
|
||||
verticalAlignment: top
|
||||
f-0:
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 1
|
||||
w: 12
|
||||
x: 0
|
||||
'y': 0
|
||||
'3':
|
||||
fixed: false
|
||||
h: 1
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 0
|
||||
id: g
|
||||
data:
|
||||
id: g
|
||||
type: textcomponent
|
||||
componentInput:
|
||||
type: templatev2
|
||||
value: 'Hello ${ctx.username}'
|
||||
connections: []
|
||||
eval: Hub Sync
|
||||
fieldType: template
|
||||
configuration:
|
||||
copyButton:
|
||||
type: static
|
||||
value: false
|
||||
style:
|
||||
type: static
|
||||
value: Body
|
||||
tooltip:
|
||||
type: static
|
||||
value: ''
|
||||
customCss:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
text:
|
||||
class: text-xl font-semibold px-2
|
||||
style: ''
|
||||
horizontalAlignment: left
|
||||
verticalAlignment: center
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 6
|
||||
w: 12
|
||||
x: 0
|
||||
'y': 2
|
||||
'3':
|
||||
fixed: false
|
||||
h: 3
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 2
|
||||
id: m
|
||||
data:
|
||||
id: m
|
||||
type: containercomponent
|
||||
configuration: {}
|
||||
customCss:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
numberOfSubgrids: 1
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 1
|
||||
w: 12
|
||||
x: 0
|
||||
'y': 10
|
||||
'3':
|
||||
fixed: false
|
||||
h: 2
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 6
|
||||
id: 'n'
|
||||
data:
|
||||
id: 'n'
|
||||
type: textcomponent
|
||||
componentInput:
|
||||
type: templatev2
|
||||
value: 'Hello ${ctx.username}'
|
||||
connections: []
|
||||
eval: The schedule synchronizes resource types from the Hub every day.
|
||||
fieldType: template
|
||||
configuration:
|
||||
copyButton:
|
||||
type: static
|
||||
value: false
|
||||
style:
|
||||
type: static
|
||||
value: Caption
|
||||
tooltip:
|
||||
type: static
|
||||
value: ''
|
||||
customCss:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
text:
|
||||
class: px-2 xs
|
||||
style: ''
|
||||
horizontalAlignment: left
|
||||
verticalAlignment: top
|
||||
m-0:
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 2
|
||||
w: 12
|
||||
x: 0
|
||||
'y': 0
|
||||
'3':
|
||||
fixed: false
|
||||
h: 1
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 0
|
||||
id: k
|
||||
data:
|
||||
id: k
|
||||
type: checkboxcomponent
|
||||
configuration:
|
||||
defaultValue:
|
||||
type: static
|
||||
value: true
|
||||
disabled:
|
||||
type: static
|
||||
value: false
|
||||
label:
|
||||
type: static
|
||||
value: Sync resource types now
|
||||
customCss:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
text:
|
||||
class: ''
|
||||
style: ''
|
||||
horizontalAlignment: left
|
||||
recomputeIds: []
|
||||
verticalAlignment: center
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 2
|
||||
w: 12
|
||||
x: 0
|
||||
'y': 2
|
||||
'3':
|
||||
fixed: false
|
||||
h: 1
|
||||
w: 3
|
||||
x: 0
|
||||
'y': 1
|
||||
id: h
|
||||
data:
|
||||
id: h
|
||||
type: checkboxcomponent
|
||||
configuration:
|
||||
defaultValue:
|
||||
type: static
|
||||
value: true
|
||||
disabled:
|
||||
type: static
|
||||
value: false
|
||||
label:
|
||||
type: static
|
||||
value: Sync resource types every day
|
||||
customCss:
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
text:
|
||||
class: ''
|
||||
style: ''
|
||||
horizontalAlignment: left
|
||||
recomputeIds: []
|
||||
verticalAlignment: center
|
||||
p-0:
|
||||
- '12':
|
||||
fixed: false
|
||||
h: 3
|
||||
w: 12
|
||||
x: 0
|
||||
'y': 0
|
||||
'3':
|
||||
fixed: false
|
||||
h: 1
|
||||
w: 2
|
||||
x: 0
|
||||
'y': 0
|
||||
id: j
|
||||
data:
|
||||
id: j
|
||||
type: alertcomponent
|
||||
configuration:
|
||||
type:
|
||||
type: static
|
||||
value: error
|
||||
description:
|
||||
type: evalv2
|
||||
value: Description
|
||||
connections:
|
||||
- id: result
|
||||
componentId: i
|
||||
expr: i?.result?.error?.message
|
||||
collapsible:
|
||||
type: static
|
||||
value: false
|
||||
initiallyCollapsed:
|
||||
type: static
|
||||
value: false
|
||||
notRounded:
|
||||
type: static
|
||||
value: false
|
||||
size:
|
||||
type: static
|
||||
value: sm
|
||||
title:
|
||||
type: static
|
||||
value: 'There were an error with your setup:'
|
||||
tooltip:
|
||||
type: static
|
||||
value: ''
|
||||
customCss:
|
||||
description:
|
||||
class: ''
|
||||
style: ''
|
||||
background:
|
||||
class: ''
|
||||
style: ''
|
||||
container:
|
||||
class: ''
|
||||
style: ''
|
||||
icon:
|
||||
class: ''
|
||||
style: ''
|
||||
title:
|
||||
class: ''
|
||||
style: ''
|
||||
verticalAlignment: center
|
||||
p-1: []
|
||||
theme:
|
||||
type: path
|
||||
path: f/app_themes/theme_0
|
||||
unusedInlineScripts: []
|
||||
72
workflows/g/all/setup_app__app/change_account.deno.ts
Normal file
72
workflows/g/all/setup_app__app/change_account.deno.ts
Normal file
@@ -0,0 +1,72 @@
|
||||
import * as wmill from "https://deno.land/x/windmill@v1.99.0/mod.ts";
|
||||
|
||||
export async function main(
|
||||
oldEmail: string,
|
||||
newEmail: string,
|
||||
newPassword: string,
|
||||
enable_hub_sync: boolean,
|
||||
sync_now: boolean,
|
||||
) {
|
||||
try {
|
||||
await wmill.UserService.createUserGlobally({
|
||||
requestBody: {
|
||||
email: newEmail,
|
||||
password: newPassword,
|
||||
super_admin: true,
|
||||
},
|
||||
});
|
||||
} catch (e) {
|
||||
throw Error("User already exists: " + e.body);
|
||||
}
|
||||
|
||||
let new_token;
|
||||
|
||||
try {
|
||||
new_token = await wmill.UserService.login({
|
||||
requestBody: {
|
||||
email: newEmail,
|
||||
password: newPassword,
|
||||
},
|
||||
});
|
||||
} catch (e) {
|
||||
throw Error("Login failed: " + e.body);
|
||||
}
|
||||
|
||||
wmill.setClient(new_token, Deno.env.get("BASE_INTERNAL_URL")!);
|
||||
|
||||
if (sync_now) {
|
||||
try {
|
||||
await wmill.JobService.runScriptByPath({
|
||||
workspace: "admins",
|
||||
path: "u/admin/hub_sync",
|
||||
requestBody: {},
|
||||
});
|
||||
} catch (e) {
|
||||
throw Error("Hub sync failed:" + e.body);
|
||||
}
|
||||
}
|
||||
|
||||
if (enable_hub_sync) {
|
||||
try {
|
||||
await wmill.ScheduleService.createSchedule({
|
||||
workspace: "admins",
|
||||
requestBody: {
|
||||
path: "g/all/hub_sync",
|
||||
schedule: "0 0 0 * * *",
|
||||
script_path: "u/admin/hub_sync",
|
||||
is_flow: false,
|
||||
args: {},
|
||||
enabled: true,
|
||||
timezone: "Etc/UTC",
|
||||
},
|
||||
});
|
||||
} catch (e) {
|
||||
throw Error("Error creating schedule: " + e.body);
|
||||
}
|
||||
}
|
||||
try {
|
||||
await wmill.UserService.globalUserDelete({ email: oldEmail });
|
||||
} catch (e) {
|
||||
throw Error("Deleting old account failed: " + e.body);
|
||||
}
|
||||
}
|
||||
1
workflows/g/all/setup_app__app/compute_url.frontend.js
Normal file
1
workflows/g/all/setup_app__app/compute_url.frontend.js
Normal file
@@ -0,0 +1 @@
|
||||
return '/user/logout?rd=' + encodeURIComponent('/user/login?email=' + c.values.new_email)
|
||||
283
workflows/u/admin/hub_sync.script.lock
Normal file
283
workflows/u/admin/hub_sync.script.lock
Normal file
@@ -0,0 +1,283 @@
|
||||
{
|
||||
"dependencies": {
|
||||
"windmill-cli": "1.566.1"
|
||||
}
|
||||
}
|
||||
//bun.lock
|
||||
{
|
||||
"lockfileVersion": 1,
|
||||
"workspaces": {
|
||||
"": {
|
||||
"dependencies": {
|
||||
"windmill-cli": "1.566.1",
|
||||
},
|
||||
},
|
||||
},
|
||||
"packages": {
|
||||
"@ayonli/jsext": ["@ayonli/jsext@1.9.0", "", { "dependencies": { "iconv-lite": "^0.6.3", "sudo-prompt": "^9.2.1", "ws": "^8.17.0", "zod": "^3.23.8" } }, "sha512-hIu6lQhoLr5e26lmt+vzopuZffaAyb623r4+8HlN/rhXgm2ywHslzk7UHiATdfDbfPjBARkB6cfXjVEi3aav6g=="],
|
||||
|
||||
"@deno/shim-deno": ["@deno/shim-deno@0.18.2", "", { "dependencies": { "@deno/shim-deno-test": "^0.5.0", "which": "^4.0.0" } }, "sha512-oQ0CVmOio63wlhwQF75zA4ioolPvOwAoK0yuzcS5bDC1JUvH3y1GS8xPh8EOpcoDQRU4FTG8OQfxhpR+c6DrzA=="],
|
||||
|
||||
"@deno/shim-deno-test": ["@deno/shim-deno-test@0.5.0", "", {}, "sha512-4nMhecpGlPi0cSzT67L+Tm+GOJqvuk8gqHBziqcUQOarnuIax1z96/gJHCSIz2Z0zhxE6Rzwb3IZXPtFh51j+w=="],
|
||||
|
||||
"@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.11", "", { "os": "aix", "cpu": "ppc64" }, "sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg=="],
|
||||
|
||||
"@esbuild/android-arm": ["@esbuild/android-arm@0.25.11", "", { "os": "android", "cpu": "arm" }, "sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg=="],
|
||||
|
||||
"@esbuild/android-arm64": ["@esbuild/android-arm64@0.25.11", "", { "os": "android", "cpu": "arm64" }, "sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ=="],
|
||||
|
||||
"@esbuild/android-x64": ["@esbuild/android-x64@0.25.11", "", { "os": "android", "cpu": "x64" }, "sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g=="],
|
||||
|
||||
"@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.25.11", "", { "os": "darwin", "cpu": "arm64" }, "sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w=="],
|
||||
|
||||
"@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.25.11", "", { "os": "darwin", "cpu": "x64" }, "sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ=="],
|
||||
|
||||
"@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.25.11", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA=="],
|
||||
|
||||
"@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.25.11", "", { "os": "freebsd", "cpu": "x64" }, "sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw=="],
|
||||
|
||||
"@esbuild/linux-arm": ["@esbuild/linux-arm@0.25.11", "", { "os": "linux", "cpu": "arm" }, "sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw=="],
|
||||
|
||||
"@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.25.11", "", { "os": "linux", "cpu": "arm64" }, "sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA=="],
|
||||
|
||||
"@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.25.11", "", { "os": "linux", "cpu": "ia32" }, "sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw=="],
|
||||
|
||||
"@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.25.11", "", { "os": "linux", "cpu": "none" }, "sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw=="],
|
||||
|
||||
"@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.25.11", "", { "os": "linux", "cpu": "none" }, "sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ=="],
|
||||
|
||||
"@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.25.11", "", { "os": "linux", "cpu": "ppc64" }, "sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw=="],
|
||||
|
||||
"@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.25.11", "", { "os": "linux", "cpu": "none" }, "sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww=="],
|
||||
|
||||
"@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.25.11", "", { "os": "linux", "cpu": "s390x" }, "sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw=="],
|
||||
|
||||
"@esbuild/linux-x64": ["@esbuild/linux-x64@0.25.11", "", { "os": "linux", "cpu": "x64" }, "sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ=="],
|
||||
|
||||
"@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.25.11", "", { "os": "none", "cpu": "arm64" }, "sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg=="],
|
||||
|
||||
"@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.25.11", "", { "os": "none", "cpu": "x64" }, "sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A=="],
|
||||
|
||||
"@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.25.11", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg=="],
|
||||
|
||||
"@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.25.11", "", { "os": "openbsd", "cpu": "x64" }, "sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw=="],
|
||||
|
||||
"@esbuild/openharmony-arm64": ["@esbuild/openharmony-arm64@0.25.11", "", { "os": "none", "cpu": "arm64" }, "sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ=="],
|
||||
|
||||
"@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.25.11", "", { "os": "sunos", "cpu": "x64" }, "sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA=="],
|
||||
|
||||
"@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.25.11", "", { "os": "win32", "cpu": "arm64" }, "sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q=="],
|
||||
|
||||
"@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.25.11", "", { "os": "win32", "cpu": "ia32" }, "sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA=="],
|
||||
|
||||
"@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.11", "", { "os": "win32", "cpu": "x64" }, "sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA=="],
|
||||
|
||||
"@isaacs/balanced-match": ["@isaacs/balanced-match@4.0.1", "", {}, "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ=="],
|
||||
|
||||
"@isaacs/brace-expansion": ["@isaacs/brace-expansion@5.0.0", "", { "dependencies": { "@isaacs/balanced-match": "^4.0.1" } }, "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA=="],
|
||||
|
||||
"accepts": ["accepts@2.0.0", "", { "dependencies": { "mime-types": "^3.0.0", "negotiator": "^1.0.0" } }, "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng=="],
|
||||
|
||||
"body-parser": ["body-parser@2.2.0", "", { "dependencies": { "bytes": "^3.1.2", "content-type": "^1.0.5", "debug": "^4.4.0", "http-errors": "^2.0.0", "iconv-lite": "^0.6.3", "on-finished": "^2.4.1", "qs": "^6.14.0", "raw-body": "^3.0.0", "type-is": "^2.0.0" } }, "sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg=="],
|
||||
|
||||
"bundle-name": ["bundle-name@4.1.0", "", { "dependencies": { "run-applescript": "^7.0.0" } }, "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q=="],
|
||||
|
||||
"bytes": ["bytes@3.1.2", "", {}, "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="],
|
||||
|
||||
"call-bind-apply-helpers": ["call-bind-apply-helpers@1.0.2", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="],
|
||||
|
||||
"call-bound": ["call-bound@1.0.4", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "get-intrinsic": "^1.3.0" } }, "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg=="],
|
||||
|
||||
"content-disposition": ["content-disposition@1.0.0", "", { "dependencies": { "safe-buffer": "5.2.1" } }, "sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg=="],
|
||||
|
||||
"content-type": ["content-type@1.0.5", "", {}, "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="],
|
||||
|
||||
"cookie": ["cookie@0.7.2", "", {}, "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w=="],
|
||||
|
||||
"cookie-signature": ["cookie-signature@1.2.2", "", {}, "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg=="],
|
||||
|
||||
"core-util-is": ["core-util-is@1.0.3", "", {}, "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="],
|
||||
|
||||
"debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="],
|
||||
|
||||
"default-browser": ["default-browser@5.2.1", "", { "dependencies": { "bundle-name": "^4.1.0", "default-browser-id": "^5.0.0" } }, "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg=="],
|
||||
|
||||
"default-browser-id": ["default-browser-id@5.0.0", "", {}, "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA=="],
|
||||
|
||||
"define-lazy-prop": ["define-lazy-prop@3.0.0", "", {}, "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg=="],
|
||||
|
||||
"depd": ["depd@2.0.0", "", {}, "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="],
|
||||
|
||||
"diff": ["diff@8.0.2", "", {}, "sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg=="],
|
||||
|
||||
"dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="],
|
||||
|
||||
"ee-first": ["ee-first@1.1.1", "", {}, "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="],
|
||||
|
||||
"encodeurl": ["encodeurl@2.0.0", "", {}, "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg=="],
|
||||
|
||||
"es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="],
|
||||
|
||||
"es-errors": ["es-errors@1.3.0", "", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="],
|
||||
|
||||
"es-main": ["es-main@1.4.0", "", {}, "sha512-/rYhbfGK/1E6L7TcoUqmrWbSnOlMoxahiZInSYKbhIZ4/dbclHtXEcrViu4Az9IzYNBT8LcXpPszfS47zbGpwA=="],
|
||||
|
||||
"es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="],
|
||||
|
||||
"esbuild": ["esbuild@0.25.11", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.11", "@esbuild/android-arm": "0.25.11", "@esbuild/android-arm64": "0.25.11", "@esbuild/android-x64": "0.25.11", "@esbuild/darwin-arm64": "0.25.11", "@esbuild/darwin-x64": "0.25.11", "@esbuild/freebsd-arm64": "0.25.11", "@esbuild/freebsd-x64": "0.25.11", "@esbuild/linux-arm": "0.25.11", "@esbuild/linux-arm64": "0.25.11", "@esbuild/linux-ia32": "0.25.11", "@esbuild/linux-loong64": "0.25.11", "@esbuild/linux-mips64el": "0.25.11", "@esbuild/linux-ppc64": "0.25.11", "@esbuild/linux-riscv64": "0.25.11", "@esbuild/linux-s390x": "0.25.11", "@esbuild/linux-x64": "0.25.11", "@esbuild/netbsd-arm64": "0.25.11", "@esbuild/netbsd-x64": "0.25.11", "@esbuild/openbsd-arm64": "0.25.11", "@esbuild/openbsd-x64": "0.25.11", "@esbuild/openharmony-arm64": "0.25.11", "@esbuild/sunos-x64": "0.25.11", "@esbuild/win32-arm64": "0.25.11", "@esbuild/win32-ia32": "0.25.11", "@esbuild/win32-x64": "0.25.11" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q=="],
|
||||
|
||||
"escape-html": ["escape-html@1.0.3", "", {}, "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="],
|
||||
|
||||
"etag": ["etag@1.8.1", "", {}, "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="],
|
||||
|
||||
"express": ["express@5.1.0", "", { "dependencies": { "accepts": "^2.0.0", "body-parser": "^2.2.0", "content-disposition": "^1.0.0", "content-type": "^1.0.5", "cookie": "^0.7.1", "cookie-signature": "^1.2.1", "debug": "^4.4.0", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "etag": "^1.8.1", "finalhandler": "^2.1.0", "fresh": "^2.0.0", "http-errors": "^2.0.0", "merge-descriptors": "^2.0.0", "mime-types": "^3.0.0", "on-finished": "^2.4.1", "once": "^1.4.0", "parseurl": "^1.3.3", "proxy-addr": "^2.0.7", "qs": "^6.14.0", "range-parser": "^1.2.1", "router": "^2.2.0", "send": "^1.1.0", "serve-static": "^2.2.0", "statuses": "^2.0.1", "type-is": "^2.0.1", "vary": "^1.1.2" } }, "sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA=="],
|
||||
|
||||
"finalhandler": ["finalhandler@2.1.0", "", { "dependencies": { "debug": "^4.4.0", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "on-finished": "^2.4.1", "parseurl": "^1.3.3", "statuses": "^2.0.1" } }, "sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q=="],
|
||||
|
||||
"forwarded": ["forwarded@0.2.0", "", {}, "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="],
|
||||
|
||||
"fresh": ["fresh@2.0.0", "", {}, "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A=="],
|
||||
|
||||
"function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="],
|
||||
|
||||
"get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="],
|
||||
|
||||
"get-port": ["get-port@7.1.0", "", {}, "sha512-QB9NKEeDg3xxVwCCwJQ9+xycaz6pBB6iQ76wiWMl1927n0Kir6alPiP+yuiICLLU4jpMe08dXfpebuQppFA2zw=="],
|
||||
|
||||
"get-proto": ["get-proto@1.0.1", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="],
|
||||
|
||||
"gopd": ["gopd@1.2.0", "", {}, "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="],
|
||||
|
||||
"has-symbols": ["has-symbols@1.1.0", "", {}, "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="],
|
||||
|
||||
"hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="],
|
||||
|
||||
"http-errors": ["http-errors@2.0.0", "", { "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" } }, "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="],
|
||||
|
||||
"iconv-lite": ["iconv-lite@0.6.3", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="],
|
||||
|
||||
"immediate": ["immediate@3.0.6", "", {}, "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ=="],
|
||||
|
||||
"inherits": ["inherits@2.0.4", "", {}, "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="],
|
||||
|
||||
"ipaddr.js": ["ipaddr.js@1.9.1", "", {}, "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="],
|
||||
|
||||
"is-docker": ["is-docker@3.0.0", "", { "bin": { "is-docker": "cli.js" } }, "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ=="],
|
||||
|
||||
"is-inside-container": ["is-inside-container@1.0.0", "", { "dependencies": { "is-docker": "^3.0.0" }, "bin": { "is-inside-container": "cli.js" } }, "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA=="],
|
||||
|
||||
"is-promise": ["is-promise@4.0.0", "", {}, "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ=="],
|
||||
|
||||
"is-wsl": ["is-wsl@3.1.0", "", { "dependencies": { "is-inside-container": "^1.0.0" } }, "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw=="],
|
||||
|
||||
"isarray": ["isarray@1.0.0", "", {}, "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="],
|
||||
|
||||
"isexe": ["isexe@3.1.1", "", {}, "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ=="],
|
||||
|
||||
"jszip": ["jszip@3.7.1", "", { "dependencies": { "lie": "~3.3.0", "pako": "~1.0.2", "readable-stream": "~2.3.6", "set-immediate-shim": "~1.0.1" } }, "sha512-ghL0tz1XG9ZEmRMcEN2vt7xabrDdqHHeykgARpmZ0BiIctWxM47Vt63ZO2dnp4QYt/xJVLLy5Zv1l/xRdh2byg=="],
|
||||
|
||||
"lie": ["lie@3.3.0", "", { "dependencies": { "immediate": "~3.0.5" } }, "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ=="],
|
||||
|
||||
"math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="],
|
||||
|
||||
"media-typer": ["media-typer@1.1.0", "", {}, "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw=="],
|
||||
|
||||
"merge-descriptors": ["merge-descriptors@2.0.0", "", {}, "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g=="],
|
||||
|
||||
"mime-db": ["mime-db@1.54.0", "", {}, "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ=="],
|
||||
|
||||
"mime-types": ["mime-types@3.0.1", "", { "dependencies": { "mime-db": "^1.54.0" } }, "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA=="],
|
||||
|
||||
"minimatch": ["minimatch@10.0.3", "", { "dependencies": { "@isaacs/brace-expansion": "^5.0.0" } }, "sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw=="],
|
||||
|
||||
"ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="],
|
||||
|
||||
"negotiator": ["negotiator@1.0.0", "", {}, "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg=="],
|
||||
|
||||
"object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="],
|
||||
|
||||
"on-finished": ["on-finished@2.4.1", "", { "dependencies": { "ee-first": "1.1.1" } }, "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg=="],
|
||||
|
||||
"once": ["once@1.4.0", "", { "dependencies": { "wrappy": "1" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="],
|
||||
|
||||
"open": ["open@10.2.0", "", { "dependencies": { "default-browser": "^5.2.1", "define-lazy-prop": "^3.0.0", "is-inside-container": "^1.0.0", "wsl-utils": "^0.1.0" } }, "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA=="],
|
||||
|
||||
"pako": ["pako@1.0.11", "", {}, "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="],
|
||||
|
||||
"parseurl": ["parseurl@1.3.3", "", {}, "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="],
|
||||
|
||||
"path-to-regexp": ["path-to-regexp@8.3.0", "", {}, "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA=="],
|
||||
|
||||
"process-nextick-args": ["process-nextick-args@2.0.1", "", {}, "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="],
|
||||
|
||||
"proxy-addr": ["proxy-addr@2.0.7", "", { "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" } }, "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg=="],
|
||||
|
||||
"qs": ["qs@6.14.0", "", { "dependencies": { "side-channel": "^1.1.0" } }, "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w=="],
|
||||
|
||||
"range-parser": ["range-parser@1.2.1", "", {}, "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="],
|
||||
|
||||
"raw-body": ["raw-body@3.0.1", "", { "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.7.0", "unpipe": "1.0.0" } }, "sha512-9G8cA+tuMS75+6G/TzW8OtLzmBDMo8p1JRxN5AZ+LAp8uxGA8V8GZm4GQ4/N5QNQEnLmg6SS7wyuSmbKepiKqA=="],
|
||||
|
||||
"readable-stream": ["readable-stream@2.3.8", "", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="],
|
||||
|
||||
"router": ["router@2.2.0", "", { "dependencies": { "debug": "^4.4.0", "depd": "^2.0.0", "is-promise": "^4.0.0", "parseurl": "^1.3.3", "path-to-regexp": "^8.0.0" } }, "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ=="],
|
||||
|
||||
"run-applescript": ["run-applescript@7.1.0", "", {}, "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q=="],
|
||||
|
||||
"safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="],
|
||||
|
||||
"safer-buffer": ["safer-buffer@2.1.2", "", {}, "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="],
|
||||
|
||||
"send": ["send@1.2.0", "", { "dependencies": { "debug": "^4.3.5", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "etag": "^1.8.1", "fresh": "^2.0.0", "http-errors": "^2.0.0", "mime-types": "^3.0.1", "ms": "^2.1.3", "on-finished": "^2.4.1", "range-parser": "^1.2.1", "statuses": "^2.0.1" } }, "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw=="],
|
||||
|
||||
"serve-static": ["serve-static@2.2.0", "", { "dependencies": { "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "parseurl": "^1.3.3", "send": "^1.2.0" } }, "sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ=="],
|
||||
|
||||
"set-immediate-shim": ["set-immediate-shim@1.0.1", "", {}, "sha512-Li5AOqrZWCVA2n5kryzEmqai6bKSIvpz5oUJHPVj6+dsbD3X1ixtsY5tEnsaNpH3pFAHmG8eIHUrtEtohrg+UQ=="],
|
||||
|
||||
"setprototypeof": ["setprototypeof@1.2.0", "", {}, "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="],
|
||||
|
||||
"side-channel": ["side-channel@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3", "side-channel-list": "^1.0.0", "side-channel-map": "^1.0.1", "side-channel-weakmap": "^1.0.2" } }, "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw=="],
|
||||
|
||||
"side-channel-list": ["side-channel-list@1.0.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3" } }, "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA=="],
|
||||
|
||||
"side-channel-map": ["side-channel-map@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3" } }, "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA=="],
|
||||
|
||||
"side-channel-weakmap": ["side-channel-weakmap@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" } }, "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="],
|
||||
|
||||
"statuses": ["statuses@2.0.2", "", {}, "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw=="],
|
||||
|
||||
"string_decoder": ["string_decoder@1.1.1", "", { "dependencies": { "safe-buffer": "~5.1.0" } }, "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="],
|
||||
|
||||
"sudo-prompt": ["sudo-prompt@9.2.1", "", {}, "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw=="],
|
||||
|
||||
"toidentifier": ["toidentifier@1.0.1", "", {}, "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="],
|
||||
|
||||
"type-is": ["type-is@2.0.1", "", { "dependencies": { "content-type": "^1.0.5", "media-typer": "^1.1.0", "mime-types": "^3.0.0" } }, "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw=="],
|
||||
|
||||
"unpipe": ["unpipe@1.0.0", "", {}, "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="],
|
||||
|
||||
"util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="],
|
||||
|
||||
"vary": ["vary@1.1.2", "", {}, "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="],
|
||||
|
||||
"which": ["which@4.0.0", "", { "dependencies": { "isexe": "^3.1.1" }, "bin": { "node-which": "bin/which.js" } }, "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="],
|
||||
|
||||
"windmill-cli": ["windmill-cli@1.566.1", "", { "dependencies": { "@ayonli/jsext": "*", "@deno/shim-deno": "~0.18.0", "diff": "*", "es-main": "*", "esbuild": "*", "express": "*", "get-port": "7.1.0", "jszip": "3.7.1", "minimatch": "*", "open": "*", "ws": "*" }, "bin": { "wmill": "esm/src/main.js" } }, "sha512-dyhcg/fBjOw1GvXxsFI/L+UGgoKTXUBzzVIF7p7HMcNUkD302Uf2l2MwnbJeyYT3czJ8L2oz46/5w2Rq2u/Vhg=="],
|
||||
|
||||
"wrappy": ["wrappy@1.0.2", "", {}, "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="],
|
||||
|
||||
"ws": ["ws@8.18.3", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg=="],
|
||||
|
||||
"wsl-utils": ["wsl-utils@0.1.0", "", { "dependencies": { "is-wsl": "^3.1.0" } }, "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw=="],
|
||||
|
||||
"zod": ["zod@3.25.76", "", {}, "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ=="],
|
||||
|
||||
"http-errors/statuses": ["statuses@2.0.1", "", {}, "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="],
|
||||
|
||||
"raw-body/iconv-lite": ["iconv-lite@0.7.0", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ=="],
|
||||
|
||||
"readable-stream/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="],
|
||||
|
||||
"string_decoder/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="],
|
||||
}
|
||||
}
|
||||
11
workflows/u/admin/hub_sync.script.yaml
Normal file
11
workflows/u/admin/hub_sync.script.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
summary: Synchronize Hub Resource types with instance
|
||||
description: >-
|
||||
Sync latest resource types from hub to share to every workspace. Recommended
|
||||
to run at least once. On a schedule by default.
|
||||
lock: '!inline u/admin/hub_sync.script.lock'
|
||||
kind: script
|
||||
schema:
|
||||
$schema: 'https://json-schema.org/draft/2020-12/schema'
|
||||
type: object
|
||||
properties: {}
|
||||
required: []
|
||||
5
workflows/u/admin/hub_sync.ts
Normal file
5
workflows/u/admin/hub_sync.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import * as wmill from "windmill-cli@1.566.1"
|
||||
|
||||
export async function main() {
|
||||
await wmill.hubPull({ workspace: "admins", token: process.env["WM_TOKEN"], baseUrl: process.env["BASE_URL"] });
|
||||
}
|
||||
4
workflows/u/antigravity/test_git_sync.py
Normal file
4
workflows/u/antigravity/test_git_sync.py
Normal file
@@ -0,0 +1,4 @@
|
||||
def main():
|
||||
print("Hello from Git Sync Test")
|
||||
return {"status": "success"}
|
||||
|
||||
1
workflows/u/antigravity/test_git_sync.script.lock
Normal file
1
workflows/u/antigravity/test_git_sync.script.lock
Normal file
@@ -0,0 +1 @@
|
||||
# py: 3.12
|
||||
9
workflows/u/antigravity/test_git_sync.script.yaml
Normal file
9
workflows/u/antigravity/test_git_sync.script.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
summary: Test script for Git auto-sync
|
||||
description: Test workflow for Git auto-sync
|
||||
lock: '!inline u/antigravity/test_git_sync.script.lock'
|
||||
kind: script
|
||||
schema:
|
||||
$schema: 'https://json-schema.org/draft/2020-12/schema'
|
||||
type: object
|
||||
properties: {}
|
||||
required: []
|
||||
6
workflows/wmill-lock.yaml
Normal file
6
workflows/wmill-lock.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
version: v2
|
||||
locks:
|
||||
g/all/setup_app__app+__app_hash: d71add32e14e552d1a4c861c972a50d9598b07c0af201bbadec5b59bbd99d7e3
|
||||
g/all/setup_app__app+change_account.deno.ts: 3c592cac27e9cdab0de6ae19270bcb08c7fa54355ad05253a12de2351894346b
|
||||
u/admin/hub_sync: aaf9fd803fa229f3029d1bb02bbe3cc422fce680cad39c4eec8dd1da115de102
|
||||
u/antigravity/test_git_sync: 6461260a743de38a8c37d4b6083d481a73a6fde8c17cad1976d6635dca11362c
|
||||
26
workflows/wmill.yaml
Normal file
26
workflows/wmill.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
defaultTs: bun
|
||||
includes:
|
||||
- f/**
|
||||
- u/**
|
||||
- g/**
|
||||
excludes: []
|
||||
codebases: []
|
||||
skipVariables: false
|
||||
skipResources: false
|
||||
skipResourceTypes: false
|
||||
skipSecrets: true
|
||||
skipScripts: false
|
||||
skipFlows: false
|
||||
skipApps: false
|
||||
skipFolders: false
|
||||
includeSchedules: false
|
||||
includeTriggers: false
|
||||
includeUsers: false
|
||||
includeGroups: false
|
||||
includeSettings: false
|
||||
includeKey: false
|
||||
skipWorkspaceDependencies: false
|
||||
nonDottedPaths: true
|
||||
gitBranches:
|
||||
main:
|
||||
overrides: {}
|
||||
Reference in New Issue
Block a user