Socket
Socket
Sign inDemoInstall

@widget-editor/types

Package Overview
Dependencies
0
Maintainers
3
Versions
113
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.4.1 to 2.5.0

build/js-types.d.ts

6

build/adapter.d.ts

@@ -7,2 +7,6 @@ import * as Dataset from "./dataset";

declare type Endpoint = string;
export declare type Area = {
id: Id;
name: string;
};
export declare type datasetId = Id;

@@ -31,3 +35,5 @@ export interface Service {

getDeserializedScheme(config: any): Widget.Scheme;
getPredefinedAreas(): Promise<Area[]>;
getUserAreas(): Promise<Area[]>;
}
export {};

1

build/dataset.d.ts

@@ -15,2 +15,3 @@ import * as Dataset from './dataset';

widget: Widget.Payload[] | null;
widgetRelevantProps: string[];
};

@@ -17,0 +18,0 @@ id: Id;

@@ -8,2 +8,4 @@ export interface Service {

prepareLimit(): void;
getQuery(): string;
getAdditionalParams(): string;
}

@@ -10,0 +12,0 @@ declare type GenericFilter<T> = {

@@ -9,1 +9,2 @@ export * as Adapter from "./adapter";

export * as Filters from "./filters";
export * as JSTypes from "./js-types";

@@ -30,2 +30,3 @@ "use strict";

exports.Filters = __importStar(require("./filters"));
exports.JSTypes = __importStar(require("./js-types"));
//# sourceMappingURL=index.js.map

4

package.json
{
"name": "@widget-editor/types",
"version": "2.4.1",
"version": "2.5.0",
"licence": "MIT",

@@ -27,3 +27,3 @@ "scripts": {

"main": "build/index.js",
"gitHead": "c3ee343b3e949279e1f2839f7bcc5b2996a7cca8"
"gitHead": "6f2f5726c980618187119790c3966312474a2e15"
}

@@ -9,2 +9,3 @@ import * as Dataset from "./dataset";

type Endpoint = string;
export type Area = { id: Id, name: string };

@@ -40,2 +41,4 @@ export type datasetId = Id;

getDeserializedScheme(config: any): Widget.Scheme;
getPredefinedAreas(): Promise<Area[]>;
getUserAreas(): Promise<Area[]>;
}

@@ -17,2 +17,3 @@ import * as Dataset from './dataset';

widget: Widget.Payload[] | null;
widgetRelevantProps: string[];
};

@@ -19,0 +20,0 @@ id: Id;

@@ -10,2 +10,4 @@ import * as Generic from "./generic";

prepareLimit(): void;
getQuery(): string;
getAdditionalParams(): string;
}

@@ -12,0 +14,0 @@

@@ -10,1 +10,2 @@ export * as Adapter from "./adapter";

export * as JSTypes from "./js-types";

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc