├── .gitignore ├── .swiftlint.yml ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── ApphudSDK.podspec ├── Documentation.docc └── Documentation.md ├── Examples ├── ApphudDemoSwift │ ├── .gitignore │ ├── ApphudSDKDemo.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── ApphudSDKDemo.xcscheme │ │ │ └── StoreKitApphudSDKDemo.xcscheme │ ├── ApphudSDKDemo.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── ApphudSDKDemo │ │ ├── AppDelegate.swift │ │ ├── ApphudDemoApp.entitlements │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-ios-1024@1x.png │ │ │ │ ├── icon-ios-20@2x.png │ │ │ │ ├── icon-ios-20@3x.png │ │ │ │ ├── icon-ios-29@2x.png │ │ │ │ ├── icon-ios-29@3x.png │ │ │ │ ├── icon-ios-40@2x.png │ │ │ │ ├── icon-ios-40@3x.png │ │ │ │ ├── icon-ios-60@2x.png │ │ │ │ └── icon-ios-60@3x.png │ │ │ ├── Contents.json │ │ │ └── logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── logo-header copy.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Configuration.storekit │ │ ├── ContentViewController.swift │ │ ├── Helpers │ │ │ ├── AppVariables.swift │ │ │ ├── Extensions.swift │ │ │ ├── Router.swift │ │ │ └── SKProduct+Extension.swift │ │ ├── Info.plist │ │ ├── PaywallOptionView.swift │ │ ├── PaywallViewController.swift │ │ └── StoreKit.storekit │ ├── ApphudSDKTests │ │ └── ApphudSDKTests.swift │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── Local Podspecs │ │ └── ApphudSDK.podspec.json │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── ApphudSDK │ │ ├── ApphudSDK-Info.plist │ │ ├── ApphudSDK-dummy.m │ │ ├── ApphudSDK-prefix.pch │ │ ├── ApphudSDK-umbrella.h │ │ ├── ApphudSDK.debug.xcconfig │ │ ├── ApphudSDK.modulemap │ │ ├── ApphudSDK.release.xcconfig │ │ └── ResourceBundle-ApphudSDK-ApphudSDK-Info.plist │ │ ├── Pods-ApphudSDKDemo │ │ ├── Pods-ApphudSDKDemo-Info.plist │ │ ├── Pods-ApphudSDKDemo-acknowledgements.markdown │ │ ├── Pods-ApphudSDKDemo-acknowledgements.plist │ │ ├── Pods-ApphudSDKDemo-dummy.m │ │ ├── Pods-ApphudSDKDemo-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-ApphudSDKDemo-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-ApphudSDKDemo-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-ApphudSDKDemo-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-ApphudSDKDemo-frameworks.sh │ │ ├── Pods-ApphudSDKDemo-umbrella.h │ │ ├── Pods-ApphudSDKDemo.debug.xcconfig │ │ ├── Pods-ApphudSDKDemo.modulemap │ │ └── Pods-ApphudSDKDemo.release.xcconfig │ │ └── Pods-ApphudSDKTests │ │ ├── Pods-ApphudSDKTests-Info.plist │ │ ├── Pods-ApphudSDKTests-acknowledgements.markdown │ │ ├── Pods-ApphudSDKTests-acknowledgements.plist │ │ ├── Pods-ApphudSDKTests-dummy.m │ │ ├── Pods-ApphudSDKTests-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-ApphudSDKTests-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-ApphudSDKTests-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-ApphudSDKTests-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-ApphudSDKTests-frameworks.sh │ │ ├── Pods-ApphudSDKTests-umbrella.h │ │ ├── Pods-ApphudSDKTests.debug.xcconfig │ │ ├── Pods-ApphudSDKTests.modulemap │ │ └── Pods-ApphudSDKTests.release.xcconfig ├── ApphudDemoSwiftUI │ ├── .gitignore │ ├── AppDelegate.swift │ ├── AppVariables.swift │ ├── ApphudDemoSwiftUI-Info.plist │ ├── ApphudDemoSwiftUI.entitlements │ ├── ApphudDemoSwiftUI.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── ApphudDemoSwiftUI.xcscheme │ │ │ └── ApphudDemoSwiftUILocal.xcscheme │ ├── ApphudDemoSwiftUI.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── ApphudDemoSwiftUIApp.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-ios-1024@1x.png │ │ │ ├── icon-ios-20@2x.png │ │ │ ├── icon-ios-20@3x.png │ │ │ ├── icon-ios-29@2x.png │ │ │ ├── icon-ios-29@3x.png │ │ │ ├── icon-ios-40@2x.png │ │ │ ├── icon-ios-40@3x.png │ │ │ ├── icon-ios-60@2x.png │ │ │ └── icon-ios-60@3x.png │ │ ├── Contents.json │ │ └── logo.imageset │ │ │ ├── Contents.json │ │ │ └── logo-header copy.png │ ├── ContentView.swift │ ├── PaywallUIView.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── Local Podspecs │ │ │ └── ApphudSDK.podspec.json │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ └── Target Support Files │ │ │ ├── ApphudSDK │ │ │ ├── ApphudSDK-Info.plist │ │ │ ├── ApphudSDK-dummy.m │ │ │ ├── ApphudSDK-prefix.pch │ │ │ ├── ApphudSDK-umbrella.h │ │ │ ├── ApphudSDK.debug.xcconfig │ │ │ ├── ApphudSDK.modulemap │ │ │ ├── ApphudSDK.release.xcconfig │ │ │ └── ResourceBundle-ApphudSDK-ApphudSDK-Info.plist │ │ │ └── Pods-ApphudDemoSwiftUI │ │ │ ├── Pods-ApphudDemoSwiftUI-Info.plist │ │ │ ├── Pods-ApphudDemoSwiftUI-acknowledgements.markdown │ │ │ ├── Pods-ApphudDemoSwiftUI-acknowledgements.plist │ │ │ ├── Pods-ApphudDemoSwiftUI-dummy.m │ │ │ ├── Pods-ApphudDemoSwiftUI-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-ApphudDemoSwiftUI-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-ApphudDemoSwiftUI-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-ApphudDemoSwiftUI-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-ApphudDemoSwiftUI-frameworks.sh │ │ │ ├── Pods-ApphudDemoSwiftUI-umbrella.h │ │ │ ├── Pods-ApphudDemoSwiftUI.debug.xcconfig │ │ │ ├── Pods-ApphudDemoSwiftUI.modulemap │ │ │ └── Pods-ApphudDemoSwiftUI.release.xcconfig │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── StoreKit.storekit └── ApphudDemoVisionOS │ ├── ApphudSDKDemo │ ├── AppDelegate.swift │ ├── ApphudDemoApp.entitlements │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-ios-1024@1x.png │ │ │ ├── icon-ios-20@2x.png │ │ │ ├── icon-ios-20@3x.png │ │ │ ├── icon-ios-29@2x.png │ │ │ ├── icon-ios-29@3x.png │ │ │ ├── icon-ios-40@2x.png │ │ │ ├── icon-ios-40@3x.png │ │ │ ├── icon-ios-60@2x.png │ │ │ └── icon-ios-60@3x.png │ │ ├── Contents.json │ │ └── logo.imageset │ │ │ ├── Contents.json │ │ │ └── logo-header copy.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Configuration.storekit │ ├── ContentViewController.swift │ ├── Helpers │ │ ├── AppVariables.swift │ │ ├── Extensions.swift │ │ ├── Router.swift │ │ └── SKProduct+Extension.swift │ ├── Info.plist │ ├── PaywallOptionView.swift │ ├── PaywallViewController.swift │ └── StoreKit.storekit │ ├── ApphudSDKDemoVisionOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── ApphudSDKDemo.xcscheme │ │ └── StoreKitApphudSDKDemo.xcscheme │ ├── ApphudSDKDemoVisionOS.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── ApphudSDKTests │ └── ApphudSDKTests.swift │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ ├── Local Podspecs │ └── ApphudSDK.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── ApphudSDK │ ├── ApphudSDK-Info.plist │ ├── ApphudSDK-dummy.m │ ├── ApphudSDK-prefix.pch │ ├── ApphudSDK-umbrella.h │ ├── ApphudSDK.debug.xcconfig │ ├── ApphudSDK.modulemap │ ├── ApphudSDK.release.xcconfig │ └── ResourceBundle-ApphudSDK-ApphudSDK-Info.plist │ └── Pods-ApphudSDKDemoVisionOS │ ├── Pods-ApphudSDKDemoVisionOS-Info.plist │ ├── Pods-ApphudSDKDemoVisionOS-acknowledgements.markdown │ ├── Pods-ApphudSDKDemoVisionOS-acknowledgements.plist │ ├── Pods-ApphudSDKDemoVisionOS-dummy.m │ ├── Pods-ApphudSDKDemoVisionOS-frameworks-Debug-input-files.xcfilelist │ ├── Pods-ApphudSDKDemoVisionOS-frameworks-Debug-output-files.xcfilelist │ ├── Pods-ApphudSDKDemoVisionOS-frameworks-Release-input-files.xcfilelist │ ├── Pods-ApphudSDKDemoVisionOS-frameworks-Release-output-files.xcfilelist │ ├── Pods-ApphudSDKDemoVisionOS-frameworks.sh │ ├── Pods-ApphudSDKDemoVisionOS-umbrella.h │ ├── Pods-ApphudSDKDemoVisionOS.debug.xcconfig │ ├── Pods-ApphudSDKDemoVisionOS.modulemap │ └── Pods-ApphudSDKDemoVisionOS.release.xcconfig ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── ApphudUI │ ├── ApphudLoadingView.swift │ ├── ApphudNavigationController.swift │ ├── ApphudPaywallScreenController+I.swift │ ├── ApphudPaywallView.swift │ ├── ApphudScreenController+Extensions.swift │ ├── ApphudScreenController+Macros.swift │ ├── ApphudScreenController.swift │ ├── ApphudScreensManager.swift │ └── ApphudView.swift ├── Documentation.docc │ └── Documentation.md ├── Internal │ ├── ApphudAsyncStoreKit.swift │ ├── ApphudDataActor.swift │ ├── ApphudExtensions.swift │ ├── ApphudHttpClient.swift │ ├── ApphudInternal+Attribution.swift │ ├── ApphudInternal+Currency.swift │ ├── ApphudInternal+Eligibility.swift │ ├── ApphudInternal+Fallback.swift │ ├── ApphudInternal+Product.swift │ ├── ApphudInternal+Purchase.swift │ ├── ApphudInternal+UserUpdate.swift │ ├── ApphudInternal.swift │ ├── ApphudKeychain.swift │ ├── ApphudLoggerService.swift │ ├── ApphudProductsStorage.swift │ ├── ApphudSafeSet.swift │ ├── ApphudStoreKitWrapper.swift │ ├── ApphudURLSession.swift │ └── ApphudUserProperty.swift ├── PrivacyInfo.xcprivacy └── Public │ ├── Apphud.swift │ ├── ApphudAsyncPurchaseResult.swift │ ├── ApphudAttributionData.swift │ ├── ApphudDelegate.swift │ ├── ApphudEnums.swift │ ├── ApphudError.swift │ ├── ApphudGroup.swift │ ├── ApphudNonRenewingPurchase.swift │ ├── ApphudPaywall.swift │ ├── ApphudPaywallScreen.swift │ ├── ApphudPaywallScreenController.swift │ ├── ApphudPlacement.swift │ ├── ApphudProduct.swift │ ├── ApphudPurchaseResult.swift │ ├── ApphudReceipt.swift │ ├── ApphudRule.swift │ ├── ApphudRuleScreen.swift │ ├── ApphudSubscription.swift │ ├── ApphudUIDelegate.swift │ ├── ApphudUser.swift │ ├── ApphudUserPropertyKey.swift │ └── ApphudUtils.swift └── docs ├── css ├── 866.60f074fd.css ├── 989.4f123103.css ├── documentation-topic.99224ad2.css ├── index.3a335429.css ├── topic.4be8f56d.css └── tutorials-overview.7942d777.css ├── data └── documentation │ ├── apphudsdk.json │ └── apphudsdk │ ├── apphud.json │ ├── apphud │ ├── apphudproductfor(_:).json │ ├── appstorereceipt().json │ ├── attributefromweb(data:callback:).json │ ├── checkeligibilitiesforintroductoryoffers(products:callback:).json │ ├── checkeligibilitiesforpromotionaloffers(products:callback:).json │ ├── checkeligibilityforintroductoryoffer(product:callback:).json │ ├── checkeligibilityforpromotionaloffer(product:callback:).json │ ├── deferplacements().json │ ├── deviceid().json │ ├── didupdatenotification().json │ ├── enabledebuglogs().json │ ├── fetchpaywallscreen(_:maxtimeout:cachepolicy:completion:).json │ ├── fetchpaywallview(_:maxtimeout:cachepolicy:ondismiss:).json │ ├── fetchplacements(maxattempts:_:).json │ ├── fetchproducts().json │ ├── fetchproducts(maxattempts:_:).json │ ├── fetchrawreceiptinfo(_:).json │ ├── fetchskproducts(maxattempts:).json │ ├── forceflushuserproperties(completion:).json │ ├── grantpromotional(dayscount:productid:permissiongroup:callback:).json │ ├── handlepushnotification(apsinfo:).json │ ├── hasactivesubscription().json │ ├── haspremiumaccess().json │ ├── incrementuserproperty(key:by:).json │ ├── init.json │ ├── isnonrenewingpurchaseactive(productidentifier:).json │ ├── issandbox().json │ ├── loadfallbackpaywalls(callback:).json │ ├── logout().json │ ├── nonrenewingpurchases().json │ ├── optoutoftracking().json │ ├── paywallshown(_:).json │ ├── pendingrule().json │ ├── pendingrulescreencontroller().json │ ├── permissiongroups().json │ ├── placement(_:).json │ ├── placements(maxattempts:).json │ ├── preloadpaywallscreens(placementidentifiers:).json │ ├── presentoffercoderedemptionsheet().json │ ├── product(productidentifier:).json │ ├── products.json │ ├── purchase(_:callback:)-6dhy3.json │ ├── purchase(_:callback:)-9oi.json │ ├── purchase(_:ispurchasing:)-3cisu.json │ ├── purchase(_:ispurchasing:)-o1p9.json │ ├── purchase(_:value:callback:).json │ ├── purchasepromo(_:discountid:_:).json │ ├── purchasepromo(apphudproduct:discountid:_:).json │ ├── rawplacements().json │ ├── refreshuserdata(callback:).json │ ├── restorepurchases().json │ ├── restorepurchases(callback:).json │ ├── setattribution(data:from:identifer:callback:).json │ ├── setcustompurchasevalue(_:productid:).json │ ├── setdelegate(_:).json │ ├── setdeviceidentifiers(idfa:idfv:).json │ ├── setpaywallscachetimeout(_:).json │ ├── setuidelegate(_:).json │ ├── setuserproperty(key:value:setonce:).json │ ├── showpendingrulescreen().json │ ├── start(apikey:userid:observermode:callback:).json │ ├── startmanually(apikey:userid:deviceid:observermode:callback:).json │ ├── submitpushnotificationstoken(token:callback:).json │ ├── submitpushnotificationstokenstring(string:callback:).json │ ├── subscription().json │ ├── subscriptions().json │ ├── unloadpaywallscreen(_:).json │ ├── updateuserid(_:callback:).json │ ├── userid().json │ └── willpurchaseproductfrom(paywallidentifier:placementidentifier:).json │ ├── apphud_default_retries.json │ ├── apphud_error_no_internet.json │ ├── apphud_infinite_retries.json │ ├── apphud_invalid_identifier.json │ ├── apphud_max_initial_load_time.json │ ├── apphud_no_products.json │ ├── apphud_paywall_load_timeout.json │ ├── apphud_paywall_screen_invalid.json │ ├── apphud_paywall_screen_load_timeout.json │ ├── apphud_paywall_screen_not_found.json │ ├── apphudanycodable.json │ ├── apphudanycodable │ ├── encode(to:).json │ └── init(from:).json │ ├── apphudasyncpurchaseresult.json │ ├── apphudasyncpurchaseresult │ ├── error.json │ ├── nonrenewingpurchase.json │ ├── subscription.json │ ├── success.json │ └── transaction.json │ ├── apphudattributiondata.json │ ├── apphudattributiondata │ ├── adnetwork.json │ ├── adset.json │ ├── campaign.json │ ├── channel.json │ ├── creative.json │ ├── custom1.json │ ├── custom2.json │ ├── init(rawdata:adnetwork:channel:campaign:adset:creative:keyword:custom1:custom2:).json │ ├── keyword.json │ └── rawdata.json │ ├── apphudattributionprovider.json │ ├── apphudattributionprovider │ ├── !=(_:_:).json │ ├── adjust.json │ ├── appleadsattribution.json │ ├── appsflyer.json │ ├── branch.json │ ├── custom.json │ ├── equatable-implementations.json │ ├── facebook.json │ ├── firebase.json │ ├── hash(into:).json │ ├── hashvalue.json │ ├── init(rawvalue:).json │ ├── rawrepresentable-implementations.json │ ├── singular.json │ ├── tenjin.json │ ├── tiktok.json │ ├── tostring().json │ └── voluum.json │ ├── apphudboolcallback.json │ ├── apphuddelegate.json │ ├── apphuddelegate │ ├── apphuddidchangeuserid(_:)-1dyji.json │ ├── apphuddidchangeuserid(_:)-2g2jg.json │ ├── apphuddidobservepurchase(result:)-1ym71.json │ ├── apphuddidobservepurchase(result:)-57k7y.json │ ├── apphudnonrenewingpurchasesupdated(_:)-31k4.json │ ├── apphudnonrenewingpurchasesupdated(_:)-7sfe7.json │ ├── apphudshouldstartappstoredirectpurchase(_:)-2ek16.json │ ├── apphudshouldstartappstoredirectpurchase(_:)-2mv8h.json │ ├── apphudsubscriptionsupdated(_:)-2uxsb.json │ ├── apphudsubscriptionsupdated(_:)-3dnhb.json │ ├── handledeferredtransaction(transaction:)-4tnlp.json │ ├── handledeferredtransaction(transaction:)-856ot.json │ ├── paywallsdidfullyload(paywalls:)-3kcab.json │ ├── paywallsdidfullyload(paywalls:)-6z8g8.json │ ├── placementsdidfullyload(placements:)-27ou4.json │ ├── placementsdidfullyload(placements:)-8b6v8.json │ ├── userdidload(user:)-4f87g.json │ └── userdidload(user:)-4qpvb.json │ ├── apphudeligibilitycallback.json │ ├── apphuderror.json │ ├── apphuderror │ └── networkissue().json │ ├── apphudgroup.json │ ├── apphudgroup │ ├── encode(to:).json │ ├── hasaccess.json │ ├── init(from:).json │ ├── name.json │ └── productids.json │ ├── apphudhttpclient.json │ ├── apphudhttpclient │ ├── domainurlstring.json │ ├── post_customers_timeout.json │ ├── sdktype.json │ ├── sdkversion.json │ └── shared.json │ ├── apphudkeychain.json │ ├── apphudkeychain │ └── init.json │ ├── apphudnonrenewingpurchase.json │ ├── apphudnonrenewingpurchase │ ├── canceledat.json │ ├── encode(to:).json │ ├── init(from:).json │ ├── isactive().json │ ├── isconsumablepurchase().json │ ├── islocal.json │ ├── issandbox.json │ ├── productid.json │ ├── purchasedat.json │ └── transactionid.json │ ├── apphudpaywall.json │ ├── apphudpaywall │ ├── createwithcustomdata(products:identifier:screenurl:).json │ ├── encode(to:).json │ ├── experimentname.json │ ├── hasvisualpaywall().json │ ├── identifier.json │ ├── init(from:).json │ ├── isdefault.json │ ├── isvisualpaywallpreloaded().json │ ├── json.json │ ├── objectwillchange.json │ ├── observableobject-implementations.json │ ├── parentpaywallidentifier.json │ ├── placementidentifier.json │ ├── products.json │ ├── screen.json │ ├── update(json:).json │ └── variationname.json │ ├── apphudpaywallcachepolicy.json │ ├── apphudpaywallcachepolicy │ ├── !=(_:_:).json │ ├── equatable-implementations.json │ ├── productiononly.json │ └── sandboxandproduction.json │ ├── apphudpaywallid.json │ ├── apphudpaywallid │ ├── !=(_:_:).json │ ├── banner.json │ ├── content.json │ ├── equatable-implementations.json │ ├── hash(into:).json │ ├── hashvalue.json │ ├── home.json │ ├── init(rawvalue:).json │ ├── main.json │ ├── onboarding.json │ ├── rawrepresentable-implementations.json │ ├── settings.json │ └── toolbar.json │ ├── apphudpaywallscreen.json │ ├── apphudpaywallscreen │ ├── defaulturl.json │ ├── id.json │ ├── init(from:).json │ └── urls.json │ ├── apphudpaywallscreencontroller.json │ ├── apphudpaywallscreencontroller │ ├── apphudviewdelegate-implementations.json │ ├── apphudviewdidload().json │ ├── apphudviewhandlepurchase(index:).json │ ├── onclosebuttontapped.json │ ├── onshouldopenurl.json │ ├── ontransactioncompleted.json │ ├── ontransactionstarted.json │ ├── paywall.json │ ├── shouldautodismiss.json │ ├── shouldpopondismiss.json │ ├── state.json │ ├── usesystemloadingindicator.json │ ├── viewdidappear(_:).json │ ├── viewwilldisappear(_:).json │ ├── webview(_:createwebviewwith:for:windowfeatures:).json │ └── wkuidelegate-implementations.json │ ├── apphudpaywallscreenfetchresult.json │ ├── apphudpaywallscreenfetchresult │ ├── error(error:).json │ └── success(controller:).json │ ├── apphudpaywallscreenstate.json │ ├── apphudpaywallscreenstate │ ├── !=(_:_:).json │ ├── ==(_:_:).json │ ├── equatable-implementations.json │ ├── error(error:).json │ ├── loading.json │ └── ready.json │ ├── apphudpaywallview.json │ ├── apphudpaywallview │ ├── accentcolor(_:).json │ ├── accessibility(activationpoint:)-24n7k.json │ ├── accessibility(activationpoint:)-2bbau.json │ ├── accessibility(addtraits:).json │ ├── accessibility(hidden:).json │ ├── accessibility(hint:).json │ ├── accessibility(identifier:).json │ ├── accessibility(inputlabels:).json │ ├── accessibility(label:).json │ ├── accessibility(removetraits:).json │ ├── accessibility(selectionidentifier:).json │ ├── accessibility(sortpriority:).json │ ├── accessibility(value:).json │ ├── accessibilityaction(_:_:).json │ ├── accessibilityaction(action:label:).json │ ├── accessibilityaction(named:_:)-5t22v.json │ ├── accessibilityaction(named:_:)-97jt5.json │ ├── accessibilityaction(named:_:)-9yi5h.json │ ├── accessibilityactions(_:).json │ ├── accessibilityactions(category:_:).json │ ├── accessibilityactivationpoint(_:)-4rl8t.json │ ├── accessibilityactivationpoint(_:)-79rha.json │ ├── accessibilityactivationpoint(_:isenabled:)-3nc4a.json │ ├── accessibilityactivationpoint(_:isenabled:)-55g4h.json │ ├── accessibilityaddtraits(_:).json │ ├── accessibilityadjustableaction(_:).json │ ├── accessibilitychartdescriptor(_:).json │ ├── accessibilitychildren(children:).json │ ├── accessibilitycustomcontent(_:_:importance:)-129rk.json │ ├── accessibilitycustomcontent(_:_:importance:)-1abgu.json │ ├── accessibilitycustomcontent(_:_:importance:)-37vpm.json │ ├── accessibilitycustomcontent(_:_:importance:)-3qhzk.json │ ├── accessibilitycustomcontent(_:_:importance:)-5xh26.json │ ├── accessibilitycustomcontent(_:_:importance:)-6brm.json │ ├── accessibilitycustomcontent(_:_:importance:)-6iqaq.json │ ├── accessibilitycustomcontent(_:_:importance:)-i5io.json │ ├── accessibilitydirecttouch(_:options:).json │ ├── accessibilitydragpoint(_:description:)-4buep.json │ ├── accessibilitydragpoint(_:description:)-638qn.json │ ├── accessibilitydragpoint(_:description:)-81zb3.json │ ├── accessibilitydragpoint(_:description:isenabled:)-1cz7m.json │ ├── accessibilitydragpoint(_:description:isenabled:)-74kao.json │ ├── accessibilitydragpoint(_:description:isenabled:)-93vnq.json │ ├── accessibilitydroppoint(_:description:)-11qnj.json │ ├── accessibilitydroppoint(_:description:)-6f6s9.json │ ├── accessibilitydroppoint(_:description:)-f4sh.json │ ├── accessibilitydroppoint(_:description:isenabled:)-2jpqa.json │ ├── accessibilitydroppoint(_:description:isenabled:)-6i0f3.json │ ├── accessibilitydroppoint(_:description:isenabled:)-eip3.json │ ├── accessibilityelement(children:).json │ ├── accessibilityfocused(_:).json │ ├── accessibilityfocused(_:equals:).json │ ├── accessibilityheading(_:).json │ ├── accessibilityhidden(_:).json │ ├── accessibilityhidden(_:isenabled:).json │ ├── accessibilityhint(_:)-37cp9.json │ ├── accessibilityhint(_:)-4bo4e.json │ ├── accessibilityhint(_:)-7m73p.json │ ├── accessibilityhint(_:isenabled:)-2rcdu.json │ ├── accessibilityhint(_:isenabled:)-30k0v.json │ ├── accessibilityhint(_:isenabled:)-8eyja.json │ ├── accessibilityidentifier(_:).json │ ├── accessibilityidentifier(_:isenabled:).json │ ├── accessibilityignoresinvertcolors(_:).json │ ├── accessibilityinputlabels(_:)-3he4.json │ ├── accessibilityinputlabels(_:)-3yyf2.json │ ├── accessibilityinputlabels(_:)-7h5dd.json │ ├── accessibilityinputlabels(_:isenabled:)-3k8fg.json │ ├── accessibilityinputlabels(_:isenabled:)-51jhv.json │ ├── accessibilityinputlabels(_:isenabled:)-5ku7t.json │ ├── accessibilitylabel(_:)-3qxek.json │ ├── accessibilitylabel(_:)-5rzp7.json │ ├── accessibilitylabel(_:)-7kvq5.json │ ├── accessibilitylabel(_:isenabled:)-6tqxr.json │ ├── accessibilitylabel(_:isenabled:)-8auey.json │ ├── accessibilitylabel(_:isenabled:)-9egw6.json │ ├── accessibilitylabel(content:).json │ ├── accessibilitylabeledpair(role:id:in:).json │ ├── accessibilitylinkedgroup(id:in:).json │ ├── accessibilityremovetraits(_:).json │ ├── accessibilityrepresentation(representation:).json │ ├── accessibilityrespondstouserinteraction(_:).json │ ├── accessibilityrespondstouserinteraction(_:isenabled:).json │ ├── accessibilityrotor(_:entries:)-1t8cu.json │ ├── accessibilityrotor(_:entries:)-2fco8.json │ ├── accessibilityrotor(_:entries:)-51th6.json │ ├── accessibilityrotor(_:entries:)-6bux4.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-77l1h.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-86rx5.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-9adw7.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-9s2x0.json │ ├── accessibilityrotor(_:entries:entrylabel:)-1i7x9.json │ ├── accessibilityrotor(_:entries:entrylabel:)-5syjc.json │ ├── accessibilityrotor(_:entries:entrylabel:)-6jl1d.json │ ├── accessibilityrotor(_:entries:entrylabel:)-vch6.json │ ├── accessibilityrotor(_:textranges:)-3pcbm.json │ ├── accessibilityrotor(_:textranges:)-672uo.json │ ├── accessibilityrotor(_:textranges:)-87et0.json │ ├── accessibilityrotor(_:textranges:)-9jg1w.json │ ├── accessibilityrotorentry(id:in:).json │ ├── accessibilityscrollaction(_:).json │ ├── accessibilityshowslargecontentviewer().json │ ├── accessibilityshowslargecontentviewer(_:).json │ ├── accessibilitysortpriority(_:).json │ ├── accessibilitytextcontenttype(_:).json │ ├── accessibilityvalue(_:)-91u3b.json │ ├── accessibilityvalue(_:)-d5mq.json │ ├── accessibilityvalue(_:)-oll.json │ ├── accessibilityvalue(_:isenabled:)-41lni.json │ ├── accessibilityvalue(_:isenabled:)-67c47.json │ ├── accessibilityvalue(_:isenabled:)-7kh33.json │ ├── accessibilityzoomaction(_:).json │ ├── actionsheet(ispresented:content:).json │ ├── actionsheet(item:content:).json │ ├── alert(_:ispresented:actions:)-1zfrq.json │ ├── alert(_:ispresented:actions:)-22c9x.json │ ├── alert(_:ispresented:actions:)-8v0au.json │ ├── alert(_:ispresented:actions:message:)-1oiyc.json │ ├── alert(_:ispresented:actions:message:)-29930.json │ ├── alert(_:ispresented:actions:message:)-rzqh.json │ ├── alert(_:ispresented:presenting:actions:)-1u9if.json │ ├── alert(_:ispresented:presenting:actions:)-2130x.json │ ├── alert(_:ispresented:presenting:actions:)-9c36y.json │ ├── alert(_:ispresented:presenting:actions:message:)-1axjw.json │ ├── alert(_:ispresented:presenting:actions:message:)-7qqu4.json │ ├── alert(_:ispresented:presenting:actions:message:)-7sb9f.json │ ├── alert(ispresented:content:).json │ ├── alert(ispresented:error:actions:).json │ ├── alert(ispresented:error:actions:message:).json │ ├── alert(item:content:).json │ ├── alignmentguide(_:computevalue:)-4v6sa.json │ ├── alignmentguide(_:computevalue:)-dwpf.json │ ├── alloweddynamicrange(_:).json │ ├── allowshittesting(_:).json │ ├── allowstightening(_:).json │ ├── allowswindowactivationevents(_:).json │ ├── anchorpreference(key:value:transform:).json │ ├── animation(_:).json │ ├── animation(_:body:).json │ ├── animation(_:value:).json │ ├── appstoreoverlay(ispresented:configuration:).json │ ├── aspectratio(_:contentmode:)-29irr.json │ ├── aspectratio(_:contentmode:)-56ofi.json │ ├── autocapitalization(_:).json │ ├── autocorrectiondisabled(_:).json │ ├── background(_:alignment:).json │ ├── background(_:ignoressafeareaedges:).json │ ├── background(_:in:fillstyle:)-1l6uh.json │ ├── background(_:in:fillstyle:)-58qq5.json │ ├── background(alignment:content:).json │ ├── background(ignoressafeareaedges:).json │ ├── background(in:fillstyle:)-1zrmf.json │ ├── background(in:fillstyle:)-8ut1z.json │ ├── backgroundpreferencevalue(_:_:).json │ ├── backgroundpreferencevalue(_:alignment:_:).json │ ├── backgroundstyle(_:).json │ ├── badge(_:)-41wz6.json │ ├── badge(_:)-47oy5.json │ ├── badge(_:)-5qmbb.json │ ├── badge(_:)-7v0mg.json │ ├── badgeprominence(_:).json │ ├── baselineoffset(_:).json │ ├── blendmode(_:).json │ ├── blur(radius:opaque:).json │ ├── body.json │ ├── bold(_:).json │ ├── border(_:width:).json │ ├── brightness(_:).json │ ├── buttonbordershape(_:).json │ ├── buttonrepeatbehavior(_:).json │ ├── buttonstyle(_:)-4019k.json │ ├── buttonstyle(_:)-ikjt.json │ ├── clipped(antialiased:).json │ ├── clipshape(_:style:).json │ ├── coloreffect(_:isenabled:).json │ ├── colorinvert().json │ ├── colormultiply(_:).json │ ├── colorscheme(_:).json │ ├── compositinggroup().json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-35riv.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-8p58v.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-8peuj.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-4j8fn.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6zqzp.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-8i9u7.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4zxus.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-8dxa3.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-9slbv.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2492b.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-3blwo.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-3hj25.json │ ├── containerbackground(_:for:).json │ ├── containerbackground(for:alignment:content:).json │ ├── containerrelativeframe(_:alignment:).json │ ├── containerrelativeframe(_:alignment:_:).json │ ├── containerrelativeframe(_:count:span:spacing:alignment:).json │ ├── containershape(_:).json │ ├── containervalue(_:_:).json │ ├── contentmargins(_:_:for:)-7awr5.json │ ├── contentmargins(_:_:for:)-8vgpb.json │ ├── contentmargins(_:for:).json │ ├── contentshape(_:_:eofill:).json │ ├── contentshape(_:eofill:).json │ ├── contenttransition(_:).json │ ├── contextmenu(_:).json │ ├── contextmenu(forselectiontype:menu:primaryaction:).json │ ├── contextmenu(menuitems:).json │ ├── contextmenu(menuitems:preview:).json │ ├── contrast(_:).json │ ├── controlgroupstyle(_:).json │ ├── controller.json │ ├── controlsize(_:).json │ ├── coordinatespace(_:).json │ ├── coordinatespace(name:).json │ ├── coordinator.json │ ├── cornerradius(_:antialiased:).json │ ├── currententitlementtask(for:priority:action:).json │ ├── datepickerstyle(_:).json │ ├── defaultadaptabletabbarplacement(_:).json │ ├── defaultappstorage(_:).json │ ├── defaultfocus(_:_:priority:).json │ ├── defaulthovereffect(_:)-415cl.json │ ├── defaulthovereffect(_:)-6rrdw.json │ ├── defaultscrollanchor(_:).json │ ├── defaultscrollanchor(_:for:).json │ ├── deferssystemgestures(on:).json │ ├── deletedisabled(_:).json │ ├── dialogicon(_:).json │ ├── dialogsuppressiontoggle(_:issuppressed:)-3jflx.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-jdjg.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-omh1.json │ ├── dialogsuppressiontoggle(issuppressed:).json │ ├── disableautocorrection(_:).json │ ├── disabled(_:).json │ ├── disclosuregroupstyle(_:).json │ ├── dismantleuiviewcontroller(_:coordinator:).json │ ├── distortioneffect(_:maxsampleoffset:isenabled:).json │ ├── documentbrowsercontextmenu(_:).json │ ├── draggable(_:).json │ ├── draggable(_:preview:).json │ ├── drawinggroup(opaque:colormode:).json │ ├── dropdestination(for:action:istargeted:).json │ ├── dynamictypesize(_:).json │ ├── edgesignoringsafearea(_:).json │ ├── environment(_:).json │ ├── environment(_:_:).json │ ├── environmentobject(_:).json │ ├── filedialogbrowseroptions(_:).json │ ├── filedialogconfirmationlabel(_:)-1hrb5.json │ ├── filedialogconfirmationlabel(_:)-2pbyv.json │ ├── filedialogconfirmationlabel(_:)-7m0si.json │ ├── filedialogcustomizationid(_:).json │ ├── filedialogdefaultdirectory(_:).json │ ├── filedialogimportsunresolvedaliases(_:).json │ ├── filedialogmessage(_:)-2xgoe.json │ ├── filedialogmessage(_:)-hvyl.json │ ├── filedialogmessage(_:)-rggy.json │ ├── filedialogurlenabled(_:).json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-1a3bw.json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-22byu.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-3cyfb.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-3em0z.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-1jdg2.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-1m1pe.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-1sq38.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-mnlt.json │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:).json │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:).json │ ├── fileexporterfilenamelabel(_:)-642pt.json │ ├── fileexporterfilenamelabel(_:)-663vl.json │ ├── fileexporterfilenamelabel(_:)-86msg.json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:).json │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:oncancellation:).json │ ├── filemover(ispresented:files:oncompletion:).json │ ├── filemover(ispresented:files:oncompletion:oncancellation:).json │ ├── finddisabled(_:).json │ ├── findnavigator(ispresented:).json │ ├── fixedsize().json │ ├── fixedsize(horizontal:vertical:).json │ ├── flipsforrighttoleftlayoutdirection(_:).json │ ├── focusable(_:).json │ ├── focusable(_:interactions:).json │ ├── focused(_:).json │ ├── focused(_:equals:).json │ ├── focusedobject(_:)-27wpi.json │ ├── focusedobject(_:)-313d4.json │ ├── focusedsceneobject(_:)-4ln8f.json │ ├── focusedsceneobject(_:)-5hcgk.json │ ├── focusedscenevalue(_:).json │ ├── focusedscenevalue(_:_:)-3kw6p.json │ ├── focusedscenevalue(_:_:)-6rrw9.json │ ├── focusedvalue(_:).json │ ├── focusedvalue(_:_:)-3rt3y.json │ ├── focusedvalue(_:_:)-408u5.json │ ├── focuseffectdisabled(_:).json │ ├── font(_:).json │ ├── fontdesign(_:).json │ ├── fontweight(_:).json │ ├── fontwidth(_:).json │ ├── foregroundcolor(_:).json │ ├── foregroundstyle(_:).json │ ├── foregroundstyle(_:_:).json │ ├── foregroundstyle(_:_:_:).json │ ├── formstyle(_:).json │ ├── frame().json │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json │ ├── frame(width:height:alignment:).json │ ├── fullscreen().json │ ├── fullscreencover(ispresented:ondismiss:content:).json │ ├── fullscreencover(item:ondismiss:content:).json │ ├── fullscreensheet().json │ ├── gaugestyle(_:).json │ ├── geometrygroup().json │ ├── gesture(_:).json │ ├── gesture(_:including:).json │ ├── gesture(_:isenabled:).json │ ├── gesture(_:name:isenabled:).json │ ├── grayscale(_:).json │ ├── gridcellanchor(_:).json │ ├── gridcellcolumns(_:).json │ ├── gridcellunsizedaxes(_:).json │ ├── gridcolumnalignment(_:).json │ ├── groupboxstyle(_:).json │ ├── handgestureshortcut(_:isenabled:).json │ ├── handlesexternalevents(preferring:allowing:).json │ ├── headerprominence(_:).json │ ├── help(_:)-3n7pj.json │ ├── help(_:)-6gqi4.json │ ├── help(_:)-g847.json │ ├── hidden().json │ ├── highprioritygesture(_:including:).json │ ├── highprioritygesture(_:isenabled:).json │ ├── highprioritygesture(_:name:isenabled:).json │ ├── hovereffect(_:).json │ ├── hovereffect(_:isenabled:)-260vi.json │ ├── hovereffect(_:isenabled:)-3hsoc.json │ ├── hovereffectdisabled(_:).json │ ├── huerotation(_:).json │ ├── id(_:).json │ ├── ignoressafearea(_:edges:).json │ ├── imagescale(_:).json │ ├── inapppurchaseoptions(_:).json │ ├── indexviewstyle(_:).json │ ├── init(controller:ondismiss:).json │ ├── inspector(ispresented:content:).json │ ├── inspectorcolumnwidth(_:).json │ ├── inspectorcolumnwidth(min:ideal:max:).json │ ├── interactionactivitytrackingtag(_:).json │ ├── interactivedismissdisabled(_:).json │ ├── invalidatablecontent(_:).json │ ├── italic(_:).json │ ├── itemprovider(_:).json │ ├── kerning(_:).json │ ├── keyboardshortcut(_:).json │ ├── keyboardshortcut(_:modifiers:).json │ ├── keyboardshortcut(_:modifiers:localization:).json │ ├── keyboardtype(_:).json │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:).json │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:).json │ ├── labeledcontentstyle(_:).json │ ├── labelshidden().json │ ├── labelstyle(_:).json │ ├── labelsvisibility(_:).json │ ├── layereffect(_:maxsampleoffset:isenabled:).json │ ├── layoutdirectionbehavior(_:).json │ ├── layoutpriority(_:).json │ ├── layoutvalue(key:value:).json │ ├── linelimit(_:).json │ ├── linelimit(_:reservesspace:).json │ ├── linespacing(_:).json │ ├── listitemtint(_:)-35ms0.json │ ├── listitemtint(_:)-4dlk5.json │ ├── listrowbackground(_:).json │ ├── listrowinsets(_:).json │ ├── listrowseparator(_:edges:).json │ ├── listrowseparatortint(_:edges:).json │ ├── listrowspacing(_:).json │ ├── listsectionseparator(_:edges:).json │ ├── listsectionseparatortint(_:edges:).json │ ├── listsectionspacing(_:)-72gzd.json │ ├── listsectionspacing(_:)-8opce.json │ ├── liststyle(_:).json │ ├── luminancetoalpha().json │ ├── makecoordinator().json │ ├── makeuiviewcontroller(context:).json │ ├── managesubscriptionssheet(ispresented:).json │ ├── managesubscriptionssheet(ispresented:subscriptiongroupid:).json │ ├── mask(_:).json │ ├── mask(alignment:_:).json │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:).json │ ├── matchedtransitionsource(id:in:).json │ ├── matchedtransitionsource(id:in:configuration:).json │ ├── materialactiveappearance(_:).json │ ├── menuactiondismissbehavior(_:).json │ ├── menuindicator(_:).json │ ├── menuorder(_:).json │ ├── menustyle(_:).json │ ├── minimumscalefactor(_:).json │ ├── modifier(_:).json │ ├── monospaced(_:).json │ ├── monospaceddigit().json │ ├── movedisabled(_:).json │ ├── multilinetextalignment(_:).json │ ├── navigationbarbackbuttonhidden(_:).json │ ├── navigationbarhidden(_:).json │ ├── navigationbaritems(leading:).json │ ├── navigationbaritems(leading:trailing:).json │ ├── navigationbaritems(trailing:).json │ ├── navigationbartitle(_:)-7ej1x.json │ ├── navigationbartitle(_:)-8b37t.json │ ├── navigationbartitle(_:)-94475.json │ ├── navigationbartitle(_:displaymode:)-1cuwv.json │ ├── navigationbartitle(_:displaymode:)-2q23n.json │ ├── navigationbartitle(_:displaymode:)-3giys.json │ ├── navigationbartitledisplaymode(_:).json │ ├── navigationdestination(for:destination:).json │ ├── navigationdestination(ispresented:destination:).json │ ├── navigationdestination(item:destination:).json │ ├── navigationdocument(_:)-49uab.json │ ├── navigationdocument(_:)-5x0ri.json │ ├── navigationdocument(_:preview:)-23o4a.json │ ├── navigationdocument(_:preview:)-50jtl.json │ ├── navigationdocument(_:preview:)-5vqbz.json │ ├── navigationdocument(_:preview:)-7f4eg.json │ ├── navigationsplitviewcolumnwidth(_:).json │ ├── navigationsplitviewcolumnwidth(min:ideal:max:).json │ ├── navigationsplitviewstyle(_:).json │ ├── navigationtitle(_:)-3srjv.json │ ├── navigationtitle(_:)-6z6bx.json │ ├── navigationtitle(_:)-8dfvt.json │ ├── navigationtitle(_:)-9gh7k.json │ ├── navigationtitle(_:)-swaq.json │ ├── navigationtransition(_:).json │ ├── navigationviewstyle(_:).json │ ├── offercoderedemption(ispresented:oncompletion:).json │ ├── offset(_:).json │ ├── offset(x:y:).json │ ├── onappear(perform:).json │ ├── onchange(of:initial:_:)-3m4t1.json │ ├── onchange(of:initial:_:)-ofh9.json │ ├── onchange(of:perform:).json │ ├── oncontinueuseractivity(_:perform:).json │ ├── oncontinuoushover(coordinatespace:perform:)-3d6c8.json │ ├── oncontinuoushover(coordinatespace:perform:)-65zaz.json │ ├── ondisappear(perform:).json │ ├── ondismiss.json │ ├── ondrag(_:).json │ ├── ondrag(_:preview:).json │ ├── ondrop(of:delegate:)-57nvt.json │ ├── ondrop(of:delegate:)-6jrp8.json │ ├── ondrop(of:istargeted:perform:)-195ps.json │ ├── ondrop(of:istargeted:perform:)-83xid.json │ ├── ondrop(of:istargeted:perform:)-9j3y8.json │ ├── ondrop(of:istargeted:perform:)-9wdt8.json │ ├── ongeometrychange(for:of:action:)-2ugv8.json │ ├── ongeometrychange(for:of:action:)-5a8gl.json │ ├── onhover(perform:).json │ ├── oninapppurchasecompletion(perform:).json │ ├── oninapppurchasestart(perform:).json │ ├── onkeypress(_:action:).json │ ├── onkeypress(_:phases:action:).json │ ├── onkeypress(characters:phases:action:).json │ ├── onkeypress(keys:phases:action:).json │ ├── onkeypress(phases:action:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:pressing:perform:).json │ ├── onopenurl(perform:).json │ ├── onpencildoubletap(perform:).json │ ├── onpencilsqueeze(perform:).json │ ├── onpreferencechange(_:perform:).json │ ├── onreceive(_:perform:).json │ ├── onscrollgeometrychange(for:of:action:).json │ ├── onscrollphasechange(_:)-2d1ri.json │ ├── onscrollphasechange(_:)-3hjb8.json │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:).json │ ├── onscrollvisibilitychange(threshold:_:).json │ ├── onsubmit(of:_:).json │ ├── ontapgesture(count:coordinatespace:perform:)-642bs.json │ ├── ontapgesture(count:coordinatespace:perform:)-8onbm.json │ ├── ontapgesture(count:perform:).json │ ├── opacity(_:).json │ ├── overlay(_:alignment:).json │ ├── overlay(_:ignoressafeareaedges:).json │ ├── overlay(_:in:fillstyle:).json │ ├── overlay(alignment:content:).json │ ├── overlaypreferencevalue(_:_:).json │ ├── overlaypreferencevalue(_:alignment:_:).json │ ├── padding(_:)-38pvp.json │ ├── padding(_:)-6vhcj.json │ ├── padding(_:_:).json │ ├── paletteselectioneffect(_:).json │ ├── persistentsystemoverlays(_:).json │ ├── phaseanimator(_:content:animation:).json │ ├── phaseanimator(_:trigger:content:animation:).json │ ├── pickerstyle(_:).json │ ├── popover(ispresented:attachmentanchor:arrowedge:content:).json │ ├── popover(item:attachmentanchor:arrowedge:content:).json │ ├── position(_:).json │ ├── position(x:y:).json │ ├── preference(key:value:).json │ ├── preferredcolorscheme(_:).json │ ├── preferredsubscriptionoffer(_:).json │ ├── presentationbackground(_:).json │ ├── presentationbackground(alignment:content:).json │ ├── presentationbackgroundinteraction(_:).json │ ├── presentationcompactadaptation(_:).json │ ├── presentationcompactadaptation(horizontal:vertical:).json │ ├── presentationcontentinteraction(_:).json │ ├── presentationcornerradius(_:).json │ ├── presentationdetents(_:).json │ ├── presentationdetents(_:selection:).json │ ├── presentationdragindicator(_:).json │ ├── presentationsizing(_:).json │ ├── previewcontext(_:).json │ ├── previewdevice(_:).json │ ├── previewdisplayname(_:).json │ ├── previewinterfaceorientation(_:).json │ ├── previewlayout(_:).json │ ├── privacysensitive(_:).json │ ├── productdescription(_:).json │ ├── producticonborder().json │ ├── productviewstyle(_:).json │ ├── progressviewstyle(_:).json │ ├── projectioneffect(_:).json │ ├── redacted(reason:).json │ ├── refreshable(action:).json │ ├── refundrequestsheet(for:ispresented:ondismiss:).json │ ├── renameaction(_:)-4ak2r.json │ ├── renameaction(_:)-4e3m5.json │ ├── replacedisabled(_:).json │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:).json │ ├── rotationeffect(_:anchor:).json │ ├── safeareainset(edge:alignment:spacing:content:)-4e6cf.json │ ├── safeareainset(edge:alignment:spacing:content:)-4r5tb.json │ ├── safeareapadding(_:)-71cmy.json │ ├── safeareapadding(_:)-9wqln.json │ ├── safeareapadding(_:_:).json │ ├── saturation(_:).json │ ├── scaledtofill().json │ ├── scaledtofit().json │ ├── scaleeffect(_:anchor:)-22p39.json │ ├── scaleeffect(_:anchor:)-5panz.json │ ├── scaleeffect(x:y:anchor:).json │ ├── scenepadding(_:).json │ ├── scenepadding(_:edges:).json │ ├── scrollbouncebehavior(_:axes:).json │ ├── scrollclipdisabled(_:).json │ ├── scrollcontentbackground(_:).json │ ├── scrolldisabled(_:).json │ ├── scrolldismisseskeyboard(_:).json │ ├── scrollindicators(_:axes:).json │ ├── scrollindicatorsflash(onappear:).json │ ├── scrollindicatorsflash(trigger:).json │ ├── scrollinputbehavior(_:for:).json │ ├── scrollposition(_:anchor:).json │ ├── scrollposition(id:anchor:).json │ ├── scrolltargetbehavior(_:).json │ ├── scrolltargetlayout(isenabled:).json │ ├── scrolltransition(_:axis:transition:).json │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:).json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-2bj9k.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-2gkfj.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-i4lf.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-6plaa.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-7qpud.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-y784.json │ ├── searchable(text:ispresented:placement:prompt:)-35zwn.json │ ├── searchable(text:ispresented:placement:prompt:)-8for3.json │ ├── searchable(text:ispresented:placement:prompt:)-r957.json │ ├── searchable(text:placement:prompt:)-4jzik.json │ ├── searchable(text:placement:prompt:)-kl2m.json │ ├── searchable(text:placement:prompt:)-oyis.json │ ├── searchable(text:placement:prompt:suggestions:)-1jdvn.json │ ├── searchable(text:placement:prompt:suggestions:)-5rd3w.json │ ├── searchable(text:placement:prompt:suggestions:)-879nb.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-5ij9q.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8ft7p.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-9j2x9.json │ ├── searchable(text:tokens:placement:prompt:token:)-4i0ut.json │ ├── searchable(text:tokens:placement:prompt:token:)-99ifq.json │ ├── searchable(text:tokens:placement:prompt:token:)-9olhl.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-42u38.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4uq8b.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-58nb.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-10cl0.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-4x4xo.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-56fpu.json │ ├── searchcompletion(_:).json │ ├── searchdictationbehavior(_:).json │ ├── searchfocused(_:).json │ ├── searchfocused(_:equals:).json │ ├── searchpresentationtoolbarbehavior(_:).json │ ├── searchscopes(_:activation:_:).json │ ├── searchscopes(_:scopes:).json │ ├── searchsuggestions(_:).json │ ├── searchsuggestions(_:for:).json │ ├── sectionactions(content:).json │ ├── selectiondisabled(_:).json │ ├── sensoryfeedback(_:trigger:).json │ ├── sensoryfeedback(_:trigger:condition:).json │ ├── sensoryfeedback(trigger:_:).json │ ├── shadow(color:radius:x:y:).json │ ├── sheet(ispresented:ondismiss:content:).json │ ├── sheet(item:ondismiss:content:).json │ ├── simultaneousgesture(_:including:).json │ ├── simultaneousgesture(_:isenabled:).json │ ├── simultaneousgesture(_:name:isenabled:).json │ ├── sizethatfits(_:uiviewcontroller:context:).json │ ├── speechadjustedpitch(_:).json │ ├── speechalwaysincludespunctuation(_:).json │ ├── speechannouncementsqueued(_:).json │ ├── speechspellsoutcharacters(_:).json │ ├── springloadingbehavior(_:).json │ ├── statusbar(hidden:).json │ ├── statusbarhidden(_:).json │ ├── storebutton(_:for:).json │ ├── storeproductstask(for:priority:action:).json │ ├── storeproducttask(for:priority:action:).json │ ├── strikethrough(_:pattern:color:).json │ ├── submitlabel(_:).json │ ├── submitscope(_:).json │ ├── subscriptionpromotionaloffer(offer:signature:).json │ ├── subscriptionstatustask(for:priority:action:).json │ ├── subscriptionstorebuttonlabel(_:).json │ ├── subscriptionstorecontrolbackground(_:)-74uke.json │ ├── subscriptionstorecontrolbackground(_:)-77nl0.json │ ├── subscriptionstorecontrolicon(icon:).json │ ├── subscriptionstorecontrolstyle(_:).json │ ├── subscriptionstorecontrolstyle(_:placement:).json │ ├── subscriptionstoreoptiongroupstyle(_:).json │ ├── subscriptionstorepickeritembackground(_:).json │ ├── subscriptionstorepickeritembackground(_:in:).json │ ├── subscriptionstorepolicydestination(for:destination:).json │ ├── subscriptionstorepolicydestination(url:for:).json │ ├── subscriptionstorepolicyforegroundstyle(_:).json │ ├── subscriptionstorepolicyforegroundstyle(_:_:).json │ ├── subscriptionstoresigninaction(_:).json │ ├── swipeactions(edge:allowsfullswipe:content:).json │ ├── symboleffect(_:options:isactive:).json │ ├── symboleffect(_:options:value:).json │ ├── symboleffectsremoved(_:).json │ ├── symbolrenderingmode(_:).json │ ├── symbolvariant(_:).json │ ├── tabitem(_:).json │ ├── tablecolumnheaders(_:).json │ ├── tablestyle(_:).json │ ├── tabviewcustomization(_:).json │ ├── tabviewsidebarbottombar(content:).json │ ├── tabviewsidebarfooter(content:).json │ ├── tabviewsidebarheader(content:).json │ ├── tabviewstyle(_:).json │ ├── tag(_:includeoptional:).json │ ├── task(id:priority:_:).json │ ├── task(priority:_:).json │ ├── textcase(_:).json │ ├── textcontenttype(_:).json │ ├── texteditorstyle(_:).json │ ├── textfieldstyle(_:).json │ ├── textinputautocapitalization(_:).json │ ├── textrenderer(_:).json │ ├── textscale(_:isenabled:).json │ ├── textselection(_:).json │ ├── textselectionaffinity(_:).json │ ├── tint(_:).json │ ├── togglestyle(_:).json │ ├── toolbar(_:for:).json │ ├── toolbar(content:)-7ec31.json │ ├── toolbar(content:)-994ly.json │ ├── toolbar(id:content:).json │ ├── toolbar(removing:).json │ ├── toolbarbackground(_:for:)-3741s.json │ ├── toolbarbackground(_:for:)-3jh02.json │ ├── toolbarbackgroundvisibility(_:for:).json │ ├── toolbarcolorscheme(_:for:).json │ ├── toolbarforegroundstyle(_:for:).json │ ├── toolbarrole(_:).json │ ├── toolbartitledisplaymode(_:).json │ ├── toolbartitlemenu(content:).json │ ├── toolbarvisibility(_:for:).json │ ├── tracking(_:).json │ ├── transaction(_:).json │ ├── transaction(_:body:).json │ ├── transaction(value:_:).json │ ├── transformanchorpreference(key:value:transform:).json │ ├── transformeffect(_:).json │ ├── transformenvironment(_:transform:).json │ ├── transformpreference(_:_:).json │ ├── transition(_:).json │ ├── truncationmode(_:).json │ ├── typeselectequivalent(_:)-1n06k.json │ ├── typeselectequivalent(_:)-8kd4i.json │ ├── typeselectequivalent(_:)-xzcc.json │ ├── typesettinglanguage(_:isenabled:)-487nq.json │ ├── typesettinglanguage(_:isenabled:)-4t5dh.json │ ├── uiviewcontrollerrepresentable-implementations.json │ ├── underline(_:pattern:color:).json │ ├── unredacted().json │ ├── updateuiviewcontroller(_:context:).json │ ├── useractivity(_:element:_:).json │ ├── useractivity(_:isactive:_:).json │ ├── view-implementations.json │ ├── visualeffect(_:).json │ ├── windowtoolbarfullscreenvisibility(_:).json │ ├── writingtoolsbehavior(_:).json │ └── zindex(_:).json │ ├── apphudplacement.json │ ├── apphudplacement │ ├── experimentname.json │ ├── identifier.json │ ├── init(from:).json │ └── paywall.json │ ├── apphudplacementid.json │ ├── apphudplacementid │ ├── !=(_:_:).json │ ├── banner.json │ ├── content.json │ ├── equatable-implementations.json │ ├── hash(into:).json │ ├── hashvalue.json │ ├── home.json │ ├── init(rawvalue:).json │ ├── main.json │ ├── onboarding.json │ ├── rawrepresentable-implementations.json │ ├── settings.json │ └── toolbar.json │ ├── apphudproduct.json │ ├── apphudproduct │ ├── encode(to:).json │ ├── experimentid.json │ ├── init(from:).json │ ├── macrovalues(locale:).json │ ├── name.json │ ├── objectwillchange.json │ ├── observableobject-implementations.json │ ├── paywallid.json │ ├── paywallidentifier.json │ ├── placementid.json │ ├── placementidentifier.json │ ├── product().json │ ├── productid.json │ ├── skproduct.json │ ├── store.json │ └── variationidentifier.json │ ├── apphudproducttype.json │ ├── apphudproducttype │ ├── !=(_:_:).json │ ├── autorenewable.json │ ├── consumable.json │ ├── equatable-implementations.json │ ├── hash(into:).json │ ├── hashvalue.json │ ├── init(rawvalue:).json │ ├── nonconsumable.json │ ├── nonrenewable.json │ └── rawrepresentable-implementations.json │ ├── apphudpurchaseresult.json │ ├── apphudpurchaseresult │ ├── description.json │ ├── error.json │ ├── isrestoreresult.json │ ├── nonrenewingpurchase.json │ ├── subscription.json │ ├── success.json │ ├── transaction.json │ └── usercanceled.json │ ├── apphudreceipt.json │ ├── apphudreceipt │ ├── applicationversion.json │ ├── bundleid.json │ ├── init(from:).json │ ├── originalapplicationversion.json │ ├── originalpurchasedate.json │ ├── rawjson.json │ └── receiptcreationdate.json │ ├── apphudrule.json │ ├── apphudrule │ ├── rule_name.json │ └── screen_name.json │ ├── apphudrulescreen.json │ ├── apphudrulescreen │ ├── name.json │ └── status_bar_color.json │ ├── apphudscreendismissaction.json │ ├── apphudscreendismissaction │ ├── !=(_:_:).json │ ├── closeonly.json │ ├── equatable-implementations.json │ ├── hash(into:).json │ ├── hashvalue.json │ ├── init(rawvalue:).json │ ├── none.json │ ├── rawrepresentable-implementations.json │ └── thankandclose.json │ ├── apphudsdkversionnumber.json │ ├── apphudsdkversionstring.json │ ├── apphudsubscription.json │ ├── apphudsubscription │ ├── canceledat.json │ ├── encode(to:).json │ ├── expiresdate.json │ ├── init(from:).json │ ├── isactive().json │ ├── isautorenewenabled.json │ ├── isinretrybilling.json │ ├── isintroductoryactivated.json │ ├── islocal.json │ ├── issandbox.json │ ├── originaltransactionid.json │ ├── productid.json │ ├── startedat.json │ └── status.json │ ├── apphudsubscriptionstatus.json │ ├── apphudsubscriptionstatus │ ├── !=(_:_:).json │ ├── encode(to:).json │ ├── equatable-implementations.json │ ├── expired.json │ ├── grace.json │ ├── hash(into:).json │ ├── hashvalue.json │ ├── init(from:).json │ ├── init(rawvalue:).json │ ├── intro.json │ ├── promo.json │ ├── rawrepresentable-implementations.json │ ├── refunded.json │ ├── regular.json │ └── trial.json │ ├── apphuduidelegate.json │ ├── apphuduidelegate │ ├── apphuddiddismissscreen(controller:).json │ ├── apphuddidfailpurchase(product:offerid:errorcode:screenname:).json │ ├── apphuddidpurchase(product:offerid:screenname:).json │ ├── apphuddidselectsurveyanswer(question:answer:screenname:).json │ ├── apphudparentviewcontroller(controller:).json │ ├── apphudscreendidappear(screenname:).json │ ├── apphudscreendismissaction(screenname:controller:).json │ ├── apphudscreenpresentationstyle(controller:).json │ ├── apphudscreenwilldismiss(screenname:error:).json │ ├── apphudshouldperformrule(rule:).json │ ├── apphudshouldshowscreen(screenname:).json │ └── apphudwillpurchase(product:offerid:screenname:).json │ ├── apphuduser.json │ ├── apphuduser │ ├── encode(to:).json │ ├── init(from:).json │ ├── purchases.json │ ├── rawplacements().json │ ├── subscriptions.json │ └── userid.json │ ├── apphuduserpropertykey.json │ ├── apphuduserpropertykey │ ├── age.json │ ├── cohort.json │ ├── email.json │ ├── gender.json │ ├── init(_:).json │ ├── name.json │ └── phone.json │ ├── apphudutils.json │ ├── apphudutils │ ├── checkrules().json │ ├── enablealllogs().json │ ├── enabledebuglogs().json │ ├── init.json │ ├── sdkversion().json │ └── usestorekitv2().json │ ├── foundation.json │ ├── foundation │ ├── locale.json │ ├── locale │ │ └── apphudlanguagecode().json │ ├── urlrequest.json │ └── urlrequest │ │ └── curl(pretty:).json │ ├── storekit.json │ └── storekit │ ├── skpaymentqueue.json │ └── skpaymentqueue │ └── doswizzle().json ├── developer-og-twitter.jpg ├── developer-og.jpg ├── documentation └── apphudsdk │ ├── apphud │ ├── apphudproductfor(_:) │ │ └── index.html │ ├── appstorereceipt() │ │ └── index.html │ ├── attributefromweb(data:callback:) │ │ └── index.html │ ├── checkeligibilitiesforintroductoryoffers(products:callback:) │ │ └── index.html │ ├── checkeligibilitiesforpromotionaloffers(products:callback:) │ │ └── index.html │ ├── checkeligibilityforintroductoryoffer(product:callback:) │ │ └── index.html │ ├── checkeligibilityforpromotionaloffer(product:callback:) │ │ └── index.html │ ├── deferplacements() │ │ └── index.html │ ├── deviceid() │ │ └── index.html │ ├── didupdatenotification() │ │ └── index.html │ ├── enabledebuglogs() │ │ └── index.html │ ├── fetchpaywallscreen(_:maxtimeout:cachepolicy:completion:) │ │ └── index.html │ ├── fetchpaywallview(_:maxtimeout:cachepolicy:ondismiss:) │ │ └── index.html │ ├── fetchplacements(maxattempts:_:) │ │ └── index.html │ ├── fetchproducts() │ │ └── index.html │ ├── fetchproducts(maxattempts:_:) │ │ └── index.html │ ├── fetchrawreceiptinfo(_:) │ │ └── index.html │ ├── fetchskproducts(maxattempts:) │ │ └── index.html │ ├── forceflushuserproperties(completion:) │ │ └── index.html │ ├── grantpromotional(dayscount:productid:permissiongroup:callback:) │ │ └── index.html │ ├── handlepushnotification(apsinfo:) │ │ └── index.html │ ├── hasactivesubscription() │ │ └── index.html │ ├── haspremiumaccess() │ │ └── index.html │ ├── incrementuserproperty(key:by:) │ │ └── index.html │ ├── index.html │ ├── init │ │ └── index.html │ ├── isnonrenewingpurchaseactive(productidentifier:) │ │ └── index.html │ ├── issandbox() │ │ └── index.html │ ├── loadfallbackpaywalls(callback:) │ │ └── index.html │ ├── logout() │ │ └── index.html │ ├── nonrenewingpurchases() │ │ └── index.html │ ├── optoutoftracking() │ │ └── index.html │ ├── paywallshown(_:) │ │ └── index.html │ ├── pendingrule() │ │ └── index.html │ ├── pendingrulescreencontroller() │ │ └── index.html │ ├── permissiongroups() │ │ └── index.html │ ├── placement(_:) │ │ └── index.html │ ├── placements(maxattempts:) │ │ └── index.html │ ├── preloadpaywallscreens(placementidentifiers:) │ │ └── index.html │ ├── presentoffercoderedemptionsheet() │ │ └── index.html │ ├── product(productidentifier:) │ │ └── index.html │ ├── products │ │ └── index.html │ ├── purchase(_:callback:)-6dhy3 │ │ └── index.html │ ├── purchase(_:callback:)-9oi │ │ └── index.html │ ├── purchase(_:ispurchasing:)-3cisu │ │ └── index.html │ ├── purchase(_:ispurchasing:)-o1p9 │ │ └── index.html │ ├── purchase(_:value:callback:) │ │ └── index.html │ ├── purchasepromo(_:discountid:_:) │ │ └── index.html │ ├── purchasepromo(apphudproduct:discountid:_:) │ │ └── index.html │ ├── rawplacements() │ │ └── index.html │ ├── refreshuserdata(callback:) │ │ └── index.html │ ├── restorepurchases() │ │ └── index.html │ ├── restorepurchases(callback:) │ │ └── index.html │ ├── setattribution(data:from:identifer:callback:) │ │ └── index.html │ ├── setcustompurchasevalue(_:productid:) │ │ └── index.html │ ├── setdelegate(_:) │ │ └── index.html │ ├── setdeviceidentifiers(idfa:idfv:) │ │ └── index.html │ ├── setpaywallscachetimeout(_:) │ │ └── index.html │ ├── setuidelegate(_:) │ │ └── index.html │ ├── setuserproperty(key:value:setonce:) │ │ └── index.html │ ├── showpendingrulescreen() │ │ └── index.html │ ├── start(apikey:userid:observermode:callback:) │ │ └── index.html │ ├── startmanually(apikey:userid:deviceid:observermode:callback:) │ │ └── index.html │ ├── submitpushnotificationstoken(token:callback:) │ │ └── index.html │ ├── submitpushnotificationstokenstring(string:callback:) │ │ └── index.html │ ├── subscription() │ │ └── index.html │ ├── subscriptions() │ │ └── index.html │ ├── unloadpaywallscreen(_:) │ │ └── index.html │ ├── updateuserid(_:callback:) │ │ └── index.html │ ├── userid() │ │ └── index.html │ └── willpurchaseproductfrom(paywallidentifier:placementidentifier:) │ │ └── index.html │ ├── apphud_default_retries │ └── index.html │ ├── apphud_error_no_internet │ └── index.html │ ├── apphud_infinite_retries │ └── index.html │ ├── apphud_invalid_identifier │ └── index.html │ ├── apphud_max_initial_load_time │ └── index.html │ ├── apphud_no_products │ └── index.html │ ├── apphud_paywall_load_timeout │ └── index.html │ ├── apphud_paywall_screen_invalid │ └── index.html │ ├── apphud_paywall_screen_load_timeout │ └── index.html │ ├── apphud_paywall_screen_not_found │ └── index.html │ ├── apphudanycodable │ ├── encode(to:) │ │ └── index.html │ ├── index.html │ └── init(from:) │ │ └── index.html │ ├── apphudasyncpurchaseresult │ ├── error │ │ └── index.html │ ├── index.html │ ├── nonrenewingpurchase │ │ └── index.html │ ├── subscription │ │ └── index.html │ ├── success │ │ └── index.html │ └── transaction │ │ └── index.html │ ├── apphudattributiondata │ ├── adnetwork │ │ └── index.html │ ├── adset │ │ └── index.html │ ├── campaign │ │ └── index.html │ ├── channel │ │ └── index.html │ ├── creative │ │ └── index.html │ ├── custom1 │ │ └── index.html │ ├── custom2 │ │ └── index.html │ ├── index.html │ ├── init(rawdata:adnetwork:channel:campaign:adset:creative:keyword:custom1:custom2:) │ │ └── index.html │ ├── keyword │ │ └── index.html │ └── rawdata │ │ └── index.html │ ├── apphudattributionprovider │ ├── !=(_:_:) │ │ └── index.html │ ├── adjust │ │ └── index.html │ ├── appleadsattribution │ │ └── index.html │ ├── appsflyer │ │ └── index.html │ ├── branch │ │ └── index.html │ ├── custom │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── facebook │ │ └── index.html │ ├── firebase │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── hashvalue │ │ └── index.html │ ├── index.html │ ├── init(rawvalue:) │ │ └── index.html │ ├── rawrepresentable-implementations │ │ └── index.html │ ├── singular │ │ └── index.html │ ├── tenjin │ │ └── index.html │ ├── tiktok │ │ └── index.html │ ├── tostring() │ │ └── index.html │ └── voluum │ │ └── index.html │ ├── apphudboolcallback │ └── index.html │ ├── apphuddelegate │ ├── apphuddidchangeuserid(_:)-1dyji │ │ └── index.html │ ├── apphuddidchangeuserid(_:)-2g2jg │ │ └── index.html │ ├── apphuddidobservepurchase(result:)-1ym71 │ │ └── index.html │ ├── apphuddidobservepurchase(result:)-57k7y │ │ └── index.html │ ├── apphudnonrenewingpurchasesupdated(_:)-31k4 │ │ └── index.html │ ├── apphudnonrenewingpurchasesupdated(_:)-7sfe7 │ │ └── index.html │ ├── apphudshouldstartappstoredirectpurchase(_:)-2ek16 │ │ └── index.html │ ├── apphudshouldstartappstoredirectpurchase(_:)-2mv8h │ │ └── index.html │ ├── apphudsubscriptionsupdated(_:)-2uxsb │ │ └── index.html │ ├── apphudsubscriptionsupdated(_:)-3dnhb │ │ └── index.html │ ├── handledeferredtransaction(transaction:)-4tnlp │ │ └── index.html │ ├── handledeferredtransaction(transaction:)-856ot │ │ └── index.html │ ├── index.html │ ├── paywallsdidfullyload(paywalls:)-3kcab │ │ └── index.html │ ├── paywallsdidfullyload(paywalls:)-6z8g8 │ │ └── index.html │ ├── placementsdidfullyload(placements:)-27ou4 │ │ └── index.html │ ├── placementsdidfullyload(placements:)-8b6v8 │ │ └── index.html │ ├── userdidload(user:)-4f87g │ │ └── index.html │ └── userdidload(user:)-4qpvb │ │ └── index.html │ ├── apphudeligibilitycallback │ └── index.html │ ├── apphuderror │ ├── index.html │ └── networkissue() │ │ └── index.html │ ├── apphudgroup │ ├── encode(to:) │ │ └── index.html │ ├── hasaccess │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ ├── name │ │ └── index.html │ └── productids │ │ └── index.html │ ├── apphudhttpclient │ ├── domainurlstring │ │ └── index.html │ ├── index.html │ ├── post_customers_timeout │ │ └── index.html │ ├── sdktype │ │ └── index.html │ ├── sdkversion │ │ └── index.html │ └── shared │ │ └── index.html │ ├── apphudkeychain │ ├── index.html │ └── init │ │ └── index.html │ ├── apphudnonrenewingpurchase │ ├── canceledat │ │ └── index.html │ ├── encode(to:) │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ ├── isactive() │ │ └── index.html │ ├── isconsumablepurchase() │ │ └── index.html │ ├── islocal │ │ └── index.html │ ├── issandbox │ │ └── index.html │ ├── productid │ │ └── index.html │ ├── purchasedat │ │ └── index.html │ └── transactionid │ │ └── index.html │ ├── apphudpaywall │ ├── createwithcustomdata(products:identifier:screenurl:) │ │ └── index.html │ ├── encode(to:) │ │ └── index.html │ ├── experimentname │ │ └── index.html │ ├── hasvisualpaywall() │ │ └── index.html │ ├── identifier │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ ├── isdefault │ │ └── index.html │ ├── isvisualpaywallpreloaded() │ │ └── index.html │ ├── json │ │ └── index.html │ ├── objectwillchange │ │ └── index.html │ ├── observableobject-implementations │ │ └── index.html │ ├── parentpaywallidentifier │ │ └── index.html │ ├── placementidentifier │ │ └── index.html │ ├── products │ │ └── index.html │ ├── screen │ │ └── index.html │ ├── update(json:) │ │ └── index.html │ └── variationname │ │ └── index.html │ ├── apphudpaywallcachepolicy │ ├── !=(_:_:) │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── index.html │ ├── productiononly │ │ └── index.html │ └── sandboxandproduction │ │ └── index.html │ ├── apphudpaywallid │ ├── !=(_:_:) │ │ └── index.html │ ├── banner │ │ └── index.html │ ├── content │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── hashvalue │ │ └── index.html │ ├── home │ │ └── index.html │ ├── index.html │ ├── init(rawvalue:) │ │ └── index.html │ ├── main │ │ └── index.html │ ├── onboarding │ │ └── index.html │ ├── rawrepresentable-implementations │ │ └── index.html │ ├── settings │ │ └── index.html │ └── toolbar │ │ └── index.html │ ├── apphudpaywallscreen │ ├── defaulturl │ │ └── index.html │ ├── id │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ └── urls │ │ └── index.html │ ├── apphudpaywallscreencontroller │ ├── apphudviewdelegate-implementations │ │ └── index.html │ ├── apphudviewdidload() │ │ └── index.html │ ├── apphudviewhandlepurchase(index:) │ │ └── index.html │ ├── index.html │ ├── onclosebuttontapped │ │ └── index.html │ ├── onshouldopenurl │ │ └── index.html │ ├── ontransactioncompleted │ │ └── index.html │ ├── ontransactionstarted │ │ └── index.html │ ├── paywall │ │ └── index.html │ ├── shouldautodismiss │ │ └── index.html │ ├── shouldpopondismiss │ │ └── index.html │ ├── state │ │ └── index.html │ ├── usesystemloadingindicator │ │ └── index.html │ ├── viewdidappear(_:) │ │ └── index.html │ ├── viewwilldisappear(_:) │ │ └── index.html │ ├── webview(_:createwebviewwith:for:windowfeatures:) │ │ └── index.html │ └── wkuidelegate-implementations │ │ └── index.html │ ├── apphudpaywallscreenfetchresult │ ├── error(error:) │ │ └── index.html │ ├── index.html │ └── success(controller:) │ │ └── index.html │ ├── apphudpaywallscreenstate │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── error(error:) │ │ └── index.html │ ├── index.html │ ├── loading │ │ └── index.html │ └── ready │ │ └── index.html │ ├── apphudpaywallview │ ├── accentcolor(_:) │ │ └── index.html │ ├── accessibility(activationpoint:)-24n7k │ │ └── index.html │ ├── accessibility(activationpoint:)-2bbau │ │ └── index.html │ ├── accessibility(addtraits:) │ │ └── index.html │ ├── accessibility(hidden:) │ │ └── index.html │ ├── accessibility(hint:) │ │ └── index.html │ ├── accessibility(identifier:) │ │ └── index.html │ ├── accessibility(inputlabels:) │ │ └── index.html │ ├── accessibility(label:) │ │ └── index.html │ ├── accessibility(removetraits:) │ │ └── index.html │ ├── accessibility(selectionidentifier:) │ │ └── index.html │ ├── accessibility(sortpriority:) │ │ └── index.html │ ├── accessibility(value:) │ │ └── index.html │ ├── accessibilityaction(_:_:) │ │ └── index.html │ ├── accessibilityaction(action:label:) │ │ └── index.html │ ├── accessibilityaction(named:_:)-5t22v │ │ └── index.html │ ├── accessibilityaction(named:_:)-97jt5 │ │ └── index.html │ ├── accessibilityaction(named:_:)-9yi5h │ │ └── index.html │ ├── accessibilityactions(_:) │ │ └── index.html │ ├── accessibilityactions(category:_:) │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-4rl8t │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-79rha │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-3nc4a │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-55g4h │ │ └── index.html │ ├── accessibilityaddtraits(_:) │ │ └── index.html │ ├── accessibilityadjustableaction(_:) │ │ └── index.html │ ├── accessibilitychartdescriptor(_:) │ │ └── index.html │ ├── accessibilitychildren(children:) │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-129rk │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-1abgu │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-37vpm │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-3qhzk │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-5xh26 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-6brm │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-6iqaq │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-i5io │ │ └── index.html │ ├── accessibilitydirecttouch(_:options:) │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-4buep │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-638qn │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-81zb3 │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-1cz7m │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-74kao │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-93vnq │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-11qnj │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-6f6s9 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-f4sh │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-2jpqa │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-6i0f3 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-eip3 │ │ └── index.html │ ├── accessibilityelement(children:) │ │ └── index.html │ ├── accessibilityfocused(_:) │ │ └── index.html │ ├── accessibilityfocused(_:equals:) │ │ └── index.html │ ├── accessibilityheading(_:) │ │ └── index.html │ ├── accessibilityhidden(_:) │ │ └── index.html │ ├── accessibilityhidden(_:isenabled:) │ │ └── index.html │ ├── accessibilityhint(_:)-37cp9 │ │ └── index.html │ ├── accessibilityhint(_:)-4bo4e │ │ └── index.html │ ├── accessibilityhint(_:)-7m73p │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-2rcdu │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-30k0v │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-8eyja │ │ └── index.html │ ├── accessibilityidentifier(_:) │ │ └── index.html │ ├── accessibilityidentifier(_:isenabled:) │ │ └── index.html │ ├── accessibilityignoresinvertcolors(_:) │ │ └── index.html │ ├── accessibilityinputlabels(_:)-3he4 │ │ └── index.html │ ├── accessibilityinputlabels(_:)-3yyf2 │ │ └── index.html │ ├── accessibilityinputlabels(_:)-7h5dd │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-3k8fg │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-51jhv │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-5ku7t │ │ └── index.html │ ├── accessibilitylabel(_:)-3qxek │ │ └── index.html │ ├── accessibilitylabel(_:)-5rzp7 │ │ └── index.html │ ├── accessibilitylabel(_:)-7kvq5 │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-6tqxr │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-8auey │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-9egw6 │ │ └── index.html │ ├── accessibilitylabel(content:) │ │ └── index.html │ ├── accessibilitylabeledpair(role:id:in:) │ │ └── index.html │ ├── accessibilitylinkedgroup(id:in:) │ │ └── index.html │ ├── accessibilityremovetraits(_:) │ │ └── index.html │ ├── accessibilityrepresentation(representation:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:isenabled:) │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-1t8cu │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-2fco8 │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-51th6 │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-6bux4 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-77l1h │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-86rx5 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-9adw7 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-9s2x0 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-1i7x9 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-5syjc │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-6jl1d │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-vch6 │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-3pcbm │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-672uo │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-87et0 │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-9jg1w │ │ └── index.html │ ├── accessibilityrotorentry(id:in:) │ │ └── index.html │ ├── accessibilityscrollaction(_:) │ │ └── index.html │ ├── accessibilityshowslargecontentviewer() │ │ └── index.html │ ├── accessibilityshowslargecontentviewer(_:) │ │ └── index.html │ ├── accessibilitysortpriority(_:) │ │ └── index.html │ ├── accessibilitytextcontenttype(_:) │ │ └── index.html │ ├── accessibilityvalue(_:)-91u3b │ │ └── index.html │ ├── accessibilityvalue(_:)-d5mq │ │ └── index.html │ ├── accessibilityvalue(_:)-oll │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-41lni │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-67c47 │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-7kh33 │ │ └── index.html │ ├── accessibilityzoomaction(_:) │ │ └── index.html │ ├── actionsheet(ispresented:content:) │ │ └── index.html │ ├── actionsheet(item:content:) │ │ └── index.html │ ├── alert(_:ispresented:actions:)-1zfrq │ │ └── index.html │ ├── alert(_:ispresented:actions:)-22c9x │ │ └── index.html │ ├── alert(_:ispresented:actions:)-8v0au │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-1oiyc │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-29930 │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-rzqh │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-1u9if │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-2130x │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-9c36y │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-1axjw │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-7qqu4 │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-7sb9f │ │ └── index.html │ ├── alert(ispresented:content:) │ │ └── index.html │ ├── alert(ispresented:error:actions:) │ │ └── index.html │ ├── alert(ispresented:error:actions:message:) │ │ └── index.html │ ├── alert(item:content:) │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-4v6sa │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-dwpf │ │ └── index.html │ ├── alloweddynamicrange(_:) │ │ └── index.html │ ├── allowshittesting(_:) │ │ └── index.html │ ├── allowstightening(_:) │ │ └── index.html │ ├── allowswindowactivationevents(_:) │ │ └── index.html │ ├── anchorpreference(key:value:transform:) │ │ └── index.html │ ├── animation(_:) │ │ └── index.html │ ├── animation(_:body:) │ │ └── index.html │ ├── animation(_:value:) │ │ └── index.html │ ├── appstoreoverlay(ispresented:configuration:) │ │ └── index.html │ ├── aspectratio(_:contentmode:)-29irr │ │ └── index.html │ ├── aspectratio(_:contentmode:)-56ofi │ │ └── index.html │ ├── autocapitalization(_:) │ │ └── index.html │ ├── autocorrectiondisabled(_:) │ │ └── index.html │ ├── background(_:alignment:) │ │ └── index.html │ ├── background(_:ignoressafeareaedges:) │ │ └── index.html │ ├── background(_:in:fillstyle:)-1l6uh │ │ └── index.html │ ├── background(_:in:fillstyle:)-58qq5 │ │ └── index.html │ ├── background(alignment:content:) │ │ └── index.html │ ├── background(ignoressafeareaedges:) │ │ └── index.html │ ├── background(in:fillstyle:)-1zrmf │ │ └── index.html │ ├── background(in:fillstyle:)-8ut1z │ │ └── index.html │ ├── backgroundpreferencevalue(_:_:) │ │ └── index.html │ ├── backgroundpreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── backgroundstyle(_:) │ │ └── index.html │ ├── badge(_:)-41wz6 │ │ └── index.html │ ├── badge(_:)-47oy5 │ │ └── index.html │ ├── badge(_:)-5qmbb │ │ └── index.html │ ├── badge(_:)-7v0mg │ │ └── index.html │ ├── badgeprominence(_:) │ │ └── index.html │ ├── baselineoffset(_:) │ │ └── index.html │ ├── blendmode(_:) │ │ └── index.html │ ├── blur(radius:opaque:) │ │ └── index.html │ ├── body │ │ └── index.html │ ├── bold(_:) │ │ └── index.html │ ├── border(_:width:) │ │ └── index.html │ ├── brightness(_:) │ │ └── index.html │ ├── buttonbordershape(_:) │ │ └── index.html │ ├── buttonrepeatbehavior(_:) │ │ └── index.html │ ├── buttonstyle(_:)-4019k │ │ └── index.html │ ├── buttonstyle(_:)-ikjt │ │ └── index.html │ ├── clipped(antialiased:) │ │ └── index.html │ ├── clipshape(_:style:) │ │ └── index.html │ ├── coloreffect(_:isenabled:) │ │ └── index.html │ ├── colorinvert() │ │ └── index.html │ ├── colormultiply(_:) │ │ └── index.html │ ├── colorscheme(_:) │ │ └── index.html │ ├── compositinggroup() │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-35riv │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-8p58v │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-8peuj │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-4j8fn │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6zqzp │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-8i9u7 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4zxus │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-8dxa3 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-9slbv │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2492b │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-3blwo │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-3hj25 │ │ └── index.html │ ├── containerbackground(_:for:) │ │ └── index.html │ ├── containerbackground(for:alignment:content:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:_:) │ │ └── index.html │ ├── containerrelativeframe(_:count:span:spacing:alignment:) │ │ └── index.html │ ├── containershape(_:) │ │ └── index.html │ ├── containervalue(_:_:) │ │ └── index.html │ ├── contentmargins(_:_:for:)-7awr5 │ │ └── index.html │ ├── contentmargins(_:_:for:)-8vgpb │ │ └── index.html │ ├── contentmargins(_:for:) │ │ └── index.html │ ├── contentshape(_:_:eofill:) │ │ └── index.html │ ├── contentshape(_:eofill:) │ │ └── index.html │ ├── contenttransition(_:) │ │ └── index.html │ ├── contextmenu(_:) │ │ └── index.html │ ├── contextmenu(forselectiontype:menu:primaryaction:) │ │ └── index.html │ ├── contextmenu(menuitems:) │ │ └── index.html │ ├── contextmenu(menuitems:preview:) │ │ └── index.html │ ├── contrast(_:) │ │ └── index.html │ ├── controlgroupstyle(_:) │ │ └── index.html │ ├── controller │ │ └── index.html │ ├── controlsize(_:) │ │ └── index.html │ ├── coordinatespace(_:) │ │ └── index.html │ ├── coordinatespace(name:) │ │ └── index.html │ ├── coordinator │ │ └── index.html │ ├── cornerradius(_:antialiased:) │ │ └── index.html │ ├── currententitlementtask(for:priority:action:) │ │ └── index.html │ ├── datepickerstyle(_:) │ │ └── index.html │ ├── defaultadaptabletabbarplacement(_:) │ │ └── index.html │ ├── defaultappstorage(_:) │ │ └── index.html │ ├── defaultfocus(_:_:priority:) │ │ └── index.html │ ├── defaulthovereffect(_:)-415cl │ │ └── index.html │ ├── defaulthovereffect(_:)-6rrdw │ │ └── index.html │ ├── defaultscrollanchor(_:) │ │ └── index.html │ ├── defaultscrollanchor(_:for:) │ │ └── index.html │ ├── deferssystemgestures(on:) │ │ └── index.html │ ├── deletedisabled(_:) │ │ └── index.html │ ├── dialogicon(_:) │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-3jflx │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-jdjg │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-omh1 │ │ └── index.html │ ├── dialogsuppressiontoggle(issuppressed:) │ │ └── index.html │ ├── disableautocorrection(_:) │ │ └── index.html │ ├── disabled(_:) │ │ └── index.html │ ├── disclosuregroupstyle(_:) │ │ └── index.html │ ├── dismantleuiviewcontroller(_:coordinator:) │ │ └── index.html │ ├── distortioneffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── documentbrowsercontextmenu(_:) │ │ └── index.html │ ├── draggable(_:) │ │ └── index.html │ ├── draggable(_:preview:) │ │ └── index.html │ ├── drawinggroup(opaque:colormode:) │ │ └── index.html │ ├── dropdestination(for:action:istargeted:) │ │ └── index.html │ ├── dynamictypesize(_:) │ │ └── index.html │ ├── edgesignoringsafearea(_:) │ │ └── index.html │ ├── environment(_:) │ │ └── index.html │ ├── environment(_:_:) │ │ └── index.html │ ├── environmentobject(_:) │ │ └── index.html │ ├── filedialogbrowseroptions(_:) │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-1hrb5 │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-2pbyv │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-7m0si │ │ └── index.html │ ├── filedialogcustomizationid(_:) │ │ └── index.html │ ├── filedialogdefaultdirectory(_:) │ │ └── index.html │ ├── filedialogimportsunresolvedaliases(_:) │ │ └── index.html │ ├── filedialogmessage(_:)-2xgoe │ │ └── index.html │ ├── filedialogmessage(_:)-hvyl │ │ └── index.html │ ├── filedialogmessage(_:)-rggy │ │ └── index.html │ ├── filedialogurlenabled(_:) │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-1a3bw │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-22byu │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-3cyfb │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-3em0z │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-1jdg2 │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-1m1pe │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-1sq38 │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-mnlt │ │ └── index.html │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-642pt │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-663vl │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-86msg │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:oncancellation:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:oncancellation:) │ │ └── index.html │ ├── finddisabled(_:) │ │ └── index.html │ ├── findnavigator(ispresented:) │ │ └── index.html │ ├── fixedsize() │ │ └── index.html │ ├── fixedsize(horizontal:vertical:) │ │ └── index.html │ ├── flipsforrighttoleftlayoutdirection(_:) │ │ └── index.html │ ├── focusable(_:) │ │ └── index.html │ ├── focusable(_:interactions:) │ │ └── index.html │ ├── focused(_:) │ │ └── index.html │ ├── focused(_:equals:) │ │ └── index.html │ ├── focusedobject(_:)-27wpi │ │ └── index.html │ ├── focusedobject(_:)-313d4 │ │ └── index.html │ ├── focusedsceneobject(_:)-4ln8f │ │ └── index.html │ ├── focusedsceneobject(_:)-5hcgk │ │ └── index.html │ ├── focusedscenevalue(_:) │ │ └── index.html │ ├── focusedscenevalue(_:_:)-3kw6p │ │ └── index.html │ ├── focusedscenevalue(_:_:)-6rrw9 │ │ └── index.html │ ├── focusedvalue(_:) │ │ └── index.html │ ├── focusedvalue(_:_:)-3rt3y │ │ └── index.html │ ├── focusedvalue(_:_:)-408u5 │ │ └── index.html │ ├── focuseffectdisabled(_:) │ │ └── index.html │ ├── font(_:) │ │ └── index.html │ ├── fontdesign(_:) │ │ └── index.html │ ├── fontweight(_:) │ │ └── index.html │ ├── fontwidth(_:) │ │ └── index.html │ ├── foregroundcolor(_:) │ │ └── index.html │ ├── foregroundstyle(_:) │ │ └── index.html │ ├── foregroundstyle(_:_:) │ │ └── index.html │ ├── foregroundstyle(_:_:_:) │ │ └── index.html │ ├── formstyle(_:) │ │ └── index.html │ ├── frame() │ │ └── index.html │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:) │ │ └── index.html │ ├── frame(width:height:alignment:) │ │ └── index.html │ ├── fullscreen() │ │ └── index.html │ ├── fullscreencover(ispresented:ondismiss:content:) │ │ └── index.html │ ├── fullscreencover(item:ondismiss:content:) │ │ └── index.html │ ├── fullscreensheet() │ │ └── index.html │ ├── gaugestyle(_:) │ │ └── index.html │ ├── geometrygroup() │ │ └── index.html │ ├── gesture(_:) │ │ └── index.html │ ├── gesture(_:including:) │ │ └── index.html │ ├── gesture(_:isenabled:) │ │ └── index.html │ ├── gesture(_:name:isenabled:) │ │ └── index.html │ ├── grayscale(_:) │ │ └── index.html │ ├── gridcellanchor(_:) │ │ └── index.html │ ├── gridcellcolumns(_:) │ │ └── index.html │ ├── gridcellunsizedaxes(_:) │ │ └── index.html │ ├── gridcolumnalignment(_:) │ │ └── index.html │ ├── groupboxstyle(_:) │ │ └── index.html │ ├── handgestureshortcut(_:isenabled:) │ │ └── index.html │ ├── handlesexternalevents(preferring:allowing:) │ │ └── index.html │ ├── headerprominence(_:) │ │ └── index.html │ ├── help(_:)-3n7pj │ │ └── index.html │ ├── help(_:)-6gqi4 │ │ └── index.html │ ├── help(_:)-g847 │ │ └── index.html │ ├── hidden() │ │ └── index.html │ ├── highprioritygesture(_:including:) │ │ └── index.html │ ├── highprioritygesture(_:isenabled:) │ │ └── index.html │ ├── highprioritygesture(_:name:isenabled:) │ │ └── index.html │ ├── hovereffect(_:) │ │ └── index.html │ ├── hovereffect(_:isenabled:)-260vi │ │ └── index.html │ ├── hovereffect(_:isenabled:)-3hsoc │ │ └── index.html │ ├── hovereffectdisabled(_:) │ │ └── index.html │ ├── huerotation(_:) │ │ └── index.html │ ├── id(_:) │ │ └── index.html │ ├── ignoressafearea(_:edges:) │ │ └── index.html │ ├── imagescale(_:) │ │ └── index.html │ ├── inapppurchaseoptions(_:) │ │ └── index.html │ ├── index.html │ ├── indexviewstyle(_:) │ │ └── index.html │ ├── init(controller:ondismiss:) │ │ └── index.html │ ├── inspector(ispresented:content:) │ │ └── index.html │ ├── inspectorcolumnwidth(_:) │ │ └── index.html │ ├── inspectorcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── interactionactivitytrackingtag(_:) │ │ └── index.html │ ├── interactivedismissdisabled(_:) │ │ └── index.html │ ├── invalidatablecontent(_:) │ │ └── index.html │ ├── italic(_:) │ │ └── index.html │ ├── itemprovider(_:) │ │ └── index.html │ ├── kerning(_:) │ │ └── index.html │ ├── keyboardshortcut(_:) │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:) │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:localization:) │ │ └── index.html │ ├── keyboardtype(_:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:) │ │ └── index.html │ ├── labeledcontentstyle(_:) │ │ └── index.html │ ├── labelshidden() │ │ └── index.html │ ├── labelstyle(_:) │ │ └── index.html │ ├── labelsvisibility(_:) │ │ └── index.html │ ├── layereffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── layoutdirectionbehavior(_:) │ │ └── index.html │ ├── layoutpriority(_:) │ │ └── index.html │ ├── layoutvalue(key:value:) │ │ └── index.html │ ├── linelimit(_:) │ │ └── index.html │ ├── linelimit(_:reservesspace:) │ │ └── index.html │ ├── linespacing(_:) │ │ └── index.html │ ├── listitemtint(_:)-35ms0 │ │ └── index.html │ ├── listitemtint(_:)-4dlk5 │ │ └── index.html │ ├── listrowbackground(_:) │ │ └── index.html │ ├── listrowinsets(_:) │ │ └── index.html │ ├── listrowseparator(_:edges:) │ │ └── index.html │ ├── listrowseparatortint(_:edges:) │ │ └── index.html │ ├── listrowspacing(_:) │ │ └── index.html │ ├── listsectionseparator(_:edges:) │ │ └── index.html │ ├── listsectionseparatortint(_:edges:) │ │ └── index.html │ ├── listsectionspacing(_:)-72gzd │ │ └── index.html │ ├── listsectionspacing(_:)-8opce │ │ └── index.html │ ├── liststyle(_:) │ │ └── index.html │ ├── luminancetoalpha() │ │ └── index.html │ ├── makecoordinator() │ │ └── index.html │ ├── makeuiviewcontroller(context:) │ │ └── index.html │ ├── managesubscriptionssheet(ispresented:) │ │ └── index.html │ ├── managesubscriptionssheet(ispresented:subscriptiongroupid:) │ │ └── index.html │ ├── mask(_:) │ │ └── index.html │ ├── mask(alignment:_:) │ │ └── index.html │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:configuration:) │ │ └── index.html │ ├── materialactiveappearance(_:) │ │ └── index.html │ ├── menuactiondismissbehavior(_:) │ │ └── index.html │ ├── menuindicator(_:) │ │ └── index.html │ ├── menuorder(_:) │ │ └── index.html │ ├── menustyle(_:) │ │ └── index.html │ ├── minimumscalefactor(_:) │ │ └── index.html │ ├── modifier(_:) │ │ └── index.html │ ├── monospaced(_:) │ │ └── index.html │ ├── monospaceddigit() │ │ └── index.html │ ├── movedisabled(_:) │ │ └── index.html │ ├── multilinetextalignment(_:) │ │ └── index.html │ ├── navigationbarbackbuttonhidden(_:) │ │ └── index.html │ ├── navigationbarhidden(_:) │ │ └── index.html │ ├── navigationbaritems(leading:) │ │ └── index.html │ ├── navigationbaritems(leading:trailing:) │ │ └── index.html │ ├── navigationbaritems(trailing:) │ │ └── index.html │ ├── navigationbartitle(_:)-7ej1x │ │ └── index.html │ ├── navigationbartitle(_:)-8b37t │ │ └── index.html │ ├── navigationbartitle(_:)-94475 │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-1cuwv │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-2q23n │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-3giys │ │ └── index.html │ ├── navigationbartitledisplaymode(_:) │ │ └── index.html │ ├── navigationdestination(for:destination:) │ │ └── index.html │ ├── navigationdestination(ispresented:destination:) │ │ └── index.html │ ├── navigationdestination(item:destination:) │ │ └── index.html │ ├── navigationdocument(_:)-49uab │ │ └── index.html │ ├── navigationdocument(_:)-5x0ri │ │ └── index.html │ ├── navigationdocument(_:preview:)-23o4a │ │ └── index.html │ ├── navigationdocument(_:preview:)-50jtl │ │ └── index.html │ ├── navigationdocument(_:preview:)-5vqbz │ │ └── index.html │ ├── navigationdocument(_:preview:)-7f4eg │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(_:) │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── navigationsplitviewstyle(_:) │ │ └── index.html │ ├── navigationtitle(_:)-3srjv │ │ └── index.html │ ├── navigationtitle(_:)-6z6bx │ │ └── index.html │ ├── navigationtitle(_:)-8dfvt │ │ └── index.html │ ├── navigationtitle(_:)-9gh7k │ │ └── index.html │ ├── navigationtitle(_:)-swaq │ │ └── index.html │ ├── navigationtransition(_:) │ │ └── index.html │ ├── navigationviewstyle(_:) │ │ └── index.html │ ├── offercoderedemption(ispresented:oncompletion:) │ │ └── index.html │ ├── offset(_:) │ │ └── index.html │ ├── offset(x:y:) │ │ └── index.html │ ├── onappear(perform:) │ │ └── index.html │ ├── onchange(of:initial:_:)-3m4t1 │ │ └── index.html │ ├── onchange(of:initial:_:)-ofh9 │ │ └── index.html │ ├── onchange(of:perform:) │ │ └── index.html │ ├── oncontinueuseractivity(_:perform:) │ │ └── index.html │ ├── oncontinuoushover(coordinatespace:perform:)-3d6c8 │ │ └── index.html │ ├── oncontinuoushover(coordinatespace:perform:)-65zaz │ │ └── index.html │ ├── ondisappear(perform:) │ │ └── index.html │ ├── ondismiss │ │ └── index.html │ ├── ondrag(_:) │ │ └── index.html │ ├── ondrag(_:preview:) │ │ └── index.html │ ├── ondrop(of:delegate:)-57nvt │ │ └── index.html │ ├── ondrop(of:delegate:)-6jrp8 │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-195ps │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-83xid │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-9j3y8 │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-9wdt8 │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-2ugv8 │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-5a8gl │ │ └── index.html │ ├── onhover(perform:) │ │ └── index.html │ ├── oninapppurchasecompletion(perform:) │ │ └── index.html │ ├── oninapppurchasestart(perform:) │ │ └── index.html │ ├── onkeypress(_:action:) │ │ └── index.html │ ├── onkeypress(_:phases:action:) │ │ └── index.html │ ├── onkeypress(characters:phases:action:) │ │ └── index.html │ ├── onkeypress(keys:phases:action:) │ │ └── index.html │ ├── onkeypress(phases:action:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:pressing:perform:) │ │ └── index.html │ ├── onopenurl(perform:) │ │ └── index.html │ ├── onpencildoubletap(perform:) │ │ └── index.html │ ├── onpencilsqueeze(perform:) │ │ └── index.html │ ├── onpreferencechange(_:perform:) │ │ └── index.html │ ├── onreceive(_:perform:) │ │ └── index.html │ ├── onscrollgeometrychange(for:of:action:) │ │ └── index.html │ ├── onscrollphasechange(_:)-2d1ri │ │ └── index.html │ ├── onscrollphasechange(_:)-3hjb8 │ │ └── index.html │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:) │ │ └── index.html │ ├── onscrollvisibilitychange(threshold:_:) │ │ └── index.html │ ├── onsubmit(of:_:) │ │ └── index.html │ ├── ontapgesture(count:coordinatespace:perform:)-642bs │ │ └── index.html │ ├── ontapgesture(count:coordinatespace:perform:)-8onbm │ │ └── index.html │ ├── ontapgesture(count:perform:) │ │ └── index.html │ ├── opacity(_:) │ │ └── index.html │ ├── overlay(_:alignment:) │ │ └── index.html │ ├── overlay(_:ignoressafeareaedges:) │ │ └── index.html │ ├── overlay(_:in:fillstyle:) │ │ └── index.html │ ├── overlay(alignment:content:) │ │ └── index.html │ ├── overlaypreferencevalue(_:_:) │ │ └── index.html │ ├── overlaypreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── padding(_:)-38pvp │ │ └── index.html │ ├── padding(_:)-6vhcj │ │ └── index.html │ ├── padding(_:_:) │ │ └── index.html │ ├── paletteselectioneffect(_:) │ │ └── index.html │ ├── persistentsystemoverlays(_:) │ │ └── index.html │ ├── phaseanimator(_:content:animation:) │ │ └── index.html │ ├── phaseanimator(_:trigger:content:animation:) │ │ └── index.html │ ├── pickerstyle(_:) │ │ └── index.html │ ├── popover(ispresented:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── popover(item:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── position(_:) │ │ └── index.html │ ├── position(x:y:) │ │ └── index.html │ ├── preference(key:value:) │ │ └── index.html │ ├── preferredcolorscheme(_:) │ │ └── index.html │ ├── preferredsubscriptionoffer(_:) │ │ └── index.html │ ├── presentationbackground(_:) │ │ └── index.html │ ├── presentationbackground(alignment:content:) │ │ └── index.html │ ├── presentationbackgroundinteraction(_:) │ │ └── index.html │ ├── presentationcompactadaptation(_:) │ │ └── index.html │ ├── presentationcompactadaptation(horizontal:vertical:) │ │ └── index.html │ ├── presentationcontentinteraction(_:) │ │ └── index.html │ ├── presentationcornerradius(_:) │ │ └── index.html │ ├── presentationdetents(_:) │ │ └── index.html │ ├── presentationdetents(_:selection:) │ │ └── index.html │ ├── presentationdragindicator(_:) │ │ └── index.html │ ├── presentationsizing(_:) │ │ └── index.html │ ├── previewcontext(_:) │ │ └── index.html │ ├── previewdevice(_:) │ │ └── index.html │ ├── previewdisplayname(_:) │ │ └── index.html │ ├── previewinterfaceorientation(_:) │ │ └── index.html │ ├── previewlayout(_:) │ │ └── index.html │ ├── privacysensitive(_:) │ │ └── index.html │ ├── productdescription(_:) │ │ └── index.html │ ├── producticonborder() │ │ └── index.html │ ├── productviewstyle(_:) │ │ └── index.html │ ├── progressviewstyle(_:) │ │ └── index.html │ ├── projectioneffect(_:) │ │ └── index.html │ ├── redacted(reason:) │ │ └── index.html │ ├── refreshable(action:) │ │ └── index.html │ ├── refundrequestsheet(for:ispresented:ondismiss:) │ │ └── index.html │ ├── renameaction(_:)-4ak2r │ │ └── index.html │ ├── renameaction(_:)-4e3m5 │ │ └── index.html │ ├── replacedisabled(_:) │ │ └── index.html │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:) │ │ └── index.html │ ├── rotationeffect(_:anchor:) │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-4e6cf │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-4r5tb │ │ └── index.html │ ├── safeareapadding(_:)-71cmy │ │ └── index.html │ ├── safeareapadding(_:)-9wqln │ │ └── index.html │ ├── safeareapadding(_:_:) │ │ └── index.html │ ├── saturation(_:) │ │ └── index.html │ ├── scaledtofill() │ │ └── index.html │ ├── scaledtofit() │ │ └── index.html │ ├── scaleeffect(_:anchor:)-22p39 │ │ └── index.html │ ├── scaleeffect(_:anchor:)-5panz │ │ └── index.html │ ├── scaleeffect(x:y:anchor:) │ │ └── index.html │ ├── scenepadding(_:) │ │ └── index.html │ ├── scenepadding(_:edges:) │ │ └── index.html │ ├── scrollbouncebehavior(_:axes:) │ │ └── index.html │ ├── scrollclipdisabled(_:) │ │ └── index.html │ ├── scrollcontentbackground(_:) │ │ └── index.html │ ├── scrolldisabled(_:) │ │ └── index.html │ ├── scrolldismisseskeyboard(_:) │ │ └── index.html │ ├── scrollindicators(_:axes:) │ │ └── index.html │ ├── scrollindicatorsflash(onappear:) │ │ └── index.html │ ├── scrollindicatorsflash(trigger:) │ │ └── index.html │ ├── scrollinputbehavior(_:for:) │ │ └── index.html │ ├── scrollposition(_:anchor:) │ │ └── index.html │ ├── scrollposition(id:anchor:) │ │ └── index.html │ ├── scrolltargetbehavior(_:) │ │ └── index.html │ ├── scrolltargetlayout(isenabled:) │ │ └── index.html │ ├── scrolltransition(_:axis:transition:) │ │ └── index.html │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:) │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-2bj9k │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-2gkfj │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-i4lf │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-6plaa │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-7qpud │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-y784 │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-35zwn │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-8for3 │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-r957 │ │ └── index.html │ ├── searchable(text:placement:prompt:)-4jzik │ │ └── index.html │ ├── searchable(text:placement:prompt:)-kl2m │ │ └── index.html │ ├── searchable(text:placement:prompt:)-oyis │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-1jdvn │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-5rd3w │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-879nb │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-5ij9q │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8ft7p │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-9j2x9 │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-4i0ut │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-99ifq │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-9olhl │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-42u38 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4uq8b │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-58nb │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-10cl0 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-4x4xo │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-56fpu │ │ └── index.html │ ├── searchcompletion(_:) │ │ └── index.html │ ├── searchdictationbehavior(_:) │ │ └── index.html │ ├── searchfocused(_:) │ │ └── index.html │ ├── searchfocused(_:equals:) │ │ └── index.html │ ├── searchpresentationtoolbarbehavior(_:) │ │ └── index.html │ ├── searchscopes(_:activation:_:) │ │ └── index.html │ ├── searchscopes(_:scopes:) │ │ └── index.html │ ├── searchsuggestions(_:) │ │ └── index.html │ ├── searchsuggestions(_:for:) │ │ └── index.html │ ├── sectionactions(content:) │ │ └── index.html │ ├── selectiondisabled(_:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:condition:) │ │ └── index.html │ ├── sensoryfeedback(trigger:_:) │ │ └── index.html │ ├── shadow(color:radius:x:y:) │ │ └── index.html │ ├── sheet(ispresented:ondismiss:content:) │ │ └── index.html │ ├── sheet(item:ondismiss:content:) │ │ └── index.html │ ├── simultaneousgesture(_:including:) │ │ └── index.html │ ├── simultaneousgesture(_:isenabled:) │ │ └── index.html │ ├── simultaneousgesture(_:name:isenabled:) │ │ └── index.html │ ├── sizethatfits(_:uiviewcontroller:context:) │ │ └── index.html │ ├── speechadjustedpitch(_:) │ │ └── index.html │ ├── speechalwaysincludespunctuation(_:) │ │ └── index.html │ ├── speechannouncementsqueued(_:) │ │ └── index.html │ ├── speechspellsoutcharacters(_:) │ │ └── index.html │ ├── springloadingbehavior(_:) │ │ └── index.html │ ├── statusbar(hidden:) │ │ └── index.html │ ├── statusbarhidden(_:) │ │ └── index.html │ ├── storebutton(_:for:) │ │ └── index.html │ ├── storeproductstask(for:priority:action:) │ │ └── index.html │ ├── storeproducttask(for:priority:action:) │ │ └── index.html │ ├── strikethrough(_:pattern:color:) │ │ └── index.html │ ├── submitlabel(_:) │ │ └── index.html │ ├── submitscope(_:) │ │ └── index.html │ ├── subscriptionpromotionaloffer(offer:signature:) │ │ └── index.html │ ├── subscriptionstatustask(for:priority:action:) │ │ └── index.html │ ├── subscriptionstorebuttonlabel(_:) │ │ └── index.html │ ├── subscriptionstorecontrolbackground(_:)-74uke │ │ └── index.html │ ├── subscriptionstorecontrolbackground(_:)-77nl0 │ │ └── index.html │ ├── subscriptionstorecontrolicon(icon:) │ │ └── index.html │ ├── subscriptionstorecontrolstyle(_:) │ │ └── index.html │ ├── subscriptionstorecontrolstyle(_:placement:) │ │ └── index.html │ ├── subscriptionstoreoptiongroupstyle(_:) │ │ └── index.html │ ├── subscriptionstorepickeritembackground(_:) │ │ └── index.html │ ├── subscriptionstorepickeritembackground(_:in:) │ │ └── index.html │ ├── subscriptionstorepolicydestination(for:destination:) │ │ └── index.html │ ├── subscriptionstorepolicydestination(url:for:) │ │ └── index.html │ ├── subscriptionstorepolicyforegroundstyle(_:) │ │ └── index.html │ ├── subscriptionstorepolicyforegroundstyle(_:_:) │ │ └── index.html │ ├── subscriptionstoresigninaction(_:) │ │ └── index.html │ ├── swipeactions(edge:allowsfullswipe:content:) │ │ └── index.html │ ├── symboleffect(_:options:isactive:) │ │ └── index.html │ ├── symboleffect(_:options:value:) │ │ └── index.html │ ├── symboleffectsremoved(_:) │ │ └── index.html │ ├── symbolrenderingmode(_:) │ │ └── index.html │ ├── symbolvariant(_:) │ │ └── index.html │ ├── tabitem(_:) │ │ └── index.html │ ├── tablecolumnheaders(_:) │ │ └── index.html │ ├── tablestyle(_:) │ │ └── index.html │ ├── tabviewcustomization(_:) │ │ └── index.html │ ├── tabviewsidebarbottombar(content:) │ │ └── index.html │ ├── tabviewsidebarfooter(content:) │ │ └── index.html │ ├── tabviewsidebarheader(content:) │ │ └── index.html │ ├── tabviewstyle(_:) │ │ └── index.html │ ├── tag(_:includeoptional:) │ │ └── index.html │ ├── task(id:priority:_:) │ │ └── index.html │ ├── task(priority:_:) │ │ └── index.html │ ├── textcase(_:) │ │ └── index.html │ ├── textcontenttype(_:) │ │ └── index.html │ ├── texteditorstyle(_:) │ │ └── index.html │ ├── textfieldstyle(_:) │ │ └── index.html │ ├── textinputautocapitalization(_:) │ │ └── index.html │ ├── textrenderer(_:) │ │ └── index.html │ ├── textscale(_:isenabled:) │ │ └── index.html │ ├── textselection(_:) │ │ └── index.html │ ├── textselectionaffinity(_:) │ │ └── index.html │ ├── tint(_:) │ │ └── index.html │ ├── togglestyle(_:) │ │ └── index.html │ ├── toolbar(_:for:) │ │ └── index.html │ ├── toolbar(content:)-7ec31 │ │ └── index.html │ ├── toolbar(content:)-994ly │ │ └── index.html │ ├── toolbar(id:content:) │ │ └── index.html │ ├── toolbar(removing:) │ │ └── index.html │ ├── toolbarbackground(_:for:)-3741s │ │ └── index.html │ ├── toolbarbackground(_:for:)-3jh02 │ │ └── index.html │ ├── toolbarbackgroundvisibility(_:for:) │ │ └── index.html │ ├── toolbarcolorscheme(_:for:) │ │ └── index.html │ ├── toolbarforegroundstyle(_:for:) │ │ └── index.html │ ├── toolbarrole(_:) │ │ └── index.html │ ├── toolbartitledisplaymode(_:) │ │ └── index.html │ ├── toolbartitlemenu(content:) │ │ └── index.html │ ├── toolbarvisibility(_:for:) │ │ └── index.html │ ├── tracking(_:) │ │ └── index.html │ ├── transaction(_:) │ │ └── index.html │ ├── transaction(_:body:) │ │ └── index.html │ ├── transaction(value:_:) │ │ └── index.html │ ├── transformanchorpreference(key:value:transform:) │ │ └── index.html │ ├── transformeffect(_:) │ │ └── index.html │ ├── transformenvironment(_:transform:) │ │ └── index.html │ ├── transformpreference(_:_:) │ │ └── index.html │ ├── transition(_:) │ │ └── index.html │ ├── truncationmode(_:) │ │ └── index.html │ ├── typeselectequivalent(_:)-1n06k │ │ └── index.html │ ├── typeselectequivalent(_:)-8kd4i │ │ └── index.html │ ├── typeselectequivalent(_:)-xzcc │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-487nq │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-4t5dh │ │ └── index.html │ ├── uiviewcontrollerrepresentable-implementations │ │ └── index.html │ ├── underline(_:pattern:color:) │ │ └── index.html │ ├── unredacted() │ │ └── index.html │ ├── updateuiviewcontroller(_:context:) │ │ └── index.html │ ├── useractivity(_:element:_:) │ │ └── index.html │ ├── useractivity(_:isactive:_:) │ │ └── index.html │ ├── view-implementations │ │ └── index.html │ ├── visualeffect(_:) │ │ └── index.html │ ├── windowtoolbarfullscreenvisibility(_:) │ │ └── index.html │ ├── writingtoolsbehavior(_:) │ │ └── index.html │ └── zindex(_:) │ │ └── index.html │ ├── apphudplacement │ ├── experimentname │ │ └── index.html │ ├── identifier │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ └── paywall │ │ └── index.html │ ├── apphudplacementid │ ├── !=(_:_:) │ │ └── index.html │ ├── banner │ │ └── index.html │ ├── content │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── hashvalue │ │ └── index.html │ ├── home │ │ └── index.html │ ├── index.html │ ├── init(rawvalue:) │ │ └── index.html │ ├── main │ │ └── index.html │ ├── onboarding │ │ └── index.html │ ├── rawrepresentable-implementations │ │ └── index.html │ ├── settings │ │ └── index.html │ └── toolbar │ │ └── index.html │ ├── apphudproduct │ ├── encode(to:) │ │ └── index.html │ ├── experimentid │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ ├── macrovalues(locale:) │ │ └── index.html │ ├── name │ │ └── index.html │ ├── objectwillchange │ │ └── index.html │ ├── observableobject-implementations │ │ └── index.html │ ├── paywallid │ │ └── index.html │ ├── paywallidentifier │ │ └── index.html │ ├── placementid │ │ └── index.html │ ├── placementidentifier │ │ └── index.html │ ├── product() │ │ └── index.html │ ├── productid │ │ └── index.html │ ├── skproduct │ │ └── index.html │ ├── store │ │ └── index.html │ └── variationidentifier │ │ └── index.html │ ├── apphudproducttype │ ├── !=(_:_:) │ │ └── index.html │ ├── autorenewable │ │ └── index.html │ ├── consumable │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── hashvalue │ │ └── index.html │ ├── index.html │ ├── init(rawvalue:) │ │ └── index.html │ ├── nonconsumable │ │ └── index.html │ ├── nonrenewable │ │ └── index.html │ └── rawrepresentable-implementations │ │ └── index.html │ ├── apphudpurchaseresult │ ├── description │ │ └── index.html │ ├── error │ │ └── index.html │ ├── index.html │ ├── isrestoreresult │ │ └── index.html │ ├── nonrenewingpurchase │ │ └── index.html │ ├── subscription │ │ └── index.html │ ├── success │ │ └── index.html │ ├── transaction │ │ └── index.html │ └── usercanceled │ │ └── index.html │ ├── apphudreceipt │ ├── applicationversion │ │ └── index.html │ ├── bundleid │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ ├── originalapplicationversion │ │ └── index.html │ ├── originalpurchasedate │ │ └── index.html │ ├── rawjson │ │ └── index.html │ └── receiptcreationdate │ │ └── index.html │ ├── apphudrule │ ├── index.html │ ├── rule_name │ │ └── index.html │ └── screen_name │ │ └── index.html │ ├── apphudrulescreen │ ├── index.html │ ├── name │ │ └── index.html │ └── status_bar_color │ │ └── index.html │ ├── apphudscreendismissaction │ ├── !=(_:_:) │ │ └── index.html │ ├── closeonly │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── hashvalue │ │ └── index.html │ ├── index.html │ ├── init(rawvalue:) │ │ └── index.html │ ├── none │ │ └── index.html │ ├── rawrepresentable-implementations │ │ └── index.html │ └── thankandclose │ │ └── index.html │ ├── apphudsdkversionnumber │ └── index.html │ ├── apphudsdkversionstring │ └── index.html │ ├── apphudsubscription │ ├── canceledat │ │ └── index.html │ ├── encode(to:) │ │ └── index.html │ ├── expiresdate │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ ├── isactive() │ │ └── index.html │ ├── isautorenewenabled │ │ └── index.html │ ├── isinretrybilling │ │ └── index.html │ ├── isintroductoryactivated │ │ └── index.html │ ├── islocal │ │ └── index.html │ ├── issandbox │ │ └── index.html │ ├── originaltransactionid │ │ └── index.html │ ├── productid │ │ └── index.html │ ├── startedat │ │ └── index.html │ └── status │ │ └── index.html │ ├── apphudsubscriptionstatus │ ├── !=(_:_:) │ │ └── index.html │ ├── encode(to:) │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── expired │ │ └── index.html │ ├── grace │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── hashvalue │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ ├── init(rawvalue:) │ │ └── index.html │ ├── intro │ │ └── index.html │ ├── promo │ │ └── index.html │ ├── rawrepresentable-implementations │ │ └── index.html │ ├── refunded │ │ └── index.html │ ├── regular │ │ └── index.html │ └── trial │ │ └── index.html │ ├── apphuduidelegate │ ├── apphuddiddismissscreen(controller:) │ │ └── index.html │ ├── apphuddidfailpurchase(product:offerid:errorcode:screenname:) │ │ └── index.html │ ├── apphuddidpurchase(product:offerid:screenname:) │ │ └── index.html │ ├── apphuddidselectsurveyanswer(question:answer:screenname:) │ │ └── index.html │ ├── apphudparentviewcontroller(controller:) │ │ └── index.html │ ├── apphudscreendidappear(screenname:) │ │ └── index.html │ ├── apphudscreendismissaction(screenname:controller:) │ │ └── index.html │ ├── apphudscreenpresentationstyle(controller:) │ │ └── index.html │ ├── apphudscreenwilldismiss(screenname:error:) │ │ └── index.html │ ├── apphudshouldperformrule(rule:) │ │ └── index.html │ ├── apphudshouldshowscreen(screenname:) │ │ └── index.html │ ├── apphudwillpurchase(product:offerid:screenname:) │ │ └── index.html │ └── index.html │ ├── apphuduser │ ├── encode(to:) │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ ├── purchases │ │ └── index.html │ ├── rawplacements() │ │ └── index.html │ ├── subscriptions │ │ └── index.html │ └── userid │ │ └── index.html │ ├── apphuduserpropertykey │ ├── age │ │ └── index.html │ ├── cohort │ │ └── index.html │ ├── email │ │ └── index.html │ ├── gender │ │ └── index.html │ ├── index.html │ ├── init(_:) │ │ └── index.html │ ├── name │ │ └── index.html │ └── phone │ │ └── index.html │ ├── apphudutils │ ├── checkrules() │ │ └── index.html │ ├── enablealllogs() │ │ └── index.html │ ├── enabledebuglogs() │ │ └── index.html │ ├── index.html │ ├── init │ │ └── index.html │ ├── sdkversion() │ │ └── index.html │ └── usestorekitv2() │ │ └── index.html │ ├── foundation │ ├── index.html │ ├── locale │ │ ├── apphudlanguagecode() │ │ │ └── index.html │ │ └── index.html │ └── urlrequest │ │ ├── curl(pretty:) │ │ └── index.html │ │ └── index.html │ ├── index.html │ └── storekit │ ├── index.html │ └── skpaymentqueue │ ├── doswizzle() │ └── index.html │ └── index.html ├── favicon.ico ├── favicon.svg ├── img ├── added-icon.832a5d2c.svg ├── deprecated-icon.7bf1740a.svg └── modified-icon.efb2697d.svg ├── index.html ├── index ├── availability.index ├── data.mdb ├── index.json └── navigator.index ├── js ├── 104.fe5974d0.js ├── 337.274a8ccc.js ├── 842.a7e2003a.js ├── 866.7ae93681.js ├── chunk-vendors.bdb7cbba.js ├── documentation-topic.29bf51a3.js ├── highlight-js-bash-js.702f0c5c.js ├── highlight-js-c-js.063069d3.js ├── highlight-js-cpp-js.458a9ae4.js ├── highlight-js-css-js.bfc4251f.js ├── highlight-js-custom-markdown.78c9f6ed.js ├── highlight-js-custom-swift.738731d1.js ├── highlight-js-diff-js.4db9a783.js ├── highlight-js-http-js.f78e83c2.js ├── highlight-js-java-js.4fe21e94.js ├── highlight-js-javascript-js.dfc9d16d.js ├── highlight-js-json-js.2a1856ba.js ├── highlight-js-llvm-js.26121771.js ├── highlight-js-markdown-js.a2f456af.js ├── highlight-js-objectivec-js.74dea052.js ├── highlight-js-perl-js.da6eda82.js ├── highlight-js-php-js.c458ffa4.js ├── highlight-js-python-js.60354774.js ├── highlight-js-ruby-js.7272231f.js ├── highlight-js-scss-js.adcd11a2.js ├── highlight-js-shell-js.0ad5b20f.js ├── highlight-js-swift-js.bdd5bff5.js ├── highlight-js-xml-js.0d78f903.js ├── index.0d775bb6.js ├── topic.37e71576.js └── tutorials-overview.acb09e8a.js └── metadata.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ApphudSDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/ApphudSDK.podspec -------------------------------------------------------------------------------- /Documentation.docc/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Documentation.docc/Documentation.md -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/.gitignore -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/ApphudDemoApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/ApphudDemoApp.entitlements -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/Configuration.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/Configuration.storekit -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/ContentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/ContentViewController.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/Helpers/AppVariables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/Helpers/AppVariables.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/Helpers/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/Helpers/Extensions.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/Helpers/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/Helpers/Router.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/Helpers/SKProduct+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/Helpers/SKProduct+Extension.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/Info.plist -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/PaywallOptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/PaywallOptionView.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/PaywallViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/PaywallViewController.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKDemo/StoreKit.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKDemo/StoreKit.storekit -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/ApphudSDKTests/ApphudSDKTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/ApphudSDKTests/ApphudSDKTests.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/Podfile -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/Podfile.lock -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/Pods/Local Podspecs/ApphudSDK.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/Pods/Local Podspecs/ApphudSDK.podspec.json -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/Pods/Manifest.lock -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwift/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/Pods/Target Support Files/Pods-ApphudSDKDemo/Pods-ApphudSDKDemo-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ApphudSDK.framework -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/Pods/Target Support Files/Pods-ApphudSDKDemo/Pods-ApphudSDKDemo-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ApphudSDK.framework -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/Pods/Target Support Files/Pods-ApphudSDKTests/Pods-ApphudSDKTests-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ApphudSDK.framework -------------------------------------------------------------------------------- /Examples/ApphudDemoSwift/Pods/Target Support Files/Pods-ApphudSDKTests/Pods-ApphudSDKTests-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ApphudSDK.framework -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/.gitignore -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/AppVariables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/AppVariables.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/ApphudDemoSwiftUI-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/ApphudDemoSwiftUI-Info.plist -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/ApphudDemoSwiftUI.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/ApphudDemoSwiftUI.entitlements -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/ApphudDemoSwiftUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/ApphudDemoSwiftUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/ApphudDemoSwiftUIApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/ApphudDemoSwiftUIApp.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/ContentView.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/PaywallUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/PaywallUIView.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/Podfile -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/Podfile.lock -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/Pods/Local Podspecs/ApphudSDK.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/Pods/Local Podspecs/ApphudSDK.podspec.json -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/Pods/Manifest.lock -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/ApphudDemoSwiftUI/StoreKit.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoSwiftUI/StoreKit.storekit -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/ApphudDemoApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/ApphudDemoApp.entitlements -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/Configuration.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/Configuration.storekit -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/ContentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/ContentViewController.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/Helpers/AppVariables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/Helpers/AppVariables.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/Helpers/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/Helpers/Extensions.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/Helpers/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/Helpers/Router.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/Info.plist -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/PaywallOptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/PaywallOptionView.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/PaywallViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/PaywallViewController.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKDemo/StoreKit.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKDemo/StoreKit.storekit -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/ApphudSDKTests/ApphudSDKTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/ApphudSDKTests/ApphudSDKTests.swift -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/Podfile -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/Podfile.lock -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/Pods/Local Podspecs/ApphudSDK.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/Pods/Local Podspecs/ApphudSDK.podspec.json -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/Pods/Manifest.lock -------------------------------------------------------------------------------- /Examples/ApphudDemoVisionOS/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Examples/ApphudDemoVisionOS/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/README.md -------------------------------------------------------------------------------- /Sources/ApphudUI/ApphudLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/ApphudUI/ApphudLoadingView.swift -------------------------------------------------------------------------------- /Sources/ApphudUI/ApphudNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/ApphudUI/ApphudNavigationController.swift -------------------------------------------------------------------------------- /Sources/ApphudUI/ApphudPaywallScreenController+I.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/ApphudUI/ApphudPaywallScreenController+I.swift -------------------------------------------------------------------------------- /Sources/ApphudUI/ApphudPaywallView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/ApphudUI/ApphudPaywallView.swift -------------------------------------------------------------------------------- /Sources/ApphudUI/ApphudScreenController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/ApphudUI/ApphudScreenController+Extensions.swift -------------------------------------------------------------------------------- /Sources/ApphudUI/ApphudScreenController+Macros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/ApphudUI/ApphudScreenController+Macros.swift -------------------------------------------------------------------------------- /Sources/ApphudUI/ApphudScreenController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/ApphudUI/ApphudScreenController.swift -------------------------------------------------------------------------------- /Sources/ApphudUI/ApphudScreensManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/ApphudUI/ApphudScreensManager.swift -------------------------------------------------------------------------------- /Sources/ApphudUI/ApphudView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/ApphudUI/ApphudView.swift -------------------------------------------------------------------------------- /Sources/Documentation.docc/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Documentation.docc/Documentation.md -------------------------------------------------------------------------------- /Sources/Internal/ApphudAsyncStoreKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudAsyncStoreKit.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudDataActor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudDataActor.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudExtensions.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudHttpClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudHttpClient.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudInternal+Attribution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudInternal+Attribution.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudInternal+Currency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudInternal+Currency.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudInternal+Eligibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudInternal+Eligibility.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudInternal+Fallback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudInternal+Fallback.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudInternal+Product.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudInternal+Product.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudInternal+Purchase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudInternal+Purchase.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudInternal+UserUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudInternal+UserUpdate.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudInternal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudInternal.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudKeychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudKeychain.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudLoggerService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudLoggerService.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudProductsStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudProductsStorage.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudSafeSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudSafeSet.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudStoreKitWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudStoreKitWrapper.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudURLSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudURLSession.swift -------------------------------------------------------------------------------- /Sources/Internal/ApphudUserProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Internal/ApphudUserProperty.swift -------------------------------------------------------------------------------- /Sources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Sources/Public/Apphud.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/Apphud.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudAsyncPurchaseResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudAsyncPurchaseResult.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudAttributionData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudAttributionData.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudDelegate.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudEnums.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudEnums.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudError.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudGroup.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudNonRenewingPurchase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudNonRenewingPurchase.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudPaywall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudPaywall.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudPaywallScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudPaywallScreen.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudPaywallScreenController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudPaywallScreenController.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudPlacement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudPlacement.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudProduct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudProduct.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudPurchaseResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudPurchaseResult.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudReceipt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudReceipt.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudRule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudRule.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudRuleScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudRuleScreen.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudSubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudSubscription.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudUIDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudUIDelegate.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudUser.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudUserPropertyKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudUserPropertyKey.swift -------------------------------------------------------------------------------- /Sources/Public/ApphudUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/Sources/Public/ApphudUtils.swift -------------------------------------------------------------------------------- /docs/css/866.60f074fd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/css/866.60f074fd.css -------------------------------------------------------------------------------- /docs/css/989.4f123103.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/css/989.4f123103.css -------------------------------------------------------------------------------- /docs/css/documentation-topic.99224ad2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/css/documentation-topic.99224ad2.css -------------------------------------------------------------------------------- /docs/css/index.3a335429.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/css/index.3a335429.css -------------------------------------------------------------------------------- /docs/css/topic.4be8f56d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/css/topic.4be8f56d.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.7942d777.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/css/tutorials-overview.7942d777.css -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/apphudproductfor(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/apphudproductfor(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/appstorereceipt().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/appstorereceipt().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/deferplacements().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/deferplacements().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/deviceid().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/deviceid().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/didupdatenotification().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/didupdatenotification().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/enabledebuglogs().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/enabledebuglogs().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/fetchproducts().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/fetchproducts().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/fetchrawreceiptinfo(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/fetchrawreceiptinfo(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/hasactivesubscription().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/hasactivesubscription().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/haspremiumaccess().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/haspremiumaccess().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/init.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/issandbox().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/issandbox().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/logout().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/logout().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/nonrenewingpurchases().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/nonrenewingpurchases().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/optoutoftracking().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/optoutoftracking().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/paywallshown(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/paywallshown(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/pendingrule().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/pendingrule().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/permissiongroups().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/permissiongroups().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/placement(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/placement(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/placements(maxattempts:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/placements(maxattempts:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/product(productidentifier:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/product(productidentifier:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/products.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/purchase(_:callback:)-6dhy3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/purchase(_:callback:)-6dhy3.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/purchase(_:callback:)-9oi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/purchase(_:callback:)-9oi.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/purchase(_:value:callback:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/purchase(_:value:callback:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/rawplacements().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/rawplacements().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/refreshuserdata(callback:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/refreshuserdata(callback:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/restorepurchases().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/restorepurchases().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/restorepurchases(callback:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/restorepurchases(callback:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/setdelegate(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/setdelegate(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/setpaywallscachetimeout(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/setpaywallscachetimeout(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/setuidelegate(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/setuidelegate(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/showpendingrulescreen().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/showpendingrulescreen().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/subscription().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/subscription().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/subscriptions().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/subscriptions().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/unloadpaywallscreen(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/unloadpaywallscreen(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/updateuserid(_:callback:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/updateuserid(_:callback:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud/userid().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud/userid().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud_default_retries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud_default_retries.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud_error_no_internet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud_error_no_internet.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud_infinite_retries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud_infinite_retries.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud_invalid_identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud_invalid_identifier.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud_max_initial_load_time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud_max_initial_load_time.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud_no_products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud_no_products.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud_paywall_load_timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud_paywall_load_timeout.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud_paywall_screen_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud_paywall_screen_invalid.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud_paywall_screen_load_timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud_paywall_screen_load_timeout.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphud_paywall_screen_not_found.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphud_paywall_screen_not_found.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudanycodable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudanycodable.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudanycodable/encode(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudanycodable/encode(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudanycodable/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudanycodable/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudasyncpurchaseresult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudasyncpurchaseresult.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudasyncpurchaseresult/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudasyncpurchaseresult/error.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudasyncpurchaseresult/success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudasyncpurchaseresult/success.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributiondata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributiondata.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributiondata/adnetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributiondata/adnetwork.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributiondata/adset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributiondata/adset.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributiondata/campaign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributiondata/campaign.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributiondata/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributiondata/channel.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributiondata/creative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributiondata/creative.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributiondata/custom1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributiondata/custom1.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributiondata/custom2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributiondata/custom2.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributiondata/keyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributiondata/keyword.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributiondata/rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributiondata/rawdata.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributionprovider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributionprovider.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributionprovider/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributionprovider/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributionprovider/adjust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributionprovider/adjust.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributionprovider/branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributionprovider/branch.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributionprovider/custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributionprovider/custom.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributionprovider/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributionprovider/facebook.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributionprovider/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributionprovider/firebase.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributionprovider/singular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributionprovider/singular.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributionprovider/tenjin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributionprovider/tenjin.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributionprovider/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributionprovider/tiktok.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudattributionprovider/voluum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudattributionprovider/voluum.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudboolcallback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudboolcallback.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuddelegate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuddelegate.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudeligibilitycallback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudeligibilitycallback.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuderror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuderror.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuderror/networkissue().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuderror/networkissue().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudgroup.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudgroup/encode(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudgroup/encode(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudgroup/hasaccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudgroup/hasaccess.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudgroup/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudgroup/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudgroup/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudgroup/name.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudgroup/productids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudgroup/productids.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudhttpclient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudhttpclient.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudhttpclient/domainurlstring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudhttpclient/domainurlstring.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudhttpclient/sdktype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudhttpclient/sdktype.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudhttpclient/sdkversion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudhttpclient/sdkversion.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudhttpclient/shared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudhttpclient/shared.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudkeychain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudkeychain.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudkeychain/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudkeychain/init.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudnonrenewingpurchase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudnonrenewingpurchase.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudnonrenewingpurchase/islocal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudnonrenewingpurchase/islocal.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/encode(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/encode(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/experimentname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/experimentname.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/hasvisualpaywall().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/hasvisualpaywall().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/identifier.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/isdefault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/isdefault.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/json.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/objectwillchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/objectwillchange.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/placementidentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/placementidentifier.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/products.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/screen.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/update(json:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/update(json:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywall/variationname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywall/variationname.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallcachepolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallcachepolicy.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallcachepolicy/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallcachepolicy/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid/banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid/banner.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid/content.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid/hash(into:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid/hash(into:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid/hashvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid/hashvalue.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid/home.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid/init(rawvalue:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid/init(rawvalue:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid/main.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid/onboarding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid/onboarding.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid/settings.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallid/toolbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallid/toolbar.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreen.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreen/defaulturl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreen/defaulturl.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreen/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreen/id.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreen/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreen/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreen/urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreen/urls.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreencontroller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreencontroller.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreenfetchresult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreenfetchresult.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreenstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreenstate.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreenstate/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreenstate/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreenstate/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreenstate/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreenstate/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreenstate/loading.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallscreenstate/ready.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallscreenstate/ready.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/accentcolor(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/accentcolor(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/animation(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/animation(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/badge(_:)-41wz6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/badge(_:)-41wz6.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/badge(_:)-47oy5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/badge(_:)-47oy5.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/badge(_:)-5qmbb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/badge(_:)-5qmbb.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/badge(_:)-7v0mg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/badge(_:)-7v0mg.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/blendmode(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/blendmode(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/body.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/bold(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/bold(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/border(_:width:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/border(_:width:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/brightness(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/brightness(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/colorinvert().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/colorinvert().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/colorscheme(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/colorscheme(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/contextmenu(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/contextmenu(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/contrast(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/contrast(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/controller.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/controlsize(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/controlsize(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/coordinator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/coordinator.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/dialogicon(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/dialogicon(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/disabled(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/disabled(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/draggable(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/draggable(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/environment(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/environment(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/finddisabled(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/finddisabled(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/fixedsize().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/fixedsize().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/focusable(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/focusable(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/focused(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/focused(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/focusedvalue(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/focusedvalue(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/font(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/font(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/fontdesign(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/fontdesign(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/fontweight(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/fontweight(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/fontwidth(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/fontwidth(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/formstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/formstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/frame().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/frame().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/fullscreen().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/fullscreen().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/gaugestyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/gaugestyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/geometrygroup().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/geometrygroup().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/gesture(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/gesture(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/grayscale(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/grayscale(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/help(_:)-3n7pj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/help(_:)-3n7pj.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/help(_:)-6gqi4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/help(_:)-6gqi4.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/help(_:)-g847.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/help(_:)-g847.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/hidden().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/hidden().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/hovereffect(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/hovereffect(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/huerotation(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/huerotation(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/id(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/id(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/imagescale(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/imagescale(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/italic(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/italic(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/itemprovider(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/itemprovider(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/kerning(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/kerning(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/keyboardtype(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/keyboardtype(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/labelshidden().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/labelshidden().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/labelstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/labelstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/linelimit(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/linelimit(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/linespacing(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/linespacing(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/liststyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/liststyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/mask(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/mask(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/menuorder(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/menuorder(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/menustyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/menustyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/modifier(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/modifier(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/monospaced(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/monospaced(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/movedisabled(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/movedisabled(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/offset(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/offset(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/offset(x:y:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/offset(x:y:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/ondismiss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/ondismiss.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/ondrag(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/ondrag(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/onsubmit(of:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/onsubmit(of:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/opacity(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/opacity(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/padding(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/padding(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/pickerstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/pickerstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/position(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/position(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/position(x:y:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/position(x:y:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/saturation(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/saturation(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/scaledtofill().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/scaledtofill().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/scaledtofit().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/scaledtofit().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/scenepadding(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/scenepadding(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/submitlabel(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/submitlabel(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/submitscope(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/submitscope(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/tabitem(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/tabitem(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/tablestyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/tablestyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/tabviewstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/tabviewstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/textcase(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/textcase(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/textrenderer(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/textrenderer(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/tint(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/tint(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/togglestyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/togglestyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/tracking(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/tracking(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/unredacted().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/unredacted().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpaywallview/zindex(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpaywallview/zindex(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacement.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacement/experimentname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacement/experimentname.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacement/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacement/identifier.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacement/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacement/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacement/paywall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacement/paywall.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacementid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacementid.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacementid/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacementid/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacementid/banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacementid/banner.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacementid/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacementid/content.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacementid/hash(into:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacementid/hash(into:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacementid/hashvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacementid/hashvalue.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacementid/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacementid/home.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacementid/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacementid/main.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacementid/onboarding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacementid/onboarding.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacementid/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacementid/settings.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudplacementid/toolbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudplacementid/toolbar.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/encode(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/encode(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/experimentid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/experimentid.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/name.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/objectwillchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/objectwillchange.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/paywallid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/paywallid.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/paywallidentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/paywallidentifier.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/placementid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/placementid.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/product().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/product().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/productid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/productid.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/skproduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/skproduct.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproduct/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproduct/store.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproducttype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproducttype.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproducttype/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproducttype/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproducttype/autorenewable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproducttype/autorenewable.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproducttype/consumable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproducttype/consumable.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproducttype/hash(into:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproducttype/hash(into:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproducttype/hashvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproducttype/hashvalue.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproducttype/nonconsumable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproducttype/nonconsumable.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudproducttype/nonrenewable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudproducttype/nonrenewable.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpurchaseresult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpurchaseresult.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpurchaseresult/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpurchaseresult/error.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudpurchaseresult/success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudpurchaseresult/success.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudreceipt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudreceipt.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudreceipt/bundleid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudreceipt/bundleid.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudreceipt/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudreceipt/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudreceipt/rawjson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudreceipt/rawjson.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudrule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudrule.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudrule/rule_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudrule/rule_name.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudrule/screen_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudrule/screen_name.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudrulescreen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudrulescreen.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudrulescreen/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudrulescreen/name.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudscreendismissaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudscreendismissaction.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudscreendismissaction/none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudscreendismissaction/none.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsdkversionnumber.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsdkversionnumber.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsdkversionstring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsdkversionstring.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscription.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscription/canceledat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscription/canceledat.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscription/encode(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscription/encode(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscription/expiresdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscription/expiresdate.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscription/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscription/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscription/isactive().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscription/isactive().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscription/islocal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscription/islocal.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscription/issandbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscription/issandbox.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscription/productid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscription/productid.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscription/startedat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscription/startedat.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscription/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscription/status.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscriptionstatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscriptionstatus.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscriptionstatus/grace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscriptionstatus/grace.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscriptionstatus/intro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscriptionstatus/intro.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscriptionstatus/promo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscriptionstatus/promo.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudsubscriptionstatus/trial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudsubscriptionstatus/trial.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduidelegate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduidelegate.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduser.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduser/encode(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduser/encode(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduser/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduser/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduser/purchases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduser/purchases.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduser/rawplacements().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduser/rawplacements().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduser/subscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduser/subscriptions.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduser/userid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduser/userid.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduserpropertykey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduserpropertykey.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduserpropertykey/age.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduserpropertykey/age.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduserpropertykey/cohort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduserpropertykey/cohort.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduserpropertykey/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduserpropertykey/email.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduserpropertykey/gender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduserpropertykey/gender.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduserpropertykey/init(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduserpropertykey/init(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduserpropertykey/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduserpropertykey/name.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphuduserpropertykey/phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphuduserpropertykey/phone.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudutils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudutils.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudutils/checkrules().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudutils/checkrules().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudutils/enablealllogs().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudutils/enablealllogs().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudutils/enabledebuglogs().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudutils/enabledebuglogs().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudutils/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudutils/init.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudutils/sdkversion().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudutils/sdkversion().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/apphudutils/usestorekitv2().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/apphudutils/usestorekitv2().json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/foundation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/foundation.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/foundation/locale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/foundation/locale.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/foundation/urlrequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/foundation/urlrequest.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/storekit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/storekit.json -------------------------------------------------------------------------------- /docs/data/documentation/apphudsdk/storekit/skpaymentqueue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/data/documentation/apphudsdk/storekit/skpaymentqueue.json -------------------------------------------------------------------------------- /docs/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/developer-og.jpg -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/apphudproductfor(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/apphudproductfor(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/appstorereceipt()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/appstorereceipt()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/deferplacements()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/deferplacements()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/deviceid()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/deviceid()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/didupdatenotification()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/didupdatenotification()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/enabledebuglogs()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/enabledebuglogs()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/fetchproducts()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/fetchproducts()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/fetchrawreceiptinfo(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/fetchrawreceiptinfo(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/hasactivesubscription()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/hasactivesubscription()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/haspremiumaccess()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/haspremiumaccess()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/init/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/init/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/issandbox()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/issandbox()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/logout()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/logout()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/nonrenewingpurchases()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/nonrenewingpurchases()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/optoutoftracking()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/optoutoftracking()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/paywallshown(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/paywallshown(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/pendingrule()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/pendingrule()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/permissiongroups()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/permissiongroups()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/placement(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/placement(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/products/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/products/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/rawplacements()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/rawplacements()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/restorepurchases()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/restorepurchases()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/setdelegate(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/setdelegate(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/setuidelegate(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/setuidelegate(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/showpendingrulescreen()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/showpendingrulescreen()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/subscription()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/subscription()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/subscriptions()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/subscriptions()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/unloadpaywallscreen(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/unloadpaywallscreen(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud/userid()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud/userid()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud_default_retries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud_default_retries/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud_error_no_internet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud_error_no_internet/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud_infinite_retries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud_infinite_retries/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud_invalid_identifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud_invalid_identifier/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud_max_initial_load_time/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud_max_initial_load_time/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud_no_products/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud_no_products/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud_paywall_load_timeout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud_paywall_load_timeout/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphud_paywall_screen_invalid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphud_paywall_screen_invalid/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudanycodable/encode(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudanycodable/encode(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudanycodable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudanycodable/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudanycodable/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudanycodable/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudasyncpurchaseresult/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudasyncpurchaseresult/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudattributiondata/adset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudattributiondata/adset/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudattributiondata/campaign/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudattributiondata/campaign/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudattributiondata/channel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudattributiondata/channel/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudattributiondata/creative/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudattributiondata/creative/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudattributiondata/custom1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudattributiondata/custom1/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudattributiondata/custom2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudattributiondata/custom2/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudattributiondata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudattributiondata/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudattributiondata/keyword/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudattributiondata/keyword/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudattributiondata/rawdata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudattributiondata/rawdata/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudattributionprovider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudattributionprovider/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudboolcallback/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudboolcallback/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuddelegate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuddelegate/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudeligibilitycallback/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudeligibilitycallback/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuderror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuderror/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuderror/networkissue()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuderror/networkissue()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudgroup/encode(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudgroup/encode(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudgroup/hasaccess/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudgroup/hasaccess/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudgroup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudgroup/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudgroup/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudgroup/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudgroup/name/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudgroup/name/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudgroup/productids/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudgroup/productids/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudhttpclient/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudhttpclient/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudhttpclient/sdktype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudhttpclient/sdktype/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudhttpclient/sdkversion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudhttpclient/sdkversion/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudhttpclient/shared/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudhttpclient/shared/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudkeychain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudkeychain/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudkeychain/init/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudkeychain/init/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudnonrenewingpurchase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudnonrenewingpurchase/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/encode(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/encode(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/experimentname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/experimentname/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/identifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/identifier/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/isdefault/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/isdefault/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/json/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/json/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/objectwillchange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/objectwillchange/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/products/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/products/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/screen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/screen/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/update(json:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/update(json:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywall/variationname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywall/variationname/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallcachepolicy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallcachepolicy/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallid/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallid/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallid/banner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallid/banner/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallid/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallid/content/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallid/hash(into:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallid/hash(into:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallid/hashvalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallid/hashvalue/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallid/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallid/home/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallid/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallid/main/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallid/main/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallid/onboarding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallid/onboarding/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallid/settings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallid/settings/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallid/toolbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallid/toolbar/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallscreen/defaulturl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallscreen/defaulturl/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallscreen/id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallscreen/id/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallscreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallscreen/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallscreen/urls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallscreen/urls/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallscreencontroller/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallscreencontroller/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallscreenfetchresult/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallscreenfetchresult/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallscreenstate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallscreenstate/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallscreenstate/ready/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallscreenstate/ready/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/body/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/body/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/bold(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/bold(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/contrast(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/contrast(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/controller/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/controller/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/coordinator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/coordinator/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/disabled(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/disabled(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/fixedsize()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/fixedsize()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/focused(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/focused(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/font(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/font(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/frame()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/frame()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/fullscreen()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/fullscreen()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/gesture(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/gesture(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/hidden()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/hidden()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/id(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/id(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/italic(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/italic(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/kerning(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/kerning(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/mask(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/mask(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/modifier(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/modifier(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/offset(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/offset(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/offset(x:y:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/offset(x:y:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/ondismiss/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/ondismiss/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/ondrag(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/ondrag(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/opacity(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/opacity(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/position(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/position(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/tabitem(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/tabitem(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/textcase(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/textcase(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/tint(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/tint(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/tracking(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/tracking(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/unredacted()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/unredacted()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpaywallview/zindex(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpaywallview/zindex(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacement/experimentname/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacement/experimentname/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacement/identifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacement/identifier/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacement/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacement/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacement/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacement/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacement/paywall/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacement/paywall/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacementid/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacementid/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacementid/banner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacementid/banner/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacementid/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacementid/content/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacementid/hash(into:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacementid/hash(into:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacementid/hashvalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacementid/hashvalue/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacementid/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacementid/home/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacementid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacementid/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacementid/main/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacementid/main/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacementid/onboarding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacementid/onboarding/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacementid/settings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacementid/settings/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudplacementid/toolbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudplacementid/toolbar/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/encode(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/encode(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/experimentid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/experimentid/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/name/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/name/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/objectwillchange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/objectwillchange/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/paywallid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/paywallid/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/placementid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/placementid/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/product()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/product()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/productid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/productid/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/skproduct/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/skproduct/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproduct/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproduct/store/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproducttype/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproducttype/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproducttype/consumable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproducttype/consumable/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproducttype/hash(into:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproducttype/hash(into:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproducttype/hashvalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproducttype/hashvalue/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproducttype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproducttype/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudproducttype/nonrenewable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudproducttype/nonrenewable/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpurchaseresult/error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpurchaseresult/error/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpurchaseresult/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpurchaseresult/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudpurchaseresult/success/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudpurchaseresult/success/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudreceipt/bundleid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudreceipt/bundleid/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudreceipt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudreceipt/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudreceipt/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudreceipt/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudreceipt/rawjson/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudreceipt/rawjson/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudrule/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudrule/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudrule/rule_name/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudrule/rule_name/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudrule/screen_name/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudrule/screen_name/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudrulescreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudrulescreen/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudrulescreen/name/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudrulescreen/name/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudscreendismissaction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudscreendismissaction/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudscreendismissaction/none/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudscreendismissaction/none/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsdkversionnumber/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsdkversionnumber/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsdkversionstring/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsdkversionstring/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscription/canceledat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscription/canceledat/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscription/encode(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscription/encode(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscription/expiresdate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscription/expiresdate/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscription/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscription/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscription/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscription/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscription/isactive()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscription/isactive()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscription/islocal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscription/islocal/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscription/issandbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscription/issandbox/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscription/productid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscription/productid/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscription/startedat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscription/startedat/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscription/status/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscription/status/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscriptionstatus/grace/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscriptionstatus/grace/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscriptionstatus/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscriptionstatus/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscriptionstatus/intro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscriptionstatus/intro/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscriptionstatus/promo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscriptionstatus/promo/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudsubscriptionstatus/trial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudsubscriptionstatus/trial/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduidelegate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduidelegate/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduser/encode(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduser/encode(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduser/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduser/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduser/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduser/purchases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduser/purchases/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduser/rawplacements()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduser/rawplacements()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduser/subscriptions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduser/subscriptions/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduser/userid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduser/userid/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduserpropertykey/age/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduserpropertykey/age/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduserpropertykey/cohort/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduserpropertykey/cohort/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduserpropertykey/email/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduserpropertykey/email/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduserpropertykey/gender/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduserpropertykey/gender/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduserpropertykey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduserpropertykey/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduserpropertykey/init(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduserpropertykey/init(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduserpropertykey/name/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduserpropertykey/name/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphuduserpropertykey/phone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphuduserpropertykey/phone/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudutils/checkrules()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudutils/checkrules()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudutils/enablealllogs()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudutils/enablealllogs()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudutils/enabledebuglogs()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudutils/enabledebuglogs()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudutils/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudutils/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudutils/init/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudutils/init/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudutils/sdkversion()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudutils/sdkversion()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/apphudutils/usestorekitv2()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/apphudutils/usestorekitv2()/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/foundation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/foundation/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/foundation/locale/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/foundation/locale/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/foundation/urlrequest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/foundation/urlrequest/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/storekit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/storekit/index.html -------------------------------------------------------------------------------- /docs/documentation/apphudsdk/storekit/skpaymentqueue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/documentation/apphudsdk/storekit/skpaymentqueue/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/img/added-icon.832a5d2c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/img/added-icon.832a5d2c.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.7bf1740a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/img/deprecated-icon.7bf1740a.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.efb2697d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/img/modified-icon.efb2697d.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/index/availability.index -------------------------------------------------------------------------------- /docs/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/index/data.mdb -------------------------------------------------------------------------------- /docs/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/index/index.json -------------------------------------------------------------------------------- /docs/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/index/navigator.index -------------------------------------------------------------------------------- /docs/js/104.fe5974d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/104.fe5974d0.js -------------------------------------------------------------------------------- /docs/js/337.274a8ccc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/337.274a8ccc.js -------------------------------------------------------------------------------- /docs/js/842.a7e2003a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/842.a7e2003a.js -------------------------------------------------------------------------------- /docs/js/866.7ae93681.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/866.7ae93681.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.bdb7cbba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/chunk-vendors.bdb7cbba.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.29bf51a3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/documentation-topic.29bf51a3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash-js.702f0c5c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-bash-js.702f0c5c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c-js.063069d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-c-js.063069d3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp-js.458a9ae4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-cpp-js.458a9ae4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css-js.bfc4251f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-css-js.bfc4251f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.78c9f6ed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-custom-markdown.78c9f6ed.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.738731d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-custom-swift.738731d1.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff-js.4db9a783.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-diff-js.4db9a783.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http-js.f78e83c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-http-js.f78e83c2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java-js.4fe21e94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-java-js.4fe21e94.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript-js.dfc9d16d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-javascript-js.dfc9d16d.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json-js.2a1856ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-json-js.2a1856ba.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm-js.26121771.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-llvm-js.26121771.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown-js.a2f456af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-markdown-js.a2f456af.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec-js.74dea052.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-objectivec-js.74dea052.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl-js.da6eda82.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-perl-js.da6eda82.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php-js.c458ffa4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-php-js.c458ffa4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python-js.60354774.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-python-js.60354774.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby-js.7272231f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-ruby-js.7272231f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss-js.adcd11a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-scss-js.adcd11a2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell-js.0ad5b20f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-shell-js.0ad5b20f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift-js.bdd5bff5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-swift-js.bdd5bff5.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml-js.0d78f903.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/highlight-js-xml-js.0d78f903.js -------------------------------------------------------------------------------- /docs/js/index.0d775bb6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/index.0d775bb6.js -------------------------------------------------------------------------------- /docs/js/topic.37e71576.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/topic.37e71576.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.acb09e8a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/js/tutorials-overview.acb09e8a.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apphud/ApphudSDK/HEAD/docs/metadata.json --------------------------------------------------------------------------------