@stryker-mutator/dashboard-data-access 0.15.2-pr-1007.0 → 0.15.2-pr-1005.2
Sign up to get free protection for your applications and to get access to all the features.
@@ -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-
|
3
|
+
"version": "0.15.2-pr-1005.2",
|
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.2.2",
|
26
26
|
"@azure/storage-blob": "12.25.0",
|
27
|
-
"@stryker-mutator/dashboard-common": "0.15.2-pr-
|
27
|
+
"@stryker-mutator/dashboard-common": "0.15.2-pr-1005.2",
|
28
28
|
"mutation-testing-metrics": "3.3.0",
|
29
29
|
"mutation-testing-report-schema": "3.3.0"
|
30
30
|
},
|
31
|
-
"gitHead": "
|
31
|
+
"gitHead": "05defb3ccaf53c6511437ebc14a3aa4e7ca0fc9b"
|
32
32
|
}
|