Socket
Socket
Sign inDemoInstall

powerbi-models

Package Overview
Dependencies
0
Maintainers
1
Versions
75
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.14.0 to 1.14.1

20

dist/models.d.ts

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

// powerbi-models v1.14.0
// powerbi-models v1.14.1
// Copyright (c) Microsoft Corporation.

@@ -308,3 +308,4 @@ // Licensed under the MIT License.

export declare type IIdentityFilterTarget = number[];
export declare type IFilterGeneralTarget = IFilterTarget | IFilterKeyTarget | ITupleFilterTarget | IIdentityFilterTarget;
export declare type IIncludeExcludeFilterTarget = IFilterTarget | (IFilterTarget | IFilterKeyTarget)[][];
export declare type IFilterGeneralTarget = IFilterTarget | IFilterKeyTarget | ITupleFilterTarget | IIdentityFilterTarget | IIncludeExcludeFilterTarget;
export interface IFilter {

@@ -331,3 +332,4 @@ $schema: string;

export interface IIncludeExcludeFilter extends IFilter {
values: (string | number | boolean)[];
values: (string | number | boolean)[] | IncludeExcludeFilterValuesType;
target: IIncludeExcludeFilterTarget;
isExclude: boolean;

@@ -373,2 +375,9 @@ }

}
export interface IIncludeExcludeTargetValue {
value: PrimitiveValueType;
keyValues?: PrimitiveValueType[];
}
export declare type IncludeExcludePointType = IIncludeExcludeTargetValue[];
export declare type IncludeExcludePointsGroupType = IncludeExcludePointType[];
export declare type IncludeExcludeFilterValuesType = IncludeExcludePointsGroupType[];
export declare enum FiltersOperations {

@@ -480,5 +489,6 @@ RemoveAll = 0,

static schemaUrl: string;
values: (string | number | boolean)[];
values: (string | number | boolean)[] | IncludeExcludeFilterValuesType;
isExclude: boolean;
constructor(target: IFilterTarget, isExclude: boolean, values: (string | number | boolean)[]);
target: IIncludeExcludeFilterTarget;
constructor(target: IIncludeExcludeFilterTarget, isExclude: boolean, values: (string | number | boolean)[] | IncludeExcludeFilterValuesType);
toJSON(): IIncludeExcludeFilter;

@@ -485,0 +495,0 @@ }

{
"name": "powerbi-models",
"version": "1.14.0",
"version": "1.14.1",
"description": "Contains JavaScript & TypeScript object models for Microsoft Power BI JavaScript SDK. For each model there is a TypeScript interface, and a validation function to ensure and object is valid.",

@@ -5,0 +5,0 @@ "main": "dist/models.js",

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

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