@forwardslashns/taskit-validation-messages 1.0.41 → 1.0.42

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.
@@ -56,6 +56,14 @@ export declare const VALIDATION_MESSAGES: {
56
56
  readonly message: "Zip codes with ids {ids} do not exist";
57
57
  readonly params: readonly ["ids"];
58
58
  };
59
+ readonly ADDRESS_TYPES_NOT_FOUND: {
60
+ readonly message: "Address types with ids {ids} do not exist";
61
+ readonly params: readonly ["ids"];
62
+ };
63
+ readonly CONTACT_TYPES_NOT_FOUND: {
64
+ readonly message: "Contact types with ids {ids} do not exist";
65
+ readonly params: readonly ["ids"];
66
+ };
59
67
  readonly LEGAL_ADDRESS_MUST_BE_PROVIDED: {
60
68
  readonly message: "The client must have a legal address. Please set the address type to 'Legal'.";
61
69
  };
@@ -1 +1 @@
1
- {"version":3,"file":"validation-messages.d.ts","sourceRoot":"","sources":["../../src/validation/validation-messages.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2etB,CAAC"}
1
+ {"version":3,"file":"validation-messages.d.ts","sourceRoot":"","sources":["../../src/validation/validation-messages.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmftB,CAAC"}
@@ -59,6 +59,14 @@ exports.VALIDATION_MESSAGES = {
59
59
  message: `Zip codes with ids {ids} do not exist`,
60
60
  params: ['ids'],
61
61
  },
62
+ ADDRESS_TYPES_NOT_FOUND: {
63
+ message: `Address types with ids {ids} do not exist`,
64
+ params: ['ids'],
65
+ },
66
+ CONTACT_TYPES_NOT_FOUND: {
67
+ message: `Contact types with ids {ids} do not exist`,
68
+ params: ['ids'],
69
+ },
62
70
  LEGAL_ADDRESS_MUST_BE_PROVIDED: {
63
71
  message: `The client must have a legal address. Please set the address type to 'Legal'.`,
64
72
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardslashns/taskit-validation-messages",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "commonjs",
@@ -56,6 +56,14 @@ export const VALIDATION_MESSAGES = {
56
56
  message: `Zip codes with ids {ids} do not exist`,
57
57
  params: ['ids'],
58
58
  },
59
+ ADDRESS_TYPES_NOT_FOUND: {
60
+ message: `Address types with ids {ids} do not exist`,
61
+ params: ['ids'],
62
+ },
63
+ CONTACT_TYPES_NOT_FOUND: {
64
+ message: `Contact types with ids {ids} do not exist`,
65
+ params: ['ids'],
66
+ },
59
67
  LEGAL_ADDRESS_MUST_BE_PROVIDED: {
60
68
  message: `The client must have a legal address. Please set the address type to 'Legal'.`,
61
69
  },