botframework-schema
Advanced tools
Comparing version 4.12.0-dev-20201110-a25557b6e141 to 4.12.0-ts4-09c112b1af10
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ActivityEx = void 0; | ||
const index_1 = require("./index"); | ||
@@ -4,0 +5,0 @@ var ActivityEx; |
@@ -10,2 +10,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.CallerIdConstants = void 0; | ||
/** | ||
@@ -16,2 +17,3 @@ * Constants used to populate the Activity.callerId property. | ||
} | ||
exports.CallerIdConstants = CallerIdConstants; | ||
/** | ||
@@ -31,3 +33,2 @@ * The caller ID for any Bot Framework channel. | ||
CallerIdConstants.BotToBotPrefix = 'urn:botframework:aadappid:'; | ||
exports.CallerIdConstants = CallerIdConstants; | ||
//# sourceMappingURL=callerIdConstants.js.map |
@@ -6,11 +6,22 @@ "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" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./activityEx")); | ||
exports.StatusCodes = exports.Channels = exports.SemanticActionStateTypes = exports.InstallationUpdateActionTypes = exports.ContactRelationUpdateActionTypes = exports.DeliveryModes = exports.ActivityImportance = exports.EndOfConversationCodes = exports.ActionTypes = exports.InputHints = exports.MessageReactionTypes = exports.AttachmentLayoutTypes = exports.TextFormatTypes = exports.ActivityTypes = exports.ActivityEventNames = exports.RoleTypes = exports.SpeechConstants = exports.CallerIdConstants = void 0; | ||
__exportStar(require("./activityInterfaces"), exports); | ||
__exportStar(require("./activityEx"), exports); | ||
var callerIdConstants_1 = require("./callerIdConstants"); | ||
exports.CallerIdConstants = callerIdConstants_1.CallerIdConstants; | ||
Object.defineProperty(exports, "CallerIdConstants", { enumerable: true, get: function () { return callerIdConstants_1.CallerIdConstants; } }); | ||
var speechConstants_1 = require("./speechConstants"); | ||
exports.SpeechConstants = speechConstants_1.SpeechConstants; | ||
Object.defineProperty(exports, "SpeechConstants", { enumerable: true, get: function () { return speechConstants_1.SpeechConstants; } }); | ||
// The Teams schemas was manually added to this library. This file has been updated to export those schemas. | ||
__exportStar(require("./teams"), exports); | ||
/** | ||
@@ -17,0 +28,0 @@ * Defines values for RoleTypes. |
@@ -7,2 +7,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SpeechConstants = void 0; | ||
/** | ||
@@ -13,2 +14,3 @@ * Defines constants that can be used in the processing of speech interactions. | ||
} | ||
exports.SpeechConstants = SpeechConstants; | ||
/** | ||
@@ -18,3 +20,2 @@ * The xml tag structure to indicate an empty speak tag, to be used in the 'speak' property of an Activity. When set this indicates to the channel that speech should not be generated. | ||
SpeechConstants.EmptySpeakTag = '<speak version="1.0" xmlns="https://www.w3.org/2001/10/synthesis" xml:lang="en-US" />'; | ||
exports.SpeechConstants = SpeechConstants; | ||
//# sourceMappingURL=speechConstants.js.map |
@@ -7,3 +7,14 @@ "use strict"; | ||
*/ | ||
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" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./extension"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -5,3 +5,3 @@ { | ||
"description": "Activity schema for the Microsoft Bot Framework.", | ||
"version": "4.12.0-dev-20201110-a25557b6e141", | ||
"version": "4.12.0-ts4-09c112b1af10", | ||
"license": "MIT", | ||
@@ -22,17 +22,27 @@ "keywords": [ | ||
"main": "./lib/index.js", | ||
"typings": "./lib/index.d.ts", | ||
"types": "./lib/index.d.ts", | ||
"typesVersions": { | ||
"<3.9": { | ||
"*": [ | ||
"_ts3.4/*" | ||
] | ||
} | ||
}, | ||
"devDependencies": { | ||
"@microsoft/api-extractor": "^7.7.12", | ||
"downlevel-dts": "^0.7.0", | ||
"mocha": "^6.2.3", | ||
"nyc": "^15.1.0", | ||
"typescript": "3.5.3" | ||
"typescript": "^4.0.5" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"build": "tsc -b", | ||
"postbuild": "downlevel-dts lib _ts3.4/lib", | ||
"build:rollup": "yarn clean && yarn build && api-extractor run --verbose --local", | ||
"clean": "erase /q /s .\\lib", | ||
"test": "tsc && nyc mocha tests/", | ||
"test": "yarn build && nyc mocha tests/", | ||
"test:compat": "api-extractor run --verbose" | ||
}, | ||
"files": [ | ||
"_ts3.4", | ||
"lib", | ||
@@ -39,0 +49,0 @@ "src" |
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
424854
56
12740
5