You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auth0,fdecc,"Failed Device Confirmation - User Canceled"
30
+
auth0,fdu,"Failed User Deletion"
31
+
auth0,feacft,"Failed to Exchange Authorization Code for Access Token"
32
+
auth0,feccft,"Failed exchange of Access Token for a Client Credentials Grant"
33
+
auth0,fede,"Failed to exchange Device Code for Access Token"
34
+
auth0,fens,"Failed exchange for Native Social Login"
35
+
auth0,feoobft,"Failed exchange of Password and OOB Challenge for Access Token"
36
+
auth0,feotpft,"Failed exchange of Password and OTP Challenge for Access Token"
37
+
auth0,fepft,"Failed exchange of Password for Access Token"
38
+
auth0,fepotpft,"Failed exchange of Passwordless OTP for Access Token"
39
+
auth0,fercft,"Failed Exchange of Password and MFA Recovery Code for Access Token"
40
+
auth0,ferrt,"Failed Exchange of Rotating Refresh Token. This could occur when reuse is detected."
41
+
auth0,fertft,"Failed Exchange of Refresh Token for Access Token. This could occur if the refresh token is revoked or expired."
42
+
auth0,fi,"Failed to accept a user invitation. This could happen if the user accepts an invitation using a different email address than provided in the invitation; or due to a system failure while provisioning the invitation."
43
+
auth0,flo,"Failed Logout"
44
+
auth0,fn,"Failed Notification"
45
+
auth0,fp,"Failed login due to invalid password"
46
+
auth0,fpar,"Failed Push Authorization Request"
47
+
auth0,fpurh,"Failed Post User Registration Hook"
48
+
auth0,fs,"Failed Signup"
49
+
auth0,fsa,"Failed Silent Auth"
50
+
auth0,fu,"Failed login due to invalid username"
51
+
auth0,fv,"Failed to send verification email"
52
+
auth0,fvr,"Failed to proces verification email request"
53
+
auth0,gd_auth_failed,"Multi-factor authentication failed. This could happen due to a wrong code entered for SMS/Voice/Email/TOTP factors; or a system failure."
54
+
auth0,gd_auth_rejected,"User rejected a multi-factor authentication request via push-notification"
55
+
auth0,gd_enrollment_complete,"A first time MFA user has successfully enrolled using one of the factors"
56
+
auth0,gd_otp_rate_limit_exceed,"A user; during enrollment or authentication; enters an incorrect code more than the maximum allowed number of times. Ex: A user enrolling in SMS enters the 6-digit code wrong more than 10 times in a row."
57
+
auth0,gd_recovery_failed,"A user entered a wrong Recovery Code when attempting to authenticate"
58
+
auth0,gd_send_pn,"Push notification for MFA sent successfully sent"
59
+
auth0,gd_send_pn_failure,"Push notification for MFA failed"
60
+
auth0,limit_delegation,"A user is temporarily prevented from logging in because of too many delegation requests"
61
+
auth0,limit_mu,"An IP address is blocked because it attempted too many failed logins without a successful login. Or an IP address is blocked because it attempted too many sign-ups; whether successful or failed."
62
+
auth0,limit_sul,"A user is temporarily prevented from logging in because they reached the maximum logins per time period from the same IP address"
63
+
auth0,limit_wc,"An IP address is blocked because it reached the maximum failed login attempts into a single account."
64
+
auth0,mfar,"A user has been prompted for multi-factor authentication (MFA). When using Adaptive MFA; Auth0 includes details about the risk assessment"
65
+
auth0,mgmt_api_read,"Successful GET request on the management API. This event will only be emitted if a secret is returned."
66
+
auth0,pla,"Generated before a login and helps in monitoring the behavior of bot detection without having to enable it."
67
+
auth0,pwd_leak,"Someone behind the IP address ip attempted to login with a leaked password"
68
+
auth0,refresh_tokens_revoked_by_session,"Successfully revoked a refresh token"
69
+
auth0,resource_cleanup,"Emitted when resources exceeding defined limits were removed. Normally related to refresh tokens"
70
+
auth0,s,"Successful Login"
71
+
auth0,sapi,"Successful API Operation Only emitted by the Management API on POST; DELETE; PATCH; and PUT"
auth0,svr,"Successfully called verification email endpoint. Verification email has been queued for sending."
99
+
auth0,ublkdu,"User block setup by anomaly detection has been released"
100
+
auth0,w,"A warning has happened during a login flow"
101
+
`
102
+
103
+
9
104
exportasyncfunctionPOST(req: Request){
10
105
consttoken=req.headers.get('token')??'';
11
106
const{ messages }=awaitreq.json();
@@ -42,7 +137,8 @@ export async function POST(req: Request) {
42
137
'6. The query must end with the text FORMAT JSON'+
43
138
'7. The query must not contains new lines'+
44
139
'The schema of all data sources is as follows: event_time DATETIME, event_type STRING, event JSON.'+
45
-
'The event column contains a JSON object using the ClickHouse JSON type. The fields should be accessed using dot notation, e.g. event.data.field_name.',
140
+
'The event column contains a JSON object using the ClickHouse JSON type. The fields should be accessed using dot notation, e.g. event.data.field_name.'+
141
+
'The event_type column contains the types of events. Here is a list of event types and their descriptions for every tool: \n'+event_type_context,
46
142
parameters: z.object({
47
143
// token: z.string().describe('Tinybird Admin Token used to authenticate calls to the Tinybird API'),
48
144
query: z.string().describe('The SQL query to execute'),
0 commit comments