@bash-app/bash-common 1.0.12 → 1.0.14

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": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -224,7 +224,6 @@ model BashEvent {
224
224
  investments Investment[]
225
225
  capacity Int?
226
226
  location String?
227
- place String?
228
227
  status BashStatus @default(Draft)
229
228
  tags String[]
230
229
  coverPhoto String?
@@ -40,6 +40,11 @@ export const URL_PARAMS_GOOGLE_ACCESS_CODE = 'code' as const;
40
40
  export const URL_PARAMS_LINKED_IN_CODE = 'code' as const;
41
41
  export const URL_PARAMS_STATE = 'state' as const;
42
42
 
43
+ export const URL_PARAMS_TICKET_LIST_DELIM = ',' as const;
44
+ export const URL_PARAMS_TICKET_ID_NUMBER_OF_TICKETS_DATE_DELIM = '__' as const
45
+ export const URL_PARAMS_NUMBER_OF_TICKETS_TICKETS_DATE_DELIM = '~~' as const
46
+ export const URL_PARAMS_TICKETS_DATE_DELIM = ';;' as const
47
+
43
48
  export const URL_INCLUDE_QUERY_PARAM_DELIM = ',' as const;
44
49
  export const URL_INCLUDE_PRISMA_DATA_KEYS_DELIM = '.' as const;
45
50
 
@@ -56,6 +61,7 @@ export const ASSET_KEY_DELIM = '__' as const;
56
61
  export const ASSET_MAX_MD5_BYTE_LENGTH = 1024 * 100; // 100kb
57
62
 
58
63
 
64
+
59
65
  export type DateTimeArgType = Date | string | undefined | null;
60
66
  export type RequiredStripeInfoMissingErrorDataType = { [k in keyof User]?: { type: string, label: string } };
61
67