
Updates the sign-in API endpoint to `/simpos/v1/sign_in`. Captures the `set-cookie` header from successful sign-in responses and stores it as a `sessionId`. Persists the session ID using secure storage and includes it in subsequent API requests via the `Cookie` header for improved session management. Extends the `AuthModel` to include the new `sessionId` field. Enables navigation from the reception list to a new reception details page, passing the selected reception's ID. Refactors the `StockPickingCard` into a dedicated component and adds loading indicators to the reception list.
8 lines
313 B
Dart
8 lines
313 B
Dart
export 'drawer_component.dart';
|
|
export 'loading_progress_component.dart';
|
|
export 'primary_button_component.dart';
|
|
export 'product_scanned_component.dart';
|
|
export 'outline_button_component.dart';
|
|
export 'quick_action_component.dart';
|
|
export 'main_appbar_component.dart';
|
|
export 'stock_picking_card_component.dart'; |