- Removed data_connect package from mobile pubspec.yaml. - Added documentation for V2 profile migration status and QA findings. - Implemented new session management with ClientSessionStore and StaffSessionStore. - Created V2SessionService for handling user sessions via the V2 API. - Developed use cases for cancelling late worker assignments and submitting worker reviews. - Added arguments and use cases for payment chart retrieval and profile completion checks. - Implemented repository interfaces and their implementations for staff main and profile features. - Ensured proper error handling and validation in use cases.
41 lines
668 B
YAML
41 lines
668 B
YAML
name: billing
|
|
description: Client Billing feature package
|
|
publish_to: 'none'
|
|
version: 0.0.1
|
|
resolution: workspace
|
|
|
|
environment:
|
|
sdk: '>=3.10.0 <4.0.0'
|
|
|
|
dependencies:
|
|
flutter:
|
|
sdk: flutter
|
|
|
|
# Architecture
|
|
flutter_modular: ^6.3.2
|
|
flutter_bloc: ^8.1.3
|
|
equatable: ^2.0.5
|
|
|
|
# Shared packages
|
|
design_system:
|
|
path: ../../../design_system
|
|
core_localization:
|
|
path: ../../../core_localization
|
|
krow_domain:
|
|
path: ../../../domain
|
|
krow_core:
|
|
path: ../../../core
|
|
|
|
# UI
|
|
intl: ^0.20.0
|
|
|
|
dev_dependencies:
|
|
flutter_test:
|
|
sdk: flutter
|
|
flutter_lints: ^6.0.0
|
|
bloc_test: ^9.1.5
|
|
mocktail: ^1.0.1
|
|
|
|
flutter:
|
|
uses-material-design: true
|