@forwardslashns/taskit-validation-messages 1.0.10 → 1.0.11

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.
@@ -117,6 +117,10 @@ export declare const VALIDATION_MESSAGES: {
117
117
  readonly message: "Adjust the start date to be on or after the client's date established, {domesticStateStartingDate}.";
118
118
  readonly params: readonly ["domesticStateStartingDate"];
119
119
  };
120
+ readonly NOT_ALIGNED_CLOSE_DATE_DOMESTIC_STATES_STARTING_DATE: {
121
+ readonly message: "Adjust the start date to be before the client's close date, {clientCloseDate}.";
122
+ readonly params: readonly ["clientCloseDate"];
123
+ };
120
124
  readonly NOT_ALIGNED_DATE_ESTABLISHED_CLOSE_DATE: {
121
125
  readonly message: "Adjust the close date to be after the date established.";
122
126
  };
@@ -1 +1 @@
1
- {"version":3,"file":"validation-messages.d.ts","sourceRoot":"","sources":["../../src/validation/validation-messages.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4UtB,CAAC"}
1
+ {"version":3,"file":"validation-messages.d.ts","sourceRoot":"","sources":["../../src/validation/validation-messages.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkVtB,CAAC"}
@@ -126,6 +126,12 @@ exports.VALIDATION_MESSAGES = {
126
126
  'domesticStateStartingDate',
127
127
  ],
128
128
  },
129
+ NOT_ALIGNED_CLOSE_DATE_DOMESTIC_STATES_STARTING_DATE: {
130
+ message: `Adjust the start date to be before the client's close date, {clientCloseDate}.`,
131
+ params: [
132
+ 'clientCloseDate',
133
+ ],
134
+ },
129
135
  NOT_ALIGNED_DATE_ESTABLISHED_CLOSE_DATE: {
130
136
  message: `Adjust the close date to be after the date established.`,
131
137
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardslashns/taskit-validation-messages",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "commonjs",
@@ -123,6 +123,12 @@ export const VALIDATION_MESSAGES = {
123
123
  'domesticStateStartingDate',
124
124
  ],
125
125
  },
126
+ NOT_ALIGNED_CLOSE_DATE_DOMESTIC_STATES_STARTING_DATE: {
127
+ message: `Adjust the start date to be before the client's close date, {clientCloseDate}.`,
128
+ params: [
129
+ 'clientCloseDate',
130
+ ],
131
+ },
126
132
  NOT_ALIGNED_DATE_ESTABLISHED_CLOSE_DATE: {
127
133
  message: `Adjust the close date to be after the date established.`,
128
134
  },