@bash-app/bash-common 11.0.4 → 11.0.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "11.0.4",
3
+ "version": "11.0.5",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -2,6 +2,7 @@ import {
2
2
  BashEventDressTags,
3
3
  BashEventType,
4
4
  BashEventVibeTags,
5
+ Contact,
5
6
  DayOfWeek,
6
7
  ServiceTag,
7
8
  SubServiceType,
@@ -85,6 +86,7 @@ export const ASSET_MAX_MD5_BYTE_LENGTH = 1024 * 100; // 100kb
85
86
 
86
87
  export type DateTimeArgType = Date | string | undefined | null;
87
88
  export type RequiredStripeInfoMissingErrorDataType = { [k in keyof User]?: { type: string, label: string } };
89
+ export type ContactOrUser = Contact | User;
88
90
 
89
91
  export type FilterFields = {
90
92
  price: string[];