@ossy/booking 1.15.3 → 1.15.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@ossy/booking",
3
3
  "description": "Booking feature package — services, availability, and appointment management for Ossy consultants",
4
- "version": "1.15.3",
4
+ "version": "1.15.5",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
7
7
  "module": "./src/index.js",
@@ -14,11 +14,11 @@
14
14
  "src": "./src"
15
15
  },
16
16
  "dependencies": {
17
- "@ossy/email": "^1.5.3",
18
- "@ossy/event-store": "^1.7.3",
19
- "@ossy/observability": "^1.7.3",
20
- "@ossy/platform": "^1.38.3",
21
- "@ossy/resources": "^1.11.3"
17
+ "@ossy/email": "^1.5.5",
18
+ "@ossy/event-store": "^1.7.5",
19
+ "@ossy/observability": "^1.7.5",
20
+ "@ossy/platform": "^1.38.5",
21
+ "@ossy/resources": "^1.11.5"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "@ossy/design-system": ">=1.0.0",
@@ -34,5 +34,5 @@
34
34
  "/src",
35
35
  "README.md"
36
36
  ],
37
- "gitHead": "501d2273560cb04d668afd32edf448019f3312aa"
37
+ "gitHead": "97d02b0762f2c0461abb1e6753fc3aaad30ee93f"
38
38
  }
@@ -463,8 +463,10 @@ function PendingScreen({ slot }) {
463
463
  // Page
464
464
  // ---------------------------------------------------------------------------
465
465
 
466
- export const path = { sv: '/boka/:consultantSlug', en: '/book/:consultantSlug' }
467
- export const layout = false
466
+ export const metadata = {
467
+ id: 'public-booking',
468
+ path: { sv: '/boka/:consultantSlug', en: '/book/:consultantSlug' },
469
+ }
468
470
 
469
471
  export default function PublicBookingPage({ consultantSlug, ...props }) {
470
472
  const router = useRouter()