lpw
2023-06-03 e0ec4235cc7b8d05ec1aaa414ec2d2cac798d74e
commit | author | age
e0ec42 1 #if 0
L 2 #elif defined(__arm64__) && __arm64__
3 // Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
4 #ifndef FBAEMKIT_SWIFT_H
5 #define FBAEMKIT_SWIFT_H
6 #pragma clang diagnostic push
7 #pragma clang diagnostic ignored "-Wgcc-compat"
8
9 #if !defined(__has_include)
10 # define __has_include(x) 0
11 #endif
12 #if !defined(__has_attribute)
13 # define __has_attribute(x) 0
14 #endif
15 #if !defined(__has_feature)
16 # define __has_feature(x) 0
17 #endif
18 #if !defined(__has_warning)
19 # define __has_warning(x) 0
20 #endif
21
22 #if __has_include(<swift/objc-prologue.h>)
23 # include <swift/objc-prologue.h>
24 #endif
25
26 #pragma clang diagnostic ignored "-Wduplicate-method-match"
27 #pragma clang diagnostic ignored "-Wauto-import"
28 #if defined(__OBJC__)
29 #include <Foundation/Foundation.h>
30 #endif
31 #if defined(__cplusplus)
32 #include <cstdint>
33 #include <cstddef>
34 #include <cstdbool>
35 #else
36 #include <stdint.h>
37 #include <stddef.h>
38 #include <stdbool.h>
39 #endif
40
41 #if !defined(SWIFT_TYPEDEFS)
42 # define SWIFT_TYPEDEFS 1
43 # if __has_include(<uchar.h>)
44 #  include <uchar.h>
45 # elif !defined(__cplusplus)
46 typedef uint_least16_t char16_t;
47 typedef uint_least32_t char32_t;
48 # endif
49 typedef float swift_float2  __attribute__((__ext_vector_type__(2)));
50 typedef float swift_float3  __attribute__((__ext_vector_type__(3)));
51 typedef float swift_float4  __attribute__((__ext_vector_type__(4)));
52 typedef double swift_double2  __attribute__((__ext_vector_type__(2)));
53 typedef double swift_double3  __attribute__((__ext_vector_type__(3)));
54 typedef double swift_double4  __attribute__((__ext_vector_type__(4)));
55 typedef int swift_int2  __attribute__((__ext_vector_type__(2)));
56 typedef int swift_int3  __attribute__((__ext_vector_type__(3)));
57 typedef int swift_int4  __attribute__((__ext_vector_type__(4)));
58 typedef unsigned int swift_uint2  __attribute__((__ext_vector_type__(2)));
59 typedef unsigned int swift_uint3  __attribute__((__ext_vector_type__(3)));
60 typedef unsigned int swift_uint4  __attribute__((__ext_vector_type__(4)));
61 #endif
62
63 #if !defined(SWIFT_PASTE)
64 # define SWIFT_PASTE_HELPER(x, y) x##y
65 # define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
66 #endif
67 #if !defined(SWIFT_METATYPE)
68 # define SWIFT_METATYPE(X) Class
69 #endif
70 #if !defined(SWIFT_CLASS_PROPERTY)
71 # if __has_feature(objc_class_property)
72 #  define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
73 # else
74 #  define SWIFT_CLASS_PROPERTY(...)
75 # endif
76 #endif
77
78 #if __has_attribute(objc_runtime_name)
79 # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
80 #else
81 # define SWIFT_RUNTIME_NAME(X)
82 #endif
83 #if __has_attribute(swift_name)
84 # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
85 #else
86 # define SWIFT_COMPILE_NAME(X)
87 #endif
88 #if __has_attribute(objc_method_family)
89 # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
90 #else
91 # define SWIFT_METHOD_FAMILY(X)
92 #endif
93 #if __has_attribute(noescape)
94 # define SWIFT_NOESCAPE __attribute__((noescape))
95 #else
96 # define SWIFT_NOESCAPE
97 #endif
98 #if __has_attribute(ns_consumed)
99 # define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
100 #else
101 # define SWIFT_RELEASES_ARGUMENT
102 #endif
103 #if __has_attribute(warn_unused_result)
104 # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
105 #else
106 # define SWIFT_WARN_UNUSED_RESULT
107 #endif
108 #if __has_attribute(noreturn)
109 # define SWIFT_NORETURN __attribute__((noreturn))
110 #else
111 # define SWIFT_NORETURN
112 #endif
113 #if !defined(SWIFT_CLASS_EXTRA)
114 # define SWIFT_CLASS_EXTRA
115 #endif
116 #if !defined(SWIFT_PROTOCOL_EXTRA)
117 # define SWIFT_PROTOCOL_EXTRA
118 #endif
119 #if !defined(SWIFT_ENUM_EXTRA)
120 # define SWIFT_ENUM_EXTRA
121 #endif
122 #if !defined(SWIFT_CLASS)
123 # if __has_attribute(objc_subclassing_restricted)
124 #  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
125 #  define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
126 # else
127 #  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
128 #  define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
129 # endif
130 #endif
131 #if !defined(SWIFT_RESILIENT_CLASS)
132 # if __has_attribute(objc_class_stub)
133 #  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
134 #  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
135 # else
136 #  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
137 #  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
138 # endif
139 #endif
140
141 #if !defined(SWIFT_PROTOCOL)
142 # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
143 # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
144 #endif
145
146 #if !defined(SWIFT_EXTENSION)
147 # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
148 #endif
149
150 #if !defined(OBJC_DESIGNATED_INITIALIZER)
151 # if __has_attribute(objc_designated_initializer)
152 #  define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
153 # else
154 #  define OBJC_DESIGNATED_INITIALIZER
155 # endif
156 #endif
157 #if !defined(SWIFT_ENUM_ATTR)
158 # if defined(__has_attribute) && __has_attribute(enum_extensibility)
159 #  define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
160 # else
161 #  define SWIFT_ENUM_ATTR(_extensibility)
162 # endif
163 #endif
164 #if !defined(SWIFT_ENUM)
165 # define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
166 # if __has_feature(generalized_swift_name)
167 #  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
168 # else
169 #  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
170 # endif
171 #endif
172 #if !defined(SWIFT_UNAVAILABLE)
173 # define SWIFT_UNAVAILABLE __attribute__((unavailable))
174 #endif
175 #if !defined(SWIFT_UNAVAILABLE_MSG)
176 # define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
177 #endif
178 #if !defined(SWIFT_AVAILABILITY)
179 # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
180 #endif
181 #if !defined(SWIFT_WEAK_IMPORT)
182 # define SWIFT_WEAK_IMPORT __attribute__((weak_import))
183 #endif
184 #if !defined(SWIFT_DEPRECATED)
185 # define SWIFT_DEPRECATED __attribute__((deprecated))
186 #endif
187 #if !defined(SWIFT_DEPRECATED_MSG)
188 # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
189 #endif
190 #if __has_feature(attribute_diagnose_if_objc)
191 # define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
192 #else
193 # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
194 #endif
195 #if defined(__OBJC__)
196 #if !defined(IBSegueAction)
197 # define IBSegueAction
198 #endif
199 #endif
200 #if !defined(SWIFT_EXTERN)
201 # if defined(__cplusplus)
202 #  define SWIFT_EXTERN extern "C"
203 # else
204 #  define SWIFT_EXTERN extern
205 # endif
206 #endif
207 #if !defined(SWIFT_CALL)
208 # define SWIFT_CALL __attribute__((swiftcall))
209 #endif
210 #if defined(__cplusplus)
211 #if !defined(SWIFT_NOEXCEPT)
212 # define SWIFT_NOEXCEPT noexcept
213 #endif
214 #else
215 #if !defined(SWIFT_NOEXCEPT)
216 # define SWIFT_NOEXCEPT 
217 #endif
218 #endif
219 #if defined(__cplusplus)
220 #if !defined(SWIFT_CXX_INT_DEFINED)
221 #define SWIFT_CXX_INT_DEFINED
222 namespace swift {
223 using Int = ptrdiff_t;
224 using UInt = size_t;
225 }
226 #endif
227 #endif
228 #if defined(__OBJC__)
229 #if __has_feature(modules)
230 #if __has_warning("-Watimport-in-framework-header")
231 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
232 #endif
233 @import Foundation;
234 @import ObjectiveC;
235 #endif
236
237 #endif
238 #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
239 #pragma clang diagnostic ignored "-Wduplicate-method-arg"
240 #if __has_warning("-Wpragma-clang-attribute")
241 # pragma clang diagnostic ignored "-Wpragma-clang-attribute"
242 #endif
243 #pragma clang diagnostic ignored "-Wunknown-pragmas"
244 #pragma clang diagnostic ignored "-Wnullability"
245 #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
246
247 #if __has_attribute(external_source_symbol)
248 # pragma push_macro("any")
249 # undef any
250 # pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBAEMKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
251 # pragma pop_macro("any")
252 #endif
253
254 #if defined(__OBJC__)
255 @class NSString;
256
257 SWIFT_PROTOCOL_NAMED("AEMNetworking")
258 @protocol FBAEMNetworking
259 - (void)startGraphRequestWithGraphPath:(NSString * _Nonnull)graphPath parameters:(NSDictionary<NSString *, id> * _Nonnull)parameters tokenString:(NSString * _Nullable)tokenString HTTPMethod:(NSString * _Nullable)method completion:(void (^ _Nonnull)(id _Nullable, NSError * _Nullable))completion;
260 @end
261
262 @protocol FBSKAdNetworkReporting;
263 @protocol FBSDKDataPersisting;
264 @class NSURL;
265 @class NSNumber;
266
267 SWIFT_CLASS_NAMED("AEMReporter")
268 @interface FBAEMReporter : NSObject
269 + (void)configureWithNetworker:(id <FBAEMNetworking> _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id <FBSKAdNetworkReporting> _Nullable)reporter;
270 + (void)configureWithNetworker:(id <FBAEMNetworking> _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id <FBSKAdNetworkReporting> _Nullable)reporter analyticsAppID:(NSString * _Nullable)analyticsAppID store:(id <FBSDKDataPersisting> _Nullable)store;
271 /// Enable AEM reporting
272 /// This function should be called in application(_:open:options:) from ApplicationDelegate
273 + (void)enable;
274 /// Control whether to enable conversion filtering
275 /// This function should be called in <code>application(_:open:options:)</code> from ApplicationDelegate
276 + (void)setConversionFilteringEnabled:(BOOL)enabled;
277 /// Control whether to enable catalog matching
278 /// This function should be called in <code>application(_:open:options:)</code> from ApplicationDelegate
279 + (void)setCatalogMatchingEnabled:(BOOL)enabled;
280 /// Control whether to enable advertiser rule match enabled in server side. This is expected
281 /// to be called internally by FB SDK and will be removed in the future
282 /// This function should be called in <code>application(_:open:options:)</code> from ApplicationDelegate
283 + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)enabled;
284 /// Handle deeplink
285 /// This function should be called in <code>application(_:open:options:) </code>from ApplicationDelegate
286 + (void)handle:(NSURL * _Nonnull)url;
287 /// Calculate the conversion value for the app event based on the AEM configuration
288 /// This function should be called when you log any in-app events
289 + (void)recordAndUpdateEvent:(NSString * _Nonnull)event currency:(NSString * _Nullable)currency value:(NSNumber * _Nullable)value parameters:(NSDictionary<NSString *, id> * _Nullable)parameters;
290 - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
291 @end
292
293
294 SWIFT_PROTOCOL_NAMED("SKAdNetworkReporting")
295 @protocol FBSKAdNetworkReporting
296 - (BOOL)shouldCutoff SWIFT_WARN_UNUSED_RESULT;
297 - (BOOL)isReportingEvent:(NSString * _Nonnull)event SWIFT_WARN_UNUSED_RESULT;
298 - (void)checkAndRevokeTimer;
299 @end
300
301 #endif
302 #if defined(__cplusplus)
303 #endif
304 #if __has_attribute(external_source_symbol)
305 # pragma clang attribute pop
306 #endif
307 #pragma clang diagnostic pop
308 #endif
309
310 #elif defined(__x86_64__) && __x86_64__
311 // Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
312 #ifndef FBAEMKIT_SWIFT_H
313 #define FBAEMKIT_SWIFT_H
314 #pragma clang diagnostic push
315 #pragma clang diagnostic ignored "-Wgcc-compat"
316
317 #if !defined(__has_include)
318 # define __has_include(x) 0
319 #endif
320 #if !defined(__has_attribute)
321 # define __has_attribute(x) 0
322 #endif
323 #if !defined(__has_feature)
324 # define __has_feature(x) 0
325 #endif
326 #if !defined(__has_warning)
327 # define __has_warning(x) 0
328 #endif
329
330 #if __has_include(<swift/objc-prologue.h>)
331 # include <swift/objc-prologue.h>
332 #endif
333
334 #pragma clang diagnostic ignored "-Wduplicate-method-match"
335 #pragma clang diagnostic ignored "-Wauto-import"
336 #if defined(__OBJC__)
337 #include <Foundation/Foundation.h>
338 #endif
339 #if defined(__cplusplus)
340 #include <cstdint>
341 #include <cstddef>
342 #include <cstdbool>
343 #else
344 #include <stdint.h>
345 #include <stddef.h>
346 #include <stdbool.h>
347 #endif
348
349 #if !defined(SWIFT_TYPEDEFS)
350 # define SWIFT_TYPEDEFS 1
351 # if __has_include(<uchar.h>)
352 #  include <uchar.h>
353 # elif !defined(__cplusplus)
354 typedef uint_least16_t char16_t;
355 typedef uint_least32_t char32_t;
356 # endif
357 typedef float swift_float2  __attribute__((__ext_vector_type__(2)));
358 typedef float swift_float3  __attribute__((__ext_vector_type__(3)));
359 typedef float swift_float4  __attribute__((__ext_vector_type__(4)));
360 typedef double swift_double2  __attribute__((__ext_vector_type__(2)));
361 typedef double swift_double3  __attribute__((__ext_vector_type__(3)));
362 typedef double swift_double4  __attribute__((__ext_vector_type__(4)));
363 typedef int swift_int2  __attribute__((__ext_vector_type__(2)));
364 typedef int swift_int3  __attribute__((__ext_vector_type__(3)));
365 typedef int swift_int4  __attribute__((__ext_vector_type__(4)));
366 typedef unsigned int swift_uint2  __attribute__((__ext_vector_type__(2)));
367 typedef unsigned int swift_uint3  __attribute__((__ext_vector_type__(3)));
368 typedef unsigned int swift_uint4  __attribute__((__ext_vector_type__(4)));
369 #endif
370
371 #if !defined(SWIFT_PASTE)
372 # define SWIFT_PASTE_HELPER(x, y) x##y
373 # define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
374 #endif
375 #if !defined(SWIFT_METATYPE)
376 # define SWIFT_METATYPE(X) Class
377 #endif
378 #if !defined(SWIFT_CLASS_PROPERTY)
379 # if __has_feature(objc_class_property)
380 #  define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
381 # else
382 #  define SWIFT_CLASS_PROPERTY(...)
383 # endif
384 #endif
385
386 #if __has_attribute(objc_runtime_name)
387 # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
388 #else
389 # define SWIFT_RUNTIME_NAME(X)
390 #endif
391 #if __has_attribute(swift_name)
392 # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
393 #else
394 # define SWIFT_COMPILE_NAME(X)
395 #endif
396 #if __has_attribute(objc_method_family)
397 # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
398 #else
399 # define SWIFT_METHOD_FAMILY(X)
400 #endif
401 #if __has_attribute(noescape)
402 # define SWIFT_NOESCAPE __attribute__((noescape))
403 #else
404 # define SWIFT_NOESCAPE
405 #endif
406 #if __has_attribute(ns_consumed)
407 # define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
408 #else
409 # define SWIFT_RELEASES_ARGUMENT
410 #endif
411 #if __has_attribute(warn_unused_result)
412 # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
413 #else
414 # define SWIFT_WARN_UNUSED_RESULT
415 #endif
416 #if __has_attribute(noreturn)
417 # define SWIFT_NORETURN __attribute__((noreturn))
418 #else
419 # define SWIFT_NORETURN
420 #endif
421 #if !defined(SWIFT_CLASS_EXTRA)
422 # define SWIFT_CLASS_EXTRA
423 #endif
424 #if !defined(SWIFT_PROTOCOL_EXTRA)
425 # define SWIFT_PROTOCOL_EXTRA
426 #endif
427 #if !defined(SWIFT_ENUM_EXTRA)
428 # define SWIFT_ENUM_EXTRA
429 #endif
430 #if !defined(SWIFT_CLASS)
431 # if __has_attribute(objc_subclassing_restricted)
432 #  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
433 #  define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
434 # else
435 #  define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
436 #  define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
437 # endif
438 #endif
439 #if !defined(SWIFT_RESILIENT_CLASS)
440 # if __has_attribute(objc_class_stub)
441 #  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
442 #  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
443 # else
444 #  define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
445 #  define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
446 # endif
447 #endif
448
449 #if !defined(SWIFT_PROTOCOL)
450 # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
451 # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
452 #endif
453
454 #if !defined(SWIFT_EXTENSION)
455 # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
456 #endif
457
458 #if !defined(OBJC_DESIGNATED_INITIALIZER)
459 # if __has_attribute(objc_designated_initializer)
460 #  define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
461 # else
462 #  define OBJC_DESIGNATED_INITIALIZER
463 # endif
464 #endif
465 #if !defined(SWIFT_ENUM_ATTR)
466 # if defined(__has_attribute) && __has_attribute(enum_extensibility)
467 #  define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
468 # else
469 #  define SWIFT_ENUM_ATTR(_extensibility)
470 # endif
471 #endif
472 #if !defined(SWIFT_ENUM)
473 # define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
474 # if __has_feature(generalized_swift_name)
475 #  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
476 # else
477 #  define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
478 # endif
479 #endif
480 #if !defined(SWIFT_UNAVAILABLE)
481 # define SWIFT_UNAVAILABLE __attribute__((unavailable))
482 #endif
483 #if !defined(SWIFT_UNAVAILABLE_MSG)
484 # define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
485 #endif
486 #if !defined(SWIFT_AVAILABILITY)
487 # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
488 #endif
489 #if !defined(SWIFT_WEAK_IMPORT)
490 # define SWIFT_WEAK_IMPORT __attribute__((weak_import))
491 #endif
492 #if !defined(SWIFT_DEPRECATED)
493 # define SWIFT_DEPRECATED __attribute__((deprecated))
494 #endif
495 #if !defined(SWIFT_DEPRECATED_MSG)
496 # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
497 #endif
498 #if __has_feature(attribute_diagnose_if_objc)
499 # define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
500 #else
501 # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
502 #endif
503 #if defined(__OBJC__)
504 #if !defined(IBSegueAction)
505 # define IBSegueAction
506 #endif
507 #endif
508 #if !defined(SWIFT_EXTERN)
509 # if defined(__cplusplus)
510 #  define SWIFT_EXTERN extern "C"
511 # else
512 #  define SWIFT_EXTERN extern
513 # endif
514 #endif
515 #if !defined(SWIFT_CALL)
516 # define SWIFT_CALL __attribute__((swiftcall))
517 #endif
518 #if defined(__cplusplus)
519 #if !defined(SWIFT_NOEXCEPT)
520 # define SWIFT_NOEXCEPT noexcept
521 #endif
522 #else
523 #if !defined(SWIFT_NOEXCEPT)
524 # define SWIFT_NOEXCEPT 
525 #endif
526 #endif
527 #if defined(__cplusplus)
528 #if !defined(SWIFT_CXX_INT_DEFINED)
529 #define SWIFT_CXX_INT_DEFINED
530 namespace swift {
531 using Int = ptrdiff_t;
532 using UInt = size_t;
533 }
534 #endif
535 #endif
536 #if defined(__OBJC__)
537 #if __has_feature(modules)
538 #if __has_warning("-Watimport-in-framework-header")
539 #pragma clang diagnostic ignored "-Watimport-in-framework-header"
540 #endif
541 @import Foundation;
542 @import ObjectiveC;
543 #endif
544
545 #endif
546 #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
547 #pragma clang diagnostic ignored "-Wduplicate-method-arg"
548 #if __has_warning("-Wpragma-clang-attribute")
549 # pragma clang diagnostic ignored "-Wpragma-clang-attribute"
550 #endif
551 #pragma clang diagnostic ignored "-Wunknown-pragmas"
552 #pragma clang diagnostic ignored "-Wnullability"
553 #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
554
555 #if __has_attribute(external_source_symbol)
556 # pragma push_macro("any")
557 # undef any
558 # pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBAEMKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
559 # pragma pop_macro("any")
560 #endif
561
562 #if defined(__OBJC__)
563 @class NSString;
564
565 SWIFT_PROTOCOL_NAMED("AEMNetworking")
566 @protocol FBAEMNetworking
567 - (void)startGraphRequestWithGraphPath:(NSString * _Nonnull)graphPath parameters:(NSDictionary<NSString *, id> * _Nonnull)parameters tokenString:(NSString * _Nullable)tokenString HTTPMethod:(NSString * _Nullable)method completion:(void (^ _Nonnull)(id _Nullable, NSError * _Nullable))completion;
568 @end
569
570 @protocol FBSKAdNetworkReporting;
571 @protocol FBSDKDataPersisting;
572 @class NSURL;
573 @class NSNumber;
574
575 SWIFT_CLASS_NAMED("AEMReporter")
576 @interface FBAEMReporter : NSObject
577 + (void)configureWithNetworker:(id <FBAEMNetworking> _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id <FBSKAdNetworkReporting> _Nullable)reporter;
578 + (void)configureWithNetworker:(id <FBAEMNetworking> _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id <FBSKAdNetworkReporting> _Nullable)reporter analyticsAppID:(NSString * _Nullable)analyticsAppID store:(id <FBSDKDataPersisting> _Nullable)store;
579 /// Enable AEM reporting
580 /// This function should be called in application(_:open:options:) from ApplicationDelegate
581 + (void)enable;
582 /// Control whether to enable conversion filtering
583 /// This function should be called in <code>application(_:open:options:)</code> from ApplicationDelegate
584 + (void)setConversionFilteringEnabled:(BOOL)enabled;
585 /// Control whether to enable catalog matching
586 /// This function should be called in <code>application(_:open:options:)</code> from ApplicationDelegate
587 + (void)setCatalogMatchingEnabled:(BOOL)enabled;
588 /// Control whether to enable advertiser rule match enabled in server side. This is expected
589 /// to be called internally by FB SDK and will be removed in the future
590 /// This function should be called in <code>application(_:open:options:)</code> from ApplicationDelegate
591 + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)enabled;
592 /// Handle deeplink
593 /// This function should be called in <code>application(_:open:options:) </code>from ApplicationDelegate
594 + (void)handle:(NSURL * _Nonnull)url;
595 /// Calculate the conversion value for the app event based on the AEM configuration
596 /// This function should be called when you log any in-app events
597 + (void)recordAndUpdateEvent:(NSString * _Nonnull)event currency:(NSString * _Nullable)currency value:(NSNumber * _Nullable)value parameters:(NSDictionary<NSString *, id> * _Nullable)parameters;
598 - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
599 @end
600
601
602 SWIFT_PROTOCOL_NAMED("SKAdNetworkReporting")
603 @protocol FBSKAdNetworkReporting
604 - (BOOL)shouldCutoff SWIFT_WARN_UNUSED_RESULT;
605 - (BOOL)isReportingEvent:(NSString * _Nonnull)event SWIFT_WARN_UNUSED_RESULT;
606 - (void)checkAndRevokeTimer;
607 @end
608
609 #endif
610 #if defined(__cplusplus)
611 #endif
612 #if __has_attribute(external_source_symbol)
613 # pragma clang attribute pop
614 #endif
615 #pragma clang diagnostic pop
616 #endif
617
618 #else
619 #error unsupported Swift architecture
620 #endif