@jargon/platform-alexa-skill-kit
Advanced tools
Comparing version 1.0.0-beta.3 to 1.0.0-beta.4
@@ -14,10 +14,17 @@ "use strict"; | ||
*/ | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("@jargon/platform-sdk-core")); | ||
__exportStar(require("@jargon/platform-sdk-core"), exports); | ||
var skillBuilder_1 = require("./skillBuilder"); | ||
exports.DefaultSkillBuilderOptions = skillBuilder_1.DefaultSkillBuilderOptions; | ||
exports.JargonSkillBuilder = skillBuilder_1.JargonSkillBuilder; | ||
Object.defineProperty(exports, "DefaultSkillBuilderOptions", { enumerable: true, get: function () { return skillBuilder_1.DefaultSkillBuilderOptions; } }); | ||
Object.defineProperty(exports, "JargonSkillBuilder", { enumerable: true, get: function () { return skillBuilder_1.JargonSkillBuilder; } }); | ||
//# sourceMappingURL=index.js.map |
@@ -15,2 +15,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.JargonRequestInterceptor = void 0; | ||
const responseBuilder_1 = require("../responseBuilder"); | ||
@@ -17,0 +18,0 @@ class JargonRequestInterceptor { |
@@ -14,7 +14,14 @@ "use strict"; | ||
*/ | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./jrb")); | ||
__exportStar(require("./jrb"), exports); | ||
//# sourceMappingURL=index.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.JRB = exports.DefaultJargonResponseBuilderOptions = void 0; | ||
/* | ||
* Copyright 2018 Jargon, Inc. or its affiliates. All Rights Reserved. | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
*/ | ||
const platform_sdk_core_1 = require("@jargon/platform-sdk-core"); | ||
const lodash_1 = require("lodash"); | ||
const escape_1 = require("./escape"); | ||
exports.DefaultJargonResponseBuilderOptions = { | ||
@@ -22,3 +35,3 @@ mergeSpeakAndReprompt: false | ||
if (obj.speech) { | ||
const val = escape_1.escapeSSML(obj.speech.content); | ||
const val = platform_sdk_core_1.escapeSSML(obj.speech.content); | ||
const op = { | ||
@@ -36,3 +49,3 @@ val, | ||
if (obj.reprompt) { | ||
const val = escape_1.escapeSSML(obj.reprompt.content); | ||
const val = platform_sdk_core_1.escapeSSML(obj.reprompt.content); | ||
const op = { | ||
@@ -75,3 +88,3 @@ val, | ||
let op = async (rb) => { | ||
const val = escape_1.escapeSSML(await p); | ||
const val = platform_sdk_core_1.escapeSSML(await p); | ||
const op = { | ||
@@ -95,3 +108,3 @@ val, | ||
let op = async (rb) => { | ||
const val = escape_1.escapeSSML(await p); | ||
const val = platform_sdk_core_1.escapeSSML(await p); | ||
const op = { | ||
@@ -98,0 +111,0 @@ val, |
@@ -15,2 +15,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.JargonSkillBuilder = exports.DefaultSkillBuilderOptions = void 0; | ||
const platform_sdk_core_1 = require("@jargon/platform-sdk-core"); | ||
@@ -17,0 +18,0 @@ const requestInterceptor_1 = require("../requestInterceptor"); |
{ | ||
"name": "@jargon/platform-alexa-skill-kit", | ||
"version": "1.0.0-beta.3", | ||
"version": "1.0.0-beta.4", | ||
"description": "Jargon Platform SDK adapter for the Alexa Skills Kit", | ||
@@ -24,3 +24,3 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@jargon/platform-sdk-core": "1.0.0-beta.3", | ||
"@jargon/platform-sdk-core": "1.0.0-beta.4", | ||
"lodash": "^4.17.15" | ||
@@ -51,3 +51,4 @@ }, | ||
"access": "public" | ||
} | ||
}, | ||
"gitHead": "cf6c68c21b1161effc497cf8dd695c7d1bf0dce3" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
54006
23
726
+ Added@jargon/platform-sdk-core@1.0.0-beta.4(transitive)
- Removed@jargon/platform-sdk-core@1.0.0-beta.3(transitive)