@dvsa/cvs-feature-flags 0.25.0 → 0.26.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvsa/cvs-feature-flags",
3
- "version": "0.25.0",
3
+ "version": "0.26.0",
4
4
  "description": "Common package to be used in CVS to manage feature flags",
5
5
  "author": "DVSA",
6
6
  "license": "ISC",
package/profiles/vtx.d.ts CHANGED
@@ -53,6 +53,22 @@ declare const defaultFeatureFlags: {
53
53
  readAurora: boolean;
54
54
  writeAurora: boolean;
55
55
  };
56
+ /**
57
+ * Feature flags for the CVS test types domain
58
+ */
59
+ testTypesDB: {
60
+ enabled: boolean;
61
+ readAurora: boolean;
62
+ };
63
+ /**
64
+ * Feature flags for actioning entries in the outbox
65
+ */
66
+ outbox: {
67
+ enabled: boolean;
68
+ processor: boolean;
69
+ purging: boolean;
70
+ reporting: boolean;
71
+ };
56
72
  };
57
73
  export type FeatureFlags = typeof defaultFeatureFlags;
58
74
  export declare const getProfile: () => Promise<FeatureFlags>;
package/profiles/vtx.js CHANGED
@@ -63,6 +63,22 @@ const defaultFeatureFlags = {
63
63
  readAurora: false,
64
64
  writeAurora: false,
65
65
  },
66
+ /**
67
+ * Feature flags for the CVS test types domain
68
+ */
69
+ testTypesDB: {
70
+ enabled: true,
71
+ readAurora: false,
72
+ },
73
+ /**
74
+ * Feature flags for actioning entries in the outbox
75
+ */
76
+ outbox: {
77
+ enabled: true,
78
+ processor: false,
79
+ purging: false,
80
+ reporting: false,
81
+ },
66
82
  };
67
83
  const getProfile = async () => {
68
84
  const flags = await (0, feature_flags_1.getFeatureFlags)(__1.FeatureFlagsClientName.VTX);