@bash-app/bash-common 1.0.13 → 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 +1 -1
- package/src/definitions.ts +6 -0
package/package.json
CHANGED
package/src/definitions.ts
CHANGED
|
@@ -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
|
|