react-native-cliqit 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/README.md +209 -0
  2. package/android/build.gradle +27 -0
  3. package/android/src/main/AndroidManifest.xml +1 -0
  4. package/android/src/main/java/com/cliqit/CliqItModule.kt +242 -0
  5. package/android/src/main/java/com/cliqit/CliqItPackage.kt +14 -0
  6. package/android/src/main/java/com/cliqit/sdk/CliqItDefaults.kt +17 -0
  7. package/android/src/main/java/com/cliqit/sdk/CliqItDeviceInfo.kt +196 -0
  8. package/android/src/main/java/com/cliqit/sdk/CliqItHttp.kt +98 -0
  9. package/android/src/main/java/com/cliqit/sdk/CliqItModels.kt +130 -0
  10. package/android/src/main/java/com/cliqit/sdk/CliqItSDK.kt +514 -0
  11. package/android/src/main/java/com/cliqit/sdk/CliqItWebFingerprint.kt +230 -0
  12. package/ios/CliqItModule.m +14 -0
  13. package/ios/CliqItModule.swift +238 -0
  14. package/ios/Frameworks/CliqIt.xcframework/Info.plist +44 -0
  15. package/ios/Frameworks/CliqIt.xcframework/ios-arm64/CliqIt.framework/CliqIt +0 -0
  16. package/ios/Frameworks/CliqIt.xcframework/ios-arm64/CliqIt.framework/Headers/CliqIt-Swift.h +382 -0
  17. package/ios/Frameworks/CliqIt.xcframework/ios-arm64/CliqIt.framework/Info.plist +0 -0
  18. package/ios/Frameworks/CliqIt.xcframework/ios-arm64/CliqIt.framework/Modules/CliqIt.swiftmodule/arm64-apple-ios.abi.json +12111 -0
  19. package/ios/Frameworks/CliqIt.xcframework/ios-arm64/CliqIt.framework/Modules/CliqIt.swiftmodule/arm64-apple-ios.private.swiftinterface +419 -0
  20. package/ios/Frameworks/CliqIt.xcframework/ios-arm64/CliqIt.framework/Modules/CliqIt.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  21. package/ios/Frameworks/CliqIt.xcframework/ios-arm64/CliqIt.framework/Modules/CliqIt.swiftmodule/arm64-apple-ios.swiftinterface +419 -0
  22. package/ios/Frameworks/CliqIt.xcframework/ios-arm64/CliqIt.framework/Modules/module.modulemap +3 -0
  23. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/CliqIt +0 -0
  24. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/Headers/CliqIt-Swift.h +760 -0
  25. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/Info.plist +0 -0
  26. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/Modules/CliqIt.swiftmodule/arm64-apple-ios-simulator.abi.json +12111 -0
  27. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/Modules/CliqIt.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +419 -0
  28. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/Modules/CliqIt.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  29. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/Modules/CliqIt.swiftmodule/arm64-apple-ios-simulator.swiftinterface +419 -0
  30. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/Modules/CliqIt.swiftmodule/x86_64-apple-ios-simulator.abi.json +12111 -0
  31. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/Modules/CliqIt.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +419 -0
  32. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/Modules/CliqIt.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  33. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/Modules/CliqIt.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +419 -0
  34. package/ios/Frameworks/CliqIt.xcframework/ios-arm64_x86_64-simulator/CliqIt.framework/Modules/module.modulemap +3 -0
  35. package/package.json +48 -0
  36. package/react-native-cliqit.podspec +27 -0
  37. package/react-native.config.js +11 -0
  38. package/src/index.d.ts +92 -0
  39. package/src/index.js +152 -0
@@ -0,0 +1,760 @@
1
+ #if 0
2
+ #elif defined(__arm64__) && __arm64__
3
+ // Generated by Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
4
+ #ifndef CLIQIT_SWIFT_H
5
+ #define CLIQIT_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 "-Wauto-import"
27
+ #if defined(__OBJC__)
28
+ #include <Foundation/Foundation.h>
29
+ #endif // defined(__OBJC__)
30
+ #if defined(__cplusplus)
31
+ #include <cstdint>
32
+ #include <cstddef>
33
+ #include <cstdbool>
34
+ #include <cstring>
35
+ #include <stdlib.h>
36
+ #include <new>
37
+ #include <type_traits>
38
+ #else
39
+ #include <stdint.h>
40
+ #include <stddef.h>
41
+ #include <stdbool.h>
42
+ #include <string.h>
43
+ #endif
44
+ #if defined(__cplusplus)
45
+ #pragma clang diagnostic push
46
+ #pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
47
+ #if defined(__arm64e__) && __has_include(<ptrauth.h>)
48
+ # include <ptrauth.h>
49
+ #else
50
+ #pragma clang diagnostic push
51
+ #pragma clang diagnostic ignored "-Wreserved-macro-identifier"
52
+ # ifndef __ptrauth_swift_value_witness_function_pointer
53
+ # define __ptrauth_swift_value_witness_function_pointer(x)
54
+ # endif
55
+ # ifndef __ptrauth_swift_class_method_pointer
56
+ # define __ptrauth_swift_class_method_pointer(x)
57
+ # endif
58
+ #pragma clang diagnostic pop
59
+ #endif
60
+ #pragma clang diagnostic pop
61
+ #endif
62
+
63
+ #if !defined(SWIFT_TYPEDEFS)
64
+ # define SWIFT_TYPEDEFS 1
65
+ # if __has_include(<uchar.h>)
66
+ # include <uchar.h>
67
+ # elif !defined(__cplusplus)
68
+ typedef unsigned char char8_t;
69
+ typedef uint_least16_t char16_t;
70
+ typedef uint_least32_t char32_t;
71
+ # endif
72
+ typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
73
+ typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
74
+ typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
75
+ typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
76
+ typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
77
+ typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
78
+ typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
79
+ typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
80
+ typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
81
+ typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
82
+ typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
83
+ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
84
+ #endif
85
+
86
+ #if !defined(SWIFT_PASTE)
87
+ # define SWIFT_PASTE_HELPER(x, y) x##y
88
+ # define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
89
+ #endif
90
+ #if !defined(SWIFT_METATYPE)
91
+ # define SWIFT_METATYPE(X) Class
92
+ #endif
93
+ #if !defined(SWIFT_CLASS_PROPERTY)
94
+ # if __has_feature(objc_class_property)
95
+ # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
96
+ # else
97
+ # define SWIFT_CLASS_PROPERTY(...)
98
+ # endif
99
+ #endif
100
+ #if !defined(SWIFT_RUNTIME_NAME)
101
+ # if __has_attribute(objc_runtime_name)
102
+ # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
103
+ # else
104
+ # define SWIFT_RUNTIME_NAME(X)
105
+ # endif
106
+ #endif
107
+ #if !defined(SWIFT_COMPILE_NAME)
108
+ # if __has_attribute(swift_name)
109
+ # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
110
+ # else
111
+ # define SWIFT_COMPILE_NAME(X)
112
+ # endif
113
+ #endif
114
+ #if !defined(SWIFT_METHOD_FAMILY)
115
+ # if __has_attribute(objc_method_family)
116
+ # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
117
+ # else
118
+ # define SWIFT_METHOD_FAMILY(X)
119
+ # endif
120
+ #endif
121
+ #if !defined(SWIFT_NOESCAPE)
122
+ # if __has_attribute(noescape)
123
+ # define SWIFT_NOESCAPE __attribute__((noescape))
124
+ # else
125
+ # define SWIFT_NOESCAPE
126
+ # endif
127
+ #endif
128
+ #if !defined(SWIFT_RELEASES_ARGUMENT)
129
+ # if __has_attribute(ns_consumed)
130
+ # define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
131
+ # else
132
+ # define SWIFT_RELEASES_ARGUMENT
133
+ # endif
134
+ #endif
135
+ #if !defined(SWIFT_WARN_UNUSED_RESULT)
136
+ # if __has_attribute(warn_unused_result)
137
+ # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
138
+ # else
139
+ # define SWIFT_WARN_UNUSED_RESULT
140
+ # endif
141
+ #endif
142
+ #if !defined(SWIFT_NORETURN)
143
+ # if __has_attribute(noreturn)
144
+ # define SWIFT_NORETURN __attribute__((noreturn))
145
+ # else
146
+ # define SWIFT_NORETURN
147
+ # endif
148
+ #endif
149
+ #if !defined(SWIFT_CLASS_EXTRA)
150
+ # define SWIFT_CLASS_EXTRA
151
+ #endif
152
+ #if !defined(SWIFT_PROTOCOL_EXTRA)
153
+ # define SWIFT_PROTOCOL_EXTRA
154
+ #endif
155
+ #if !defined(SWIFT_ENUM_EXTRA)
156
+ # define SWIFT_ENUM_EXTRA
157
+ #endif
158
+ #if !defined(SWIFT_CLASS)
159
+ # if __has_attribute(objc_subclassing_restricted)
160
+ # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
161
+ # define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
162
+ # else
163
+ # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
164
+ # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
165
+ # endif
166
+ #endif
167
+ #if !defined(SWIFT_RESILIENT_CLASS)
168
+ # if __has_attribute(objc_class_stub)
169
+ # define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
170
+ # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
171
+ # else
172
+ # define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
173
+ # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
174
+ # endif
175
+ #endif
176
+ #if !defined(SWIFT_PROTOCOL)
177
+ # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
178
+ # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
179
+ #endif
180
+ #if !defined(SWIFT_EXTENSION)
181
+ # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
182
+ #endif
183
+ #if !defined(OBJC_DESIGNATED_INITIALIZER)
184
+ # if __has_attribute(objc_designated_initializer)
185
+ # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
186
+ # else
187
+ # define OBJC_DESIGNATED_INITIALIZER
188
+ # endif
189
+ #endif
190
+ #if !defined(SWIFT_ENUM_ATTR)
191
+ # if __has_attribute(enum_extensibility)
192
+ # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
193
+ # else
194
+ # define SWIFT_ENUM_ATTR(_extensibility)
195
+ # endif
196
+ #endif
197
+ #if !defined(SWIFT_ENUM)
198
+ # if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum)
199
+ # define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
200
+ # if __has_feature(generalized_swift_name)
201
+ # 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
202
+ # else
203
+ # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
204
+ # endif
205
+ # else
206
+ # define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum
207
+ # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
208
+ # endif
209
+ #endif
210
+ #if !defined(SWIFT_ENUM_TAG)
211
+ # if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum)
212
+ # define SWIFT_ENUM_TAG enum
213
+ # else
214
+ # define SWIFT_ENUM_TAG
215
+ # endif
216
+ #endif
217
+ #if !defined(SWIFT_ENUM_FWD_DECL)
218
+ # if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum)
219
+ # define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type;
220
+ # else
221
+ # define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name;
222
+ # endif
223
+ #endif
224
+ #if !defined(SWIFT_UNAVAILABLE)
225
+ # define SWIFT_UNAVAILABLE __attribute__((unavailable))
226
+ #endif
227
+ #if !defined(SWIFT_UNAVAILABLE_MSG)
228
+ # define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
229
+ #endif
230
+ #if !defined(SWIFT_AVAILABILITY)
231
+ # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
232
+ #endif
233
+ #if !defined(SWIFT_AVAILABILITY_DOMAIN)
234
+ # define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__)))
235
+ #endif
236
+ #if !defined(SWIFT_WEAK_IMPORT)
237
+ # define SWIFT_WEAK_IMPORT __attribute__((weak_import))
238
+ #endif
239
+ #if !defined(SWIFT_DEPRECATED)
240
+ # define SWIFT_DEPRECATED __attribute__((deprecated))
241
+ #endif
242
+ #if !defined(SWIFT_DEPRECATED_MSG)
243
+ # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
244
+ #endif
245
+ #if !defined(SWIFT_DEPRECATED_OBJC)
246
+ # if __has_feature(attribute_diagnose_if_objc)
247
+ # define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
248
+ # else
249
+ # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
250
+ # endif
251
+ #endif
252
+ #if defined(__OBJC__)
253
+ #if !defined(IBSegueAction)
254
+ # define IBSegueAction
255
+ #endif
256
+ #endif
257
+ #if !defined(SWIFT_EXTERN)
258
+ # if defined(__cplusplus)
259
+ # define SWIFT_EXTERN extern "C"
260
+ # else
261
+ # define SWIFT_EXTERN extern
262
+ # endif
263
+ #endif
264
+ #if !defined(SWIFT_CALL)
265
+ # define SWIFT_CALL __attribute__((swiftcall))
266
+ #endif
267
+ #if !defined(SWIFT_INDIRECT_RESULT)
268
+ # define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
269
+ #endif
270
+ #if !defined(SWIFT_CONTEXT)
271
+ # define SWIFT_CONTEXT __attribute__((swift_context))
272
+ #endif
273
+ #if !defined(SWIFT_ERROR_RESULT)
274
+ # define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
275
+ #endif
276
+ #if defined(__cplusplus)
277
+ # define SWIFT_NOEXCEPT noexcept
278
+ #else
279
+ # define SWIFT_NOEXCEPT
280
+ #endif
281
+ #if !defined(SWIFT_C_INLINE_THUNK)
282
+ # if __has_attribute(always_inline)
283
+ # if __has_attribute(nodebug)
284
+ # define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
285
+ # else
286
+ # define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
287
+ # endif
288
+ # else
289
+ # define SWIFT_C_INLINE_THUNK inline
290
+ # endif
291
+ #endif
292
+ #if defined(_WIN32)
293
+ #if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
294
+ # define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
295
+ #endif
296
+ #else
297
+ #if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
298
+ # define SWIFT_IMPORT_STDLIB_SYMBOL
299
+ #endif
300
+ #endif
301
+ #if !__has_feature(nullability)
302
+ # define _Nonnull
303
+ # define _Nullable
304
+ # define _Null_unspecified
305
+ #elif !defined(__OBJC__)
306
+ # pragma clang diagnostic ignored "-Wnullability-extension"
307
+ #endif
308
+ #if !__has_feature(nullability_nullable_result)
309
+ # define _Nullable_result _Nullable
310
+ #endif
311
+ #if __has_feature(objc_modules)
312
+ #if __has_warning("-Watimport-in-framework-header")
313
+ #pragma clang diagnostic ignored "-Watimport-in-framework-header"
314
+ #endif
315
+ #endif
316
+
317
+ #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
318
+ #pragma clang diagnostic ignored "-Wduplicate-method-arg"
319
+ #if __has_warning("-Wpragma-clang-attribute")
320
+ # pragma clang diagnostic ignored "-Wpragma-clang-attribute"
321
+ #endif
322
+ #pragma clang diagnostic ignored "-Wunknown-pragmas"
323
+ #pragma clang diagnostic ignored "-Wnullability"
324
+ #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
325
+ #pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
326
+
327
+ #if __has_attribute(external_source_symbol)
328
+ # pragma push_macro("any")
329
+ # undef any
330
+ # pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="CliqIt",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
331
+ # pragma pop_macro("any")
332
+ #endif
333
+
334
+ #if defined(__cplusplus)
335
+ extern "C" {
336
+ #endif
337
+
338
+ #if defined(__cplusplus)
339
+ } // extern "C"
340
+ #endif
341
+ #if __has_attribute(external_source_symbol)
342
+ # pragma clang attribute pop
343
+ #endif
344
+ #if defined(__OBJC__)
345
+ #if __has_feature(objc_modules)
346
+ #if __has_warning("-Watimport-in-framework-header")
347
+ #pragma clang diagnostic ignored "-Watimport-in-framework-header"
348
+ #endif
349
+ #endif
350
+
351
+ #endif // defined(__OBJC__)
352
+ #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
353
+ #pragma clang diagnostic ignored "-Wduplicate-method-arg"
354
+ #if __has_warning("-Wpragma-clang-attribute")
355
+ # pragma clang diagnostic ignored "-Wpragma-clang-attribute"
356
+ #endif
357
+ #pragma clang diagnostic ignored "-Wunknown-pragmas"
358
+ #pragma clang diagnostic ignored "-Wnullability"
359
+ #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
360
+ #pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
361
+
362
+ #if __has_attribute(external_source_symbol)
363
+ # pragma push_macro("any")
364
+ # undef any
365
+ # pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="CliqIt",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
366
+ # pragma pop_macro("any")
367
+ #endif
368
+
369
+ #if defined(__OBJC__)
370
+
371
+ #endif // defined(__OBJC__)
372
+ #if __has_attribute(external_source_symbol)
373
+ # pragma clang attribute pop
374
+ #endif
375
+ #if defined(__cplusplus)
376
+ #endif
377
+ #pragma clang diagnostic pop
378
+ #endif
379
+
380
+ #elif defined(__x86_64__) && __x86_64__
381
+ // Generated by Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
382
+ #ifndef CLIQIT_SWIFT_H
383
+ #define CLIQIT_SWIFT_H
384
+ #pragma clang diagnostic push
385
+ #pragma clang diagnostic ignored "-Wgcc-compat"
386
+
387
+ #if !defined(__has_include)
388
+ # define __has_include(x) 0
389
+ #endif
390
+ #if !defined(__has_attribute)
391
+ # define __has_attribute(x) 0
392
+ #endif
393
+ #if !defined(__has_feature)
394
+ # define __has_feature(x) 0
395
+ #endif
396
+ #if !defined(__has_warning)
397
+ # define __has_warning(x) 0
398
+ #endif
399
+
400
+ #if __has_include(<swift/objc-prologue.h>)
401
+ # include <swift/objc-prologue.h>
402
+ #endif
403
+
404
+ #pragma clang diagnostic ignored "-Wauto-import"
405
+ #if defined(__OBJC__)
406
+ #include <Foundation/Foundation.h>
407
+ #endif // defined(__OBJC__)
408
+ #if defined(__cplusplus)
409
+ #include <cstdint>
410
+ #include <cstddef>
411
+ #include <cstdbool>
412
+ #include <cstring>
413
+ #include <stdlib.h>
414
+ #include <new>
415
+ #include <type_traits>
416
+ #else
417
+ #include <stdint.h>
418
+ #include <stddef.h>
419
+ #include <stdbool.h>
420
+ #include <string.h>
421
+ #endif
422
+ #if defined(__cplusplus)
423
+ #pragma clang diagnostic push
424
+ #pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
425
+ #if defined(__arm64e__) && __has_include(<ptrauth.h>)
426
+ # include <ptrauth.h>
427
+ #else
428
+ #pragma clang diagnostic push
429
+ #pragma clang diagnostic ignored "-Wreserved-macro-identifier"
430
+ # ifndef __ptrauth_swift_value_witness_function_pointer
431
+ # define __ptrauth_swift_value_witness_function_pointer(x)
432
+ # endif
433
+ # ifndef __ptrauth_swift_class_method_pointer
434
+ # define __ptrauth_swift_class_method_pointer(x)
435
+ # endif
436
+ #pragma clang diagnostic pop
437
+ #endif
438
+ #pragma clang diagnostic pop
439
+ #endif
440
+
441
+ #if !defined(SWIFT_TYPEDEFS)
442
+ # define SWIFT_TYPEDEFS 1
443
+ # if __has_include(<uchar.h>)
444
+ # include <uchar.h>
445
+ # elif !defined(__cplusplus)
446
+ typedef unsigned char char8_t;
447
+ typedef uint_least16_t char16_t;
448
+ typedef uint_least32_t char32_t;
449
+ # endif
450
+ typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
451
+ typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
452
+ typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
453
+ typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
454
+ typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
455
+ typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
456
+ typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
457
+ typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
458
+ typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
459
+ typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
460
+ typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
461
+ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
462
+ #endif
463
+
464
+ #if !defined(SWIFT_PASTE)
465
+ # define SWIFT_PASTE_HELPER(x, y) x##y
466
+ # define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
467
+ #endif
468
+ #if !defined(SWIFT_METATYPE)
469
+ # define SWIFT_METATYPE(X) Class
470
+ #endif
471
+ #if !defined(SWIFT_CLASS_PROPERTY)
472
+ # if __has_feature(objc_class_property)
473
+ # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
474
+ # else
475
+ # define SWIFT_CLASS_PROPERTY(...)
476
+ # endif
477
+ #endif
478
+ #if !defined(SWIFT_RUNTIME_NAME)
479
+ # if __has_attribute(objc_runtime_name)
480
+ # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
481
+ # else
482
+ # define SWIFT_RUNTIME_NAME(X)
483
+ # endif
484
+ #endif
485
+ #if !defined(SWIFT_COMPILE_NAME)
486
+ # if __has_attribute(swift_name)
487
+ # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
488
+ # else
489
+ # define SWIFT_COMPILE_NAME(X)
490
+ # endif
491
+ #endif
492
+ #if !defined(SWIFT_METHOD_FAMILY)
493
+ # if __has_attribute(objc_method_family)
494
+ # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
495
+ # else
496
+ # define SWIFT_METHOD_FAMILY(X)
497
+ # endif
498
+ #endif
499
+ #if !defined(SWIFT_NOESCAPE)
500
+ # if __has_attribute(noescape)
501
+ # define SWIFT_NOESCAPE __attribute__((noescape))
502
+ # else
503
+ # define SWIFT_NOESCAPE
504
+ # endif
505
+ #endif
506
+ #if !defined(SWIFT_RELEASES_ARGUMENT)
507
+ # if __has_attribute(ns_consumed)
508
+ # define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
509
+ # else
510
+ # define SWIFT_RELEASES_ARGUMENT
511
+ # endif
512
+ #endif
513
+ #if !defined(SWIFT_WARN_UNUSED_RESULT)
514
+ # if __has_attribute(warn_unused_result)
515
+ # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
516
+ # else
517
+ # define SWIFT_WARN_UNUSED_RESULT
518
+ # endif
519
+ #endif
520
+ #if !defined(SWIFT_NORETURN)
521
+ # if __has_attribute(noreturn)
522
+ # define SWIFT_NORETURN __attribute__((noreturn))
523
+ # else
524
+ # define SWIFT_NORETURN
525
+ # endif
526
+ #endif
527
+ #if !defined(SWIFT_CLASS_EXTRA)
528
+ # define SWIFT_CLASS_EXTRA
529
+ #endif
530
+ #if !defined(SWIFT_PROTOCOL_EXTRA)
531
+ # define SWIFT_PROTOCOL_EXTRA
532
+ #endif
533
+ #if !defined(SWIFT_ENUM_EXTRA)
534
+ # define SWIFT_ENUM_EXTRA
535
+ #endif
536
+ #if !defined(SWIFT_CLASS)
537
+ # if __has_attribute(objc_subclassing_restricted)
538
+ # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
539
+ # define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
540
+ # else
541
+ # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
542
+ # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
543
+ # endif
544
+ #endif
545
+ #if !defined(SWIFT_RESILIENT_CLASS)
546
+ # if __has_attribute(objc_class_stub)
547
+ # define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
548
+ # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
549
+ # else
550
+ # define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
551
+ # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
552
+ # endif
553
+ #endif
554
+ #if !defined(SWIFT_PROTOCOL)
555
+ # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
556
+ # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
557
+ #endif
558
+ #if !defined(SWIFT_EXTENSION)
559
+ # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
560
+ #endif
561
+ #if !defined(OBJC_DESIGNATED_INITIALIZER)
562
+ # if __has_attribute(objc_designated_initializer)
563
+ # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
564
+ # else
565
+ # define OBJC_DESIGNATED_INITIALIZER
566
+ # endif
567
+ #endif
568
+ #if !defined(SWIFT_ENUM_ATTR)
569
+ # if __has_attribute(enum_extensibility)
570
+ # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
571
+ # else
572
+ # define SWIFT_ENUM_ATTR(_extensibility)
573
+ # endif
574
+ #endif
575
+ #if !defined(SWIFT_ENUM)
576
+ # if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum)
577
+ # define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
578
+ # if __has_feature(generalized_swift_name)
579
+ # 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
580
+ # else
581
+ # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
582
+ # endif
583
+ # else
584
+ # define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum
585
+ # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
586
+ # endif
587
+ #endif
588
+ #if !defined(SWIFT_ENUM_TAG)
589
+ # if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum)
590
+ # define SWIFT_ENUM_TAG enum
591
+ # else
592
+ # define SWIFT_ENUM_TAG
593
+ # endif
594
+ #endif
595
+ #if !defined(SWIFT_ENUM_FWD_DECL)
596
+ # if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum)
597
+ # define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type;
598
+ # else
599
+ # define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name;
600
+ # endif
601
+ #endif
602
+ #if !defined(SWIFT_UNAVAILABLE)
603
+ # define SWIFT_UNAVAILABLE __attribute__((unavailable))
604
+ #endif
605
+ #if !defined(SWIFT_UNAVAILABLE_MSG)
606
+ # define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
607
+ #endif
608
+ #if !defined(SWIFT_AVAILABILITY)
609
+ # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
610
+ #endif
611
+ #if !defined(SWIFT_AVAILABILITY_DOMAIN)
612
+ # define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__)))
613
+ #endif
614
+ #if !defined(SWIFT_WEAK_IMPORT)
615
+ # define SWIFT_WEAK_IMPORT __attribute__((weak_import))
616
+ #endif
617
+ #if !defined(SWIFT_DEPRECATED)
618
+ # define SWIFT_DEPRECATED __attribute__((deprecated))
619
+ #endif
620
+ #if !defined(SWIFT_DEPRECATED_MSG)
621
+ # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
622
+ #endif
623
+ #if !defined(SWIFT_DEPRECATED_OBJC)
624
+ # if __has_feature(attribute_diagnose_if_objc)
625
+ # define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
626
+ # else
627
+ # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
628
+ # endif
629
+ #endif
630
+ #if defined(__OBJC__)
631
+ #if !defined(IBSegueAction)
632
+ # define IBSegueAction
633
+ #endif
634
+ #endif
635
+ #if !defined(SWIFT_EXTERN)
636
+ # if defined(__cplusplus)
637
+ # define SWIFT_EXTERN extern "C"
638
+ # else
639
+ # define SWIFT_EXTERN extern
640
+ # endif
641
+ #endif
642
+ #if !defined(SWIFT_CALL)
643
+ # define SWIFT_CALL __attribute__((swiftcall))
644
+ #endif
645
+ #if !defined(SWIFT_INDIRECT_RESULT)
646
+ # define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
647
+ #endif
648
+ #if !defined(SWIFT_CONTEXT)
649
+ # define SWIFT_CONTEXT __attribute__((swift_context))
650
+ #endif
651
+ #if !defined(SWIFT_ERROR_RESULT)
652
+ # define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
653
+ #endif
654
+ #if defined(__cplusplus)
655
+ # define SWIFT_NOEXCEPT noexcept
656
+ #else
657
+ # define SWIFT_NOEXCEPT
658
+ #endif
659
+ #if !defined(SWIFT_C_INLINE_THUNK)
660
+ # if __has_attribute(always_inline)
661
+ # if __has_attribute(nodebug)
662
+ # define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
663
+ # else
664
+ # define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
665
+ # endif
666
+ # else
667
+ # define SWIFT_C_INLINE_THUNK inline
668
+ # endif
669
+ #endif
670
+ #if defined(_WIN32)
671
+ #if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
672
+ # define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
673
+ #endif
674
+ #else
675
+ #if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
676
+ # define SWIFT_IMPORT_STDLIB_SYMBOL
677
+ #endif
678
+ #endif
679
+ #if !__has_feature(nullability)
680
+ # define _Nonnull
681
+ # define _Nullable
682
+ # define _Null_unspecified
683
+ #elif !defined(__OBJC__)
684
+ # pragma clang diagnostic ignored "-Wnullability-extension"
685
+ #endif
686
+ #if !__has_feature(nullability_nullable_result)
687
+ # define _Nullable_result _Nullable
688
+ #endif
689
+ #if __has_feature(objc_modules)
690
+ #if __has_warning("-Watimport-in-framework-header")
691
+ #pragma clang diagnostic ignored "-Watimport-in-framework-header"
692
+ #endif
693
+ #endif
694
+
695
+ #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
696
+ #pragma clang diagnostic ignored "-Wduplicate-method-arg"
697
+ #if __has_warning("-Wpragma-clang-attribute")
698
+ # pragma clang diagnostic ignored "-Wpragma-clang-attribute"
699
+ #endif
700
+ #pragma clang diagnostic ignored "-Wunknown-pragmas"
701
+ #pragma clang diagnostic ignored "-Wnullability"
702
+ #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
703
+ #pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
704
+
705
+ #if __has_attribute(external_source_symbol)
706
+ # pragma push_macro("any")
707
+ # undef any
708
+ # pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="CliqIt",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
709
+ # pragma pop_macro("any")
710
+ #endif
711
+
712
+ #if defined(__cplusplus)
713
+ extern "C" {
714
+ #endif
715
+
716
+ #if defined(__cplusplus)
717
+ } // extern "C"
718
+ #endif
719
+ #if __has_attribute(external_source_symbol)
720
+ # pragma clang attribute pop
721
+ #endif
722
+ #if defined(__OBJC__)
723
+ #if __has_feature(objc_modules)
724
+ #if __has_warning("-Watimport-in-framework-header")
725
+ #pragma clang diagnostic ignored "-Watimport-in-framework-header"
726
+ #endif
727
+ #endif
728
+
729
+ #endif // defined(__OBJC__)
730
+ #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
731
+ #pragma clang diagnostic ignored "-Wduplicate-method-arg"
732
+ #if __has_warning("-Wpragma-clang-attribute")
733
+ # pragma clang diagnostic ignored "-Wpragma-clang-attribute"
734
+ #endif
735
+ #pragma clang diagnostic ignored "-Wunknown-pragmas"
736
+ #pragma clang diagnostic ignored "-Wnullability"
737
+ #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
738
+ #pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
739
+
740
+ #if __has_attribute(external_source_symbol)
741
+ # pragma push_macro("any")
742
+ # undef any
743
+ # pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="CliqIt",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
744
+ # pragma pop_macro("any")
745
+ #endif
746
+
747
+ #if defined(__OBJC__)
748
+
749
+ #endif // defined(__OBJC__)
750
+ #if __has_attribute(external_source_symbol)
751
+ # pragma clang attribute pop
752
+ #endif
753
+ #if defined(__cplusplus)
754
+ #endif
755
+ #pragma clang diagnostic pop
756
+ #endif
757
+
758
+ #else
759
+ #error unsupported Swift architecture
760
+ #endif