-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.js
56 lines (55 loc) · 1.86 KB
/
project.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"use strict";
// ------------------------------------------------------------------
// JOVO PROJECT CONFIGURATION
// ------------------------------------------------------------------
module.exports = {
alexaSkill: {
nlu: "alexa",
manifest: {
permissions: [
{
name: "alexa::devices:all:notifications:write",
},
],
events: {
publications: [
{
eventName: "AMAZON.MessageAlert.Activated",
},
{
eventName: "AMAZON.WeatherAlert.Activated",
},
],
endpoint: {
uri: "https://europe-west3-happystudyplanner.cloudfunctions.net/voiceAssistent", // Simply place your Jovo Webhook URL here
sslCertificateType: "Wildcard",
},
},
publishingInformation: {
automaticDistribution: {
isActive: false,
},
category: "EDUCATION_AND_REFERENCE",
distributionCountries: ["DE"],
isAvailableWorldwide: false,
locales: {
"de-DE": {
description: "Intuitiver Alexa Skill für das bearbeiten von Learning Agreements.",
examplePhrases: ["Alexa starte learning agreement"],
keywords: ["learning", "agreement", "education", "smart", "Study"],
largeIconUri: "https://via.placeholder.com/512/09f/09f.png",
name: "Learning Agreement Assistent",
smallIconUri: "https://via.placeholder.com/108/09f/09f.png",
summary: "Intuitiver Alexa Skill für das bearbeiten von Learning Agreements.",
},
},
testingInstructions:
"the skill is part of a university project. The skill required to be registered at the university.",
},
},
},
googleAction: {
nlu: "dialogflow",
},
endpoint: "https://europe-west3-happystudyplanner.cloudfunctions.net/voiceAssistent",
};