Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

botbuilder-dialogs-declarative

Package Overview
Dependencies
Maintainers
1
Versions
504
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

botbuilder-dialogs-declarative - npm Package Compare versions

Comparing version 4.11.0-dev.20200909.b3c2acc to 4.11.0-dev.20200911.2b4d430

5

lib/resources/fileResource.d.ts

@@ -13,3 +13,2 @@ /**

export declare class FileResource extends Resource {
private _fullname;
/**

@@ -21,6 +20,2 @@ * Initialize a new instance of the `FileResouce` class.

/**
* The full path to the resource on disk
*/
readonly fullName: string;
/**
* Read text content of a file resource.

@@ -27,0 +22,0 @@ */

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

/**
* The full path to the resource on disk
*/
get fullName() {
return this._fullname;
}
/**
* Read text content of a file resource.

@@ -35,0 +29,0 @@ */

5

lib/resources/resource.d.ts

@@ -13,2 +13,3 @@ /**

protected _id: string;
protected _fullname: string;
/**

@@ -19,2 +20,6 @@ * Resource id.

/**
* The full path to the resource on disk
*/
readonly fullName: string;
/**
* Get resource as text.

@@ -21,0 +26,0 @@ */

@@ -20,4 +20,10 @@ "use strict";

}
/**
* The full path to the resource on disk
*/
get fullName() {
return this._fullname;
}
}
exports.Resource = Resource;
//# sourceMappingURL=resource.js.map

6

package.json

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

"description": "Declarative library for the Microsoft BotBuilder dialog system.",
"version": "4.11.0-dev.20200909.b3c2acc",
"version": "4.11.0-dev.20200911.2b4d430",
"license": "MIT",

@@ -24,3 +24,3 @@ "keywords": [

"dependencies": {
"botbuilder-dialogs": "4.11.0-dev.20200909.b3c2acc",
"botbuilder-dialogs": "4.11.0-dev.20200911.2b4d430",
"chokidar": "^3.4.0",

@@ -44,4 +44,4 @@ "jsonpath": "^1.0.0"

"clean": "erase /q /s .\\lib",
"set-version": "npm version --allow-same-version 4.11.0-dev.20200909.b3c2acc"
"set-version": "npm version --allow-same-version 4.11.0-dev.20200911.2b4d430"
}
}

@@ -17,4 +17,2 @@ /**

private _fullname: string;
/**

@@ -32,9 +30,2 @@ * Initialize a new instance of the `FileResouce` class.

/**
* The full path to the resource on disk
*/
public get fullName(): string {
return this._fullname;
}
/**
* Read text content of a file resource.

@@ -41,0 +32,0 @@ */

@@ -15,2 +15,4 @@ /**

protected _fullname: string;
/**

@@ -24,2 +26,9 @@ * Resource id.

/**
* The full path to the resource on disk
*/
public get fullName(): string {
return this._fullname;
}
/**
* Get resource as text.

@@ -26,0 +35,0 @@ */

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