New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@valo/extensibility

Package Overview
Dependencies
Maintainers
1
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@valo/extensibility - npm Package Compare versions

Comparing version 0.0.1-18bee6e45e70821aa6c48d4c0cc460fd0725544c to 0.0.1-7f6421478469db3b9a94a734be3ca1027dc595f7

lib/datasource/BaseDataSourceProvider.d.ts

1

lib/enums/index.d.ts
export * from './IntranetLocation';
export * from './IntranetTrigger';
export * from './IntranetProvider';
export * from './PagingType';

2

lib/enums/index.js

@@ -7,2 +7,2 @@ "use strict";

tslib_1.__exportStar(require("./IntranetProvider"), exports);
//# sourceMappingURL=index.js.map
tslib_1.__exportStar(require("./PagingType"), exports);
export declare enum IntranetLocation {
NavigationLeft = 1,
NavigationRight = 2,
ToolboxAction = 3
NavigationTop = 3,
NavigationBottom = 4,
ToolboxAction = 5,
Footer = 6
}

@@ -7,4 +7,6 @@ "use strict";

IntranetLocation[IntranetLocation["NavigationRight"] = 2] = "NavigationRight";
IntranetLocation[IntranetLocation["ToolboxAction"] = 3] = "ToolboxAction";
IntranetLocation[IntranetLocation["NavigationTop"] = 3] = "NavigationTop";
IntranetLocation[IntranetLocation["NavigationBottom"] = 4] = "NavigationBottom";
IntranetLocation[IntranetLocation["ToolboxAction"] = 5] = "ToolboxAction";
IntranetLocation[IntranetLocation["Footer"] = 6] = "Footer";
})(IntranetLocation = exports.IntranetLocation || (exports.IntranetLocation = {}));
//# sourceMappingURL=IntranetLocation.js.map

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

})(IntranetProvider = exports.IntranetProvider || (exports.IntranetProvider = {}));
//# sourceMappingURL=IntranetProvider.js.map

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

})(IntranetTrigger = exports.IntranetTrigger || (exports.IntranetTrigger = {}));
//# sourceMappingURL=IntranetTrigger.js.map

@@ -0,3 +1,5 @@

export * from './datasource';
export * from './enums';
export * from './models';
export * from './services';
export * from './providerTypes';
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
tslib_1.__exportStar(require("./datasource"), exports);
tslib_1.__exportStar(require("./enums"), exports);
tslib_1.__exportStar(require("./services"), exports);
//# sourceMappingURL=index.js.map

@@ -1,2 +0,2 @@

import { ExtensionService, TriggerService, ProviderService } from '..';
import { ExtensionService, TriggerService, ProviderService, DataSourceService } from '..';
export interface ExtensibilityWindow extends Window {

@@ -6,2 +6,3 @@ ValoExtensionPoints: ExtensionService;

ValoExtensionProviders: ProviderService;
ValoExtensionDataSource: DataSourceService;
}
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=ExtensibilityWindow.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=ExtensionPoint.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=ExtensionProvider.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=ExtensionTrigger.js.map

@@ -0,1 +1,3 @@

export * from './DataSource';
export * from './DataSourceData';
export * from './ExtensibilityWindow';

@@ -5,2 +7,3 @@ export * from './ExtensionPoint';

export * from './ExtensionProvider';
export * from './UnbindedDataSource';
export * from './UnbindedExtensionPoint';

@@ -10,1 +13,2 @@ export * from './UnbindedExtensionProvider';

export * from './IUserProperties';
export * from './IBaseDataSourceProvider';
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=index.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IUserProperties.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=UnbindedExtensionPoint.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=UnbindedExtensionProvider.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=UnbindedExtensionTrigger.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=index.js.map

@@ -5,3 +5,2 @@ import { IUserProfileProperty, IUserProperties } from '../models';

getUserProperties(): Promise<IUserProperties>;
getAllProperties(): Promise<IUserProperties>;
}
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IUserProfileProvider.js.map

@@ -86,2 +86,1 @@ "use strict";

exports.ExtensionService = ExtensionService;
//# sourceMappingURL=ExtensionService.js.map

@@ -0,3 +1,4 @@

export * from './DataSourceService';
export * from './ExtensionService';
export * from './ProviderService';
export * from './TriggerService';
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
tslib_1.__exportStar(require("./DataSourceService"), exports);
tslib_1.__exportStar(require("./ExtensionService"), exports);
tslib_1.__exportStar(require("./ProviderService"), exports);
tslib_1.__exportStar(require("./TriggerService"), exports);
//# sourceMappingURL=index.js.map

@@ -43,3 +43,3 @@ "use strict";

// Find the index of the updated binding
var ubdIdx = findIndex(this.unbindedProviders, function (ext) { return ext.type === ext.type; });
var ubdIdx = findIndex(this.unbindedProviders, function (ext) { return ext.provider === ext.provider; });
if (ubdIdx !== -1) {

@@ -92,2 +92,1 @@ this.unbindedProviders.splice(ubdIdx, 1);

exports.ProviderService = ProviderService;
//# sourceMappingURL=ProviderService.js.map

@@ -91,2 +91,1 @@ "use strict";

exports.TriggerService = TriggerService;
//# sourceMappingURL=TriggerService.js.map
{
"name": "@valo/extensibility",
"version": "0.0.1-18bee6e45e70821aa6c48d4c0cc460fd0725544c",
"version": "0.0.1-7f6421478469db3b9a94a734be3ca1027dc595f7",
"description": "",

@@ -14,2 +14,4 @@ "main": "lib/index.js",

"devDependencies": {
"@microsoft/sp-application-base": "1.7.1",
"@microsoft/sp-webpart-base": "1.7.1",
"@types/react": "16.7.20",

@@ -16,0 +18,0 @@ "typescript": "3.2.4"

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