@stryker-mutator/dashboard-data-access 0.15.2-pr-1007.1 → 0.15.2-pr-966.9

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,7 +6,6 @@ export declare class DashboardQuery<TModel, TPartitionKeyFields extends keyof TM
6
6
  private constructor();
7
7
  whereRowKeyNotEquals(rowKey: Pick<TModel, TRowKeyFields>): DashboardQuery<TModel, TPartitionKeyFields, TRowKeyFields>;
8
8
  wherePartitionKeyEquals(partitionKey: Pick<TModel, TPartitionKeyFields>): DashboardQuery<TModel, TPartitionKeyFields, TRowKeyFields>;
9
- findPartitionKeyRange(start: string): DashboardQuery<TModel, TPartitionKeyFields, TRowKeyFields>;
10
9
  static create<TModel, TPartitionKeyFields extends keyof TModel, TRowKeyFields extends keyof TModel>(ModelClass: ModelClass<TModel, TPartitionKeyFields, TRowKeyFields>): DashboardQuery<TModel, TPartitionKeyFields, TRowKeyFields>;
11
10
  build(): TableEntityQueryOptions;
12
11
  }
@@ -15,10 +15,6 @@ export class DashboardQuery {
15
15
  const whereCondition = odata `PartitionKey eq ${encodeKey(this.ModelClass.createPartitionKey(partitionKey))}`;
16
16
  return new DashboardQuery(this.ModelClass, [...this.whereConditions, whereCondition]);
17
17
  }
18
- findPartitionKeyRange(start) {
19
- const whereCondition = odata `PartitionKey ge ${start}`;
20
- return new DashboardQuery(this.ModelClass, [...this.whereConditions, whereCondition]);
21
- }
22
18
  static create(ModelClass) {
23
19
  return new DashboardQuery(ModelClass, []);
24
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryker-mutator/dashboard-data-access",
3
- "version": "0.15.2-pr-1007.1",
3
+ "version": "0.15.2-pr-966.9",
4
4
  "type": "module",
5
5
  "description": "This package contains the data access layer of the stryker dashboard application.",
6
6
  "scripts": {
@@ -24,9 +24,9 @@
24
24
  "dependencies": {
25
25
  "@azure/data-tables": "13.3.0",
26
26
  "@azure/storage-blob": "12.26.0",
27
- "@stryker-mutator/dashboard-common": "0.15.2-pr-1007.1",
27
+ "@stryker-mutator/dashboard-common": "0.15.2-pr-966.9",
28
28
  "mutation-testing-metrics": "3.3.0",
29
29
  "mutation-testing-report-schema": "3.3.0"
30
30
  },
31
- "gitHead": "2defc775d99fe07382376e77839e378cccaf48fd"
31
+ "gitHead": "89b545c6e1aa3863e127165b89b6b0849b7e18b6"
32
32
  }