@bash-app/bash-common 19.0.0 → 19.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "19.0.0",
3
+ "version": "19.0.1",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -827,7 +827,7 @@ model Service {
827
827
  id String @id @default(cuid())
828
828
  ownerId String
829
829
  owner User @relation(fields: [ownerId], references: [id], onDelete: Cascade)
830
- serviceId String?
830
+ serviceId String
831
831
  email String
832
832
  streetAddress String
833
833
  city String
@@ -25,6 +25,7 @@ export const DONATION_CHECKOUT_RETURN_SUCCESS_URL_PAGE = '/donation-checkout-ret
25
25
  export const DONATION_CHECKOUT_RETURN_CANCEL_URL_PAGE = '/donation-checkout-return/cancel/$checkoutSessionId' as const;
26
26
  export const VERIFICATION_RETURN_URL = `/sign-up` as const;
27
27
  export const BASH_DETAIL_URL = `/bash-detail` as const;
28
+ export const SERVICE_PAGE_URL = `/service-page` as const;
28
29
  export const LOGIN_URL = `/login` as const;
29
30
  export const TICKET_DETAILS = `/ticket-details` as const;
30
31