botframework-schema
Advanced tools
Comparing version 4.20.0-dev.20230508.c2abd7d to 4.20.0-dev.20230510.192d4b2
@@ -155,3 +155,3 @@ /** | ||
} | ||
export declare type IMessageDeleteActivity = IActivity; | ||
export type IMessageDeleteActivity = IActivity; | ||
export interface IMessageReactionActivity extends IActivity { | ||
@@ -173,3 +173,3 @@ /** | ||
} | ||
export declare type ITypingActivity = IActivity; | ||
export type ITypingActivity = IActivity; | ||
export interface IEndOfConversationActivity extends IActivity { | ||
@@ -237,3 +237,3 @@ /** | ||
} | ||
export declare type IHandoffActivity = IActivity; | ||
export type IHandoffActivity = IActivity; | ||
/** | ||
@@ -240,0 +240,0 @@ * The value field of a ICommandActivity contains metadata related to a command. |
@@ -2175,3 +2175,3 @@ /** | ||
*/ | ||
export declare type TokenExchangeState = { | ||
export type TokenExchangeState = { | ||
/** | ||
@@ -2197,3 +2197,3 @@ * The connection name that was used. | ||
*/ | ||
export declare type TokenStatus = { | ||
export type TokenStatus = { | ||
/** | ||
@@ -2200,0 +2200,0 @@ * The channel ID. |
@@ -10,3 +10,3 @@ import { Attachment } from '../../'; | ||
*/ | ||
export declare type O365ConnectorCardActionType = 'ViewAction' | 'OpenUri' | 'HttpPOST' | 'ActionCard'; | ||
export type O365ConnectorCardActionType = 'ViewAction' | 'OpenUri' | 'HttpPOST' | 'ActionCard'; | ||
/** | ||
@@ -41,3 +41,3 @@ * @interface | ||
*/ | ||
export declare type O365ConnectorCardInputType = 'textInput' | 'dateInput' | 'multichoiceInput'; | ||
export type O365ConnectorCardInputType = 'textInput' | 'dateInput' | 'multichoiceInput'; | ||
/** | ||
@@ -77,3 +77,3 @@ * @interface | ||
} | ||
export declare type FileDownloadInfoAttachment = TeamsAttachment<FileDownloadInfo>; | ||
export type FileDownloadInfoAttachment = TeamsAttachment<FileDownloadInfo>; | ||
/** | ||
@@ -80,0 +80,0 @@ * @interface |
@@ -181,2 +181,6 @@ /** | ||
settings?: TeamsChannelDataSettings; | ||
/** | ||
* @member {OnBehalfOf} [onBehalfOf] The OnBehalfOf information of the message. | ||
*/ | ||
onBehalfOf?: OnBehalfOf[]; | ||
} | ||
@@ -1481,3 +1485,3 @@ /** | ||
*/ | ||
export declare type Type = 'ViewAction' | 'OpenUri' | 'HttpPOST' | 'ActionCard'; | ||
export type Type = 'ViewAction' | 'OpenUri' | 'HttpPOST' | 'ActionCard'; | ||
/** | ||
@@ -1490,3 +1494,3 @@ * Defines values for ActivityImageType. | ||
*/ | ||
export declare type ActivityImageType = 'avatar' | 'article'; | ||
export type ActivityImageType = 'avatar' | 'article'; | ||
/** | ||
@@ -1499,3 +1503,3 @@ * Defines values for Os. | ||
*/ | ||
export declare type Os = 'default' | 'iOS' | 'android' | 'windows'; | ||
export type Os = 'default' | 'iOS' | 'android' | 'windows'; | ||
/** | ||
@@ -1508,7 +1512,7 @@ * Defines values for O365ConnectorCardInputBaseType. | ||
*/ | ||
export declare type O365ConnectorCardInputBaseType = 'textInput' | 'dateInput' | 'multichoiceInput'; | ||
export type O365ConnectorCardInputBaseType = 'textInput' | 'dateInput' | 'multichoiceInput'; | ||
/** | ||
* @deprecated Use O365ConnectorCardInputBaseType instead. | ||
*/ | ||
export declare type Type1 = O365ConnectorCardInputBaseType; | ||
export type Type1 = O365ConnectorCardInputBaseType; | ||
/** | ||
@@ -1521,3 +1525,3 @@ * Defines values for Style. | ||
*/ | ||
export declare type Style = 'compact' | 'expanded'; | ||
export type Style = 'compact' | 'expanded'; | ||
/** | ||
@@ -1530,3 +1534,3 @@ * Defines values for UserIdentityType. | ||
*/ | ||
export declare type UserIdentityType = 'aadUser' | 'onPremiseAadUser' | 'anonymousGuest' | 'federatedUser'; | ||
export type UserIdentityType = 'aadUser' | 'onPremiseAadUser' | 'anonymousGuest' | 'federatedUser'; | ||
/** | ||
@@ -1539,3 +1543,3 @@ * Defines values for ApplicationIdentityType. | ||
*/ | ||
export declare type ApplicationIdentityType = 'aadApplication' | 'bot' | 'tenantBot' | 'office365Connector' | 'webhook'; | ||
export type ApplicationIdentityType = 'aadApplication' | 'bot' | 'tenantBot' | 'office365Connector' | 'webhook'; | ||
/** | ||
@@ -1548,3 +1552,3 @@ * Defines values for ConversationIdentityType. | ||
*/ | ||
export declare type ConversationIdentityType = 'team' | 'channel'; | ||
export type ConversationIdentityType = 'team' | 'channel'; | ||
/** | ||
@@ -1557,3 +1561,3 @@ * Defines values for ContentType. | ||
*/ | ||
export declare type ContentType = 'html' | 'text'; | ||
export type ContentType = 'html' | 'text'; | ||
/** | ||
@@ -1566,3 +1570,3 @@ * Defines values for ReactionType. | ||
*/ | ||
export declare type ReactionType = 'like' | 'heart' | 'laugh' | 'surprised' | 'sad' | 'angry'; | ||
export type ReactionType = 'like' | 'heart' | 'laugh' | 'surprised' | 'sad' | 'angry'; | ||
/** | ||
@@ -1575,3 +1579,3 @@ * Defines values for MessageType. | ||
*/ | ||
export declare type MessageType = 'message'; | ||
export type MessageType = 'message'; | ||
/** | ||
@@ -1584,3 +1588,3 @@ * Defines values for Importance. | ||
*/ | ||
export declare type Importance = 'normal' | 'high' | 'urgent'; | ||
export type Importance = 'normal' | 'high' | 'urgent'; | ||
/** | ||
@@ -1593,3 +1597,3 @@ * Defines values for CommandContext. | ||
*/ | ||
export declare type CommandContext = 'message' | 'compose' | 'commandbox'; | ||
export type CommandContext = 'message' | 'compose' | 'commandbox'; | ||
/** | ||
@@ -1602,3 +1606,3 @@ * Defines values for BotMessagePreviewActionType. | ||
*/ | ||
export declare type BotMessagePreviewActionType = 'edit' | 'send'; | ||
export type BotMessagePreviewActionType = 'edit' | 'send'; | ||
/** | ||
@@ -1611,7 +1615,7 @@ * Defines values for BotMessagePreviewType. | ||
*/ | ||
export declare type BotMessagePreviewType = 'message' | 'continue'; | ||
export type BotMessagePreviewType = 'message' | 'continue'; | ||
/** | ||
* @deprecated Use BotMessagePreviewType | ||
*/ | ||
export declare type Type2 = BotMessagePreviewType; | ||
export type Type2 = BotMessagePreviewType; | ||
/** | ||
@@ -1624,3 +1628,3 @@ * Defines values for AttachmentLayout. | ||
*/ | ||
export declare type AttachmentLayout = 'list' | 'grid'; | ||
export type AttachmentLayout = 'list' | 'grid'; | ||
/** | ||
@@ -1633,7 +1637,7 @@ * Defines values for MessagingExtensionResultType. | ||
*/ | ||
export declare type MessagingExtensionResultType = 'result' | 'auth' | 'config' | 'message' | 'botMessagePreview' | 'silentAuth'; | ||
export type MessagingExtensionResultType = 'result' | 'auth' | 'config' | 'message' | 'botMessagePreview' | 'silentAuth'; | ||
/** | ||
* @deprecated Use MessagingExtensionResultType instead | ||
*/ | ||
export declare type Type3 = MessagingExtensionResultType; | ||
export type Type3 = MessagingExtensionResultType; | ||
/** | ||
@@ -1646,3 +1650,3 @@ * Defines values for Action. | ||
*/ | ||
export declare type Action = 'accept' | 'decline'; | ||
export type Action = 'accept' | 'decline'; | ||
/** | ||
@@ -1767,3 +1771,3 @@ * @interface | ||
*/ | ||
export declare type MeetingNotification = TargetedMeetingNotification; | ||
export type MeetingNotification = TargetedMeetingNotification; | ||
/** | ||
@@ -1787,3 +1791,3 @@ * @interface | ||
*/ | ||
export declare type MeetingSurface = MeetingStageSurface<any> | MeetingTabIconSurface; | ||
export type MeetingSurface = MeetingStageSurface<any> | MeetingTabIconSurface; | ||
/** | ||
@@ -1790,0 +1794,0 @@ * @interface |
@@ -401,3 +401,3 @@ "use strict"; | ||
name: index_1.ActivityEventNames.ContinueConversation, | ||
id: uuid_1.v4(), | ||
id: (0, uuid_1.v4)(), | ||
channelId: reference.channelId, | ||
@@ -404,0 +404,0 @@ locale: reference.locale, |
@@ -155,3 +155,3 @@ /** | ||
} | ||
export declare type IMessageDeleteActivity = IActivity; | ||
export type IMessageDeleteActivity = IActivity; | ||
export interface IMessageReactionActivity extends IActivity { | ||
@@ -173,3 +173,3 @@ /** | ||
} | ||
export declare type ITypingActivity = IActivity; | ||
export type ITypingActivity = IActivity; | ||
export interface IEndOfConversationActivity extends IActivity { | ||
@@ -237,3 +237,3 @@ /** | ||
} | ||
export declare type IHandoffActivity = IActivity; | ||
export type IHandoffActivity = IActivity; | ||
/** | ||
@@ -240,0 +240,0 @@ * The value field of a ICommandActivity contains metadata related to a command. |
@@ -2175,3 +2175,3 @@ /** | ||
*/ | ||
export declare type TokenExchangeState = { | ||
export type TokenExchangeState = { | ||
/** | ||
@@ -2197,3 +2197,3 @@ * The connection name that was used. | ||
*/ | ||
export declare type TokenStatus = { | ||
export type TokenStatus = { | ||
/** | ||
@@ -2200,0 +2200,0 @@ * The channel ID. |
@@ -8,3 +8,7 @@ "use strict"; | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
@@ -11,0 +15,0 @@ if (k2 === undefined) k2 = k; |
@@ -10,3 +10,3 @@ import { Attachment } from '../../'; | ||
*/ | ||
export declare type O365ConnectorCardActionType = 'ViewAction' | 'OpenUri' | 'HttpPOST' | 'ActionCard'; | ||
export type O365ConnectorCardActionType = 'ViewAction' | 'OpenUri' | 'HttpPOST' | 'ActionCard'; | ||
/** | ||
@@ -41,3 +41,3 @@ * @interface | ||
*/ | ||
export declare type O365ConnectorCardInputType = 'textInput' | 'dateInput' | 'multichoiceInput'; | ||
export type O365ConnectorCardInputType = 'textInput' | 'dateInput' | 'multichoiceInput'; | ||
/** | ||
@@ -77,3 +77,3 @@ * @interface | ||
} | ||
export declare type FileDownloadInfoAttachment = TeamsAttachment<FileDownloadInfo>; | ||
export type FileDownloadInfoAttachment = TeamsAttachment<FileDownloadInfo>; | ||
/** | ||
@@ -80,0 +80,0 @@ * @interface |
@@ -181,2 +181,6 @@ /** | ||
settings?: TeamsChannelDataSettings; | ||
/** | ||
* @member {OnBehalfOf} [onBehalfOf] The OnBehalfOf information of the message. | ||
*/ | ||
onBehalfOf?: OnBehalfOf[]; | ||
} | ||
@@ -1481,3 +1485,3 @@ /** | ||
*/ | ||
export declare type Type = 'ViewAction' | 'OpenUri' | 'HttpPOST' | 'ActionCard'; | ||
export type Type = 'ViewAction' | 'OpenUri' | 'HttpPOST' | 'ActionCard'; | ||
/** | ||
@@ -1490,3 +1494,3 @@ * Defines values for ActivityImageType. | ||
*/ | ||
export declare type ActivityImageType = 'avatar' | 'article'; | ||
export type ActivityImageType = 'avatar' | 'article'; | ||
/** | ||
@@ -1499,3 +1503,3 @@ * Defines values for Os. | ||
*/ | ||
export declare type Os = 'default' | 'iOS' | 'android' | 'windows'; | ||
export type Os = 'default' | 'iOS' | 'android' | 'windows'; | ||
/** | ||
@@ -1508,7 +1512,7 @@ * Defines values for O365ConnectorCardInputBaseType. | ||
*/ | ||
export declare type O365ConnectorCardInputBaseType = 'textInput' | 'dateInput' | 'multichoiceInput'; | ||
export type O365ConnectorCardInputBaseType = 'textInput' | 'dateInput' | 'multichoiceInput'; | ||
/** | ||
* @deprecated Use O365ConnectorCardInputBaseType instead. | ||
*/ | ||
export declare type Type1 = O365ConnectorCardInputBaseType; | ||
export type Type1 = O365ConnectorCardInputBaseType; | ||
/** | ||
@@ -1521,3 +1525,3 @@ * Defines values for Style. | ||
*/ | ||
export declare type Style = 'compact' | 'expanded'; | ||
export type Style = 'compact' | 'expanded'; | ||
/** | ||
@@ -1530,3 +1534,3 @@ * Defines values for UserIdentityType. | ||
*/ | ||
export declare type UserIdentityType = 'aadUser' | 'onPremiseAadUser' | 'anonymousGuest' | 'federatedUser'; | ||
export type UserIdentityType = 'aadUser' | 'onPremiseAadUser' | 'anonymousGuest' | 'federatedUser'; | ||
/** | ||
@@ -1539,3 +1543,3 @@ * Defines values for ApplicationIdentityType. | ||
*/ | ||
export declare type ApplicationIdentityType = 'aadApplication' | 'bot' | 'tenantBot' | 'office365Connector' | 'webhook'; | ||
export type ApplicationIdentityType = 'aadApplication' | 'bot' | 'tenantBot' | 'office365Connector' | 'webhook'; | ||
/** | ||
@@ -1548,3 +1552,3 @@ * Defines values for ConversationIdentityType. | ||
*/ | ||
export declare type ConversationIdentityType = 'team' | 'channel'; | ||
export type ConversationIdentityType = 'team' | 'channel'; | ||
/** | ||
@@ -1557,3 +1561,3 @@ * Defines values for ContentType. | ||
*/ | ||
export declare type ContentType = 'html' | 'text'; | ||
export type ContentType = 'html' | 'text'; | ||
/** | ||
@@ -1566,3 +1570,3 @@ * Defines values for ReactionType. | ||
*/ | ||
export declare type ReactionType = 'like' | 'heart' | 'laugh' | 'surprised' | 'sad' | 'angry'; | ||
export type ReactionType = 'like' | 'heart' | 'laugh' | 'surprised' | 'sad' | 'angry'; | ||
/** | ||
@@ -1575,3 +1579,3 @@ * Defines values for MessageType. | ||
*/ | ||
export declare type MessageType = 'message'; | ||
export type MessageType = 'message'; | ||
/** | ||
@@ -1584,3 +1588,3 @@ * Defines values for Importance. | ||
*/ | ||
export declare type Importance = 'normal' | 'high' | 'urgent'; | ||
export type Importance = 'normal' | 'high' | 'urgent'; | ||
/** | ||
@@ -1593,3 +1597,3 @@ * Defines values for CommandContext. | ||
*/ | ||
export declare type CommandContext = 'message' | 'compose' | 'commandbox'; | ||
export type CommandContext = 'message' | 'compose' | 'commandbox'; | ||
/** | ||
@@ -1602,3 +1606,3 @@ * Defines values for BotMessagePreviewActionType. | ||
*/ | ||
export declare type BotMessagePreviewActionType = 'edit' | 'send'; | ||
export type BotMessagePreviewActionType = 'edit' | 'send'; | ||
/** | ||
@@ -1611,7 +1615,7 @@ * Defines values for BotMessagePreviewType. | ||
*/ | ||
export declare type BotMessagePreviewType = 'message' | 'continue'; | ||
export type BotMessagePreviewType = 'message' | 'continue'; | ||
/** | ||
* @deprecated Use BotMessagePreviewType | ||
*/ | ||
export declare type Type2 = BotMessagePreviewType; | ||
export type Type2 = BotMessagePreviewType; | ||
/** | ||
@@ -1624,3 +1628,3 @@ * Defines values for AttachmentLayout. | ||
*/ | ||
export declare type AttachmentLayout = 'list' | 'grid'; | ||
export type AttachmentLayout = 'list' | 'grid'; | ||
/** | ||
@@ -1633,7 +1637,7 @@ * Defines values for MessagingExtensionResultType. | ||
*/ | ||
export declare type MessagingExtensionResultType = 'result' | 'auth' | 'config' | 'message' | 'botMessagePreview' | 'silentAuth'; | ||
export type MessagingExtensionResultType = 'result' | 'auth' | 'config' | 'message' | 'botMessagePreview' | 'silentAuth'; | ||
/** | ||
* @deprecated Use MessagingExtensionResultType instead | ||
*/ | ||
export declare type Type3 = MessagingExtensionResultType; | ||
export type Type3 = MessagingExtensionResultType; | ||
/** | ||
@@ -1646,3 +1650,3 @@ * Defines values for Action. | ||
*/ | ||
export declare type Action = 'accept' | 'decline'; | ||
export type Action = 'accept' | 'decline'; | ||
/** | ||
@@ -1767,3 +1771,3 @@ * @interface | ||
*/ | ||
export declare type MeetingNotification = TargetedMeetingNotification; | ||
export type MeetingNotification = TargetedMeetingNotification; | ||
/** | ||
@@ -1787,3 +1791,3 @@ * @interface | ||
*/ | ||
export declare type MeetingSurface = MeetingStageSurface<any> | MeetingTabIconSurface; | ||
export type MeetingSurface = MeetingStageSurface<any> | MeetingTabIconSurface; | ||
/** | ||
@@ -1790,0 +1794,0 @@ * @interface |
@@ -8,3 +8,7 @@ "use strict"; | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
@@ -11,0 +15,0 @@ if (k2 === undefined) k2 = k; |
@@ -5,3 +5,3 @@ { | ||
"description": "Activity schema for the Microsoft Bot Framework.", | ||
"version": "4.20.0-dev.20230508.c2abd7d", | ||
"version": "4.20.0-dev.20230510.192d4b2", | ||
"license": "MIT", | ||
@@ -8,0 +8,0 @@ "keywords": [ |
@@ -192,4 +192,7 @@ /** | ||
settings?: TeamsChannelDataSettings; | ||
/** | ||
* @member {OnBehalfOf} [onBehalfOf] The OnBehalfOf information of the message. | ||
*/ | ||
onBehalfOf?: OnBehalfOf[]; | ||
} | ||
/** | ||
@@ -196,0 +199,0 @@ * @interface |
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
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
534562
15997