@bash-app/bash-common 29.44.2 → 29.44.3
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 +2 -0
package/package.json
CHANGED
package/src/definitions.ts
CHANGED
|
@@ -64,6 +64,8 @@ export const URL_PARAMS_REDIRECT = 'redirect' as const;
|
|
|
64
64
|
export const URL_PARAMS_GOOGLE_ACCESS_CODE = 'code' as const;
|
|
65
65
|
export const URL_PARAMS_LINKED_IN_CODE = 'code' as const;
|
|
66
66
|
export const URL_PARAMS_STATE = 'state' as const;
|
|
67
|
+
export const URL_PARAMS_STRIPE_CHECKOUT = 'checkout' as const;
|
|
68
|
+
export type UrlParamsStripeCheckoutOptions = 'complete' | 'incomplete';
|
|
67
69
|
|
|
68
70
|
export const URL_PARAMS_TICKET_LIST_DELIM = ',' as const;
|
|
69
71
|
export const URL_PARAMS_TICKET_TIER_ID_NUMBER_OF_TICKETS_DATE_DELIM = '__' as const
|