@plusscommunities/pluss-maintenance-web-feedback 1.1.35 → 1.1.36
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/dist/index.cjs.js
CHANGED
|
@@ -235,7 +235,8 @@ const FeatureConfig = {
|
|
|
235
235
|
init: environment => {
|
|
236
236
|
FeatureConfig.env = environment;
|
|
237
237
|
PlussCore__namespace.Config.init(environment);
|
|
238
|
-
}
|
|
238
|
+
},
|
|
239
|
+
notificationPreference: values.notificationPreference
|
|
239
240
|
};
|
|
240
241
|
|
|
241
242
|
const JOBS_LOADED = values.actionJobsLoaded;
|
package/dist/index.esm.js
CHANGED
|
@@ -204,7 +204,8 @@ const FeatureConfig = {
|
|
|
204
204
|
init: environment => {
|
|
205
205
|
FeatureConfig.env = environment;
|
|
206
206
|
PlussCore.Config.init(environment);
|
|
207
|
-
}
|
|
207
|
+
},
|
|
208
|
+
notificationPreference: values.notificationPreference
|
|
208
209
|
};
|
|
209
210
|
|
|
210
211
|
const JOBS_LOADED = values.actionJobsLoaded;
|
package/dist/index.umd.js
CHANGED
package/package.json
CHANGED
package/src/feature.config.js
CHANGED
package/src/values.config.a.js
CHANGED
|
@@ -58,6 +58,12 @@ const values = {
|
|
|
58
58
|
textEntityName: 'Job',
|
|
59
59
|
stringConfigJobStatus: 'maintenanceJobStatusA',
|
|
60
60
|
stringConfigHideSeen: 'maintenanceDisableSeenA',
|
|
61
|
+
// Comment subscription notification preference
|
|
62
|
+
notificationPreference: {
|
|
63
|
+
key: 'maintenancerequestAComments',
|
|
64
|
+
label: 'Maintenance A comments',
|
|
65
|
+
permission: 'maintenanceTrackingA',
|
|
66
|
+
},
|
|
61
67
|
};
|
|
62
68
|
|
|
63
69
|
export { values };
|
|
@@ -70,6 +70,12 @@ const values = {
|
|
|
70
70
|
helpGuideURL: '',
|
|
71
71
|
stringConfigJobStatus: 'maintenanceJobStatus',
|
|
72
72
|
stringConfigHideSeen: 'maintenanceDisableSeen',
|
|
73
|
+
// Comment subscription notification preference
|
|
74
|
+
notificationPreference: {
|
|
75
|
+
key: 'maintenancerequestComments',
|
|
76
|
+
label: 'Maintenance comments',
|
|
77
|
+
permission: 'maintenanceTracking',
|
|
78
|
+
},
|
|
73
79
|
};
|
|
74
80
|
|
|
75
81
|
export { values };
|
|
@@ -69,6 +69,12 @@ const values = {
|
|
|
69
69
|
helpGuideURL: 'https://www.plusscommunities.com/forms-feature',
|
|
70
70
|
stringConfigJobStatus: 'maintenanceJobStatusForms',
|
|
71
71
|
stringConfigHideSeen: 'maintenanceDisableSeenForms',
|
|
72
|
+
// Comment subscription notification preference
|
|
73
|
+
notificationPreference: {
|
|
74
|
+
key: 'maintenancerequestFormsComments',
|
|
75
|
+
label: 'Forms comments',
|
|
76
|
+
permission: 'maintenanceTrackingForms',
|
|
77
|
+
},
|
|
72
78
|
};
|
|
73
79
|
|
|
74
80
|
export { values };
|