@cranberry-money/shared-constants 4.2.0 → 4.2.1

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.
Files changed (97) hide show
  1. package/dist/api/config.d.ts +36 -0
  2. package/dist/api/config.d.ts.map +1 -0
  3. package/dist/api/config.js +44 -0
  4. package/dist/api/endpoints.d.ts +111 -0
  5. package/dist/api/endpoints.d.ts.map +1 -0
  6. package/dist/api/endpoints.js +133 -0
  7. package/dist/api/http.d.ts +55 -0
  8. package/dist/api/http.d.ts.map +1 -0
  9. package/dist/api/http.js +62 -0
  10. package/dist/api/index.d.ts +7 -0
  11. package/dist/api/index.d.ts.map +1 -0
  12. package/dist/api/index.js +22 -0
  13. package/dist/business/accounts.d.ts +30 -0
  14. package/dist/business/accounts.d.ts.map +1 -0
  15. package/dist/business/accounts.js +45 -0
  16. package/dist/business/banking.d.ts +44 -0
  17. package/dist/business/banking.d.ts.map +1 -0
  18. package/dist/business/banking.js +72 -0
  19. package/dist/business/documents.d.ts +34 -0
  20. package/dist/business/documents.d.ts.map +1 -0
  21. package/dist/business/documents.js +58 -0
  22. package/dist/business/index.d.ts +10 -0
  23. package/dist/business/index.d.ts.map +1 -0
  24. package/dist/business/index.js +25 -0
  25. package/dist/business/investments.d.ts +87 -0
  26. package/dist/business/investments.d.ts.map +1 -0
  27. package/dist/business/investments.js +96 -0
  28. package/dist/business/status/banks.d.ts +13 -0
  29. package/dist/business/status/banks.d.ts.map +1 -0
  30. package/dist/business/status/banks.js +20 -0
  31. package/dist/business/status/cash-accounts.d.ts +16 -0
  32. package/dist/business/status/cash-accounts.d.ts.map +1 -0
  33. package/dist/business/status/cash-accounts.js +26 -0
  34. package/dist/business/status/documents.d.ts +13 -0
  35. package/dist/business/status/documents.d.ts.map +1 -0
  36. package/dist/business/status/documents.js +20 -0
  37. package/dist/business/status/index.d.ts +11 -0
  38. package/dist/business/status/index.d.ts.map +1 -0
  39. package/dist/business/status/index.js +26 -0
  40. package/dist/business/status/instruments.d.ts +22 -0
  41. package/dist/business/status/instruments.d.ts.map +1 -0
  42. package/dist/business/status/instruments.js +35 -0
  43. package/dist/business/status/portfolios.d.ts +12 -0
  44. package/dist/business/status/portfolios.d.ts.map +1 -0
  45. package/dist/business/status/portfolios.js +18 -0
  46. package/dist/business/status/trades.d.ts +40 -0
  47. package/dist/business/status/trades.d.ts.map +1 -0
  48. package/dist/business/status/trades.js +65 -0
  49. package/dist/business/status/withdrawals.d.ts +33 -0
  50. package/dist/business/status/withdrawals.d.ts.map +1 -0
  51. package/dist/business/status/withdrawals.js +54 -0
  52. package/dist/business/trading.d.ts +52 -0
  53. package/dist/business/trading.d.ts.map +1 -0
  54. package/dist/business/trading.js +71 -0
  55. package/dist/financial/currency.d.ts +25 -0
  56. package/dist/financial/currency.d.ts.map +1 -0
  57. package/dist/financial/currency.js +65 -0
  58. package/dist/financial/formatting.d.ts +52 -0
  59. package/dist/financial/formatting.d.ts.map +1 -0
  60. package/dist/financial/formatting.js +64 -0
  61. package/dist/financial/index.d.ts +7 -0
  62. package/dist/financial/index.d.ts.map +1 -0
  63. package/dist/financial/index.js +22 -0
  64. package/dist/financial/instruments.d.ts +35 -0
  65. package/dist/financial/instruments.d.ts.map +1 -0
  66. package/dist/financial/instruments.js +61 -0
  67. package/dist/index.d.ts +12 -0
  68. package/dist/index.d.ts.map +1 -0
  69. package/dist/index.js +32 -0
  70. package/dist/ui/colors.d.ts +43 -0
  71. package/dist/ui/colors.d.ts.map +1 -0
  72. package/dist/ui/colors.js +84 -0
  73. package/dist/ui/display.d.ts +69 -0
  74. package/dist/ui/display.d.ts.map +1 -0
  75. package/dist/ui/display.js +83 -0
  76. package/dist/ui/index.d.ts +7 -0
  77. package/dist/ui/index.d.ts.map +1 -0
  78. package/dist/ui/index.js +22 -0
  79. package/dist/ui/labels/index.d.ts +20 -0
  80. package/dist/ui/labels/index.d.ts.map +1 -0
  81. package/dist/ui/labels/index.js +57 -0
  82. package/dist/utilities/defaults.d.ts +39 -0
  83. package/dist/utilities/defaults.d.ts.map +1 -0
  84. package/dist/utilities/defaults.js +46 -0
  85. package/dist/utilities/index.d.ts +8 -0
  86. package/dist/utilities/index.d.ts.map +1 -0
  87. package/dist/utilities/index.js +23 -0
  88. package/dist/utilities/sorting.d.ts +43 -0
  89. package/dist/utilities/sorting.d.ts.map +1 -0
  90. package/dist/utilities/sorting.js +51 -0
  91. package/dist/utilities/time.d.ts +43 -0
  92. package/dist/utilities/time.d.ts.map +1 -0
  93. package/dist/utilities/time.js +52 -0
  94. package/dist/utilities/validation.d.ts +57 -0
  95. package/dist/utilities/validation.d.ts.map +1 -0
  96. package/dist/utilities/validation.js +68 -0
  97. package/package.json +1 -1
@@ -0,0 +1,43 @@
1
+ /**
2
+ * Sorting-related constants
3
+ */
4
+ export declare const SORT_DIRECTION: {
5
+ readonly ASC: "asc";
6
+ readonly DESC: "desc";
7
+ };
8
+ export type SortDirection = typeof SORT_DIRECTION[keyof typeof SORT_DIRECTION];
9
+ export declare const SORT_FIELDS: {
10
+ readonly CREATED_AT: "created_at";
11
+ readonly UPDATED_AT: "updated_at";
12
+ readonly DATE: "date";
13
+ readonly NAME: "name";
14
+ readonly TITLE: "title";
15
+ readonly AMOUNT: "amount";
16
+ readonly VALUE: "value";
17
+ readonly PRICE: "price";
18
+ readonly QUANTITY: "quantity";
19
+ readonly STATUS: "status";
20
+ readonly PRIORITY: "priority";
21
+ readonly SYMBOL: "symbol";
22
+ readonly TYPE: "type";
23
+ };
24
+ export type SortField = typeof SORT_FIELDS[keyof typeof SORT_FIELDS];
25
+ export declare const DEFAULT_SORT_CONFIG: {
26
+ readonly PORTFOLIOS: {
27
+ readonly field: "updated_at";
28
+ readonly direction: "desc";
29
+ };
30
+ readonly TRADES: {
31
+ readonly field: "created_at";
32
+ readonly direction: "desc";
33
+ };
34
+ readonly WITHDRAWALS: {
35
+ readonly field: "created_at";
36
+ readonly direction: "desc";
37
+ };
38
+ readonly TRANSACTIONS: {
39
+ readonly field: "date";
40
+ readonly direction: "desc";
41
+ };
42
+ };
43
+ //# sourceMappingURL=sorting.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sorting.d.ts","sourceRoot":"","sources":["../../src/utilities/sorting.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,eAAO,MAAM,cAAc;;;CAGjB,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,OAAO,cAAc,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC;AAG/E,eAAO,MAAM,WAAW;;;;;;;;;;;;;;CAuBd,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,OAAO,WAAW,CAAC,MAAM,OAAO,WAAW,CAAC,CAAC;AAGrE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;CAiBtB,CAAC"}
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ /**
3
+ * Sorting-related constants
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.DEFAULT_SORT_CONFIG = exports.SORT_FIELDS = exports.SORT_DIRECTION = void 0;
7
+ // Sort directions
8
+ exports.SORT_DIRECTION = {
9
+ ASC: 'asc',
10
+ DESC: 'desc',
11
+ };
12
+ // Common sort fields
13
+ exports.SORT_FIELDS = {
14
+ // Time-based
15
+ CREATED_AT: 'created_at',
16
+ UPDATED_AT: 'updated_at',
17
+ DATE: 'date',
18
+ // Name-based
19
+ NAME: 'name',
20
+ TITLE: 'title',
21
+ // Value-based
22
+ AMOUNT: 'amount',
23
+ VALUE: 'value',
24
+ PRICE: 'price',
25
+ QUANTITY: 'quantity',
26
+ // Status-based
27
+ STATUS: 'status',
28
+ PRIORITY: 'priority',
29
+ // Other
30
+ SYMBOL: 'symbol',
31
+ TYPE: 'type',
32
+ };
33
+ // Default sort configurations
34
+ exports.DEFAULT_SORT_CONFIG = {
35
+ PORTFOLIOS: {
36
+ field: exports.SORT_FIELDS.UPDATED_AT,
37
+ direction: exports.SORT_DIRECTION.DESC,
38
+ },
39
+ TRADES: {
40
+ field: exports.SORT_FIELDS.CREATED_AT,
41
+ direction: exports.SORT_DIRECTION.DESC,
42
+ },
43
+ WITHDRAWALS: {
44
+ field: exports.SORT_FIELDS.CREATED_AT,
45
+ direction: exports.SORT_DIRECTION.DESC,
46
+ },
47
+ TRANSACTIONS: {
48
+ field: exports.SORT_FIELDS.DATE,
49
+ direction: exports.SORT_DIRECTION.DESC,
50
+ },
51
+ };
@@ -0,0 +1,43 @@
1
+ /**
2
+ * Time-related constants
3
+ */
4
+ export declare const MILLISECONDS: {
5
+ readonly SECOND: 1000;
6
+ readonly MINUTE: number;
7
+ readonly HOUR: number;
8
+ readonly DAY: number;
9
+ readonly WEEK: number;
10
+ };
11
+ export declare const SECONDS: {
12
+ readonly MINUTE: 60;
13
+ readonly HOUR: number;
14
+ readonly DAY: number;
15
+ readonly WEEK: number;
16
+ };
17
+ export declare const DATE_FORMATS: {
18
+ readonly DISPLAY_DATE: "MMM dd, yyyy";
19
+ readonly DISPLAY_DATE_TIME: "MMM dd, yyyy HH:mm";
20
+ readonly DISPLAY_DATE_TIME_SECONDS: "MMM dd, yyyy HH:mm:ss";
21
+ readonly DISPLAY_SHORT: "MM/dd/yy";
22
+ readonly API_DATE: "yyyy-MM-dd";
23
+ readonly API_DATETIME: "yyyy-MM-dd'T'HH:mm:ss";
24
+ readonly API_DATETIME_WITH_TIMEZONE: "yyyy-MM-dd'T'HH:mm:ss'Z'";
25
+ readonly MONTH_YEAR: "MMM yyyy";
26
+ readonly YEAR: "yyyy";
27
+ readonly TIME: "HH:mm";
28
+ readonly TIME_WITH_SECONDS: "HH:mm:ss";
29
+ };
30
+ export declare const TIME_ZONES: {
31
+ readonly UTC: "UTC";
32
+ readonly EST: "America/New_York";
33
+ readonly PST: "America/Los_Angeles";
34
+ readonly SYDNEY: "Australia/Sydney";
35
+ readonly MELBOURNE: "Australia/Melbourne";
36
+ };
37
+ export type TimeZone = typeof TIME_ZONES[keyof typeof TIME_ZONES];
38
+ export declare const SESSION_DURATIONS: {
39
+ readonly DEFAULT: number;
40
+ readonly EXTENDED: number;
41
+ readonly REMEMBER_ME: number;
42
+ };
43
+ //# sourceMappingURL=time.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"time.d.ts","sourceRoot":"","sources":["../../src/utilities/time.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,eAAO,MAAM,YAAY;;;;;;CAMf,CAAC;AAGX,eAAO,MAAM,OAAO;;;;;CAKV,CAAC;AAGX,eAAO,MAAM,YAAY;;;;;;;;;;;;CAiBf,CAAC;AAGX,eAAO,MAAM,UAAU;;;;;;CAMb,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,OAAO,UAAU,CAAC,MAAM,OAAO,UAAU,CAAC,CAAC;AAGlE,eAAO,MAAM,iBAAiB;;;;CAIpB,CAAC"}
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ /**
3
+ * Time-related constants
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.SESSION_DURATIONS = exports.TIME_ZONES = exports.DATE_FORMATS = exports.SECONDS = exports.MILLISECONDS = void 0;
7
+ // Time conversions in milliseconds
8
+ exports.MILLISECONDS = {
9
+ SECOND: 1000,
10
+ MINUTE: 60 * 1000,
11
+ HOUR: 60 * 60 * 1000,
12
+ DAY: 24 * 60 * 60 * 1000,
13
+ WEEK: 7 * 24 * 60 * 60 * 1000,
14
+ };
15
+ // Time conversions in seconds
16
+ exports.SECONDS = {
17
+ MINUTE: 60,
18
+ HOUR: 60 * 60,
19
+ DAY: 24 * 60 * 60,
20
+ WEEK: 7 * 24 * 60 * 60,
21
+ };
22
+ // Common date formats
23
+ exports.DATE_FORMATS = {
24
+ // Display formats
25
+ DISPLAY_DATE: 'MMM dd, yyyy',
26
+ DISPLAY_DATE_TIME: 'MMM dd, yyyy HH:mm',
27
+ DISPLAY_DATE_TIME_SECONDS: 'MMM dd, yyyy HH:mm:ss',
28
+ DISPLAY_SHORT: 'MM/dd/yy',
29
+ // API formats
30
+ API_DATE: 'yyyy-MM-dd',
31
+ API_DATETIME: "yyyy-MM-dd'T'HH:mm:ss",
32
+ API_DATETIME_WITH_TIMEZONE: "yyyy-MM-dd'T'HH:mm:ss'Z'",
33
+ // Other formats
34
+ MONTH_YEAR: 'MMM yyyy',
35
+ YEAR: 'yyyy',
36
+ TIME: 'HH:mm',
37
+ TIME_WITH_SECONDS: 'HH:mm:ss',
38
+ };
39
+ // Time zones
40
+ exports.TIME_ZONES = {
41
+ UTC: 'UTC',
42
+ EST: 'America/New_York',
43
+ PST: 'America/Los_Angeles',
44
+ SYDNEY: 'Australia/Sydney',
45
+ MELBOURNE: 'Australia/Melbourne',
46
+ };
47
+ // Session durations
48
+ exports.SESSION_DURATIONS = {
49
+ DEFAULT: 30 * 60 * 1000, // 30 minutes
50
+ EXTENDED: 24 * 60 * 60 * 1000, // 24 hours
51
+ REMEMBER_ME: 30 * 24 * 60 * 60 * 1000, // 30 days
52
+ };
@@ -0,0 +1,57 @@
1
+ /**
2
+ * Validation-related constants
3
+ */
4
+ export declare const REGEX_PATTERNS: {
5
+ readonly EMAIL: RegExp;
6
+ readonly PHONE: RegExp;
7
+ readonly USERNAME: RegExp;
8
+ readonly PASSWORD: RegExp;
9
+ readonly UUID: RegExp;
10
+ readonly NUMERIC: RegExp;
11
+ readonly DECIMAL: RegExp;
12
+ readonly ALPHA_ONLY: RegExp;
13
+ readonly ALPHANUMERIC: RegExp;
14
+ readonly URL: RegExp;
15
+ };
16
+ export declare const VALIDATION_RULES: {
17
+ readonly MIN_USERNAME_LENGTH: 3;
18
+ readonly MAX_USERNAME_LENGTH: 30;
19
+ readonly MIN_PASSWORD_LENGTH: 8;
20
+ readonly MAX_PASSWORD_LENGTH: 128;
21
+ readonly MIN_NAME_LENGTH: 2;
22
+ readonly MAX_NAME_LENGTH: 50;
23
+ readonly MIN_PORTFOLIO_NAME_LENGTH: 3;
24
+ readonly MAX_PORTFOLIO_NAME_LENGTH: 100;
25
+ readonly MIN_PORTFOLIO_DESCRIPTION_LENGTH: 0;
26
+ readonly MAX_PORTFOLIO_DESCRIPTION_LENGTH: 500;
27
+ readonly MIN_TRADE_AMOUNT: 0.01;
28
+ readonly MAX_TRADE_AMOUNT: 1000000;
29
+ readonly MIN_TRADE_QUANTITY: 0.001;
30
+ readonly MAX_TRADE_QUANTITY: 1000000;
31
+ readonly MIN_PRICE: 0.01;
32
+ readonly MAX_PRICE: 1000000;
33
+ readonly MIN_WITHDRAWAL_AMOUNT: 100;
34
+ readonly MAX_WITHDRAWAL_AMOUNT: 1000000;
35
+ readonly MAX_DESCRIPTION_LENGTH: 500;
36
+ readonly MAX_NOTES_LENGTH: 1000;
37
+ readonly MAX_FILE_SIZE_MB: 10;
38
+ readonly MAX_FILE_NAME_LENGTH: 255;
39
+ readonly MIN_ADDRESS_LENGTH: 10;
40
+ readonly MAX_ADDRESS_LENGTH: 200;
41
+ readonly MIN_POSTAL_CODE_LENGTH: 3;
42
+ readonly MAX_POSTAL_CODE_LENGTH: 10;
43
+ };
44
+ export declare const VALIDATION_ERRORS: {
45
+ readonly REQUIRED: "This field is required";
46
+ readonly INVALID_EMAIL: "Please enter a valid email address";
47
+ readonly INVALID_PHONE: "Please enter a valid phone number";
48
+ readonly INVALID_USERNAME: "Username must be 3-30 characters, letters, numbers, underscores, and hyphens only";
49
+ readonly INVALID_PASSWORD: "Password must be at least 8 characters with uppercase, lowercase, and numbers";
50
+ readonly MIN_LENGTH: (field: string, min: number) => string;
51
+ readonly MAX_LENGTH: (field: string, max: number) => string;
52
+ readonly MIN_VALUE: (field: string, min: number) => string;
53
+ readonly MAX_VALUE: (field: string, max: number) => string;
54
+ readonly INVALID_FORMAT: (field: string) => string;
55
+ readonly PASSWORDS_DONT_MATCH: "Passwords do not match";
56
+ };
57
+ //# sourceMappingURL=validation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../src/utilities/validation.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,eAAO,MAAM,cAAc;;;;;;;;;;;CAWjB,CAAC;AAGX,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsCnB,CAAC;AAGX,eAAO,MAAM,iBAAiB;;;;;;iCAMR,MAAM,OAAO,MAAM;iCACnB,MAAM,OAAO,MAAM;gCACpB,MAAM,OAAO,MAAM;gCACnB,MAAM,OAAO,MAAM;qCACd,MAAM;;CAEtB,CAAC"}
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ /**
3
+ * Validation-related constants
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.VALIDATION_ERRORS = exports.VALIDATION_RULES = exports.REGEX_PATTERNS = void 0;
7
+ // Regular expression patterns
8
+ exports.REGEX_PATTERNS = {
9
+ EMAIL: /^[^\s@]+@[^\s@]+\.[^\s@]+$/,
10
+ PHONE: /^\+?[\d\s-()]+$/,
11
+ USERNAME: /^[a-zA-Z0-9_-]{3,30}$/,
12
+ PASSWORD: /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d@$!%*?&]{8,}$/,
13
+ UUID: /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i,
14
+ NUMERIC: /^\d+$/,
15
+ DECIMAL: /^\d+(\.\d{1,2})?$/,
16
+ ALPHA_ONLY: /^[a-zA-Z]+$/,
17
+ ALPHANUMERIC: /^[a-zA-Z0-9]+$/,
18
+ URL: /^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)$/,
19
+ };
20
+ // Validation rules
21
+ exports.VALIDATION_RULES = {
22
+ // User-related
23
+ MIN_USERNAME_LENGTH: 3,
24
+ MAX_USERNAME_LENGTH: 30,
25
+ MIN_PASSWORD_LENGTH: 8,
26
+ MAX_PASSWORD_LENGTH: 128,
27
+ MIN_NAME_LENGTH: 2,
28
+ MAX_NAME_LENGTH: 50,
29
+ // Portfolio-related
30
+ MIN_PORTFOLIO_NAME_LENGTH: 3,
31
+ MAX_PORTFOLIO_NAME_LENGTH: 100,
32
+ MIN_PORTFOLIO_DESCRIPTION_LENGTH: 0,
33
+ MAX_PORTFOLIO_DESCRIPTION_LENGTH: 500,
34
+ // Trade-related
35
+ MIN_TRADE_AMOUNT: 0.01,
36
+ MAX_TRADE_AMOUNT: 1000000,
37
+ MIN_TRADE_QUANTITY: 0.001,
38
+ MAX_TRADE_QUANTITY: 1000000,
39
+ MIN_PRICE: 0.01,
40
+ MAX_PRICE: 1000000,
41
+ // Withdrawal-related
42
+ MIN_WITHDRAWAL_AMOUNT: 100,
43
+ MAX_WITHDRAWAL_AMOUNT: 1000000,
44
+ // General
45
+ MAX_DESCRIPTION_LENGTH: 500,
46
+ MAX_NOTES_LENGTH: 1000,
47
+ MAX_FILE_SIZE_MB: 10,
48
+ MAX_FILE_NAME_LENGTH: 255,
49
+ // Address-related
50
+ MIN_ADDRESS_LENGTH: 10,
51
+ MAX_ADDRESS_LENGTH: 200,
52
+ MIN_POSTAL_CODE_LENGTH: 3,
53
+ MAX_POSTAL_CODE_LENGTH: 10,
54
+ };
55
+ // Error messages
56
+ exports.VALIDATION_ERRORS = {
57
+ REQUIRED: 'This field is required',
58
+ INVALID_EMAIL: 'Please enter a valid email address',
59
+ INVALID_PHONE: 'Please enter a valid phone number',
60
+ INVALID_USERNAME: 'Username must be 3-30 characters, letters, numbers, underscores, and hyphens only',
61
+ INVALID_PASSWORD: 'Password must be at least 8 characters with uppercase, lowercase, and numbers',
62
+ MIN_LENGTH: (field, min) => `${field} must be at least ${min} characters`,
63
+ MAX_LENGTH: (field, max) => `${field} must be no more than ${max} characters`,
64
+ MIN_VALUE: (field, min) => `${field} must be at least ${min}`,
65
+ MAX_VALUE: (field, max) => `${field} must be no more than ${max}`,
66
+ INVALID_FORMAT: (field) => `${field} has an invalid format`,
67
+ PASSWORDS_DONT_MATCH: 'Passwords do not match',
68
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cranberry-money/shared-constants",
3
- "version": "4.2.0",
3
+ "version": "4.2.1",
4
4
  "description": "Shared constants for MyPortfolio platform",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",