2017-03-09 15:26:28 +00:00
|
|
|
#ifndef RNFirebaseEvents_h
|
|
|
|
#define RNFirebaseEvents_h
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
2017-03-14 10:57:57 +00:00
|
|
|
static NSString *const AUTH_CHANGED_EVENT = @"onAuthStateChanged";
|
2017-03-09 15:26:28 +00:00
|
|
|
static NSString *const AUTH_ERROR_EVENT = @"authError";
|
|
|
|
static NSString *const AUTH_ANONYMOUS_ERROR_EVENT = @"authAnonymousError";
|
|
|
|
|
|
|
|
// Database
|
2017-08-14 10:05:49 +00:00
|
|
|
static NSString *const DATABASE_ON_EVENT = @"database_on_event";
|
|
|
|
static NSString *const DATABASE_CANCEL_EVENT = @"database_cancel_event";
|
2017-03-25 00:59:27 +00:00
|
|
|
static NSString *const DATABASE_TRANSACTION_EVENT = @"database_transaction_event";
|
2017-03-09 15:26:28 +00:00
|
|
|
|
|
|
|
static NSString *const DATABASE_VALUE_EVENT = @"value";
|
|
|
|
static NSString *const DATABASE_CHILD_ADDED_EVENT = @"child_added";
|
|
|
|
static NSString *const DATABASE_CHILD_MODIFIED_EVENT = @"child_changed";
|
|
|
|
static NSString *const DATABASE_CHILD_REMOVED_EVENT = @"child_removed";
|
|
|
|
static NSString *const DATABASE_CHILD_MOVED_EVENT = @"child_moved";
|
|
|
|
|
|
|
|
// Storage
|
|
|
|
static NSString *const STORAGE_EVENT = @"storage_event";
|
|
|
|
static NSString *const STORAGE_ERROR = @"storage_error";
|
|
|
|
|
|
|
|
static NSString *const STORAGE_STATE_CHANGED = @"state_changed";
|
|
|
|
static NSString *const STORAGE_UPLOAD_SUCCESS = @"upload_success";
|
|
|
|
static NSString *const STORAGE_UPLOAD_FAILURE = @"upload_failure";
|
|
|
|
static NSString *const STORAGE_DOWNLOAD_SUCCESS = @"download_success";
|
|
|
|
static NSString *const STORAGE_DOWNLOAD_FAILURE = @"download_failure";
|
|
|
|
|
|
|
|
// Messaging
|
2017-05-30 07:26:40 +00:00
|
|
|
static NSString *const MESSAGING_TOKEN_REFRESHED = @"messaging_token_refreshed";
|
|
|
|
static NSString *const MESSAGING_NOTIFICATION_RECEIVED = @"messaging_notification_received";
|
2017-03-09 15:26:28 +00:00
|
|
|
|
2017-06-05 16:00:59 +00:00
|
|
|
// AdMob
|
|
|
|
static NSString *const ADMOB_INTERSTITIAL_EVENT = @"interstitial_event";
|
|
|
|
static NSString *const ADMOB_REWARDED_VIDEO_EVENT = @"rewarded_video_event";
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
#endif
|