@forwardslashns/taskit-validation-messages 1.0.56 → 1.0.58
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.
|
@@ -122,6 +122,9 @@ export declare const VALIDATION_MESSAGES: {
|
|
|
122
122
|
readonly NO_DEFAULT_PAYMENT_METHOD: {
|
|
123
123
|
readonly message: "There must be at least one payment method marked as default. Please select a default payment method.";
|
|
124
124
|
};
|
|
125
|
+
readonly MULTIPLE_DEFAULT_PAYMENT_METHODS: {
|
|
126
|
+
readonly message: "There can only be one default payment method. Please ensure only one payment method is marked as default.";
|
|
127
|
+
};
|
|
125
128
|
};
|
|
126
129
|
readonly CONTACT: {
|
|
127
130
|
readonly CONTACT_ROLES_NOT_FOUND: {
|
|
@@ -189,6 +192,9 @@ export declare const VALIDATION_MESSAGES: {
|
|
|
189
192
|
readonly message: "Parent/Sub status with id '{id}' does not exist";
|
|
190
193
|
readonly params: readonly ["id"];
|
|
191
194
|
};
|
|
195
|
+
readonly FILING_TYPE_PARENT_REQUIRED: {
|
|
196
|
+
readonly message: "Parent needs to be specified for filing type 'Files under parent'";
|
|
197
|
+
};
|
|
192
198
|
readonly STATE_ID_DOES_NOT_EXIST: {
|
|
193
199
|
readonly message: "State with id '{id}' does not exist";
|
|
194
200
|
readonly params: readonly ["id"];
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsnBtB,CAAC"}
|
|
@@ -125,6 +125,9 @@ exports.VALIDATION_MESSAGES = {
|
|
|
125
125
|
NO_DEFAULT_PAYMENT_METHOD: {
|
|
126
126
|
message: 'There must be at least one payment method marked as default. Please select a default payment method.',
|
|
127
127
|
},
|
|
128
|
+
MULTIPLE_DEFAULT_PAYMENT_METHODS: {
|
|
129
|
+
message: 'There can only be one default payment method. Please ensure only one payment method is marked as default.',
|
|
130
|
+
},
|
|
128
131
|
},
|
|
129
132
|
CONTACT: {
|
|
130
133
|
CONTACT_ROLES_NOT_FOUND: {
|
|
@@ -192,6 +195,9 @@ exports.VALIDATION_MESSAGES = {
|
|
|
192
195
|
message: `Parent/Sub status with id '{id}' does not exist`,
|
|
193
196
|
params: ['id'],
|
|
194
197
|
},
|
|
198
|
+
FILING_TYPE_PARENT_REQUIRED: {
|
|
199
|
+
message: `Parent needs to be specified for filing type 'Files under parent'`,
|
|
200
|
+
},
|
|
195
201
|
STATE_ID_DOES_NOT_EXIST: {
|
|
196
202
|
message: `State with id '{id}' does not exist`,
|
|
197
203
|
params: ['id'],
|
package/package.json
CHANGED
|
@@ -123,6 +123,9 @@ export const VALIDATION_MESSAGES = {
|
|
|
123
123
|
NO_DEFAULT_PAYMENT_METHOD: {
|
|
124
124
|
message: 'There must be at least one payment method marked as default. Please select a default payment method.',
|
|
125
125
|
},
|
|
126
|
+
MULTIPLE_DEFAULT_PAYMENT_METHODS: {
|
|
127
|
+
message: 'There can only be one default payment method. Please ensure only one payment method is marked as default.',
|
|
128
|
+
},
|
|
126
129
|
},
|
|
127
130
|
CONTACT: {
|
|
128
131
|
CONTACT_ROLES_NOT_FOUND: {
|
|
@@ -190,6 +193,9 @@ export const VALIDATION_MESSAGES = {
|
|
|
190
193
|
message: `Parent/Sub status with id '{id}' does not exist`,
|
|
191
194
|
params: ['id'],
|
|
192
195
|
},
|
|
196
|
+
FILING_TYPE_PARENT_REQUIRED: {
|
|
197
|
+
message: `Parent needs to be specified for filing type 'Files under parent'`,
|
|
198
|
+
},
|
|
193
199
|
STATE_ID_DOES_NOT_EXIST: {
|
|
194
200
|
message: `State with id '{id}' does not exist`,
|
|
195
201
|
params: ['id'],
|