@featurevisor/types 0.40.1 → 0.42.0

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.42.0](https://github.com/fahad19/featurevisor/compare/v0.41.0...v0.42.0) (2023-07-23)
7
+
8
+
9
+ ### Features
10
+
11
+ * segment testing assertion property updated ([#113](https://github.com/fahad19/featurevisor/issues/113)) ([cbf693e](https://github.com/fahad19/featurevisor/commit/cbf693eb864623f89a04a11220ebfa872097fbee))
12
+
13
+
14
+
15
+
16
+
17
+ # [0.41.0](https://github.com/fahad19/featurevisor/compare/v0.40.1...v0.41.0) (2023-07-23)
18
+
19
+ **Note:** Version bump only for package @featurevisor/types
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.40.1](https://github.com/fahad19/featurevisor/compare/v0.40.0...v0.40.1) (2023-07-23)
7
26
 
8
27
  **Note:** Version bump only for package @featurevisor/types
package/lib/index.d.ts CHANGED
@@ -240,7 +240,7 @@ export interface TestFeature {
240
240
  export interface SegmentAssertion {
241
241
  description?: string;
242
242
  context: Context;
243
- expected: boolean;
243
+ expectedToMatch: boolean;
244
244
  }
245
245
  export interface TestSegment {
246
246
  key: SegmentKey;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@featurevisor/types",
3
- "version": "0.40.1",
3
+ "version": "0.42.0",
4
4
  "description": "Common Typescript types for Featurevisor",
5
5
  "main": "dist/index.js",
6
6
  "module": "lib/index.js",
@@ -41,5 +41,5 @@
41
41
  "url": "https://github.com/fahad19/featurevisor/issues"
42
42
  },
43
43
  "license": "MIT",
44
- "gitHead": "cca4e461fff94ffa96c9b6657a054e7b9cf86092"
44
+ "gitHead": "6df08bfb518918c2e1f0659175f53bbcbd5a5526"
45
45
  }
package/src/index.ts CHANGED
@@ -363,7 +363,7 @@ export interface TestFeature {
363
363
  export interface SegmentAssertion {
364
364
  description?: string;
365
365
  context: Context;
366
- expected: boolean;
366
+ expectedToMatch: boolean;
367
367
  }
368
368
 
369
369
  export interface TestSegment {