Add support for transcribing and parsing rapid (urgent) orders into one-time order drafts. Introduces ParseRapidOrderTextToOrderUseCase and wiring for TranscribeRapidOrderUseCase, implements parseRapidOrder and transcribeRapidOrder in the client repository, and injects these into the RapidOrderBloc and module. Adds the record package dependency and registers the record plugin for iOS/macOS targets. Updates OneTimeOrder state, bloc and views to handle rapid-order drafts and navigate to the one-time order flow after parsing. Also includes small formatting and navigator changes.
71 lines
2.2 KiB
Objective-C
71 lines
2.2 KiB
Objective-C
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#import "GeneratedPluginRegistrant.h"
|
|
|
|
#if __has_include(<file_picker/FilePickerPlugin.h>)
|
|
#import <file_picker/FilePickerPlugin.h>
|
|
#else
|
|
@import file_picker;
|
|
#endif
|
|
|
|
#if __has_include(<firebase_app_check/FLTFirebaseAppCheckPlugin.h>)
|
|
#import <firebase_app_check/FLTFirebaseAppCheckPlugin.h>
|
|
#else
|
|
@import firebase_app_check;
|
|
#endif
|
|
|
|
#if __has_include(<firebase_auth/FLTFirebaseAuthPlugin.h>)
|
|
#import <firebase_auth/FLTFirebaseAuthPlugin.h>
|
|
#else
|
|
@import firebase_auth;
|
|
#endif
|
|
|
|
#if __has_include(<firebase_core/FLTFirebaseCorePlugin.h>)
|
|
#import <firebase_core/FLTFirebaseCorePlugin.h>
|
|
#else
|
|
@import firebase_core;
|
|
#endif
|
|
|
|
#if __has_include(<image_picker_ios/FLTImagePickerPlugin.h>)
|
|
#import <image_picker_ios/FLTImagePickerPlugin.h>
|
|
#else
|
|
@import image_picker_ios;
|
|
#endif
|
|
|
|
#if __has_include(<record_ios/RecordIosPlugin.h>)
|
|
#import <record_ios/RecordIosPlugin.h>
|
|
#else
|
|
@import record_ios;
|
|
#endif
|
|
|
|
#if __has_include(<shared_preferences_foundation/SharedPreferencesPlugin.h>)
|
|
#import <shared_preferences_foundation/SharedPreferencesPlugin.h>
|
|
#else
|
|
@import shared_preferences_foundation;
|
|
#endif
|
|
|
|
#if __has_include(<url_launcher_ios/URLLauncherPlugin.h>)
|
|
#import <url_launcher_ios/URLLauncherPlugin.h>
|
|
#else
|
|
@import url_launcher_ios;
|
|
#endif
|
|
|
|
@implementation GeneratedPluginRegistrant
|
|
|
|
+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry {
|
|
[FilePickerPlugin registerWithRegistrar:[registry registrarForPlugin:@"FilePickerPlugin"]];
|
|
[FLTFirebaseAppCheckPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTFirebaseAppCheckPlugin"]];
|
|
[FLTFirebaseAuthPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTFirebaseAuthPlugin"]];
|
|
[FLTFirebaseCorePlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTFirebaseCorePlugin"]];
|
|
[FLTImagePickerPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTImagePickerPlugin"]];
|
|
[RecordIosPlugin registerWithRegistrar:[registry registrarForPlugin:@"RecordIosPlugin"]];
|
|
[SharedPreferencesPlugin registerWithRegistrar:[registry registrarForPlugin:@"SharedPreferencesPlugin"]];
|
|
[URLLauncherPlugin registerWithRegistrar:[registry registrarForPlugin:@"URLLauncherPlugin"]];
|
|
}
|
|
|
|
@end
|