@forwardslashns/taskit-validation-messages 1.0.17 → 1.0.18
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.
|
@@ -113,11 +113,11 @@ export declare const VALIDATION_MESSAGES: {
|
|
|
113
113
|
readonly message: "The state, {domesticState}, starts on {domesticStateStartingDate}, which is earlier than the client's date established, {clientDateEstablished}. Please adjust the start date of the state or the client's date established.";
|
|
114
114
|
readonly params: readonly ["clientDateEstablished", "domesticState", "domesticStateStartingDate"];
|
|
115
115
|
};
|
|
116
|
-
readonly
|
|
116
|
+
readonly NOT_ALIGNED_DATE_ESTABLISHED__STATES_STARTING_DATE: {
|
|
117
117
|
readonly message: "Adjust the start date to be on or after the client's date established, {clientStartDate}.";
|
|
118
118
|
readonly params: readonly ["clientStartDate"];
|
|
119
119
|
};
|
|
120
|
-
readonly
|
|
120
|
+
readonly NOT_ALIGNED_CLOSE_DATE_STATES_STARTING_DATE: {
|
|
121
121
|
readonly message: "Adjust the start date to be before the client's close date, {clientCloseDate}.";
|
|
122
122
|
readonly params: readonly ["clientCloseDate"];
|
|
123
123
|
};
|
|
@@ -120,13 +120,13 @@ exports.VALIDATION_MESSAGES = {
|
|
|
120
120
|
'domesticStateStartingDate',
|
|
121
121
|
],
|
|
122
122
|
},
|
|
123
|
-
|
|
123
|
+
NOT_ALIGNED_DATE_ESTABLISHED__STATES_STARTING_DATE: {
|
|
124
124
|
message: `Adjust the start date to be on or after the client's date established, {clientStartDate}.`,
|
|
125
125
|
params: [
|
|
126
126
|
'clientStartDate',
|
|
127
127
|
],
|
|
128
128
|
},
|
|
129
|
-
|
|
129
|
+
NOT_ALIGNED_CLOSE_DATE_STATES_STARTING_DATE: {
|
|
130
130
|
message: `Adjust the start date to be before the client's close date, {clientCloseDate}.`,
|
|
131
131
|
params: [
|
|
132
132
|
'clientCloseDate',
|
package/package.json
CHANGED
|
@@ -117,13 +117,13 @@ export const VALIDATION_MESSAGES = {
|
|
|
117
117
|
'domesticStateStartingDate',
|
|
118
118
|
],
|
|
119
119
|
},
|
|
120
|
-
|
|
120
|
+
NOT_ALIGNED_DATE_ESTABLISHED__STATES_STARTING_DATE: {
|
|
121
121
|
message: `Adjust the start date to be on or after the client's date established, {clientStartDate}.`,
|
|
122
122
|
params: [
|
|
123
123
|
'clientStartDate',
|
|
124
124
|
],
|
|
125
125
|
},
|
|
126
|
-
|
|
126
|
+
NOT_ALIGNED_CLOSE_DATE_STATES_STARTING_DATE: {
|
|
127
127
|
message: `Adjust the start date to be before the client's close date, {clientCloseDate}.`,
|
|
128
128
|
params: [
|
|
129
129
|
'clientCloseDate',
|