Socket
Socket
Sign inDemoInstall

botframework-connector

Package Overview
Dependencies
Maintainers
1
Versions
545
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

botframework-connector - npm Package Compare versions

Comparing version 4.9.3 to 4.10.0-dev.20200805.aa06ea2

6

lib/connectorApi/models/index.d.ts

@@ -10,3 +10,7 @@ /// <reference types="node" />

export interface ConnectorClientOptions extends ServiceClientOptions {
baseUri: string;
/**
* (Optional) baseUri will be set automatically within BotFrameworkAdapter,
* but is required if using the ConnectorClient outside of the adapter.
*/
baseUri?: string;
}

@@ -13,0 +17,0 @@ /**

9

lib/connectorApi/operations/conversations.d.ts

@@ -54,6 +54,7 @@ import * as msRest from "@azure/ms-rest-js";

* ```
* var resource = await connector.conversations.CreateConversation(new ConversationParameters(){
* Bot = bot, members = new ChannelAccount[] { new ChannelAccount("user1") } );
* await connect.Conversations.SendToConversationAsync(resource.Id, new Activity() ... ) ;
*
* const resource = await connector.conversations.createConversation({
* bot,
* members: [{ id: 'user1' }]
* });
* await connector.conversations.sendToConversation(resource.Id, ... );
* ```

@@ -60,0 +61,0 @@ * @summary CreateConversation

@@ -94,2 +94,8 @@ "use strict";

}
},
aadGroupId: {
serializedName: 'aadGroupId',
type: {
name: 'String'
}
}

@@ -1225,2 +1231,8 @@ }

}
},
linkToMessage: {
serializedName: 'linkToMessage',
type: {
name: 'String'
}
}

@@ -1754,2 +1766,8 @@ }

}
},
state: {
serializedName: 'state',
type: {
name: 'String'
}
}

@@ -1756,0 +1774,0 @@ }

@@ -5,3 +5,3 @@ {

"description": "Bot Connector is autorest generated connector client.",
"version": "4.9.3",
"version": "4.10.0-dev.20200805.aa06ea2",
"license": "MIT",

@@ -23,11 +23,11 @@ "keywords": [

"dependencies": {
"@azure/ms-rest-js": "1.2.6",
"@azure/ms-rest-js": "1.8.15",
"@types/jsonwebtoken": "7.2.8",
"@types/node": "^10.12.18",
"@types/node": "^10.17.27",
"adal-node": "0.2.1",
"base64url": "^3.0.0",
"botframework-schema": "4.9.3",
"botframework-schema": "4.10.0-dev.20200805.aa06ea2",
"form-data": "^2.3.3",
"jsonwebtoken": "8.0.1",
"node-fetch": "^2.2.1",
"node-fetch": "^2.6.0",
"rsa-pem-from-mod-exp": "^0.8.4"

@@ -37,8 +37,8 @@ },

"@microsoft/api-extractor": "^7.7.12",
"@types/mocha": "^2.2.47",
"@types/mocha": "^5.2.7",
"codelyzer": "^4.1.0",
"dotenv": "^5.0.1",
"mocha": "^5.2.0",
"dotenv": "^6.2.0",
"mocha": "^6.2.3",
"nock": "^11.9.1",
"nyc": "^15.0.0",
"nyc": "^15.1.0",
"should": "^13.2.3",

@@ -52,3 +52,3 @@ "source-map-support": "^0.5.3",

"clean": "erase /q /s .\\lib",
"set-version": "npm version --allow-same-version 4.9.3",
"set-version": "npm version --allow-same-version 4.10.0-dev.20200805.aa06ea2",
"test": "tsc && nyc mocha tests/ --timeout 60000 --inspect"

@@ -55,0 +55,0 @@ },

@@ -10,3 +10,7 @@ import * as msRest from "@azure/ms-rest-js";

export interface ConnectorClientOptions extends ServiceClientOptions {
baseUri: string;
/**
* (Optional) baseUri will be set automatically within BotFrameworkAdapter,
* but is required if using the ConnectorClient outside of the adapter.
*/
baseUri?: string;
}

@@ -13,0 +17,0 @@

@@ -288,2 +288,8 @@ /*

}
},
imageAltText: {
serializedName: "imageAltText",
type: {
name: "String"
}
}

@@ -704,3 +710,8 @@ }

name: "Composite",
className: "Entity"
className: "Entity",
additionalProperties: {
type: {
name: "Object"
}
}
}

@@ -707,0 +718,0 @@ }

@@ -76,6 +76,7 @@ /*

* ```
* var resource = await connector.conversations.CreateConversation(new ConversationParameters(){
* Bot = bot, members = new ChannelAccount[] { new ChannelAccount("user1") } );
* await connect.Conversations.SendToConversationAsync(resource.Id, new Activity() ... ) ;
*
* const resource = await connector.conversations.createConversation({
* bot,
* members: [{ id: 'user1' }]
* });
* await connector.conversations.sendToConversation(resource.Id, ... );
* ```

@@ -82,0 +83,0 @@ * @summary CreateConversation

@@ -99,2 +99,8 @@ /*

}
},
aadGroupId: {
serializedName: 'aadGroupId',
type: {
name: 'String'
}
}

@@ -1300,2 +1306,8 @@ }

}
},
linkToMessage: {
serializedName: 'linkToMessage',
type: {
name: 'String'
}
}

@@ -1865,2 +1877,8 @@ }

}
},
state: {
serializedName: 'state',
type: {
name: 'String'
}
}

@@ -1867,0 +1885,0 @@ }

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 too big to display

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc