aimpress-chatbot/node_modules/botbuilder/lib/routeConstants.d.ts
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

53 lines
No EOL
1.5 KiB
TypeScript

/**
* @module botbuilder
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Constants representing the API path that immediately follows the basePath.
* These are currently internal but we will re-evaluate making them public, in the future.
*
* @example
* RouteConstants.Activities = '/v3/conversations/:conversationId/activities'.
*/
export declare class RouteConstants {
/**
* Base API path for bot conversations.
*/
static readonly Conversations: string;
/**
* API path for conversation history.
*/
static readonly ConversationHistory: string;
/**
* API path for all conversation members.
*/
static readonly ConversationMembers: string;
/**
* API path for page(s) of all conversation members.
*/
static readonly ConversationPagedMembers: string;
/**
* API path for single conversation member.
*/
static readonly ConversationMember: string;
/**
* API path for conversation attachments.
*/
static readonly Attachments: string;
/**
* API path for all activities from conversation.
*/
static readonly Activities: string;
/**
* API path for single activity from conversation.
*/
static readonly Activity: string;
/**
* API path for all members from activity from conversation.
*/
static readonly ActivityMembers: string;
}
//# sourceMappingURL=routeConstants.d.ts.map