@shortkitsdk/react-native 0.2.11 → 0.2.12

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 (32) hide show
  1. package/android/build.gradle.kts +13 -1
  2. package/android/src/main/java/com/shortkit/reactnative/ReactCarouselOverlayHost.kt +115 -55
  3. package/android/src/main/java/com/shortkit/reactnative/ReactOverlayHost.kt +67 -56
  4. package/android/src/main/java/com/shortkit/reactnative/ShortKitBridge.kt +71 -26
  5. package/android/src/main/java/com/shortkit/reactnative/ShortKitFeedView.kt +160 -35
  6. package/android/src/main/java/com/shortkit/reactnative/ShortKitFeedViewManager.kt +5 -0
  7. package/android/src/main/java/com/shortkit/reactnative/ShortKitModule.kt +43 -10
  8. package/android/src/main/java/com/shortkit/reactnative/ShortKitPlayerNativeView.kt +9 -0
  9. package/ios/ReactOverlayHost.swift +13 -27
  10. package/ios/ShortKitBridge.swift +36 -2
  11. package/ios/ShortKitFeedView.swift +24 -3
  12. package/ios/ShortKitModule.mm +4 -1
  13. package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.abi.json +720 -144
  14. package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +19 -5
  15. package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  16. package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.swiftinterface +19 -5
  17. package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/ShortKitSDK +0 -0
  18. package/ios/ShortKitSDK.xcframework/ios-arm64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +720 -144
  19. package/ios/ShortKitSDK.xcframework/ios-arm64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +19 -5
  20. package/ios/ShortKitSDK.xcframework/ios-arm64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  21. package/ios/ShortKitSDK.xcframework/ios-arm64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +19 -5
  22. package/ios/ShortKitSDK.xcframework/ios-arm64-simulator/ShortKitSDK.framework/ShortKitSDK +0 -0
  23. package/package.json +1 -1
  24. package/src/ShortKitContext.ts +2 -1
  25. package/src/ShortKitFeed.tsx +14 -0
  26. package/src/ShortKitOverlaySurface.tsx +153 -45
  27. package/src/ShortKitPlayer.tsx +25 -3
  28. package/src/ShortKitProvider.tsx +4 -2
  29. package/src/index.ts +4 -0
  30. package/src/serialization.ts +1 -0
  31. package/src/specs/NativeShortKitModule.ts +18 -1
  32. package/src/types.ts +6 -0
@@ -5111,6 +5111,241 @@
5111
5111
  }
5112
5112
  ]
5113
5113
  },
5114
+ {
5115
+ "kind": "TypeDecl",
5116
+ "name": "ScrollAxis",
5117
+ "printedName": "ScrollAxis",
5118
+ "children": [
5119
+ {
5120
+ "kind": "Var",
5121
+ "name": "vertical",
5122
+ "printedName": "vertical",
5123
+ "children": [
5124
+ {
5125
+ "kind": "TypeFunc",
5126
+ "name": "Function",
5127
+ "printedName": "(ShortKitSDK.ScrollAxis.Type) -> ShortKitSDK.ScrollAxis",
5128
+ "children": [
5129
+ {
5130
+ "kind": "TypeNominal",
5131
+ "name": "ScrollAxis",
5132
+ "printedName": "ShortKitSDK.ScrollAxis",
5133
+ "usr": "s:11ShortKitSDK10ScrollAxisO"
5134
+ },
5135
+ {
5136
+ "kind": "TypeNominal",
5137
+ "name": "Metatype",
5138
+ "printedName": "ShortKitSDK.ScrollAxis.Type",
5139
+ "children": [
5140
+ {
5141
+ "kind": "TypeNominal",
5142
+ "name": "ScrollAxis",
5143
+ "printedName": "ShortKitSDK.ScrollAxis",
5144
+ "usr": "s:11ShortKitSDK10ScrollAxisO"
5145
+ }
5146
+ ]
5147
+ }
5148
+ ]
5149
+ }
5150
+ ],
5151
+ "declKind": "EnumElement",
5152
+ "usr": "s:11ShortKitSDK10ScrollAxisO8verticalyA2CmF",
5153
+ "mangledName": "$s11ShortKitSDK10ScrollAxisO8verticalyA2CmF",
5154
+ "moduleName": "ShortKitSDK"
5155
+ },
5156
+ {
5157
+ "kind": "Var",
5158
+ "name": "horizontal",
5159
+ "printedName": "horizontal",
5160
+ "children": [
5161
+ {
5162
+ "kind": "TypeFunc",
5163
+ "name": "Function",
5164
+ "printedName": "(ShortKitSDK.ScrollAxis.Type) -> ShortKitSDK.ScrollAxis",
5165
+ "children": [
5166
+ {
5167
+ "kind": "TypeNominal",
5168
+ "name": "ScrollAxis",
5169
+ "printedName": "ShortKitSDK.ScrollAxis",
5170
+ "usr": "s:11ShortKitSDK10ScrollAxisO"
5171
+ },
5172
+ {
5173
+ "kind": "TypeNominal",
5174
+ "name": "Metatype",
5175
+ "printedName": "ShortKitSDK.ScrollAxis.Type",
5176
+ "children": [
5177
+ {
5178
+ "kind": "TypeNominal",
5179
+ "name": "ScrollAxis",
5180
+ "printedName": "ShortKitSDK.ScrollAxis",
5181
+ "usr": "s:11ShortKitSDK10ScrollAxisO"
5182
+ }
5183
+ ]
5184
+ }
5185
+ ]
5186
+ }
5187
+ ],
5188
+ "declKind": "EnumElement",
5189
+ "usr": "s:11ShortKitSDK10ScrollAxisO10horizontalyA2CmF",
5190
+ "mangledName": "$s11ShortKitSDK10ScrollAxisO10horizontalyA2CmF",
5191
+ "moduleName": "ShortKitSDK"
5192
+ },
5193
+ {
5194
+ "kind": "Constructor",
5195
+ "name": "init",
5196
+ "printedName": "init(rawValue:)",
5197
+ "children": [
5198
+ {
5199
+ "kind": "TypeNominal",
5200
+ "name": "Optional",
5201
+ "printedName": "ShortKitSDK.ScrollAxis?",
5202
+ "children": [
5203
+ {
5204
+ "kind": "TypeNominal",
5205
+ "name": "ScrollAxis",
5206
+ "printedName": "ShortKitSDK.ScrollAxis",
5207
+ "usr": "s:11ShortKitSDK10ScrollAxisO"
5208
+ }
5209
+ ],
5210
+ "usr": "s:Sq"
5211
+ },
5212
+ {
5213
+ "kind": "TypeNominal",
5214
+ "name": "String",
5215
+ "printedName": "Swift.String",
5216
+ "usr": "s:SS"
5217
+ }
5218
+ ],
5219
+ "declKind": "Constructor",
5220
+ "usr": "s:11ShortKitSDK10ScrollAxisO8rawValueACSgSS_tcfc",
5221
+ "mangledName": "$s11ShortKitSDK10ScrollAxisO8rawValueACSgSS_tcfc",
5222
+ "moduleName": "ShortKitSDK",
5223
+ "implicit": true,
5224
+ "init_kind": "Designated"
5225
+ },
5226
+ {
5227
+ "kind": "Var",
5228
+ "name": "rawValue",
5229
+ "printedName": "rawValue",
5230
+ "children": [
5231
+ {
5232
+ "kind": "TypeNominal",
5233
+ "name": "String",
5234
+ "printedName": "Swift.String",
5235
+ "usr": "s:SS"
5236
+ }
5237
+ ],
5238
+ "declKind": "Var",
5239
+ "usr": "s:11ShortKitSDK10ScrollAxisO8rawValueSSvp",
5240
+ "mangledName": "$s11ShortKitSDK10ScrollAxisO8rawValueSSvp",
5241
+ "moduleName": "ShortKitSDK",
5242
+ "implicit": true,
5243
+ "accessors": [
5244
+ {
5245
+ "kind": "Accessor",
5246
+ "name": "Get",
5247
+ "printedName": "Get()",
5248
+ "children": [
5249
+ {
5250
+ "kind": "TypeNominal",
5251
+ "name": "String",
5252
+ "printedName": "Swift.String",
5253
+ "usr": "s:SS"
5254
+ }
5255
+ ],
5256
+ "declKind": "Accessor",
5257
+ "usr": "s:11ShortKitSDK10ScrollAxisO8rawValueSSvg",
5258
+ "mangledName": "$s11ShortKitSDK10ScrollAxisO8rawValueSSvg",
5259
+ "moduleName": "ShortKitSDK",
5260
+ "implicit": true,
5261
+ "accessorKind": "get"
5262
+ }
5263
+ ]
5264
+ }
5265
+ ],
5266
+ "declKind": "Enum",
5267
+ "usr": "s:11ShortKitSDK10ScrollAxisO",
5268
+ "mangledName": "$s11ShortKitSDK10ScrollAxisO",
5269
+ "moduleName": "ShortKitSDK",
5270
+ "declAttributes": [
5271
+ "AccessControl",
5272
+ "RawDocComment"
5273
+ ],
5274
+ "enumRawTypeName": "String",
5275
+ "conformances": [
5276
+ {
5277
+ "kind": "Conformance",
5278
+ "name": "Copyable",
5279
+ "printedName": "Copyable",
5280
+ "usr": "s:s8CopyableP",
5281
+ "mangledName": "$ss8CopyableP"
5282
+ },
5283
+ {
5284
+ "kind": "Conformance",
5285
+ "name": "Escapable",
5286
+ "printedName": "Escapable",
5287
+ "usr": "s:s9EscapableP",
5288
+ "mangledName": "$ss9EscapableP"
5289
+ },
5290
+ {
5291
+ "kind": "Conformance",
5292
+ "name": "Hashable",
5293
+ "printedName": "Hashable",
5294
+ "usr": "s:SH",
5295
+ "mangledName": "$sSH"
5296
+ },
5297
+ {
5298
+ "kind": "Conformance",
5299
+ "name": "RawRepresentable",
5300
+ "printedName": "RawRepresentable",
5301
+ "children": [
5302
+ {
5303
+ "kind": "TypeWitness",
5304
+ "name": "RawValue",
5305
+ "printedName": "RawValue",
5306
+ "children": [
5307
+ {
5308
+ "kind": "TypeNominal",
5309
+ "name": "String",
5310
+ "printedName": "Swift.String",
5311
+ "usr": "s:SS"
5312
+ }
5313
+ ]
5314
+ }
5315
+ ],
5316
+ "usr": "s:SY",
5317
+ "mangledName": "$sSY"
5318
+ },
5319
+ {
5320
+ "kind": "Conformance",
5321
+ "name": "Decodable",
5322
+ "printedName": "Decodable",
5323
+ "usr": "s:Se",
5324
+ "mangledName": "$sSe"
5325
+ },
5326
+ {
5327
+ "kind": "Conformance",
5328
+ "name": "Encodable",
5329
+ "printedName": "Encodable",
5330
+ "usr": "s:SE",
5331
+ "mangledName": "$sSE"
5332
+ },
5333
+ {
5334
+ "kind": "Conformance",
5335
+ "name": "Equatable",
5336
+ "printedName": "Equatable",
5337
+ "usr": "s:SQ",
5338
+ "mangledName": "$sSQ"
5339
+ },
5340
+ {
5341
+ "kind": "Conformance",
5342
+ "name": "Sendable",
5343
+ "printedName": "Sendable",
5344
+ "usr": "s:s8SendableP",
5345
+ "mangledName": "$ss8SendableP"
5346
+ }
5347
+ ]
5348
+ },
5114
5349
  {
5115
5350
  "kind": "TypeDecl",
5116
5351
  "name": "FeedSource",
@@ -6323,6 +6558,91 @@
6323
6558
  }
6324
6559
  ]
6325
6560
  },
6561
+ {
6562
+ "kind": "Var",
6563
+ "name": "scrollAxis",
6564
+ "printedName": "scrollAxis",
6565
+ "children": [
6566
+ {
6567
+ "kind": "TypeNominal",
6568
+ "name": "ScrollAxis",
6569
+ "printedName": "ShortKitSDK.ScrollAxis",
6570
+ "usr": "s:11ShortKitSDK10ScrollAxisO"
6571
+ }
6572
+ ],
6573
+ "declKind": "Var",
6574
+ "usr": "s:11ShortKitSDK10FeedConfigV10scrollAxisAA06ScrollG0Ovp",
6575
+ "mangledName": "$s11ShortKitSDK10FeedConfigV10scrollAxisAA06ScrollG0Ovp",
6576
+ "moduleName": "ShortKitSDK",
6577
+ "declAttributes": [
6578
+ "HasStorage",
6579
+ "AccessControl"
6580
+ ],
6581
+ "hasStorage": true,
6582
+ "accessors": [
6583
+ {
6584
+ "kind": "Accessor",
6585
+ "name": "Get",
6586
+ "printedName": "Get()",
6587
+ "children": [
6588
+ {
6589
+ "kind": "TypeNominal",
6590
+ "name": "ScrollAxis",
6591
+ "printedName": "ShortKitSDK.ScrollAxis",
6592
+ "usr": "s:11ShortKitSDK10ScrollAxisO"
6593
+ }
6594
+ ],
6595
+ "declKind": "Accessor",
6596
+ "usr": "s:11ShortKitSDK10FeedConfigV10scrollAxisAA06ScrollG0Ovg",
6597
+ "mangledName": "$s11ShortKitSDK10FeedConfigV10scrollAxisAA06ScrollG0Ovg",
6598
+ "moduleName": "ShortKitSDK",
6599
+ "implicit": true,
6600
+ "accessorKind": "get"
6601
+ },
6602
+ {
6603
+ "kind": "Accessor",
6604
+ "name": "Set",
6605
+ "printedName": "Set()",
6606
+ "children": [
6607
+ {
6608
+ "kind": "TypeNominal",
6609
+ "name": "Void",
6610
+ "printedName": "()"
6611
+ },
6612
+ {
6613
+ "kind": "TypeNominal",
6614
+ "name": "ScrollAxis",
6615
+ "printedName": "ShortKitSDK.ScrollAxis",
6616
+ "usr": "s:11ShortKitSDK10ScrollAxisO"
6617
+ }
6618
+ ],
6619
+ "declKind": "Accessor",
6620
+ "usr": "s:11ShortKitSDK10FeedConfigV10scrollAxisAA06ScrollG0Ovs",
6621
+ "mangledName": "$s11ShortKitSDK10FeedConfigV10scrollAxisAA06ScrollG0Ovs",
6622
+ "moduleName": "ShortKitSDK",
6623
+ "implicit": true,
6624
+ "accessorKind": "set"
6625
+ },
6626
+ {
6627
+ "kind": "Accessor",
6628
+ "name": "Modify",
6629
+ "printedName": "Modify()",
6630
+ "children": [
6631
+ {
6632
+ "kind": "TypeNominal",
6633
+ "name": "Void",
6634
+ "printedName": "()"
6635
+ }
6636
+ ],
6637
+ "declKind": "Accessor",
6638
+ "usr": "s:11ShortKitSDK10FeedConfigV10scrollAxisAA06ScrollG0OvM",
6639
+ "mangledName": "$s11ShortKitSDK10FeedConfigV10scrollAxisAA06ScrollG0OvM",
6640
+ "moduleName": "ShortKitSDK",
6641
+ "implicit": true,
6642
+ "accessorKind": "_modify"
6643
+ }
6644
+ ]
6645
+ },
6326
6646
  {
6327
6647
  "kind": "Var",
6328
6648
  "name": "videoOverlay",
@@ -7227,7 +7547,7 @@
7227
7547
  {
7228
7548
  "kind": "Constructor",
7229
7549
  "name": "init",
7230
- "printedName": "init(feedHeight:videoOverlay:carouselOverlay:surveyOverlay:adOverlay:muteOnStart:autoplay:feedSource:coldStartEnabled:filter:preload:)",
7550
+ "printedName": "init(feedHeight:scrollAxis:videoOverlay:carouselOverlay:surveyOverlay:adOverlay:muteOnStart:autoplay:feedSource:coldStartEnabled:filter:preload:)",
7231
7551
  "children": [
7232
7552
  {
7233
7553
  "kind": "TypeNominal",
@@ -7242,6 +7562,13 @@
7242
7562
  "hasDefaultArg": true,
7243
7563
  "usr": "s:11ShortKitSDK10FeedHeightO"
7244
7564
  },
7565
+ {
7566
+ "kind": "TypeNominal",
7567
+ "name": "ScrollAxis",
7568
+ "printedName": "ShortKitSDK.ScrollAxis",
7569
+ "hasDefaultArg": true,
7570
+ "usr": "s:11ShortKitSDK10ScrollAxisO"
7571
+ },
7245
7572
  {
7246
7573
  "kind": "TypeNominal",
7247
7574
  "name": "VideoOverlayMode",
@@ -7330,8 +7657,8 @@
7330
7657
  }
7331
7658
  ],
7332
7659
  "declKind": "Constructor",
7333
- "usr": "s:11ShortKitSDK10FeedConfigV10feedHeight12videoOverlay08carouselI006surveyI002adI011muteOnStart8autoplay0F6Source04coldO7Enabled6filter7preloadAcA0dG0O_AA05VideoI4ModeOAA08CarouseliW0OAA06SurveyiW0OAA02AdiW0OS2bAA0dQ0OSbAA0D6FilterVSgAA0D7PreloadCSgtcfc",
7334
- "mangledName": "$s11ShortKitSDK10FeedConfigV10feedHeight12videoOverlay08carouselI006surveyI002adI011muteOnStart8autoplay0F6Source04coldO7Enabled6filter7preloadAcA0dG0O_AA05VideoI4ModeOAA08CarouseliW0OAA06SurveyiW0OAA02AdiW0OS2bAA0dQ0OSbAA0D6FilterVSgAA0D7PreloadCSgtcfc",
7660
+ "usr": "s:11ShortKitSDK10FeedConfigV10feedHeight10scrollAxis12videoOverlay08carouselK006surveyK002adK011muteOnStart8autoplay0F6Source04coldQ7Enabled6filter7preloadAcA0dG0O_AA06ScrollI0OAA05VideoK4ModeOAA08CarouselkZ0OAA06SurveykZ0OAA02AdkZ0OS2bAA0dS0OSbAA0D6FilterVSgAA0D7PreloadCSgtcfc",
7661
+ "mangledName": "$s11ShortKitSDK10FeedConfigV10feedHeight10scrollAxis12videoOverlay08carouselK006surveyK002adK011muteOnStart8autoplay0F6Source04coldQ7Enabled6filter7preloadAcA0dG0O_AA06ScrollI0OAA05VideoK4ModeOAA08CarouselkZ0OAA06SurveykZ0OAA02AdkZ0OS2bAA0dS0OSbAA0D6FilterVSgAA0D7PreloadCSgtcfc",
7335
7662
  "moduleName": "ShortKitSDK",
7336
7663
  "declAttributes": [
7337
7664
  "AccessControl"
@@ -8843,7 +9170,7 @@
8843
9170
  {
8844
9171
  "kind": "Constructor",
8845
9172
  "name": "init",
8846
- "printedName": "init(shortKit:config:)",
9173
+ "printedName": "init(shortKit:config:onFeedReady:)",
8847
9174
  "children": [
8848
9175
  {
8849
9176
  "kind": "TypeNominal",
@@ -8861,12 +9188,39 @@
8861
9188
  "kind": "TypeNominal",
8862
9189
  "name": "FeedConfig",
8863
9190
  "printedName": "ShortKitSDK.FeedConfig",
9191
+ "hasDefaultArg": true,
8864
9192
  "usr": "s:11ShortKitSDK10FeedConfigV"
9193
+ },
9194
+ {
9195
+ "kind": "TypeNominal",
9196
+ "name": "Optional",
9197
+ "printedName": "(() -> ())?",
9198
+ "children": [
9199
+ {
9200
+ "kind": "TypeFunc",
9201
+ "name": "Function",
9202
+ "printedName": "() -> ()",
9203
+ "children": [
9204
+ {
9205
+ "kind": "TypeNominal",
9206
+ "name": "Void",
9207
+ "printedName": "()"
9208
+ },
9209
+ {
9210
+ "kind": "TypeNominal",
9211
+ "name": "Void",
9212
+ "printedName": "()"
9213
+ }
9214
+ ]
9215
+ }
9216
+ ],
9217
+ "hasDefaultArg": true,
9218
+ "usr": "s:Sq"
8865
9219
  }
8866
9220
  ],
8867
9221
  "declKind": "Constructor",
8868
- "usr": "s:11ShortKitSDK0aB8FeedViewV05shortB06configAcA0aB0C_AA0D6ConfigVtcfc",
8869
- "mangledName": "$s11ShortKitSDK0aB8FeedViewV05shortB06configAcA0aB0C_AA0D6ConfigVtcfc",
9222
+ "usr": "s:11ShortKitSDK0aB8FeedViewV05shortB06config02onD5ReadyAcA0aB0C_AA0D6ConfigVyycSgtcfc",
9223
+ "mangledName": "$s11ShortKitSDK0aB8FeedViewV05shortB06config02onD5ReadyAcA0aB0C_AA0D6ConfigVyycSgtcfc",
8870
9224
  "moduleName": "ShortKitSDK",
8871
9225
  "declAttributes": [
8872
9226
  "Preconcurrency",
@@ -9335,7 +9689,155 @@
9335
9689
  {
9336
9690
  "kind": "TypeFunc",
9337
9691
  "name": "Function",
9338
- "printedName": "() -> ()",
9692
+ "printedName": "() -> ()",
9693
+ "children": [
9694
+ {
9695
+ "kind": "TypeNominal",
9696
+ "name": "Void",
9697
+ "printedName": "()"
9698
+ },
9699
+ {
9700
+ "kind": "TypeNominal",
9701
+ "name": "Void",
9702
+ "printedName": "()"
9703
+ }
9704
+ ]
9705
+ }
9706
+ ],
9707
+ "usr": "s:Sq"
9708
+ }
9709
+ ],
9710
+ "declKind": "Accessor",
9711
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC9onDismissyycSgvs",
9712
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC9onDismissyycSgvs",
9713
+ "moduleName": "ShortKitSDK",
9714
+ "implicit": true,
9715
+ "accessorKind": "set"
9716
+ },
9717
+ {
9718
+ "kind": "Accessor",
9719
+ "name": "Modify",
9720
+ "printedName": "Modify()",
9721
+ "children": [
9722
+ {
9723
+ "kind": "TypeNominal",
9724
+ "name": "Void",
9725
+ "printedName": "()"
9726
+ }
9727
+ ],
9728
+ "declKind": "Accessor",
9729
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC9onDismissyycSgvM",
9730
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC9onDismissyycSgvM",
9731
+ "moduleName": "ShortKitSDK",
9732
+ "implicit": true,
9733
+ "accessorKind": "_modify"
9734
+ }
9735
+ ]
9736
+ },
9737
+ {
9738
+ "kind": "Var",
9739
+ "name": "onRemainingContentCountChange",
9740
+ "printedName": "onRemainingContentCountChange",
9741
+ "children": [
9742
+ {
9743
+ "kind": "TypeNominal",
9744
+ "name": "Optional",
9745
+ "printedName": "((Swift.Int) -> ())?",
9746
+ "children": [
9747
+ {
9748
+ "kind": "TypeFunc",
9749
+ "name": "Function",
9750
+ "printedName": "(Swift.Int) -> ()",
9751
+ "children": [
9752
+ {
9753
+ "kind": "TypeNominal",
9754
+ "name": "Void",
9755
+ "printedName": "()"
9756
+ },
9757
+ {
9758
+ "kind": "TypeNominal",
9759
+ "name": "Int",
9760
+ "printedName": "Swift.Int",
9761
+ "usr": "s:Si"
9762
+ }
9763
+ ]
9764
+ }
9765
+ ],
9766
+ "usr": "s:Sq"
9767
+ }
9768
+ ],
9769
+ "declKind": "Var",
9770
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvp",
9771
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvp",
9772
+ "moduleName": "ShortKitSDK",
9773
+ "declAttributes": [
9774
+ "HasInitialValue",
9775
+ "Preconcurrency",
9776
+ "Custom",
9777
+ "HasStorage",
9778
+ "AccessControl",
9779
+ "RawDocComment"
9780
+ ],
9781
+ "hasStorage": true,
9782
+ "accessors": [
9783
+ {
9784
+ "kind": "Accessor",
9785
+ "name": "Get",
9786
+ "printedName": "Get()",
9787
+ "children": [
9788
+ {
9789
+ "kind": "TypeNominal",
9790
+ "name": "Optional",
9791
+ "printedName": "((Swift.Int) -> ())?",
9792
+ "children": [
9793
+ {
9794
+ "kind": "TypeFunc",
9795
+ "name": "Function",
9796
+ "printedName": "(Swift.Int) -> ()",
9797
+ "children": [
9798
+ {
9799
+ "kind": "TypeNominal",
9800
+ "name": "Void",
9801
+ "printedName": "()"
9802
+ },
9803
+ {
9804
+ "kind": "TypeNominal",
9805
+ "name": "Int",
9806
+ "printedName": "Swift.Int",
9807
+ "usr": "s:Si"
9808
+ }
9809
+ ]
9810
+ }
9811
+ ],
9812
+ "usr": "s:Sq"
9813
+ }
9814
+ ],
9815
+ "declKind": "Accessor",
9816
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvg",
9817
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvg",
9818
+ "moduleName": "ShortKitSDK",
9819
+ "implicit": true,
9820
+ "accessorKind": "get"
9821
+ },
9822
+ {
9823
+ "kind": "Accessor",
9824
+ "name": "Set",
9825
+ "printedName": "Set()",
9826
+ "children": [
9827
+ {
9828
+ "kind": "TypeNominal",
9829
+ "name": "Void",
9830
+ "printedName": "()"
9831
+ },
9832
+ {
9833
+ "kind": "TypeNominal",
9834
+ "name": "Optional",
9835
+ "printedName": "((Swift.Int) -> ())?",
9836
+ "children": [
9837
+ {
9838
+ "kind": "TypeFunc",
9839
+ "name": "Function",
9840
+ "printedName": "(Swift.Int) -> ()",
9339
9841
  "children": [
9340
9842
  {
9341
9843
  "kind": "TypeNominal",
@@ -9344,8 +9846,9 @@
9344
9846
  },
9345
9847
  {
9346
9848
  "kind": "TypeNominal",
9347
- "name": "Void",
9348
- "printedName": "()"
9849
+ "name": "Int",
9850
+ "printedName": "Swift.Int",
9851
+ "usr": "s:Si"
9349
9852
  }
9350
9853
  ]
9351
9854
  }
@@ -9354,8 +9857,8 @@
9354
9857
  }
9355
9858
  ],
9356
9859
  "declKind": "Accessor",
9357
- "usr": "s:11ShortKitSDK0aB18FeedViewControllerC9onDismissyycSgvs",
9358
- "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC9onDismissyycSgvs",
9860
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvs",
9861
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvs",
9359
9862
  "moduleName": "ShortKitSDK",
9360
9863
  "implicit": true,
9361
9864
  "accessorKind": "set"
@@ -9372,8 +9875,8 @@
9372
9875
  }
9373
9876
  ],
9374
9877
  "declKind": "Accessor",
9375
- "usr": "s:11ShortKitSDK0aB18FeedViewControllerC9onDismissyycSgvM",
9376
- "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC9onDismissyycSgvM",
9878
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvM",
9879
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvM",
9377
9880
  "moduleName": "ShortKitSDK",
9378
9881
  "implicit": true,
9379
9882
  "accessorKind": "_modify"
@@ -9382,18 +9885,18 @@
9382
9885
  },
9383
9886
  {
9384
9887
  "kind": "Var",
9385
- "name": "onRemainingContentCountChange",
9386
- "printedName": "onRemainingContentCountChange",
9888
+ "name": "onFeedReady",
9889
+ "printedName": "onFeedReady",
9387
9890
  "children": [
9388
9891
  {
9389
9892
  "kind": "TypeNominal",
9390
9893
  "name": "Optional",
9391
- "printedName": "((Swift.Int) -> ())?",
9894
+ "printedName": "(() -> ())?",
9392
9895
  "children": [
9393
9896
  {
9394
9897
  "kind": "TypeFunc",
9395
9898
  "name": "Function",
9396
- "printedName": "(Swift.Int) -> ()",
9899
+ "printedName": "() -> ()",
9397
9900
  "children": [
9398
9901
  {
9399
9902
  "kind": "TypeNominal",
@@ -9402,9 +9905,8 @@
9402
9905
  },
9403
9906
  {
9404
9907
  "kind": "TypeNominal",
9405
- "name": "Int",
9406
- "printedName": "Swift.Int",
9407
- "usr": "s:Si"
9908
+ "name": "Void",
9909
+ "printedName": "()"
9408
9910
  }
9409
9911
  ]
9410
9912
  }
@@ -9413,8 +9915,8 @@
9413
9915
  }
9414
9916
  ],
9415
9917
  "declKind": "Var",
9416
- "usr": "s:11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvp",
9417
- "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvp",
9918
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC02onD5ReadyyycSgvp",
9919
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC02onD5ReadyyycSgvp",
9418
9920
  "moduleName": "ShortKitSDK",
9419
9921
  "declAttributes": [
9420
9922
  "HasInitialValue",
@@ -9434,12 +9936,12 @@
9434
9936
  {
9435
9937
  "kind": "TypeNominal",
9436
9938
  "name": "Optional",
9437
- "printedName": "((Swift.Int) -> ())?",
9939
+ "printedName": "(() -> ())?",
9438
9940
  "children": [
9439
9941
  {
9440
9942
  "kind": "TypeFunc",
9441
9943
  "name": "Function",
9442
- "printedName": "(Swift.Int) -> ()",
9944
+ "printedName": "() -> ()",
9443
9945
  "children": [
9444
9946
  {
9445
9947
  "kind": "TypeNominal",
@@ -9448,9 +9950,8 @@
9448
9950
  },
9449
9951
  {
9450
9952
  "kind": "TypeNominal",
9451
- "name": "Int",
9452
- "printedName": "Swift.Int",
9453
- "usr": "s:Si"
9953
+ "name": "Void",
9954
+ "printedName": "()"
9454
9955
  }
9455
9956
  ]
9456
9957
  }
@@ -9459,8 +9960,8 @@
9459
9960
  }
9460
9961
  ],
9461
9962
  "declKind": "Accessor",
9462
- "usr": "s:11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvg",
9463
- "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvg",
9963
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC02onD5ReadyyycSgvg",
9964
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC02onD5ReadyyycSgvg",
9464
9965
  "moduleName": "ShortKitSDK",
9465
9966
  "implicit": true,
9466
9967
  "accessorKind": "get"
@@ -9478,12 +9979,12 @@
9478
9979
  {
9479
9980
  "kind": "TypeNominal",
9480
9981
  "name": "Optional",
9481
- "printedName": "((Swift.Int) -> ())?",
9982
+ "printedName": "(() -> ())?",
9482
9983
  "children": [
9483
9984
  {
9484
9985
  "kind": "TypeFunc",
9485
9986
  "name": "Function",
9486
- "printedName": "(Swift.Int) -> ()",
9987
+ "printedName": "() -> ()",
9487
9988
  "children": [
9488
9989
  {
9489
9990
  "kind": "TypeNominal",
@@ -9492,9 +9993,8 @@
9492
9993
  },
9493
9994
  {
9494
9995
  "kind": "TypeNominal",
9495
- "name": "Int",
9496
- "printedName": "Swift.Int",
9497
- "usr": "s:Si"
9996
+ "name": "Void",
9997
+ "printedName": "()"
9498
9998
  }
9499
9999
  ]
9500
10000
  }
@@ -9503,8 +10003,8 @@
9503
10003
  }
9504
10004
  ],
9505
10005
  "declKind": "Accessor",
9506
- "usr": "s:11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvs",
9507
- "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvs",
10006
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC02onD5ReadyyycSgvs",
10007
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC02onD5ReadyyycSgvs",
9508
10008
  "moduleName": "ShortKitSDK",
9509
10009
  "implicit": true,
9510
10010
  "accessorKind": "set"
@@ -9521,8 +10021,8 @@
9521
10021
  }
9522
10022
  ],
9523
10023
  "declKind": "Accessor",
9524
- "usr": "s:11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvM",
9525
- "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC29onRemainingContentCountChangeySicSgvM",
10024
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC02onD5ReadyyycSgvM",
10025
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC02onD5ReadyyycSgvM",
9526
10026
  "moduleName": "ShortKitSDK",
9527
10027
  "implicit": true,
9528
10028
  "accessorKind": "_modify"
@@ -9842,6 +10342,74 @@
9842
10342
  ],
9843
10343
  "funcSelfKind": "NonMutating"
9844
10344
  },
10345
+ {
10346
+ "kind": "Function",
10347
+ "name": "setBridgeManaged",
10348
+ "printedName": "setBridgeManaged()",
10349
+ "children": [
10350
+ {
10351
+ "kind": "TypeNominal",
10352
+ "name": "Void",
10353
+ "printedName": "()"
10354
+ }
10355
+ ],
10356
+ "declKind": "Func",
10357
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC16setBridgeManagedyyF",
10358
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC16setBridgeManagedyyF",
10359
+ "moduleName": "ShortKitSDK",
10360
+ "declAttributes": [
10361
+ "Preconcurrency",
10362
+ "Custom",
10363
+ "AccessControl",
10364
+ "RawDocComment"
10365
+ ],
10366
+ "funcSelfKind": "NonMutating"
10367
+ },
10368
+ {
10369
+ "kind": "Function",
10370
+ "name": "activate",
10371
+ "printedName": "activate()",
10372
+ "children": [
10373
+ {
10374
+ "kind": "TypeNominal",
10375
+ "name": "Void",
10376
+ "printedName": "()"
10377
+ }
10378
+ ],
10379
+ "declKind": "Func",
10380
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC8activateyyF",
10381
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC8activateyyF",
10382
+ "moduleName": "ShortKitSDK",
10383
+ "declAttributes": [
10384
+ "Preconcurrency",
10385
+ "Custom",
10386
+ "AccessControl"
10387
+ ],
10388
+ "funcSelfKind": "NonMutating"
10389
+ },
10390
+ {
10391
+ "kind": "Function",
10392
+ "name": "deactivate",
10393
+ "printedName": "deactivate()",
10394
+ "children": [
10395
+ {
10396
+ "kind": "TypeNominal",
10397
+ "name": "Void",
10398
+ "printedName": "()"
10399
+ }
10400
+ ],
10401
+ "declKind": "Func",
10402
+ "usr": "s:11ShortKitSDK0aB18FeedViewControllerC10deactivateyyF",
10403
+ "mangledName": "$s11ShortKitSDK0aB18FeedViewControllerC10deactivateyyF",
10404
+ "moduleName": "ShortKitSDK",
10405
+ "declAttributes": [
10406
+ "Preconcurrency",
10407
+ "Custom",
10408
+ "AccessControl",
10409
+ "RawDocComment"
10410
+ ],
10411
+ "funcSelfKind": "NonMutating"
10412
+ },
9845
10413
  {
9846
10414
  "kind": "Function",
9847
10415
  "name": "viewDidDisappear",
@@ -24016,77 +24584,6 @@
24016
24584
  }
24017
24585
  ]
24018
24586
  },
24019
- {
24020
- "kind": "Var",
24021
- "name": "feedReady",
24022
- "printedName": "feedReady",
24023
- "children": [
24024
- {
24025
- "kind": "TypeNominal",
24026
- "name": "AnyPublisher",
24027
- "printedName": "Combine.AnyPublisher<(), Swift.Never>",
24028
- "children": [
24029
- {
24030
- "kind": "TypeNominal",
24031
- "name": "Void",
24032
- "printedName": "()"
24033
- },
24034
- {
24035
- "kind": "TypeNominal",
24036
- "name": "Never",
24037
- "printedName": "Swift.Never",
24038
- "usr": "s:s5NeverO"
24039
- }
24040
- ],
24041
- "usr": "s:7Combine12AnyPublisherV"
24042
- }
24043
- ],
24044
- "declKind": "Var",
24045
- "usr": "s:11ShortKitSDK0aB6PlayerC9feedReady7Combine12AnyPublisherVyyts5NeverOGvp",
24046
- "mangledName": "$s11ShortKitSDK0aB6PlayerC9feedReady7Combine12AnyPublisherVyyts5NeverOGvp",
24047
- "moduleName": "ShortKitSDK",
24048
- "declAttributes": [
24049
- "Final",
24050
- "AccessControl",
24051
- "RawDocComment"
24052
- ],
24053
- "accessors": [
24054
- {
24055
- "kind": "Accessor",
24056
- "name": "Get",
24057
- "printedName": "Get()",
24058
- "children": [
24059
- {
24060
- "kind": "TypeNominal",
24061
- "name": "AnyPublisher",
24062
- "printedName": "Combine.AnyPublisher<(), Swift.Never>",
24063
- "children": [
24064
- {
24065
- "kind": "TypeNominal",
24066
- "name": "Void",
24067
- "printedName": "()"
24068
- },
24069
- {
24070
- "kind": "TypeNominal",
24071
- "name": "Never",
24072
- "printedName": "Swift.Never",
24073
- "usr": "s:s5NeverO"
24074
- }
24075
- ],
24076
- "usr": "s:7Combine12AnyPublisherV"
24077
- }
24078
- ],
24079
- "declKind": "Accessor",
24080
- "usr": "s:11ShortKitSDK0aB6PlayerC9feedReady7Combine12AnyPublisherVyyts5NeverOGvg",
24081
- "mangledName": "$s11ShortKitSDK0aB6PlayerC9feedReady7Combine12AnyPublisherVyyts5NeverOGvg",
24082
- "moduleName": "ShortKitSDK",
24083
- "declAttributes": [
24084
- "Final"
24085
- ],
24086
- "accessorKind": "get"
24087
- }
24088
- ]
24089
- },
24090
24587
  {
24091
24588
  "kind": "Var",
24092
24589
  "name": "currentItemValue",
@@ -26218,6 +26715,43 @@
26218
26715
  ],
26219
26716
  "funcSelfKind": "NonMutating"
26220
26717
  },
26718
+ {
26719
+ "kind": "Function",
26720
+ "name": "preloadFeed",
26721
+ "printedName": "preloadFeed(items:)",
26722
+ "children": [
26723
+ {
26724
+ "kind": "TypeNominal",
26725
+ "name": "FeedPreload",
26726
+ "printedName": "ShortKitSDK.FeedPreload",
26727
+ "usr": "s:11ShortKitSDK11FeedPreloadC"
26728
+ },
26729
+ {
26730
+ "kind": "TypeNominal",
26731
+ "name": "Array",
26732
+ "printedName": "[ShortKitSDK.FeedInput]",
26733
+ "children": [
26734
+ {
26735
+ "kind": "TypeNominal",
26736
+ "name": "FeedInput",
26737
+ "printedName": "ShortKitSDK.FeedInput",
26738
+ "usr": "s:11ShortKitSDK9FeedInputO"
26739
+ }
26740
+ ],
26741
+ "usr": "s:Sa"
26742
+ }
26743
+ ],
26744
+ "declKind": "Func",
26745
+ "usr": "s:11ShortKitSDK0aB0C11preloadFeed5itemsAA0E7PreloadCSayAA0E5InputOG_tF",
26746
+ "mangledName": "$s11ShortKitSDK0aB0C11preloadFeed5itemsAA0E7PreloadCSayAA0E5InputOG_tF",
26747
+ "moduleName": "ShortKitSDK",
26748
+ "declAttributes": [
26749
+ "Final",
26750
+ "AccessControl",
26751
+ "RawDocComment"
26752
+ ],
26753
+ "funcSelfKind": "NonMutating"
26754
+ },
26221
26755
  {
26222
26756
  "kind": "Function",
26223
26757
  "name": "fetchContent",
@@ -29871,21 +30405,21 @@
29871
30405
  {
29872
30406
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Configuration\/FeedConfig.swift",
29873
30407
  "kind": "BooleanLiteral",
29874
- "offset": 2367,
30408
+ "offset": 2588,
29875
30409
  "length": 4,
29876
30410
  "value": "true"
29877
30411
  },
29878
30412
  {
29879
30413
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Configuration\/FeedConfig.swift",
29880
30414
  "kind": "BooleanLiteral",
29881
- "offset": 2398,
30415
+ "offset": 2619,
29882
30416
  "length": 4,
29883
30417
  "value": "true"
29884
30418
  },
29885
30419
  {
29886
30420
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Configuration\/FeedConfig.swift",
29887
30421
  "kind": "BooleanLiteral",
29888
- "offset": 2484,
30422
+ "offset": 2705,
29889
30423
  "length": 5,
29890
30424
  "value": "false"
29891
30425
  },
@@ -29948,21 +30482,14 @@
29948
30482
  {
29949
30483
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedCell.swift",
29950
30484
  "kind": "IntegerLiteral",
29951
- "offset": 723,
29952
- "length": 1,
29953
- "value": "0"
29954
- },
29955
- {
29956
- "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedCell.swift",
29957
- "kind": "IntegerLiteral",
29958
- "offset": 2326,
30485
+ "offset": 2273,
29959
30486
  "length": 2,
29960
30487
  "value": "-1"
29961
30488
  },
29962
30489
  {
29963
30490
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedCell.swift",
29964
30491
  "kind": "IntegerLiteral",
29965
- "offset": 3950,
30492
+ "offset": 4199,
29966
30493
  "length": 1,
29967
30494
  "value": "0"
29968
30495
  },
@@ -29990,133 +30517,182 @@
29990
30517
  {
29991
30518
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedPreload.swift",
29992
30519
  "kind": "BooleanLiteral",
29993
- "offset": 895,
30520
+ "offset": 1085,
30521
+ "length": 5,
30522
+ "value": "false"
30523
+ },
30524
+ {
30525
+ "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30526
+ "kind": "BooleanLiteral",
30527
+ "offset": 649,
30528
+ "length": 5,
30529
+ "value": "false"
30530
+ },
30531
+ {
30532
+ "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30533
+ "kind": "BooleanLiteral",
30534
+ "offset": 817,
29994
30535
  "length": 5,
29995
30536
  "value": "false"
29996
30537
  },
29997
30538
  {
29998
30539
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
29999
30540
  "kind": "BooleanLiteral",
30000
- "offset": 1134,
30541
+ "offset": 1696,
30001
30542
  "length": 5,
30002
30543
  "value": "false"
30003
30544
  },
30004
30545
  {
30005
30546
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30006
30547
  "kind": "BooleanLiteral",
30007
- "offset": 1678,
30548
+ "offset": 2240,
30008
30549
  "length": 5,
30009
30550
  "value": "false"
30010
30551
  },
30011
30552
  {
30012
30553
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30013
30554
  "kind": "BooleanLiteral",
30014
- "offset": 1845,
30555
+ "offset": 2407,
30015
30556
  "length": 4,
30016
30557
  "value": "true"
30017
30558
  },
30559
+ {
30560
+ "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30561
+ "kind": "FloatLiteral",
30562
+ "offset": 2466,
30563
+ "length": 3,
30564
+ "value": "0.8"
30565
+ },
30566
+ {
30567
+ "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30568
+ "kind": "FloatLiteral",
30569
+ "offset": 2474,
30570
+ "length": 3,
30571
+ "value": "0.8"
30572
+ },
30573
+ {
30574
+ "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30575
+ "kind": "BooleanLiteral",
30576
+ "offset": 2539,
30577
+ "length": 5,
30578
+ "value": "false"
30579
+ },
30018
30580
  {
30019
30581
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30020
30582
  "kind": "BooleanLiteral",
30021
- "offset": 1910,
30583
+ "offset": 3969,
30022
30584
  "length": 5,
30023
30585
  "value": "false"
30024
30586
  },
30025
30587
  {
30026
30588
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30027
30589
  "kind": "IntegerLiteral",
30028
- "offset": 3238,
30590
+ "offset": 4485,
30029
30591
  "length": 1,
30030
30592
  "value": "0"
30031
30593
  },
30032
30594
  {
30033
30595
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30034
30596
  "kind": "IntegerLiteral",
30035
- "offset": 3272,
30597
+ "offset": 4519,
30036
30598
  "length": 1,
30037
30599
  "value": "0"
30038
30600
  },
30039
30601
  {
30040
30602
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30041
30603
  "kind": "BooleanLiteral",
30042
- "offset": 3306,
30604
+ "offset": 4553,
30043
30605
  "length": 4,
30044
30606
  "value": "true"
30045
30607
  },
30046
30608
  {
30047
30609
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30048
30610
  "kind": "BooleanLiteral",
30049
- "offset": 3339,
30611
+ "offset": 4586,
30050
30612
  "length": 4,
30051
30613
  "value": "true"
30052
30614
  },
30053
30615
  {
30054
30616
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30055
30617
  "kind": "IntegerLiteral",
30056
- "offset": 3381,
30618
+ "offset": 4628,
30057
30619
  "length": 1,
30058
30620
  "value": "0"
30059
30621
  },
30060
30622
  {
30061
30623
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30062
30624
  "kind": "IntegerLiteral",
30063
- "offset": 3559,
30625
+ "offset": 4806,
30064
30626
  "length": 2,
30065
30627
  "value": "-1"
30066
30628
  },
30067
30629
  {
30068
30630
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30069
30631
  "kind": "IntegerLiteral",
30070
- "offset": 3802,
30632
+ "offset": 5054,
30071
30633
  "length": 1,
30072
30634
  "value": "0"
30073
30635
  },
30074
30636
  {
30075
30637
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30076
30638
  "kind": "IntegerLiteral",
30077
- "offset": 3847,
30639
+ "offset": 5104,
30078
30640
  "length": 1,
30079
30641
  "value": "0"
30080
30642
  },
30081
30643
  {
30082
30644
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30083
30645
  "kind": "IntegerLiteral",
30084
- "offset": 3901,
30646
+ "offset": 5158,
30085
30647
  "length": 1,
30086
30648
  "value": "0"
30087
30649
  },
30088
30650
  {
30089
30651
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30090
30652
  "kind": "FloatLiteral",
30091
- "offset": 3961,
30653
+ "offset": 5218,
30092
30654
  "length": 3,
30093
30655
  "value": "0.2"
30094
30656
  },
30095
30657
  {
30096
30658
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30097
30659
  "kind": "IntegerLiteral",
30098
- "offset": 4033,
30660
+ "offset": 6456,
30099
30661
  "length": 2,
30100
- "value": "80"
30662
+ "value": "24"
30101
30663
  },
30102
30664
  {
30103
30665
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30104
30666
  "kind": "BooleanLiteral",
30105
- "offset": 4067,
30667
+ "offset": 6653,
30106
30668
  "length": 5,
30107
30669
  "value": "false"
30108
30670
  },
30671
+ {
30672
+ "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30673
+ "kind": "IntegerLiteral",
30674
+ "offset": 6683,
30675
+ "length": 1,
30676
+ "value": "0"
30677
+ },
30678
+ {
30679
+ "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30680
+ "kind": "StringLiteral",
30681
+ "offset": 6722,
30682
+ "length": 21,
30683
+ "value": "\"Loading new content\""
30684
+ },
30109
30685
  {
30110
30686
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30111
30687
  "kind": "BooleanLiteral",
30112
- "offset": 7111,
30688
+ "offset": 9798,
30113
30689
  "length": 5,
30114
30690
  "value": "false"
30115
30691
  },
30116
30692
  {
30117
30693
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/Feed\/FeedViewController.swift",
30118
30694
  "kind": "BooleanLiteral",
30119
- "offset": 91411,
30695
+ "offset": 96681,
30120
30696
  "length": 5,
30121
30697
  "value": "false"
30122
30698
  },
@@ -30531,19 +31107,19 @@
30531
31107
  "kind": "StringLiteral",
30532
31108
  "offset": 124,
30533
31109
  "length": 8,
30534
- "value": "\"0.2.11\""
31110
+ "value": "\"0.2.12\""
30535
31111
  },
30536
31112
  {
30537
31113
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/ShortKit.swift",
30538
31114
  "kind": "IntegerLiteral",
30539
- "offset": 9855,
31115
+ "offset": 12714,
30540
31116
  "length": 2,
30541
31117
  "value": "10"
30542
31118
  },
30543
31119
  {
30544
31120
  "filePath": "\/Users\/michaelseleman\/shortkit\/swift_sdk\/Sources\/ShortKit\/ShortKit.swift",
30545
31121
  "kind": "IntegerLiteral",
30546
- "offset": 10359,
31122
+ "offset": 13835,
30547
31123
  "length": 2,
30548
31124
  "value": "10"
30549
31125
  },