المجلدات وأسماء حزم dart واستيراداتها: siro_rider → intaleq_rider siro_driver → intaleq_driver siro_admin → intaleq_admin siro_service → intaleq_service شمل ذلك `name:` في كل pubspec وكل `package:siro_*` في الاستيرادات (115 ملفاً في rider وحده)، وإشارات أسماء المجلدات في docs/ وتعليق في backend/Admin/notifications/broadcast.php. لم تبقَ إشارة واحدة (تحقّقت). + ضُمّت حزم get و get_storage داخل intaleq_driver/packages/ وحُوّلت مساراتها الثلاثة من `../../Intaleq/packages/*` إلى `./packages/*`. كانت تُحل عرضاً إلى مجلد App/Intaleq القديم المجاور — تبعية خارج المستودع تنكسر بأول نقل. لم يبقَ في أي تطبيق تبعية مسار خارج الشجرة. ⚠️ لم تُمسّ بعد: هويات المتاجر (applicationId · PRODUCT_BUNDLE_IDENTIFIER · shorebird app_id) ولا الألوان ولا النصوص المرئية ولا النطاقات — كل منها كوميت منفصل، والهويات تحتاج قرار المالك. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
85 lines
4.0 KiB
Dart
85 lines
4.0 KiB
Dart
class BoxName {
|
|
static const String driverID = "driverID";
|
|
static const String countryCode = "countryCode";
|
|
static const String googlaMapApp = "googlaMapApp";
|
|
|
|
static const String lang = "lang";
|
|
static const String carType = "carType";
|
|
static const String carPlate = "carPlate";
|
|
static const String statusDriverLocation = "statusDriverLocation";
|
|
static const String password = "password";
|
|
static const String keyOfApp = 'keyOfApp';
|
|
static const String initializationVector = 'initializationVector';
|
|
static const String firstTimeLoadKey = 'firstTimeLoadKey';
|
|
static const String jwt = "jwt";
|
|
static const String phoneVerified = "phoneVerified";
|
|
static const String adminPhone = "adminPhone";
|
|
static const String hmac = "hmac";
|
|
static const String fingerPrint = "fingerPrint";
|
|
static const String payMobApikey = "payMobApikey";
|
|
static const String refreshToken = "refreshToken";
|
|
static const String arrivalTime = "arrivalTime";
|
|
static const String passwordDriver = "passwordDriver";
|
|
static const String agreeTerms = "agreeTerms";
|
|
static const String serverChosen = "serverChosen";
|
|
static const String addWork = 'addWork';
|
|
static const String addHome = 'addHome';
|
|
static const String tipPercentage = 'tipPercentage';
|
|
|
|
static const String faceDetectTimes = "faceDetectTimes";
|
|
static const String sosPhonePassenger = "sosPhonePassenger";
|
|
static const String sosPhoneDriver = "sosPhoneDriver";
|
|
static const String passengerID = "pasengerID";
|
|
static const String phone = "phone";
|
|
static const String phoneDriver = "phoneDriver";
|
|
static const String dobDriver = "dobDriver";
|
|
static const String sexDriver = "sexDriver";
|
|
static const String lastNameDriver = "lastNameDriver";
|
|
static const String name = "name";
|
|
static const String nameDriver = "nameDriver";
|
|
static const String driverPhotoUrl = "driverPhotoUrl";
|
|
static const String email = "email";
|
|
static const String emailDriver = "emailDriver";
|
|
static const String tokens = "tokens";
|
|
static const String tokensDrivers = "tokensDrivers";
|
|
static const String tokensPassengers = "tokensPassengers";
|
|
static const String tokenFCM = "tokenFCM";
|
|
static const String tokenDriver = "tokenDriver";
|
|
static const String cardNumber = "cardNumber";
|
|
static const String cardNumberDriver = "cardNumberDriver";
|
|
static const String cardHolderName = "cardHolderName";
|
|
static const String cardHolderNameDriver = "cardHolderNameDriver";
|
|
static const String expiryDate = "expiryDate";
|
|
static const String expiryDateDriver = "expiryDateDriver";
|
|
static const String cvvCode = "cvvCode";
|
|
static const String cvvCodeDriver = "cvvCodeDriver";
|
|
static const String passengerWalletDetails = "passengerWalletDetails";
|
|
static const String passengerWalletTotal = "passengerWalletTotal";
|
|
static const String passengerWalletFound = "passengerWalletFound";
|
|
static const String periods = 'periods';
|
|
static const String onBoarding = 'onBoarding';
|
|
|
|
static const String apiKeyRun = 'apiKeyRun';
|
|
static const String serverAPI = 'serverAPI';
|
|
static const String secretKey = 'secretKey';
|
|
static const String basicAuthCredentials = 'basicAuthCredentials';
|
|
static const String mapAPIKEY = 'mapAPIKEY';
|
|
static const String twilloRecoveryCode = 'twilloRecoveryCode';
|
|
static const String accountSIDTwillo = 'accountSIDTwillo';
|
|
static const String authTokenTwillo = 'authTokenTwillo';
|
|
static const String chatGPTkey = 'chatGPTkey';
|
|
static const String chatGPTkeySefer = 'chatGPTkeySefer';
|
|
static const String transactionCloude = 'transactionCloude';
|
|
static const String visionApi = 'visionApi';
|
|
static const String vin = "vin";
|
|
static const String make = "make";
|
|
static const String model = "model";
|
|
static const String year = "year";
|
|
static const String expirationDate = "expirationDate";
|
|
static const String color = "color";
|
|
static const String owner = "owner";
|
|
static const String registrationDate = "registrationDate";
|
|
static const String recentLocations = 'recentLocations';
|
|
static const String tripData = 'tripData';
|
|
}
|