@forwardslashns/taskit-validation-messages 1.0.61 → 1.0.63
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.
|
@@ -195,6 +195,9 @@ export declare const VALIDATION_MESSAGES: {
|
|
|
195
195
|
readonly FILING_TYPE_PARENT_REQUIRED: {
|
|
196
196
|
readonly message: "Parent needs to be specified for filing type 'Files under parent'";
|
|
197
197
|
};
|
|
198
|
+
readonly CURRENT_FILING_TYPE_PARENT_REQUIRED: {
|
|
199
|
+
readonly message: "Parent needs to be specified for current filing type 'Files under parent'";
|
|
200
|
+
};
|
|
198
201
|
readonly STATE_ID_DOES_NOT_EXIST: {
|
|
199
202
|
readonly message: "State with id '{id}' does not exist";
|
|
200
203
|
readonly params: readonly ["id"];
|
|
@@ -470,6 +473,11 @@ export declare const VALIDATION_MESSAGES: {
|
|
|
470
473
|
readonly message: "The current domestic state cannot have an end date. Please remove the end date for this state.";
|
|
471
474
|
};
|
|
472
475
|
};
|
|
476
|
+
readonly CLIENT_RELATIONSHIP: {
|
|
477
|
+
readonly CURRENT_CLIENT_CANNOT_BE_RELATED_TO_CURRENT_CLIENT: {
|
|
478
|
+
readonly message: "A client cannot have a relationship with itself.";
|
|
479
|
+
};
|
|
480
|
+
};
|
|
473
481
|
readonly FILING_CATEGORY: {
|
|
474
482
|
readonly INVALID_REQUEST: {
|
|
475
483
|
readonly message: "Missing filing category id in request";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validation-messages.d.ts","sourceRoot":"","sources":["../../src/validation/validation-messages.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"validation-messages.d.ts","sourceRoot":"","sources":["../../src/validation/validation-messages.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmoBtB,CAAC"}
|
|
@@ -198,6 +198,9 @@ exports.VALIDATION_MESSAGES = {
|
|
|
198
198
|
FILING_TYPE_PARENT_REQUIRED: {
|
|
199
199
|
message: `Parent needs to be specified for filing type 'Files under parent'`,
|
|
200
200
|
},
|
|
201
|
+
CURRENT_FILING_TYPE_PARENT_REQUIRED: {
|
|
202
|
+
message: `Parent needs to be specified for current filing type 'Files under parent'`,
|
|
203
|
+
},
|
|
201
204
|
STATE_ID_DOES_NOT_EXIST: {
|
|
202
205
|
message: `State with id '{id}' does not exist`,
|
|
203
206
|
params: ['id'],
|
|
@@ -476,6 +479,11 @@ exports.VALIDATION_MESSAGES = {
|
|
|
476
479
|
message: `The current domestic state cannot have an end date. Please remove the end date for this state.`,
|
|
477
480
|
},
|
|
478
481
|
},
|
|
482
|
+
CLIENT_RELATIONSHIP: {
|
|
483
|
+
CURRENT_CLIENT_CANNOT_BE_RELATED_TO_CURRENT_CLIENT: {
|
|
484
|
+
message: `A client cannot have a relationship with itself.`,
|
|
485
|
+
},
|
|
486
|
+
},
|
|
479
487
|
FILING_CATEGORY: {
|
|
480
488
|
INVALID_REQUEST: {
|
|
481
489
|
message: 'Missing filing category id in request',
|
package/package.json
CHANGED
|
@@ -197,6 +197,9 @@ export const VALIDATION_MESSAGES = {
|
|
|
197
197
|
FILING_TYPE_PARENT_REQUIRED: {
|
|
198
198
|
message: `Parent needs to be specified for filing type 'Files under parent'`,
|
|
199
199
|
},
|
|
200
|
+
CURRENT_FILING_TYPE_PARENT_REQUIRED: {
|
|
201
|
+
message: `Parent needs to be specified for current filing type 'Files under parent'`,
|
|
202
|
+
},
|
|
200
203
|
STATE_ID_DOES_NOT_EXIST: {
|
|
201
204
|
message: `State with id '{id}' does not exist`,
|
|
202
205
|
params: ['id'],
|
|
@@ -475,6 +478,11 @@ export const VALIDATION_MESSAGES = {
|
|
|
475
478
|
message: `The current domestic state cannot have an end date. Please remove the end date for this state.`,
|
|
476
479
|
},
|
|
477
480
|
},
|
|
481
|
+
CLIENT_RELATIONSHIP: {
|
|
482
|
+
CURRENT_CLIENT_CANNOT_BE_RELATED_TO_CURRENT_CLIENT: {
|
|
483
|
+
message: `A client cannot have a relationship with itself.`,
|
|
484
|
+
},
|
|
485
|
+
},
|
|
478
486
|
FILING_CATEGORY: {
|
|
479
487
|
INVALID_REQUEST: {
|
|
480
488
|
message: 'Missing filing category id in request',
|