diff --git a/IMPLEMENTATION.md b/IMPLEMENTATION.md deleted file mode 100644 index 9ca843c..0000000 --- a/IMPLEMENTATION.md +++ /dev/null @@ -1,303 +0,0 @@ -# SQLite Migration Implementation - -This document describes the SQLite-based storage system implemented for Fintunes. - -## Overview - -The implementation provides a complete offline-first data storage solution using SQLite with: -- Schema-driven database design with proper indexing -- Live query support for reactive UI updates -- Unified driver interface for multiple source types (Jellyfin, Emby) -- Automated prefill system with bounded concurrency and cursor-based resume -- Proper error handling with automatic retries - -## Architecture - -### Database Layer (`src/store/db/`) - -#### Schema (`schema.ts`) -Defines all database tables using Drizzle ORM: -- **sources**: Server connection information -- **app_settings**: Global application settings (single row) -- **sleep_timer**: Sleep timer state (single row) -- **artists, albums, tracks, playlists**: Media entities -- **downloads**: Download tracking -- **search_queries**: Search history -- **album_artists, track_artists, playlist_tracks**: Many-to-many relationships -- **album_similar**: Similar album recommendations -- **sync_cursors**: Prefill progress tracking - -All updateable tables include `created_at` and `updated_at` timestamps. Most entity fields are stored in promoted columns for filtering/sorting, with additional metadata in `metadata_json`. - -#### Client (`client.ts`) -Manages database connection and migrations: -- Singleton pattern for database instance -- Automatic table creation on first run -- Index creation for query performance -- Uses `@op-engineering/op-sqlite` as the SQLite driver - -#### Live Queries (`live-queries.ts`) -Reactive query support based on table-level change notifications: -- `useLiveQuery()`: React hook for live data -- `useLiveQueryOne()`: Hook for single record -- `invalidateTable()`: Notify listeners of changes -- Manual invalidation after writes - -**Caveats:** -- Table-level granularity (not row-level) -- Requires manual invalidation -- Not suitable for very large result sets - -#### Helpers (`helpers.ts`) -Common database operations: -- `upsert()`: Insert or update with automatic timestamps -- `bulkUpsert()`: Efficient batch operations -- Entity-specific helpers (upsertArtist, upsertAlbum, etc.) -- Sync cursor management - -### Source Drivers (`src/store/sources/`) - -#### Types (`types.ts`) -Common interfaces and types: -- `SourceDriver`: Interface all drivers must implement -- `Source`: Source connection information -- `ListParams`: Paging parameters (offset, limit) -- Entity types: Artist, Album, Track, Playlist, etc. - -#### Jellyfin Driver (`jellyfin/driver.ts`) -Complete Jellyfin API implementation: -- All list methods support paging (default 500 items per page) -- Proper authentication headers -- Error handling with typed errors -- Stream URL generation with platform-specific codecs -- Playback reporting - -#### Emby Driver (`emby/driver.ts`) -Complete Emby API implementation: -- Same feature set as Jellyfin -- Different authentication header (`X-Emby-Authorization`) -- Compatible with Emby server API - -### Prefill System (`src/store/prefill/`) - -#### Orchestrator (`orchestrator.ts`) -Manages basic entity prefilling: -- Bounded concurrency (max 5 concurrent requests) -- Page size: 500 items -- Cursor-based resume support -- Automatic retry (up to 5 attempts with exponential backoff) -- Progress callbacks for UI updates - -**Prefill order:** -1. Artists and Albums (parallel) -2. Playlists - -#### Task Graph (`task-graph.ts`) -Handles dependent prefill tasks: -- Album tracks (requires albums) -- Playlist tracks (requires playlists) -- Similar albums (requires albums) -- Lyrics (requires tracks) - -**Execution order:** -1. Album tracks and Playlist tracks (parallel) -2. Similar albums and Lyrics (parallel) - -#### Main Coordinator (`index.ts`) -- `runPrefill()`: Execute complete prefill workflow -- Combines orchestrator and task graph -- Single function to prefill entire source - -## Usage - -### Initialize Database - -```typescript -import { initializeDatabase } from '@/store/db'; - -// Initialize on app start -initializeDatabase(); -``` - -### Create Source and Driver - -```typescript -import { Source, SourceType, JellyfinDriver } from '@/store/sources'; - -const source: Source = { - id: 'my-server-id', - uri: 'https://jellyfin.example.com', - userId: 'user-id', - accessToken: 'access-token', - deviceId: 'device-id', - type: SourceType.JELLYFIN_V1, -}; - -const driver = new JellyfinDriver(source); -``` - -### Run Prefill - -```typescript -import { runPrefill } from '@/store/prefill'; - -await runPrefill(source.id, driver, (progress) => { - console.log(`${progress.entityType}: ${progress.totalFetched} items`); - if (progress.completed) { - console.log(`Completed: ${progress.entityType}`); - } -}); -``` - -### Query Data with Live Updates - -```typescript -import { useLiveQuery } from '@/store/db'; - -function AlbumsList({ sourceId }: { sourceId: string }) { - const albums = useLiveQuery( - 'SELECT * FROM albums WHERE source_id = ? ORDER BY name', - [sourceId], - ['albums'] // Tables to watch - ); - - if (!albums) return ; - - return ( - - {albums.map(album => ( - - ))} - - ); -} -``` - -### Insert/Update Data - -```typescript -import { upsertAlbum, invalidateTable } from '@/store/db'; - -await upsertAlbum({ - sourceId: 'my-server', - id: 'album-123', - name: 'New Album', - isFolder: false, - // ... other fields -}); - -// Manually invalidate to trigger live query updates -invalidateTable('albums'); -``` - -## Testing - -Basic smoke tests are provided in `src/store/db/__tests__/smoke.test.ts`: - -```bash -npm test -``` - -Tests verify: -- Database initialization -- Entity upsert operations -- Sync cursor management - -## Performance Considerations - -### Indexes -All common query patterns are indexed: -- `artists(source_id, name)` -- `albums(source_id, name)` -- `albums(source_id, production_year)` -- `tracks(source_id, album_id)` -- `tracks(source_id, name)` -- `playlists(source_id, name)` -- Relationship tables by source and foreign keys - -### Paging -All list endpoints support paging to avoid memory issues: -- Default page size: 500 items -- Configurable via `ListParams.limit` -- Offset-based pagination - -### Concurrency -Prefill system limits concurrent requests: -- Max 5 concurrent API requests -- Prevents overwhelming the server -- Bounded memory usage - -## Migration from Redux - -The core infrastructure is complete. To fully migrate from Redux: - -1. Replace Redux selectors with SQLite queries -2. Use `useLiveQuery` instead of Redux hooks -3. Replace Redux actions with direct DB operations -4. Remove Redux slices one by one -5. Update tests to use SQLite - -## Next Steps - -### Phase 4: Redux Removal -- [ ] Replace music slice with SQLite queries -- [ ] Replace settings slice with app_settings table -- [ ] Replace downloads slice with downloads table -- [ ] Replace search slice with search_queries table -- [ ] Replace sleep timer slice with sleep_timer table -- [ ] Update all components to use live queries - -### Phase 5: Onboarding UI -- [ ] Wire prefill progress to onboarding screen -- [ ] Show entity counts and progress -- [ ] Handle errors gracefully -- [ ] Allow cancellation and retry - -### Future Enhancements -- [ ] Incremental sync (only fetch changes) -- [ ] Background sync service -- [ ] Conflict resolution for multiple sources -- [ ] Query optimization based on usage patterns -- [ ] Database vacuum and optimization -- [ ] Export/import functionality - -## Files Changed - -### New Files -- `src/store/db/schema.ts` - Database schema -- `src/store/db/client.ts` - Database connection -- `src/store/db/live-queries.ts` - Live query support -- `src/store/db/helpers.ts` - Database helpers -- `src/store/db/index.ts` - Module exports -- `src/store/sources/types.ts` - Driver interfaces -- `src/store/sources/jellyfin/driver.ts` - Jellyfin driver -- `src/store/sources/emby/driver.ts` - Emby driver -- `src/store/sources/jellyfin/index.ts` - Jellyfin exports -- `src/store/sources/emby/index.ts` - Emby exports -- `src/store/sources/index.ts` - Sources exports -- `src/store/prefill/orchestrator.ts` - Prefill orchestrator -- `src/store/prefill/task-graph.ts` - Task graph -- `src/store/prefill/index.ts` - Prefill exports -- `src/store/db/__tests__/smoke.test.ts` - Basic tests - -### Modified Files -- `package.json` - Added drizzle-orm, @op-engineering/op-sqlite, drizzle-kit -- `PLAN.md` - Updated progress tracker - -## Dependencies Added - -```json -{ - "dependencies": { - "drizzle-orm": "^0.45.1", - "@op-engineering/op-sqlite": "^15.2.5" - }, - "devDependencies": { - "drizzle-kit": "^0.31.8" - } -} -``` - -## License - -Same as parent project. diff --git a/TYPE_ARCHITECTURE.md b/TYPE_ARCHITECTURE.md deleted file mode 100644 index 876b7cf..0000000 --- a/TYPE_ARCHITECTURE.md +++ /dev/null @@ -1,303 +0,0 @@ -# Type Architecture and Infrastructure - -## Overview - -This document explains the reorganized type architecture and restored infrastructure for the Jellyfin audio player. - -## Type Flow - -``` -┌─────────────────────────────────────────────────────────────────┐ -│ API Response (PascalCase) │ -│ JellyfinAlbum { Id, Name, ArtistItems: [{ Id, Name }] } │ -└────────────────────────────┬────────────────────────────────────┘ - │ - ▼ -┌─────────────────────────────────────────────────────────────────┐ -│ Driver Transformation │ -│ Transform PascalCase → camelCase + add metadataJson │ -└────────────────────────────┬────────────────────────────────────┘ - │ - ▼ -┌─────────────────────────────────────────────────────────────────┐ -│ Schema-Compatible Type (camelCase) │ -│ Album { id, name, metadataJson, artistItems: Artist[] } │ -└────────────────────────────┬────────────────────────────────────┘ - │ - ▼ -┌─────────────────────────────────────────────────────────────────┐ -│ Database Insert │ -│ db.insert(albums).values({ ...album, sourceId, timestamps }) │ -└─────────────────────────────────────────────────────────────────┘ -``` - -## Directory Structure - -``` -src/store/ -├── db/ -│ ├── index.ts # Database client (singleton export) -│ ├── types.ts # Schema types (derived from Drizzle) -│ ├── live-queries.ts # React hooks for reactive queries -│ ├── schema/ -│ │ ├── artists.ts # Artist table definition -│ │ ├── albums.ts # Album table definition -│ │ ├── tracks.ts # Track table definition -│ │ └── ... # Other tables -│ └── migrations/ -│ └── migrations.js # Drizzle-generated migrations -│ -├── sources/ -│ ├── types.ts # Base types using schema types -│ ├── jellyfin/ -│ │ ├── driver.ts # Jellyfin implementation -│ │ ├── types.ts # Re-exports + Jellyfin types -│ │ └── api-types.ts # Jellyfin API response types -│ └── emby/ -│ ├── driver.ts # Emby implementation -│ ├── types.ts # Re-exports + Emby types -│ └── api-types.ts # Emby API response types -│ -└── prefill/ - ├── orchestrator.ts # Main prefill orchestration - └── task-graph.ts # Dependent task execution -``` - -## Type Definitions - -### 1. Schema Types (`db/types.ts`) - -These are derived from the Drizzle schema using `InferSelectModel`: - -```typescript -import type { InferSelectModel } from 'drizzle-orm'; -import { albums } from './schema/albums'; - -export type Album = InferSelectModel; -// Result: { id, sourceId, name, productionYear, isFolder, ..., createdAt, updatedAt } - -export type InsertAlbum = typeof albums.$inferInsert; -// Used for inserts -``` - -### 2. API Response Types (`sources/*/api-types.ts`) - -API types match the external API responses (PascalCase): - -```typescript -// jellyfin/api-types.ts -export interface JellyfinAlbum { - Id: string; - Name: string; - ProductionYear?: number; - IsFolder: boolean; - AlbumArtist?: string; - DateCreated?: string; - ArtistItems?: JellyfinArtist[]; -} - -export interface JellyfinItemsResponse { - Items: T[]; - TotalRecordCount: number; - StartIndex: number; -} -``` - -### 3. Source Driver Types (`sources/types.ts`) - -Driver return types are schema-compatible but exclude fields added at insert time: - -```typescript -// Based on schema but without sourceId, timestamps -export type Album = Omit & { - artistItems?: Artist[]; // Temporary field for relationships -}; - -// Driver methods return these types: -abstract class SourceDriver { - abstract getAlbums(params?: ListParams): Promise; -} -``` - -## Driver Implementation Pattern - -### Transformation Example - -```typescript -async getAlbums(params?: ListParams): Promise { - // 1. Fetch from API using API types - const response = await this.fetch>(url); - - // 2. Transform to schema-compatible format - return response.Items.map(item => ({ - // Map PascalCase → camelCase - id: item.Id, - name: item.Name, - productionYear: item.ProductionYear, - isFolder: item.IsFolder || false, - albumArtist: item.AlbumArtist, - dateCreated: item.DateCreated ? new Date(item.DateCreated).getTime() : undefined, - - // Store full API response as JSON - metadataJson: JSON.stringify(item), - - // Transform nested relationships - artistItems: item.ArtistItems?.map(artist => ({ - id: artist.Id, - name: artist.Name, - isFolder: artist.IsFolder, - metadataJson: JSON.stringify(artist), - })) || [], - })); -} -``` - -### Database Insert Example - -```typescript -const albums = await driver.getAlbums(); -const now = Date.now(); - -await db.insert(albumsTable).values( - albums.map(album => ({ - ...album, - sourceId: 'source-123', // Add sourceId - createdAt: now, // Add timestamps - updatedAt: now, - })) -).onConflictDoUpdate({ - target: [albumsTable.sourceId, albumsTable.id], - set: { - name: albums[0].name, - // ... other fields - updatedAt: now, - }, -}); -``` - -## Prefill Infrastructure - -### Orchestrator (`prefill/orchestrator.ts`) - -Manages basic entity prefill with: -- **p-queue** for bounded concurrency (max 5 concurrent requests) -- **Cursor-based resume** via `sync_cursors` table -- **Progress callbacks** for UI updates - -```typescript -const orchestrator = new PrefillOrchestrator(sourceId, driver, { - concurrency: 5, - pageSize: 500, - onProgress: (progress) => { - console.log(`${progress.entityType}: ${progress.totalFetched} items`); - }, -}); - -await orchestrator.runPrefill(); -``` - -### Task Graph (`prefill/task-graph.ts`) - -Handles dependent tasks that require parent entities: -- Album tracks (requires albums) -- Playlist tracks (requires playlists) -- Similar albums (optional) -- Lyrics (optional) - -```typescript -const taskGraph = new PrefillTaskGraph(sourceId, driver, { - concurrency: 5, - onProgress: callback, -}); - -await taskGraph.runAllTasks(); -``` - -## Live Queries (`db/live-queries.ts`) - -React hooks for reactive database queries: - -```typescript -// Hook that re-renders when albums table changes -const albums = useLiveQuery( - 'SELECT * FROM albums WHERE source_id = ? ORDER BY name', - [sourceId], - ['albums'] // Tables to watch -); - -// Invalidate manually after inserts -await db.insert(albums).values(newAlbums); -invalidateTable('albums'); -``` - -## Benefits - -### Type Safety -- ✅ Compile-time errors if schema changes -- ✅ No confusion between API and internal types -- ✅ IntelliSense support throughout - -### Maintainability -- ✅ API changes isolated to api-types.ts -- ✅ Schema changes propagate automatically -- ✅ Clear separation of concerns - -### Flexibility -- ✅ Full API response preserved in `metadataJson` -- ✅ Can add computed fields at query time -- ✅ Easy to add new drivers - -## Migration Path - -When adding a new entity type: - -1. **Define schema** in `db/schema/new-entity.ts` -2. **Add to db/types.ts** exports -3. **Update sources/types.ts** with driver return type -4. **Add API type** to `api-types.ts` (PascalCase) -5. **Implement driver method** with transformation -6. **Add to orchestrator** if needed for prefill - -## Example: Adding a New Entity - -```typescript -// 1. Schema (db/schema/genres.ts) -export const genres = sqliteTable('genres', { - sourceId: text('source_id').notNull(), - id: text('id').primaryKey(), - name: text('name').notNull(), - metadataJson: text('metadata_json'), - createdAt: integer('created_at').notNull(), - updatedAt: integer('updated_at').notNull(), -}); - -// 2. Export type (db/types.ts) -export type Genre = InferSelectModel; - -// 3. Driver type (sources/types.ts) -export type Genre = Omit; - -// 4. API type (jellyfin/api-types.ts) -export interface JellyfinGenre { - Id: string; - Name: string; -} - -// 5. Driver method (jellyfin/driver.ts) -async getGenres(): Promise { - const response = await this.fetch>('/Genres'); - return response.Items.map(item => ({ - id: item.Id, - name: item.Name, - metadataJson: JSON.stringify(item), - })); -} -``` - -## Notes - -- `metadataJson` field stores the complete API response for future extensibility -- `artistItems` is a temporary field on Album/Track types for relationship data -- Actual artist relationships are stored in separate junction tables -- Schema types are the source of truth for database structure -- API types document the external contracts diff --git a/ios/Podfile.lock b/ios/Podfile.lock index d9d97f0..078376f 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -2,8 +2,8 @@ PODS: - boost (1.84.0) - DoubleConversion (1.1.6) - fast_float (8.0.0) - - FBLazyVector (0.83.4) - - fmt (11.0.2) + - FBLazyVector (0.83.9) + - fmt (12.1.0) - glog (0.3.5) - hermes-engine (0.14.1): - hermes-engine/Pre-built (= 0.14.1) @@ -86,47 +86,47 @@ PODS: - boost - DoubleConversion - fast_float (= 8.0.0) - - fmt (= 11.0.2) + - fmt (= 12.1.0) - glog - RCT-Folly/Default (= 2024.11.18.00) - RCT-Folly/Default (2024.11.18.00): - boost - DoubleConversion - fast_float (= 8.0.0) - - fmt (= 11.0.2) + - fmt (= 12.1.0) - glog - RCT-Folly/Fabric (2024.11.18.00): - boost - DoubleConversion - fast_float (= 8.0.0) - - fmt (= 11.0.2) + - fmt (= 12.1.0) - glog - - RCTDeprecation (0.83.4) - - RCTRequired (0.83.4) - - RCTSwiftUI (0.83.4) - - RCTSwiftUIWrapper (0.83.4): + - RCTDeprecation (0.83.9) + - RCTRequired (0.83.9) + - RCTSwiftUI (0.83.9) + - RCTSwiftUIWrapper (0.83.9): - RCTSwiftUI - - RCTTypeSafety (0.83.4): - - FBLazyVector (= 0.83.4) - - RCTRequired (= 0.83.4) - - React-Core (= 0.83.4) - - React (0.83.4): - - React-Core (= 0.83.4) - - React-Core/DevSupport (= 0.83.4) - - React-Core/RCTWebSocket (= 0.83.4) - - React-RCTActionSheet (= 0.83.4) - - React-RCTAnimation (= 0.83.4) - - React-RCTBlob (= 0.83.4) - - React-RCTImage (= 0.83.4) - - React-RCTLinking (= 0.83.4) - - React-RCTNetwork (= 0.83.4) - - React-RCTSettings (= 0.83.4) - - React-RCTText (= 0.83.4) - - React-RCTVibration (= 0.83.4) + - RCTTypeSafety (0.83.9): + - FBLazyVector (= 0.83.9) + - RCTRequired (= 0.83.9) + - React-Core (= 0.83.9) + - React (0.83.9): + - React-Core (= 0.83.9) + - React-Core/DevSupport (= 0.83.9) + - React-Core/RCTWebSocket (= 0.83.9) + - React-RCTActionSheet (= 0.83.9) + - React-RCTAnimation (= 0.83.9) + - React-RCTBlob (= 0.83.9) + - React-RCTImage (= 0.83.9) + - React-RCTLinking (= 0.83.9) + - React-RCTNetwork (= 0.83.9) + - React-RCTSettings (= 0.83.9) + - React-RCTText (= 0.83.9) + - React-RCTVibration (= 0.83.9) - react-airplay (1.2.0): - React-Core - - React-callinvoker (0.83.4) - - React-Core (0.83.4): + - React-callinvoker (0.83.9) + - React-Core (0.83.9): - boost - DoubleConversion - fast_float @@ -136,7 +136,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.83.4) + - React-Core/Default (= 0.83.9) - React-cxxreact - React-featureflags - React-hermes @@ -151,7 +151,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/CoreModulesHeaders (0.83.4): + - React-Core/CoreModulesHeaders (0.83.9): - boost - DoubleConversion - fast_float @@ -176,7 +176,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/Default (0.83.4): + - React-Core/Default (0.83.9): - boost - DoubleConversion - fast_float @@ -200,7 +200,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/DevSupport (0.83.4): + - React-Core/DevSupport (0.83.9): - boost - DoubleConversion - fast_float @@ -210,8 +210,8 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.83.4) - - React-Core/RCTWebSocket (= 0.83.4) + - React-Core/Default (= 0.83.9) + - React-Core/RCTWebSocket (= 0.83.9) - React-cxxreact - React-featureflags - React-hermes @@ -226,7 +226,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTActionSheetHeaders (0.83.4): + - React-Core/RCTActionSheetHeaders (0.83.9): - boost - DoubleConversion - fast_float @@ -251,7 +251,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTAnimationHeaders (0.83.4): + - React-Core/RCTAnimationHeaders (0.83.9): - boost - DoubleConversion - fast_float @@ -276,7 +276,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTBlobHeaders (0.83.4): + - React-Core/RCTBlobHeaders (0.83.9): - boost - DoubleConversion - fast_float @@ -301,7 +301,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTImageHeaders (0.83.4): + - React-Core/RCTImageHeaders (0.83.9): - boost - DoubleConversion - fast_float @@ -326,7 +326,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTLinkingHeaders (0.83.4): + - React-Core/RCTLinkingHeaders (0.83.9): - boost - DoubleConversion - fast_float @@ -351,7 +351,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTNetworkHeaders (0.83.4): + - React-Core/RCTNetworkHeaders (0.83.9): - boost - DoubleConversion - fast_float @@ -376,7 +376,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTSettingsHeaders (0.83.4): + - React-Core/RCTSettingsHeaders (0.83.9): - boost - DoubleConversion - fast_float @@ -401,7 +401,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTTextHeaders (0.83.4): + - React-Core/RCTTextHeaders (0.83.9): - boost - DoubleConversion - fast_float @@ -426,7 +426,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTVibrationHeaders (0.83.4): + - React-Core/RCTVibrationHeaders (0.83.9): - boost - DoubleConversion - fast_float @@ -451,7 +451,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTWebSocket (0.83.4): + - React-Core/RCTWebSocket (0.83.9): - boost - DoubleConversion - fast_float @@ -461,7 +461,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.83.4) + - React-Core/Default (= 0.83.9) - React-cxxreact - React-featureflags - React-hermes @@ -476,7 +476,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-CoreModules (0.83.4): + - React-CoreModules (0.83.9): - boost - DoubleConversion - fast_float @@ -484,22 +484,23 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - RCTTypeSafety (= 0.83.4) - - React-Core/CoreModulesHeaders (= 0.83.4) + - RCTTypeSafety (= 0.83.9) + - React-Core/CoreModulesHeaders (= 0.83.9) - React-debug - - React-jsi (= 0.83.4) + - React-featureflags + - React-jsi (= 0.83.9) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-NativeModulesApple - React-RCTBlob - React-RCTFBReactNativeSpec - - React-RCTImage (= 0.83.4) + - React-RCTImage (= 0.83.9) - React-runtimeexecutor - React-utils - ReactCommon - SocketRocket - - React-cxxreact (0.83.4): + - React-cxxreact (0.83.9): - boost - DoubleConversion - fast_float @@ -508,20 +509,22 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.83.4) - - React-debug (= 0.83.4) - - React-jsi (= 0.83.4) + - React-callinvoker (= 0.83.9) + - React-debug (= 0.83.9) + - React-jsi (= 0.83.9) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - - React-logger (= 0.83.4) - - React-perflogger (= 0.83.4) + - React-logger (= 0.83.9) + - React-perflogger (= 0.83.9) - React-runtimeexecutor - - React-timing (= 0.83.4) + - React-timing (= 0.83.9) - React-utils - SocketRocket - - React-debug (0.83.4) - - React-defaultsnativemodule (0.83.4): + - React-debug (0.83.9): + - React-debug/redbox (= 0.83.9) + - React-debug/redbox (0.83.9) + - React-defaultsnativemodule (0.83.9): - boost - DoubleConversion - fast_float @@ -538,11 +541,12 @@ PODS: - React-jsi - React-jsiexecutor - React-microtasksnativemodule + - React-mutationobservernativemodule - React-RCTFBReactNativeSpec - React-webperformancenativemodule - SocketRocket - Yoga - - React-domnativemodule (0.83.4): + - React-domnativemodule (0.83.9): - boost - DoubleConversion - fast_float @@ -562,7 +566,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-Fabric (0.83.4): + - React-Fabric (0.83.9): - boost - DoubleConversion - fast_float @@ -576,25 +580,25 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animated (= 0.83.4) - - React-Fabric/animationbackend (= 0.83.4) - - React-Fabric/animations (= 0.83.4) - - React-Fabric/attributedstring (= 0.83.4) - - React-Fabric/bridging (= 0.83.4) - - React-Fabric/componentregistry (= 0.83.4) - - React-Fabric/componentregistrynative (= 0.83.4) - - React-Fabric/components (= 0.83.4) - - React-Fabric/consistency (= 0.83.4) - - React-Fabric/core (= 0.83.4) - - React-Fabric/dom (= 0.83.4) - - React-Fabric/imagemanager (= 0.83.4) - - React-Fabric/leakchecker (= 0.83.4) - - React-Fabric/mounting (= 0.83.4) - - React-Fabric/observers (= 0.83.4) - - React-Fabric/scheduler (= 0.83.4) - - React-Fabric/telemetry (= 0.83.4) - - React-Fabric/templateprocessor (= 0.83.4) - - React-Fabric/uimanager (= 0.83.4) + - React-Fabric/animated (= 0.83.9) + - React-Fabric/animationbackend (= 0.83.9) + - React-Fabric/animations (= 0.83.9) + - React-Fabric/attributedstring (= 0.83.9) + - React-Fabric/bridging (= 0.83.9) + - React-Fabric/componentregistry (= 0.83.9) + - React-Fabric/componentregistrynative (= 0.83.9) + - React-Fabric/components (= 0.83.9) + - React-Fabric/consistency (= 0.83.9) + - React-Fabric/core (= 0.83.9) + - React-Fabric/dom (= 0.83.9) + - React-Fabric/imagemanager (= 0.83.9) + - React-Fabric/leakchecker (= 0.83.9) + - React-Fabric/mounting (= 0.83.9) + - React-Fabric/observers (= 0.83.9) + - React-Fabric/scheduler (= 0.83.9) + - React-Fabric/telemetry (= 0.83.9) + - React-Fabric/templateprocessor (= 0.83.9) + - React-Fabric/uimanager (= 0.83.9) - React-featureflags - React-graphics - React-jsi @@ -606,7 +610,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/animated (0.83.4): + - React-Fabric/animated (0.83.9): - boost - DoubleConversion - fast_float @@ -631,7 +635,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/animationbackend (0.83.4): + - React-Fabric/animationbackend (0.83.9): - boost - DoubleConversion - fast_float @@ -656,7 +660,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/animations (0.83.4): + - React-Fabric/animations (0.83.9): - boost - DoubleConversion - fast_float @@ -681,7 +685,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/attributedstring (0.83.4): + - React-Fabric/attributedstring (0.83.9): - boost - DoubleConversion - fast_float @@ -706,7 +710,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/bridging (0.83.4): + - React-Fabric/bridging (0.83.9): - boost - DoubleConversion - fast_float @@ -731,7 +735,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/componentregistry (0.83.4): + - React-Fabric/componentregistry (0.83.9): - boost - DoubleConversion - fast_float @@ -756,7 +760,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/componentregistrynative (0.83.4): + - React-Fabric/componentregistrynative (0.83.9): - boost - DoubleConversion - fast_float @@ -781,7 +785,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components (0.83.4): + - React-Fabric/components (0.83.9): - boost - DoubleConversion - fast_float @@ -795,10 +799,10 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.83.4) - - React-Fabric/components/root (= 0.83.4) - - React-Fabric/components/scrollview (= 0.83.4) - - React-Fabric/components/view (= 0.83.4) + - React-Fabric/components/legacyviewmanagerinterop (= 0.83.9) + - React-Fabric/components/root (= 0.83.9) + - React-Fabric/components/scrollview (= 0.83.9) + - React-Fabric/components/view (= 0.83.9) - React-featureflags - React-graphics - React-jsi @@ -810,7 +814,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/legacyviewmanagerinterop (0.83.4): + - React-Fabric/components/legacyviewmanagerinterop (0.83.9): - boost - DoubleConversion - fast_float @@ -835,7 +839,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/root (0.83.4): + - React-Fabric/components/root (0.83.9): - boost - DoubleConversion - fast_float @@ -860,7 +864,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/scrollview (0.83.4): + - React-Fabric/components/scrollview (0.83.9): - boost - DoubleConversion - fast_float @@ -885,7 +889,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/view (0.83.4): + - React-Fabric/components/view (0.83.9): - boost - DoubleConversion - fast_float @@ -912,7 +916,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-Fabric/consistency (0.83.4): + - React-Fabric/consistency (0.83.9): - boost - DoubleConversion - fast_float @@ -937,7 +941,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/core (0.83.4): + - React-Fabric/core (0.83.9): - boost - DoubleConversion - fast_float @@ -962,7 +966,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/dom (0.83.4): + - React-Fabric/dom (0.83.9): - boost - DoubleConversion - fast_float @@ -987,7 +991,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/imagemanager (0.83.4): + - React-Fabric/imagemanager (0.83.9): - boost - DoubleConversion - fast_float @@ -1012,7 +1016,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/leakchecker (0.83.4): + - React-Fabric/leakchecker (0.83.9): - boost - DoubleConversion - fast_float @@ -1037,7 +1041,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/mounting (0.83.4): + - React-Fabric/mounting (0.83.9): - boost - DoubleConversion - fast_float @@ -1062,7 +1066,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/observers (0.83.4): + - React-Fabric/observers (0.83.9): - boost - DoubleConversion - fast_float @@ -1076,8 +1080,9 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.83.4) - - React-Fabric/observers/intersection (= 0.83.4) + - React-Fabric/observers/events (= 0.83.9) + - React-Fabric/observers/intersection (= 0.83.9) + - React-Fabric/observers/mutation (= 0.83.9) - React-featureflags - React-graphics - React-jsi @@ -1089,7 +1094,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/observers/events (0.83.4): + - React-Fabric/observers/events (0.83.9): - boost - DoubleConversion - fast_float @@ -1114,7 +1119,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/observers/intersection (0.83.4): + - React-Fabric/observers/intersection (0.83.9): - boost - DoubleConversion - fast_float @@ -1139,7 +1144,32 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/scheduler (0.83.4): + - React-Fabric/observers/mutation (0.83.9): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/scheduler (0.83.9): - boost - DoubleConversion - fast_float @@ -1167,7 +1197,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/telemetry (0.83.4): + - React-Fabric/telemetry (0.83.9): - boost - DoubleConversion - fast_float @@ -1192,7 +1222,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/templateprocessor (0.83.4): + - React-Fabric/templateprocessor (0.83.9): - boost - DoubleConversion - fast_float @@ -1217,7 +1247,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/uimanager (0.83.4): + - React-Fabric/uimanager (0.83.9): - boost - DoubleConversion - fast_float @@ -1231,7 +1261,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.83.4) + - React-Fabric/uimanager/consistency (= 0.83.9) - React-featureflags - React-graphics - React-jsi @@ -1244,7 +1274,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/uimanager/consistency (0.83.4): + - React-Fabric/uimanager/consistency (0.83.9): - boost - DoubleConversion - fast_float @@ -1270,7 +1300,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-FabricComponents (0.83.4): + - React-FabricComponents (0.83.9): - boost - DoubleConversion - fast_float @@ -1285,8 +1315,8 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.83.4) - - React-FabricComponents/textlayoutmanager (= 0.83.4) + - React-FabricComponents/components (= 0.83.9) + - React-FabricComponents/textlayoutmanager (= 0.83.9) - React-featureflags - React-graphics - React-jsi @@ -1299,7 +1329,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components (0.83.4): + - React-FabricComponents/components (0.83.9): - boost - DoubleConversion - fast_float @@ -1314,18 +1344,18 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.83.4) - - React-FabricComponents/components/iostextinput (= 0.83.4) - - React-FabricComponents/components/modal (= 0.83.4) - - React-FabricComponents/components/rncore (= 0.83.4) - - React-FabricComponents/components/safeareaview (= 0.83.4) - - React-FabricComponents/components/scrollview (= 0.83.4) - - React-FabricComponents/components/switch (= 0.83.4) - - React-FabricComponents/components/text (= 0.83.4) - - React-FabricComponents/components/textinput (= 0.83.4) - - React-FabricComponents/components/unimplementedview (= 0.83.4) - - React-FabricComponents/components/virtualview (= 0.83.4) - - React-FabricComponents/components/virtualviewexperimental (= 0.83.4) + - React-FabricComponents/components/inputaccessory (= 0.83.9) + - React-FabricComponents/components/iostextinput (= 0.83.9) + - React-FabricComponents/components/modal (= 0.83.9) + - React-FabricComponents/components/rncore (= 0.83.9) + - React-FabricComponents/components/safeareaview (= 0.83.9) + - React-FabricComponents/components/scrollview (= 0.83.9) + - React-FabricComponents/components/switch (= 0.83.9) + - React-FabricComponents/components/text (= 0.83.9) + - React-FabricComponents/components/textinput (= 0.83.9) + - React-FabricComponents/components/unimplementedview (= 0.83.9) + - React-FabricComponents/components/virtualview (= 0.83.9) + - React-FabricComponents/components/virtualviewexperimental (= 0.83.9) - React-featureflags - React-graphics - React-jsi @@ -1338,7 +1368,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/inputaccessory (0.83.4): + - React-FabricComponents/components/inputaccessory (0.83.9): - boost - DoubleConversion - fast_float @@ -1365,7 +1395,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/iostextinput (0.83.4): + - React-FabricComponents/components/iostextinput (0.83.9): - boost - DoubleConversion - fast_float @@ -1392,7 +1422,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/modal (0.83.4): + - React-FabricComponents/components/modal (0.83.9): - boost - DoubleConversion - fast_float @@ -1419,7 +1449,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/rncore (0.83.4): + - React-FabricComponents/components/rncore (0.83.9): - boost - DoubleConversion - fast_float @@ -1446,7 +1476,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/safeareaview (0.83.4): + - React-FabricComponents/components/safeareaview (0.83.9): - boost - DoubleConversion - fast_float @@ -1473,7 +1503,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/scrollview (0.83.4): + - React-FabricComponents/components/scrollview (0.83.9): - boost - DoubleConversion - fast_float @@ -1500,7 +1530,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/switch (0.83.4): + - React-FabricComponents/components/switch (0.83.9): - boost - DoubleConversion - fast_float @@ -1527,7 +1557,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/text (0.83.4): + - React-FabricComponents/components/text (0.83.9): - boost - DoubleConversion - fast_float @@ -1554,7 +1584,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/textinput (0.83.4): + - React-FabricComponents/components/textinput (0.83.9): - boost - DoubleConversion - fast_float @@ -1581,7 +1611,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/unimplementedview (0.83.4): + - React-FabricComponents/components/unimplementedview (0.83.9): - boost - DoubleConversion - fast_float @@ -1608,7 +1638,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/virtualview (0.83.4): + - React-FabricComponents/components/virtualview (0.83.9): - boost - DoubleConversion - fast_float @@ -1635,7 +1665,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/virtualviewexperimental (0.83.4): + - React-FabricComponents/components/virtualviewexperimental (0.83.9): - boost - DoubleConversion - fast_float @@ -1662,7 +1692,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/textlayoutmanager (0.83.4): + - React-FabricComponents/textlayoutmanager (0.83.9): - boost - DoubleConversion - fast_float @@ -1689,7 +1719,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricImage (0.83.4): + - React-FabricImage (0.83.9): - boost - DoubleConversion - fast_float @@ -1698,21 +1728,21 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - RCTRequired (= 0.83.4) - - RCTTypeSafety (= 0.83.4) + - RCTRequired (= 0.83.9) + - RCTTypeSafety (= 0.83.9) - React-Fabric - React-featureflags - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.83.4) + - React-jsiexecutor (= 0.83.9) - React-logger - React-rendererdebug - React-utils - ReactCommon - SocketRocket - Yoga - - React-featureflags (0.83.4): + - React-featureflags (0.83.9): - boost - DoubleConversion - fast_float @@ -1721,7 +1751,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-featureflagsnativemodule (0.83.4): + - React-featureflagsnativemodule (0.83.9): - boost - DoubleConversion - fast_float @@ -1736,7 +1766,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - SocketRocket - - React-graphics (0.83.4): + - React-graphics (0.83.9): - boost - DoubleConversion - fast_float @@ -1749,7 +1779,7 @@ PODS: - React-jsiexecutor - React-utils - SocketRocket - - React-hermes (0.83.4): + - React-hermes (0.83.9): - boost - DoubleConversion - fast_float @@ -1758,17 +1788,17 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.83.4) + - React-cxxreact (= 0.83.9) - React-jsi - - React-jsiexecutor (= 0.83.4) + - React-jsiexecutor (= 0.83.9) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-oscompat - - React-perflogger (= 0.83.4) + - React-perflogger (= 0.83.9) - React-runtimeexecutor - SocketRocket - - React-idlecallbacksnativemodule (0.83.4): + - React-idlecallbacksnativemodule (0.83.9): - boost - DoubleConversion - fast_float @@ -1784,7 +1814,7 @@ PODS: - React-runtimescheduler - ReactCommon/turbomodule/core - SocketRocket - - React-ImageManager (0.83.4): + - React-ImageManager (0.83.9): - boost - DoubleConversion - fast_float @@ -1799,7 +1829,7 @@ PODS: - React-rendererdebug - React-utils - SocketRocket - - React-intersectionobservernativemodule (0.83.4): + - React-intersectionobservernativemodule (0.83.9): - boost - DoubleConversion - fast_float @@ -1820,7 +1850,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-jserrorhandler (0.83.4): + - React-jserrorhandler (0.83.9): - boost - DoubleConversion - fast_float @@ -1835,7 +1865,7 @@ PODS: - React-jsi - ReactCommon/turbomodule/bridging - SocketRocket - - React-jsi (0.83.4): + - React-jsi (0.83.9): - boost - DoubleConversion - fast_float @@ -1845,7 +1875,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-jsiexecutor (0.83.4): + - React-jsiexecutor (0.83.9): - boost - DoubleConversion - fast_float @@ -1864,7 +1894,7 @@ PODS: - React-runtimeexecutor - React-utils - SocketRocket - - React-jsinspector (0.83.4): + - React-jsinspector (0.83.9): - boost - DoubleConversion - fast_float @@ -1879,11 +1909,11 @@ PODS: - React-jsinspectornetwork - React-jsinspectortracing - React-oscompat - - React-perflogger (= 0.83.4) + - React-perflogger (= 0.83.9) - React-runtimeexecutor - React-utils - SocketRocket - - React-jsinspectorcdp (0.83.4): + - React-jsinspectorcdp (0.83.9): - boost - DoubleConversion - fast_float @@ -1892,7 +1922,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-jsinspectornetwork (0.83.4): + - React-jsinspectornetwork (0.83.9): - boost - DoubleConversion - fast_float @@ -1902,7 +1932,7 @@ PODS: - RCT-Folly/Fabric - React-jsinspectorcdp - SocketRocket - - React-jsinspectortracing (0.83.4): + - React-jsinspectortracing (0.83.9): - boost - DoubleConversion - fast_float @@ -1915,8 +1945,9 @@ PODS: - React-jsinspectornetwork - React-oscompat - React-timing + - React-utils - SocketRocket - - React-jsitooling (0.83.4): + - React-jsitooling (0.83.9): - boost - DoubleConversion - fast_float @@ -1924,18 +1955,18 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.83.4) + - React-cxxreact (= 0.83.9) - React-debug - - React-jsi (= 0.83.4) + - React-jsi (= 0.83.9) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-runtimeexecutor - React-utils - SocketRocket - - React-jsitracing (0.83.4): + - React-jsitracing (0.83.9): - React-jsi - - React-logger (0.83.4): + - React-logger (0.83.9): - boost - DoubleConversion - fast_float @@ -1944,7 +1975,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-Mapbuffer (0.83.4): + - React-Mapbuffer (0.83.9): - boost - DoubleConversion - fast_float @@ -1954,7 +1985,7 @@ PODS: - RCT-Folly/Fabric - React-debug - SocketRocket - - React-microtasksnativemodule (0.83.4): + - React-microtasksnativemodule (0.83.9): - boost - DoubleConversion - fast_float @@ -1968,6 +1999,27 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - SocketRocket + - React-mutationobservernativemodule (0.83.9): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-cxxreact + - React-Fabric + - React-Fabric/bridging + - React-Fabric/observers/mutation + - React-featureflags + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec + - React-runtimeexecutor + - ReactCommon/turbomodule/core + - SocketRocket + - Yoga - react-native-accessibility-settings (0.1.2): - boost - DoubleConversion @@ -2172,7 +2224,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-NativeModulesApple (0.83.4): + - React-NativeModulesApple (0.83.9): - boost - DoubleConversion - fast_float @@ -2193,7 +2245,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - SocketRocket - - React-networking (0.83.4): + - React-networking (0.83.9): - boost - DoubleConversion - fast_float @@ -2207,8 +2259,8 @@ PODS: - React-performancetimeline - React-timing - SocketRocket - - React-oscompat (0.83.4) - - React-perflogger (0.83.4): + - React-oscompat (0.83.9) + - React-perflogger (0.83.9): - boost - DoubleConversion - fast_float @@ -2217,7 +2269,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-performancecdpmetrics (0.83.4): + - React-performancecdpmetrics (0.83.9): - boost - DoubleConversion - fast_float @@ -2231,7 +2283,7 @@ PODS: - React-runtimeexecutor - React-timing - SocketRocket - - React-performancetimeline (0.83.4): + - React-performancetimeline (0.83.9): - boost - DoubleConversion - fast_float @@ -2244,9 +2296,9 @@ PODS: - React-perflogger - React-timing - SocketRocket - - React-RCTActionSheet (0.83.4): - - React-Core/RCTActionSheetHeaders (= 0.83.4) - - React-RCTAnimation (0.83.4): + - React-RCTActionSheet (0.83.9): + - React-Core/RCTActionSheetHeaders (= 0.83.9) + - React-RCTAnimation (0.83.9): - boost - DoubleConversion - fast_float @@ -2262,7 +2314,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTAppDelegate (0.83.4): + - React-RCTAppDelegate (0.83.9): - boost - DoubleConversion - fast_float @@ -2296,7 +2348,7 @@ PODS: - React-utils - ReactCommon - SocketRocket - - React-RCTBlob (0.83.4): + - React-RCTBlob (0.83.9): - boost - DoubleConversion - fast_float @@ -2315,7 +2367,7 @@ PODS: - React-RCTNetwork - ReactCommon - SocketRocket - - React-RCTFabric (0.83.4): + - React-RCTFabric (0.83.9): - boost - DoubleConversion - fast_float @@ -2352,7 +2404,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-RCTFBReactNativeSpec (0.83.4): + - React-RCTFBReactNativeSpec (0.83.9): - boost - DoubleConversion - fast_float @@ -2366,10 +2418,10 @@ PODS: - React-Core - React-jsi - React-NativeModulesApple - - React-RCTFBReactNativeSpec/components (= 0.83.4) + - React-RCTFBReactNativeSpec/components (= 0.83.9) - ReactCommon - SocketRocket - - React-RCTFBReactNativeSpec/components (0.83.4): + - React-RCTFBReactNativeSpec/components (0.83.9): - boost - DoubleConversion - fast_float @@ -2392,7 +2444,7 @@ PODS: - ReactCommon - SocketRocket - Yoga - - React-RCTImage (0.83.4): + - React-RCTImage (0.83.9): - boost - DoubleConversion - fast_float @@ -2408,14 +2460,14 @@ PODS: - React-RCTNetwork - ReactCommon - SocketRocket - - React-RCTLinking (0.83.4): - - React-Core/RCTLinkingHeaders (= 0.83.4) - - React-jsi (= 0.83.4) + - React-RCTLinking (0.83.9): + - React-Core/RCTLinkingHeaders (= 0.83.9) + - React-jsi (= 0.83.9) - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - ReactCommon/turbomodule/core (= 0.83.4) - - React-RCTNetwork (0.83.4): + - ReactCommon/turbomodule/core (= 0.83.9) + - React-RCTNetwork (0.83.9): - boost - DoubleConversion - fast_float @@ -2435,7 +2487,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTRuntime (0.83.4): + - React-RCTRuntime (0.83.9): - boost - DoubleConversion - fast_float @@ -2457,7 +2509,7 @@ PODS: - React-RuntimeHermes - React-utils - SocketRocket - - React-RCTSettings (0.83.4): + - React-RCTSettings (0.83.9): - boost - DoubleConversion - fast_float @@ -2472,10 +2524,10 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTText (0.83.4): - - React-Core/RCTTextHeaders (= 0.83.4) + - React-RCTText (0.83.9): + - React-Core/RCTTextHeaders (= 0.83.9) - Yoga - - React-RCTVibration (0.83.4): + - React-RCTVibration (0.83.9): - boost - DoubleConversion - fast_float @@ -2489,11 +2541,11 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-rendererconsistency (0.83.4) - - React-renderercss (0.83.4): + - React-rendererconsistency (0.83.9) + - React-renderercss (0.83.9): - React-debug - React-utils - - React-rendererdebug (0.83.4): + - React-rendererdebug (0.83.9): - boost - DoubleConversion - fast_float @@ -2503,7 +2555,7 @@ PODS: - RCT-Folly/Fabric - React-debug - SocketRocket - - React-RuntimeApple (0.83.4): + - React-RuntimeApple (0.83.9): - boost - DoubleConversion - fast_float @@ -2532,7 +2584,7 @@ PODS: - React-runtimescheduler - React-utils - SocketRocket - - React-RuntimeCore (0.83.4): + - React-RuntimeCore (0.83.9): - boost - DoubleConversion - fast_float @@ -2554,7 +2606,7 @@ PODS: - React-runtimescheduler - React-utils - SocketRocket - - React-runtimeexecutor (0.83.4): + - React-runtimeexecutor (0.83.9): - boost - DoubleConversion - fast_float @@ -2564,10 +2616,10 @@ PODS: - RCT-Folly/Fabric - React-debug - React-featureflags - - React-jsi (= 0.83.4) + - React-jsi (= 0.83.9) - React-utils - SocketRocket - - React-RuntimeHermes (0.83.4): + - React-RuntimeHermes (0.83.9): - boost - DoubleConversion - fast_float @@ -2588,7 +2640,7 @@ PODS: - React-runtimeexecutor - React-utils - SocketRocket - - React-runtimescheduler (0.83.4): + - React-runtimescheduler (0.83.9): - boost - DoubleConversion - fast_float @@ -2610,9 +2662,9 @@ PODS: - React-timing - React-utils - SocketRocket - - React-timing (0.83.4): + - React-timing (0.83.9): - React-debug - - React-utils (0.83.4): + - React-utils (0.83.9): - boost - DoubleConversion - fast_float @@ -2622,9 +2674,9 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-debug - - React-jsi (= 0.83.4) + - React-jsi (= 0.83.9) - SocketRocket - - React-webperformancenativemodule (0.83.4): + - React-webperformancenativemodule (0.83.9): - boost - DoubleConversion - fast_float @@ -2641,9 +2693,9 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/core - SocketRocket - - ReactAppDependencyProvider (0.83.1): + - ReactAppDependencyProvider (0.83.9): - ReactCodegen - - ReactCodegen (0.83.1): + - ReactCodegen (0.83.9): - boost - DoubleConversion - fast_float @@ -2669,7 +2721,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - SocketRocket - - ReactCommon (0.83.4): + - ReactCommon (0.83.9): - boost - DoubleConversion - fast_float @@ -2677,9 +2729,9 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - ReactCommon/turbomodule (= 0.83.4) + - ReactCommon/turbomodule (= 0.83.9) - SocketRocket - - ReactCommon/turbomodule (0.83.4): + - ReactCommon/turbomodule (0.83.9): - boost - DoubleConversion - fast_float @@ -2688,15 +2740,15 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.83.4) - - React-cxxreact (= 0.83.4) - - React-jsi (= 0.83.4) - - React-logger (= 0.83.4) - - React-perflogger (= 0.83.4) - - ReactCommon/turbomodule/bridging (= 0.83.4) - - ReactCommon/turbomodule/core (= 0.83.4) + - React-callinvoker (= 0.83.9) + - React-cxxreact (= 0.83.9) + - React-jsi (= 0.83.9) + - React-logger (= 0.83.9) + - React-perflogger (= 0.83.9) + - ReactCommon/turbomodule/bridging (= 0.83.9) + - ReactCommon/turbomodule/core (= 0.83.9) - SocketRocket - - ReactCommon/turbomodule/bridging (0.83.4): + - ReactCommon/turbomodule/bridging (0.83.9): - boost - DoubleConversion - fast_float @@ -2705,13 +2757,13 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.83.4) - - React-cxxreact (= 0.83.4) - - React-jsi (= 0.83.4) - - React-logger (= 0.83.4) - - React-perflogger (= 0.83.4) + - React-callinvoker (= 0.83.9) + - React-cxxreact (= 0.83.9) + - React-jsi (= 0.83.9) + - React-logger (= 0.83.9) + - React-perflogger (= 0.83.9) - SocketRocket - - ReactCommon/turbomodule/core (0.83.4): + - ReactCommon/turbomodule/core (0.83.9): - boost - DoubleConversion - fast_float @@ -2720,14 +2772,14 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.83.4) - - React-cxxreact (= 0.83.4) - - React-debug (= 0.83.4) - - React-featureflags (= 0.83.4) - - React-jsi (= 0.83.4) - - React-logger (= 0.83.4) - - React-perflogger (= 0.83.4) - - React-utils (= 0.83.4) + - React-callinvoker (= 0.83.9) + - React-cxxreact (= 0.83.9) + - React-debug (= 0.83.9) + - React-featureflags (= 0.83.9) + - React-jsi (= 0.83.9) + - React-logger (= 0.83.9) + - React-perflogger (= 0.83.9) + - React-utils (= 0.83.9) - SocketRocket - ReactNativeAutoPlay (0.2.2): - boost @@ -3262,9 +3314,9 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - SDWebImage (5.21.5): - - SDWebImage/Core (= 5.21.5) - - SDWebImage/Core (5.21.5) + - SDWebImage (5.21.7): + - SDWebImage/Core (= 5.21.7) + - SDWebImage/Core (5.21.7) - SDWebImageAVIFCoder (0.11.1): - libavif/core (>= 0.11.0) - SDWebImage (~> 5.10) @@ -3327,6 +3379,7 @@ DEPENDENCIES: - React-logger (from `../node_modules/react-native/ReactCommon/logger`) - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`) - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`) + - React-mutationobservernativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/mutationobserver`) - react-native-accessibility-settings (from `../node_modules/react-native-accessibility-settings`) - "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)" - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) @@ -3489,6 +3542,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon" React-microtasksnativemodule: :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks" + React-mutationobservernativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/mutationobserver" react-native-accessibility-settings: :path: "../node_modules/react-native-accessibility-settings" react-native-netinfo: @@ -3600,91 +3655,92 @@ SPEC CHECKSUMS: boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90 DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6 - FBLazyVector: 82d1d7996af4c5850242966eb81e73f9a6dfab1e - fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd + FBLazyVector: 3bcb3055086e5d90a12f0fe1668e79f6eceabc17 + fmt: 530618a01105dae0fa3a2f27c81ae11fa8f67eac glog: 5683914934d5b6e4240e497e0f4a3b42d1854183 - hermes-engine: 72b03519b29fb69bb27355cd4aca96eeb357cf6b + hermes-engine: b7ab574f3461ac362e91cb5e060cc2568a901f68 libavif: 84bbb62fb232c3018d6f1bab79beea87e35de7b7 libdav1d: 23581a4d8ec811ff171ed5e2e05cd27bad64c39f libwebp: 1786c9f4ff8a279e4dac1e8f385004d5fc253009 NitroModules: 1ef0796714251dbdaea49af187e291d8b6a7c5ea op-sqlite: ab292d8057b994f220b8c61f2683f5ff9286958e - RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669 - RCTDeprecation: 9da1d0cf93db23ca8b41e8efe9ae558fd9c0077f - RCTRequired: 92a63c7041031a131fa5206eb082d53f95729b79 - RCTSwiftUI: 395b65655229fa2006415207adcfcb6e35dc78ed - RCTSwiftUIWrapper: 91351441a592e07e09a2f94d2cbdf088fde7e2e1 - RCTTypeSafety: 091ec3b2994c00939652cbe91cfa9ee8a4ae75b5 - React: 3e14066ac707b3e369d09e2e923d8bee7f8c33ff + RCT-Folly: b29feb752b08042c62badaef7d453f3bb5e6ae23 + RCTDeprecation: c7d33f6bc08dbb8be7dfa70d219bfb034480a406 + RCTRequired: 42b13c9504609bae9a9f65673a6b4fcbd8d07bd1 + RCTSwiftUI: cef2010e1e5e699600b2064d3aa702e53c35816c + RCTSwiftUIWrapper: 18f0f0601b556e27593928c36697d5f651db760f + RCTTypeSafety: c5fd6a8092bee25eaa31d4cca03794e902b5fdfd + React: 6c36d83b2afecc1d45ec2a637158750edad20d87 react-airplay: 7cfb97ebe4ee2e81a3674d5585fa3915b2491494 - React-callinvoker: 2d95e8e26fbab01f06fbf006d2c370f834a3537b - React-Core: 0e73cf940736e6d32683d1b9e427ca9e92f96e5a - React-CoreModules: a252c33b178381722498afe5fa475bb110cc2943 - React-cxxreact: 271c58e22ece5be60e9a6ee7d3d40474028833fc - React-debug: 0081691903fcdbaa533500f83d358f1f3dbf6052 - React-defaultsnativemodule: f7e7dafd3f5ebd8733ef0bb2f9b61bb0415136f6 - React-domnativemodule: 77e61307cd9ba1e2fa0f480d70db9bb8f1a79d52 - React-Fabric: 8b4d1e26350ff7eaae4ee81a90e8c936123e2018 - React-FabricComponents: 4e8a2981969664f6655e2532e52d225881c8929c - React-FabricImage: f57463e90686da3ba74339091e327bd99816175b - React-featureflags: be8c8414da416342a8cedb0a6b7512e7973f85ac - React-featureflagsnativemodule: d5b573eee59a8de006a948d3766b6a38f6d085b8 - React-graphics: 774bd8afdf9d8ef70faecddbffb53dce2ea7e5b5 - React-hermes: 26feaea19d95e73a794d6f84cfcbce63f85cb9ec - React-idlecallbacksnativemodule: 6ec2446be4a579d5aaed1af31519b679fc076329 - React-ImageManager: 1de64915c16b058d9e635c98cf5d786454ca48cf - React-intersectionobservernativemodule: 3e91ec7069afe60d5dace2e2960f7fd7abeb2f64 - React-jserrorhandler: 458ca75c0df7c8dd046a3c74c0dec719fd0aa863 - React-jsi: 8442310fcae4f17ed2c2df00cc8a53fb479bef1b - React-jsiexecutor: e73fa2e25be645f8f98f00893adcf24e449de8ce - React-jsinspector: 5f756f86c8263f3e0e462f4b12b8da3b677686a4 - React-jsinspectorcdp: d6bcfdb732d99f6240e3ed6b82da58f7391a4ce2 - React-jsinspectornetwork: 9e2a9df177614e7e4a058c37ae2d7cefe59a7d8d - React-jsinspectortracing: 106ef2423c9c90c88d01f7e9b86cc86668d06bb4 - React-jsitooling: 5c7a6e98c27452fa0043c112ae53a7b499d08d30 - React-jsitracing: d68eea24f3feea58726ae44fab02d571b9011f36 - React-logger: 993e4b9793768764e0fdd379ad1d6582f7905463 - React-Mapbuffer: 3a5f700ed673820ab4b1b35ba0cf8476400bc4c5 - React-microtasksnativemodule: 094677e625f12276a8f871844a5ee6a945a90221 + React-callinvoker: 813372c3165324939d57b849f2db0c99390b9aac + React-Core: b2a189a7e16fc88a768908152201f14379708ac0 + React-CoreModules: 7ff1464d8c75a63c4028571217e4f4d01b008919 + React-cxxreact: 06aed26685cbd29a55d1648a14f13491549cea9d + React-debug: eeaaa885aed6766643a249e186cb55910847f32d + React-defaultsnativemodule: 137369659d426f45688b7467775a6dc153abf127 + React-domnativemodule: 5c80b3bd89b4d14d1e57f2c2ac2a8e7a3d2a7dcc + React-Fabric: be18c20ebb56a507b6f04dd701fdc79ab7111763 + React-FabricComponents: 648428bb2ea49ee4db5796d9670994280c93e447 + React-FabricImage: 44232bb0498164e155ffb33621acc1851146d964 + React-featureflags: 840962f151a33d44a93f289d59bcffd166fa8e39 + React-featureflagsnativemodule: 2dac13fa41ee8eff0c45e2a336f5c98291ef9a96 + React-graphics: 8f80ab9311f947fade8d34ddd3cff8870441d000 + React-hermes: f241babdb4e8595933d856ab78f5d5d49218cac0 + React-idlecallbacksnativemodule: 2d0687f8820e232f4686109721ec066c169f9232 + React-ImageManager: cda1751f63b04e8a7df4cb65894ed34c6043fb2e + React-intersectionobservernativemodule: 34d7b434d4df27a113158bed316a4e0dff658d2b + React-jserrorhandler: e8ad51be4b0e29eadfdd7854675cf5087a4ea5f9 + React-jsi: ee1dbc3b2635ce07783e6638656c0b472573bb48 + React-jsiexecutor: 05fe7918c713a64a39474915f725fe0e61d65309 + React-jsinspector: 57db0ee88c1471b7310d3feb5c3c92cec6db4702 + React-jsinspectorcdp: 757575b5a8151ca2f253f21e73ef371bc92482a8 + React-jsinspectornetwork: 443fb13ccad11b861d5810f572e6eceb7dd98e05 + React-jsinspectortracing: 59c88018cbc7855bb26c49d8b3bb5ce0d7a6c00a + React-jsitooling: abc1f89dd35866995bcb873c60a15e8af82d0d96 + React-jsitracing: e8993f012752e5f7a5e749d9348095c30091bb27 + React-logger: cf2064f903777a5bdca904c4265f17396d4d8568 + React-Mapbuffer: c546207c9ac05ba26b90ba26f1288f84c8867f2e + React-microtasksnativemodule: ad2becc1076529952b6db26d0a1476ec489b9067 + React-mutationobservernativemodule: 867e9c215f21b4308fa98473f3c38585b5897e44 react-native-accessibility-settings: 8803c0bd7e1724269bf0ac5064be51773c05df9f react-native-netinfo: 57447b5a45c98808f8eae292cf641f3d91d13830 react-native-safe-area-context: befb5404eb8a16fdc07fa2bebab3568ecabcbb8a react-native-skia: b60d0b9d9aea330baef956b7f015d0af2b42076d react-native-track-player: dd56f9948e03756a217c75e0a61aa04aab65b5a1 react-native-webview: 8407aaaf6b539b1e38b72fabb55d6885de03beaf - React-NativeModulesApple: 29290351acc118784e158aa7b23c42719dc57617 - React-networking: d01f94f15d1a6fce689a8c57d2397a5a40b0b5aa - React-oscompat: 854967d380ee2921c848790cdb942b42d22017d8 - React-perflogger: bb302310d56078ced79111225a74815465b5c9f9 - React-performancecdpmetrics: 7e14712c518d27e6f211040093f33d34eccc0361 - React-performancetimeline: 5a370c3e1370a80947806e67796683bc27477200 - React-RCTActionSheet: 1182e251a2f93857ab7a4a13732c881449cc225f - React-RCTAnimation: 7fff267277af4af4abcec3b7d8dc4e3956aaf414 - React-RCTAppDelegate: 5e0010863f9a433d724f0811c9a4518a96cec535 - React-RCTBlob: 44ada012ff2dfa9a88f979d9631808138356b1f4 - React-RCTFabric: 23df68c60fd3af1a7dc893ab68f76d353fe51568 - React-RCTFBReactNativeSpec: 7f16922a8ce55cfb31a0ff161e212cd655cf68ee - React-RCTImage: e02f7772bbd165ef13c0051de1b9da6baefd11e6 - React-RCTLinking: 68ffd8feb4f0ea6fe3f10a264568901e17a7575c - React-RCTNetwork: 2f99990cb2ada2f2409b83174a96e6b901d254f8 - React-RCTRuntime: cc1ea7dc30d1e69ef2e6728e16e66dce9b65fabb - React-RCTSettings: a0ccf26bdca389ee6f6d897bf208293f86234814 - React-RCTText: d24b35c913a17b68b6207b0211967587e5c64c81 - React-RCTVibration: 3ab7eb971e4fa0774a3e0a376f3ea14dc6c7f963 - React-rendererconsistency: 5a51c5d21f0131a9461c7a76809f96057c7f6a21 - React-renderercss: 9d27964853430a8823d448be4b1579f99714c8ed - React-rendererdebug: 1537ac6507182a3c9277922528e280b07181644f - React-RuntimeApple: 7a1f5c9fcfea8c7640e0c7e2893b30b2de117d3c - React-RuntimeCore: ac6333333f8cf86a3373ddc84611c3716ca8e1e9 - React-runtimeexecutor: 000669b14a58e1fe8a816e7057c6f24f58d514ad - React-RuntimeHermes: 2cfc0d3621dbe0674cce922e23aec31e02d3c809 - React-runtimescheduler: f232a0ed6911f641117933dd0ad4660b0cef5a04 - React-timing: 2b03ad9baf91c453e1ef28c37c8ec8bc1e8edc55 - React-utils: 2867547ccbc03b50de3ed04f1d9ca23efcf8651a - React-webperformancenativemodule: 39b4be54aa0174429654e84570dd7d4704da9def - ReactAppDependencyProvider: 0eb286cc274abb059ee601b862ebddac2e681d01 - ReactCodegen: 3d48510bcef445f6403c0004047d4d9cbb915435 - ReactCommon: 5901ef412ae35cc727b9584d4f7e3e1f7f17c251 + React-NativeModulesApple: 519f9f98375db6458a7220becd25db81b3860b76 + React-networking: 2318cba8288ec5df38e899feed3baaac0629b4bd + React-oscompat: 4524d8ccb12b7f07beb12e2ea9c5ea55b55d604b + React-perflogger: 2b2a2bc9173796cc58fece00d3df1c99b39c2b8e + React-performancecdpmetrics: 162db18cc31c25256d393383890cb0f3de27cf73 + React-performancetimeline: a3b28cf401e8cb2027fb282a697ea87d97cd320a + React-RCTActionSheet: e1c8afe045a25f3a8d73da52bb28e6186718e206 + React-RCTAnimation: 7681b2367405b53d4e91ac76b36bd8fb1ce50a53 + React-RCTAppDelegate: e8d05c439051bd6860638e59fc8fb81cf3ac0f9b + React-RCTBlob: fa0e5ab89883e4bf5eb05e534b68ce2951ca514b + React-RCTFabric: d505530c38fada112559a19e91d200a6b8381d4f + React-RCTFBReactNativeSpec: 2d7c44c5b4349957cec8c77bb5cd401d9348c4fc + React-RCTImage: 8d32ede0e9f07aa7a446a54e924f23b3347d2960 + React-RCTLinking: ef0c625de1ce2b78189cb65391888628b5d2d6ed + React-RCTNetwork: 5e6a3678c23c0b8c4e2b69e85551215f1fcfe2b2 + React-RCTRuntime: ec85cc9d0ca3bd98bfcc0674c59f011eacc96d91 + React-RCTSettings: c7f2c32bee82c3f4e757d779fff3c2bf47cc7e46 + React-RCTText: cc134029a95773223502a9aeac47300586426ca5 + React-RCTVibration: 9ed48065a50d4a4311aed5c17272061f2cae910b + React-rendererconsistency: 9262a6a4c4be861ffd7e3149c517bd4076a8851f + React-renderercss: 4840f91b676f4000cc704f9214f950df02be54f1 + React-rendererdebug: 613c8b53e6032d16c4c499d52bbd21c9df6873fa + React-RuntimeApple: d53d701e0ac401fa6caca87d22881559617e5a5a + React-RuntimeCore: 2232f165e559a6edf997a5b18e9669a63e997cba + React-runtimeexecutor: fbe7aa46f3c1233e903fa6758a1c8c372070c33b + React-RuntimeHermes: a5ada5beb920f09b3fb3fce491d8d3d132c6e677 + React-runtimescheduler: 81f357f73c68c93459b714b1f917e30a40f1a1ea + React-timing: 5ace10dca5f52437bb6d4212404898d9ab7df82f + React-utils: 29d70520468725a40da28decabd1c58dda7f6f90 + React-webperformancenativemodule: a5f9909a36ae47ea244e38efd25e479c01d39e14 + ReactAppDependencyProvider: 87593e9dfdba8dac1d7b2af1af05f0eff2a05684 + ReactCodegen: 3b7ccfbd7bdb7cf74024bf03a41cd41c7d3f35ca + ReactCommon: 5f2db7556b60816bdc5761a359539bacd2d0250d ReactNativeAutoPlay: c7130c09e5c07962d26fcee8dfa53ebc78a40eb4 ReactNativeBlur: 8f2f147c72a4cfc60f2524210cae44f701158a67 RNCAsyncStorage: 29f0230e1a25f36c20b05f65e2eb8958d6526e82 @@ -3693,20 +3749,20 @@ SPEC CHECKSUMS: RNFS: 89de7d7f4c0f6bafa05343c578f61118c8282ed8 RNGestureHandler: cd4be101cfa17ea6bbd438710caa02e286a84381 RNLocalize: 23e6689ec46c6cba49eb8cde959e30e49160a35b - RNReanimated: 18324d3313d6477e1d12836c20c3ee30afb5de30 + RNReanimated: 3dd5a96e19d49c835063bff6bf885406dddd1b64 RNScreens: 7f643ee0fd1407dc5085c7795460bd93da113b8f RNSentry: a4c81a5c5bcd58d765126726432348e60cd7183d RNSVG: 595abfa0f9ac26d56afcaaedf4e37a00f54cab71 - RNWorklets: a3184955a41f2be46898a937e2821469c8c8da42 - SDWebImage: e9c98383c7572d713c1a0d7dd2783b10599b9838 + RNWorklets: 0a4a35e74e01e54e169d795cb7b6a8ad2665d97e + SDWebImage: e9fc87c1aab89a8ab1bbd74eba378c6f53be8abf SDWebImageAVIFCoder: afe194a084e851f70228e4be35ef651df0fc5c57 SDWebImageSVGCoder: 15a300a97ec1c8ac958f009c02220ac0402e936c SDWebImageWebPCoder: 0e06e365080397465cc73a7a9b472d8a3bd0f377 Sentry: d587a8fe91ca13503ecd69a1905f3e8a0fcf61be SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 SwiftAudioEx: f6aa653770f3a0d3851edaf8d834a30aee4a7646 - Yoga: b669e79fa0f8d3f6f5e35372345f54b99e06b13c + Yoga: e6489bbfdab9b98f8d51993484d6bd40216b7834 PODFILE CHECKSUM: 6a682416f7f6211f886377fb2fc779f7cc934826 -COCOAPODS: 1.15.2 +COCOAPODS: 1.16.2 diff --git a/package.json b/package.json index 367ec33..4bf614d 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "p-queue": "^9.1.0", "react": "19.2.3", "react-airplay": "1.2.0", - "react-native": "^0.83.1", + "react-native": "^0.83.9", "react-native-accessibility-settings": "0.1.2", "react-native-collapsible": "1.6.2", "react-native-dotenv": "3.4.11", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8000f4a..56a0986 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -21,55 +21,55 @@ importers: dependencies: '@d11/react-native-fast-image': specifier: 8.13.0 - version: 8.13.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 8.13.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@iternio/react-native-auto-play': specifier: 0.2.2 - version: 0.2.2(patch_hash=2ab8be0081e20edc9203f48ede10d78ffcdb6eb30798e0d0b92d8d29b19777fc)(react-native-nitro-modules@0.33.9(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 0.2.2(patch_hash=2ab8be0081e20edc9203f48ede10d78ffcdb6eb30798e0d0b92d8d29b19777fc)(react-native-nitro-modules@0.33.9(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@op-engineering/op-sqlite': specifier: ^15.2.5 - version: 15.2.5(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 15.2.5(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@react-native-async-storage/async-storage': specifier: ^2.2.0 - version: 2.2.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) + version: 2.2.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) '@react-native-community/datetimepicker': specifier: ^8.6.0 - version: 8.6.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 8.6.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@react-native-community/netinfo': specifier: ^11.4.1 - version: 11.5.2(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 11.5.2(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@react-navigation/bottom-tabs': specifier: 7.10.1 - version: 7.10.1(@react-navigation/native@7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-screens@4.24.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 7.10.1(@react-navigation/native@7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-screens@4.24.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@react-navigation/elements': specifier: 2.9.5 - version: 2.9.5(@react-navigation/native@7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 2.9.5(@react-navigation/native@7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@react-navigation/native': specifier: ^7.1.28 - version: 7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@react-navigation/native-stack': specifier: 7.10.1 - version: 7.10.1(@react-navigation/native@7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-screens@4.24.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 7.10.1(@react-navigation/native@7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-screens@4.24.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@react-navigation/stack': specifier: ^7.6.16 - version: 7.8.4(743e3df6ff9526c2ce3f9ac4d6463609) + version: 7.8.4(020e999e91feafc04bcc11693a3b6e1f) '@reduxjs/toolkit': specifier: 2.11.2 version: 2.11.2(react-redux@9.2.0(@types/react@19.2.9)(react@19.2.3)(redux@5.0.1))(react@19.2.3) '@sbaiahmed1/react-native-blur': specifier: ^4.5.3 - version: 4.5.7(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 4.5.7(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@shopify/flash-list': specifier: 2.2.0 - version: 2.2.0(@babel/runtime@7.28.6)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 2.2.0(@babel/runtime@7.28.6)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@shopify/react-native-skia': specifier: 2.4.14 - version: 2.4.14(react-native-reanimated@4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 2.4.14(react-native-reanimated@4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) date-fns: specifier: 4.1.0 version: 4.1.0 drizzle-orm: specifier: 1.0.0-beta.16-ea816b6 - version: 1.0.0-beta.16-ea816b6(patch_hash=0d4b2ce2163e4ccab257f772eeb8a6e395266b70ea6c6ce549bf47a1adee2a34)(@op-engineering/op-sqlite@15.2.5(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(@sinclair/typebox@0.34.48)(@types/mssql@9.1.9(@azure/core-client@1.10.1))(mssql@11.0.1(@azure/core-client@1.10.1))(zod@4.3.6) + version: 1.0.0-beta.16-ea816b6(patch_hash=0d4b2ce2163e4ccab257f772eeb8a6e395266b70ea6c6ce549bf47a1adee2a34)(@op-engineering/op-sqlite@15.2.5(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(@sinclair/typebox@0.34.48)(@types/mssql@9.1.9(@azure/core-client@1.10.1))(mssql@11.0.1(@azure/core-client@1.10.1))(zod@4.3.6) events: specifier: 3.3.0 version: 3.3.0 @@ -93,58 +93,58 @@ importers: version: 19.2.3 react-airplay: specifier: 1.2.0 - version: 1.2.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 1.2.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native: - specifier: ^0.83.1 - version: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + specifier: ^0.83.9 + version: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) react-native-accessibility-settings: specifier: 0.1.2 - version: 0.1.2(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 0.1.2(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-collapsible: specifier: 1.6.2 - version: 1.6.2(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 1.6.2(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-dotenv: specifier: 3.4.11 version: 3.4.11(@babel/runtime@7.28.6) react-native-fs: specifier: ^2.20.0 - version: 2.20.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) + version: 2.20.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) react-native-gesture-handler: specifier: ^2.30.0 - version: 2.30.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 2.30.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-localize: specifier: 3.6.1 - version: 3.6.1(@expo/config-plugins@10.1.2)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 3.6.1(@expo/config-plugins@10.1.2)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-modal-datetime-picker: specifier: 18.0.0 - version: 18.0.0(@react-native-community/datetimepicker@8.6.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) + version: 18.0.0(@react-native-community/datetimepicker@8.6.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) react-native-nitro-modules: specifier: ^0.33.2 - version: 0.33.9(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 0.33.9(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-reanimated: specifier: ^4.2.1 - version: 4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-safe-area-context: specifier: ^5.6.2 - version: 5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-screens: specifier: ^4.20.0 - version: 4.24.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 4.24.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-shadow-2: specifier: 7.1.2 - version: 7.1.2(react-native-svg@15.15.3(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) + version: 7.1.2(react-native-svg@15.15.3(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) react-native-svg: specifier: ^15.15.1 - version: 15.15.3(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 15.15.3(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-track-player: specifier: 4.1.2 - version: 4.1.2(patch_hash=e7b3a1d9dfe94a2a6a4067d693dff8c4d67147057264361b27db20fd497ef184)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 4.1.2(patch_hash=e7b3a1d9dfe94a2a6a4067d693dff8c4d67147057264361b27db20fd497ef184)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-webview: specifier: ^13.16.0 - version: 13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-worklets: specifier: ^0.7.2 - version: 0.7.4(@babel/core@7.28.6)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 0.7.4(@babel/core@7.28.6)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-redux: specifier: 9.2.0 version: 9.2.0(@types/react@19.2.9)(react@19.2.3)(redux@5.0.1) @@ -187,7 +187,7 @@ importers: version: 3.1.0 '@sentry/react-native': specifier: 7.10.0 - version: 7.10.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + version: 7.10.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@types/events': specifier: ^3.0.3 version: 3.0.3 @@ -235,7 +235,7 @@ importers: version: 0.77.0(@babel/core@7.28.6) react-native-svg-transformer: specifier: 1.5.2 - version: 1.5.2(react-native-svg@15.15.3(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(typescript@5.9.3) + version: 1.5.2(react-native-svg@15.15.3(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(typescript@5.9.3) tslib: specifier: 2.8.1 version: 2.8.1 @@ -253,8 +253,8 @@ packages: graphql: optional: true - '@azure-rest/core-client@2.5.1': - resolution: {integrity: sha512-EHaOXW0RYDKS5CFffnixdyRPak5ytiCtU7uXDcP/uiY+A6jFRwNGzzJBiznkCzvi5EYpY+YWinieqHb0oY916A==} + '@azure-rest/core-client@2.6.0': + resolution: {integrity: sha512-iuFKDm8XPzNxPfRjhyU5/xKZmcRDzSuEghXDHHk4MjBV/wFL34GmYVBZnn9wmuoLBeS1qAw9ceMdaeJBPcB1QQ==} engines: {node: '>=20.0.0'} '@azure/abort-controller@2.1.2': @@ -269,8 +269,8 @@ packages: resolution: {integrity: sha512-Nh5PhEOeY6PrnxNPsEHRr9eimxLwgLlpmguQaHKBinFYA/RU9+kOYVOQqOrTsCL+KSxrLLl1gD8Dk5BFW/7l/w==} engines: {node: '>=20.0.0'} - '@azure/core-http-compat@2.3.2': - resolution: {integrity: sha512-Tf6ltdKzOJEgxZeWLCjMxrxbodB/ZeCbzzA1A2qHbhzAjzjHoBVSUeSl/baT/oHAxhc4qdqVaDKnc2+iE932gw==} + '@azure/core-http-compat@2.4.0': + resolution: {integrity: sha512-f1P96IB399YiN2ARYHP7EpZi3Bf3wH4SN2lGzrw7JVwm7bbsVYtf2iKSBwTywD2P62NOPZGHFSZi+6jjb75JuA==} engines: {node: '>=20.0.0'} peerDependencies: '@azure/core-client': ^1.10.0 @@ -296,13 +296,13 @@ packages: resolution: {integrity: sha512-XPArKLzsvl0Hf0CaGyKHUyVgF7oDnhKoP85Xv6M4StF/1AhfORhZudHtOyf2s+FcbuQ9dPRAjB8J2KvRRMUK2A==} engines: {node: '>=20.0.0'} - '@azure/identity@4.13.0': - resolution: {integrity: sha512-uWC0fssc+hs1TGGVkkghiaFkkS7NkTxfnCH+Hdg+yTehTpMcehpok4PgUKKdyCH+9ldu6FhiHRv84Ntqj1vVcw==} + '@azure/identity@4.13.1': + resolution: {integrity: sha512-5C/2WD5Vb1lHnZS16dNQRPMjN6oV/Upba+C9nBIs15PmOi6A3ZGs4Lr2u60zw4S04gi+u3cEXiqTVP7M4Pz3kw==} engines: {node: '>=20.0.0'} - '@azure/keyvault-common@2.0.0': - resolution: {integrity: sha512-wRLVaroQtOqfg60cxkzUkGKrKMsCP6uYXAOomOIysSMyt1/YM0eUn9LqieAWM8DLcU4+07Fio2YGpPeqUbpP9w==} - engines: {node: '>=18.0.0'} + '@azure/keyvault-common@2.1.0': + resolution: {integrity: sha512-aCDidWuKY06LWQ4x7/8TIXK6iRqTaRWRL3t7T+LC+j1b07HtoIsOxP/tU90G4jCSBn5TAyUTCtA4MS/y5Hudaw==} + engines: {node: '>=20.0.0'} '@azure/keyvault-keys@4.10.0': resolution: {integrity: sha512-eDT7iXoBTRZ2n3fLiftuGJFD+yjkiB1GNqzU2KbY1TLYeXeSPVTVgn2eJ5vmRTZ11978jy2Kg2wI7xa9Tyr8ag==} @@ -312,17 +312,17 @@ packages: resolution: {integrity: sha512-fCqPIfOcLE+CGqGPd66c8bZpwAji98tZ4JI9i/mlTNTlsIWslCfpg48s/ypyLxZTump5sypjrKn2/kY7q8oAbA==} engines: {node: '>=20.0.0'} - '@azure/msal-browser@4.29.0': - resolution: {integrity: sha512-/f3eHkSNUTl6DLQHm+bKecjBKcRQxbd/XLx8lvSYp8Nl/HRyPuIPOijt9Dt0sH50/SxOwQ62RnFCmFlGK+bR/w==} + '@azure/msal-browser@5.9.0': + resolution: {integrity: sha512-CzE+4PefDSJWj26zU7G1bKchlGRRHMBFreG4tAlGuzyI8hAPiYGobaJvZBgZBf6L63iphX7VH+ityL8VgEQz9Q==} engines: {node: '>=0.8.0'} - '@azure/msal-common@15.15.0': - resolution: {integrity: sha512-/n+bN0AKlVa+AOcETkJSKj38+bvFs78BaP4rNtv3MJCmPH0YrHiskMRe74OhyZ5DZjGISlFyxqvf9/4QVEi2tw==} + '@azure/msal-common@16.5.2': + resolution: {integrity: sha512-GkDEL6TYo3HgT3UuqakdgE9PZfc1hMki6+Hwgy1uddb/EauvAKfu85vVhuofRSo22D1xTnWt8Ucwfg4vSCVwvA==} engines: {node: '>=0.8.0'} - '@azure/msal-node@3.8.8': - resolution: {integrity: sha512-+f1VrJH1iI517t4zgmuhqORja0bL6LDQXfBqkjuMmfTYXTQQnh1EvwwxO3UbKLT05N0obF72SRHFrC1RBDv5Gg==} - engines: {node: '>=16'} + '@azure/msal-node@5.1.5': + resolution: {integrity: sha512-ObTeMoNPmq19X3z40et9Xvs4ZoWVeJg43PZMRLG5iwVL+2nCtAerG3YTDItqPp1CfXNwmCXBbg8jn1DOx65c3g==} + engines: {node: '>=20'} '@babel/code-frame@7.10.4': resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==} @@ -387,8 +387,8 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - '@babel/helper-define-polyfill-provider@0.6.7': - resolution: {integrity: sha512-6Fqi8MtQ/PweQ9xvux65emkLQ83uB+qAVtfHkC9UodyHMIZdxNI01HjLCLUtybElp2KY2XNE0nOgyP1E1vXw9w==} + '@babel/helper-define-polyfill-provider@0.6.8': + resolution: {integrity: sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 @@ -472,6 +472,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.29.2': + resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5': resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==} engines: {node: '>=6.9.0'} @@ -1387,8 +1392,8 @@ packages: '@expo/image-utils@0.7.6': resolution: {integrity: sha512-GKnMqC79+mo/1AFrmAcUcGfbsXXTRqOMNS1umebuevl3aaw+ztsYEFEiuNhHZW7PQ3Xs3URNT513ZxKhznDscw==} - '@expo/json-file@10.0.12': - resolution: {integrity: sha512-inbDycp1rMAelAofg7h/mMzIe+Owx6F7pur3XdQ3EPTy00tme+4P6FWgHKUcjN8dBSrnbRNpSyh5/shzHyVCyQ==} + '@expo/json-file@10.0.13': + resolution: {integrity: sha512-pX/XjQn7tgNw6zuuV2ikmegmwe/S7uiwhrs2wXrANMkq7ozrA+JcZwgW9Q/8WZgciBzfAhNp5hnackHcrmapQA==} '@expo/json-file@9.1.5': resolution: {integrity: sha512-prWBhLUlmcQtvN6Y7BpW2k9zXGd3ySa3R6rAguMJkp1z22nunLN64KYTUWfijFlprFoxm9r2VNnGkcbndAlgKA==} @@ -1400,8 +1405,8 @@ packages: resolution: {integrity: sha512-/XP7PSYF2hzOZzqfjgkoWtllyeTN8dW3aM4P6YgKcmmPikKL5FdoyQhti4eh6RK5a5VrUXJTOlTNIpIHsfB5Iw==} engines: {node: '>=12'} - '@expo/package-manager@1.10.3': - resolution: {integrity: sha512-ZuXiK/9fCrIuLjPSe1VYmfp0Sa85kCMwd8QQpgyi5ufppYKRtLBg14QOgUqj8ZMbJTxE0xqzd0XR7kOs3vAK9A==} + '@expo/package-manager@1.10.4': + resolution: {integrity: sha512-y9Mr4Kmpk4abAVZrNNPCdzOZr8nLLyi18p1SXr0RCVA8IfzqZX/eY4H+50a0HTmXqIsPZrQdcdb4I3ekMS9GvQ==} '@expo/plist@0.3.5': resolution: {integrity: sha512-9RYVU1iGyCJ7vWfg3e7c/NVyMFs8wbl+dMWZphtFtsqyN9zppGREU3ctlD3i8KUE0sCUTVnLjCWr+VeUIDep2g==} @@ -1429,8 +1434,8 @@ packages: '@expo/ws-tunnel@1.0.6': resolution: {integrity: sha512-nDRbLmSrJar7abvUjp3smDwH8HcbZcoOEa5jVPUv9/9CajgmWw20JNRwTuBRzWIWIkEJDkz20GoNA+tSwUqk0Q==} - '@expo/xcpretty@4.4.1': - resolution: {integrity: sha512-KZNxZvnGCtiM2aYYZ6Wz0Ix5r47dAvpNLApFtZWnSoERzAdOMzVBOPysBoM0JlF6FKWZ8GPqgn6qt3dV/8Zlpg==} + '@expo/xcpretty@4.4.3': + resolution: {integrity: sha512-wC562eD3gS6vO2tWHToFhlFnmHKfKHgF1oyvojeSkLK/ZYop1bMU+7cOMiF9Sq70CzcsLy/EMRy/uRc76QmNRw==} hasBin: true '@hapi/hoek@9.3.0': @@ -1686,8 +1691,8 @@ packages: react: '*' react-native: '>=0.59' - '@react-native/assets-registry@0.83.4': - resolution: {integrity: sha512-aqKtpbJDSQeSX/Dwv0yMe1/Rd2QfXi12lnyZDXNn/OEKz59u6+LuPBVgO/9CRyclHmdlvwg8c7PJ9eX2ZMnjWg==} + '@react-native/assets-registry@0.83.9': + resolution: {integrity: sha512-9MrShFZWvHybyjN8nj/rKW53hLpPOXMdEF8FOdDXRNu8oQ396BLknCMFeSCFhAHiCDVqQfah5iIV8S1wqXnxFA==} engines: {node: '>= 20.19.4'} '@react-native/babel-plugin-codegen@0.79.2': @@ -1722,8 +1727,14 @@ packages: peerDependencies: '@babel/core': '*' - '@react-native/community-cli-plugin@0.83.4': - resolution: {integrity: sha512-8os0weQEnjUhWy7Db881+JKRwNHVGM40VtTRvltAyA/YYkrGg4kPCqiTybMxQDEcF3rnviuxHyI+ITiglfmgmQ==} + '@react-native/codegen@0.83.9': + resolution: {integrity: sha512-fUliGYOD1D/hS4pZMK+YyGb01DxQQNUTjL+i2iL6elt2AncXoYMWNxLT/AMT38jImxI4FbKyH4JO+mL2+t5yuA==} + engines: {node: '>= 20.19.4'} + peerDependencies: + '@babel/core': '*' + + '@react-native/community-cli-plugin@0.83.9': + resolution: {integrity: sha512-i8WhXYSEIB7kq99n6ZROI1lCckVEwz+Ti/oAT34UUU494MuSvZfd0UWEQ5cFpglPpIKq11KETPwmznHYF6xURg==} engines: {node: '>= 20.19.4'} peerDependencies: '@react-native-community/cli': '*' @@ -1738,20 +1749,20 @@ packages: resolution: {integrity: sha512-cGmC7X6kju76DopSBNc+PRAEetbd7TWF9J9o84hOp/xL3ahxR2kuxJy0oJX8Eg8oehhGGEXTuMKHzNa3rDBeSg==} engines: {node: '>=18'} - '@react-native/debugger-frontend@0.83.4': - resolution: {integrity: sha512-mCE2s/S7SEjax3gZb6LFAraAI3x13gRVWJWqT0HIm71e4ITObENNTDuMw4mvZ/wr4Gz2wv4FcBH5/Nla9LXOcg==} + '@react-native/debugger-frontend@0.83.9': + resolution: {integrity: sha512-LEOJrHvVWnjHC+emTyybeHkrInrJBnchk3VEhW5qGMWhW3vSM421CrZSCKAvzy+fDg/viufwBfIJvwTdk066CA==} engines: {node: '>= 20.19.4'} - '@react-native/debugger-shell@0.83.4': - resolution: {integrity: sha512-FtAnrvXqy1xeZ+onwilvxEeeBsvBlhtfrHVIC2R/BOJAK9TbKEtFfjio0wsn3DQIm+UZq48DSa+p9jJZ2aJUww==} + '@react-native/debugger-shell@0.83.9': + resolution: {integrity: sha512-vAqDG7+3HOz4VOSfccSNe06C1+evcp2AbMjoYOmOyeJtt5dCdmGUp0FICsnU7iuctsNXWnHqyhks9M0wn7zEzA==} engines: {node: '>= 20.19.4'} '@react-native/dev-middleware@0.79.2': resolution: {integrity: sha512-9q4CpkklsAs1L0Bw8XYCoqqyBSrfRALGEw4/r0EkR38Y/6fVfNfdsjSns0pTLO6h0VpxswK34L/hm4uK3MoLHw==} engines: {node: '>=18'} - '@react-native/dev-middleware@0.83.4': - resolution: {integrity: sha512-3s9nXZc/kj986nI2RPqxiIJeTS3o7pvZDxbHu7GE9WVIGX9YucA1l/tEiXd7BAm3TBFOfefDOT08xD46wH+R3Q==} + '@react-native/dev-middleware@0.83.9': + resolution: {integrity: sha512-4rW8KGkfqmZ5x1CTr+GrPBTdLG58UNkkJNQ8Dd9xdiVrZ/94sYKHm4HOo+UKTyOP0SNbZpZejDrf/2JNiqNL4Q==} engines: {node: '>= 20.19.4'} '@react-native/eslint-config@0.83.4': @@ -1765,14 +1776,18 @@ packages: resolution: {integrity: sha512-2wagFcwYy6iISsWuWXhwomoXRqMofwwj4XmjhPsNsF91OHBUNkxGANDfz7aIJyjmEvEKQlYR3SEQ+TRlRqyoMg==} engines: {node: '>= 20.19.4'} - '@react-native/gradle-plugin@0.83.4': - resolution: {integrity: sha512-AhaSWw2k3eMKqZ21IUdM7rpyTYOpAfsBbIIiom1QQii3QccX0uW2AWTcRhfuWRxqr2faGFaOBYedWl2fzp5hgw==} + '@react-native/gradle-plugin@0.83.9': + resolution: {integrity: sha512-v+iag7ft+fBRP54GthOiR70qrp0azgvW8PhNg0KFYw52xin09LoC0rk96CY+Hj5M1oGoQovrk0bdji7ipH2pGg==} engines: {node: '>= 20.19.4'} '@react-native/js-polyfills@0.83.4': resolution: {integrity: sha512-wYUdv0rt4MjhKhQloO1AnGDXhZQOFZHDxm86dEtEA0WcsCdVrFdRULFM+rKUC/QQtJW2rS6WBqtBusgtrsDADg==} engines: {node: '>= 20.19.4'} + '@react-native/js-polyfills@0.83.9': + resolution: {integrity: sha512-6+OdNC3GSgNI3L31zo730AxdI3eXjwD74k0M11gpvXKTOX/NQuXe3On+K4yLFokD2BFr8bL6XaqxCniCUQ3Q+Q==} + engines: {node: '>= 20.19.4'} + '@react-native/metro-babel-transformer@0.83.4': resolution: {integrity: sha512-gbqn9OmTou3TykLIbZHC2lw/tjdIPr/6KH8Uz4TAPf5f0yZuWoYtQrJ/UBJ+KVbJC5/A2vN8BXkwWXVz90hJIw==} engines: {node: '>= 20.19.4'} @@ -1786,14 +1801,14 @@ packages: '@react-native/normalize-colors@0.79.6': resolution: {integrity: sha512-0v2/ruY7eeKun4BeKu+GcfO+SHBdl0LJn4ZFzTzjHdWES0Cn+ONqKljYaIv8p9MV2Hx/kcdEvbY4lWI34jC/mQ==} - '@react-native/normalize-colors@0.83.4': - resolution: {integrity: sha512-9ezxaHjxqTkTOLg62SGg7YhFaE+fxa/jlrWP0nwf7eGFHlGOiTAaRR2KUfiN3K05e+EMbEhgcH/c7bgaXeGyJw==} + '@react-native/normalize-colors@0.83.9': + resolution: {integrity: sha512-GSXSvH+siDF2z+XtoF3Kk6zRFMWhGIpfq9nalBd4DSV97g5yNRQ5Htm2fpq7vBYNN+hVgvGZf7rRqnjn8bvfHg==} '@react-native/typescript-config@0.83.1': resolution: {integrity: sha512-y83qd7fmlZG+EJoOyKEmAXifdjN1csNhcfpyxDvgaIUNO/pw2ws3MV/wp+ERQ8F6JIuAu1zcfyCy1/pEA7tC9g==} - '@react-native/virtualized-lists@0.83.4': - resolution: {integrity: sha512-vNF/8kokMW8JEjG4n+j7veLTjHRRABlt4CaTS6+wtqzvWxCJHNIC8fhCqrDPn9fIn8sNePd8DyiFVX5L9TBBRA==} + '@react-native/virtualized-lists@0.83.9': + resolution: {integrity: sha512-fZ84faVUANrBU7GfL1wPSkGkn5cnCPVXxAwutKit1S5i8hlfwCnt0gE9Fu/0fpAIeuGxHVed00w2xxDVXyLxKQ==} engines: {node: '>= 20.19.4'} peerDependencies: '@types/react': ^19.2.0 @@ -2209,6 +2224,9 @@ packages: '@types/node@25.3.5': resolution: {integrity: sha512-oX8xrhvpiyRCQkG1MFchB09f+cXftgIXb3a7UUa4Y3wpmZPw5tyZGTLWhlESOLq1Rq6oDlc8npVU2/9xiCuXMA==} + '@types/node@25.6.0': + resolution: {integrity: sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==} + '@types/react@19.2.9': resolution: {integrity: sha512-Lpo8kgb/igvMIPeNV2rsYKTgaORYdO1XGVZ4Qz3akwOj0ySGYMPlQWa8BaLn0G63D1aSaAQ5ldR06wCpChQCjA==} @@ -2326,8 +2344,8 @@ packages: resolution: {integrity: sha512-VFlhGSl4opC0bprJiItPQ1RfUhGDIBokcPwaFH4yiBCaNPeld/9VeXbiPO1cLyorQi1G1vL+ecBk1x8o1axORA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typespec/ts-http-runtime@0.3.4': - resolution: {integrity: sha512-CI0NhTrz4EBaa0U+HaaUZrJhPoso8sG7ZFya8uQoBA57fjzrjRSv87ekCjLZOFExN+gXE/z0xuN2QfH4H2HrLQ==} + '@typespec/ts-http-runtime@0.3.5': + resolution: {integrity: sha512-yURCknZhvywvQItHMMmFSo+fq5arCUIyz/CVk7jD89MSai7dkaX8ufjCWp3NttLojoTVbcE72ri+be/TnEbMHw==} engines: {node: '>=20.0.0'} '@ungap/structured-clone@1.3.0': @@ -2347,10 +2365,14 @@ packages: '@webgpu/types@0.1.21': resolution: {integrity: sha512-pUrWq3V5PiSGFLeLxoGqReTZmiiXwY3jRkIG5sLLKjyqNxrwm/04b4nw7LSmGWJcKk59XOM/YRTUwOzo4MMlow==} - '@xmldom/xmldom@0.8.11': - resolution: {integrity: sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==} + '@xmldom/xmldom@0.8.13': + resolution: {integrity: sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==} engines: {node: '>=10.0.0'} + '@xmldom/xmldom@0.9.10': + resolution: {integrity: sha512-A9gOqLdi6cV4ibazAjcQufGj0B1y/vDqYrcuP6d/6x8P27gRS8643Dj9o1dEKtB6O7fwxb2FgBmJS2mX7gpvdw==} + engines: {node: '>=14.6'} + abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} engines: {node: '>=6.5'} @@ -2373,6 +2395,11 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + acorn@8.16.0: + resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==} + engines: {node: '>=0.4.0'} + hasBin: true + agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} @@ -2512,8 +2539,8 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs2@0.4.16: - resolution: {integrity: sha512-xaVwwSfebXf0ooE11BJovZYKhFjIvQo7TsyVpETuIeH2JHv0k/T6Y5j22pPTvqYqmpkxdlPAJlyJ0tfOJAoMxw==} + babel-plugin-polyfill-corejs2@0.4.17: + resolution: {integrity: sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 @@ -2532,8 +2559,8 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-regenerator@0.6.7: - resolution: {integrity: sha512-OTYbUlSwXhNgr4g6efMZgsO8//jA61P7ZbRX3iTT53VON8l+WQS8IAUEVo4a4cWknrg2W8Cj4gQhRYNCJ8GkAA==} + babel-plugin-polyfill-regenerator@0.6.8: + resolution: {integrity: sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 @@ -2630,6 +2657,9 @@ packages: brace-expansion@2.0.2: resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + brace-expansion@2.1.0: + resolution: {integrity: sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==} + braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} @@ -3745,8 +3775,8 @@ packages: hermes-estree@0.32.0: resolution: {integrity: sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ==} - hermes-estree@0.33.3: - resolution: {integrity: sha512-6kzYZHCk8Fy1Uc+t3HGYyJn3OL4aeqKLTyina4UFtWl8I0kSL7OmKThaiX+Uh2f8nGw3mo4Ifxg0M5Zk3/Oeqg==} + hermes-estree@0.35.0: + resolution: {integrity: sha512-xVx5Opwy8Oo1I5yGpVRhCvWL/iV3M+ylksSKVNlxxD90cpDpR/AR1jLYqK8HWihm065a6UI3HeyAmYzwS8NOOg==} hermes-parser@0.14.0: resolution: {integrity: sha512-pt+8uRiJhVlErY3fiXB3gKhZ72RxM6E1xRMpvfZ5n6Z5TQKQQXKorgRCRzoe02mmvLKBJFP5nPDGv75MWAgCTw==} @@ -3757,8 +3787,8 @@ packages: hermes-parser@0.32.0: resolution: {integrity: sha512-g4nBOWFpuiTqjR3LZdRxKUkij9iyveWeuks7INEsMX741f3r9xxrOe8TeQfUxtda0eXmiIFiMQzoeSQEno33Hw==} - hermes-parser@0.33.3: - resolution: {integrity: sha512-Yg3HgaG4CqgyowtYjX/FsnPAuZdHOqSMtnbpylbptsQ9nwwSKsy6uRWcGO5RK0EqiX12q8HvDWKgeAVajRO5DA==} + hermes-parser@0.35.0: + resolution: {integrity: sha512-9JLjeHxBx8T4CAsydZR49PNZUaix+WpQJwu9p2010lu+7Kwl6D/7wYFFJxoz+aXkaaClp9Zfg6W6/zVlSJORaA==} hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} @@ -4328,24 +4358,28 @@ packages: engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] + libc: [glibc] lightningcss-linux-arm64-musl@1.27.0: resolution: {integrity: sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] + libc: [musl] lightningcss-linux-x64-gnu@1.27.0: resolution: {integrity: sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] + libc: [glibc] lightningcss-linux-x64-musl@1.27.0: resolution: {integrity: sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] + libc: [musl] lightningcss-win32-arm64-msvc@1.27.0: resolution: {integrity: sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==} @@ -4484,56 +4518,56 @@ packages: resolution: {integrity: sha512-1vxlvj2yY24ES1O5RsSIvg4a4WeL7PFXgKOHvXTXiW0deLvQr28ExXj6LjwCCDZ4YZLhq6HddLpZnX4dEdSq5g==} engines: {node: '>=20.19.4'} - metro-babel-transformer@0.83.5: - resolution: {integrity: sha512-d9FfmgUEVejTiSb7bkQeLRGl6aeno2UpuPm3bo3rCYwxewj03ymvOn8s8vnS4fBqAPQ+cE9iQM40wh7nGXR+eA==} + metro-babel-transformer@0.83.7: + resolution: {integrity: sha512-sBqBkt6kNut/88bv+Ucvm4yqdPetbvAEsHzi3MAgJEifOSYYzX5Z5Kgw3TFOrwf/mHJTOBG2ONlaMHoyfP15TA==} engines: {node: '>=20.19.4'} metro-cache-key@0.83.3: resolution: {integrity: sha512-59ZO049jKzSmvBmG/B5bZ6/dztP0ilp0o988nc6dpaDsU05Cl1c/lRf+yx8m9WW/JVgbmfO5MziBU559XjI5Zw==} engines: {node: '>=20.19.4'} - metro-cache-key@0.83.5: - resolution: {integrity: sha512-Ycl8PBajB7bhbAI7Rt0xEyiF8oJ0RWX8EKkolV1KfCUlC++V/GStMSGpPLwnnBZXZWkCC5edBPzv1Hz1Yi0Euw==} + metro-cache-key@0.83.7: + resolution: {integrity: sha512-W1c2Nmx8MiJTJt+eWhMO08z9VKi3kZOaz99IYGdqeqDgY9j+yZjXl62rUav4Di0heZfh4/n2s722PqRL1OODeg==} engines: {node: '>=20.19.4'} metro-cache@0.83.3: resolution: {integrity: sha512-3jo65X515mQJvKqK3vWRblxDEcgY55Sk3w4xa6LlfEXgQ9g1WgMh9m4qVZVwgcHoLy0a2HENTPCCX4Pk6s8c8Q==} engines: {node: '>=20.19.4'} - metro-cache@0.83.5: - resolution: {integrity: sha512-oH+s4U+IfZyg8J42bne2Skc90rcuESIYf86dYittcdWQtPfcaFXWpByPyTuWk3rR1Zz3Eh5HOrcVImfEhhJLng==} + metro-cache@0.83.7: + resolution: {integrity: sha512-E9SRePXQ1Zvlj79VcOk57q7VC7rMHMFQ+jhmPHBiq+dJ0bJB5BL87lWZF6oh5X76Cci5tpDuQNaDwwuSCToEeg==} engines: {node: '>=20.19.4'} metro-config@0.83.3: resolution: {integrity: sha512-mTel7ipT0yNjKILIan04bkJkuCzUUkm2SeEaTads8VfEecCh+ltXchdq6DovXJqzQAXuR2P9cxZB47Lg4klriA==} engines: {node: '>=20.19.4'} - metro-config@0.83.5: - resolution: {integrity: sha512-JQ/PAASXH7yczgV6OCUSRhZYME+NU8NYjI2RcaG5ga4QfQ3T/XdiLzpSb3awWZYlDCcQb36l4Vl7i0Zw7/Tf9w==} + metro-config@0.83.7: + resolution: {integrity: sha512-83mjWFbFOt2GeJ6pFIum5mSnc1uTsZJAtD8o4ej0s4NVsYsA7fB+pHvTfHhFrpeMONaobu2riKavkPei05Er/Q==} engines: {node: '>=20.19.4'} metro-core@0.83.3: resolution: {integrity: sha512-M+X59lm7oBmJZamc96usuF1kusd5YimqG/q97g4Ac7slnJ3YiGglW5CsOlicTR5EWf8MQFxxjDoB6ytTqRe8Hw==} engines: {node: '>=20.19.4'} - metro-core@0.83.5: - resolution: {integrity: sha512-YcVcLCrf0ed4mdLa82Qob0VxYqfhmlRxUS8+TO4gosZo/gLwSvtdeOjc/Vt0pe/lvMNrBap9LlmvZM8FIsMgJQ==} + metro-core@0.83.7: + resolution: {integrity: sha512-6yn3w1wnltT6RQl7p7YES2l95ArC+mWrOssEiH8p5/DDrJS65/szf9LsC9JrBv8c5DdvSY3V3f0GRYg0Ox7hCg==} engines: {node: '>=20.19.4'} metro-file-map@0.83.3: resolution: {integrity: sha512-jg5AcyE0Q9Xbbu/4NAwwZkmQn7doJCKGW0SLeSJmzNB9Z24jBe0AL2PHNMy4eu0JiKtNWHz9IiONGZWq7hjVTA==} engines: {node: '>=20.19.4'} - metro-file-map@0.83.5: - resolution: {integrity: sha512-ZEt8s3a1cnYbn40nyCD+CsZdYSlwtFh2kFym4lo+uvfM+UMMH+r/BsrC6rbNClSrt+B7rU9T+Te/sh/NL8ZZKQ==} + metro-file-map@0.83.7: + resolution: {integrity: sha512-+j0F1m+FQYVAQ6syf+mwhIPV5GoFQrkInX8bppuc50IzNsZbMrp8R5H/Sx/K2daQ3YEa9F/XwkeZT8gzJfgeCw==} engines: {node: '>=20.19.4'} metro-minify-terser@0.83.3: resolution: {integrity: sha512-O2BmfWj6FSfzBLrNCXt/rr2VYZdX5i6444QJU0fFoc7Ljg+Q+iqebwE3K0eTvkI6TRjELsXk1cjU+fXwAR4OjQ==} engines: {node: '>=20.19.4'} - metro-minify-terser@0.83.5: - resolution: {integrity: sha512-Toe4Md1wS1PBqbvB0cFxBzKEVyyuYTUb0sgifAZh/mSvLH84qA1NAWik9sISWatzvfWf3rOGoUoO5E3f193a3Q==} + metro-minify-terser@0.83.7: + resolution: {integrity: sha512-MfJar2IS4tBRuLb9svwb0Gu5l9BsH+pcRm8eGcEi/wy8MzZinfinh5dFLt2nWkocnulIgtGB5NkFDdbXqMXKhQ==} engines: {node: '>=20.19.4'} metro-react-native-babel-preset@0.77.0: @@ -4553,24 +4587,24 @@ packages: resolution: {integrity: sha512-0js+zwI5flFxb1ktmR///bxHYg7OLpRpWZlBBruYG8OKYxeMP7SV0xQ/o/hUelrEMdK4LJzqVtHAhBm25LVfAQ==} engines: {node: '>=20.19.4'} - metro-resolver@0.83.5: - resolution: {integrity: sha512-7p3GtzVUpbAweJeCcUJihJeOQl1bDuimO5ueo1K0BUpUtR41q5EilbQ3klt16UTPPMpA+tISWBtsrqU556mY1A==} + metro-resolver@0.83.7: + resolution: {integrity: sha512-WSJIENlMcoSsuz66IfBHOkgfp3KJt2UW2TnEHPf1b8pIG2eEXNOVmo2+03A0H17WY2XGXWgxL0CG7FAopqgB1A==} engines: {node: '>=20.19.4'} metro-runtime@0.83.3: resolution: {integrity: sha512-JHCJb9ebr9rfJ+LcssFYA2x1qPYuSD/bbePupIGhpMrsla7RCwC/VL3yJ9cSU+nUhU4c9Ixxy8tBta+JbDeZWw==} engines: {node: '>=20.19.4'} - metro-runtime@0.83.5: - resolution: {integrity: sha512-f+b3ue9AWTVlZe2Xrki6TAoFtKIqw30jwfk7GQ1rDUBQaE0ZQ+NkiMEtb9uwH7uAjJ87U7Tdx1Jg1OJqUfEVlA==} + metro-runtime@0.83.7: + resolution: {integrity: sha512-9GKkJURaB2iyYoEExKnedzAHzxmKtSi+k0tsZUvMoU27tBZJElchYt7JH/Ai/XzYAI9lCAaV7u5HZSI8J5Z+wQ==} engines: {node: '>=20.19.4'} metro-source-map@0.83.3: resolution: {integrity: sha512-xkC3qwUBh2psVZgVavo8+r2C9Igkk3DibiOXSAht1aYRRcztEZNFtAMtfSB7sdO2iFMx2Mlyu++cBxz/fhdzQg==} engines: {node: '>=20.19.4'} - metro-source-map@0.83.5: - resolution: {integrity: sha512-VT9bb2KO2/4tWY9Z2yeZqTUao7CicKAOps9LUg2aQzsz+04QyuXL3qgf1cLUVRjA/D6G5u1RJAlN1w9VNHtODQ==} + metro-source-map@0.83.7: + resolution: {integrity: sha512-JgA1h7oc1a1jydBe1GhVFsUoMYo3wLPk7oRA32rjlDsq+sP2JLt9x2p2lWbNSxTm/u8NV4VRid3hvEJgcX8tKw==} engines: {node: '>=20.19.4'} metro-symbolicate@0.83.3: @@ -4578,8 +4612,8 @@ packages: engines: {node: '>=20.19.4'} hasBin: true - metro-symbolicate@0.83.5: - resolution: {integrity: sha512-EMIkrjNRz/hF+p0RDdxoE60+dkaTLPN3vaaGkFmX5lvFdO6HPfHA/Ywznzkev+za0VhPQ5KSdz49/MALBRteHA==} + metro-symbolicate@0.83.7: + resolution: {integrity: sha512-g4suyxw20WOHWI680c+Kq4wC/NF+Hx5pRH9afrMp+sMTxqLeKcPR1Xf4wMhsjlbvx7LbIREdke6q928jEjvJWw==} engines: {node: '>=20.19.4'} hasBin: true @@ -4587,16 +4621,16 @@ packages: resolution: {integrity: sha512-eRGoKJU6jmqOakBMH5kUB7VitEWiNrDzBHpYbkBXW7C5fUGeOd2CyqrosEzbMK5VMiZYyOcNFEphvxk3OXey2A==} engines: {node: '>=20.19.4'} - metro-transform-plugins@0.83.5: - resolution: {integrity: sha512-KxYKzZL+lt3Os5H2nx7YkbkWVduLZL5kPrE/Yq+Prm/DE1VLhpfnO6HtPs8vimYFKOa58ncl60GpoX0h7Wm0Vw==} + metro-transform-plugins@0.83.7: + resolution: {integrity: sha512-Ss0FpBiZDjX2kwhukMDl5sNdYK8T/06IPqxNE4H6PTlRlfs9q11cef13c/xESY/Pm4VCkp1yJUZO3kXzvMxQFA==} engines: {node: '>=20.19.4'} metro-transform-worker@0.83.3: resolution: {integrity: sha512-Ztekew9t/gOIMZX1tvJOgX7KlSLL5kWykl0Iwu2cL2vKMKVALRl1hysyhUw0vjpAvLFx+Kfq9VLjnHIkW32fPA==} engines: {node: '>=20.19.4'} - metro-transform-worker@0.83.5: - resolution: {integrity: sha512-8N4pjkNXc6ytlP9oAM6MwqkvUepNSW39LKYl9NjUMpRDazBQ7oBpQDc8Sz4aI8jnH6AGhF7s1m/ayxkN1t04yA==} + metro-transform-worker@0.83.7: + resolution: {integrity: sha512-UegCo7ygB2fT64mRK2nbAjQVJ1zSwIIHy8d96jJv2nKZFDaViYBiughEdu5HM/Ceq0WN3LZrZk3zhl9aoiLYFw==} engines: {node: '>=20.19.4'} metro@0.83.3: @@ -4604,8 +4638,8 @@ packages: engines: {node: '>=20.19.4'} hasBin: true - metro@0.83.5: - resolution: {integrity: sha512-BgsXevY1MBac/3ZYv/RfNFf/4iuW9X7f4H8ZNkiH+r667HD9sVujxcmu4jvEzGCAm4/WyKdZCuyhAcyhTHOucQ==} + metro@0.83.7: + resolution: {integrity: sha512-SPaPEyvTsTmd0LpT7RaZciQyDw2i/JB7+iY9L5VfBo72+psescFxBqpI1TL9dnL+pmnfkU+l/J1mEEGLeF65EQ==} engines: {node: '>=20.19.4'} hasBin: true @@ -4747,8 +4781,8 @@ packages: encoding: optional: true - node-forge@1.3.3: - resolution: {integrity: sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==} + node-forge@1.4.0: + resolution: {integrity: sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ==} engines: {node: '>= 6.13.0'} node-int64@0.4.0: @@ -4783,8 +4817,8 @@ packages: resolution: {integrity: sha512-egUxXCDwoWG06NGCS5s5AdcpnumHKJlfd3HH06P3m9TEMwwScfcY35wpQxbm9oHof+dM/lVH9Rfyu1elTVelSA==} engines: {node: '>=20.19.4'} - ob1@0.83.5: - resolution: {integrity: sha512-vNKPYC8L5ycVANANpF/S+WZHpfnRWKx/F3AYP4QMn6ZJTh+l2HOrId0clNkEmua58NB9vmI9Qh7YOoV/4folYg==} + ob1@0.83.7: + resolution: {integrity: sha512-9M5kpuOLyTPogMtZiQUIxdAZxl7Dxs6tVBbJErSumsqGMuhVSoUbkfeZ3XNPpLpwBBtqY5QDUzGwggLHX3slQg==} engines: {node: '>=20.19.4'} object-assign@4.1.1: @@ -4961,8 +4995,8 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - picomatch@3.0.1: - resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==} + picomatch@3.0.2: + resolution: {integrity: sha512-cfDHL6LStTEKlNilboNtobT/kEa30PtAf2Q1OgszfrG/rpVl1xaFWT9ktfkS306GmHgmnad1Sw4wabhlvFtsTw==} engines: {node: '>=10'} picomatch@4.0.3: @@ -4981,8 +5015,8 @@ packages: resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} engines: {node: '>=8'} - plist@3.1.0: - resolution: {integrity: sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==} + plist@3.1.1: + resolution: {integrity: sha512-ZIfcLJC+7E7FBFnDxm9MPmt7D+DidyQ26lewieO75AdhA2ayMtsJSES0iWzqJQbcVRSrTufQoy0DR94xHue0oA==} engines: {node: '>=10.4.0'} pngjs@3.4.0: @@ -5249,8 +5283,8 @@ packages: react: '*' react-native: '*' - react-native@0.83.4: - resolution: {integrity: sha512-H5Wco3UJyY6zZsjoBayY8RM9uiAEQ3FeG4G2NAt+lr9DO43QeqPlVe9xxxYEukMkEmeIhNjR70F6bhXuWArOMQ==} + react-native@0.83.9: + resolution: {integrity: sha512-bTQpaSJBbxOizI8SMNiCR/5aIvfO3ZlXAcWYxg6FmdbfJYCZ0zdUCK9mSZ4patureITGHNU94RXhxDAJhqsO7w==} engines: {node: '>= 20.19.4'} hasBin: true peerDependencies: @@ -5392,6 +5426,11 @@ packages: engines: {node: '>= 0.4'} hasBin: true + resolve@1.22.12: + resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==} + engines: {node: '>= 0.4'} + hasBin: true + resolve@1.7.1: resolution: {integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==} @@ -5444,8 +5483,8 @@ packages: safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - sax@1.5.0: - resolution: {integrity: sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==} + sax@1.6.0: + resolution: {integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==} engines: {node: '>=11.0.0'} scheduler@0.25.0: @@ -5560,8 +5599,8 @@ packages: resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==} engines: {node: '>=6'} - slugify@1.6.6: - resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==} + slugify@1.6.9: + resolution: {integrity: sha512-vZ7rfeehZui7wQs438JXBckYLkIIdfHOXsaVEUMyS5fHo1483l1bMdo0EDSWYclY0yZKFOipDy4KHuKs6ssvdg==} engines: {node: '>=8.0.0'} snake-case@3.0.4: @@ -5746,8 +5785,8 @@ packages: engines: {node: '>=14.0.0'} hasBin: true - tar@7.5.10: - resolution: {integrity: sha512-8mOPs1//5q/rlkNSPcCegA6hiHJYDmSLEI8aMH/CdSQJNWztHC9WHNam5zdQlfpTwB9Xp7IBEsHfV5LKMJGVAw==} + tar@7.5.13: + resolution: {integrity: sha512-tOG/7GyXpFevhXVh8jOPJrmtRpOTsYqUIkVdVooZYJS/z8WhfQUX8RJILmeuJNinGAMSu1veBr4asSHFt5/hng==} engines: {node: '>=18'} tarn@3.0.2: @@ -5775,6 +5814,11 @@ packages: engines: {node: '>=10'} hasBin: true + terser@5.46.2: + resolution: {integrity: sha512-uxfo9fPcSgLDYob/w1FuL0c99MWiJDnv+5qXSQc5+Ki5NjVNsYi66INnMFBjf6uFz6OnX12piJQPF4IpjJTNTw==} + engines: {node: '>=10'} + hasBin: true + test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} @@ -5874,10 +5918,17 @@ packages: undici-types@7.18.2: resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==} + undici-types@7.19.2: + resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==} + undici@6.23.0: resolution: {integrity: sha512-VfQPToRA5FZs/qJxLIinmU59u0r7LXqoJkCzinq3ckNJp3vKEh7jTWN589YQ5+aoAC/TGRLyJLCPKcLQbM8r9g==} engines: {node: '>=18.17'} + undici@6.25.0: + resolution: {integrity: sha512-ZgpWDC5gmNiuY9CnLVXEH8rl50xhRCuLNA97fAUnKi8RRuV4E6KG31pDTsLVUKnohJE0I3XDrTeEydAXRw47xg==} + engines: {node: '>=18.17'} + unicode-canonical-property-names-ecmascript@2.0.1: resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} engines: {node: '>=4'} @@ -5937,10 +5988,7 @@ packages: uuid@7.0.3: resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==} - hasBin: true - - uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). hasBin: true v8-to-istanbul@9.3.0: @@ -6008,8 +6056,8 @@ packages: engines: {node: '>= 8'} hasBin: true - wonka@6.3.5: - resolution: {integrity: sha512-SSil+ecw6B4/Dm7Pf2sAshKQ5hWFvfyGlfPbEd6A14dOH6VDjrmbY86u6nZvy9omGwwIPFR8V41+of1EezgoUw==} + wonka@6.3.6: + resolution: {integrity: sha512-MXH+6mDHAZ2GuMpgKS055FR6v0xVP3XwquxIMYXgiW+FejHQlMGlvVRZT4qMCxR+bEo/FCtIdKxwej9WV3YQag==} word-wrap@1.2.5: resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} @@ -6057,8 +6105,8 @@ packages: utf-8-validate: optional: true - ws@8.19.0: - resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==} + ws@8.20.0: + resolution: {integrity: sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -6111,6 +6159,11 @@ packages: engines: {node: '>= 14.6'} hasBin: true + yaml@2.8.3: + resolution: {integrity: sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==} + engines: {node: '>= 14.6'} + hasBin: true + yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} @@ -6145,13 +6198,13 @@ snapshots: '@0no-co/graphql.web@1.2.0': optional: true - '@azure-rest/core-client@2.5.1': + '@azure-rest/core-client@2.6.0': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 '@azure/core-rest-pipeline': 1.23.0 '@azure/core-tracing': 1.3.1 - '@typespec/ts-http-runtime': 0.3.4 + '@typespec/ts-http-runtime': 0.3.5 tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -6180,7 +6233,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure/core-http-compat@2.3.2(@azure/core-client@1.10.1)(@azure/core-rest-pipeline@1.23.0)': + '@azure/core-http-compat@2.4.0(@azure/core-client@1.10.1)(@azure/core-rest-pipeline@1.23.0)': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-client': 1.10.1 @@ -6206,7 +6259,7 @@ snapshots: '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 '@azure/logger': 1.3.0 - '@typespec/ts-http-runtime': 0.3.4 + '@typespec/ts-http-runtime': 0.3.5 tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -6218,12 +6271,12 @@ snapshots: '@azure/core-util@1.13.1': dependencies: '@azure/abort-controller': 2.1.2 - '@typespec/ts-http-runtime': 0.3.4 + '@typespec/ts-http-runtime': 0.3.5 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/identity@4.13.0': + '@azure/identity@4.13.1': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 @@ -6232,18 +6285,18 @@ snapshots: '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 '@azure/logger': 1.3.0 - '@azure/msal-browser': 4.29.0 - '@azure/msal-node': 3.8.8 + '@azure/msal-browser': 5.9.0 + '@azure/msal-node': 5.1.5 open: 10.2.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/keyvault-common@2.0.0': + '@azure/keyvault-common@2.1.0': dependencies: + '@azure-rest/core-client': 2.6.0 '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 - '@azure/core-client': 1.10.1 '@azure/core-rest-pipeline': 1.23.0 '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 @@ -6254,16 +6307,16 @@ snapshots: '@azure/keyvault-keys@4.10.0(@azure/core-client@1.10.1)': dependencies: - '@azure-rest/core-client': 2.5.1 + '@azure-rest/core-client': 2.6.0 '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 - '@azure/core-http-compat': 2.3.2(@azure/core-client@1.10.1)(@azure/core-rest-pipeline@1.23.0) + '@azure/core-http-compat': 2.4.0(@azure/core-client@1.10.1)(@azure/core-rest-pipeline@1.23.0) '@azure/core-lro': 2.7.2 '@azure/core-paging': 1.6.2 '@azure/core-rest-pipeline': 1.23.0 '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 - '@azure/keyvault-common': 2.0.0 + '@azure/keyvault-common': 2.1.0 '@azure/logger': 1.3.0 tslib: 2.8.1 transitivePeerDependencies: @@ -6272,22 +6325,21 @@ snapshots: '@azure/logger@1.3.0': dependencies: - '@typespec/ts-http-runtime': 0.3.4 + '@typespec/ts-http-runtime': 0.3.5 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/msal-browser@4.29.0': + '@azure/msal-browser@5.9.0': dependencies: - '@azure/msal-common': 15.15.0 + '@azure/msal-common': 16.5.2 - '@azure/msal-common@15.15.0': {} + '@azure/msal-common@16.5.2': {} - '@azure/msal-node@3.8.8': + '@azure/msal-node@5.1.5': dependencies: - '@azure/msal-common': 15.15.0 + '@azure/msal-common': 16.5.2 jsonwebtoken: 9.0.3 - uuid: 8.3.2 '@babel/code-frame@7.10.4': dependencies: @@ -6397,14 +6449,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.6.7(@babel/core@7.28.6)': + '@babel/helper-define-polyfill-provider@0.6.8(@babel/core@7.28.6)': dependencies: '@babel/core': 7.28.6 '@babel/helper-compilation-targets': 7.28.6 '@babel/helper-plugin-utils': 7.28.6 debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.11 + resolve: 1.22.12 transitivePeerDependencies: - supports-color optional: true @@ -6504,6 +6556,10 @@ snapshots: dependencies: '@babel/types': 7.29.0 + '@babel/parser@7.29.2': + dependencies: + '@babel/types': 7.29.0 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.6)': dependencies: '@babel/core': 7.28.6 @@ -7128,9 +7184,9 @@ snapshots: '@babel/core': 7.28.6 '@babel/helper-module-imports': 7.28.6 '@babel/helper-plugin-utils': 7.28.6 - babel-plugin-polyfill-corejs2: 0.4.16(@babel/core@7.28.6) + babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.28.6) babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.6) - babel-plugin-polyfill-regenerator: 0.6.7(@babel/core@7.28.6) + babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.28.6) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -7361,10 +7417,10 @@ snapshots: '@bcoe/v8-coverage@0.2.3': {} - '@d11/react-native-fast-image@8.13.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@d11/react-native-fast-image@8.13.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) '@drizzle-team/brocli@0.11.0': {} @@ -7494,12 +7550,12 @@ snapshots: '@expo/json-file': 9.1.5 '@expo/metro-config': 0.20.13 '@expo/osascript': 2.4.2 - '@expo/package-manager': 1.10.3 + '@expo/package-manager': 1.10.4 '@expo/plist': 0.3.5 '@expo/prebuild-config': 9.0.12 '@expo/spawn-async': 1.7.2 '@expo/ws-tunnel': 1.0.6 - '@expo/xcpretty': 4.4.1 + '@expo/xcpretty': 4.4.3 '@react-native/dev-middleware': 0.79.2 '@urql/core': 5.2.0 '@urql/exchange-retry': 1.3.2(@urql/core@5.2.0) @@ -7519,10 +7575,10 @@ snapshots: glob: 10.5.0 lan-network: 0.1.7 minimatch: 9.0.9 - node-forge: 1.3.3 + node-forge: 1.4.0 npm-package-arg: 11.0.3 ora: 3.4.0 - picomatch: 3.0.1 + picomatch: 3.0.2 pretty-bytes: 5.6.0 pretty-format: 29.7.0 progress: 2.0.3 @@ -7530,20 +7586,20 @@ snapshots: qrcode-terminal: 0.11.0 require-from-string: 2.0.2 requireg: 0.2.2 - resolve: 1.22.11 + resolve: 1.22.12 resolve-from: 5.0.0 resolve.exports: 2.0.3 semver: 7.7.4 send: 0.19.2 - slugify: 1.6.6 + slugify: 1.6.9 source-map-support: 0.5.21 stacktrace-parser: 0.1.11 structured-headers: 0.4.1 - tar: 7.5.10 + tar: 7.5.13 terminal-link: 2.1.1 - undici: 6.23.0 + undici: 6.25.0 wrap-ansi: 7.0.0 - ws: 8.19.0 + ws: 8.20.0 transitivePeerDependencies: - bufferutil - graphql @@ -7553,7 +7609,7 @@ snapshots: '@expo/code-signing-certificates@0.0.5': dependencies: - node-forge: 1.3.3 + node-forge: 1.4.0 nullthrows: 1.1.1 optional: true @@ -7570,7 +7626,7 @@ snapshots: resolve-from: 5.0.0 semver: 7.7.4 slash: 3.0.0 - slugify: 1.6.6 + slugify: 1.6.9 xcode: 3.0.1 xml2js: 0.6.0 transitivePeerDependencies: @@ -7590,7 +7646,7 @@ snapshots: resolve-from: 5.0.0 semver: 7.7.4 slash: 3.0.0 - slugify: 1.6.6 + slugify: 1.6.9 xcode: 3.0.1 xml2js: 0.6.0 transitivePeerDependencies: @@ -7613,7 +7669,7 @@ snapshots: resolve-from: 5.0.0 resolve-workspace-root: 2.0.1 semver: 7.7.4 - slugify: 1.6.6 + slugify: 1.6.9 sucrase: 3.35.0 transitivePeerDependencies: - supports-color @@ -7667,7 +7723,7 @@ snapshots: unique-string: 2.0.0 optional: true - '@expo/json-file@10.0.12': + '@expo/json-file@10.0.13': dependencies: '@babel/code-frame': 7.29.0 json5: 2.2.3 @@ -7683,7 +7739,7 @@ snapshots: dependencies: '@babel/core': 7.28.6 '@babel/generator': 7.29.1 - '@babel/parser': 7.29.0 + '@babel/parser': 7.29.2 '@babel/types': 7.29.0 '@expo/config': 11.0.13 '@expo/env': 1.0.7 @@ -7709,9 +7765,9 @@ snapshots: '@expo/spawn-async': 1.7.2 optional: true - '@expo/package-manager@1.10.3': + '@expo/package-manager@1.10.4': dependencies: - '@expo/json-file': 10.0.12 + '@expo/json-file': 10.0.13 '@expo/spawn-async': 1.7.2 chalk: 4.1.2 npm-package-arg: 11.0.3 @@ -7721,7 +7777,7 @@ snapshots: '@expo/plist@0.3.5': dependencies: - '@xmldom/xmldom': 0.8.11 + '@xmldom/xmldom': 0.8.13 base64-js: 1.5.1 xmlbuilder: 15.1.1 optional: true @@ -7753,17 +7809,17 @@ snapshots: '@expo/sudo-prompt@9.3.2': optional: true - '@expo/vector-icons@14.1.0(expo-font@13.3.2(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@expo/vector-icons@14.1.0(expo-font@13.3.2(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: - expo-font: 13.3.2(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3) + expo-font: 13.3.2(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3) react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) optional: true '@expo/ws-tunnel@1.0.6': optional: true - '@expo/xcpretty@4.4.1': + '@expo/xcpretty@4.4.3': dependencies: '@babel/code-frame': 7.29.0 chalk: 4.1.2 @@ -7815,11 +7871,11 @@ snapshots: '@istanbuljs/schema@0.1.3': {} - '@iternio/react-native-auto-play@0.2.2(patch_hash=2ab8be0081e20edc9203f48ede10d78ffcdb6eb30798e0d0b92d8d29b19777fc)(react-native-nitro-modules@0.33.9(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@iternio/react-native-auto-play@0.2.2(patch_hash=2ab8be0081e20edc9203f48ede10d78ffcdb6eb30798e0d0b92d8d29b19777fc)(react-native-nitro-modules@0.33.9(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-nitro-modules: 0.33.9(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native-nitro-modules: 0.33.9(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react-native-uuid: 2.0.3 '@jest/console@29.7.0': @@ -8061,18 +8117,18 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.20.1 - '@op-engineering/op-sqlite@15.2.5(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@op-engineering/op-sqlite@15.2.5(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) '@pkgjs/parseargs@0.11.0': optional: true - '@react-native-async-storage/async-storage@2.2.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))': + '@react-native-async-storage/async-storage@2.2.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))': dependencies: merge-options: 3.0.4 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) '@react-native-community/cli-clean@20.1.2': dependencies: @@ -8204,20 +8260,20 @@ snapshots: - typescript - utf-8-validate - '@react-native-community/datetimepicker@8.6.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@react-native-community/datetimepicker@8.6.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: invariant: 2.2.4 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) optionalDependencies: - expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - '@react-native-community/netinfo@11.5.2(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@react-native-community/netinfo@11.5.2(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - '@react-native/assets-registry@0.83.4': {} + '@react-native/assets-registry@0.83.9': {} '@react-native/babel-plugin-codegen@0.79.2(@babel/core@7.28.6)': dependencies: @@ -8357,14 +8413,24 @@ snapshots: nullthrows: 1.1.1 yargs: 17.7.2 - '@react-native/community-cli-plugin@0.83.4(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))': + '@react-native/codegen@0.83.9(@babel/core@7.28.6)': dependencies: - '@react-native/dev-middleware': 0.83.4 + '@babel/core': 7.28.6 + '@babel/parser': 7.29.2 + glob: 7.2.3 + hermes-parser: 0.32.0 + invariant: 2.2.4 + nullthrows: 1.1.1 + yargs: 17.7.2 + + '@react-native/community-cli-plugin@0.83.9(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))': + dependencies: + '@react-native/dev-middleware': 0.83.9 debug: 4.4.3 invariant: 2.2.4 - metro: 0.83.5 - metro-config: 0.83.5 - metro-core: 0.83.5 + metro: 0.83.7 + metro-config: 0.83.7 + metro-core: 0.83.7 semver: 7.7.3 optionalDependencies: '@react-native-community/cli': 20.1.2(typescript@5.9.3) @@ -8377,9 +8443,9 @@ snapshots: '@react-native/debugger-frontend@0.79.2': optional: true - '@react-native/debugger-frontend@0.83.4': {} + '@react-native/debugger-frontend@0.83.9': {} - '@react-native/debugger-shell@0.83.4': + '@react-native/debugger-shell@0.83.9': dependencies: cross-spawn: 7.0.6 fb-dotslash: 0.5.8 @@ -8403,11 +8469,11 @@ snapshots: - utf-8-validate optional: true - '@react-native/dev-middleware@0.83.4': + '@react-native/dev-middleware@0.83.9': dependencies: '@isaacs/ttlcache': 1.4.1 - '@react-native/debugger-frontend': 0.83.4 - '@react-native/debugger-shell': 0.83.4 + '@react-native/debugger-frontend': 0.83.9 + '@react-native/debugger-shell': 0.83.9 chrome-launcher: 0.15.2 chromium-edge-launcher: 0.2.0 connect: 3.7.0 @@ -8445,10 +8511,12 @@ snapshots: '@react-native/eslint-plugin@0.83.4': {} - '@react-native/gradle-plugin@0.83.4': {} + '@react-native/gradle-plugin@0.83.9': {} '@react-native/js-polyfills@0.83.4': {} + '@react-native/js-polyfills@0.83.9': {} + '@react-native/metro-babel-transformer@0.83.4(@babel/core@7.28.6)': dependencies: '@babel/core': 7.28.6 @@ -8473,28 +8541,28 @@ snapshots: '@react-native/normalize-colors@0.79.6': optional: true - '@react-native/normalize-colors@0.83.4': {} + '@react-native/normalize-colors@0.83.9': {} '@react-native/typescript-config@0.83.1': {} - '@react-native/virtualized-lists@0.83.4(@types/react@19.2.9)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@react-native/virtualized-lists@0.83.9(@types/react@19.2.9)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) optionalDependencies: '@types/react': 19.2.9 - '@react-navigation/bottom-tabs@7.10.1(@react-navigation/native@7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-screens@4.24.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@react-navigation/bottom-tabs@7.10.1(@react-navigation/native@7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-screens@4.24.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: - '@react-navigation/elements': 2.9.5(@react-navigation/native@7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - '@react-navigation/native': 7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@react-navigation/elements': 2.9.5(@react-navigation/native@7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@react-navigation/native': 7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) color: 4.2.3 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-safe-area-context: 5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - react-native-screens: 4.24.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native-safe-area-context: 5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native-screens: 4.24.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) sf-symbols-typescript: 2.2.0 transitivePeerDependencies: - '@react-native-masked-view/masked-view' @@ -8511,64 +8579,64 @@ snapshots: use-latest-callback: 0.2.6(react@19.2.3) use-sync-external-store: 1.6.0(react@19.2.3) - '@react-navigation/elements@2.9.10(@react-navigation/native@7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@react-navigation/elements@2.9.10(@react-navigation/native@7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: - '@react-navigation/native': 7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@react-navigation/native': 7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) color: 4.2.3 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-safe-area-context: 5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native-safe-area-context: 5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) use-latest-callback: 0.2.6(react@19.2.3) use-sync-external-store: 1.6.0(react@19.2.3) - '@react-navigation/elements@2.9.5(@react-navigation/native@7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@react-navigation/elements@2.9.5(@react-navigation/native@7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: - '@react-navigation/native': 7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@react-navigation/native': 7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) color: 4.2.3 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-safe-area-context: 5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native-safe-area-context: 5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) use-latest-callback: 0.2.6(react@19.2.3) use-sync-external-store: 1.6.0(react@19.2.3) - '@react-navigation/native-stack@7.10.1(@react-navigation/native@7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-screens@4.24.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@react-navigation/native-stack@7.10.1(@react-navigation/native@7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-screens@4.24.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: - '@react-navigation/elements': 2.9.5(@react-navigation/native@7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - '@react-navigation/native': 7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@react-navigation/elements': 2.9.5(@react-navigation/native@7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@react-navigation/native': 7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) color: 4.2.3 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-safe-area-context: 5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - react-native-screens: 4.24.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native-safe-area-context: 5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native-screens: 4.24.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) sf-symbols-typescript: 2.2.0 warn-once: 0.1.1 transitivePeerDependencies: - '@react-native-masked-view/masked-view' - '@react-navigation/native@7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@react-navigation/native@7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: '@react-navigation/core': 7.16.1(react@19.2.3) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 nanoid: 3.3.11 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) use-latest-callback: 0.2.6(react@19.2.3) '@react-navigation/routers@7.5.3': dependencies: nanoid: 3.3.11 - '@react-navigation/stack@7.8.4(743e3df6ff9526c2ce3f9ac4d6463609)': + '@react-navigation/stack@7.8.4(020e999e91feafc04bcc11693a3b6e1f)': dependencies: - '@react-navigation/elements': 2.9.10(@react-navigation/native@7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - '@react-navigation/native': 7.1.33(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@react-navigation/elements': 2.9.10(@react-navigation/native@7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native-safe-area-context@5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@react-navigation/native': 7.1.33(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) color: 4.2.3 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-gesture-handler: 2.30.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - react-native-safe-area-context: 5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - react-native-screens: 4.24.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native-gesture-handler: 2.30.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native-safe-area-context: 5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native-screens: 4.24.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) use-latest-callback: 0.2.6(react@19.2.3) transitivePeerDependencies: - '@react-native-masked-view/masked-view' @@ -8585,10 +8653,10 @@ snapshots: react: 19.2.3 react-redux: 9.2.0(@types/react@19.2.9)(react@19.2.3)(redux@5.0.1) - '@sbaiahmed1/react-native-blur@4.5.7(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@sbaiahmed1/react-native-blur@4.5.7(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) '@sentry-internal/browser-utils@10.36.0': dependencies: @@ -8704,7 +8772,7 @@ snapshots: '@sentry/core@10.36.0': {} - '@sentry/react-native@7.10.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@sentry/react-native@7.10.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: '@sentry/babel-plugin-component-annotate': 4.7.0 '@sentry/browser': 10.36.0 @@ -8713,9 +8781,9 @@ snapshots: '@sentry/react': 10.36.0(react@19.2.3) '@sentry/types': 10.36.0 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) optionalDependencies: - expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) transitivePeerDependencies: - encoding - supports-color @@ -8730,20 +8798,20 @@ snapshots: dependencies: '@sentry/core': 10.36.0 - '@shopify/flash-list@2.2.0(@babel/runtime@7.28.6)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@shopify/flash-list@2.2.0(@babel/runtime@7.28.6)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: '@babel/runtime': 7.28.6 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - '@shopify/react-native-skia@2.4.14(react-native-reanimated@4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': + '@shopify/react-native-skia@2.4.14(react-native-reanimated@4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3)': dependencies: canvaskit-wasm: 0.40.0 react: 19.2.3 react-reconciler: 0.31.0(react@19.2.3) optionalDependencies: - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-reanimated: 4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native-reanimated: 4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@sideway/address@4.1.5': dependencies: @@ -8900,7 +8968,7 @@ snapshots: '@types/mssql@9.1.9(@azure/core-client@1.10.1)': dependencies: - '@types/node': 25.3.5 + '@types/node': 25.6.0 tarn: 3.0.2 tedious: 19.2.1(@azure/core-client@1.10.1) transitivePeerDependencies: @@ -8911,13 +8979,17 @@ snapshots: dependencies: undici-types: 7.18.2 + '@types/node@25.6.0': + dependencies: + undici-types: 7.19.2 + '@types/react@19.2.9': dependencies: csstype: 3.2.3 '@types/readable-stream@4.0.23': dependencies: - '@types/node': 25.3.5 + '@types/node': 25.6.0 '@types/stack-utils@2.0.3': {} @@ -9073,7 +9145,7 @@ snapshots: '@typescript-eslint/types': 8.54.0 eslint-visitor-keys: 4.2.1 - '@typespec/ts-http-runtime@0.3.4': + '@typespec/ts-http-runtime@0.3.5': dependencies: http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 @@ -9086,7 +9158,7 @@ snapshots: '@urql/core@5.2.0': dependencies: '@0no-co/graphql.web': 1.2.0 - wonka: 6.3.5 + wonka: 6.3.6 transitivePeerDependencies: - graphql optional: true @@ -9094,14 +9166,17 @@ snapshots: '@urql/exchange-retry@1.3.2(@urql/core@5.2.0)': dependencies: '@urql/core': 5.2.0 - wonka: 6.3.5 + wonka: 6.3.6 optional: true '@vscode/sudo-prompt@9.3.2': {} '@webgpu/types@0.1.21': {} - '@xmldom/xmldom@0.8.11': + '@xmldom/xmldom@0.8.13': + optional: true + + '@xmldom/xmldom@0.9.10': optional: true abort-controller@3.0.0: @@ -9124,6 +9199,8 @@ snapshots: acorn@8.15.0: {} + acorn@8.16.0: {} + agent-base@6.0.2: dependencies: debug: 4.4.3 @@ -9310,11 +9387,11 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs2@0.4.16(@babel/core@7.28.6): + babel-plugin-polyfill-corejs2@0.4.17(@babel/core@7.28.6): dependencies: '@babel/compat-data': 7.29.0 '@babel/core': 7.28.6 - '@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.28.6) + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.28.6) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -9343,10 +9420,10 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.7(@babel/core@7.28.6): + babel-plugin-polyfill-regenerator@0.6.8(@babel/core@7.28.6): dependencies: '@babel/core': 7.28.6 - '@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.28.6) + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.28.6) transitivePeerDependencies: - supports-color optional: true @@ -9528,6 +9605,11 @@ snapshots: dependencies: balanced-match: 1.0.2 + brace-expansion@2.1.0: + dependencies: + balanced-match: 1.0.2 + optional: true + braces@3.0.3: dependencies: fill-range: 7.1.1 @@ -9946,7 +10028,7 @@ snapshots: dotenv-expand@11.0.7: dependencies: - dotenv: 16.6.1 + dotenv: 16.4.7 optional: true dotenv@16.4.7: @@ -9961,12 +10043,12 @@ snapshots: esbuild: 0.25.12 jiti: 2.6.1 - drizzle-orm@1.0.0-beta.16-ea816b6(patch_hash=0d4b2ce2163e4ccab257f772eeb8a6e395266b70ea6c6ce549bf47a1adee2a34)(@op-engineering/op-sqlite@15.2.5(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(@sinclair/typebox@0.34.48)(@types/mssql@9.1.9(@azure/core-client@1.10.1))(mssql@11.0.1(@azure/core-client@1.10.1))(zod@4.3.6): + drizzle-orm@1.0.0-beta.16-ea816b6(patch_hash=0d4b2ce2163e4ccab257f772eeb8a6e395266b70ea6c6ce549bf47a1adee2a34)(@op-engineering/op-sqlite@15.2.5(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(@sinclair/typebox@0.34.48)(@types/mssql@9.1.9(@azure/core-client@1.10.1))(mssql@11.0.1(@azure/core-client@1.10.1))(zod@4.3.6): dependencies: '@types/mssql': 9.1.9(@azure/core-client@1.10.1) mssql: 11.0.1(@azure/core-client@1.10.1) optionalDependencies: - '@op-engineering/op-sqlite': 15.2.5(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@op-engineering/op-sqlite': 15.2.5(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) '@sinclair/typebox': 0.34.48 zod: 4.3.6 @@ -10348,43 +10430,43 @@ snapshots: jest-mock: 30.2.0 jest-util: 30.2.0 - expo-asset@11.1.7(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + expo-asset@11.1.7(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: '@expo/image-utils': 0.7.6 - expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - expo-constants: 17.1.8(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) + expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + expo-constants: 17.1.8(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) transitivePeerDependencies: - supports-color optional: true - expo-constants@17.1.8(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)): + expo-constants@17.1.8(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)): dependencies: '@expo/config': 11.0.13 '@expo/env': 1.0.7 - expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) transitivePeerDependencies: - supports-color optional: true - expo-file-system@18.1.11(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)): + expo-file-system@18.1.11(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)): dependencies: - expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) optional: true - expo-font@13.3.2(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3): + expo-font@13.3.2(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3): dependencies: - expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) fontfaceobserver: 2.3.0 react: 19.2.3 optional: true - expo-keep-awake@14.1.4(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3): + expo-keep-awake@14.1.4(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3): dependencies: - expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + expo: 53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) react: 19.2.3 optional: true @@ -10404,7 +10486,7 @@ snapshots: invariant: 2.2.4 optional: true - expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: '@babel/runtime': 7.28.6 '@expo/cli': 0.24.11 @@ -10412,21 +10494,21 @@ snapshots: '@expo/config-plugins': 10.0.3 '@expo/fingerprint': 0.12.4 '@expo/metro-config': 0.20.13 - '@expo/vector-icons': 14.1.0(expo-font@13.3.2(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@expo/vector-icons': 14.1.0(expo-font@13.3.2(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) babel-preset-expo: 13.1.11(@babel/core@7.28.6) - expo-asset: 11.1.7(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - expo-constants: 17.1.8(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) - expo-file-system: 18.1.11(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) - expo-font: 13.3.2(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3) - expo-keep-awake: 14.1.4(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3) + expo-asset: 11.1.7(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + expo-constants: 17.1.8(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) + expo-file-system: 18.1.11(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)) + expo-font: 13.3.2(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3) + expo-keep-awake: 14.1.4(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react@19.2.3) expo-modules-autolinking: 2.1.9 expo-modules-core: 2.3.12 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-edge-to-edge: 1.6.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native-edge-to-edge: 1.6.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) whatwg-url-without-unicode: 8.0.0-3 optionalDependencies: - react-native-webview: 13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native-webview: 13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) transitivePeerDependencies: - '@babel/core' - babel-plugin-react-compiler @@ -10689,7 +10771,7 @@ snapshots: hermes-estree@0.32.0: {} - hermes-estree@0.33.3: {} + hermes-estree@0.35.0: {} hermes-parser@0.14.0: dependencies: @@ -10703,9 +10785,9 @@ snapshots: dependencies: hermes-estree: 0.32.0 - hermes-parser@0.33.3: + hermes-parser@0.35.0: dependencies: - hermes-estree: 0.33.3 + hermes-estree: 0.35.0 hoist-non-react-statics@3.3.2: dependencies: @@ -11624,11 +11706,12 @@ snapshots: transitivePeerDependencies: - supports-color - metro-babel-transformer@0.83.5: + metro-babel-transformer@0.83.7: dependencies: '@babel/core': 7.28.6 flow-enums-runtime: 0.0.6 - hermes-parser: 0.33.3 + hermes-parser: 0.35.0 + metro-cache-key: 0.83.7 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color @@ -11637,7 +11720,7 @@ snapshots: dependencies: flow-enums-runtime: 0.0.6 - metro-cache-key@0.83.5: + metro-cache-key@0.83.7: dependencies: flow-enums-runtime: 0.0.6 @@ -11650,12 +11733,12 @@ snapshots: transitivePeerDependencies: - supports-color - metro-cache@0.83.5: + metro-cache@0.83.7: dependencies: exponential-backoff: 3.1.3 flow-enums-runtime: 0.0.6 https-proxy-agent: 7.0.6 - metro-core: 0.83.5 + metro-core: 0.83.7 transitivePeerDependencies: - supports-color @@ -11674,16 +11757,16 @@ snapshots: - supports-color - utf-8-validate - metro-config@0.83.5: + metro-config@0.83.7: dependencies: connect: 3.7.0 flow-enums-runtime: 0.0.6 jest-validate: 29.7.0 - metro: 0.83.5 - metro-cache: 0.83.5 - metro-core: 0.83.5 - metro-runtime: 0.83.5 - yaml: 2.8.2 + metro: 0.83.7 + metro-cache: 0.83.7 + metro-core: 0.83.7 + metro-runtime: 0.83.7 + yaml: 2.8.3 transitivePeerDependencies: - bufferutil - supports-color @@ -11695,11 +11778,11 @@ snapshots: lodash.throttle: 4.1.1 metro-resolver: 0.83.3 - metro-core@0.83.5: + metro-core@0.83.7: dependencies: flow-enums-runtime: 0.0.6 lodash.throttle: 4.1.1 - metro-resolver: 0.83.5 + metro-resolver: 0.83.7 metro-file-map@0.83.3: dependencies: @@ -11715,7 +11798,7 @@ snapshots: transitivePeerDependencies: - supports-color - metro-file-map@0.83.5: + metro-file-map@0.83.7: dependencies: debug: 4.4.3 fb-watchman: 2.0.2 @@ -11734,10 +11817,10 @@ snapshots: flow-enums-runtime: 0.0.6 terser: 5.46.0 - metro-minify-terser@0.83.5: + metro-minify-terser@0.83.7: dependencies: flow-enums-runtime: 0.0.6 - terser: 5.46.0 + terser: 5.46.2 metro-react-native-babel-preset@0.77.0(@babel/core@7.28.6): dependencies: @@ -11797,7 +11880,7 @@ snapshots: dependencies: flow-enums-runtime: 0.0.6 - metro-resolver@0.83.5: + metro-resolver@0.83.7: dependencies: flow-enums-runtime: 0.0.6 @@ -11806,7 +11889,7 @@ snapshots: '@babel/runtime': 7.28.6 flow-enums-runtime: 0.0.6 - metro-runtime@0.83.5: + metro-runtime@0.83.7: dependencies: '@babel/runtime': 7.28.6 flow-enums-runtime: 0.0.6 @@ -11826,15 +11909,15 @@ snapshots: transitivePeerDependencies: - supports-color - metro-source-map@0.83.5: + metro-source-map@0.83.7: dependencies: '@babel/traverse': 7.29.0 '@babel/types': 7.29.0 flow-enums-runtime: 0.0.6 invariant: 2.2.4 - metro-symbolicate: 0.83.5 + metro-symbolicate: 0.83.7 nullthrows: 1.1.1 - ob1: 0.83.5 + ob1: 0.83.7 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: @@ -11851,11 +11934,11 @@ snapshots: transitivePeerDependencies: - supports-color - metro-symbolicate@0.83.5: + metro-symbolicate@0.83.7: dependencies: flow-enums-runtime: 0.0.6 invariant: 2.2.4 - metro-source-map: 0.83.5 + metro-source-map: 0.83.7 nullthrows: 1.1.1 source-map: 0.5.7 vlq: 1.0.1 @@ -11873,7 +11956,7 @@ snapshots: transitivePeerDependencies: - supports-color - metro-transform-plugins@0.83.5: + metro-transform-plugins@0.83.7: dependencies: '@babel/core': 7.28.6 '@babel/generator': 7.29.1 @@ -11904,20 +11987,20 @@ snapshots: - supports-color - utf-8-validate - metro-transform-worker@0.83.5: + metro-transform-worker@0.83.7: dependencies: '@babel/core': 7.28.6 '@babel/generator': 7.29.1 - '@babel/parser': 7.29.0 + '@babel/parser': 7.29.2 '@babel/types': 7.29.0 flow-enums-runtime: 0.0.6 - metro: 0.83.5 - metro-babel-transformer: 0.83.5 - metro-cache: 0.83.5 - metro-cache-key: 0.83.5 - metro-minify-terser: 0.83.5 - metro-source-map: 0.83.5 - metro-transform-plugins: 0.83.5 + metro: 0.83.7 + metro-babel-transformer: 0.83.7 + metro-cache: 0.83.7 + metro-cache-key: 0.83.7 + metro-minify-terser: 0.83.7 + metro-source-map: 0.83.7 + metro-transform-plugins: 0.83.7 nullthrows: 1.1.1 transitivePeerDependencies: - bufferutil @@ -11971,41 +12054,40 @@ snapshots: - supports-color - utf-8-validate - metro@0.83.5: + metro@0.83.7: dependencies: '@babel/code-frame': 7.29.0 '@babel/core': 7.28.6 '@babel/generator': 7.29.1 - '@babel/parser': 7.29.0 + '@babel/parser': 7.29.2 '@babel/template': 7.28.6 '@babel/traverse': 7.29.0 '@babel/types': 7.29.0 accepts: 2.0.0 - chalk: 4.1.2 ci-info: 2.0.0 connect: 3.7.0 debug: 4.4.3 error-stack-parser: 2.1.4 flow-enums-runtime: 0.0.6 graceful-fs: 4.2.11 - hermes-parser: 0.33.3 + hermes-parser: 0.35.0 image-size: 1.2.1 invariant: 2.2.4 jest-worker: 29.7.0 jsc-safe-url: 0.2.4 lodash.throttle: 4.1.1 - metro-babel-transformer: 0.83.5 - metro-cache: 0.83.5 - metro-cache-key: 0.83.5 - metro-config: 0.83.5 - metro-core: 0.83.5 - metro-file-map: 0.83.5 - metro-resolver: 0.83.5 - metro-runtime: 0.83.5 - metro-source-map: 0.83.5 - metro-symbolicate: 0.83.5 - metro-transform-plugins: 0.83.5 - metro-transform-worker: 0.83.5 + metro-babel-transformer: 0.83.7 + metro-cache: 0.83.7 + metro-cache-key: 0.83.7 + metro-config: 0.83.7 + metro-core: 0.83.7 + metro-file-map: 0.83.7 + metro-resolver: 0.83.7 + metro-runtime: 0.83.7 + metro-source-map: 0.83.7 + metro-symbolicate: 0.83.7 + metro-transform-plugins: 0.83.7 + metro-transform-worker: 0.83.7 mime-types: 3.0.2 nullthrows: 1.1.1 serialize-error: 2.1.0 @@ -12060,7 +12142,7 @@ snapshots: minimatch@9.0.9: dependencies: - brace-expansion: 2.0.2 + brace-expansion: 2.1.0 optional: true minimist@1.2.8: @@ -12129,7 +12211,7 @@ snapshots: dependencies: whatwg-url: 5.0.0 - node-forge@1.3.3: + node-forge@1.4.0: optional: true node-int64@0.4.0: {} @@ -12162,7 +12244,7 @@ snapshots: dependencies: flow-enums-runtime: 0.0.6 - ob1@0.83.5: + ob1@0.83.7: dependencies: flow-enums-runtime: 0.0.6 @@ -12360,7 +12442,7 @@ snapshots: picomatch@2.3.1: {} - picomatch@3.0.1: + picomatch@3.0.2: optional: true picomatch@4.0.3: {} @@ -12375,9 +12457,9 @@ snapshots: dependencies: find-up: 3.0.0 - plist@3.1.0: + plist@3.1.1: dependencies: - '@xmldom/xmldom': 0.8.11 + '@xmldom/xmldom': 0.9.10 base64-js: 1.5.1 xmlbuilder: 15.1.1 optional: true @@ -12479,10 +12561,10 @@ snapshots: strip-json-comments: 2.0.1 optional: true - react-airplay@1.2.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-airplay@1.2.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) react-devtools-core@6.1.5: dependencies: @@ -12508,125 +12590,125 @@ snapshots: react-is@19.2.4: {} - react-native-accessibility-settings@0.1.2(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-accessibility-settings@0.1.2(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-collapsible@1.6.2(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-collapsible@1.6.2(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) react-native-dotenv@3.4.11(@babel/runtime@7.28.6): dependencies: '@babel/runtime': 7.28.6 dotenv: 16.6.1 - react-native-edge-to-edge@1.6.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-edge-to-edge@1.6.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) optional: true - react-native-fs@2.20.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)): + react-native-fs@2.20.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)): dependencies: base-64: 0.1.0 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) utf8: 3.0.0 - react-native-gesture-handler@2.30.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-gesture-handler@2.30.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: '@egjs/hammerjs': 2.0.17 hoist-non-react-statics: 3.3.2 invariant: 2.2.4 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-is-edge-to-edge@1.2.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-is-edge-to-edge@1.2.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-localize@3.6.1(@expo/config-plugins@10.1.2)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-localize@3.6.1(@expo/config-plugins@10.1.2)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) optionalDependencies: '@expo/config-plugins': 10.1.2 - react-native-modal-datetime-picker@18.0.0(@react-native-community/datetimepicker@8.6.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)): + react-native-modal-datetime-picker@18.0.0(@react-native-community/datetimepicker@8.6.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)): dependencies: - '@react-native-community/datetimepicker': 8.6.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@react-native-community/datetimepicker': 8.6.0(expo@53.0.7(@babel/core@7.28.6)(react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) prop-types: 15.8.1 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-nitro-modules@0.33.9(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-nitro-modules@0.33.9(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-reanimated@4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-reanimated@4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-is-edge-to-edge: 1.2.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - react-native-worklets: 0.7.4(@babel/core@7.28.6)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native-is-edge-to-edge: 1.2.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native-worklets: 0.7.4(@babel/core@7.28.6)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) semver: 7.7.3 - react-native-safe-area-context@5.7.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-safe-area-context@5.7.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-screens@4.24.0(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-screens@4.24.0(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: react: 19.2.3 react-freeze: 1.0.4(react@19.2.3) - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) warn-once: 0.1.1 - react-native-shadow-2@7.1.2(react-native-svg@15.15.3(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)): + react-native-shadow-2@7.1.2(react-native-svg@15.15.3(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3)): dependencies: colord: 2.9.2 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-svg: 15.15.3(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native-svg: 15.15.3(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) - react-native-svg-transformer@1.5.2(react-native-svg@15.15.3(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(typescript@5.9.3): + react-native-svg-transformer@1.5.2(react-native-svg@15.15.3(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3))(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(typescript@5.9.3): dependencies: '@svgr/core': 8.1.0(typescript@5.9.3) '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.9.3)) '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.9.3))(typescript@5.9.3) path-dirname: 1.0.2 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-svg: 15.15.3(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native-svg: 15.15.3(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) transitivePeerDependencies: - supports-color - typescript - react-native-svg@15.15.3(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-svg@15.15.3(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: css-select: 5.2.2 css-tree: 1.1.3 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) warn-once: 0.1.1 - react-native-track-player@4.1.2(patch_hash=e7b3a1d9dfe94a2a6a4067d693dff8c4d67147057264361b27db20fd497ef184)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-track-player@4.1.2(patch_hash=e7b3a1d9dfe94a2a6a4067d693dff8c4d67147057264361b27db20fd497ef184)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) react-native-uuid@2.0.3: {} - react-native-webview@13.16.1(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-webview@13.16.1(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: escape-string-regexp: 4.0.0 invariant: 2.2.4 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) - react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): + react-native-worklets@0.7.4(@babel/core@7.28.6)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3): dependencies: '@babel/core': 7.28.6 '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.6) @@ -12640,21 +12722,21 @@ snapshots: '@babel/preset-typescript': 7.27.1(@babel/core@7.28.6) convert-source-map: 2.0.0 react: 19.2.3 - react-native: 0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) + react-native: 0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3) semver: 7.7.3 transitivePeerDependencies: - supports-color - react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3): + react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3): dependencies: '@jest/create-cache-key-function': 29.7.0 - '@react-native/assets-registry': 0.83.4 - '@react-native/codegen': 0.83.4(@babel/core@7.28.6) - '@react-native/community-cli-plugin': 0.83.4(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6)) - '@react-native/gradle-plugin': 0.83.4 - '@react-native/js-polyfills': 0.83.4 - '@react-native/normalize-colors': 0.83.4 - '@react-native/virtualized-lists': 0.83.4(@types/react@19.2.9)(react-native@0.83.4(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) + '@react-native/assets-registry': 0.83.9 + '@react-native/codegen': 0.83.9(@babel/core@7.28.6) + '@react-native/community-cli-plugin': 0.83.9(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6)) + '@react-native/gradle-plugin': 0.83.9 + '@react-native/js-polyfills': 0.83.9 + '@react-native/normalize-colors': 0.83.9 + '@react-native/virtualized-lists': 0.83.9(@types/react@19.2.9)(react-native@0.83.9(@babel/core@7.28.6)(@react-native-community/cli@20.1.2(typescript@5.9.3))(@react-native/metro-config@0.83.4(@babel/core@7.28.6))(@types/react@19.2.9)(react@19.2.3))(react@19.2.3) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -12668,8 +12750,8 @@ snapshots: invariant: 2.2.4 jest-environment-node: 29.7.0 memoize-one: 5.2.1 - metro-runtime: 0.83.3 - metro-source-map: 0.83.3 + metro-runtime: 0.83.7 + metro-source-map: 0.83.7 nullthrows: 1.1.1 pretty-format: 29.7.0 promise: 8.3.0 @@ -12823,6 +12905,14 @@ snapshots: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + resolve@1.22.12: + dependencies: + es-errors: 1.3.0 + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + optional: true + resolve@1.7.1: dependencies: path-parse: 1.0.7 @@ -12882,7 +12972,7 @@ snapshots: safer-buffer@2.1.2: {} - sax@1.5.0: + sax@1.6.0: optional: true scheduler@0.25.0: {} @@ -13002,7 +13092,7 @@ snapshots: dependencies: bplist-creator: 0.1.0 bplist-parser: 0.3.1 - plist: 3.1.0 + plist: 3.1.1 optional: true simple-swizzle@0.2.4: @@ -13019,7 +13109,7 @@ snapshots: astral-regex: 1.0.0 is-fullwidth-code-point: 2.0.0 - slugify@1.6.6: + slugify@1.6.9: optional: true snake-case@3.0.4: @@ -13231,7 +13321,7 @@ snapshots: csso: 5.0.5 picocolors: 1.1.1 - tar@7.5.10: + tar@7.5.13: dependencies: '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 @@ -13245,10 +13335,10 @@ snapshots: tedious@18.6.2(@azure/core-client@1.10.1): dependencies: '@azure/core-auth': 1.10.1 - '@azure/identity': 4.13.0 + '@azure/identity': 4.13.1 '@azure/keyvault-keys': 4.10.0(@azure/core-client@1.10.1) '@js-joda/core': 5.7.0 - '@types/node': 25.3.5 + '@types/node': 25.6.0 bl: 6.1.6 iconv-lite: 0.6.3 js-md4: 0.3.2 @@ -13261,10 +13351,10 @@ snapshots: tedious@19.2.1(@azure/core-client@1.10.1): dependencies: '@azure/core-auth': 1.10.1 - '@azure/identity': 4.13.0 + '@azure/identity': 4.13.1 '@azure/keyvault-keys': 4.10.0(@azure/core-client@1.10.1) '@js-joda/core': 5.7.0 - '@types/node': 25.3.5 + '@types/node': 25.6.0 bl: 6.1.6 iconv-lite: 0.7.2 js-md4: 0.3.2 @@ -13290,6 +13380,13 @@ snapshots: commander: 2.20.3 source-map-support: 0.5.21 + terser@5.46.2: + dependencies: + '@jridgewell/source-map': 0.3.11 + acorn: 8.16.0 + commander: 2.20.3 + source-map-support: 0.5.21 + test-exclude@6.0.0: dependencies: '@istanbuljs/schema': 0.1.3 @@ -13396,8 +13493,13 @@ snapshots: undici-types@7.18.2: {} + undici-types@7.19.2: {} + undici@6.23.0: {} + undici@6.25.0: + optional: true + unicode-canonical-property-names-ecmascript@2.0.1: {} unicode-match-property-ecmascript@2.0.0: @@ -13445,8 +13547,6 @@ snapshots: uuid@7.0.3: optional: true - uuid@8.3.2: {} - v8-to-istanbul@9.3.0: dependencies: '@jridgewell/trace-mapping': 0.3.31 @@ -13536,7 +13636,7 @@ snapshots: dependencies: isexe: 2.0.0 - wonka@6.3.5: + wonka@6.3.6: optional: true word-wrap@1.2.5: {} @@ -13573,7 +13673,7 @@ snapshots: ws@7.5.10: {} - ws@8.19.0: + ws@8.20.0: optional: true wsl-utils@0.1.0: @@ -13592,7 +13692,7 @@ snapshots: xml2js@0.6.0: dependencies: - sax: 1.5.0 + sax: 1.6.0 xmlbuilder: 11.0.1 optional: true @@ -13613,6 +13713,8 @@ snapshots: yaml@2.8.2: {} + yaml@2.8.3: {} + yargs-parser@18.1.3: dependencies: camelcase: 5.3.1