@plusscommunities/pluss-maintenance-web 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 +9 -2
- package/dist/index.esm.js +9 -2
- package/dist/index.umd.js +9 -2
- package/package.json +1 -1
- package/src/feature.config.js +1 -0
- package/src/values.config.a.js +6 -0
- package/src/values.config.default.js +6 -0
- package/src/values.config.forms.js +6 -0
- package/src/values.config.js +6 -0
package/dist/index.cjs.js
CHANGED
|
@@ -112,7 +112,13 @@ const values = {
|
|
|
112
112
|
hasHelpButton: true,
|
|
113
113
|
helpGuideURL: '',
|
|
114
114
|
stringConfigJobStatus: 'maintenanceJobStatus',
|
|
115
|
-
stringConfigHideSeen: 'maintenanceDisableSeen'
|
|
115
|
+
stringConfigHideSeen: 'maintenanceDisableSeen',
|
|
116
|
+
// Comment subscription notification preference
|
|
117
|
+
notificationPreference: {
|
|
118
|
+
key: 'maintenancerequestComments',
|
|
119
|
+
label: 'Maintenance comments',
|
|
120
|
+
permission: 'maintenanceTracking'
|
|
121
|
+
}
|
|
116
122
|
};
|
|
117
123
|
|
|
118
124
|
// import * as PlussCore from '../../pluss-core/src';
|
|
@@ -241,7 +247,8 @@ const FeatureConfig = {
|
|
|
241
247
|
init: environment => {
|
|
242
248
|
FeatureConfig.env = environment;
|
|
243
249
|
PlussCore__namespace.Config.init(environment);
|
|
244
|
-
}
|
|
250
|
+
},
|
|
251
|
+
notificationPreference: values.notificationPreference
|
|
245
252
|
};
|
|
246
253
|
|
|
247
254
|
const JOBS_LOADED = values.actionJobsLoaded;
|
package/dist/index.esm.js
CHANGED
|
@@ -81,7 +81,13 @@ const values = {
|
|
|
81
81
|
hasHelpButton: true,
|
|
82
82
|
helpGuideURL: '',
|
|
83
83
|
stringConfigJobStatus: 'maintenanceJobStatus',
|
|
84
|
-
stringConfigHideSeen: 'maintenanceDisableSeen'
|
|
84
|
+
stringConfigHideSeen: 'maintenanceDisableSeen',
|
|
85
|
+
// Comment subscription notification preference
|
|
86
|
+
notificationPreference: {
|
|
87
|
+
key: 'maintenancerequestComments',
|
|
88
|
+
label: 'Maintenance comments',
|
|
89
|
+
permission: 'maintenanceTracking'
|
|
90
|
+
}
|
|
85
91
|
};
|
|
86
92
|
|
|
87
93
|
// import * as PlussCore from '../../pluss-core/src';
|
|
@@ -210,7 +216,8 @@ const FeatureConfig = {
|
|
|
210
216
|
init: environment => {
|
|
211
217
|
FeatureConfig.env = environment;
|
|
212
218
|
PlussCore.Config.init(environment);
|
|
213
|
-
}
|
|
219
|
+
},
|
|
220
|
+
notificationPreference: values.notificationPreference
|
|
214
221
|
};
|
|
215
222
|
|
|
216
223
|
const JOBS_LOADED = values.actionJobsLoaded;
|
package/dist/index.umd.js
CHANGED
|
@@ -101,7 +101,13 @@
|
|
|
101
101
|
hasHelpButton: true,
|
|
102
102
|
helpGuideURL: '',
|
|
103
103
|
stringConfigJobStatus: 'maintenanceJobStatus',
|
|
104
|
-
stringConfigHideSeen: 'maintenanceDisableSeen'
|
|
104
|
+
stringConfigHideSeen: 'maintenanceDisableSeen',
|
|
105
|
+
// Comment subscription notification preference
|
|
106
|
+
notificationPreference: {
|
|
107
|
+
key: 'maintenancerequestComments',
|
|
108
|
+
label: 'Maintenance comments',
|
|
109
|
+
permission: 'maintenanceTracking'
|
|
110
|
+
}
|
|
105
111
|
};
|
|
106
112
|
|
|
107
113
|
// import * as PlussCore from '../../pluss-core/src';
|
|
@@ -230,7 +236,8 @@
|
|
|
230
236
|
init: environment => {
|
|
231
237
|
FeatureConfig.env = environment;
|
|
232
238
|
PlussCore__namespace.Config.init(environment);
|
|
233
|
-
}
|
|
239
|
+
},
|
|
240
|
+
notificationPreference: values.notificationPreference
|
|
234
241
|
};
|
|
235
242
|
|
|
236
243
|
const JOBS_LOADED = values.actionJobsLoaded;
|
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 };
|
package/src/values.config.js
CHANGED
|
@@ -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 };
|