react-native-firework-sdk 2.10.1 → 2.11.0

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 (158) hide show
  1. package/android/gradle.properties +1 -1
  2. package/android/src/main/java/com/fireworksdk/bridge/components/storyblock/StoryBlockFragment.kt +18 -1
  3. package/android/src/main/java/com/fireworksdk/bridge/components/videofeed/FWVideoFeed.kt +4 -0
  4. package/android/src/main/java/com/fireworksdk/bridge/models/FWSDKInitOptionsModel.kt +0 -1
  5. package/android/src/main/java/com/fireworksdk/bridge/models/FWSDKInitOptionsModelDeserializer.kt +0 -3
  6. package/android/src/main/java/com/fireworksdk/bridge/models/FWSDKInitOptionsModelSerializer.kt +0 -2
  7. package/android/src/main/java/com/fireworksdk/bridge/models/FWSdkInitResultModel.kt +6 -0
  8. package/android/src/main/java/com/fireworksdk/bridge/models/FWTrackPurchaseModel.kt +9 -0
  9. package/android/src/main/java/com/fireworksdk/bridge/models/FWTrackPurchaseModelDeserializer.kt +45 -0
  10. package/android/src/main/java/com/fireworksdk/bridge/models/FWTrackPurchaseModelSerializer.kt +34 -0
  11. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoFeedItemDetailsModel.kt +1 -0
  12. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlaybackDetails.kt +1 -0
  13. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModel.kt +2 -1
  14. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModelDeserializer.kt +4 -1
  15. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerConfigModelSerializer.kt +2 -0
  16. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerLogoConfigurationModel.kt +8 -0
  17. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerLogoConfigurationModelDeserializer.kt +23 -0
  18. package/android/src/main/java/com/fireworksdk/bridge/models/FWVideoPlayerLogoConfigurationModelSerializer.kt +18 -0
  19. package/android/src/main/java/com/fireworksdk/bridge/models/enums/FWEventName.kt +2 -0
  20. package/android/src/main/java/com/fireworksdk/bridge/models/enums/FWVideoPlayerLogoOption.kt +19 -0
  21. package/android/src/main/java/com/fireworksdk/bridge/reactnative/FWReactNativeSDK.kt +103 -0
  22. package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWStoryBlockManager.kt +12 -0
  23. package/android/src/main/java/com/fireworksdk/bridge/reactnative/manager/FWVideoFeedManager.kt +8 -0
  24. package/android/src/main/java/com/fireworksdk/bridge/reactnative/models/FireworkSDKInterface.kt +2 -0
  25. package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FWVideoShoppingModule.kt +22 -9
  26. package/android/src/main/java/com/fireworksdk/bridge/reactnative/module/FireworkSDKModule.kt +74 -122
  27. package/android/src/main/java/com/fireworksdk/bridge/reactnative/utils/FWEventUtils.kt +34 -9
  28. package/android/src/main/java/com/fireworksdk/bridge/utils/FWConfigUtil.kt +13 -0
  29. package/android/src/main/java/com/fireworksdk/bridge/utils/FWFragmentUtil.kt +3 -3
  30. package/android/src/main/java/com/fireworksdk/bridge/utils/FWGlobalDataUtil.kt +5 -2
  31. package/android/src/main/java/com/fireworksdk/bridge/utils/FWModelUtils.kt +64 -0
  32. package/ios/Components/ReplayBadgeConfiguration.swift +12 -0
  33. package/ios/Components/StoryBlock.swift +31 -0
  34. package/ios/Components/StoryBlockConfiguration.swift +1 -0
  35. package/ios/Components/StoryBlockManager.m +24 -0
  36. package/ios/Components/StoryBlockManager.swift +6 -3
  37. package/ios/Components/VideoFeed.swift +18 -3
  38. package/ios/Components/VideoFeedConfiguration.swift +1 -0
  39. package/ios/Components/VideoFeedManager.m +4 -1
  40. package/ios/Components/VideoFeedManager.swift +6 -3
  41. package/ios/Components/VideoPlayerConfiguration.swift +1 -0
  42. package/ios/FWReactNativeSDK.swift +14 -0
  43. package/ios/FireworkSdk.xcodeproj/project.pbxproj +4 -0
  44. package/ios/Modules/FireworkSDKModule/FireworkSDKModule+CTA.swift +17 -15
  45. package/ios/Modules/FireworkSDKModule/FireworkSDKModule+EventTracking.swift +1 -11
  46. package/ios/Modules/FireworkSDKModule/FireworkSDKModule.m +1 -0
  47. package/ios/Modules/FireworkSDKModule/FireworkSDKModule.swift +80 -81
  48. package/ios/Modules/FireworkSDKModule/SDKInitOptions.swift +9 -5
  49. package/ios/Modules/Shopping/ShoppingModule.swift +10 -74
  50. package/lib/commonjs/FireworkSDK.js +30 -25
  51. package/lib/commonjs/FireworkSDK.js.map +1 -1
  52. package/lib/commonjs/VideoShopping.js +6 -12
  53. package/lib/commonjs/VideoShopping.js.map +1 -1
  54. package/lib/commonjs/components/StoryBlock.js +54 -3
  55. package/lib/commonjs/components/StoryBlock.js.map +1 -1
  56. package/lib/commonjs/components/VideoFeed.js +46 -4
  57. package/lib/commonjs/components/VideoFeed.js.map +1 -1
  58. package/lib/commonjs/index.js.map +1 -1
  59. package/lib/commonjs/models/FWNativeErrorAction.js +14 -0
  60. package/lib/commonjs/models/FWNativeErrorAction.js.map +1 -0
  61. package/lib/commonjs/models/ReplayBadgeConfiguration.js +2 -0
  62. package/lib/commonjs/models/ReplayBadgeConfiguration.js.map +1 -0
  63. package/lib/commonjs/modules/FireworkSDKModule.js.map +1 -1
  64. package/lib/module/FireworkSDK.js +29 -25
  65. package/lib/module/FireworkSDK.js.map +1 -1
  66. package/lib/module/VideoShopping.js +6 -12
  67. package/lib/module/VideoShopping.js.map +1 -1
  68. package/lib/module/components/StoryBlock.js +53 -3
  69. package/lib/module/components/StoryBlock.js.map +1 -1
  70. package/lib/module/components/VideoFeed.js +42 -4
  71. package/lib/module/components/VideoFeed.js.map +1 -1
  72. package/lib/module/index.js.map +1 -1
  73. package/lib/module/models/FWNativeErrorAction.js +7 -0
  74. package/lib/module/models/FWNativeErrorAction.js.map +1 -0
  75. package/lib/module/models/ReplayBadgeConfiguration.js +2 -0
  76. package/lib/module/models/ReplayBadgeConfiguration.js.map +1 -0
  77. package/lib/module/modules/FireworkSDKModule.js.map +1 -1
  78. package/lib/typescript/VideoShopping.d.ts +2 -2
  79. package/lib/typescript/components/StoryBlock.d.ts +18 -1
  80. package/lib/typescript/components/VideoFeed.d.ts +7 -1
  81. package/lib/typescript/index.d.ts +2 -2
  82. package/lib/typescript/models/FWEvents.d.ts +26 -3
  83. package/lib/typescript/models/FWNativeErrorAction.d.ts +4 -0
  84. package/lib/typescript/models/FeedItemDetails.d.ts +6 -1
  85. package/lib/typescript/models/ReplayBadgeConfiguration.d.ts +7 -0
  86. package/lib/typescript/models/StoryBlockConfiguration.d.ts +6 -1
  87. package/lib/typescript/models/VideoFeedConfiguration.d.ts +6 -0
  88. package/lib/typescript/models/VideoPlayerConfiguration.d.ts +6 -1
  89. package/lib/typescript/modules/FireworkSDKModule.d.ts +1 -0
  90. package/package.json +1 -5
  91. package/react-native-firework-sdk.podspec +3 -5
  92. package/src/FireworkSDK.ts +27 -24
  93. package/src/VideoShopping.ts +9 -11
  94. package/src/components/StoryBlock.tsx +69 -7
  95. package/src/components/VideoFeed.tsx +57 -12
  96. package/src/index.ts +2 -0
  97. package/src/models/FWEvents.ts +28 -3
  98. package/src/models/FWNativeErrorAction.ts +4 -0
  99. package/src/models/FeedItemDetails.ts +7 -1
  100. package/src/models/ReplayBadgeConfiguration.ts +7 -0
  101. package/src/models/StoryBlockConfiguration.ts +6 -1
  102. package/src/models/VideoFeedConfiguration.ts +6 -0
  103. package/src/models/VideoPlayerConfiguration.ts +6 -1
  104. package/src/modules/FireworkSDKModule.ts +1 -0
  105. package/FireworkVideoUI.xcframework/Info.plist +0 -40
  106. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/FireworkVideoUI +0 -0
  107. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Headers/FireworkVideoUI-Swift.h +0 -280
  108. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Headers/FireworkVideoUI.h +0 -18
  109. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Info.plist +0 -0
  110. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.abi.json +0 -1313
  111. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -42
  112. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  113. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios.swiftinterface +0 -42
  114. package/FireworkVideoUI.xcframework/ios-arm64/FireworkVideoUI.framework/Modules/module.modulemap +0 -11
  115. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/FireworkVideoUI +0 -0
  116. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Headers/FireworkVideoUI-Swift.h +0 -556
  117. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Headers/FireworkVideoUI.h +0 -18
  118. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Info.plist +0 -0
  119. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.abi.json +0 -1313
  120. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +0 -42
  121. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  122. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -42
  123. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.abi.json +0 -1313
  124. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +0 -42
  125. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  126. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/FireworkVideoUI.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +0 -42
  127. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/Modules/module.modulemap +0 -11
  128. package/FireworkVideoUI.xcframework/ios-arm64_x86_64-simulator/FireworkVideoUI.framework/_CodeSignature/CodeResources +0 -245
  129. package/ios/FireworkVideoUI/FireworkVideoUI/FireworkVideoUI.docc/FireworkVideoUI.md +0 -13
  130. package/ios/FireworkVideoUI/FireworkVideoUI/FireworkVideoUI.h +0 -18
  131. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/AppLanguageManager.swift +0 -154
  132. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/Bundle+AppLanguage.swift +0 -73
  133. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/NumberFormatter+AppLanguage.swift +0 -25
  134. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/Foundation/URLSession+AppLanguage.swift +0 -52
  135. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIImageView+AppLanguage.swift +0 -60
  136. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UILabel+AppLanguage.swift +0 -98
  137. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UITextField+AppLanguage.swift +0 -97
  138. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UITextView+AppLanguage.swift +0 -97
  139. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIView+AppLanguage.swift +0 -71
  140. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIViewController+AppLanguage.swift +0 -48
  141. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/Extensions/UIKit/UIWindow+AppLanguage.swift +0 -26
  142. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/AppLanguage/LanguageUtil.swift +0 -43
  143. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/Foundation/NSObject+LayoutFlip.swift +0 -42
  144. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/CALayer+LayoutFlip.swift +0 -149
  145. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/UILabel+LayoutFlip.swift +0 -35
  146. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/Extensions/UIKit/UIView+LayoutFlip.swift +0 -202
  147. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/LayoutFlip/LayoutFlipManager.swift +0 -59
  148. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/Foundation/DispatchQueue+Once.swift +0 -32
  149. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/Foundation/String+Base64.swift +0 -18
  150. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Extensions/UIKit/UIView+UIHierarchy.swift +0 -46
  151. package/ios/FireworkVideoUI/FireworkVideoUI/Sources/Utils/Swizzle.swift +0 -37
  152. package/ios/FireworkVideoUI/FireworkVideoUI.xcodeproj/project.pbxproj +0 -766
  153. package/ios/FireworkVideoUI/FireworkVideoUI.xcworkspace/contents.xcworkspacedata +0 -10
  154. package/ios/FireworkVideoUI/FireworkVideoUI.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  155. package/ios/FireworkVideoUI/FireworkVideoUITests/FireworkVideoUITests.swift +0 -37
  156. package/ios/FireworkVideoUI/Podfile +0 -15
  157. package/ios/FireworkVideoUI/Podfile.lock +0 -16
  158. package/ios/scripts/react_native_firework_sdk_pods.rb +0 -27
@@ -1,1313 +0,0 @@
1
- {
2
- "ABIRoot": {
3
- "kind": "Root",
4
- "name": "TopLevel",
5
- "printedName": "TopLevel",
6
- "children": [
7
- {
8
- "kind": "Import",
9
- "name": "UIKit",
10
- "printedName": "UIKit",
11
- "declKind": "Import",
12
- "moduleName": "FireworkVideoUI",
13
- "declAttributes": [
14
- "RawDocComment"
15
- ]
16
- },
17
- {
18
- "kind": "Import",
19
- "name": "FireworkVideo",
20
- "printedName": "FireworkVideo",
21
- "declKind": "Import",
22
- "moduleName": "FireworkVideoUI"
23
- },
24
- {
25
- "kind": "Import",
26
- "name": "Foundation",
27
- "printedName": "Foundation",
28
- "declKind": "Import",
29
- "moduleName": "FireworkVideoUI",
30
- "declAttributes": [
31
- "RawDocComment"
32
- ]
33
- },
34
- {
35
- "kind": "Import",
36
- "name": "FireworkVideo",
37
- "printedName": "FireworkVideo",
38
- "declKind": "Import",
39
- "moduleName": "FireworkVideoUI"
40
- },
41
- {
42
- "kind": "Import",
43
- "name": "Foundation",
44
- "printedName": "Foundation",
45
- "declKind": "Import",
46
- "moduleName": "FireworkVideoUI",
47
- "declAttributes": [
48
- "RawDocComment"
49
- ]
50
- },
51
- {
52
- "kind": "Import",
53
- "name": "Foundation",
54
- "printedName": "Foundation",
55
- "declKind": "Import",
56
- "moduleName": "FireworkVideoUI",
57
- "declAttributes": [
58
- "RawDocComment"
59
- ]
60
- },
61
- {
62
- "kind": "Import",
63
- "name": "UIKit",
64
- "printedName": "UIKit",
65
- "declKind": "Import",
66
- "moduleName": "FireworkVideoUI",
67
- "declAttributes": [
68
- "RawDocComment"
69
- ]
70
- },
71
- {
72
- "kind": "Import",
73
- "name": "Foundation",
74
- "printedName": "Foundation",
75
- "declKind": "Import",
76
- "moduleName": "FireworkVideoUI",
77
- "declAttributes": [
78
- "RawDocComment"
79
- ]
80
- },
81
- {
82
- "kind": "Import",
83
- "name": "UIKit",
84
- "printedName": "UIKit",
85
- "declKind": "Import",
86
- "moduleName": "FireworkVideoUI",
87
- "declAttributes": [
88
- "RawDocComment"
89
- ]
90
- },
91
- {
92
- "kind": "Import",
93
- "name": "UIKit",
94
- "printedName": "UIKit",
95
- "declKind": "Import",
96
- "moduleName": "FireworkVideoUI",
97
- "declAttributes": [
98
- "RawDocComment"
99
- ]
100
- },
101
- {
102
- "kind": "Import",
103
- "name": "UIKit",
104
- "printedName": "UIKit",
105
- "declKind": "Import",
106
- "moduleName": "FireworkVideoUI",
107
- "declAttributes": [
108
- "RawDocComment"
109
- ]
110
- },
111
- {
112
- "kind": "Import",
113
- "name": "FireworkVideo",
114
- "printedName": "FireworkVideo",
115
- "declKind": "Import",
116
- "moduleName": "FireworkVideoUI"
117
- },
118
- {
119
- "kind": "Import",
120
- "name": "UIKit",
121
- "printedName": "UIKit",
122
- "declKind": "Import",
123
- "moduleName": "FireworkVideoUI",
124
- "declAttributes": [
125
- "RawDocComment"
126
- ]
127
- },
128
- {
129
- "kind": "Import",
130
- "name": "FireworkVideo",
131
- "printedName": "FireworkVideo",
132
- "declKind": "Import",
133
- "moduleName": "FireworkVideoUI"
134
- },
135
- {
136
- "kind": "Import",
137
- "name": "UIKit",
138
- "printedName": "UIKit",
139
- "declKind": "Import",
140
- "moduleName": "FireworkVideoUI",
141
- "declAttributes": [
142
- "RawDocComment"
143
- ]
144
- },
145
- {
146
- "kind": "Import",
147
- "name": "UIKit",
148
- "printedName": "UIKit",
149
- "declKind": "Import",
150
- "moduleName": "FireworkVideoUI",
151
- "declAttributes": [
152
- "RawDocComment"
153
- ]
154
- },
155
- {
156
- "kind": "Import",
157
- "name": "FireworkVideo",
158
- "printedName": "FireworkVideo",
159
- "declKind": "Import",
160
- "moduleName": "FireworkVideoUI"
161
- },
162
- {
163
- "kind": "Import",
164
- "name": "Foundation",
165
- "printedName": "Foundation",
166
- "declKind": "Import",
167
- "moduleName": "FireworkVideoUI",
168
- "declAttributes": [
169
- "RawDocComment"
170
- ]
171
- },
172
- {
173
- "kind": "Import",
174
- "name": "Foundation",
175
- "printedName": "Foundation",
176
- "declKind": "Import",
177
- "moduleName": "FireworkVideoUI",
178
- "declAttributes": [
179
- "RawDocComment"
180
- ]
181
- },
182
- {
183
- "kind": "TypeDecl",
184
- "name": "Swizzle",
185
- "printedName": "Swizzle",
186
- "children": [
187
- {
188
- "kind": "Function",
189
- "name": "swizzleSelector",
190
- "printedName": "swizzleSelector(cls:originalSelector:customSelector:)",
191
- "children": [
192
- {
193
- "kind": "TypeNominal",
194
- "name": "Void",
195
- "printedName": "()"
196
- },
197
- {
198
- "kind": "TypeNominal",
199
- "name": "ExistentialMetatype",
200
- "printedName": "AnyObject.Type",
201
- "children": [
202
- {
203
- "kind": "TypeNominal",
204
- "name": "ProtocolComposition",
205
- "printedName": "AnyObject"
206
- }
207
- ]
208
- },
209
- {
210
- "kind": "TypeNominal",
211
- "name": "Selector",
212
- "printedName": "ObjectiveC.Selector",
213
- "usr": "s:10ObjectiveC8SelectorV"
214
- },
215
- {
216
- "kind": "TypeNominal",
217
- "name": "Selector",
218
- "printedName": "ObjectiveC.Selector",
219
- "usr": "s:10ObjectiveC8SelectorV"
220
- }
221
- ],
222
- "declKind": "Func",
223
- "usr": "s:15FireworkVideoUI7SwizzleC15swizzleSelector3cls08originalF006customF0yyXlXp_10ObjectiveC0F0VAJtFZ",
224
- "mangledName": "$s15FireworkVideoUI7SwizzleC15swizzleSelector3cls08originalF006customF0yyXlXp_10ObjectiveC0F0VAJtFZ",
225
- "moduleName": "FireworkVideoUI",
226
- "static": true,
227
- "declAttributes": [
228
- "Final",
229
- "AccessControl"
230
- ],
231
- "funcSelfKind": "NonMutating"
232
- },
233
- {
234
- "kind": "Function",
235
- "name": "swizzleClassSelector",
236
- "printedName": "swizzleClassSelector(cls:originalSelector:customSelector:)",
237
- "children": [
238
- {
239
- "kind": "TypeNominal",
240
- "name": "Void",
241
- "printedName": "()"
242
- },
243
- {
244
- "kind": "TypeNominal",
245
- "name": "ExistentialMetatype",
246
- "printedName": "AnyObject.Type",
247
- "children": [
248
- {
249
- "kind": "TypeNominal",
250
- "name": "ProtocolComposition",
251
- "printedName": "AnyObject"
252
- }
253
- ]
254
- },
255
- {
256
- "kind": "TypeNominal",
257
- "name": "Selector",
258
- "printedName": "ObjectiveC.Selector",
259
- "usr": "s:10ObjectiveC8SelectorV"
260
- },
261
- {
262
- "kind": "TypeNominal",
263
- "name": "Selector",
264
- "printedName": "ObjectiveC.Selector",
265
- "usr": "s:10ObjectiveC8SelectorV"
266
- }
267
- ],
268
- "declKind": "Func",
269
- "usr": "s:15FireworkVideoUI7SwizzleC20swizzleClassSelector3cls08originalG006customG0yyXlXp_10ObjectiveC0G0VAJtFZ",
270
- "mangledName": "$s15FireworkVideoUI7SwizzleC20swizzleClassSelector3cls08originalG006customG0yyXlXp_10ObjectiveC0G0VAJtFZ",
271
- "moduleName": "FireworkVideoUI",
272
- "static": true,
273
- "declAttributes": [
274
- "Final",
275
- "AccessControl"
276
- ],
277
- "funcSelfKind": "NonMutating"
278
- }
279
- ],
280
- "declKind": "Class",
281
- "usr": "s:15FireworkVideoUI7SwizzleC",
282
- "mangledName": "$s15FireworkVideoUI7SwizzleC",
283
- "moduleName": "FireworkVideoUI",
284
- "declAttributes": [
285
- "AccessControl"
286
- ],
287
- "hasMissingDesignatedInitializers": true
288
- },
289
- {
290
- "kind": "Import",
291
- "name": "Foundation",
292
- "printedName": "Foundation",
293
- "declKind": "Import",
294
- "moduleName": "FireworkVideoUI",
295
- "declAttributes": [
296
- "RawDocComment"
297
- ]
298
- },
299
- {
300
- "kind": "Import",
301
- "name": "UIKit",
302
- "printedName": "UIKit",
303
- "declKind": "Import",
304
- "moduleName": "FireworkVideoUI",
305
- "declAttributes": [
306
- "RawDocComment"
307
- ]
308
- },
309
- {
310
- "kind": "Import",
311
- "name": "UIKit",
312
- "printedName": "UIKit",
313
- "declKind": "Import",
314
- "moduleName": "FireworkVideoUI",
315
- "declAttributes": [
316
- "RawDocComment"
317
- ]
318
- },
319
- {
320
- "kind": "Import",
321
- "name": "FireworkVideo",
322
- "printedName": "FireworkVideo",
323
- "declKind": "Import",
324
- "moduleName": "FireworkVideoUI"
325
- },
326
- {
327
- "kind": "Import",
328
- "name": "AVFoundation",
329
- "printedName": "AVFoundation",
330
- "declKind": "Import",
331
- "moduleName": "FireworkVideoUI"
332
- },
333
- {
334
- "kind": "Import",
335
- "name": "Foundation",
336
- "printedName": "Foundation",
337
- "declKind": "Import",
338
- "moduleName": "FireworkVideoUI",
339
- "declAttributes": [
340
- "RawDocComment"
341
- ]
342
- },
343
- {
344
- "kind": "Import",
345
- "name": "UIKit",
346
- "printedName": "UIKit",
347
- "declKind": "Import",
348
- "moduleName": "FireworkVideoUI",
349
- "declAttributes": [
350
- "RawDocComment"
351
- ]
352
- },
353
- {
354
- "kind": "TypeDecl",
355
- "name": "AppLanguageManager",
356
- "printedName": "AppLanguageManager",
357
- "children": [
358
- {
359
- "kind": "TypeDecl",
360
- "name": "NotificationName",
361
- "printedName": "NotificationName",
362
- "children": [
363
- {
364
- "kind": "Var",
365
- "name": "AppLanguageChanged",
366
- "printedName": "AppLanguageChanged",
367
- "children": [
368
- {
369
- "kind": "TypeNominal",
370
- "name": "Name",
371
- "printedName": "Foundation.NSNotification.Name",
372
- "usr": "c:@T@NSNotificationName"
373
- }
374
- ],
375
- "declKind": "Var",
376
- "usr": "s:15FireworkVideoUI18AppLanguageManagerC16NotificationNameV0dE7ChangedSo014NSNotificationH0avpZ",
377
- "mangledName": "$s15FireworkVideoUI18AppLanguageManagerC16NotificationNameV0dE7ChangedSo014NSNotificationH0avpZ",
378
- "moduleName": "FireworkVideoUI",
379
- "static": true,
380
- "declAttributes": [
381
- "HasInitialValue",
382
- "HasStorage",
383
- "AccessControl",
384
- "RawDocComment"
385
- ],
386
- "isLet": true,
387
- "hasStorage": true,
388
- "accessors": [
389
- {
390
- "kind": "Accessor",
391
- "name": "Get",
392
- "printedName": "Get()",
393
- "children": [
394
- {
395
- "kind": "TypeNominal",
396
- "name": "Name",
397
- "printedName": "Foundation.NSNotification.Name",
398
- "usr": "c:@T@NSNotificationName"
399
- }
400
- ],
401
- "declKind": "Accessor",
402
- "usr": "s:15FireworkVideoUI18AppLanguageManagerC16NotificationNameV0dE7ChangedSo014NSNotificationH0avgZ",
403
- "mangledName": "$s15FireworkVideoUI18AppLanguageManagerC16NotificationNameV0dE7ChangedSo014NSNotificationH0avgZ",
404
- "moduleName": "FireworkVideoUI",
405
- "static": true,
406
- "implicit": true,
407
- "accessorKind": "get"
408
- }
409
- ]
410
- }
411
- ],
412
- "declKind": "Struct",
413
- "usr": "s:15FireworkVideoUI18AppLanguageManagerC16NotificationNameV",
414
- "mangledName": "$s15FireworkVideoUI18AppLanguageManagerC16NotificationNameV",
415
- "moduleName": "FireworkVideoUI",
416
- "declAttributes": [
417
- "AccessControl"
418
- ]
419
- },
420
- {
421
- "kind": "Var",
422
- "name": "shared",
423
- "printedName": "shared",
424
- "children": [
425
- {
426
- "kind": "TypeNominal",
427
- "name": "AppLanguageManager",
428
- "printedName": "FireworkVideoUI.AppLanguageManager",
429
- "usr": "s:15FireworkVideoUI18AppLanguageManagerC"
430
- }
431
- ],
432
- "declKind": "Var",
433
- "usr": "s:15FireworkVideoUI18AppLanguageManagerC6sharedACvpZ",
434
- "mangledName": "$s15FireworkVideoUI18AppLanguageManagerC6sharedACvpZ",
435
- "moduleName": "FireworkVideoUI",
436
- "static": true,
437
- "declAttributes": [
438
- "HasInitialValue",
439
- "Final",
440
- "HasStorage",
441
- "AccessControl"
442
- ],
443
- "isLet": true,
444
- "hasStorage": true,
445
- "accessors": [
446
- {
447
- "kind": "Accessor",
448
- "name": "Get",
449
- "printedName": "Get()",
450
- "children": [
451
- {
452
- "kind": "TypeNominal",
453
- "name": "AppLanguageManager",
454
- "printedName": "FireworkVideoUI.AppLanguageManager",
455
- "usr": "s:15FireworkVideoUI18AppLanguageManagerC"
456
- }
457
- ],
458
- "declKind": "Accessor",
459
- "usr": "s:15FireworkVideoUI18AppLanguageManagerC6sharedACvgZ",
460
- "mangledName": "$s15FireworkVideoUI18AppLanguageManagerC6sharedACvgZ",
461
- "moduleName": "FireworkVideoUI",
462
- "static": true,
463
- "implicit": true,
464
- "declAttributes": [
465
- "Final"
466
- ],
467
- "accessorKind": "get"
468
- }
469
- ]
470
- },
471
- {
472
- "kind": "Var",
473
- "name": "appLanguage",
474
- "printedName": "appLanguage",
475
- "children": [
476
- {
477
- "kind": "TypeNominal",
478
- "name": "Optional",
479
- "printedName": "Swift.String?",
480
- "children": [
481
- {
482
- "kind": "TypeNominal",
483
- "name": "String",
484
- "printedName": "Swift.String",
485
- "usr": "s:SS"
486
- }
487
- ],
488
- "usr": "s:Sq"
489
- }
490
- ],
491
- "declKind": "Var",
492
- "usr": "s:15FireworkVideoUI18AppLanguageManagerC03appE0SSSgvp",
493
- "mangledName": "$s15FireworkVideoUI18AppLanguageManagerC03appE0SSSgvp",
494
- "moduleName": "FireworkVideoUI",
495
- "declAttributes": [
496
- "HasInitialValue",
497
- "HasStorage",
498
- "SetterAccess",
499
- "AccessControl",
500
- "RawDocComment"
501
- ],
502
- "hasStorage": true,
503
- "accessors": [
504
- {
505
- "kind": "Accessor",
506
- "name": "Get",
507
- "printedName": "Get()",
508
- "children": [
509
- {
510
- "kind": "TypeNominal",
511
- "name": "Optional",
512
- "printedName": "Swift.String?",
513
- "children": [
514
- {
515
- "kind": "TypeNominal",
516
- "name": "String",
517
- "printedName": "Swift.String",
518
- "usr": "s:SS"
519
- }
520
- ],
521
- "usr": "s:Sq"
522
- }
523
- ],
524
- "declKind": "Accessor",
525
- "usr": "s:15FireworkVideoUI18AppLanguageManagerC03appE0SSSgvg",
526
- "mangledName": "$s15FireworkVideoUI18AppLanguageManagerC03appE0SSSgvg",
527
- "moduleName": "FireworkVideoUI",
528
- "implicit": true,
529
- "accessorKind": "get"
530
- }
531
- ]
532
- },
533
- {
534
- "kind": "Function",
535
- "name": "changeAppLanguage",
536
- "printedName": "changeAppLanguage(_:)",
537
- "children": [
538
- {
539
- "kind": "TypeNominal",
540
- "name": "Bool",
541
- "printedName": "Swift.Bool",
542
- "usr": "s:Sb"
543
- },
544
- {
545
- "kind": "TypeNominal",
546
- "name": "Optional",
547
- "printedName": "Swift.String?",
548
- "children": [
549
- {
550
- "kind": "TypeNominal",
551
- "name": "String",
552
- "printedName": "Swift.String",
553
- "usr": "s:SS"
554
- }
555
- ],
556
- "usr": "s:Sq"
557
- }
558
- ],
559
- "declKind": "Func",
560
- "usr": "s:15FireworkVideoUI18AppLanguageManagerC06changedE0ySbSSSgF",
561
- "mangledName": "$s15FireworkVideoUI18AppLanguageManagerC06changedE0ySbSSSgF",
562
- "moduleName": "FireworkVideoUI",
563
- "declAttributes": [
564
- "AccessControl",
565
- "DiscardableResult",
566
- "RawDocComment"
567
- ],
568
- "funcSelfKind": "NonMutating"
569
- }
570
- ],
571
- "declKind": "Class",
572
- "usr": "s:15FireworkVideoUI18AppLanguageManagerC",
573
- "mangledName": "$s15FireworkVideoUI18AppLanguageManagerC",
574
- "moduleName": "FireworkVideoUI",
575
- "declAttributes": [
576
- "AccessControl",
577
- "RawDocComment"
578
- ],
579
- "hasMissingDesignatedInitializers": true
580
- },
581
- {
582
- "kind": "Import",
583
- "name": "UIKit",
584
- "printedName": "UIKit",
585
- "declKind": "Import",
586
- "moduleName": "FireworkVideoUI",
587
- "declAttributes": [
588
- "RawDocComment"
589
- ]
590
- },
591
- {
592
- "kind": "Import",
593
- "name": "UIKit",
594
- "printedName": "UIKit",
595
- "declKind": "Import",
596
- "moduleName": "FireworkVideoUI",
597
- "declAttributes": [
598
- "RawDocComment"
599
- ]
600
- },
601
- {
602
- "kind": "Import",
603
- "name": "WebKit",
604
- "printedName": "WebKit",
605
- "declKind": "Import",
606
- "moduleName": "FireworkVideoUI"
607
- },
608
- {
609
- "kind": "TypeDecl",
610
- "name": "DispatchQueue",
611
- "printedName": "DispatchQueue",
612
- "children": [
613
- {
614
- "kind": "Function",
615
- "name": "once",
616
- "printedName": "once(file:function:line:block:)",
617
- "children": [
618
- {
619
- "kind": "TypeNominal",
620
- "name": "Void",
621
- "printedName": "()"
622
- },
623
- {
624
- "kind": "TypeNominal",
625
- "name": "String",
626
- "printedName": "Swift.String",
627
- "hasDefaultArg": true,
628
- "usr": "s:SS"
629
- },
630
- {
631
- "kind": "TypeNominal",
632
- "name": "String",
633
- "printedName": "Swift.String",
634
- "hasDefaultArg": true,
635
- "usr": "s:SS"
636
- },
637
- {
638
- "kind": "TypeNominal",
639
- "name": "Int",
640
- "printedName": "Swift.Int",
641
- "hasDefaultArg": true,
642
- "usr": "s:Si"
643
- },
644
- {
645
- "kind": "TypeFunc",
646
- "name": "Function",
647
- "printedName": "() -> ()",
648
- "children": [
649
- {
650
- "kind": "TypeNominal",
651
- "name": "Void",
652
- "printedName": "()"
653
- },
654
- {
655
- "kind": "TypeNominal",
656
- "name": "Void",
657
- "printedName": "()"
658
- }
659
- ],
660
- "typeAttributes": [
661
- "noescape"
662
- ]
663
- }
664
- ],
665
- "declKind": "Func",
666
- "usr": "s:So17OS_dispatch_queueC15FireworkVideoUIE4once4file8function4line5blockySS_SSSiyyXEtFZ",
667
- "mangledName": "$sSo17OS_dispatch_queueC15FireworkVideoUIE4once4file8function4line5blockySS_SSSiyyXEtFZ",
668
- "moduleName": "FireworkVideoUI",
669
- "static": true,
670
- "declAttributes": [
671
- "RawDocComment"
672
- ],
673
- "isFromExtension": true,
674
- "funcSelfKind": "NonMutating"
675
- },
676
- {
677
- "kind": "Function",
678
- "name": "once",
679
- "printedName": "once(token:block:)",
680
- "children": [
681
- {
682
- "kind": "TypeNominal",
683
- "name": "Void",
684
- "printedName": "()"
685
- },
686
- {
687
- "kind": "TypeNominal",
688
- "name": "String",
689
- "printedName": "Swift.String",
690
- "usr": "s:SS"
691
- },
692
- {
693
- "kind": "TypeFunc",
694
- "name": "Function",
695
- "printedName": "() -> ()",
696
- "children": [
697
- {
698
- "kind": "TypeNominal",
699
- "name": "Void",
700
- "printedName": "()"
701
- },
702
- {
703
- "kind": "TypeNominal",
704
- "name": "Void",
705
- "printedName": "()"
706
- }
707
- ],
708
- "typeAttributes": [
709
- "noescape"
710
- ]
711
- }
712
- ],
713
- "declKind": "Func",
714
- "usr": "s:So17OS_dispatch_queueC15FireworkVideoUIE4once5token5blockySS_yyXEtFZ",
715
- "mangledName": "$sSo17OS_dispatch_queueC15FireworkVideoUIE4once5token5blockySS_yyXEtFZ",
716
- "moduleName": "FireworkVideoUI",
717
- "static": true,
718
- "declAttributes": [
719
- "RawDocComment"
720
- ],
721
- "isFromExtension": true,
722
- "funcSelfKind": "NonMutating"
723
- }
724
- ],
725
- "declKind": "Class",
726
- "usr": "c:objc(cs)OS_dispatch_queue",
727
- "moduleName": "Dispatch",
728
- "isOpen": true,
729
- "objc_name": "OS_dispatch_queue",
730
- "declAttributes": [
731
- "ObjC",
732
- "Dynamic"
733
- ],
734
- "superclassUsr": "c:objc(cs)OS_dispatch_object",
735
- "isExternal": true,
736
- "inheritsConvenienceInitializers": true,
737
- "superclassNames": [
738
- "Dispatch.DispatchObject",
739
- "os_object.OS_object",
740
- "ObjectiveC.NSObject"
741
- ],
742
- "conformances": [
743
- {
744
- "kind": "Conformance",
745
- "name": "Equatable",
746
- "printedName": "Equatable",
747
- "usr": "s:SQ",
748
- "mangledName": "$sSQ"
749
- },
750
- {
751
- "kind": "Conformance",
752
- "name": "Hashable",
753
- "printedName": "Hashable",
754
- "usr": "s:SH",
755
- "mangledName": "$sSH"
756
- },
757
- {
758
- "kind": "Conformance",
759
- "name": "CVarArg",
760
- "printedName": "CVarArg",
761
- "usr": "s:s7CVarArgP",
762
- "mangledName": "$ss7CVarArgP"
763
- },
764
- {
765
- "kind": "Conformance",
766
- "name": "_KeyValueCodingAndObservingPublishing",
767
- "printedName": "_KeyValueCodingAndObservingPublishing",
768
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
769
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
770
- },
771
- {
772
- "kind": "Conformance",
773
- "name": "_KeyValueCodingAndObserving",
774
- "printedName": "_KeyValueCodingAndObserving",
775
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
776
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
777
- },
778
- {
779
- "kind": "Conformance",
780
- "name": "CustomStringConvertible",
781
- "printedName": "CustomStringConvertible",
782
- "usr": "s:s23CustomStringConvertibleP",
783
- "mangledName": "$ss23CustomStringConvertibleP"
784
- },
785
- {
786
- "kind": "Conformance",
787
- "name": "CustomDebugStringConvertible",
788
- "printedName": "CustomDebugStringConvertible",
789
- "usr": "s:s28CustomDebugStringConvertibleP",
790
- "mangledName": "$ss28CustomDebugStringConvertibleP"
791
- },
792
- {
793
- "kind": "Conformance",
794
- "name": "Scheduler",
795
- "printedName": "Scheduler",
796
- "children": [
797
- {
798
- "kind": "TypeWitness",
799
- "name": "SchedulerTimeType",
800
- "printedName": "SchedulerTimeType",
801
- "children": [
802
- {
803
- "kind": "TypeNominal",
804
- "name": "SchedulerTimeType",
805
- "printedName": "Dispatch.DispatchQueue.SchedulerTimeType",
806
- "usr": "s:So17OS_dispatch_queueC8DispatchE17SchedulerTimeTypeV"
807
- }
808
- ]
809
- },
810
- {
811
- "kind": "TypeWitness",
812
- "name": "SchedulerOptions",
813
- "printedName": "SchedulerOptions",
814
- "children": [
815
- {
816
- "kind": "TypeNominal",
817
- "name": "SchedulerOptions",
818
- "printedName": "Dispatch.DispatchQueue.SchedulerOptions",
819
- "usr": "s:So17OS_dispatch_queueC8DispatchE16SchedulerOptionsV"
820
- }
821
- ]
822
- }
823
- ],
824
- "usr": "s:7Combine9SchedulerP",
825
- "mangledName": "$s7Combine9SchedulerP"
826
- }
827
- ]
828
- },
829
- {
830
- "kind": "TypeDecl",
831
- "name": "UIView",
832
- "printedName": "UIView",
833
- "children": [
834
- {
835
- "kind": "Var",
836
- "name": "parentViewController",
837
- "printedName": "parentViewController",
838
- "children": [
839
- {
840
- "kind": "TypeNominal",
841
- "name": "Optional",
842
- "printedName": "UIKit.UIViewController?",
843
- "children": [
844
- {
845
- "kind": "TypeNominal",
846
- "name": "UIViewController",
847
- "printedName": "UIKit.UIViewController",
848
- "usr": "c:objc(cs)UIViewController"
849
- }
850
- ],
851
- "usr": "s:Sq"
852
- }
853
- ],
854
- "declKind": "Var",
855
- "usr": "s:So6UIViewC15FireworkVideoUIE20parentViewControllerSo0aG0CSgvp",
856
- "mangledName": "$sSo6UIViewC15FireworkVideoUIE20parentViewControllerSo0aG0CSgvp",
857
- "moduleName": "FireworkVideoUI",
858
- "declAttributes": [
859
- "Custom"
860
- ],
861
- "isFromExtension": true,
862
- "accessors": [
863
- {
864
- "kind": "Accessor",
865
- "name": "Get",
866
- "printedName": "Get()",
867
- "children": [
868
- {
869
- "kind": "TypeNominal",
870
- "name": "Optional",
871
- "printedName": "UIKit.UIViewController?",
872
- "children": [
873
- {
874
- "kind": "TypeNominal",
875
- "name": "UIViewController",
876
- "printedName": "UIKit.UIViewController",
877
- "usr": "c:objc(cs)UIViewController"
878
- }
879
- ],
880
- "usr": "s:Sq"
881
- }
882
- ],
883
- "declKind": "Accessor",
884
- "usr": "s:So6UIViewC15FireworkVideoUIE20parentViewControllerSo0aG0CSgvg",
885
- "mangledName": "$sSo6UIViewC15FireworkVideoUIE20parentViewControllerSo0aG0CSgvg",
886
- "moduleName": "FireworkVideoUI",
887
- "isFromExtension": true,
888
- "accessorKind": "get"
889
- }
890
- ]
891
- },
892
- {
893
- "kind": "Var",
894
- "name": "isIOSSDKView",
895
- "printedName": "isIOSSDKView",
896
- "children": [
897
- {
898
- "kind": "TypeNominal",
899
- "name": "Bool",
900
- "printedName": "Swift.Bool",
901
- "usr": "s:Sb"
902
- }
903
- ],
904
- "declKind": "Var",
905
- "usr": "s:So6UIViewC15FireworkVideoUIE12isIOSSDKViewSbvp",
906
- "mangledName": "$sSo6UIViewC15FireworkVideoUIE12isIOSSDKViewSbvp",
907
- "moduleName": "FireworkVideoUI",
908
- "declAttributes": [
909
- "Custom"
910
- ],
911
- "isFromExtension": true,
912
- "accessors": [
913
- {
914
- "kind": "Accessor",
915
- "name": "Get",
916
- "printedName": "Get()",
917
- "children": [
918
- {
919
- "kind": "TypeNominal",
920
- "name": "Bool",
921
- "printedName": "Swift.Bool",
922
- "usr": "s:Sb"
923
- }
924
- ],
925
- "declKind": "Accessor",
926
- "usr": "s:So6UIViewC15FireworkVideoUIE12isIOSSDKViewSbvg",
927
- "mangledName": "$sSo6UIViewC15FireworkVideoUIE12isIOSSDKViewSbvg",
928
- "moduleName": "FireworkVideoUI",
929
- "isFromExtension": true,
930
- "accessorKind": "get"
931
- }
932
- ]
933
- }
934
- ],
935
- "declKind": "Class",
936
- "usr": "c:objc(cs)UIView",
937
- "moduleName": "UIKit",
938
- "isOpen": true,
939
- "intro_iOS": "2.0",
940
- "objc_name": "UIView",
941
- "declAttributes": [
942
- "Available",
943
- "ObjC",
944
- "NonSendable",
945
- "Custom",
946
- "Dynamic"
947
- ],
948
- "superclassUsr": "c:objc(cs)UIResponder",
949
- "isExternal": true,
950
- "inheritsConvenienceInitializers": true,
951
- "superclassNames": [
952
- "UIKit.UIResponder",
953
- "ObjectiveC.NSObject"
954
- ],
955
- "conformances": [
956
- {
957
- "kind": "Conformance",
958
- "name": "Equatable",
959
- "printedName": "Equatable",
960
- "usr": "s:SQ",
961
- "mangledName": "$sSQ"
962
- },
963
- {
964
- "kind": "Conformance",
965
- "name": "Hashable",
966
- "printedName": "Hashable",
967
- "usr": "s:SH",
968
- "mangledName": "$sSH"
969
- },
970
- {
971
- "kind": "Conformance",
972
- "name": "CVarArg",
973
- "printedName": "CVarArg",
974
- "usr": "s:s7CVarArgP",
975
- "mangledName": "$ss7CVarArgP"
976
- },
977
- {
978
- "kind": "Conformance",
979
- "name": "_KeyValueCodingAndObservingPublishing",
980
- "printedName": "_KeyValueCodingAndObservingPublishing",
981
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
982
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
983
- },
984
- {
985
- "kind": "Conformance",
986
- "name": "_KeyValueCodingAndObserving",
987
- "printedName": "_KeyValueCodingAndObserving",
988
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
989
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
990
- },
991
- {
992
- "kind": "Conformance",
993
- "name": "CustomStringConvertible",
994
- "printedName": "CustomStringConvertible",
995
- "usr": "s:s23CustomStringConvertibleP",
996
- "mangledName": "$ss23CustomStringConvertibleP"
997
- },
998
- {
999
- "kind": "Conformance",
1000
- "name": "CustomDebugStringConvertible",
1001
- "printedName": "CustomDebugStringConvertible",
1002
- "usr": "s:s28CustomDebugStringConvertibleP",
1003
- "mangledName": "$ss28CustomDebugStringConvertibleP"
1004
- },
1005
- {
1006
- "kind": "Conformance",
1007
- "name": "__DefaultCustomPlaygroundQuickLookable",
1008
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
1009
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
1010
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
1011
- }
1012
- ]
1013
- }
1014
- ],
1015
- "json_format_version": 8
1016
- },
1017
- "ConstValues": [
1018
- {
1019
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/LayoutFlipManager.swift",
1020
- "kind": "BooleanLiteral",
1021
- "offset": 945,
1022
- "length": 4,
1023
- "value": "true"
1024
- },
1025
- {
1026
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/LayoutFlipManager.swift",
1027
- "kind": "BooleanLiteral",
1028
- "offset": 389,
1029
- "length": 5,
1030
- "value": "false"
1031
- },
1032
- {
1033
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/CALayer+LayoutFlip.swift",
1034
- "kind": "StringLiteral",
1035
- "offset": 185,
1036
- "length": 16,
1037
- "value": "\"basicTransform\""
1038
- },
1039
- {
1040
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/CALayer+LayoutFlip.swift",
1041
- "kind": "StringLiteral",
1042
- "offset": 242,
1043
- "length": 20,
1044
- "value": "\"isRenderStartLayer\""
1045
- },
1046
- {
1047
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/CALayer+LayoutFlip.swift",
1048
- "kind": "StringLiteral",
1049
- "offset": 300,
1050
- "length": 17,
1051
- "value": "\"affineTransform\""
1052
- },
1053
- {
1054
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UILabel+LayoutFlip.swift",
1055
- "kind": "StringLiteral",
1056
- "offset": 137,
1057
- "length": 26,
1058
- "value": "\"VUlUZXh0RmllbGRMYWJlbA==\""
1059
- },
1060
- {
1061
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UILabel+LayoutFlip.swift",
1062
- "kind": "StringLiteral",
1063
- "offset": 260,
1064
- "length": 34,
1065
- "value": "\"VUlEYXRlUGlja2VyQ29udGVudFZpZXc=\""
1066
- },
1067
- {
1068
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/Extensions\/UIKit\/UITextField+AppLanguage.swift",
1069
- "kind": "StringLiteral",
1070
- "offset": 208,
1071
- "length": 31,
1072
- "value": "\"hasCalculatedTextAlignmentKey\""
1073
- },
1074
- {
1075
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/Extensions\/UIKit\/UILabel+AppLanguage.swift",
1076
- "kind": "StringLiteral",
1077
- "offset": 200,
1078
- "length": 31,
1079
- "value": "\"hasCalculatedTextAlignmentKey\""
1080
- },
1081
- {
1082
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/Foundation\/NSObject+LayoutFlip.swift",
1083
- "kind": "StringLiteral",
1084
- "offset": 230,
1085
- "length": 14,
1086
- "value": "\"reloadBlocks\""
1087
- },
1088
- {
1089
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
1090
- "kind": "StringLiteral",
1091
- "offset": 132,
1092
- "length": 39,
1093
- "value": "\"firework_sdk_app_language_storage_key\""
1094
- },
1095
- {
1096
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
1097
- "kind": "IntegerLiteral",
1098
- "offset": 223,
1099
- "length": 3,
1100
- "value": "1"
1101
- },
1102
- {
1103
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
1104
- "kind": "IntegerLiteral",
1105
- "offset": 228,
1106
- "length": 11,
1107
- "value": "2"
1108
- },
1109
- {
1110
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
1111
- "kind": "IntegerLiteral",
1112
- "offset": 223,
1113
- "length": 3,
1114
- "value": "1"
1115
- },
1116
- {
1117
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
1118
- "kind": "IntegerLiteral",
1119
- "offset": 228,
1120
- "length": 11,
1121
- "value": "2"
1122
- },
1123
- {
1124
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
1125
- "kind": "IntegerLiteral",
1126
- "offset": 223,
1127
- "length": 3,
1128
- "value": "1"
1129
- },
1130
- {
1131
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
1132
- "kind": "IntegerLiteral",
1133
- "offset": 228,
1134
- "length": 11,
1135
- "value": "2"
1136
- },
1137
- {
1138
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/AppLanguageManager.swift",
1139
- "kind": "StringLiteral",
1140
- "offset": 499,
1141
- "length": 47,
1142
- "value": "\"firework.notification.name.appLanguageChanged\""
1143
- },
1144
- {
1145
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/AppLanguage\/Extensions\/UIKit\/UITextView+AppLanguage.swift",
1146
- "kind": "StringLiteral",
1147
- "offset": 206,
1148
- "length": 31,
1149
- "value": "\"hasCalculatedTextAlignmentKey\""
1150
- },
1151
- {
1152
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1153
- "kind": "StringLiteral",
1154
- "offset": 273,
1155
- "length": 34,
1156
- "value": "\"PUPhotosSectionHeaderContentView\""
1157
- },
1158
- {
1159
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1160
- "kind": "StringLiteral",
1161
- "offset": 313,
1162
- "length": 18,
1163
- "value": "\"UITableViewIndex\""
1164
- },
1165
- {
1166
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1167
- "kind": "StringLiteral",
1168
- "offset": 337,
1169
- "length": 11,
1170
- "value": "\"UIWebView\""
1171
- },
1172
- {
1173
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1174
- "kind": "StringLiteral",
1175
- "offset": 354,
1176
- "length": 22,
1177
- "value": "\"X1VJUmVtb3RlVmlldw==\""
1178
- },
1179
- {
1180
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1181
- "kind": "StringLiteral",
1182
- "offset": 420,
1183
- "length": 30,
1184
- "value": "\"VUlBdXRvY29ycmVjdFRleHRWaWV3\""
1185
- },
1186
- {
1187
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1188
- "kind": "IntegerLiteral",
1189
- "offset": 554,
1190
- "length": 7,
1191
- "value": "1"
1192
- },
1193
- {
1194
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1195
- "kind": "IntegerLiteral",
1196
- "offset": 571,
1197
- "length": 6,
1198
- "value": "2"
1199
- },
1200
- {
1201
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1202
- "kind": "IntegerLiteral",
1203
- "offset": 587,
1204
- "length": 4,
1205
- "value": "3"
1206
- },
1207
- {
1208
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1209
- "kind": "IntegerLiteral",
1210
- "offset": 601,
1211
- "length": 24,
1212
- "value": "4"
1213
- },
1214
- {
1215
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1216
- "kind": "IntegerLiteral",
1217
- "offset": 635,
1218
- "length": 22,
1219
- "value": "5"
1220
- },
1221
- {
1222
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1223
- "kind": "IntegerLiteral",
1224
- "offset": 554,
1225
- "length": 7,
1226
- "value": "1"
1227
- },
1228
- {
1229
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1230
- "kind": "IntegerLiteral",
1231
- "offset": 571,
1232
- "length": 6,
1233
- "value": "2"
1234
- },
1235
- {
1236
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1237
- "kind": "IntegerLiteral",
1238
- "offset": 587,
1239
- "length": 4,
1240
- "value": "3"
1241
- },
1242
- {
1243
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1244
- "kind": "IntegerLiteral",
1245
- "offset": 601,
1246
- "length": 24,
1247
- "value": "4"
1248
- },
1249
- {
1250
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1251
- "kind": "IntegerLiteral",
1252
- "offset": 635,
1253
- "length": 22,
1254
- "value": "5"
1255
- },
1256
- {
1257
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1258
- "kind": "IntegerLiteral",
1259
- "offset": 554,
1260
- "length": 7,
1261
- "value": "1"
1262
- },
1263
- {
1264
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1265
- "kind": "IntegerLiteral",
1266
- "offset": 571,
1267
- "length": 6,
1268
- "value": "2"
1269
- },
1270
- {
1271
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1272
- "kind": "IntegerLiteral",
1273
- "offset": 587,
1274
- "length": 4,
1275
- "value": "3"
1276
- },
1277
- {
1278
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1279
- "kind": "IntegerLiteral",
1280
- "offset": 601,
1281
- "length": 24,
1282
- "value": "4"
1283
- },
1284
- {
1285
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1286
- "kind": "IntegerLiteral",
1287
- "offset": 635,
1288
- "length": 22,
1289
- "value": "5"
1290
- },
1291
- {
1292
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1293
- "kind": "StringLiteral",
1294
- "offset": 746,
1295
- "length": 10,
1296
- "value": "\"viewType\""
1297
- },
1298
- {
1299
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1300
- "kind": "StringLiteral",
1301
- "offset": 797,
1302
- "length": 20,
1303
- "value": "\"calculatedViewType\""
1304
- },
1305
- {
1306
- "filePath": "\/Users\/runner\/work\/bogano\/bogano\/ios\/FireworkVideoUI\/FireworkVideoUI\/Sources\/LayoutFlip\/Extensions\/UIKit\/UIView+LayoutFlip.swift",
1307
- "kind": "StringLiteral",
1308
- "offset": 848,
1309
- "length": 10,
1310
- "value": "\"lastType\""
1311
- }
1312
- ]
1313
- }