This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function executeAlarm() { | |
// Create new audio context | |
var audioContext = new (window.AudioContext || window.webkitAudioContext)(); | |
// Create OscillatorNode to represent the tone | |
var oscillator = audioContext.createOscillator(); | |
// Define the type of wave the oscillator will output | |
oscillator.type = 'square'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.3 | |
info: | |
title: GuestJourneyAI REST API | |
version: 0.0.1 | |
description: Developer facing REST API for the hotel recommender system, ready to be integrated into your application | |
servers: | |
- url: https://journey.yanovis.com | |
description: Production Deployment | |
- url: https://journey-staging.yanovis.com |
OlderNewer