-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
119 lines (119 loc) · 3.71 KB
/
plugin.json
File metadata and controls
119 lines (119 loc) · 3.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "workflow-plugin-auth",
"version": "0.0.0",
"description": "Passwordless authentication plugin: WebAuthn/passkeys, TOTP, email magic links",
"author": "GoCodeAlone",
"license": "MIT",
"type": "external",
"tier": "core",
"private": false,
"minEngineVersion": "0.57.2",
"keywords": [
"auth",
"webauthn",
"passkey",
"totp",
"magic-link",
"passwordless"
],
"homepage": "https://github.com/GoCodeAlone/workflow-plugin-auth",
"repository": "https://github.com/GoCodeAlone/workflow-plugin-auth",
"downloads": [
{
"os": "linux",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-auth/releases/download/v0.2.12/workflow-plugin-auth_0.2.12_linux_amd64.tar.gz"
},
{
"os": "linux",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-auth/releases/download/v0.2.12/workflow-plugin-auth_0.2.12_linux_arm64.tar.gz"
},
{
"os": "darwin",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-auth/releases/download/v0.2.12/workflow-plugin-auth_0.2.12_darwin_amd64.tar.gz"
},
{
"os": "darwin",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-auth/releases/download/v0.2.12/workflow-plugin-auth_0.2.12_darwin_arm64.tar.gz"
}
],
"moduleTypes": [
"auth.credential"
],
"stepTypes": [
"step.auth_passkey_begin_register",
"step.auth_passkey_finish_register",
"step.auth_passkey_begin_login",
"step.auth_passkey_finish_login",
"step.auth_totp_generate_secret",
"step.auth_totp_verify",
"step.auth_totp_recovery_codes",
"step.auth_magic_link_generate",
"step.auth_magic_link_verify",
"step.auth_magic_link_send",
"step.auth_password_hash",
"step.auth_password_verify",
"step.auth_challenge_generate",
"step.auth_challenge_verify",
"step.auth_normalize_phone",
"step.auth_methods_policy",
"step.auth_policy_gate",
"step.auth_methods_response",
"step.auth_policy_audit",
"step.auth_provider_catalog",
"step.auth_admin_contribution_describe",
"step.auth_admin_config_describe",
"step.auth_admin_config_validate",
"step.auth_oauth_provider_config",
"step.auth_oauth_start",
"step.auth_oauth_exchange",
"step.auth_oauth_userinfo",
"step.auth_credential_list",
"step.auth_credential_revoke",
"step.auth_bootstrap_redeem",
"step.auth_jwt_issue"
],
"capabilities": {
"configProvider": false,
"moduleTypes": [
"auth.credential"
],
"stepTypes": [
"step.auth_passkey_begin_register",
"step.auth_passkey_finish_register",
"step.auth_passkey_begin_login",
"step.auth_passkey_finish_login",
"step.auth_totp_generate_secret",
"step.auth_totp_verify",
"step.auth_totp_recovery_codes",
"step.auth_magic_link_generate",
"step.auth_magic_link_verify",
"step.auth_magic_link_send",
"step.auth_password_hash",
"step.auth_password_verify",
"step.auth_challenge_generate",
"step.auth_challenge_verify",
"step.auth_normalize_phone",
"step.auth_methods_policy",
"step.auth_policy_gate",
"step.auth_methods_response",
"step.auth_policy_audit",
"step.auth_provider_catalog",
"step.auth_admin_contribution_describe",
"step.auth_admin_config_describe",
"step.auth_admin_config_validate",
"step.auth_oauth_provider_config",
"step.auth_oauth_start",
"step.auth_oauth_exchange",
"step.auth_oauth_userinfo",
"step.auth_credential_list",
"step.auth_credential_revoke",
"step.auth_bootstrap_redeem",
"step.auth_jwt_issue"
],
"triggerTypes": []
}
}