@microsoft/agents-hosting 0.1.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +57 -0
- package/dist/src/activityHandler.d.ts +108 -0
- package/dist/src/activityHandler.js +395 -0
- package/dist/src/activityHandler.js.map +1 -0
- package/dist/src/agent-client/agentClient.d.ts +13 -0
- package/dist/src/agent-client/agentClient.js +75 -0
- package/dist/src/agent-client/agentClient.js.map +1 -0
- package/dist/src/agent-client/expressApi.d.ts +4 -0
- package/dist/src/agent-client/expressApi.js +50 -0
- package/dist/src/agent-client/expressApi.js.map +1 -0
- package/dist/src/agent-client/index.d.ts +2 -0
- package/dist/src/agent-client/index.js +19 -0
- package/dist/src/agent-client/index.js.map +1 -0
- package/dist/src/app/agentApplication.d.ts +47 -0
- package/dist/src/app/agentApplication.js +317 -0
- package/dist/src/app/agentApplication.js.map +1 -0
- package/dist/src/app/appRoute.d.ts +11 -0
- package/dist/src/app/appRoute.js +7 -0
- package/dist/src/app/appRoute.js.map +1 -0
- package/dist/src/app/applicationBuilder.d.ts +18 -0
- package/dist/src/app/applicationBuilder.js +37 -0
- package/dist/src/app/applicationBuilder.js.map +1 -0
- package/dist/src/app/applicationOptions.d.ts +19 -0
- package/dist/src/app/applicationOptions.js +7 -0
- package/dist/src/app/applicationOptions.js.map +1 -0
- package/dist/src/app/attachmentDownloader.d.ts +13 -0
- package/dist/src/app/attachmentDownloader.js +72 -0
- package/dist/src/app/attachmentDownloader.js.map +1 -0
- package/dist/src/app/conversationUpdateEvents.d.ts +5 -0
- package/dist/src/app/conversationUpdateEvents.js +7 -0
- package/dist/src/app/conversationUpdateEvents.js.map +1 -0
- package/dist/src/app/index.d.ts +10 -0
- package/dist/src/app/index.js +27 -0
- package/dist/src/app/index.js.map +1 -0
- package/dist/src/app/inputFileDownloader.d.ts +14 -0
- package/dist/src/app/inputFileDownloader.js +7 -0
- package/dist/src/app/inputFileDownloader.js.map +1 -0
- package/dist/src/app/memory.d.ts +10 -0
- package/dist/src/app/memory.js +7 -0
- package/dist/src/app/memory.js.map +1 -0
- package/dist/src/app/oauth/authenticationOptions.d.ts +7 -0
- package/dist/src/app/oauth/authenticationOptions.js +7 -0
- package/dist/src/app/oauth/authenticationOptions.js.map +1 -0
- package/dist/src/app/oauth/webChatOAuthFlowAppStyle.d.ts +11 -0
- package/dist/src/app/oauth/webChatOAuthFlowAppStyle.js +85 -0
- package/dist/src/app/oauth/webChatOAuthFlowAppStyle.js.map +1 -0
- package/dist/src/app/routeHandler.d.ts +7 -0
- package/dist/src/app/routeHandler.js +7 -0
- package/dist/src/app/routeHandler.js.map +1 -0
- package/dist/src/app/routeSelector.d.ts +7 -0
- package/dist/src/app/routeSelector.js +7 -0
- package/dist/src/app/routeSelector.js.map +1 -0
- package/dist/src/app/turnEvents.d.ts +5 -0
- package/dist/src/app/turnEvents.js +7 -0
- package/dist/src/app/turnEvents.js.map +1 -0
- package/dist/src/app/turnState.d.ts +85 -0
- package/dist/src/app/turnState.js +274 -0
- package/dist/src/app/turnState.js.map +1 -0
- package/dist/src/app/turnStateEntry.d.ts +17 -0
- package/dist/src/app/turnStateEntry.js +39 -0
- package/dist/src/app/turnStateEntry.js.map +1 -0
- package/dist/src/auth/authConfiguration.d.ts +29 -0
- package/dist/src/auth/authConfiguration.js +58 -0
- package/dist/src/auth/authConfiguration.js.map +1 -0
- package/dist/src/auth/authProvider.d.ts +17 -0
- package/dist/src/auth/authProvider.js +7 -0
- package/dist/src/auth/authProvider.js.map +1 -0
- package/dist/src/auth/index.d.ts +4 -0
- package/dist/src/auth/index.js +21 -0
- package/dist/src/auth/index.js.map +1 -0
- package/dist/src/auth/jwt-middleware.d.ts +13 -0
- package/dist/src/auth/jwt-middleware.js +97 -0
- package/dist/src/auth/jwt-middleware.js.map +1 -0
- package/dist/src/auth/msalTokenProvider.d.ts +53 -0
- package/dist/src/auth/msalTokenProvider.js +198 -0
- package/dist/src/auth/msalTokenProvider.js.map +1 -0
- package/dist/src/auth/request.d.ts +15 -0
- package/dist/src/auth/request.js +7 -0
- package/dist/src/auth/request.js.map +1 -0
- package/dist/src/baseAdapter.d.ts +88 -0
- package/dist/src/baseAdapter.js +94 -0
- package/dist/src/baseAdapter.js.map +1 -0
- package/dist/src/cards/animationCard.d.ts +36 -0
- package/dist/src/cards/animationCard.js +7 -0
- package/dist/src/cards/animationCard.js.map +1 -0
- package/dist/src/cards/audioCard.d.ts +36 -0
- package/dist/src/cards/audioCard.js +7 -0
- package/dist/src/cards/audioCard.js.map +1 -0
- package/dist/src/cards/cardFactory.d.ts +123 -0
- package/dist/src/cards/cardFactory.js +225 -0
- package/dist/src/cards/cardFactory.js.map +1 -0
- package/dist/src/cards/cardImage.d.ts +16 -0
- package/dist/src/cards/cardImage.js +7 -0
- package/dist/src/cards/cardImage.js.map +1 -0
- package/dist/src/cards/fact.d.ts +13 -0
- package/dist/src/cards/fact.js +7 -0
- package/dist/src/cards/fact.js.map +1 -0
- package/dist/src/cards/heroCard.d.ts +23 -0
- package/dist/src/cards/heroCard.js +7 -0
- package/dist/src/cards/heroCard.js.map +1 -0
- package/dist/src/cards/index.d.ts +17 -0
- package/dist/src/cards/index.js +34 -0
- package/dist/src/cards/index.js.map +1 -0
- package/dist/src/cards/mediaUrl.d.ts +17 -0
- package/dist/src/cards/mediaUrl.js +7 -0
- package/dist/src/cards/mediaUrl.js.map +1 -0
- package/dist/src/cards/o365ConnectorCard.d.ts +35 -0
- package/dist/src/cards/o365ConnectorCard.js +7 -0
- package/dist/src/cards/o365ConnectorCard.js.map +1 -0
- package/dist/src/cards/o365ConnectorCardActionBase.d.ts +22 -0
- package/dist/src/cards/o365ConnectorCardActionBase.js +7 -0
- package/dist/src/cards/o365ConnectorCardActionBase.js.map +1 -0
- package/dist/src/cards/o365ConnectorCardFact.d.ts +17 -0
- package/dist/src/cards/o365ConnectorCardFact.js +7 -0
- package/dist/src/cards/o365ConnectorCardFact.js.map +1 -0
- package/dist/src/cards/o365ConnectorCardImage.d.ts +17 -0
- package/dist/src/cards/o365ConnectorCardImage.js +7 -0
- package/dist/src/cards/o365ConnectorCardImage.js.map +1 -0
- package/dist/src/cards/o365ConnectorCardSection.d.ts +57 -0
- package/dist/src/cards/o365ConnectorCardSection.js +7 -0
- package/dist/src/cards/o365ConnectorCardSection.js.map +1 -0
- package/dist/src/cards/receiptCard.d.ts +44 -0
- package/dist/src/cards/receiptCard.js +7 -0
- package/dist/src/cards/receiptCard.js.map +1 -0
- package/dist/src/cards/receiptItem.d.ts +39 -0
- package/dist/src/cards/receiptItem.js +7 -0
- package/dist/src/cards/receiptItem.js.map +1 -0
- package/dist/src/cards/signinCard.d.ts +14 -0
- package/dist/src/cards/signinCard.js +5 -0
- package/dist/src/cards/signinCard.js.map +1 -0
- package/dist/src/cards/taskModuleAction.d.ts +43 -0
- package/dist/src/cards/taskModuleAction.js +30 -0
- package/dist/src/cards/taskModuleAction.js.map +1 -0
- package/dist/src/cards/thumbnailCard.d.ts +35 -0
- package/dist/src/cards/thumbnailCard.js +7 -0
- package/dist/src/cards/thumbnailCard.js.map +1 -0
- package/dist/src/cards/thumbnailUrl.d.ts +17 -0
- package/dist/src/cards/thumbnailUrl.js +7 -0
- package/dist/src/cards/thumbnailUrl.js.map +1 -0
- package/dist/src/cards/videoCard.d.ts +60 -0
- package/dist/src/cards/videoCard.js +7 -0
- package/dist/src/cards/videoCard.js.map +1 -0
- package/dist/src/claimsIdentity.d.ts +35 -0
- package/dist/src/claimsIdentity.js +43 -0
- package/dist/src/claimsIdentity.js.map +1 -0
- package/dist/src/cloudAdapter.d.ts +128 -0
- package/dist/src/cloudAdapter.js +376 -0
- package/dist/src/cloudAdapter.js.map +1 -0
- package/dist/src/connector-client/attachmentData.d.ts +25 -0
- package/dist/src/connector-client/attachmentData.js +7 -0
- package/dist/src/connector-client/attachmentData.js.map +1 -0
- package/dist/src/connector-client/attachmentInfo.d.ts +22 -0
- package/dist/src/connector-client/attachmentInfo.js +7 -0
- package/dist/src/connector-client/attachmentInfo.js.map +1 -0
- package/dist/src/connector-client/attachmentView.d.ts +17 -0
- package/dist/src/connector-client/attachmentView.js +7 -0
- package/dist/src/connector-client/attachmentView.js.map +1 -0
- package/dist/src/connector-client/connectorClient.d.ts +93 -0
- package/dist/src/connector-client/connectorClient.js +249 -0
- package/dist/src/connector-client/connectorClient.js.map +1 -0
- package/dist/src/connector-client/conversationMembers.d.ts +18 -0
- package/dist/src/connector-client/conversationMembers.js +7 -0
- package/dist/src/connector-client/conversationMembers.js.map +1 -0
- package/dist/src/connector-client/conversationParameters.d.ts +38 -0
- package/dist/src/connector-client/conversationParameters.js +7 -0
- package/dist/src/connector-client/conversationParameters.js.map +1 -0
- package/dist/src/connector-client/conversationResourceResponse.d.ts +21 -0
- package/dist/src/connector-client/conversationResourceResponse.js +7 -0
- package/dist/src/connector-client/conversationResourceResponse.js.map +1 -0
- package/dist/src/connector-client/conversationsResult.d.ts +18 -0
- package/dist/src/connector-client/conversationsResult.js +7 -0
- package/dist/src/connector-client/conversationsResult.js.map +1 -0
- package/dist/src/connector-client/index.d.ts +9 -0
- package/dist/src/connector-client/index.js +26 -0
- package/dist/src/connector-client/index.js.map +1 -0
- package/dist/src/connector-client/resourceResponse.d.ts +13 -0
- package/dist/src/connector-client/resourceResponse.js +7 -0
- package/dist/src/connector-client/resourceResponse.js.map +1 -0
- package/dist/src/index.d.ts +26 -0
- package/dist/src/index.js +45 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/invoke/adaptiveCardAuthentication.d.ts +10 -0
- package/dist/src/invoke/adaptiveCardAuthentication.js +7 -0
- package/dist/src/invoke/adaptiveCardAuthentication.js.map +1 -0
- package/dist/src/invoke/adaptiveCardInvokeResponse.d.ts +21 -0
- package/dist/src/invoke/adaptiveCardInvokeResponse.js +7 -0
- package/dist/src/invoke/adaptiveCardInvokeResponse.js.map +1 -0
- package/dist/src/invoke/adaptiveCardInvokeValue.d.ts +23 -0
- package/dist/src/invoke/adaptiveCardInvokeValue.js +7 -0
- package/dist/src/invoke/adaptiveCardInvokeValue.js.map +1 -0
- package/dist/src/invoke/index.d.ts +9 -0
- package/dist/src/invoke/index.js +26 -0
- package/dist/src/invoke/index.js.map +1 -0
- package/dist/src/invoke/invokeException.d.ts +24 -0
- package/dist/src/invoke/invokeException.js +35 -0
- package/dist/src/invoke/invokeException.js.map +1 -0
- package/dist/src/invoke/invokeResponse.d.ts +17 -0
- package/dist/src/invoke/invokeResponse.js +7 -0
- package/dist/src/invoke/invokeResponse.js.map +1 -0
- package/dist/src/invoke/searchInvokeOptions.d.ts +17 -0
- package/dist/src/invoke/searchInvokeOptions.js +7 -0
- package/dist/src/invoke/searchInvokeOptions.js.map +1 -0
- package/dist/src/invoke/searchInvokeResponse.d.ts +10 -0
- package/dist/src/invoke/searchInvokeResponse.js +7 -0
- package/dist/src/invoke/searchInvokeResponse.js.map +1 -0
- package/dist/src/invoke/searchInvokeValue.d.ts +26 -0
- package/dist/src/invoke/searchInvokeValue.js +7 -0
- package/dist/src/invoke/searchInvokeValue.js.map +1 -0
- package/dist/src/invoke/tokenExchangeInvokeRequest.d.ts +21 -0
- package/dist/src/invoke/tokenExchangeInvokeRequest.js +7 -0
- package/dist/src/invoke/tokenExchangeInvokeRequest.js.map +1 -0
- package/dist/src/logger.d.ts +12 -0
- package/dist/src/logger.js +42 -0
- package/dist/src/logger.js.map +1 -0
- package/dist/src/messageFactory.d.ts +62 -0
- package/dist/src/messageFactory.js +143 -0
- package/dist/src/messageFactory.js.map +1 -0
- package/dist/src/middlewareSet.d.ts +43 -0
- package/dist/src/middlewareSet.js +57 -0
- package/dist/src/middlewareSet.js.map +1 -0
- package/dist/src/oauth/index.d.ts +7 -0
- package/dist/src/oauth/index.js +24 -0
- package/dist/src/oauth/index.js.map +1 -0
- package/dist/src/oauth/oauthCard.d.ts +28 -0
- package/dist/src/oauth/oauthCard.js +5 -0
- package/dist/src/oauth/oauthCard.js.map +1 -0
- package/dist/src/oauth/signingResource.d.ts +19 -0
- package/dist/src/oauth/signingResource.js +5 -0
- package/dist/src/oauth/signingResource.js.map +1 -0
- package/dist/src/oauth/tokenExchangeRequest.d.ts +17 -0
- package/dist/src/oauth/tokenExchangeRequest.js +5 -0
- package/dist/src/oauth/tokenExchangeRequest.js.map +1 -0
- package/dist/src/oauth/tokenExchangeResource.d.ts +17 -0
- package/dist/src/oauth/tokenExchangeResource.js +5 -0
- package/dist/src/oauth/tokenExchangeResource.js.map +1 -0
- package/dist/src/oauth/tokenPostResource.d.ts +9 -0
- package/dist/src/oauth/tokenPostResource.js +5 -0
- package/dist/src/oauth/tokenPostResource.js.map +1 -0
- package/dist/src/oauth/userTokenClient.d.ts +49 -0
- package/dist/src/oauth/userTokenClient.js +117 -0
- package/dist/src/oauth/userTokenClient.js.map +1 -0
- package/dist/src/oauth/webChatOAuthFlow.d.ts +41 -0
- package/dist/src/oauth/webChatOAuthFlow.js +117 -0
- package/dist/src/oauth/webChatOAuthFlow.js.map +1 -0
- package/dist/src/state/agentState.d.ts +71 -0
- package/dist/src/state/agentState.js +122 -0
- package/dist/src/state/agentState.js.map +1 -0
- package/dist/src/state/agentStatePropertyAccesor.d.ts +39 -0
- package/dist/src/state/agentStatePropertyAccesor.js +60 -0
- package/dist/src/state/agentStatePropertyAccesor.js.map +1 -0
- package/dist/src/state/conversationState.d.ts +18 -0
- package/dist/src/state/conversationState.js +38 -0
- package/dist/src/state/conversationState.js.map +1 -0
- package/dist/src/state/index.d.ts +4 -0
- package/dist/src/state/index.js +21 -0
- package/dist/src/state/index.js.map +1 -0
- package/dist/src/state/userState.d.ts +18 -0
- package/dist/src/state/userState.js +38 -0
- package/dist/src/state/userState.js.map +1 -0
- package/dist/src/statusCodes.d.ts +19 -0
- package/dist/src/statusCodes.js +24 -0
- package/dist/src/statusCodes.js.map +1 -0
- package/dist/src/storage/index.d.ts +2 -0
- package/dist/src/storage/index.js +19 -0
- package/dist/src/storage/index.js.map +1 -0
- package/dist/src/storage/memoryStorage.d.ts +50 -0
- package/dist/src/storage/memoryStorage.js +100 -0
- package/dist/src/storage/memoryStorage.js.map +1 -0
- package/dist/src/storage/storage.d.ts +47 -0
- package/dist/src/storage/storage.js +7 -0
- package/dist/src/storage/storage.js.map +1 -0
- package/dist/src/tokenResponseEventName.d.ts +5 -0
- package/dist/src/tokenResponseEventName.js +9 -0
- package/dist/src/tokenResponseEventName.js.map +1 -0
- package/dist/src/transcript/consoleTranscriptLogger.d.ts +13 -0
- package/dist/src/transcript/consoleTranscriptLogger.js +21 -0
- package/dist/src/transcript/consoleTranscriptLogger.js.map +1 -0
- package/dist/src/transcript/index.d.ts +4 -0
- package/dist/src/transcript/index.js +21 -0
- package/dist/src/transcript/index.js.map +1 -0
- package/dist/src/transcript/transcriptLogger.d.ts +42 -0
- package/dist/src/transcript/transcriptLogger.js +3 -0
- package/dist/src/transcript/transcriptLogger.js.map +1 -0
- package/dist/src/transcript/transcriptLoggerMiddleware.d.ts +38 -0
- package/dist/src/transcript/transcriptLoggerMiddleware.js +126 -0
- package/dist/src/transcript/transcriptLoggerMiddleware.js.map +1 -0
- package/dist/src/transcript/transcriptStore.d.ts +30 -0
- package/dist/src/transcript/transcriptStore.js +3 -0
- package/dist/src/transcript/transcriptStore.js.map +1 -0
- package/dist/src/turnContext.d.ts +160 -0
- package/dist/src/turnContext.js +286 -0
- package/dist/src/turnContext.js.map +1 -0
- package/dist/src/turnContextStateCollection.d.ts +29 -0
- package/dist/src/turnContextStateCollection.js +56 -0
- package/dist/src/turnContextStateCollection.js.map +1 -0
- package/package.json +48 -0
- package/src/activityHandler.ts +461 -0
- package/src/agent-client/agentClient.ts +84 -0
- package/src/agent-client/expressApi.ts +59 -0
- package/src/agent-client/index.ts +2 -0
- package/src/app/agentApplication.ts +401 -0
- package/src/app/appRoute.ts +13 -0
- package/src/app/applicationBuilder.ts +42 -0
- package/src/app/applicationOptions.ts +21 -0
- package/src/app/attachmentDownloader.ts +83 -0
- package/src/app/conversationUpdateEvents.ts +8 -0
- package/src/app/index.ts +10 -0
- package/src/app/inputFileDownloader.ts +17 -0
- package/src/app/memory.ts +14 -0
- package/src/app/oauth/authenticationOptions.ts +8 -0
- package/src/app/oauth/webChatOAuthFlowAppStyle.ts +90 -0
- package/src/app/routeHandler.ts +9 -0
- package/src/app/routeSelector.ts +10 -0
- package/src/app/turnEvents.ts +6 -0
- package/src/app/turnState.ts +338 -0
- package/src/app/turnStateEntry.ts +46 -0
- package/src/auth/authConfiguration.ts +68 -0
- package/src/auth/authProvider.ts +19 -0
- package/src/auth/index.ts +4 -0
- package/src/auth/jwt-middleware.ts +99 -0
- package/src/auth/msalTokenProvider.ts +202 -0
- package/src/auth/request.ts +20 -0
- package/src/baseAdapter.ts +174 -0
- package/src/cards/animationCard.ts +38 -0
- package/src/cards/audioCard.ts +38 -0
- package/src/cards/cardFactory.ts +276 -0
- package/src/cards/cardImage.ts +18 -0
- package/src/cards/fact.ts +14 -0
- package/src/cards/heroCard.ts +25 -0
- package/src/cards/index.ts +17 -0
- package/src/cards/mediaUrl.ts +18 -0
- package/src/cards/o365ConnectorCard.ts +37 -0
- package/src/cards/o365ConnectorCardActionBase.ts +24 -0
- package/src/cards/o365ConnectorCardFact.ts +18 -0
- package/src/cards/o365ConnectorCardImage.ts +18 -0
- package/src/cards/o365ConnectorCardSection.ts +60 -0
- package/src/cards/receiptCard.ts +46 -0
- package/src/cards/receiptItem.ts +41 -0
- package/src/cards/signinCard.ts +18 -0
- package/src/cards/taskModuleAction.ts +61 -0
- package/src/cards/thumbnailCard.ts +37 -0
- package/src/cards/thumbnailUrl.ts +18 -0
- package/src/cards/videoCard.ts +62 -0
- package/src/claimsIdentity.ts +47 -0
- package/src/cloudAdapter.ts +431 -0
- package/src/connector-client/attachmentData.ts +26 -0
- package/src/connector-client/attachmentInfo.ts +24 -0
- package/src/connector-client/attachmentView.ts +18 -0
- package/src/connector-client/connectorClient.ts +295 -0
- package/src/connector-client/conversationMembers.ts +20 -0
- package/src/connector-client/conversationParameters.ts +40 -0
- package/src/connector-client/conversationResourceResponse.ts +22 -0
- package/src/connector-client/conversationsResult.ts +20 -0
- package/src/connector-client/index.ts +9 -0
- package/src/connector-client/resourceResponse.ts +14 -0
- package/src/index.ts +31 -0
- package/src/invoke/adaptiveCardAuthentication.ts +13 -0
- package/src/invoke/adaptiveCardInvokeResponse.ts +22 -0
- package/src/invoke/adaptiveCardInvokeValue.ts +25 -0
- package/src/invoke/index.ts +9 -0
- package/src/invoke/invokeException.ts +33 -0
- package/src/invoke/invokeResponse.ts +18 -0
- package/src/invoke/searchInvokeOptions.ts +18 -0
- package/src/invoke/searchInvokeResponse.ts +11 -0
- package/src/invoke/searchInvokeValue.ts +28 -0
- package/src/invoke/tokenExchangeInvokeRequest.ts +22 -0
- package/src/logger.ts +43 -0
- package/src/messageFactory.ts +177 -0
- package/src/middlewareSet.ts +76 -0
- package/src/oauth/index.ts +7 -0
- package/src/oauth/oauthCard.ts +32 -0
- package/src/oauth/signingResource.ts +23 -0
- package/src/oauth/tokenExchangeRequest.ts +20 -0
- package/src/oauth/tokenExchangeResource.ts +20 -0
- package/src/oauth/tokenPostResource.ts +12 -0
- package/src/oauth/userTokenClient.ts +116 -0
- package/src/oauth/webChatOAuthFlow.ts +123 -0
- package/src/state/agentState.ts +142 -0
- package/src/state/agentStatePropertyAccesor.ts +61 -0
- package/src/state/conversationState.ts +42 -0
- package/src/state/index.ts +4 -0
- package/src/state/userState.ts +43 -0
- package/src/statusCodes.ts +20 -0
- package/src/storage/index.ts +2 -0
- package/src/storage/memoryStorage.ts +105 -0
- package/src/storage/storage.ts +52 -0
- package/src/tokenResponseEventName.ts +6 -0
- package/src/transcript/consoleTranscriptLogger.ts +20 -0
- package/src/transcript/index.ts +4 -0
- package/src/transcript/transcriptLogger.ts +45 -0
- package/src/transcript/transcriptLoggerMiddleware.ts +151 -0
- package/src/transcript/transcriptStore.ts +38 -0
- package/src/turnContext.ts +335 -0
- package/src/turnContextStateCollection.ts +69 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright(c) Microsoft Corporation.All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Represents an image in an O365 connector card.
|
|
7
|
+
*/
|
|
8
|
+
export interface O365ConnectorCardImage {
|
|
9
|
+
/**
|
|
10
|
+
* The URL of the image.
|
|
11
|
+
*/
|
|
12
|
+
image?: string;
|
|
13
|
+
/**
|
|
14
|
+
* The title of the image.
|
|
15
|
+
*/
|
|
16
|
+
title?: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"o365ConnectorCardImage.js","sourceRoot":"","sources":["../../../src/cards/o365ConnectorCardImage.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright(c) Microsoft Corporation.All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*/
|
|
5
|
+
import { O365ConnectorCardActionBase } from './o365ConnectorCardActionBase';
|
|
6
|
+
import { O365ConnectorCardFact } from './o365ConnectorCardFact';
|
|
7
|
+
import { O365ConnectorCardImage } from './o365ConnectorCardImage';
|
|
8
|
+
export type ActivityImageType = 'avatar' | 'article';
|
|
9
|
+
/**
|
|
10
|
+
* Represents a section in an O365 connector card.
|
|
11
|
+
*/
|
|
12
|
+
export interface O365ConnectorCardSection {
|
|
13
|
+
/**
|
|
14
|
+
* The title of the section.
|
|
15
|
+
*/
|
|
16
|
+
title?: string;
|
|
17
|
+
/**
|
|
18
|
+
* The text of the section.
|
|
19
|
+
*/
|
|
20
|
+
text?: string;
|
|
21
|
+
/**
|
|
22
|
+
* The activity title of the section.
|
|
23
|
+
*/
|
|
24
|
+
activityTitle?: string;
|
|
25
|
+
/**
|
|
26
|
+
* The activity subtitle of the section.
|
|
27
|
+
*/
|
|
28
|
+
activitySubtitle?: string;
|
|
29
|
+
/**
|
|
30
|
+
* The activity text of the section.
|
|
31
|
+
*/
|
|
32
|
+
activityText?: string;
|
|
33
|
+
/**
|
|
34
|
+
* The activity image of the section.
|
|
35
|
+
*/
|
|
36
|
+
activityImage?: string;
|
|
37
|
+
/**
|
|
38
|
+
* The type of the activity image.
|
|
39
|
+
*/
|
|
40
|
+
activityImageType?: ActivityImageType;
|
|
41
|
+
/**
|
|
42
|
+
* Indicates whether markdown is enabled.
|
|
43
|
+
*/
|
|
44
|
+
markdown?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* The facts of the section.
|
|
47
|
+
*/
|
|
48
|
+
facts?: O365ConnectorCardFact[];
|
|
49
|
+
/**
|
|
50
|
+
* The images of the section.
|
|
51
|
+
*/
|
|
52
|
+
images?: O365ConnectorCardImage[];
|
|
53
|
+
/**
|
|
54
|
+
* The potential actions of the section.
|
|
55
|
+
*/
|
|
56
|
+
potentialAction?: O365ConnectorCardActionBase[];
|
|
57
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"o365ConnectorCardSection.js","sourceRoot":"","sources":["../../../src/cards/o365ConnectorCardSection.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright(c) Microsoft Corporation.All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*/
|
|
5
|
+
import { CardAction } from '@microsoft/agents-activity';
|
|
6
|
+
import { Fact } from './fact';
|
|
7
|
+
import { ReceiptItem } from './receiptItem';
|
|
8
|
+
/**
|
|
9
|
+
* Represents a receipt card.
|
|
10
|
+
*/
|
|
11
|
+
export interface ReceiptCard {
|
|
12
|
+
/**
|
|
13
|
+
* The title of the card.
|
|
14
|
+
*/
|
|
15
|
+
title: string;
|
|
16
|
+
/**
|
|
17
|
+
* The facts of the card.
|
|
18
|
+
*/
|
|
19
|
+
facts: Fact[];
|
|
20
|
+
/**
|
|
21
|
+
* The items of the card.
|
|
22
|
+
*/
|
|
23
|
+
items: ReceiptItem[];
|
|
24
|
+
/**
|
|
25
|
+
* The tap action of the card.
|
|
26
|
+
*/
|
|
27
|
+
tap?: CardAction;
|
|
28
|
+
/**
|
|
29
|
+
* The total amount of the receipt.
|
|
30
|
+
*/
|
|
31
|
+
total: string;
|
|
32
|
+
/**
|
|
33
|
+
* The tax amount of the receipt.
|
|
34
|
+
*/
|
|
35
|
+
tax: string;
|
|
36
|
+
/**
|
|
37
|
+
* The VAT amount of the receipt.
|
|
38
|
+
*/
|
|
39
|
+
vat?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The buttons of the card.
|
|
42
|
+
*/
|
|
43
|
+
buttons: CardAction[];
|
|
44
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"receiptCard.js","sourceRoot":"","sources":["../../../src/cards/receiptCard.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright(c) Microsoft Corporation.All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*/
|
|
5
|
+
import { CardAction } from '@microsoft/agents-activity';
|
|
6
|
+
import { CardImage } from './cardImage';
|
|
7
|
+
/**
|
|
8
|
+
* Represents an item in a receipt card.
|
|
9
|
+
*/
|
|
10
|
+
export interface ReceiptItem {
|
|
11
|
+
/**
|
|
12
|
+
* The title of the item.
|
|
13
|
+
*/
|
|
14
|
+
title: string;
|
|
15
|
+
/**
|
|
16
|
+
* The subtitle of the item.
|
|
17
|
+
*/
|
|
18
|
+
subtitle?: string;
|
|
19
|
+
/**
|
|
20
|
+
* The text of the item.
|
|
21
|
+
*/
|
|
22
|
+
text?: string;
|
|
23
|
+
/**
|
|
24
|
+
* The image of the item.
|
|
25
|
+
*/
|
|
26
|
+
image: CardImage;
|
|
27
|
+
/**
|
|
28
|
+
* The price of the item.
|
|
29
|
+
*/
|
|
30
|
+
price: string;
|
|
31
|
+
/**
|
|
32
|
+
* The quantity of the item.
|
|
33
|
+
*/
|
|
34
|
+
quantity: number;
|
|
35
|
+
/**
|
|
36
|
+
* The tap action of the item.
|
|
37
|
+
*/
|
|
38
|
+
tap?: CardAction;
|
|
39
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"receiptItem.js","sourceRoot":"","sources":["../../../src/cards/receiptItem.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { CardAction } from '@microsoft/agents-activity';
|
|
2
|
+
/**
|
|
3
|
+
* Represents a sign-in card.
|
|
4
|
+
*/
|
|
5
|
+
export interface SigninCard {
|
|
6
|
+
/**
|
|
7
|
+
* The text to display on the sign-in card.
|
|
8
|
+
*/
|
|
9
|
+
text?: string;
|
|
10
|
+
/**
|
|
11
|
+
* The buttons to include on the sign-in card.
|
|
12
|
+
*/
|
|
13
|
+
buttons: CardAction[];
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"signinCard.js","sourceRoot":"","sources":["../../../src/cards/signinCard.ts"],"names":[],"mappings":";AAAA,4DAA4D;AAC5D,kCAAkC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright(c) Microsoft Corporation.All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*/
|
|
5
|
+
import { CardAction } from '@microsoft/agents-activity';
|
|
6
|
+
/**
|
|
7
|
+
* Represents a task module action.
|
|
8
|
+
*/
|
|
9
|
+
export declare class TaskModuleAction implements CardAction {
|
|
10
|
+
constructor(title: string, value: any);
|
|
11
|
+
/**
|
|
12
|
+
* The type of the action.
|
|
13
|
+
*/
|
|
14
|
+
type: string;
|
|
15
|
+
/**
|
|
16
|
+
* The title of the action.
|
|
17
|
+
*/
|
|
18
|
+
title: string;
|
|
19
|
+
/**
|
|
20
|
+
* The image associated with the action.
|
|
21
|
+
*/
|
|
22
|
+
image?: string | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* The text associated with the action.
|
|
25
|
+
*/
|
|
26
|
+
text?: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* The display text of the action.
|
|
29
|
+
*/
|
|
30
|
+
displayText?: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* The value of the action.
|
|
33
|
+
*/
|
|
34
|
+
value: unknown;
|
|
35
|
+
/**
|
|
36
|
+
* The channel data of the action.
|
|
37
|
+
*/
|
|
38
|
+
channelData?: unknown;
|
|
39
|
+
/**
|
|
40
|
+
* The alt text for the image.
|
|
41
|
+
*/
|
|
42
|
+
imageAltText?: string | undefined;
|
|
43
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright(c) Microsoft Corporation.All rights reserved.
|
|
4
|
+
* Licensed under the MIT License.
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.TaskModuleAction = void 0;
|
|
8
|
+
/**
|
|
9
|
+
* Represents a task module action.
|
|
10
|
+
*/
|
|
11
|
+
class TaskModuleAction {
|
|
12
|
+
constructor(title, value) {
|
|
13
|
+
this.type = 'invoke';
|
|
14
|
+
this.title = title;
|
|
15
|
+
let data;
|
|
16
|
+
if (!value) {
|
|
17
|
+
data = JSON.parse('{}');
|
|
18
|
+
}
|
|
19
|
+
else if (typeof value === 'object') {
|
|
20
|
+
data = value;
|
|
21
|
+
}
|
|
22
|
+
else {
|
|
23
|
+
data = JSON.parse(value);
|
|
24
|
+
}
|
|
25
|
+
data.type = 'task/fetch';
|
|
26
|
+
this.value = data;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
exports.TaskModuleAction = TaskModuleAction;
|
|
30
|
+
//# sourceMappingURL=taskModuleAction.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"taskModuleAction.js","sourceRoot":"","sources":["../../../src/cards/taskModuleAction.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAIH;;GAEG;AACH,MAAa,gBAAgB;IAC3B,YAAa,KAAa,EAAE,KAAU;QACpC,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAA;QACpB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAA;QAClB,IAAI,IAAS,CAAA;QAEb,IAAI,CAAC,KAAK,EAAE,CAAC;YACX,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QACzB,CAAC;aAAM,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;YACrC,IAAI,GAAG,KAAK,CAAA;QACd,CAAC;aAAM,CAAC;YACN,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;QAC1B,CAAC;QAED,IAAI,CAAC,IAAI,GAAG,YAAY,CAAA;QACxB,IAAI,CAAC,KAAK,GAAG,IAAc,CAAA;IAC7B,CAAC;CAkCF;AAlDD,4CAkDC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright(c) Microsoft Corporation.All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*/
|
|
5
|
+
import { CardAction } from '@microsoft/agents-activity';
|
|
6
|
+
import { CardImage } from './cardImage';
|
|
7
|
+
/**
|
|
8
|
+
* Represents a thumbnail card.
|
|
9
|
+
*/
|
|
10
|
+
export interface ThumbnailCard {
|
|
11
|
+
/**
|
|
12
|
+
* The title of the card.
|
|
13
|
+
*/
|
|
14
|
+
title: string;
|
|
15
|
+
/**
|
|
16
|
+
* The subtitle of the card.
|
|
17
|
+
*/
|
|
18
|
+
subtitle: string;
|
|
19
|
+
/**
|
|
20
|
+
* The text of the card.
|
|
21
|
+
*/
|
|
22
|
+
text: string;
|
|
23
|
+
/**
|
|
24
|
+
* The images of the card.
|
|
25
|
+
*/
|
|
26
|
+
images: CardImage[];
|
|
27
|
+
/**
|
|
28
|
+
* The buttons of the card.
|
|
29
|
+
*/
|
|
30
|
+
buttons: CardAction[];
|
|
31
|
+
/**
|
|
32
|
+
* The tap action of the card.
|
|
33
|
+
*/
|
|
34
|
+
tap: CardAction;
|
|
35
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"thumbnailCard.js","sourceRoot":"","sources":["../../../src/cards/thumbnailCard.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright(c) Microsoft Corporation.All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Represents a thumbnail URL.
|
|
7
|
+
*/
|
|
8
|
+
export interface ThumbnailUrl {
|
|
9
|
+
/**
|
|
10
|
+
* The URL of the thumbnail.
|
|
11
|
+
*/
|
|
12
|
+
url: string;
|
|
13
|
+
/**
|
|
14
|
+
* The alternative text for the thumbnail.
|
|
15
|
+
*/
|
|
16
|
+
alt?: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"thumbnailUrl.js","sourceRoot":"","sources":["../../../src/cards/thumbnailUrl.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright(c) Microsoft Corporation.All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*/
|
|
5
|
+
import { CardAction } from '@microsoft/agents-activity';
|
|
6
|
+
import { MediaUrl } from './mediaUrl';
|
|
7
|
+
import { ThumbnailUrl } from './thumbnailUrl';
|
|
8
|
+
/**
|
|
9
|
+
* Represents a video card.
|
|
10
|
+
*/
|
|
11
|
+
export interface VideoCard {
|
|
12
|
+
/**
|
|
13
|
+
* The title of the video card.
|
|
14
|
+
*/
|
|
15
|
+
title: string;
|
|
16
|
+
/**
|
|
17
|
+
* The subtitle of the video card.
|
|
18
|
+
*/
|
|
19
|
+
subtitle: string;
|
|
20
|
+
/**
|
|
21
|
+
* The text of the video card.
|
|
22
|
+
*/
|
|
23
|
+
text: string;
|
|
24
|
+
/**
|
|
25
|
+
* The image thumbnail of the video card.
|
|
26
|
+
*/
|
|
27
|
+
image: ThumbnailUrl;
|
|
28
|
+
/**
|
|
29
|
+
* The media URLs of the video card.
|
|
30
|
+
*/
|
|
31
|
+
media: MediaUrl[];
|
|
32
|
+
/**
|
|
33
|
+
* The buttons of the video card.
|
|
34
|
+
*/
|
|
35
|
+
buttons: CardAction[];
|
|
36
|
+
/**
|
|
37
|
+
* Indicates whether the video card is shareable.
|
|
38
|
+
*/
|
|
39
|
+
shareable: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Indicates whether the video card should auto-loop.
|
|
42
|
+
*/
|
|
43
|
+
autoloop: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Indicates whether the video card should auto-start.
|
|
46
|
+
*/
|
|
47
|
+
autostart: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* The aspect ratio of the video card.
|
|
50
|
+
*/
|
|
51
|
+
aspect: string;
|
|
52
|
+
/**
|
|
53
|
+
* The duration of the video card.
|
|
54
|
+
*/
|
|
55
|
+
duration: string;
|
|
56
|
+
/**
|
|
57
|
+
* The value of the video card.
|
|
58
|
+
*/
|
|
59
|
+
value: any;
|
|
60
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"videoCard.js","sourceRoot":"","sources":["../../../src/cards/videoCard.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Represents a claim with a type and value.
|
|
7
|
+
*/
|
|
8
|
+
export interface Claim {
|
|
9
|
+
readonly type: string;
|
|
10
|
+
readonly value: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Represents an identity with a collection of claims.
|
|
14
|
+
*/
|
|
15
|
+
export declare class ClaimsIdentity {
|
|
16
|
+
readonly claims: Claim[];
|
|
17
|
+
private readonly authenticationType?;
|
|
18
|
+
/**
|
|
19
|
+
* Creates a new instance of the ClaimsIdentity class.
|
|
20
|
+
* @param claims The collection of claims associated with the identity.
|
|
21
|
+
* @param authenticationType The type of authentication used, or a boolean indicating if the identity is authenticated.
|
|
22
|
+
*/
|
|
23
|
+
constructor(claims: Claim[], authenticationType?: string | boolean | undefined);
|
|
24
|
+
/**
|
|
25
|
+
* Indicates whether the identity is authenticated.
|
|
26
|
+
* @returns True if the identity is authenticated; otherwise, false.
|
|
27
|
+
*/
|
|
28
|
+
get isAuthenticated(): boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Gets the value of a claim by its type.
|
|
31
|
+
* @param claimType The type of the claim to retrieve.
|
|
32
|
+
* @returns The value of the claim, or null if the claim is not found.
|
|
33
|
+
*/
|
|
34
|
+
getClaimValue(claimType: string): string | null;
|
|
35
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
|
+
* Licensed under the MIT License.
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.ClaimsIdentity = void 0;
|
|
8
|
+
/**
|
|
9
|
+
* Represents an identity with a collection of claims.
|
|
10
|
+
*/
|
|
11
|
+
class ClaimsIdentity {
|
|
12
|
+
/**
|
|
13
|
+
* Creates a new instance of the ClaimsIdentity class.
|
|
14
|
+
* @param claims The collection of claims associated with the identity.
|
|
15
|
+
* @param authenticationType The type of authentication used, or a boolean indicating if the identity is authenticated.
|
|
16
|
+
*/
|
|
17
|
+
constructor(claims, authenticationType) {
|
|
18
|
+
this.claims = claims;
|
|
19
|
+
this.authenticationType = authenticationType;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Indicates whether the identity is authenticated.
|
|
23
|
+
* @returns True if the identity is authenticated; otherwise, false.
|
|
24
|
+
*/
|
|
25
|
+
get isAuthenticated() {
|
|
26
|
+
if (typeof this.authenticationType === 'boolean') {
|
|
27
|
+
return this.authenticationType;
|
|
28
|
+
}
|
|
29
|
+
return this.authenticationType != null;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Gets the value of a claim by its type.
|
|
33
|
+
* @param claimType The type of the claim to retrieve.
|
|
34
|
+
* @returns The value of the claim, or null if the claim is not found.
|
|
35
|
+
*/
|
|
36
|
+
getClaimValue(claimType) {
|
|
37
|
+
var _a;
|
|
38
|
+
const claim = this.claims.find((c) => c.type === claimType);
|
|
39
|
+
return (_a = claim === null || claim === void 0 ? void 0 : claim.value) !== null && _a !== void 0 ? _a : null;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
exports.ClaimsIdentity = ClaimsIdentity;
|
|
43
|
+
//# sourceMappingURL=claimsIdentity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claimsIdentity.js","sourceRoot":"","sources":["../../src/claimsIdentity.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAUH;;GAEG;AACH,MAAa,cAAc;IACzB;;;;OAIG;IACH,YAA6B,MAAe,EAAmB,kBAAqC;QAAvE,WAAM,GAAN,MAAM,CAAS;QAAmB,uBAAkB,GAAlB,kBAAkB,CAAmB;IAAG,CAAC;IAExG;;;OAGG;IACH,IAAI,eAAe;QACjB,IAAI,OAAO,IAAI,CAAC,kBAAkB,KAAK,SAAS,EAAE,CAAC;YACjD,OAAO,IAAI,CAAC,kBAAkB,CAAA;QAChC,CAAC;QAED,OAAO,IAAI,CAAC,kBAAkB,IAAI,IAAI,CAAA;IACxC,CAAC;IAED;;;;OAIG;IACH,aAAa,CAAE,SAAiB;;QAC9B,MAAM,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,SAAS,CAAC,CAAA;QAE3D,OAAO,MAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,KAAK,mCAAI,IAAI,CAAA;IAC7B,CAAC;CACF;AA9BD,wCA8BC"}
|