Add various location events to seeder (#2259)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									e1964553c4
								
							
						
					
					
						commit
						87dcdec044
					
				
					 1 changed files with 24 additions and 1 deletions
				
			
		|  | @ -216,7 +216,6 @@ async function main() { | |||
|       username: "pro", | ||||
|       plan: "PRO", | ||||
|     }, | ||||
| 
 | ||||
|     eventTypes: [ | ||||
|       { | ||||
|         title: "30min", | ||||
|  | @ -249,6 +248,30 @@ async function main() { | |||
|         length: 60, | ||||
|         price: 50, | ||||
|       }, | ||||
|       { | ||||
|         title: "In person meeting", | ||||
|         slug: "in-person", | ||||
|         length: 60, | ||||
|         locations: [{ type: "inPerson", address: "London" }], | ||||
|       }, | ||||
|       { | ||||
|         title: "Zoom Event", | ||||
|         slug: "zoom", | ||||
|         length: 60, | ||||
|         locations: [{ type: "integrations:zoom" }], | ||||
|       }, | ||||
|       { | ||||
|         title: "Daily Event", | ||||
|         slug: "daily", | ||||
|         length: 60, | ||||
|         locations: [{ type: "integrations:daily" }], | ||||
|       }, | ||||
|       { | ||||
|         title: "Google Meet", | ||||
|         slug: "google-meet", | ||||
|         length: 60, | ||||
|         locations: [{ type: "integrations:google:meet" }], | ||||
|       }, | ||||
|     ], | ||||
|   }); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Omar López
						Omar López