@forwardslashns/taskit-validation-messages 1.0.44 → 1.0.46

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.
@@ -521,5 +521,15 @@ export declare const VALIDATION_MESSAGES: {
521
521
  readonly message: "Invalid columnOrder values";
522
522
  };
523
523
  };
524
+ readonly OUTSIDE_PROVIDER: {
525
+ readonly INVALID_TYPE: {
526
+ readonly message: "Outside provider types with ids '{ids}' do not exist";
527
+ readonly params: readonly ["ids"];
528
+ };
529
+ readonly SAME_TYPE_TIMELINE_OVERLAP: {
530
+ readonly message: "The client already has {outsideProviderType} starting from {startDate}. Your entry overlaps with that time. Please adjust the dates so they don't overlap.";
531
+ readonly params: readonly ["outsideProviderType", "startDate"];
532
+ };
533
+ };
524
534
  };
525
535
  //# sourceMappingURL=validation-messages.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"validation-messages.d.ts","sourceRoot":"","sources":["../../src/validation/validation-messages.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+gBtB,CAAC"}
1
+ {"version":3,"file":"validation-messages.d.ts","sourceRoot":"","sources":["../../src/validation/validation-messages.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyhBtB,CAAC"}
@@ -528,4 +528,14 @@ exports.VALIDATION_MESSAGES = {
528
528
  message: 'Invalid columnOrder values',
529
529
  },
530
530
  },
531
+ OUTSIDE_PROVIDER: {
532
+ INVALID_TYPE: {
533
+ message: `Outside provider types with ids '{ids}' do not exist`,
534
+ params: ['ids'],
535
+ },
536
+ SAME_TYPE_TIMELINE_OVERLAP: {
537
+ message: `The client already has {outsideProviderType} starting from {startDate}. Your entry overlaps with that time. Please adjust the dates so they don't overlap.`,
538
+ params: ['outsideProviderType', 'startDate'],
539
+ },
540
+ },
531
541
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardslashns/taskit-validation-messages",
3
- "version": "1.0.44",
3
+ "version": "1.0.46",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "commonjs",
@@ -525,4 +525,14 @@ export const VALIDATION_MESSAGES = {
525
525
  message: 'Invalid columnOrder values',
526
526
  },
527
527
  },
528
+ OUTSIDE_PROVIDER: {
529
+ INVALID_TYPE: {
530
+ message: `Outside provider types with ids '{ids}' do not exist`,
531
+ params: ['ids'],
532
+ },
533
+ SAME_TYPE_TIMELINE_OVERLAP: {
534
+ message: `The client already has {outsideProviderType} starting from {startDate}. Your entry overlaps with that time. Please adjust the dates so they don't overlap.`,
535
+ params: ['outsideProviderType', 'startDate'],
536
+ },
537
+ },
528
538
  } as const;