botframework-schema
Advanced tools
Comparing version 4.11.0-dev.20201020.addb9cb to 4.11.0-dev.20201020.e4c88d5
@@ -463,3 +463,3 @@ export * from './activityInterfaces'; | ||
*/ | ||
name?: string; | ||
name?: ActivityEventNames | string; | ||
/** | ||
@@ -1661,2 +1661,12 @@ * A reference to another conversation or activity. | ||
/** | ||
* Defines values for ActivityEventNames. | ||
* Possible values include: 'continueConversation', 'createConversation' | ||
* @readonly | ||
* @enum {string} | ||
*/ | ||
export declare enum ActivityEventNames { | ||
ContinueConversation = "ContinueConversation", | ||
CreateConversation = "CreateConversation" | ||
} | ||
/** | ||
* Defines values for ActivityTypes. | ||
@@ -1663,0 +1673,0 @@ * Possible values include: 'message', 'contactRelationUpdate', 'conversationUpdate', 'typing', |
@@ -27,2 +27,13 @@ "use strict"; | ||
/** | ||
* Defines values for ActivityEventNames. | ||
* Possible values include: 'continueConversation', 'createConversation' | ||
* @readonly | ||
* @enum {string} | ||
*/ | ||
var ActivityEventNames; | ||
(function (ActivityEventNames) { | ||
ActivityEventNames["ContinueConversation"] = "ContinueConversation"; | ||
ActivityEventNames["CreateConversation"] = "CreateConversation"; | ||
})(ActivityEventNames = exports.ActivityEventNames || (exports.ActivityEventNames = {})); | ||
/** | ||
* Defines values for ActivityTypes. | ||
@@ -29,0 +40,0 @@ * Possible values include: 'message', 'contactRelationUpdate', 'conversationUpdate', 'typing', |
@@ -5,3 +5,3 @@ { | ||
"description": "Activity schema for the Microsoft Bot Framework.", | ||
"version": "4.11.0-dev.20201020.addb9cb", | ||
"version": "4.11.0-dev.20201020.e4c88d5", | ||
"license": "MIT", | ||
@@ -33,3 +33,3 @@ "keywords": [ | ||
"clean": "erase /q /s .\\lib", | ||
"set-version": "npm version --allow-same-version 4.11.0-dev.20201020.addb9cb", | ||
"set-version": "npm version --allow-same-version 4.11.0-dev.20201020.e4c88d5", | ||
"test": "tsc && nyc mocha tests/", | ||
@@ -36,0 +36,0 @@ "test:compat": "api-extractor run --verbose" |
@@ -484,3 +484,3 @@ /* | ||
*/ | ||
name?: string; | ||
name?: ActivityEventNames | string; | ||
/** | ||
@@ -1730,2 +1730,13 @@ * A reference to another conversation or activity. | ||
/** | ||
* Defines values for ActivityEventNames. | ||
* Possible values include: 'continueConversation', 'createConversation' | ||
* @readonly | ||
* @enum {string} | ||
*/ | ||
export enum ActivityEventNames { | ||
ContinueConversation = 'ContinueConversation', | ||
CreateConversation = 'CreateConversation' | ||
} | ||
/** | ||
* Defines values for ActivityTypes. | ||
@@ -1732,0 +1743,0 @@ * Possible values include: 'message', 'contactRelationUpdate', 'conversationUpdate', 'typing', |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
305445
8663