Skip to content

Commit 407dad7

Browse files
authored
Merge pull request #60 from tinybirdco/verceltypes
add type
2 parents 0d5bad0 + dc2ebe8 commit 407dad7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+127
-49
lines changed

tinybird/pipes/auth0_apis.pipe

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ SQL >
2727
event.data.audience::String
2828
ORDER BY
2929
total_events DESC
30+
31+
TYPE ENDPOINT

tinybird/pipes/auth0_applications.pipe

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ SQL >
2626
event.data.client_name::String
2727
ORDER BY
2828
total_events DESC
29+
30+
TYPE ENDPOINT

tinybird/pipes/auth0_connections.pipe

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@ SQL >
3434
failed_attempts > 0
3535
ORDER BY
3636
total_events DESC
37+
38+
TYPE ENDPOINT

tinybird/pipes/auth0_conversion_rate.pipe

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ SQL >
2323
{% end %}
2424
{% if defined(tenant_name) and tenant_name != 'all' %}
2525
AND event.data.tenant_name::String = {{ String(tenant_name) }}
26-
{% end %}
26+
{% end %}
27+
28+
TYPE ENDPOINT

tinybird/pipes/auth0_cumulative_users.pipe

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ SQL >
2222
{% end %}
2323
GROUP BY day
2424
)
25-
ORDER BY day ASC
25+
ORDER BY day ASC
26+
27+
TYPE ENDPOINT

tinybird/pipes/auth0_daily_login_fails.pipe

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ SQL >
3030
group by day
3131
order by day asc
3232

33-
33+
TYPE ENDPOINT

tinybird/pipes/auth0_daily_signups.pipe

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ SQL >
3030
GROUP BY day
3131
order by day asc
3232

33-
33+
TYPE ENDPOINT

tinybird/pipes/auth0_dau_ts.pipe

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ SQL >
3030
GROUP BY day
3131
ORDER BY day
3232

33-
33+
TYPE ENDPOINT

tinybird/pipes/auth0_logs.pipe

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,6 @@ SQL >
3030
and event_time <= {{DateTime(date_to, '2024-01-01 23:59:59')}}
3131
order by event_time desc
3232
LIMIT {{Int32(page_size, 30)}}
33-
OFFSET {{Int32(page, 0) * Int32(page_size, 30)}}
33+
OFFSET {{Int32(page, 0) * Int32(page_size, 30)}}
34+
35+
TYPE ENDPOINT

tinybird/pipes/auth0_mau.pipe

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ SQL >
1717
{% if defined(tenant_name) and tenant_name != 'all' %}
1818
AND event.data.tenant_name::String = {{String(tenant_name)}}
1919
{% end %}
20+
21+
TYPE ENDPOINT

0 commit comments

Comments
 (0)