commit | author | age
|
e0ec42
|
1 |
/* |
L |
2 |
* Copyright (c) Meta Platforms, Inc. and affiliates. |
|
3 |
* All rights reserved. |
|
4 |
* |
|
5 |
* This source code is licensed under the license found in the |
|
6 |
* LICENSE file in the root directory of this source tree. |
|
7 |
*/ |
|
8 |
|
|
9 |
#if !TARGET_OS_TV |
|
10 |
|
|
11 |
#import <Foundation/Foundation.h> |
|
12 |
|
|
13 |
NS_ASSUME_NONNULL_BEGIN |
|
14 |
|
|
15 |
/** |
|
16 |
Internal value exposed to facilitate transition to Swift. |
|
17 |
API Subject to change or removal without warning. Do not use. |
|
18 |
|
|
19 |
@warning INTERNAL - DO NOT USE |
|
20 |
|
|
21 |
The name of the notification posted by FBSDKMeasurementEvent |
|
22 |
*/ |
|
23 |
FOUNDATION_EXPORT NSNotificationName const FBSDKMeasurementEventNotification |
|
24 |
NS_SWIFT_NAME(MeasurementEvent); |
|
25 |
|
|
26 |
/** |
|
27 |
Internal value exposed to facilitate transition to Swift. |
|
28 |
API Subject to change or removal without warning. Do not use. |
|
29 |
|
|
30 |
@warning INTERNAL - DO NOT USE |
|
31 |
|
|
32 |
Events raised by FBSDKMeasurementEvent for Applink |
|
33 |
The name of the event posted when [FBSDKURL URLWithURL:] is called successfully. This represents the successful parsing of an app link URL. |
|
34 |
*/ |
|
35 |
FOUNDATION_EXPORT NSString *const FBSDKAppLinkParseEventName |
|
36 |
NS_SWIFT_NAME(AppLinkParseEventName); |
|
37 |
|
|
38 |
/** |
|
39 |
Internal value exposed to facilitate transition to Swift. |
|
40 |
API Subject to change or removal without warning. Do not use. |
|
41 |
|
|
42 |
@warning INTERNAL - DO NOT USE |
|
43 |
|
|
44 |
The name of the event posted when [FBSDKURL URLWithInboundURL:] is called successfully. |
|
45 |
This represents parsing an inbound app link URL from a different application |
|
46 |
*/ |
|
47 |
FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateInEventName |
|
48 |
NS_SWIFT_NAME(AppLinkNavigateInEventName); |
|
49 |
|
|
50 |
/** |
|
51 |
Internal value exposed to facilitate transition to Swift. |
|
52 |
API Subject to change or removal without warning. Do not use. |
|
53 |
|
|
54 |
@warning INTERNAL - DO NOT USE |
|
55 |
|
|
56 |
The event raised when the user navigates from your app to other apps |
|
57 |
*/ |
|
58 |
FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateOutEventName |
|
59 |
NS_SWIFT_NAME(AppLinkNavigateOutEventName); |
|
60 |
|
|
61 |
/** |
|
62 |
Internal value exposed to facilitate transition to Swift. |
|
63 |
API Subject to change or removal without warning. Do not use. |
|
64 |
|
|
65 |
@warning INTERNAL - DO NOT USE |
|
66 |
|
|
67 |
The event raised when the user navigates out from your app and back to the referrer app. |
|
68 |
e.g when the user leaves your app after tapping the back-to-referrer navigation bar |
|
69 |
*/ |
|
70 |
FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateBackToReferrerEventName |
|
71 |
NS_SWIFT_NAME(AppLinkNavigateBackToReferrerEventName); |
|
72 |
|
|
73 |
NS_ASSUME_NONNULL_END |
|
74 |
|
|
75 |
#endif |