Skip to content

Commit

Permalink
💄 (lp) Update wall of love
Browse files Browse the repository at this point in the history
  • Loading branch information
baptisteArno committed Dec 2, 2022
1 parent 41149b0 commit bdf7c0d
Show file tree
Hide file tree
Showing 16 changed files with 393 additions and 174 deletions.
154 changes: 77 additions & 77 deletions apps/docs/openapi/builder/_spec_.json
Original file line number Diff line number Diff line change
Expand Up @@ -801,10 +801,11 @@
}
}
},
"/typebots/{typebotId}/webhookBlocks/{blockId}/subscribe": {
"post": {
"operationId": "query.webhook.subscribeWebhook",
"summary": "Subscribe to webhook block",
"/typebots/{typebotId}/webhookBlocks/{blockId}/getResultExample": {
"get": {
"operationId": "query.webhook.getResultExample",
"summary": "Get result example",
"description": "Returns \"fake\" result for webhook block to help you anticipate how the webhook will behave.",
"tags": [
"Webhook"
],
Expand All @@ -813,25 +814,6 @@
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"url": {
"type": "string"
}
},
"required": [
"url"
],
"additionalProperties": false
}
}
}
},
"parameters": [
{
"name": "typebotId",
Expand All @@ -858,17 +840,46 @@
"schema": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"url": {
"type": "string",
"nullable": true
"resultExample": {
"allOf": [
{
"type": "object",
"properties": {
"message": {
"type": "string",
"enum": [
"This is a sample result, it has been generated ⬇️"
]
},
"Submitted at": {
"type": "string"
}
},
"required": [
"message",
"Submitted at"
],
"additionalProperties": false
},
{
"type": "object",
"additionalProperties": {
"anyOf": [
{
"not": {}
},
{
"type": "string"
}
]
}
}
],
"description": "Can contain any fields."
}
},
"required": [
"id",
"url"
"resultExample"
],
"additionalProperties": false
}
Expand All @@ -881,10 +892,10 @@
}
}
},
"/typebots/{typebotId}/webhookBlocks/{blockId}/unsubscribe": {
"/typebots/{typebotId}/webhookBlocks/{blockId}/subscribe": {
"post": {
"operationId": "query.webhook.unsubscribeWebhook",
"summary": "Unsubscribe from webhook block",
"operationId": "query.webhook.subscribeWebhook",
"summary": "Subscribe to webhook block",
"tags": [
"Webhook"
],
Expand All @@ -899,7 +910,14 @@
"application/json": {
"schema": {
"type": "object",
"properties": {},
"properties": {
"url": {
"type": "string"
}
},
"required": [
"url"
],
"additionalProperties": false
}
}
Expand Down Expand Up @@ -954,11 +972,10 @@
}
}
},
"/typebots/{typebotId}/webhookBlocks/{blockId}/getResultExample": {
"get": {
"operationId": "query.webhook.getResultExample",
"summary": "Get result example",
"description": "Returns \"fake\" result for webhook block to help you anticipate how the webhook will behave.",
"/typebots/{typebotId}/webhookBlocks/{blockId}/unsubscribe": {
"post": {
"operationId": "query.webhook.unsubscribeWebhook",
"summary": "Unsubscribe from webhook block",
"tags": [
"Webhook"
],
Expand All @@ -967,6 +984,18 @@
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}
}
},
"parameters": [
{
"name": "typebotId",
Expand All @@ -993,46 +1022,17 @@
"schema": {
"type": "object",
"properties": {
"resultExample": {
"allOf": [
{
"type": "object",
"properties": {
"message": {
"type": "string",
"enum": [
"This is a sample result, it has been generated ⬇️"
]
},
"Submitted at": {
"type": "string"
}
},
"required": [
"message",
"Submitted at"
],
"additionalProperties": false
},
{
"type": "object",
"additionalProperties": {
"anyOf": [
{
"not": {}
},
{
"type": "string"
}
]
}
}
],
"description": "Can contain any field."
"id": {
"type": "string"
},
"url": {
"type": "string",
"nullable": true
}
},
"required": [
"resultExample"
"id",
"url"
],
"additionalProperties": false
}
Expand Down
18 changes: 18 additions & 0 deletions apps/landing-page/assets/icons/CapterraIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import Icon, { IconProps } from '@chakra-ui/icon'

export const CapterraIcon = (props: IconProps) => (
<Icon
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 149 152"
fill="none"
{...props}
>
<path d="M0.5 56.1H62.9H100.8V18.5L0.5 56.1Z" fill="#FF9D28" />
<path
d="M100.8 18.4998V151.2L148.2 0.799805L100.8 18.4998Z"
fill="#68C5ED"
/>
<path d="M100.8 56.1001H62.9L100.8 151.2V56.1001Z" fill="#044D80" />
<path d="M0.5 56.1001L72.6 80.5001L62.9 56.1001H0.5Z" fill="#E54747" />
</Icon>
)
15 changes: 15 additions & 0 deletions apps/landing-page/assets/icons/EmailIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import Icon, { IconProps } from '@chakra-ui/icon'
import { featherIconsBaseProps } from './HamburgerIcon'

export const EmailIcon = (props: IconProps) => (
<Icon
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentcolor"
{...featherIconsBaseProps}
{...props}
>
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</Icon>
)
19 changes: 19 additions & 0 deletions apps/landing-page/assets/icons/ProductHuntIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import Icon, { IconProps } from '@chakra-ui/icon'

export const ProductHuntIcon = (props: IconProps) => (
<Icon
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 59 59"
fill="none"
{...props}
>
<path
d="M58.48 29.24C58.48 45.388 45.388 58.48 29.24 58.48C13.09 58.48 0 45.388 0 29.24C0 13.09 13.091 0 29.24 0C45.388 0 58.48 13.091 58.48 29.24Z"
fill="#DA552F"
/>
<path
d="M33.138 29.2401H24.854V20.4681H33.138C33.714 20.4681 34.2843 20.5816 34.8164 20.802C35.3486 21.0224 35.8321 21.3455 36.2394 21.7527C36.6466 22.16 36.9697 22.6435 37.1901 23.1757C37.4105 23.7078 37.524 24.2781 37.524 24.8541C37.524 25.4301 37.4105 26.0004 37.1901 26.5326C36.9697 27.0647 36.6466 27.5482 36.2394 27.9555C35.8321 28.3628 35.3486 28.6858 34.8164 28.9063C34.2843 29.1267 33.714 29.2401 33.138 29.2401M33.138 14.6201H19.006V43.8601H24.854V35.0881H33.138C38.79 35.0881 43.372 30.5061 43.372 24.8541C43.372 19.2021 38.79 14.6201 33.138 14.6201"
fill="white"
/>
</Icon>
)
19 changes: 19 additions & 0 deletions apps/landing-page/assets/icons/RedditIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import Icon, { IconProps } from '@chakra-ui/icon'

export const RedditIcon = (props: IconProps) => (
<Icon
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 168 168"
fill="none"
{...props}
>
<path
d="M83.8 167.6C130.081 167.6 167.6 130.081 167.6 83.8C167.6 37.5185 130.081 0 83.8 0C37.5185 0 0 37.5185 0 83.8C0 130.081 37.5185 167.6 83.8 167.6Z"
fill="#FF4500"
/>
<path
d="M139.7 83.8C139.7 77 134.2 71.6 127.5 71.6C124.2 71.6 121.2 72.9 119 75C110.6 69 99.1 65.1 86.3 64.6L91.9 38.4L110.1 42.3C110.3 46.9 114.1 50.6 118.8 50.6C123.6 50.6 127.5 46.7 127.5 41.9C127.5 37.1 123.6 33.2 118.8 33.2C115.4 33.2 112.4 35.2 111 38.1L90.7 33.8C90.1 33.7 89.5 33.8 89.1 34.1C88.6 34.4 88.3 34.9 88.2 35.5L82 64.7C69 65.1 57.3 69 48.8 75.1C46.6 73 43.6 71.7 40.3 71.7C33.5 71.7 28.1 77.1999 28.1 83.8999C28.1 88.8999 31.1 93.1 35.3 95C35.1 96.2 35 97.4 35 98.7C35 117.5 56.9 132.8 83.9 132.8C110.9 132.8 132.8 117.6 132.8 98.7C132.8 97.5 132.7 96.2 132.5 95C136.7 93.1 139.7 88.8 139.7 83.8V83.8ZM55.9 92.5C55.9 87.7 59.8 83.8 64.6 83.8C69.4 83.8 73.3 87.7 73.3 92.5C73.3 97.3 69.4 101.2 64.6 101.2C59.8 101.3 55.9 97.3 55.9 92.5V92.5ZM104.6 115.6C98.6 121.6 87.2 122 83.9 122C80.5 122 69.1 121.5 63.2 115.6C62.3 114.7 62.3 113.3 63.2 112.4C64.1 111.5 65.5 111.5 66.4 112.4C70.2 116.2 78.2 117.5 83.9 117.5C89.6 117.5 97.7 116.2 101.4 112.4C102.3 111.5 103.7 111.5 104.6 112.4C105.4 113.3 105.4 114.7 104.6 115.6ZM103 101.3C98.2 101.3 94.3 97.4 94.3 92.6C94.3 87.8 98.2 83.8999 103 83.8999C107.8 83.8999 111.7 87.8 111.7 92.6C111.7 97.3 107.8 101.3 103 101.3Z"
fill="white"
/>
</Icon>
)
27 changes: 27 additions & 0 deletions apps/landing-page/assets/icons/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
export * from './AccessibilityIcon'
export * from './ArrowRight'
export * from './CaluclatorIcon'
export * from './CapterraIcon'
export * from './CheckCircleIcon'
export * from './CheckIcon'
export * from './ChevronDownIcon'
export * from './ChevronRightIcon'
export * from './CloseIcon'
export * from './ConditionIcon'
export * from './DoIcon'
export * from './DocIcon'
export * from './DontIcon'
export * from './EmailIcon'
export * from './ExternalLinkIcon'
export * from './FolderIcon'
export * from './GithubLogo'
export * from './HamburgerIcon'
export * from './HelpCircleIcon'
export * from './Logo'
export * from './MapIcon'
export * from './PeopleCircleIcon'
export * from './PersonAddIcon'
export * from './ProductHuntIcon'
export * from './QuoteLeftIcon'
export * from './RedditIcon'
export * from './ShareIcon'
2 changes: 0 additions & 2 deletions apps/landing-page/assets/icons/index.tsx

This file was deleted.

Loading

5 comments on commit bdf7c0d

@vercel
Copy link

@vercel vercel bot commented on bdf7c0d Dec 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

docs – ./apps/docs

docs-typebot-io.vercel.app
docs-git-main-typebot-io.vercel.app
docs.typebot.io

@vercel
Copy link

@vercel vercel bot commented on bdf7c0d Dec 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

builder-v2 – ./apps/builder

app.typebot.io
builder-v2-git-main-typebot-io.vercel.app
builder-v2-typebot-io.vercel.app

@vercel
Copy link

@vercel vercel bot commented on bdf7c0d Dec 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

viewer-v2-alpha – ./apps/viewer

ns8.vn
yobot.me
247987.com
8jours.top
bot.aws.bj
bot.bbc.bj
finplex.be
sat.cr8.ai
bot.aipr.kr
minipost.uk
bt.id8rs.com
bot.krdfy.com
goldorayo.com
signup.cr8.ai
vhpage.cr8.ai
am.nigerias.io
an.nigerias.io
ar.nigerias.io
bot.enreso.org
bot.lalmon.com
ticketfute.com
apo.nigerias.io
apr.nigerias.io
aso.nigerias.io
bot.ageenda.com
bot.artiweb.app
bot.devitus.com
bot.tc-mail.com
chat.sureb4.com
eventhub.com.au
games.klujo.com
sakuranembro.it
typebot.aloe.do
bot.piccinato.co
botc.ceox.com.br
clo.closeer.work
faqs.nigerias.io
feedback.ofx.one
form.syncwin.com
kw.wpwakanda.com
myrentalhost.com
stan.vselise.com
start.taxtree.io
typebot.aloe.bot
voicehelp.cr8.ai
app.chatforms.net
bot.agfunnel.tech
bot.hostnation.de
offer.botscientis.us
sellmycarglasgow.com
talkbot.agfunnel.com
tenorioadvogados.com
uppity.wpwakanda.com
abutton.wpwakanda.com
aidigitalmarketing.kr
bbutton.wpwakanda.com
bot.incusservices.com
bot.meuesocial.com.br
bot.ramonmatos.com.br
cdd.searchcube.com.sg
chat.missarkansas.org
chatbot.ownacademy.co
sbutton.wpwakanda.com
815639944.21000000.one
aplicacao.bmind.com.br
apply.ansuraniphone.my
bbutton.wpwwakanda.com
bot.louismarcondes.com
bot.t20worldcup.com.au
c23111azqw.nigerias.io
felipewelington.com.br
form.searchcube.com.sg
gcase.barrettamario.it
help.giversforgood.com
info.clickasuransi.com
kodawariab736.skeep.it
my.swamprecordsgnv.com
premium.kandabrand.com
report.gratirabbit.com
resume.gratirabbit.com
83242573.actualizar.xyz
bot.blackboxtips.com.br
bot.upgradesolutions.eu
help.comebackreward.com
mainmenu.diddancing.com
register.kandabrand.com
signup.hypemarketing.in
subfooter.wpwakanda.com
survey.hypemarketing.in
testbot.afterorigin.com
91181264.your-access.one
ai.chromebookstoreph.com
form.sergiolimajr.com.br
hunterbot.saleshunter.ai
instant.botscientis.info
link.cascadigital.com.br
onboarding.growthside.io
reward.onlinebotdemo.xyz
type.opaulovieira.com.br
bot.aidigitalmarketing.kr

@vercel
Copy link

@vercel vercel bot commented on bdf7c0d Dec 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on bdf7c0d Dec 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.