@dvsa/cvs-feature-flags 0.25.0 → 1.0.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 +1 -1
- package/profiles/vtx.d.ts +17 -1
- package/profiles/vtx.js +17 -1
package/package.json
CHANGED
package/profiles/vtx.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ declare const defaultFeatureFlags: {
|
|
|
42
42
|
syncTestResultInfo: boolean;
|
|
43
43
|
updateStoreTechRecords: boolean;
|
|
44
44
|
updateStoreTestResults: boolean;
|
|
45
|
-
|
|
45
|
+
importTestStation: boolean;
|
|
46
46
|
updateTestVrm: boolean;
|
|
47
47
|
};
|
|
48
48
|
/**
|
|
@@ -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
|
@@ -51,7 +51,7 @@ const defaultFeatureFlags = {
|
|
|
51
51
|
syncTestResultInfo: false,
|
|
52
52
|
updateStoreTechRecords: false,
|
|
53
53
|
updateStoreTestResults: false,
|
|
54
|
-
|
|
54
|
+
importTestStation: false,
|
|
55
55
|
updateTestVrm: false,
|
|
56
56
|
},
|
|
57
57
|
/**
|
|
@@ -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);
|