@shortkitsdk/react-native 0.2.34 → 0.2.36
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.
- package/android/build.gradle.kts +8 -0
- package/android/libs/shortkit-release.aar +0 -0
- package/android/src/main/java/com/shortkit/reactnative/ReactCarouselOverlayHost.kt +100 -47
- package/android/src/main/java/com/shortkit/reactnative/ReactOverlayHost.kt +54 -8
- package/android/src/main/java/com/shortkit/reactnative/ReactVideoCarouselOverlayHost.kt +240 -27
- package/android/src/main/java/com/shortkit/reactnative/ShortKitBridge.kt +151 -1
- package/android/src/main/java/com/shortkit/reactnative/ShortKitFeedView.kt +135 -6
- package/android/src/main/java/com/shortkit/reactnative/ShortKitFeedViewManager.kt +15 -0
- package/android/src/main/java/com/shortkit/reactnative/ShortKitModule.kt +21 -11
- package/android/src/main/java/com/shortkit/reactnative/ShortKitPackage.kt +0 -2
- package/android/src/test/java/com/shortkit/reactnative/ReactCarouselOverlayHostEmitTest.kt +134 -0
- package/android/src/test/java/com/shortkit/reactnative/ReactOverlayHostDragTest.kt +45 -0
- package/android/src/test/java/com/shortkit/reactnative/ReactVideoCarouselOverlayHostDragTest.kt +69 -0
- package/android/src/test/java/com/shortkit/reactnative/ReactVideoCarouselOverlayHostEmitTest.kt +144 -0
- package/android/src/test/java/com/shortkit/reactnative/ShortKitFeedViewActivePropTest.kt +57 -0
- package/ios/ReactOverlayHost.swift +10 -8
- package/ios/ReactVideoCarouselOverlayHost.swift +6 -5
- package/ios/ShortKitBridge.swift +18 -0
- package/ios/ShortKitModule.mm +5 -0
- package/ios/ShortKitPlayerNativeView.swift +36 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Info.plist +2 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.abi.json +1252 -82
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/ShortKitSDK +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/_CodeSignature/CodeResources +9 -9
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Info.plist +2 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +1252 -82
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +1252 -82
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +28 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/ShortKitSDK +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/_CodeSignature/CodeResources +17 -17
- package/ios/ShortKitWidgetNativeView.swift +30 -3
- package/ios/ShortKitWidgetNativeViewManager.mm +1 -0
- package/package.json +1 -1
- package/src/ShortKitCommands.ts +20 -0
- package/src/ShortKitFeed.tsx +21 -0
- package/src/ShortKitPlayer.tsx +20 -1
- package/src/ShortKitWidget.tsx +63 -15
- package/src/specs/NativeShortKitModule.ts +10 -0
- package/src/specs/ShortKitWidgetViewNativeComponent.ts +15 -3
- package/src/types.ts +40 -0
- package/android/src/main/java/com/shortkit/reactnative/ShortKitPlayerNativeView.kt +0 -149
- package/android/src/main/java/com/shortkit/reactnative/ShortKitPlayerViewManager.kt +0 -35
- package/android/src/main/java/com/shortkit/reactnative/ShortKitWidgetNativeView.kt +0 -149
- package/android/src/main/java/com/shortkit/reactnative/ShortKitWidgetViewManager.kt +0 -30
|
@@ -556,6 +556,14 @@ public enum ShortKitFeedLifecycle {
|
|
|
556
556
|
get
|
|
557
557
|
}
|
|
558
558
|
}
|
|
559
|
+
public enum VideoCarouselCellLongPressState : Swift.String {
|
|
560
|
+
case began, ended, cancelled
|
|
561
|
+
public init?(rawValue: Swift.String)
|
|
562
|
+
public typealias RawValue = Swift.String
|
|
563
|
+
public var rawValue: Swift.String {
|
|
564
|
+
get
|
|
565
|
+
}
|
|
566
|
+
}
|
|
559
567
|
@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class ShortKitFeedViewController : UIKit.UIViewController {
|
|
560
568
|
@_Concurrency.MainActor @preconcurrency public var debugPanelFactory: ((_ active: Combine.CurrentValueSubject<ShortKitSDK.DebugMetrics, Swift.Never>, _ prev: Combine.CurrentValueSubject<ShortKitSDK.DebugMetrics, Swift.Never>, _ next: Combine.CurrentValueSubject<ShortKitSDK.DebugMetrics, Swift.Never>) -> UIKit.UIView)?
|
|
561
569
|
@_Concurrency.MainActor @preconcurrency public var onDismiss: (() -> Swift.Void)?
|
|
@@ -567,6 +575,13 @@ public enum ShortKitFeedLifecycle {
|
|
|
567
575
|
public let pageIndex: Swift.Int
|
|
568
576
|
}
|
|
569
577
|
@_Concurrency.MainActor @preconcurrency public var onVideoCarouselCellTap: ((ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellTapPayload) -> Swift.Void)?
|
|
578
|
+
public struct VideoCarouselCellLongPressPayload {
|
|
579
|
+
public let id: Swift.String
|
|
580
|
+
public let index: Swift.Int
|
|
581
|
+
public let pageIndex: Swift.Int
|
|
582
|
+
public let state: ShortKitSDK.VideoCarouselCellLongPressState
|
|
583
|
+
}
|
|
584
|
+
@_Concurrency.MainActor @preconcurrency public var onVideoCarouselCellLongPress: ((ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellLongPressPayload) -> Swift.Void)?
|
|
570
585
|
@_Concurrency.MainActor @preconcurrency public var onRefreshStateChanged: ((ShortKitSDK.ShortKitRefreshState) -> Swift.Void)?
|
|
571
586
|
@_Concurrency.MainActor @preconcurrency public var onFeedTransition: ((ShortKitSDK.FeedTransitionEvent) -> Swift.Void)?
|
|
572
587
|
@_Concurrency.MainActor @preconcurrency public var isActiveSurface: Swift.Bool {
|
|
@@ -893,12 +908,13 @@ public struct VTTCue : Swift.Equatable, Swift.Sendable {
|
|
|
893
908
|
public struct VideoCarouselInput : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
894
909
|
public let id: Swift.String
|
|
895
910
|
public let videos: [ShortKitSDK.VideoCarouselVideoInput]
|
|
911
|
+
public let initialPageIndex: Swift.Int?
|
|
896
912
|
public let title: Swift.String?
|
|
897
913
|
public let description: Swift.String?
|
|
898
914
|
public let author: Swift.String?
|
|
899
915
|
public let section: Swift.String?
|
|
900
916
|
public let articleUrl: Swift.String?
|
|
901
|
-
public init(id: Swift.String, videos: [ShortKitSDK.VideoCarouselVideoInput], title: Swift.String? = nil, description: Swift.String? = nil, author: Swift.String? = nil, section: Swift.String? = nil, articleUrl: Swift.String? = nil)
|
|
917
|
+
public init(id: Swift.String, videos: [ShortKitSDK.VideoCarouselVideoInput], initialPageIndex: Swift.Int? = nil, title: Swift.String? = nil, description: Swift.String? = nil, author: Swift.String? = nil, section: Swift.String? = nil, articleUrl: Swift.String? = nil)
|
|
902
918
|
public static func == (a: ShortKitSDK.VideoCarouselInput, b: ShortKitSDK.VideoCarouselInput) -> Swift.Bool
|
|
903
919
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
904
920
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -906,12 +922,16 @@ public struct VideoCarouselInput : Swift.Codable, Swift.Equatable, Swift.Sendabl
|
|
|
906
922
|
public struct VideoCarouselItem : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
907
923
|
public let id: Swift.String
|
|
908
924
|
public let videos: [ShortKitSDK.ContentItem]
|
|
925
|
+
public let initialPageIndex: Swift.Int?
|
|
909
926
|
public let title: Swift.String?
|
|
910
927
|
public let description: Swift.String?
|
|
911
928
|
public let author: Swift.String?
|
|
912
929
|
public let section: Swift.String?
|
|
913
930
|
public let articleUrl: Swift.String?
|
|
914
|
-
public init(id: Swift.String, videos: [ShortKitSDK.ContentItem], title: Swift.String? = nil, description: Swift.String? = nil, author: Swift.String? = nil, section: Swift.String? = nil, articleUrl: Swift.String? = nil)
|
|
931
|
+
public init(id: Swift.String, videos: [ShortKitSDK.ContentItem], initialPageIndex: Swift.Int? = nil, title: Swift.String? = nil, description: Swift.String? = nil, author: Swift.String? = nil, section: Swift.String? = nil, articleUrl: Swift.String? = nil)
|
|
932
|
+
public var clampedInitialPageIndex: Swift.Int {
|
|
933
|
+
get
|
|
934
|
+
}
|
|
915
935
|
public static func == (a: ShortKitSDK.VideoCarouselItem, b: ShortKitSDK.VideoCarouselItem) -> Swift.Bool
|
|
916
936
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
917
937
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -1165,6 +1185,7 @@ public enum ContentSignal : Swift.Equatable, Swift.Sendable {
|
|
|
1165
1185
|
final public func setMaxBitrate(_ bps: Swift.Int)
|
|
1166
1186
|
final public func setCaptionsEnabled(_ enabled: Swift.Bool)
|
|
1167
1187
|
final public func selectCaptionTrack(language: Swift.String)
|
|
1188
|
+
final public func setFeedScrollEnabled(_ enabled: Swift.Bool)
|
|
1168
1189
|
final public func dismissLiveRoom()
|
|
1169
1190
|
final public func seekThumbnail(at time: Swift.Double) -> UIKit.UIImage?
|
|
1170
1191
|
@objc deinit
|
|
@@ -1279,6 +1300,8 @@ extension ShortKitSDK.ShortKitPlayerViewController : UIKit.UIViewControllerTrans
|
|
|
1279
1300
|
@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency final public class ShortKitWidgetViewController : UIKit.UIViewController {
|
|
1280
1301
|
@_Concurrency.MainActor @preconcurrency final public var feedMask: ShortKitSDK.FeedMaskMode
|
|
1281
1302
|
@_Concurrency.MainActor @preconcurrency final public var onCardTap: ((Swift.String, Swift.Int) -> Swift.Void)?
|
|
1303
|
+
@_Concurrency.MainActor @preconcurrency final public var onModalFeedPresented: ((ShortKitSDK.ShortKitFeedViewController) -> Swift.Void)?
|
|
1304
|
+
@_Concurrency.MainActor @preconcurrency final public var onModalFeedDismissed: (() -> Swift.Void)?
|
|
1282
1305
|
@_Concurrency.MainActor @preconcurrency final public var active: Swift.Bool {
|
|
1283
1306
|
get
|
|
1284
1307
|
set
|
|
@@ -1355,6 +1378,9 @@ extension ShortKitSDK.DownloadMode : Swift.Hashable {}
|
|
|
1355
1378
|
extension ShortKitSDK.ShortKitFeedView : Swift.Sendable {}
|
|
1356
1379
|
extension ShortKitSDK.ShortKitFeedLifecycle : Swift.Equatable {}
|
|
1357
1380
|
extension ShortKitSDK.ShortKitFeedLifecycle : Swift.Hashable {}
|
|
1381
|
+
extension ShortKitSDK.VideoCarouselCellLongPressState : Swift.Equatable {}
|
|
1382
|
+
extension ShortKitSDK.VideoCarouselCellLongPressState : Swift.Hashable {}
|
|
1383
|
+
extension ShortKitSDK.VideoCarouselCellLongPressState : Swift.RawRepresentable {}
|
|
1358
1384
|
extension ShortKitSDK.CaptionSource : Swift.Equatable {}
|
|
1359
1385
|
extension ShortKitSDK.CaptionSource : Swift.Hashable {}
|
|
1360
1386
|
extension ShortKitSDK.CaptionSource : Swift.RawRepresentable {}
|
|
Binary file
|
|
@@ -556,6 +556,14 @@ public enum ShortKitFeedLifecycle {
|
|
|
556
556
|
get
|
|
557
557
|
}
|
|
558
558
|
}
|
|
559
|
+
public enum VideoCarouselCellLongPressState : Swift.String {
|
|
560
|
+
case began, ended, cancelled
|
|
561
|
+
public init?(rawValue: Swift.String)
|
|
562
|
+
public typealias RawValue = Swift.String
|
|
563
|
+
public var rawValue: Swift.String {
|
|
564
|
+
get
|
|
565
|
+
}
|
|
566
|
+
}
|
|
559
567
|
@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class ShortKitFeedViewController : UIKit.UIViewController {
|
|
560
568
|
@_Concurrency.MainActor @preconcurrency public var debugPanelFactory: ((_ active: Combine.CurrentValueSubject<ShortKitSDK.DebugMetrics, Swift.Never>, _ prev: Combine.CurrentValueSubject<ShortKitSDK.DebugMetrics, Swift.Never>, _ next: Combine.CurrentValueSubject<ShortKitSDK.DebugMetrics, Swift.Never>) -> UIKit.UIView)?
|
|
561
569
|
@_Concurrency.MainActor @preconcurrency public var onDismiss: (() -> Swift.Void)?
|
|
@@ -567,6 +575,13 @@ public enum ShortKitFeedLifecycle {
|
|
|
567
575
|
public let pageIndex: Swift.Int
|
|
568
576
|
}
|
|
569
577
|
@_Concurrency.MainActor @preconcurrency public var onVideoCarouselCellTap: ((ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellTapPayload) -> Swift.Void)?
|
|
578
|
+
public struct VideoCarouselCellLongPressPayload {
|
|
579
|
+
public let id: Swift.String
|
|
580
|
+
public let index: Swift.Int
|
|
581
|
+
public let pageIndex: Swift.Int
|
|
582
|
+
public let state: ShortKitSDK.VideoCarouselCellLongPressState
|
|
583
|
+
}
|
|
584
|
+
@_Concurrency.MainActor @preconcurrency public var onVideoCarouselCellLongPress: ((ShortKitSDK.ShortKitFeedViewController.VideoCarouselCellLongPressPayload) -> Swift.Void)?
|
|
570
585
|
@_Concurrency.MainActor @preconcurrency public var onRefreshStateChanged: ((ShortKitSDK.ShortKitRefreshState) -> Swift.Void)?
|
|
571
586
|
@_Concurrency.MainActor @preconcurrency public var onFeedTransition: ((ShortKitSDK.FeedTransitionEvent) -> Swift.Void)?
|
|
572
587
|
@_Concurrency.MainActor @preconcurrency public var isActiveSurface: Swift.Bool {
|
|
@@ -893,12 +908,13 @@ public struct VTTCue : Swift.Equatable, Swift.Sendable {
|
|
|
893
908
|
public struct VideoCarouselInput : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
894
909
|
public let id: Swift.String
|
|
895
910
|
public let videos: [ShortKitSDK.VideoCarouselVideoInput]
|
|
911
|
+
public let initialPageIndex: Swift.Int?
|
|
896
912
|
public let title: Swift.String?
|
|
897
913
|
public let description: Swift.String?
|
|
898
914
|
public let author: Swift.String?
|
|
899
915
|
public let section: Swift.String?
|
|
900
916
|
public let articleUrl: Swift.String?
|
|
901
|
-
public init(id: Swift.String, videos: [ShortKitSDK.VideoCarouselVideoInput], title: Swift.String? = nil, description: Swift.String? = nil, author: Swift.String? = nil, section: Swift.String? = nil, articleUrl: Swift.String? = nil)
|
|
917
|
+
public init(id: Swift.String, videos: [ShortKitSDK.VideoCarouselVideoInput], initialPageIndex: Swift.Int? = nil, title: Swift.String? = nil, description: Swift.String? = nil, author: Swift.String? = nil, section: Swift.String? = nil, articleUrl: Swift.String? = nil)
|
|
902
918
|
public static func == (a: ShortKitSDK.VideoCarouselInput, b: ShortKitSDK.VideoCarouselInput) -> Swift.Bool
|
|
903
919
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
904
920
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -906,12 +922,16 @@ public struct VideoCarouselInput : Swift.Codable, Swift.Equatable, Swift.Sendabl
|
|
|
906
922
|
public struct VideoCarouselItem : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
907
923
|
public let id: Swift.String
|
|
908
924
|
public let videos: [ShortKitSDK.ContentItem]
|
|
925
|
+
public let initialPageIndex: Swift.Int?
|
|
909
926
|
public let title: Swift.String?
|
|
910
927
|
public let description: Swift.String?
|
|
911
928
|
public let author: Swift.String?
|
|
912
929
|
public let section: Swift.String?
|
|
913
930
|
public let articleUrl: Swift.String?
|
|
914
|
-
public init(id: Swift.String, videos: [ShortKitSDK.ContentItem], title: Swift.String? = nil, description: Swift.String? = nil, author: Swift.String? = nil, section: Swift.String? = nil, articleUrl: Swift.String? = nil)
|
|
931
|
+
public init(id: Swift.String, videos: [ShortKitSDK.ContentItem], initialPageIndex: Swift.Int? = nil, title: Swift.String? = nil, description: Swift.String? = nil, author: Swift.String? = nil, section: Swift.String? = nil, articleUrl: Swift.String? = nil)
|
|
932
|
+
public var clampedInitialPageIndex: Swift.Int {
|
|
933
|
+
get
|
|
934
|
+
}
|
|
915
935
|
public static func == (a: ShortKitSDK.VideoCarouselItem, b: ShortKitSDK.VideoCarouselItem) -> Swift.Bool
|
|
916
936
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
917
937
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -1165,6 +1185,7 @@ public enum ContentSignal : Swift.Equatable, Swift.Sendable {
|
|
|
1165
1185
|
final public func setMaxBitrate(_ bps: Swift.Int)
|
|
1166
1186
|
final public func setCaptionsEnabled(_ enabled: Swift.Bool)
|
|
1167
1187
|
final public func selectCaptionTrack(language: Swift.String)
|
|
1188
|
+
final public func setFeedScrollEnabled(_ enabled: Swift.Bool)
|
|
1168
1189
|
final public func dismissLiveRoom()
|
|
1169
1190
|
final public func seekThumbnail(at time: Swift.Double) -> UIKit.UIImage?
|
|
1170
1191
|
@objc deinit
|
|
@@ -1279,6 +1300,8 @@ extension ShortKitSDK.ShortKitPlayerViewController : UIKit.UIViewControllerTrans
|
|
|
1279
1300
|
@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency final public class ShortKitWidgetViewController : UIKit.UIViewController {
|
|
1280
1301
|
@_Concurrency.MainActor @preconcurrency final public var feedMask: ShortKitSDK.FeedMaskMode
|
|
1281
1302
|
@_Concurrency.MainActor @preconcurrency final public var onCardTap: ((Swift.String, Swift.Int) -> Swift.Void)?
|
|
1303
|
+
@_Concurrency.MainActor @preconcurrency final public var onModalFeedPresented: ((ShortKitSDK.ShortKitFeedViewController) -> Swift.Void)?
|
|
1304
|
+
@_Concurrency.MainActor @preconcurrency final public var onModalFeedDismissed: (() -> Swift.Void)?
|
|
1282
1305
|
@_Concurrency.MainActor @preconcurrency final public var active: Swift.Bool {
|
|
1283
1306
|
get
|
|
1284
1307
|
set
|
|
@@ -1355,6 +1378,9 @@ extension ShortKitSDK.DownloadMode : Swift.Hashable {}
|
|
|
1355
1378
|
extension ShortKitSDK.ShortKitFeedView : Swift.Sendable {}
|
|
1356
1379
|
extension ShortKitSDK.ShortKitFeedLifecycle : Swift.Equatable {}
|
|
1357
1380
|
extension ShortKitSDK.ShortKitFeedLifecycle : Swift.Hashable {}
|
|
1381
|
+
extension ShortKitSDK.VideoCarouselCellLongPressState : Swift.Equatable {}
|
|
1382
|
+
extension ShortKitSDK.VideoCarouselCellLongPressState : Swift.Hashable {}
|
|
1383
|
+
extension ShortKitSDK.VideoCarouselCellLongPressState : Swift.RawRepresentable {}
|
|
1358
1384
|
extension ShortKitSDK.CaptionSource : Swift.Equatable {}
|
|
1359
1385
|
extension ShortKitSDK.CaptionSource : Swift.Hashable {}
|
|
1360
1386
|
extension ShortKitSDK.CaptionSource : Swift.RawRepresentable {}
|