@omnia/fx-models 7.10.0-preview.2 → 7.10.0-preview.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,6 +6,8 @@ export interface EnterprisePropertyColumnMapping {
6
6
  createdAt: Date;
7
7
  status: EnterprisePropertyMappingStatus;
8
8
  log: string;
9
+ enableAZFiltering?: boolean;
10
+ azFilterInternalName?: string;
9
11
  }
10
12
  export declare enum EnterprisePropertyMappingStatus {
11
13
  isAdding = 1,
@@ -1,5 +1,5 @@
1
1
  import { GuidValue } from "../../shared";
2
- import { EnterprisePropertyDefinition } from "../enterprise-properties";
2
+ import { EnterprisePropertyColumnMapping, EnterprisePropertyDefinition } from "../enterprise-properties";
3
3
  import { PropertyIndexedType, UserPickingType } from "../Enums";
4
4
  import { Identity } from "../identities";
5
5
  import { PromotedTagOptions } from "../PromotedTagOptions";
@@ -89,6 +89,8 @@ export interface FilterEngineContextProperty {
89
89
  title: string;
90
90
  type: BaseFilterEnginePropertyType;
91
91
  inheritFromType?: GuidValue;
92
+ internalName?: string;
93
+ getSettings?: () => any;
92
94
  }
93
95
  export interface FilterEngineContextPropertyDefinition {
94
96
  typedHandler: new (property: any, defaultRouterValue: any, isRefinable: boolean, hasFilterState: boolean, enterpriseProperty: EnterprisePropertyDefinition) => ITypedFilterEngineHandler;
@@ -263,6 +265,7 @@ export declare abstract class FilterEngineContext {
263
265
  constructor(componentId: string);
264
266
  isRefinable(prop: BaseFilterEngineProperty): boolean;
265
267
  getAvailableProperties(): EnterprisePropertyDefinition[];
268
+ getAZFilterableProperties(): EnterprisePropertyColumnMapping[];
266
269
  getExcludedPropertyTypeIds(): GuidValue[];
267
270
  readonly abstract uniqueId: string;
268
271
  readonly supportFullTextSearch: boolean;
@@ -94,6 +94,9 @@ class FilterEngineContext {
94
94
  getAvailableProperties() {
95
95
  return [];
96
96
  }
97
+ getAZFilterableProperties() {
98
+ return [];
99
+ }
97
100
  getExcludedPropertyTypeIds() {
98
101
  return [EnterprisePropertyDataTypeIds.Extended];
99
102
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "7.10.0-preview.2",
4
+ "version": "7.10.0-preview.20",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"