├── .github ├── CODEOWNERS └── workflows │ └── deploy-documentation.yml ├── .gitignore ├── CONTRIBUTING.md ├── Cartfile ├── LICENSE.md ├── Package.swift ├── README.md ├── Sources └── Placeholder.swift ├── SupportSDK.xcframework ├── Info.plist ├── ios-arm64 │ ├── SupportSDK.framework │ │ ├── Assets.car │ │ ├── AwesomeImagePicker.nib │ │ ├── CameraCell.nib │ │ │ ├── objects-12.3+.nib │ │ │ └── runtime.nib │ │ ├── CreateRequest.nib │ │ ├── Headers │ │ │ ├── SupportSDK-Prefix.pch │ │ │ ├── SupportSDK-Swift.h │ │ │ ├── SupportSDK.h │ │ │ ├── ZDKCreateRequestUIDelegate.h │ │ │ ├── ZDKHelpCenterArticleRatingHandlerProtocol.h │ │ │ ├── ZDKHelpCenterAttachmentsDataSource.h │ │ │ ├── ZDKHelpCenterConversationsUIDelegate.h │ │ │ ├── ZDKHelpCenterDataSource.h │ │ │ ├── ZDKHelpCenterErrorCodes.h │ │ │ ├── ZDKHelpCenterUi.h │ │ │ ├── ZDKLayoutGuideApplicator.h │ │ │ ├── ZDKSpinnerDelegate.h │ │ │ ├── ZDKSupportAttachmentCell.h │ │ │ ├── ZDKToastViewWrapper.h │ │ │ └── ZDKUIUtil.h │ │ ├── ImageCell.nib │ │ ├── Info.plist │ │ ├── InputFileCell.nib │ │ │ ├── objects-12.3+.nib │ │ │ └── runtime.nib │ │ ├── InputImageCell.nib │ │ │ ├── objects-12.3+.nib │ │ │ └── runtime.nib │ │ ├── Modules │ │ │ ├── SupportSDK.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ │ ├── ZDKAppearanceApplicator+Private.h │ │ │ ├── ZDKArticleView+Private.h │ │ │ ├── ZDKArticleViewController+Private.h │ │ │ ├── ZDKHelpCenterDataSource_PrivateSharing.h │ │ │ ├── ZDKHelpCenterOverviewController+Private.h │ │ │ ├── ZDKHelpCenterSearchResultViewController+Private.h │ │ │ ├── ZDKLegacyTheme+Private.h │ │ │ ├── ZDKRequests+Private.h │ │ │ └── ZDKSupportAttachmentCell+Private.h │ │ ├── RequestController.nib │ │ ├── RequestListTableViewCell.nib │ │ ├── RequestListViewController.nib │ │ ├── SidebarCell.nib │ │ │ ├── objects-12.3+.nib │ │ │ └── runtime.nib │ │ ├── SupportSDK │ │ ├── SupportSDKStrings │ │ │ ├── Info.plist │ │ │ ├── ar.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── bg.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── cs.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── da.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── de.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── el.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en-GB.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fil.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fr-CA.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── he.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hu.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── id.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── it.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ko.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ms.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nb.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pt-BR.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pt.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ro.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ru.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── sk.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── sv.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── th.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── tr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── uk.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── vi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hant.lproj │ │ │ │ └── Localizable.strings │ │ ├── ZDKHelpCenterArticleRatingView.nib │ │ ├── ZDKHelpCenterOverviewArticleTableViewCell.nib │ │ ├── ZDKHelpCenterOverviewController.nib │ │ ├── ZDKHelpCenterOverviewFooterView.nib │ │ ├── ZDKHelpCenterOverviewHeaderView.nib │ │ ├── ZDKHelpCenterOverviewLoadingTableViewCell.nib │ │ ├── ZDKHelpCenterOverviewSectionTableViewCell.nib │ │ ├── ZDKHelpCenterOverviewSeeAllTableViewCell.nib │ │ ├── ZDKHelpCenterOverviewSpacerTableViewCell.nib │ │ ├── ZDKHelpCenterSearchResultTableViewCell.nib │ │ ├── ZDKHelpCenterSearchResultViewController.nib │ │ ├── ZendeskLogoView.nib │ │ ├── help_center_article_style.css │ │ ├── icoDown.png │ │ ├── icoDown@2x.png │ │ ├── icoDown@3x.png │ │ ├── icoVoteDown.png │ │ ├── icoVoteDown@2x.png │ │ ├── icoVoteDown@3x.png │ │ ├── icoVoteUp.png │ │ ├── icoVoteUp@2x.png │ │ ├── icoVoteUp@3x.png │ │ ├── ico_newticket.png │ │ ├── ico_newticket@2x.png │ │ └── ico_newticket@3x.png │ └── dSYMs │ │ └── SupportSDK.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── DWARF │ │ └── SupportSDK │ │ ├── Relocations │ │ └── aarch64 │ │ │ └── SupportSDK.yml │ │ └── Swift │ │ └── aarch64 │ │ ├── CommonUISDK.swiftinterface │ │ ├── MessagingAPI.swiftinterface │ │ ├── MessagingSDK.swiftinterface │ │ ├── SDKConfigurations.swiftinterface │ │ ├── SupportProvidersSDK.swiftinterface │ │ └── ZendeskCoreSDK.swiftinterface └── ios-arm64_x86_64-simulator │ ├── SupportSDK.framework │ ├── Assets.car │ ├── AwesomeImagePicker.nib │ ├── CameraCell.nib │ │ ├── objects-12.3+.nib │ │ └── runtime.nib │ ├── CreateRequest.nib │ ├── Headers │ │ ├── SupportSDK-Prefix.pch │ │ ├── SupportSDK-Swift.h │ │ ├── SupportSDK.h │ │ ├── ZDKCreateRequestUIDelegate.h │ │ ├── ZDKHelpCenterArticleRatingHandlerProtocol.h │ │ ├── ZDKHelpCenterAttachmentsDataSource.h │ │ ├── ZDKHelpCenterConversationsUIDelegate.h │ │ ├── ZDKHelpCenterDataSource.h │ │ ├── ZDKHelpCenterErrorCodes.h │ │ ├── ZDKHelpCenterUi.h │ │ ├── ZDKLayoutGuideApplicator.h │ │ ├── ZDKSpinnerDelegate.h │ │ ├── ZDKSupportAttachmentCell.h │ │ ├── ZDKToastViewWrapper.h │ │ └── ZDKUIUtil.h │ ├── ImageCell.nib │ ├── Info.plist │ ├── InputFileCell.nib │ │ ├── objects-12.3+.nib │ │ └── runtime.nib │ ├── InputImageCell.nib │ │ ├── objects-12.3+.nib │ │ └── runtime.nib │ ├── Modules │ │ ├── SupportSDK.swiftmodule │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ └── module.modulemap │ ├── PrivateHeaders │ │ ├── ZDKAppearanceApplicator+Private.h │ │ ├── ZDKArticleView+Private.h │ │ ├── ZDKArticleViewController+Private.h │ │ ├── ZDKHelpCenterDataSource_PrivateSharing.h │ │ ├── ZDKHelpCenterOverviewController+Private.h │ │ ├── ZDKHelpCenterSearchResultViewController+Private.h │ │ ├── ZDKLegacyTheme+Private.h │ │ ├── ZDKRequests+Private.h │ │ └── ZDKSupportAttachmentCell+Private.h │ ├── RequestController.nib │ ├── RequestListTableViewCell.nib │ ├── RequestListViewController.nib │ ├── SidebarCell.nib │ │ ├── objects-12.3+.nib │ │ └── runtime.nib │ ├── SupportSDK │ ├── SupportSDKStrings │ │ ├── Info.plist │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── bg.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── el.lproj │ │ │ └── Localizable.strings │ │ ├── en-GB.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fil.lproj │ │ │ └── Localizable.strings │ │ ├── fr-CA.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── id.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ │ └── Localizable.strings │ │ ├── ms.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── th.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ │ └── Localizable.strings │ ├── ZDKHelpCenterArticleRatingView.nib │ ├── ZDKHelpCenterOverviewArticleTableViewCell.nib │ ├── ZDKHelpCenterOverviewController.nib │ ├── ZDKHelpCenterOverviewFooterView.nib │ ├── ZDKHelpCenterOverviewHeaderView.nib │ ├── ZDKHelpCenterOverviewLoadingTableViewCell.nib │ ├── ZDKHelpCenterOverviewSectionTableViewCell.nib │ ├── ZDKHelpCenterOverviewSeeAllTableViewCell.nib │ ├── ZDKHelpCenterOverviewSpacerTableViewCell.nib │ ├── ZDKHelpCenterSearchResultTableViewCell.nib │ ├── ZDKHelpCenterSearchResultViewController.nib │ ├── ZendeskLogoView.nib │ ├── _CodeSignature │ │ └── CodeResources │ ├── help_center_article_style.css │ ├── icoDown.png │ ├── icoDown@2x.png │ ├── icoDown@3x.png │ ├── icoVoteDown.png │ ├── icoVoteDown@2x.png │ ├── icoVoteDown@3x.png │ ├── icoVoteUp.png │ ├── icoVoteUp@2x.png │ ├── icoVoteUp@3x.png │ ├── ico_newticket.png │ ├── ico_newticket@2x.png │ └── ico_newticket@3x.png │ └── dSYMs │ └── SupportSDK.framework.dSYM │ └── Contents │ ├── Info.plist │ └── Resources │ ├── DWARF │ └── SupportSDK │ ├── Relocations │ ├── aarch64 │ │ └── SupportSDK.yml │ └── x86_64 │ │ └── SupportSDK.yml │ └── Swift │ ├── aarch64 │ ├── CommonUISDK.swiftinterface │ ├── MessagingAPI.swiftinterface │ ├── MessagingSDK.swiftinterface │ ├── SDKConfigurations.swiftinterface │ ├── SupportProvidersSDK.swiftinterface │ └── ZendeskCoreSDK.swiftinterface │ └── x86_64 │ ├── CommonUISDK.swiftinterface │ ├── MessagingAPI.swiftinterface │ ├── MessagingSDK.swiftinterface │ ├── SDKConfigurations.swiftinterface │ ├── SupportProvidersSDK.swiftinterface │ └── ZendeskCoreSDK.swiftinterface ├── ZendeskSupportSDK.podspec └── docs ├── SupportSDK ├── 7.0.0 │ ├── css │ │ ├── documentation-topic.3bca6578.css │ │ ├── documentation-topic~topic~tutorials-overview.82acfe22.css │ │ ├── index.12bb178a.css │ │ ├── topic.ee15af52.css │ │ └── tutorials-overview.06e8bcf7.css │ ├── data │ │ └── documentation │ │ │ ├── supportsdk.json │ │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks.json │ │ │ ├── +(_:_:)-8bv54.json │ │ │ ├── action.json │ │ │ ├── actionlistenerfunction.json │ │ │ ├── actionsubscription.json │ │ │ ├── actionsubscription │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── alwaysfilter.json │ │ │ ├── applicationtype.json │ │ │ ├── applicationtype │ │ │ └── topwindow.json │ │ │ ├── articleuiconfiguration.json │ │ │ ├── articleuiconfiguration │ │ │ ├── engines.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── objcengines.json │ │ │ └── showcontactoptions.json │ │ │ ├── asyncaction.json │ │ │ ├── asyncaction │ │ │ └── execute(getstate:dispatch:).json │ │ │ ├── asyncmiddleware.json │ │ │ ├── asyncmiddleware │ │ │ ├── init().json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockasyncaction.json │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:).json │ │ │ └── init(executionblock:).json │ │ │ ├── blockmiddleware.json │ │ │ ├── blockmiddleware │ │ │ ├── init(actionfunction:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockreducer.json │ │ │ ├── blockreducer │ │ │ ├── init(initialstate:reduce:).json │ │ │ ├── init(initialstate:statekey:reduce:).json │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── reducer-implementations.json │ │ │ ├── statekey-1k6vw.json │ │ │ └── statekey-5lc8b.json │ │ │ ├── cgcenterrectinrect(_:_:).json │ │ │ ├── cgmakecenteredrectinrect(_:_:_:).json │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:).json │ │ │ ├── cgrectmakecenteredinscreen(_:_:).json │ │ │ ├── combinedreducer.json │ │ │ ├── combinedreducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── reducer-implementations.json │ │ │ └── statekey.json │ │ │ ├── containerchild.json │ │ │ ├── containerchild │ │ │ └── childdelegate.json │ │ │ ├── containerchildcontroller.json │ │ │ ├── containerchildcontrollerdelegate.json │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── navitem.json │ │ │ └── willdismiss().json │ │ │ ├── containerviewcontroller.json │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations.json │ │ │ ├── initwithcoder:.json │ │ │ ├── initwithnibname:bundle:.json │ │ │ ├── navitem.json │ │ │ ├── viewdidload().json │ │ │ └── willdismiss().json │ │ │ ├── coordinatingviewcontroller.json │ │ │ ├── coordinatingviewcontroller │ │ │ ├── init(coordinator:).json │ │ │ ├── viewdidappear(_:).json │ │ │ ├── viewdiddisappear(_:).json │ │ │ ├── viewdidload().json │ │ │ └── viewwillappear(_:).json │ │ │ ├── coordinator.json │ │ │ ├── coordinator │ │ │ └── start(present:with:).json │ │ │ ├── defaultlogger.json │ │ │ ├── dismissutil.json │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:).json │ │ │ ├── init.json │ │ │ ├── navigationcontroller(_:didpush:).json │ │ │ └── remove(_:from:).json │ │ │ ├── dispatchfunction.json │ │ │ ├── equalsfilter.json │ │ │ ├── filetype.json │ │ │ ├── filetype │ │ │ ├── !=(_:_:).json │ │ │ ├── binary.json │ │ │ ├── equatable-implementations.json │ │ │ ├── excel.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── heic.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── jpg.json │ │ │ ├── keynote.json │ │ │ ├── numbers.json │ │ │ ├── pages.json │ │ │ ├── pdf.json │ │ │ ├── plain.json │ │ │ ├── png.json │ │ │ ├── powerpoint.json │ │ │ ├── powerpointx.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── word.json │ │ │ ├── filterfunction.json │ │ │ ├── getstatefunction.json │ │ │ ├── helpcenterarticlevotinghandler.json │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ ├── currentarticlevote().json │ │ │ └── init(witharticleid:andlocale:).json │ │ │ ├── helpcentercontactusrouter.json │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch().json │ │ │ ├── decidebuttonactionfornavbar().json │ │ │ └── init(withpresentingviewcontroller:configurations:engines:).json │ │ │ ├── helpcentercoordinator.json │ │ │ ├── helpcentercoordinator │ │ │ ├── init(helpcentercontroller:uiconfigurations:).json │ │ │ └── start(present:with:).json │ │ │ ├── helpcenterdelegate.json │ │ │ ├── helpcenterui.json │ │ │ ├── helpcenteruiconfiguration.json │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines.json │ │ │ ├── groupids.json │ │ │ ├── grouptype.json │ │ │ ├── init().json │ │ │ ├── labels.json │ │ │ ├── objcengines.json │ │ │ ├── overviewcontentmodel.json │ │ │ ├── showcontactoptions.json │ │ │ └── showcontactoptionsonemptysearch.json │ │ │ ├── keyedstate.json │ │ │ ├── listenerfunction.json │ │ │ ├── loggermiddleware.json │ │ │ ├── loggermiddleware │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middleware.json │ │ │ ├── middleware │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middlewarefunction.json │ │ │ ├── nextfunction.json │ │ │ ├── reducer.json │ │ │ ├── reducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── statekey-65k0h.json │ │ │ ├── statekey-9741m.json │ │ │ └── statetype.json │ │ │ ├── reducerfunction.json │ │ │ ├── requestattachment.json │ │ │ ├── requestattachment │ │ │ ├── data.json │ │ │ ├── filename.json │ │ │ ├── filetype.json │ │ │ └── init(filename:data:filetype:).json │ │ │ ├── requestcoordinator.json │ │ │ ├── requestcoordinator │ │ │ └── start(present:with:).json │ │ │ ├── requestlistuiconfiguration.json │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation.json │ │ │ ├── init().json │ │ │ └── isequal(_:).json │ │ │ ├── requestui.json │ │ │ ├── requestui │ │ │ ├── buildrequestlist().json │ │ │ ├── buildrequestlist(with:).json │ │ │ ├── buildrequestui().json │ │ │ ├── buildrequestui(requestid:).json │ │ │ ├── buildrequestui(requestid:configurations:).json │ │ │ ├── buildrequestui(with:).json │ │ │ └── init.json │ │ │ ├── requestuiconfiguration.json │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields.json │ │ │ ├── fileattachments.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── subject.json │ │ │ ├── tags.json │ │ │ └── ticketformid.json │ │ │ ├── state.json │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ │ ├── init(dictionary:).json │ │ │ ├── init(dictionaryliteral:).json │ │ │ ├── keys.json │ │ │ ├── subscript(_:).json │ │ │ ├── subscript(forkey:oftype:).json │ │ │ ├── subscript(forkeyoftype:).json │ │ │ ├── value(forkey:).json │ │ │ ├── value(forkey:oftype:).json │ │ │ └── value(forkeyoftype:).json │ │ │ ├── statekey.json │ │ │ ├── stateselector.json │ │ │ ├── store.json │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:).json │ │ │ ├── addlistener(forstatetype:statekey:if:callback:).json │ │ │ ├── addlistener(if:callback:).json │ │ │ ├── addlistener(if:stateselector:callback:).json │ │ │ ├── dispatch(action:).json │ │ │ ├── reset(state:).json │ │ │ ├── reset(state:forkey:).json │ │ │ ├── resetfullstate(_:).json │ │ │ └── state.json │ │ │ ├── suas.json │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:).json │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl.json │ │ │ ├── createstore(reducer:state:middleware:)-4w130.json │ │ │ └── enabledebuglogging.json │ │ │ ├── suasdebuglogger.json │ │ │ ├── suasdebuglogger │ │ │ ├── enabled.json │ │ │ └── init.json │ │ │ ├── suasdynamicequatable.json │ │ │ ├── suasdynamicequatable │ │ │ ├── isequal(to:)-19mke.json │ │ │ └── isequal(to:)-28xku.json │ │ │ ├── subscription.json │ │ │ ├── subscription │ │ │ ├── informwithcurrentstate().json │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── supportengine.json │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configs.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── supportsdk_h.json │ │ │ ├── supportui.json │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride.json │ │ │ ├── initialize(withzendesk:).json │ │ │ ├── instance.json │ │ │ └── refreshrequest(requestid:).json │ │ │ ├── system_version_greater_than_seven.json │ │ │ ├── theme.json │ │ │ ├── theme │ │ │ ├── currenttheme.json │ │ │ ├── init.json │ │ │ └── primarycolor.json │ │ │ ├── window.json │ │ │ ├── window │ │ │ ├── addsubview(_:).json │ │ │ ├── bounds.json │ │ │ ├── layer.json │ │ │ └── windowlevel.json │ │ │ ├── zd_is_ipad.json │ │ │ ├── zd_is_iphone.json │ │ │ ├── zdkconstants.json │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast().json │ │ │ └── init.json │ │ │ ├── zdkcontactusvisibility.json │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:).json │ │ │ ├── articlelistandarticle.json │ │ │ ├── articlelistonly.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── off.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkcreaterequestuidelegate.json │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage().json │ │ │ ├── createrequestbarbuttonlocalizedlabel().json │ │ │ └── navbarcreaterequestuitype().json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ └── currentarticlevote().json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol.json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ └── updatebuttonstatesforbutton(atindexselected:).json │ │ │ ├── zdkhelpcenterattachmentsdatasource.json │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ └── init(articleid:).json │ │ │ ├── zdkhelpcentercellconfigureblock.json │ │ │ ├── zdkhelpcenterconversationsuidelegate.json │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active().json │ │ │ ├── conversationsbarbuttonimage().json │ │ │ ├── conversationsbarbuttonlocalizedlabel().json │ │ │ └── navbarconversationsuitype().json │ │ │ ├── zdkhelpcenterdatasource.json │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource().json │ │ │ ├── hasitems.json │ │ │ ├── item(at:).json │ │ │ ├── items.json │ │ │ ├── provider.json │ │ │ └── reloaddata().json │ │ │ ├── zdkhelpcenterdelegate.json │ │ │ ├── zdkhelpcenterdelegate │ │ │ └── uidelegate.json │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription.json │ │ │ ├── zdkhelpcentererror.json │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:).json │ │ │ ├── emptyhelpcenter.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── invalidcategoryids.json │ │ │ ├── invalidsectionids.json │ │ │ ├── noarticlesforlabels.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkhelpcentererrordomain.json │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription.json │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription.json │ │ │ ├── zdkhelpcenternosectionslocaliseddescription.json │ │ │ ├── zdkhelpcenterui.json │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:).json │ │ │ ├── build(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(_:).json │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenteroverview().json │ │ │ ├── buildhelpcenteroverview(withconfigs:).json │ │ │ ├── buildhelpcenteroverviewui().json │ │ │ └── buildhelpcenteroverviewui(withconfigs:).json │ │ │ ├── zdklayoutguideapplicator.json │ │ │ ├── zdklayoutguideapplicator │ │ │ └── init(viewcontroller:toplevelview:layoutposition:).json │ │ │ ├── zdklayoutguideapplicatorposition.json │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:).json │ │ │ ├── bottom.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── top.json │ │ │ ├── zdknavbarcreaterequestuitype.json │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── image.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── localizedlabel.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkspinnerdelegate.json │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center.json │ │ │ ├── frame.json │ │ │ ├── ishidden.json │ │ │ ├── startanimating().json │ │ │ └── stopanimating().json │ │ │ ├── zdksupportattachmentcell.json │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier().json │ │ │ ├── filesize.json │ │ │ └── title.json │ │ │ ├── zdktoastviewwrapper.json │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss().json │ │ │ ├── hidetoastview(_:).json │ │ │ ├── isvisible.json │ │ │ ├── showerror(in:withmessage:).json │ │ │ ├── showerror(in:withmessage:buttontitle:action:).json │ │ │ └── showerror(in:withmessage:duration:).json │ │ │ ├── zdkuiislandscape().json │ │ │ ├── zdkuiorigininwindow(_:).json │ │ │ ├── zdkuiscreenframe().json │ │ │ ├── zdkuiutil.json │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96.json │ │ │ ├── appearancevalue(for:selector:)-4i9sm.json │ │ │ ├── appearancevalue(for:whencontainedin:selector:).json │ │ │ ├── buildbutton(withframe:andtitle:).json │ │ │ ├── currentinterfaceorientation().json │ │ │ ├── fixorientation(of:).json │ │ │ ├── islandscape().json │ │ │ ├── isnewerversion(_:).json │ │ │ ├── isolderversion(_:).json │ │ │ ├── ispad().json │ │ │ ├── issameversion(_:).json │ │ │ ├── scaledheight(for:constrainedbywidth:).json │ │ │ ├── separatorheightforscreenscale().json │ │ │ └── shouldenableattachments(_:).json │ │ │ ├── zdlog.json │ │ │ └── zduispinner.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks │ │ │ └── index.html │ │ │ ├── +(_:_:)-8bv54 │ │ │ └── index.html │ │ │ ├── action │ │ │ └── index.html │ │ │ ├── actionlistenerfunction │ │ │ └── index.html │ │ │ ├── actionsubscription │ │ │ ├── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── alwaysfilter │ │ │ └── index.html │ │ │ ├── applicationtype │ │ │ ├── index.html │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── articleuiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ └── showcontactoptions │ │ │ │ └── index.html │ │ │ ├── asyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── asyncmiddleware │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(executionblock:) │ │ │ │ └── index.html │ │ │ ├── blockmiddleware │ │ │ ├── index.html │ │ │ ├── init(actionfunction:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockreducer │ │ │ ├── index.html │ │ │ ├── init(initialstate:reduce:) │ │ │ │ └── index.html │ │ │ ├── init(initialstate:statekey:reduce:) │ │ │ │ └── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── reducer-implementations │ │ │ │ └── index.html │ │ │ ├── statekey-1k6vw │ │ │ │ └── index.html │ │ │ └── statekey-5lc8b │ │ │ │ └── index.html │ │ │ ├── cgcenterrectinrect(_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectinrect(_:_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:) │ │ │ └── index.html │ │ │ ├── cgrectmakecenteredinscreen(_:_:) │ │ │ └── index.html │ │ │ ├── combinedreducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── reducer-implementations │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── containerchild │ │ │ ├── childdelegate │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── containerchildcontroller │ │ │ └── index.html │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initwithcoder: │ │ │ │ └── index.html │ │ │ ├── initwithnibname:bundle: │ │ │ │ └── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── coordinatingviewcontroller │ │ │ ├── index.html │ │ │ ├── init(coordinator:) │ │ │ │ └── index.html │ │ │ ├── viewdidappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdiddisappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── viewwillappear(_:) │ │ │ │ └── index.html │ │ │ ├── coordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── defaultlogger │ │ │ └── index.html │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init │ │ │ │ └── index.html │ │ │ ├── navigationcontroller(_:didpush:) │ │ │ │ └── index.html │ │ │ └── remove(_:from:) │ │ │ │ └── index.html │ │ │ ├── dispatchfunction │ │ │ └── index.html │ │ │ ├── equalsfilter │ │ │ └── index.html │ │ │ ├── filetype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── binary │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── excel │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── heic │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── jpg │ │ │ │ └── index.html │ │ │ ├── keynote │ │ │ │ └── index.html │ │ │ ├── numbers │ │ │ │ └── index.html │ │ │ ├── pages │ │ │ │ └── index.html │ │ │ ├── pdf │ │ │ │ └── index.html │ │ │ ├── plain │ │ │ │ └── index.html │ │ │ ├── png │ │ │ │ └── index.html │ │ │ ├── powerpoint │ │ │ │ └── index.html │ │ │ ├── powerpointx │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── word │ │ │ │ └── index.html │ │ │ ├── filterfunction │ │ │ └── index.html │ │ │ ├── getstatefunction │ │ │ └── index.html │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(witharticleid:andlocale:) │ │ │ │ └── index.html │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch() │ │ │ │ └── index.html │ │ │ ├── decidebuttonactionfornavbar() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(withpresentingviewcontroller:configurations:engines:) │ │ │ │ └── index.html │ │ │ ├── helpcentercoordinator │ │ │ ├── index.html │ │ │ ├── init(helpcentercontroller:uiconfigurations:) │ │ │ │ └── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── helpcenterdelegate │ │ │ └── index.html │ │ │ ├── helpcenterui │ │ │ └── index.html │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── groupids │ │ │ │ └── index.html │ │ │ ├── grouptype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── labels │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ ├── overviewcontentmodel │ │ │ │ └── index.html │ │ │ ├── showcontactoptions │ │ │ │ └── index.html │ │ │ └── showcontactoptionsonemptysearch │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── keyedstate │ │ │ └── index.html │ │ │ ├── listenerfunction │ │ │ └── index.html │ │ │ ├── loggermiddleware │ │ │ ├── index.html │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middleware │ │ │ ├── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middlewarefunction │ │ │ └── index.html │ │ │ ├── nextfunction │ │ │ └── index.html │ │ │ ├── reducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── statekey-65k0h │ │ │ │ └── index.html │ │ │ ├── statekey-9741m │ │ │ │ └── index.html │ │ │ └── statetype │ │ │ │ └── index.html │ │ │ ├── reducerfunction │ │ │ └── index.html │ │ │ ├── requestattachment │ │ │ ├── data │ │ │ │ └── index.html │ │ │ ├── filename │ │ │ │ └── index.html │ │ │ ├── filetype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(filename:data:filetype:) │ │ │ │ └── index.html │ │ │ ├── requestcoordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── requestui │ │ │ ├── buildrequestlist() │ │ │ │ └── index.html │ │ │ ├── buildrequestlist(with:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui() │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:configurations:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(with:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields │ │ │ │ └── index.html │ │ │ ├── fileattachments │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── subject │ │ │ │ └── index.html │ │ │ ├── tags │ │ │ │ └── index.html │ │ │ └── ticketformid │ │ │ │ └── index.html │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(dictionary:) │ │ │ │ └── index.html │ │ │ ├── init(dictionaryliteral:) │ │ │ │ └── index.html │ │ │ ├── keys │ │ │ │ └── index.html │ │ │ ├── subscript(_:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkey:oftype:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:oftype:) │ │ │ │ └── index.html │ │ │ └── value(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── statekey │ │ │ └── index.html │ │ │ ├── stateselector │ │ │ └── index.html │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:) │ │ │ │ └── index.html │ │ │ ├── addlistener(forstatetype:statekey:if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:stateselector:callback:) │ │ │ │ └── index.html │ │ │ ├── dispatch(action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── reset(state:) │ │ │ │ └── index.html │ │ │ ├── reset(state:forkey:) │ │ │ │ └── index.html │ │ │ ├── resetfullstate(_:) │ │ │ │ └── index.html │ │ │ └── state │ │ │ │ └── index.html │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:) │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-4w130 │ │ │ │ └── index.html │ │ │ ├── enabledebuglogging │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdebuglogger │ │ │ ├── enabled │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── suasdynamicequatable │ │ │ ├── index.html │ │ │ ├── isequal(to:)-19mke │ │ │ │ └── index.html │ │ │ └── isequal(to:)-28xku │ │ │ │ └── index.html │ │ │ ├── subscription │ │ │ ├── index.html │ │ │ ├── informwithcurrentstate() │ │ │ │ └── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configs │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── notifyobservers(_:) │ │ │ │ └── index.html │ │ │ ├── observable-implementations │ │ │ │ └── index.html │ │ │ ├── observeupdates(_:) │ │ │ │ └── index.html │ │ │ ├── onevent(_:) │ │ │ │ └── index.html │ │ │ ├── onupdate │ │ │ │ └── index.html │ │ │ ├── start(messagingapi:) │ │ │ │ └── index.html │ │ │ ├── stop() │ │ │ │ └── index.html │ │ │ └── transferoptiondescription │ │ │ │ └── index.html │ │ │ ├── supportsdk_h │ │ │ └── index.html │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initialize(withzendesk:) │ │ │ │ └── index.html │ │ │ ├── instance │ │ │ │ └── index.html │ │ │ └── refreshrequest(requestid:) │ │ │ │ └── index.html │ │ │ ├── system_version_greater_than_seven │ │ │ └── index.html │ │ │ ├── theme │ │ │ ├── currenttheme │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init │ │ │ │ └── index.html │ │ │ └── primarycolor │ │ │ │ └── index.html │ │ │ ├── window │ │ │ ├── addsubview(_:) │ │ │ │ └── index.html │ │ │ ├── bounds │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── layer │ │ │ │ └── index.html │ │ │ └── windowlevel │ │ │ │ └── index.html │ │ │ ├── zd_is_ipad │ │ │ └── index.html │ │ │ ├── zd_is_iphone │ │ │ └── index.html │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── articlelistandarticle │ │ │ │ └── index.html │ │ │ ├── articlelistonly │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── off │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── createrequestbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarcreaterequestuitype() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ ├── index.html │ │ │ └── updatebuttonstatesforbutton(atindexselected:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ ├── index.html │ │ │ └── init(articleid:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentercellconfigureblock │ │ │ └── index.html │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarconversationsuitype() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource() │ │ │ │ └── index.html │ │ │ ├── hasitems │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── item(at:) │ │ │ │ └── index.html │ │ │ ├── items │ │ │ │ └── index.html │ │ │ ├── provider │ │ │ │ └── index.html │ │ │ └── reloaddata() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdelegate │ │ │ ├── index.html │ │ │ └── uidelegate │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emptyhelpcenter │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── invalidcategoryids │ │ │ │ └── index.html │ │ │ ├── invalidsectionids │ │ │ │ └── index.html │ │ │ ├── noarticlesforlabels │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentererrordomain │ │ │ └── index.html │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternosectionslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:) │ │ │ │ └── index.html │ │ │ ├── build(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview(withconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui(withconfigs:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── index.html │ │ │ └── init(viewcontroller:toplevelview:layoutposition:) │ │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── bottom │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── top │ │ │ │ └── index.html │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── image │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── localizedlabel │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center │ │ │ │ └── index.html │ │ │ ├── frame │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── ishidden │ │ │ │ └── index.html │ │ │ ├── startanimating() │ │ │ │ └── index.html │ │ │ └── stopanimating() │ │ │ │ └── index.html │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier() │ │ │ │ └── index.html │ │ │ ├── filesize │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── title │ │ │ │ └── index.html │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss() │ │ │ │ └── index.html │ │ │ ├── hidetoastview(_:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isvisible │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:) │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:buttontitle:action:) │ │ │ │ └── index.html │ │ │ └── showerror(in:withmessage:duration:) │ │ │ │ └── index.html │ │ │ ├── zdkuiislandscape() │ │ │ └── index.html │ │ │ ├── zdkuiorigininwindow(_:) │ │ │ └── index.html │ │ │ ├── zdkuiscreenframe() │ │ │ └── index.html │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96 │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:selector:)-4i9sm │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:whencontainedin:selector:) │ │ │ │ └── index.html │ │ │ ├── buildbutton(withframe:andtitle:) │ │ │ │ └── index.html │ │ │ ├── currentinterfaceorientation() │ │ │ │ └── index.html │ │ │ ├── fixorientation(of:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── islandscape() │ │ │ │ └── index.html │ │ │ ├── isnewerversion(_:) │ │ │ │ └── index.html │ │ │ ├── isolderversion(_:) │ │ │ │ └── index.html │ │ │ ├── ispad() │ │ │ │ └── index.html │ │ │ ├── issameversion(_:) │ │ │ │ └── index.html │ │ │ ├── scaledheight(for:constrainedbywidth:) │ │ │ │ └── index.html │ │ │ ├── separatorheightforscreenscale() │ │ │ │ └── index.html │ │ │ └── shouldenableattachments(_:) │ │ │ │ └── index.html │ │ │ ├── zdlog │ │ │ └── index.html │ │ │ └── zduispinner │ │ │ └── index.html │ ├── favicon.ico │ ├── favicon.svg │ ├── img │ │ ├── added-icon.d6f7e47d.svg │ │ ├── deprecated-icon.015b4f17.svg │ │ ├── modified-icon.f496e73d.svg │ │ └── no-image@2x.df2a0a50.png │ ├── index.html │ ├── index │ │ ├── availability.index │ │ ├── data.mdb │ │ ├── index.json │ │ └── navigator.index │ ├── js │ │ ├── chunk-2d0d3105.cd72cc8e.js │ │ ├── chunk-vendors.b24b7aaa.js │ │ ├── documentation-topic.f62098b6.js │ │ ├── documentation-topic~topic~tutorials-overview.8e36e44f.js │ │ ├── highlight-js-bash.1b52852f.js │ │ ├── highlight-js-c.d1db3f17.js │ │ ├── highlight-js-cpp.eaddddbe.js │ │ ├── highlight-js-css.75eab1fe.js │ │ ├── highlight-js-custom-markdown.7cffc4b3.js │ │ ├── highlight-js-custom-swift.5cda5c20.js │ │ ├── highlight-js-diff.62d66733.js │ │ ├── highlight-js-http.163e45b6.js │ │ ├── highlight-js-java.8326d9d8.js │ │ ├── highlight-js-javascript.acb8a8eb.js │ │ ├── highlight-js-json.471128d2.js │ │ ├── highlight-js-llvm.6100b125.js │ │ ├── highlight-js-markdown.90077643.js │ │ ├── highlight-js-objectivec.bcdf5156.js │ │ ├── highlight-js-perl.757d7b6f.js │ │ ├── highlight-js-php.cc8d6c27.js │ │ ├── highlight-js-python.c214ed92.js │ │ ├── highlight-js-ruby.f889d392.js │ │ ├── highlight-js-scss.62ee18da.js │ │ ├── highlight-js-shell.dd7f411f.js │ │ ├── highlight-js-swift.84f3e88c.js │ │ ├── highlight-js-xml.9c3688c7.js │ │ ├── index.58e30ec4.js │ │ ├── topic.6a1c7b7f.js │ │ └── tutorials-overview.c8178b83.js │ ├── metadata.json │ └── theme-settings.json ├── 8.0.0 │ ├── css │ │ ├── documentation-topic.3bca6578.css │ │ ├── documentation-topic~topic~tutorials-overview.82acfe22.css │ │ ├── index.12bb178a.css │ │ ├── topic.ee15af52.css │ │ └── tutorials-overview.06e8bcf7.css │ ├── data │ │ └── documentation │ │ │ ├── supportsdk.json │ │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks.json │ │ │ ├── +(_:_:)-8bv54.json │ │ │ ├── action.json │ │ │ ├── actionlistenerfunction.json │ │ │ ├── actionsubscription.json │ │ │ ├── actionsubscription │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── alwaysfilter.json │ │ │ ├── applicationtype.json │ │ │ ├── applicationtype │ │ │ └── topwindow.json │ │ │ ├── articleuiconfiguration.json │ │ │ ├── articleuiconfiguration │ │ │ ├── engines.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── objcengines.json │ │ │ └── showcontactoptions.json │ │ │ ├── asyncaction.json │ │ │ ├── asyncaction │ │ │ └── execute(getstate:dispatch:).json │ │ │ ├── asyncmiddleware.json │ │ │ ├── asyncmiddleware │ │ │ ├── init().json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockasyncaction.json │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:).json │ │ │ └── init(executionblock:).json │ │ │ ├── blockmiddleware.json │ │ │ ├── blockmiddleware │ │ │ ├── init(actionfunction:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockreducer.json │ │ │ ├── blockreducer │ │ │ ├── init(initialstate:reduce:).json │ │ │ ├── init(initialstate:statekey:reduce:).json │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── reducer-implementations.json │ │ │ ├── statekey-1k6vw.json │ │ │ └── statekey-5lc8b.json │ │ │ ├── cgcenterrectinrect(_:_:).json │ │ │ ├── cgmakecenteredrectinrect(_:_:_:).json │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:).json │ │ │ ├── cgrectmakecenteredinscreen(_:_:).json │ │ │ ├── combinedreducer.json │ │ │ ├── combinedreducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── reducer-implementations.json │ │ │ └── statekey.json │ │ │ ├── containerchild.json │ │ │ ├── containerchild │ │ │ └── childdelegate.json │ │ │ ├── containerchildcontroller.json │ │ │ ├── containerchildcontrollerdelegate.json │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── navitem.json │ │ │ └── willdismiss().json │ │ │ ├── containerviewcontroller.json │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations.json │ │ │ ├── initwithcoder:.json │ │ │ ├── initwithnibname:bundle:.json │ │ │ ├── navitem.json │ │ │ ├── viewdidload().json │ │ │ └── willdismiss().json │ │ │ ├── coordinatingviewcontroller.json │ │ │ ├── coordinatingviewcontroller │ │ │ ├── init(coordinator:).json │ │ │ ├── viewdidappear(_:).json │ │ │ ├── viewdiddisappear(_:).json │ │ │ ├── viewdidload().json │ │ │ └── viewwillappear(_:).json │ │ │ ├── coordinator.json │ │ │ ├── coordinator │ │ │ └── start(present:with:).json │ │ │ ├── defaultlogger.json │ │ │ ├── dismissutil.json │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:).json │ │ │ ├── init.json │ │ │ ├── navigationcontroller(_:didpush:).json │ │ │ └── remove(_:from:).json │ │ │ ├── dispatchfunction.json │ │ │ ├── equalsfilter.json │ │ │ ├── filetype.json │ │ │ ├── filetype │ │ │ ├── !=(_:_:).json │ │ │ ├── binary.json │ │ │ ├── equatable-implementations.json │ │ │ ├── excel.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── heic.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── jpg.json │ │ │ ├── keynote.json │ │ │ ├── numbers.json │ │ │ ├── pages.json │ │ │ ├── pdf.json │ │ │ ├── plain.json │ │ │ ├── png.json │ │ │ ├── powerpoint.json │ │ │ ├── powerpointx.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── word.json │ │ │ ├── filterfunction.json │ │ │ ├── getstatefunction.json │ │ │ ├── helpcenterarticlevotinghandler.json │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ ├── currentarticlevote().json │ │ │ └── init(witharticleid:andlocale:).json │ │ │ ├── helpcentercontactusrouter.json │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch().json │ │ │ ├── decidebuttonactionfornavbar().json │ │ │ └── init(withpresentingviewcontroller:configurations:engines:).json │ │ │ ├── helpcentercoordinator.json │ │ │ ├── helpcentercoordinator │ │ │ ├── init(helpcentercontroller:uiconfigurations:).json │ │ │ └── start(present:with:).json │ │ │ ├── helpcenterdelegate.json │ │ │ ├── helpcenterui.json │ │ │ ├── helpcenteruiconfiguration.json │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines.json │ │ │ ├── groupids.json │ │ │ ├── grouptype.json │ │ │ ├── init().json │ │ │ ├── labels.json │ │ │ ├── objcengines.json │ │ │ ├── overviewcontentmodel.json │ │ │ ├── showcontactoptions.json │ │ │ └── showcontactoptionsonemptysearch.json │ │ │ ├── keyedstate.json │ │ │ ├── listenerfunction.json │ │ │ ├── loggermiddleware.json │ │ │ ├── loggermiddleware │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middleware.json │ │ │ ├── middleware │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middlewarefunction.json │ │ │ ├── nextfunction.json │ │ │ ├── reducer.json │ │ │ ├── reducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── statekey-65k0h.json │ │ │ ├── statekey-9741m.json │ │ │ └── statetype.json │ │ │ ├── reducerfunction.json │ │ │ ├── requestattachment.json │ │ │ ├── requestattachment │ │ │ ├── data.json │ │ │ ├── filename.json │ │ │ ├── filetype.json │ │ │ └── init(filename:data:filetype:).json │ │ │ ├── requestcoordinator.json │ │ │ ├── requestcoordinator │ │ │ └── start(present:with:).json │ │ │ ├── requestlistuiconfiguration.json │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation.json │ │ │ ├── init().json │ │ │ └── isequal(_:).json │ │ │ ├── requestui.json │ │ │ ├── requestui │ │ │ ├── buildrequestlist().json │ │ │ ├── buildrequestlist(with:).json │ │ │ ├── buildrequestui().json │ │ │ ├── buildrequestui(requestid:).json │ │ │ ├── buildrequestui(requestid:configurations:).json │ │ │ ├── buildrequestui(with:).json │ │ │ └── init.json │ │ │ ├── requestuiconfiguration.json │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields.json │ │ │ ├── fileattachments.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── subject.json │ │ │ ├── tags.json │ │ │ └── ticketformid.json │ │ │ ├── state.json │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ │ ├── init(dictionary:).json │ │ │ ├── init(dictionaryliteral:).json │ │ │ ├── keys.json │ │ │ ├── subscript(_:).json │ │ │ ├── subscript(forkey:oftype:).json │ │ │ ├── subscript(forkeyoftype:).json │ │ │ ├── value(forkey:).json │ │ │ ├── value(forkey:oftype:).json │ │ │ └── value(forkeyoftype:).json │ │ │ ├── statekey.json │ │ │ ├── stateselector.json │ │ │ ├── store.json │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:).json │ │ │ ├── addlistener(forstatetype:statekey:if:callback:).json │ │ │ ├── addlistener(if:callback:).json │ │ │ ├── addlistener(if:stateselector:callback:).json │ │ │ ├── dispatch(action:).json │ │ │ ├── reset(state:).json │ │ │ ├── reset(state:forkey:).json │ │ │ ├── resetfullstate(_:).json │ │ │ └── state.json │ │ │ ├── suas.json │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:).json │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl.json │ │ │ ├── createstore(reducer:state:middleware:)-4w130.json │ │ │ └── enabledebuglogging.json │ │ │ ├── suasdebuglogger.json │ │ │ ├── suasdebuglogger │ │ │ ├── enabled.json │ │ │ └── init.json │ │ │ ├── suasdynamicequatable.json │ │ │ ├── suasdynamicequatable │ │ │ ├── isequal(to:)-19mke.json │ │ │ └── isequal(to:)-28xku.json │ │ │ ├── subscription.json │ │ │ ├── subscription │ │ │ ├── informwithcurrentstate().json │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── supportengine.json │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configs.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── supportsdk_h.json │ │ │ ├── supportui.json │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride.json │ │ │ ├── initialize(withzendesk:).json │ │ │ ├── instance.json │ │ │ └── refreshrequest(requestid:).json │ │ │ ├── system_version_greater_than_seven.json │ │ │ ├── theme.json │ │ │ ├── theme │ │ │ ├── currenttheme.json │ │ │ ├── init.json │ │ │ └── primarycolor.json │ │ │ ├── window.json │ │ │ ├── window │ │ │ ├── addsubview(_:).json │ │ │ ├── bounds.json │ │ │ ├── layer.json │ │ │ └── windowlevel.json │ │ │ ├── zd_is_ipad.json │ │ │ ├── zd_is_iphone.json │ │ │ ├── zdkconstants.json │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast().json │ │ │ └── init.json │ │ │ ├── zdkcontactusvisibility.json │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:).json │ │ │ ├── articlelistandarticle.json │ │ │ ├── articlelistonly.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── off.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkcreaterequestuidelegate.json │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage().json │ │ │ ├── createrequestbarbuttonlocalizedlabel().json │ │ │ └── navbarcreaterequestuitype().json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ └── currentarticlevote().json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol.json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ └── updatebuttonstatesforbutton(atindexselected:).json │ │ │ ├── zdkhelpcenterattachmentsdatasource.json │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ └── init(articleid:).json │ │ │ ├── zdkhelpcentercellconfigureblock.json │ │ │ ├── zdkhelpcenterconversationsuidelegate.json │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active().json │ │ │ ├── conversationsbarbuttonimage().json │ │ │ ├── conversationsbarbuttonlocalizedlabel().json │ │ │ └── navbarconversationsuitype().json │ │ │ ├── zdkhelpcenterdatasource.json │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource().json │ │ │ ├── hasitems.json │ │ │ ├── item(at:).json │ │ │ ├── items.json │ │ │ ├── provider.json │ │ │ └── reloaddata().json │ │ │ ├── zdkhelpcenterdelegate.json │ │ │ ├── zdkhelpcenterdelegate │ │ │ └── uidelegate.json │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription.json │ │ │ ├── zdkhelpcentererror.json │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:).json │ │ │ ├── emptyhelpcenter.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── invalidcategoryids.json │ │ │ ├── invalidsectionids.json │ │ │ ├── noarticlesforlabels.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkhelpcentererrordomain.json │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription.json │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription.json │ │ │ ├── zdkhelpcenternosectionslocaliseddescription.json │ │ │ ├── zdkhelpcenterui.json │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:).json │ │ │ ├── build(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(_:).json │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenteroverview().json │ │ │ ├── buildhelpcenteroverview(withconfigs:).json │ │ │ ├── buildhelpcenteroverviewui().json │ │ │ └── buildhelpcenteroverviewui(withconfigs:).json │ │ │ ├── zdklayoutguideapplicator.json │ │ │ ├── zdklayoutguideapplicator │ │ │ └── init(viewcontroller:toplevelview:layoutposition:).json │ │ │ ├── zdklayoutguideapplicatorposition.json │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:).json │ │ │ ├── bottom.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── top.json │ │ │ ├── zdknavbarcreaterequestuitype.json │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── image.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── localizedlabel.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkspinnerdelegate.json │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center.json │ │ │ ├── frame.json │ │ │ ├── ishidden.json │ │ │ ├── startanimating().json │ │ │ └── stopanimating().json │ │ │ ├── zdksupportattachmentcell.json │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier().json │ │ │ ├── filesize.json │ │ │ └── title.json │ │ │ ├── zdktoastviewwrapper.json │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss().json │ │ │ ├── hidetoastview(_:).json │ │ │ ├── isvisible.json │ │ │ ├── showerror(in:withmessage:).json │ │ │ ├── showerror(in:withmessage:buttontitle:action:).json │ │ │ └── showerror(in:withmessage:duration:).json │ │ │ ├── zdkuiislandscape().json │ │ │ ├── zdkuiorigininwindow(_:).json │ │ │ ├── zdkuiscreenframe().json │ │ │ ├── zdkuiutil.json │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96.json │ │ │ ├── appearancevalue(for:selector:)-4i9sm.json │ │ │ ├── appearancevalue(for:whencontainedin:selector:).json │ │ │ ├── buildbutton(withframe:andtitle:).json │ │ │ ├── currentinterfaceorientation().json │ │ │ ├── fixorientation(of:).json │ │ │ ├── islandscape().json │ │ │ ├── isnewerversion(_:).json │ │ │ ├── isolderversion(_:).json │ │ │ ├── ispad().json │ │ │ ├── issameversion(_:).json │ │ │ ├── scaledheight(for:constrainedbywidth:).json │ │ │ ├── separatorheightforscreenscale().json │ │ │ └── shouldenableattachments(_:).json │ │ │ ├── zdlog.json │ │ │ └── zduispinner.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks │ │ │ └── index.html │ │ │ ├── +(_:_:)-8bv54 │ │ │ └── index.html │ │ │ ├── action │ │ │ └── index.html │ │ │ ├── actionlistenerfunction │ │ │ └── index.html │ │ │ ├── actionsubscription │ │ │ ├── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── alwaysfilter │ │ │ └── index.html │ │ │ ├── applicationtype │ │ │ ├── index.html │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── articleuiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ └── showcontactoptions │ │ │ │ └── index.html │ │ │ ├── asyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── asyncmiddleware │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(executionblock:) │ │ │ │ └── index.html │ │ │ ├── blockmiddleware │ │ │ ├── index.html │ │ │ ├── init(actionfunction:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockreducer │ │ │ ├── index.html │ │ │ ├── init(initialstate:reduce:) │ │ │ │ └── index.html │ │ │ ├── init(initialstate:statekey:reduce:) │ │ │ │ └── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── reducer-implementations │ │ │ │ └── index.html │ │ │ ├── statekey-1k6vw │ │ │ │ └── index.html │ │ │ └── statekey-5lc8b │ │ │ │ └── index.html │ │ │ ├── cgcenterrectinrect(_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectinrect(_:_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:) │ │ │ └── index.html │ │ │ ├── cgrectmakecenteredinscreen(_:_:) │ │ │ └── index.html │ │ │ ├── combinedreducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── reducer-implementations │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── containerchild │ │ │ ├── childdelegate │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── containerchildcontroller │ │ │ └── index.html │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initwithcoder: │ │ │ │ └── index.html │ │ │ ├── initwithnibname:bundle: │ │ │ │ └── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── coordinatingviewcontroller │ │ │ ├── index.html │ │ │ ├── init(coordinator:) │ │ │ │ └── index.html │ │ │ ├── viewdidappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdiddisappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── viewwillappear(_:) │ │ │ │ └── index.html │ │ │ ├── coordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── defaultlogger │ │ │ └── index.html │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init │ │ │ │ └── index.html │ │ │ ├── navigationcontroller(_:didpush:) │ │ │ │ └── index.html │ │ │ └── remove(_:from:) │ │ │ │ └── index.html │ │ │ ├── dispatchfunction │ │ │ └── index.html │ │ │ ├── equalsfilter │ │ │ └── index.html │ │ │ ├── filetype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── binary │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── excel │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── heic │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── jpg │ │ │ │ └── index.html │ │ │ ├── keynote │ │ │ │ └── index.html │ │ │ ├── numbers │ │ │ │ └── index.html │ │ │ ├── pages │ │ │ │ └── index.html │ │ │ ├── pdf │ │ │ │ └── index.html │ │ │ ├── plain │ │ │ │ └── index.html │ │ │ ├── png │ │ │ │ └── index.html │ │ │ ├── powerpoint │ │ │ │ └── index.html │ │ │ ├── powerpointx │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── word │ │ │ │ └── index.html │ │ │ ├── filterfunction │ │ │ └── index.html │ │ │ ├── getstatefunction │ │ │ └── index.html │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(witharticleid:andlocale:) │ │ │ │ └── index.html │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch() │ │ │ │ └── index.html │ │ │ ├── decidebuttonactionfornavbar() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(withpresentingviewcontroller:configurations:engines:) │ │ │ │ └── index.html │ │ │ ├── helpcentercoordinator │ │ │ ├── index.html │ │ │ ├── init(helpcentercontroller:uiconfigurations:) │ │ │ │ └── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── helpcenterdelegate │ │ │ └── index.html │ │ │ ├── helpcenterui │ │ │ └── index.html │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── groupids │ │ │ │ └── index.html │ │ │ ├── grouptype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── labels │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ ├── overviewcontentmodel │ │ │ │ └── index.html │ │ │ ├── showcontactoptions │ │ │ │ └── index.html │ │ │ └── showcontactoptionsonemptysearch │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── keyedstate │ │ │ └── index.html │ │ │ ├── listenerfunction │ │ │ └── index.html │ │ │ ├── loggermiddleware │ │ │ ├── index.html │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middleware │ │ │ ├── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middlewarefunction │ │ │ └── index.html │ │ │ ├── nextfunction │ │ │ └── index.html │ │ │ ├── reducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── statekey-65k0h │ │ │ │ └── index.html │ │ │ ├── statekey-9741m │ │ │ │ └── index.html │ │ │ └── statetype │ │ │ │ └── index.html │ │ │ ├── reducerfunction │ │ │ └── index.html │ │ │ ├── requestattachment │ │ │ ├── data │ │ │ │ └── index.html │ │ │ ├── filename │ │ │ │ └── index.html │ │ │ ├── filetype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(filename:data:filetype:) │ │ │ │ └── index.html │ │ │ ├── requestcoordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── requestui │ │ │ ├── buildrequestlist() │ │ │ │ └── index.html │ │ │ ├── buildrequestlist(with:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui() │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:configurations:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(with:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields │ │ │ │ └── index.html │ │ │ ├── fileattachments │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── subject │ │ │ │ └── index.html │ │ │ ├── tags │ │ │ │ └── index.html │ │ │ └── ticketformid │ │ │ │ └── index.html │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(dictionary:) │ │ │ │ └── index.html │ │ │ ├── init(dictionaryliteral:) │ │ │ │ └── index.html │ │ │ ├── keys │ │ │ │ └── index.html │ │ │ ├── subscript(_:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkey:oftype:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:oftype:) │ │ │ │ └── index.html │ │ │ └── value(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── statekey │ │ │ └── index.html │ │ │ ├── stateselector │ │ │ └── index.html │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:) │ │ │ │ └── index.html │ │ │ ├── addlistener(forstatetype:statekey:if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:stateselector:callback:) │ │ │ │ └── index.html │ │ │ ├── dispatch(action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── reset(state:) │ │ │ │ └── index.html │ │ │ ├── reset(state:forkey:) │ │ │ │ └── index.html │ │ │ ├── resetfullstate(_:) │ │ │ │ └── index.html │ │ │ └── state │ │ │ │ └── index.html │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:) │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-4w130 │ │ │ │ └── index.html │ │ │ ├── enabledebuglogging │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdebuglogger │ │ │ ├── enabled │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── suasdynamicequatable │ │ │ ├── index.html │ │ │ ├── isequal(to:)-19mke │ │ │ │ └── index.html │ │ │ └── isequal(to:)-28xku │ │ │ │ └── index.html │ │ │ ├── subscription │ │ │ ├── index.html │ │ │ ├── informwithcurrentstate() │ │ │ │ └── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configs │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── notifyobservers(_:) │ │ │ │ └── index.html │ │ │ ├── observable-implementations │ │ │ │ └── index.html │ │ │ ├── observeupdates(_:) │ │ │ │ └── index.html │ │ │ ├── onevent(_:) │ │ │ │ └── index.html │ │ │ ├── onupdate │ │ │ │ └── index.html │ │ │ ├── start(messagingapi:) │ │ │ │ └── index.html │ │ │ ├── stop() │ │ │ │ └── index.html │ │ │ └── transferoptiondescription │ │ │ │ └── index.html │ │ │ ├── supportsdk_h │ │ │ └── index.html │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initialize(withzendesk:) │ │ │ │ └── index.html │ │ │ ├── instance │ │ │ │ └── index.html │ │ │ └── refreshrequest(requestid:) │ │ │ │ └── index.html │ │ │ ├── system_version_greater_than_seven │ │ │ └── index.html │ │ │ ├── theme │ │ │ ├── currenttheme │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init │ │ │ │ └── index.html │ │ │ └── primarycolor │ │ │ │ └── index.html │ │ │ ├── window │ │ │ ├── addsubview(_:) │ │ │ │ └── index.html │ │ │ ├── bounds │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── layer │ │ │ │ └── index.html │ │ │ └── windowlevel │ │ │ │ └── index.html │ │ │ ├── zd_is_ipad │ │ │ └── index.html │ │ │ ├── zd_is_iphone │ │ │ └── index.html │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── articlelistandarticle │ │ │ │ └── index.html │ │ │ ├── articlelistonly │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── off │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── createrequestbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarcreaterequestuitype() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ ├── index.html │ │ │ └── updatebuttonstatesforbutton(atindexselected:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ ├── index.html │ │ │ └── init(articleid:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentercellconfigureblock │ │ │ └── index.html │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarconversationsuitype() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource() │ │ │ │ └── index.html │ │ │ ├── hasitems │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── item(at:) │ │ │ │ └── index.html │ │ │ ├── items │ │ │ │ └── index.html │ │ │ ├── provider │ │ │ │ └── index.html │ │ │ └── reloaddata() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdelegate │ │ │ ├── index.html │ │ │ └── uidelegate │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emptyhelpcenter │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── invalidcategoryids │ │ │ │ └── index.html │ │ │ ├── invalidsectionids │ │ │ │ └── index.html │ │ │ ├── noarticlesforlabels │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentererrordomain │ │ │ └── index.html │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternosectionslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:) │ │ │ │ └── index.html │ │ │ ├── build(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview(withconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui(withconfigs:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── index.html │ │ │ └── init(viewcontroller:toplevelview:layoutposition:) │ │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── bottom │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── top │ │ │ │ └── index.html │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── image │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── localizedlabel │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center │ │ │ │ └── index.html │ │ │ ├── frame │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── ishidden │ │ │ │ └── index.html │ │ │ ├── startanimating() │ │ │ │ └── index.html │ │ │ └── stopanimating() │ │ │ │ └── index.html │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier() │ │ │ │ └── index.html │ │ │ ├── filesize │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── title │ │ │ │ └── index.html │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss() │ │ │ │ └── index.html │ │ │ ├── hidetoastview(_:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isvisible │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:) │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:buttontitle:action:) │ │ │ │ └── index.html │ │ │ └── showerror(in:withmessage:duration:) │ │ │ │ └── index.html │ │ │ ├── zdkuiislandscape() │ │ │ └── index.html │ │ │ ├── zdkuiorigininwindow(_:) │ │ │ └── index.html │ │ │ ├── zdkuiscreenframe() │ │ │ └── index.html │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96 │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:selector:)-4i9sm │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:whencontainedin:selector:) │ │ │ │ └── index.html │ │ │ ├── buildbutton(withframe:andtitle:) │ │ │ │ └── index.html │ │ │ ├── currentinterfaceorientation() │ │ │ │ └── index.html │ │ │ ├── fixorientation(of:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── islandscape() │ │ │ │ └── index.html │ │ │ ├── isnewerversion(_:) │ │ │ │ └── index.html │ │ │ ├── isolderversion(_:) │ │ │ │ └── index.html │ │ │ ├── ispad() │ │ │ │ └── index.html │ │ │ ├── issameversion(_:) │ │ │ │ └── index.html │ │ │ ├── scaledheight(for:constrainedbywidth:) │ │ │ │ └── index.html │ │ │ ├── separatorheightforscreenscale() │ │ │ │ └── index.html │ │ │ └── shouldenableattachments(_:) │ │ │ │ └── index.html │ │ │ ├── zdlog │ │ │ └── index.html │ │ │ └── zduispinner │ │ │ └── index.html │ ├── favicon.ico │ ├── favicon.svg │ ├── img │ │ ├── added-icon.d6f7e47d.svg │ │ ├── deprecated-icon.015b4f17.svg │ │ ├── modified-icon.f496e73d.svg │ │ └── no-image@2x.df2a0a50.png │ ├── index.html │ ├── index │ │ ├── availability.index │ │ ├── data.mdb │ │ ├── index.json │ │ └── navigator.index │ ├── js │ │ ├── chunk-2d0d3105.cd72cc8e.js │ │ ├── chunk-vendors.b24b7aaa.js │ │ ├── documentation-topic.f62098b6.js │ │ ├── documentation-topic~topic~tutorials-overview.8e36e44f.js │ │ ├── highlight-js-bash.1b52852f.js │ │ ├── highlight-js-c.d1db3f17.js │ │ ├── highlight-js-cpp.eaddddbe.js │ │ ├── highlight-js-css.75eab1fe.js │ │ ├── highlight-js-custom-markdown.7cffc4b3.js │ │ ├── highlight-js-custom-swift.5cda5c20.js │ │ ├── highlight-js-diff.62d66733.js │ │ ├── highlight-js-http.163e45b6.js │ │ ├── highlight-js-java.8326d9d8.js │ │ ├── highlight-js-javascript.acb8a8eb.js │ │ ├── highlight-js-json.471128d2.js │ │ ├── highlight-js-llvm.6100b125.js │ │ ├── highlight-js-markdown.90077643.js │ │ ├── highlight-js-objectivec.bcdf5156.js │ │ ├── highlight-js-perl.757d7b6f.js │ │ ├── highlight-js-php.cc8d6c27.js │ │ ├── highlight-js-python.c214ed92.js │ │ ├── highlight-js-ruby.f889d392.js │ │ ├── highlight-js-scss.62ee18da.js │ │ ├── highlight-js-shell.dd7f411f.js │ │ ├── highlight-js-swift.84f3e88c.js │ │ ├── highlight-js-xml.9c3688c7.js │ │ ├── index.58e30ec4.js │ │ ├── topic.6a1c7b7f.js │ │ └── tutorials-overview.c8178b83.js │ ├── metadata.json │ └── theme-settings.json ├── 8.0.1 │ ├── css │ │ ├── chunk-c0335d80.10a2f091.css │ │ ├── documentation-topic.1d1eec04.css │ │ ├── documentation-topic~topic.b6287bcf.css │ │ ├── documentation-topic~topic~tutorials-overview.d6f5411c.css │ │ ├── index.038e887c.css │ │ ├── topic.d8c126f3.css │ │ └── tutorials-overview.c249c765.css │ ├── data │ │ └── documentation │ │ │ ├── supportsdk.json │ │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks.json │ │ │ ├── +(_:_:)-8bv54.json │ │ │ ├── action.json │ │ │ ├── actionlistenerfunction.json │ │ │ ├── actionsubscription.json │ │ │ ├── actionsubscription │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── alwaysfilter.json │ │ │ ├── applicationtype.json │ │ │ ├── applicationtype │ │ │ └── topwindow.json │ │ │ ├── articleuiconfiguration.json │ │ │ ├── articleuiconfiguration │ │ │ ├── engines.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── objcengines.json │ │ │ └── showcontactoptions.json │ │ │ ├── asyncaction.json │ │ │ ├── asyncaction │ │ │ └── execute(getstate:dispatch:).json │ │ │ ├── asyncmiddleware.json │ │ │ ├── asyncmiddleware │ │ │ ├── init().json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockasyncaction.json │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:).json │ │ │ └── init(executionblock:).json │ │ │ ├── blockmiddleware.json │ │ │ ├── blockmiddleware │ │ │ ├── init(actionfunction:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockreducer.json │ │ │ ├── blockreducer │ │ │ ├── init(initialstate:reduce:).json │ │ │ ├── init(initialstate:statekey:reduce:).json │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ └── statekey.json │ │ │ ├── cgcenterrectinrect(_:_:).json │ │ │ ├── cgmakecenteredrectinrect(_:_:_:).json │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:).json │ │ │ ├── cgrectmakecenteredinscreen(_:_:).json │ │ │ ├── combinedreducer.json │ │ │ ├── combinedreducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── reducer-implementations.json │ │ │ └── statekey.json │ │ │ ├── containerchild.json │ │ │ ├── containerchild │ │ │ └── childdelegate.json │ │ │ ├── containerchildcontroller.json │ │ │ ├── containerchildcontrollerdelegate.json │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── navitem.json │ │ │ └── willdismiss().json │ │ │ ├── containerviewcontroller.json │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations.json │ │ │ ├── initwithcoder:.json │ │ │ ├── initwithnibname:bundle:.json │ │ │ ├── navitem.json │ │ │ ├── viewdidload().json │ │ │ └── willdismiss().json │ │ │ ├── coordinatingviewcontroller.json │ │ │ ├── coordinatingviewcontroller │ │ │ ├── init(coordinator:).json │ │ │ ├── viewdidappear(_:).json │ │ │ ├── viewdiddisappear(_:).json │ │ │ ├── viewdidload().json │ │ │ └── viewwillappear(_:).json │ │ │ ├── coordinator.json │ │ │ ├── coordinator │ │ │ └── start(present:with:).json │ │ │ ├── defaultlogger.json │ │ │ ├── dismissutil.json │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:).json │ │ │ ├── navigationcontroller(_:didpush:).json │ │ │ └── remove(_:from:).json │ │ │ ├── dispatchfunction.json │ │ │ ├── equalsfilter.json │ │ │ ├── filetype.json │ │ │ ├── filetype │ │ │ ├── !=(_:_:).json │ │ │ ├── binary.json │ │ │ ├── equatable-implementations.json │ │ │ ├── excel.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── heic.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── jpg.json │ │ │ ├── keynote.json │ │ │ ├── numbers.json │ │ │ ├── pages.json │ │ │ ├── pdf.json │ │ │ ├── plain.json │ │ │ ├── png.json │ │ │ ├── powerpoint.json │ │ │ ├── powerpointx.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── word.json │ │ │ ├── filterfunction.json │ │ │ ├── getstatefunction.json │ │ │ ├── helpcenterarticlevotinghandler.json │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ ├── currentarticlevote().json │ │ │ └── init(witharticleid:andlocale:).json │ │ │ ├── helpcentercontactusrouter.json │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch().json │ │ │ ├── decidebuttonactionfornavbar().json │ │ │ └── init(withpresentingviewcontroller:configurations:engines:).json │ │ │ ├── helpcentercoordinator.json │ │ │ ├── helpcentercoordinator │ │ │ ├── init(helpcentercontroller:uiconfigurations:).json │ │ │ └── start(present:with:).json │ │ │ ├── helpcenterdelegate.json │ │ │ ├── helpcenterui.json │ │ │ ├── helpcenteruiconfiguration.json │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines.json │ │ │ ├── groupids.json │ │ │ ├── grouptype.json │ │ │ ├── init().json │ │ │ ├── labels.json │ │ │ ├── objcengines.json │ │ │ ├── overviewcontentmodel.json │ │ │ ├── showcontactoptions.json │ │ │ └── showcontactoptionsonemptysearch.json │ │ │ ├── keyedstate.json │ │ │ ├── listenerfunction.json │ │ │ ├── loggermiddleware.json │ │ │ ├── loggermiddleware │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middleware.json │ │ │ ├── middleware │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middlewarefunction.json │ │ │ ├── nextfunction.json │ │ │ ├── reducer.json │ │ │ ├── reducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── statekey-65k0h.json │ │ │ ├── statekey-9741m.json │ │ │ └── statetype.json │ │ │ ├── reducerfunction.json │ │ │ ├── requestattachment.json │ │ │ ├── requestattachment │ │ │ ├── data.json │ │ │ ├── filename.json │ │ │ ├── filetype.json │ │ │ └── init(filename:data:filetype:).json │ │ │ ├── requestcoordinator.json │ │ │ ├── requestcoordinator │ │ │ └── start(present:with:).json │ │ │ ├── requestlistuiconfiguration.json │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation.json │ │ │ ├── init().json │ │ │ └── isequal(_:).json │ │ │ ├── requestui.json │ │ │ ├── requestui │ │ │ ├── buildrequestlist().json │ │ │ ├── buildrequestlist(with:).json │ │ │ ├── buildrequestui().json │ │ │ ├── buildrequestui(requestid:).json │ │ │ ├── buildrequestui(requestid:configurations:).json │ │ │ └── buildrequestui(with:).json │ │ │ ├── requestuiconfiguration.json │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields.json │ │ │ ├── fileattachments.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── subject.json │ │ │ ├── tags.json │ │ │ └── ticketformid.json │ │ │ ├── state.json │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ │ ├── init(dictionary:).json │ │ │ ├── init(dictionaryliteral:).json │ │ │ ├── keys.json │ │ │ ├── subscript(_:).json │ │ │ ├── subscript(forkey:oftype:).json │ │ │ ├── subscript(forkeyoftype:).json │ │ │ ├── value(forkey:).json │ │ │ ├── value(forkey:oftype:).json │ │ │ └── value(forkeyoftype:).json │ │ │ ├── statekey.json │ │ │ ├── stateselector.json │ │ │ ├── store.json │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:).json │ │ │ ├── addlistener(forstatetype:statekey:if:callback:).json │ │ │ ├── addlistener(if:callback:).json │ │ │ ├── addlistener(if:stateselector:callback:).json │ │ │ ├── dispatch(action:).json │ │ │ ├── reset(state:).json │ │ │ ├── reset(state:forkey:).json │ │ │ ├── resetfullstate(_:).json │ │ │ └── state.json │ │ │ ├── suas.json │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:).json │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl.json │ │ │ ├── createstore(reducer:state:middleware:)-4w130.json │ │ │ └── enabledebuglogging.json │ │ │ ├── suasdebuglogger.json │ │ │ ├── suasdebuglogger │ │ │ └── enabled.json │ │ │ ├── suasdynamicequatable.json │ │ │ ├── suasdynamicequatable │ │ │ ├── isequal(to:)-19mke.json │ │ │ └── isequal(to:)-28xku.json │ │ │ ├── subscription.json │ │ │ ├── subscription │ │ │ ├── informwithcurrentstate().json │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── supportengine.json │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configs.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── supportsdk_h.json │ │ │ ├── supportui.json │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride.json │ │ │ ├── initialize(withzendesk:).json │ │ │ ├── instance.json │ │ │ └── refreshrequest(requestid:).json │ │ │ ├── swift.json │ │ │ ├── swift │ │ │ ├── string.json │ │ │ └── string │ │ │ │ ├── isequal(to:).json │ │ │ │ └── suasdynamicequatable-implementations.json │ │ │ ├── system_version_greater_than_seven.json │ │ │ ├── theme.json │ │ │ ├── theme │ │ │ ├── currenttheme.json │ │ │ └── primarycolor.json │ │ │ ├── uikit.json │ │ │ ├── uikit │ │ │ ├── uiapplication.json │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations.json │ │ │ │ └── topwindow.json │ │ │ ├── window.json │ │ │ ├── window │ │ │ ├── addsubview(_:).json │ │ │ ├── bounds.json │ │ │ ├── layer.json │ │ │ └── windowlevel.json │ │ │ ├── zd_is_ipad.json │ │ │ ├── zd_is_iphone.json │ │ │ ├── zdkconstants.json │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast().json │ │ │ └── init.json │ │ │ ├── zdkcontactusvisibility.json │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:).json │ │ │ ├── articlelistandarticle.json │ │ │ ├── articlelistonly.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── off.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkcreaterequestuidelegate.json │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage().json │ │ │ ├── createrequestbarbuttonlocalizedlabel().json │ │ │ └── navbarcreaterequestuitype().json │ │ │ ├── zdkdismissutil │ │ │ └── init.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ └── currentarticlevote().json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol.json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ └── updatebuttonstatesforbutton(atindexselected:).json │ │ │ ├── zdkhelpcenterattachmentsdatasource.json │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ └── init(articleid:).json │ │ │ ├── zdkhelpcentercellconfigureblock.json │ │ │ ├── zdkhelpcenterconversationsuidelegate.json │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active().json │ │ │ ├── conversationsbarbuttonimage().json │ │ │ ├── conversationsbarbuttonlocalizedlabel().json │ │ │ └── navbarconversationsuitype().json │ │ │ ├── zdkhelpcenterdatasource.json │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource().json │ │ │ ├── hasitems.json │ │ │ ├── item(at:).json │ │ │ ├── items.json │ │ │ ├── provider.json │ │ │ └── reloaddata().json │ │ │ ├── zdkhelpcenterdelegate.json │ │ │ ├── zdkhelpcenterdelegate │ │ │ └── uidelegate.json │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription.json │ │ │ ├── zdkhelpcentererror.json │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:).json │ │ │ ├── emptyhelpcenter.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── invalidcategoryids.json │ │ │ ├── invalidsectionids.json │ │ │ ├── noarticlesforlabels.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkhelpcentererrordomain.json │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription.json │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription.json │ │ │ ├── zdkhelpcenternosectionslocaliseddescription.json │ │ │ ├── zdkhelpcenterui.json │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:).json │ │ │ ├── build(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(_:).json │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenteroverview().json │ │ │ ├── buildhelpcenteroverview(withconfigs:).json │ │ │ ├── buildhelpcenteroverviewui().json │ │ │ └── buildhelpcenteroverviewui(withconfigs:).json │ │ │ ├── zdklayoutguideapplicator.json │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── init(viewcontroller:toplevel:layoutposition:).json │ │ │ └── init(viewcontroller:toplevelview:layoutposition:).json │ │ │ ├── zdklayoutguideapplicatorposition.json │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:).json │ │ │ ├── bottom.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── top.json │ │ │ ├── zdknavbarcreaterequestuitype.json │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── image.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── localizedlabel.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkrequestui │ │ │ └── init.json │ │ │ ├── zdkspinnerdelegate.json │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center.json │ │ │ ├── frame.json │ │ │ ├── ishidden.json │ │ │ ├── startanimating().json │ │ │ └── stopanimating().json │ │ │ ├── zdksuasdebuglogger │ │ │ └── init.json │ │ │ ├── zdksupportattachmentcell.json │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier().json │ │ │ ├── filesize.json │ │ │ └── title.json │ │ │ ├── zdktheme │ │ │ └── init.json │ │ │ ├── zdktoastviewwrapper.json │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss().json │ │ │ ├── hidetoastview(_:).json │ │ │ ├── isvisible.json │ │ │ ├── showerror(in:withmessage:).json │ │ │ ├── showerror(in:withmessage:buttontitle:action:).json │ │ │ └── showerror(in:withmessage:duration:).json │ │ │ ├── zdkuiislandscape().json │ │ │ ├── zdkuiorigininwindow(_:).json │ │ │ ├── zdkuiscreenframe().json │ │ │ ├── zdkuiutil.json │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96.json │ │ │ ├── appearancevalue(for:selector:)-4i9sm.json │ │ │ ├── appearancevalue(for:whencontainedin:selector:).json │ │ │ ├── buildbutton(withframe:andtitle:).json │ │ │ ├── currentinterfaceorientation().json │ │ │ ├── fixorientation(of:).json │ │ │ ├── islandscape().json │ │ │ ├── isnewerversion(_:).json │ │ │ ├── isolderversion(_:).json │ │ │ ├── ispad().json │ │ │ ├── issameversion(_:).json │ │ │ ├── scaledheight(for:constrainedbywidth:).json │ │ │ ├── separatorheightforscreenscale().json │ │ │ └── shouldenableattachments(_:).json │ │ │ ├── zdlog.json │ │ │ └── zduispinner.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks │ │ │ └── index.html │ │ │ ├── +(_:_:)-8bv54 │ │ │ └── index.html │ │ │ ├── action │ │ │ └── index.html │ │ │ ├── actionlistenerfunction │ │ │ └── index.html │ │ │ ├── actionsubscription │ │ │ ├── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── alwaysfilter │ │ │ └── index.html │ │ │ ├── applicationtype │ │ │ ├── index.html │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── articleuiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ └── showcontactoptions │ │ │ │ └── index.html │ │ │ ├── asyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── asyncmiddleware │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(executionblock:) │ │ │ │ └── index.html │ │ │ ├── blockmiddleware │ │ │ ├── index.html │ │ │ ├── init(actionfunction:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockreducer │ │ │ ├── index.html │ │ │ ├── init(initialstate:reduce:) │ │ │ │ └── index.html │ │ │ ├── init(initialstate:statekey:reduce:) │ │ │ │ └── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── cgcenterrectinrect(_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectinrect(_:_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:) │ │ │ └── index.html │ │ │ ├── cgrectmakecenteredinscreen(_:_:) │ │ │ └── index.html │ │ │ ├── combinedreducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── reducer-implementations │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── containerchild │ │ │ ├── childdelegate │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── containerchildcontroller │ │ │ └── index.html │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initwithcoder: │ │ │ │ └── index.html │ │ │ ├── initwithnibname:bundle: │ │ │ │ └── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── coordinatingviewcontroller │ │ │ ├── index.html │ │ │ ├── init(coordinator:) │ │ │ │ └── index.html │ │ │ ├── viewdidappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdiddisappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── viewwillappear(_:) │ │ │ │ └── index.html │ │ │ ├── coordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── defaultlogger │ │ │ └── index.html │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── navigationcontroller(_:didpush:) │ │ │ │ └── index.html │ │ │ └── remove(_:from:) │ │ │ │ └── index.html │ │ │ ├── dispatchfunction │ │ │ └── index.html │ │ │ ├── equalsfilter │ │ │ └── index.html │ │ │ ├── filetype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── binary │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── excel │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── heic │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── jpg │ │ │ │ └── index.html │ │ │ ├── keynote │ │ │ │ └── index.html │ │ │ ├── numbers │ │ │ │ └── index.html │ │ │ ├── pages │ │ │ │ └── index.html │ │ │ ├── pdf │ │ │ │ └── index.html │ │ │ ├── plain │ │ │ │ └── index.html │ │ │ ├── png │ │ │ │ └── index.html │ │ │ ├── powerpoint │ │ │ │ └── index.html │ │ │ ├── powerpointx │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── word │ │ │ │ └── index.html │ │ │ ├── filterfunction │ │ │ └── index.html │ │ │ ├── getstatefunction │ │ │ └── index.html │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(witharticleid:andlocale:) │ │ │ │ └── index.html │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch() │ │ │ │ └── index.html │ │ │ ├── decidebuttonactionfornavbar() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(withpresentingviewcontroller:configurations:engines:) │ │ │ │ └── index.html │ │ │ ├── helpcentercoordinator │ │ │ ├── index.html │ │ │ ├── init(helpcentercontroller:uiconfigurations:) │ │ │ │ └── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── helpcenterdelegate │ │ │ └── index.html │ │ │ ├── helpcenterui │ │ │ └── index.html │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── groupids │ │ │ │ └── index.html │ │ │ ├── grouptype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── labels │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ ├── overviewcontentmodel │ │ │ │ └── index.html │ │ │ ├── showcontactoptions │ │ │ │ └── index.html │ │ │ └── showcontactoptionsonemptysearch │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── keyedstate │ │ │ └── index.html │ │ │ ├── listenerfunction │ │ │ └── index.html │ │ │ ├── loggermiddleware │ │ │ ├── index.html │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middleware │ │ │ ├── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middlewarefunction │ │ │ └── index.html │ │ │ ├── nextfunction │ │ │ └── index.html │ │ │ ├── reducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── statekey-65k0h │ │ │ │ └── index.html │ │ │ ├── statekey-9741m │ │ │ │ └── index.html │ │ │ └── statetype │ │ │ │ └── index.html │ │ │ ├── reducerfunction │ │ │ └── index.html │ │ │ ├── requestattachment │ │ │ ├── data │ │ │ │ └── index.html │ │ │ ├── filename │ │ │ │ └── index.html │ │ │ ├── filetype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(filename:data:filetype:) │ │ │ │ └── index.html │ │ │ ├── requestcoordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── requestui │ │ │ ├── buildrequestlist() │ │ │ │ └── index.html │ │ │ ├── buildrequestlist(with:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui() │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:configurations:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(with:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields │ │ │ │ └── index.html │ │ │ ├── fileattachments │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── subject │ │ │ │ └── index.html │ │ │ ├── tags │ │ │ │ └── index.html │ │ │ └── ticketformid │ │ │ │ └── index.html │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(dictionary:) │ │ │ │ └── index.html │ │ │ ├── init(dictionaryliteral:) │ │ │ │ └── index.html │ │ │ ├── keys │ │ │ │ └── index.html │ │ │ ├── subscript(_:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkey:oftype:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:oftype:) │ │ │ │ └── index.html │ │ │ └── value(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── statekey │ │ │ └── index.html │ │ │ ├── stateselector │ │ │ └── index.html │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:) │ │ │ │ └── index.html │ │ │ ├── addlistener(forstatetype:statekey:if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:stateselector:callback:) │ │ │ │ └── index.html │ │ │ ├── dispatch(action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── reset(state:) │ │ │ │ └── index.html │ │ │ ├── reset(state:forkey:) │ │ │ │ └── index.html │ │ │ ├── resetfullstate(_:) │ │ │ │ └── index.html │ │ │ └── state │ │ │ │ └── index.html │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:) │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-4w130 │ │ │ │ └── index.html │ │ │ ├── enabledebuglogging │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdebuglogger │ │ │ ├── enabled │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdynamicequatable │ │ │ ├── index.html │ │ │ ├── isequal(to:)-19mke │ │ │ │ └── index.html │ │ │ └── isequal(to:)-28xku │ │ │ │ └── index.html │ │ │ ├── subscription │ │ │ ├── index.html │ │ │ ├── informwithcurrentstate() │ │ │ │ └── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configs │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── notifyobservers(_:) │ │ │ │ └── index.html │ │ │ ├── observable-implementations │ │ │ │ └── index.html │ │ │ ├── observeupdates(_:) │ │ │ │ └── index.html │ │ │ ├── onevent(_:) │ │ │ │ └── index.html │ │ │ ├── onupdate │ │ │ │ └── index.html │ │ │ ├── start(messagingapi:) │ │ │ │ └── index.html │ │ │ ├── stop() │ │ │ │ └── index.html │ │ │ └── transferoptiondescription │ │ │ │ └── index.html │ │ │ ├── supportsdk_h │ │ │ └── index.html │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initialize(withzendesk:) │ │ │ │ └── index.html │ │ │ ├── instance │ │ │ │ └── index.html │ │ │ └── refreshrequest(requestid:) │ │ │ │ └── index.html │ │ │ ├── swift │ │ │ ├── index.html │ │ │ └── string │ │ │ │ ├── index.html │ │ │ │ ├── isequal(to:) │ │ │ │ └── index.html │ │ │ │ └── suasdynamicequatable-implementations │ │ │ │ └── index.html │ │ │ ├── system_version_greater_than_seven │ │ │ └── index.html │ │ │ ├── theme │ │ │ ├── currenttheme │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── primarycolor │ │ │ │ └── index.html │ │ │ ├── uikit │ │ │ ├── index.html │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── window │ │ │ ├── addsubview(_:) │ │ │ │ └── index.html │ │ │ ├── bounds │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── layer │ │ │ │ └── index.html │ │ │ └── windowlevel │ │ │ │ └── index.html │ │ │ ├── zd_is_ipad │ │ │ └── index.html │ │ │ ├── zd_is_iphone │ │ │ └── index.html │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── articlelistandarticle │ │ │ │ └── index.html │ │ │ ├── articlelistonly │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── off │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── createrequestbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarcreaterequestuitype() │ │ │ │ └── index.html │ │ │ ├── zdkdismissutil │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ ├── index.html │ │ │ └── updatebuttonstatesforbutton(atindexselected:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ ├── index.html │ │ │ └── init(articleid:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentercellconfigureblock │ │ │ └── index.html │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarconversationsuitype() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource() │ │ │ │ └── index.html │ │ │ ├── hasitems │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── item(at:) │ │ │ │ └── index.html │ │ │ ├── items │ │ │ │ └── index.html │ │ │ ├── provider │ │ │ │ └── index.html │ │ │ └── reloaddata() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdelegate │ │ │ ├── index.html │ │ │ └── uidelegate │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emptyhelpcenter │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── invalidcategoryids │ │ │ │ └── index.html │ │ │ ├── invalidsectionids │ │ │ │ └── index.html │ │ │ ├── noarticlesforlabels │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentererrordomain │ │ │ └── index.html │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternosectionslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:) │ │ │ │ └── index.html │ │ │ ├── build(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview(withconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui(withconfigs:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── index.html │ │ │ ├── init(viewcontroller:toplevel:layoutposition:) │ │ │ │ └── index.html │ │ │ └── init(viewcontroller:toplevelview:layoutposition:) │ │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── bottom │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── top │ │ │ │ └── index.html │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── image │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── localizedlabel │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkrequestui │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center │ │ │ │ └── index.html │ │ │ ├── frame │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── ishidden │ │ │ │ └── index.html │ │ │ ├── startanimating() │ │ │ │ └── index.html │ │ │ └── stopanimating() │ │ │ │ └── index.html │ │ │ ├── zdksuasdebuglogger │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier() │ │ │ │ └── index.html │ │ │ ├── filesize │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── title │ │ │ │ └── index.html │ │ │ ├── zdktheme │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss() │ │ │ │ └── index.html │ │ │ ├── hidetoastview(_:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isvisible │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:) │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:buttontitle:action:) │ │ │ │ └── index.html │ │ │ └── showerror(in:withmessage:duration:) │ │ │ │ └── index.html │ │ │ ├── zdkuiislandscape() │ │ │ └── index.html │ │ │ ├── zdkuiorigininwindow(_:) │ │ │ └── index.html │ │ │ ├── zdkuiscreenframe() │ │ │ └── index.html │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96 │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:selector:)-4i9sm │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:whencontainedin:selector:) │ │ │ │ └── index.html │ │ │ ├── buildbutton(withframe:andtitle:) │ │ │ │ └── index.html │ │ │ ├── currentinterfaceorientation() │ │ │ │ └── index.html │ │ │ ├── fixorientation(of:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── islandscape() │ │ │ │ └── index.html │ │ │ ├── isnewerversion(_:) │ │ │ │ └── index.html │ │ │ ├── isolderversion(_:) │ │ │ │ └── index.html │ │ │ ├── ispad() │ │ │ │ └── index.html │ │ │ ├── issameversion(_:) │ │ │ │ └── index.html │ │ │ ├── scaledheight(for:constrainedbywidth:) │ │ │ │ └── index.html │ │ │ ├── separatorheightforscreenscale() │ │ │ │ └── index.html │ │ │ └── shouldenableattachments(_:) │ │ │ │ └── index.html │ │ │ ├── zdlog │ │ │ └── index.html │ │ │ └── zduispinner │ │ │ └── index.html │ ├── favicon.ico │ ├── favicon.svg │ ├── img │ │ ├── added-icon.d6f7e47d.svg │ │ ├── deprecated-icon.015b4f17.svg │ │ ├── modified-icon.f496e73d.svg │ │ └── no-image@2x.df2a0a50.png │ ├── index.html │ ├── index │ │ ├── availability.index │ │ ├── data.mdb │ │ ├── index.json │ │ └── navigator.index │ ├── js │ │ ├── chunk-2d0d3105.cd72cc8e.js │ │ ├── chunk-c0335d80.76a68cc5.js │ │ ├── chunk-vendors.ba2dd0cb.js │ │ ├── documentation-topic.57e91f8a.js │ │ ├── documentation-topic~topic.1679ec90.js │ │ ├── documentation-topic~topic~tutorials-overview.90c61522.js │ │ ├── highlight-js-bash.1b52852f.js │ │ ├── highlight-js-c.d1db3f17.js │ │ ├── highlight-js-cpp.eaddddbe.js │ │ ├── highlight-js-css.75eab1fe.js │ │ ├── highlight-js-custom-markdown.7cffc4b3.js │ │ ├── highlight-js-custom-swift.5cda5c20.js │ │ ├── highlight-js-diff.62d66733.js │ │ ├── highlight-js-http.163e45b6.js │ │ ├── highlight-js-java.8326d9d8.js │ │ ├── highlight-js-javascript.acb8a8eb.js │ │ ├── highlight-js-json.471128d2.js │ │ ├── highlight-js-llvm.6100b125.js │ │ ├── highlight-js-markdown.90077643.js │ │ ├── highlight-js-objectivec.bcdf5156.js │ │ ├── highlight-js-perl.757d7b6f.js │ │ ├── highlight-js-php.cc8d6c27.js │ │ ├── highlight-js-python.c214ed92.js │ │ ├── highlight-js-ruby.f889d392.js │ │ ├── highlight-js-scss.62ee18da.js │ │ ├── highlight-js-shell.dd7f411f.js │ │ ├── highlight-js-swift.84f3e88c.js │ │ ├── highlight-js-xml.9c3688c7.js │ │ ├── index.e8a5d294.js │ │ ├── topic.8cd0c0c4.js │ │ └── tutorials-overview.2a32cd6f.js │ └── metadata.json ├── 8.0.2 │ ├── css │ │ ├── chunk-c0335d80.10a2f091.css │ │ ├── documentation-topic.1d1eec04.css │ │ ├── documentation-topic~topic.b6287bcf.css │ │ ├── documentation-topic~topic~tutorials-overview.d6f5411c.css │ │ ├── index.038e887c.css │ │ ├── topic.d8c126f3.css │ │ └── tutorials-overview.c249c765.css │ ├── data │ │ └── documentation │ │ │ ├── supportsdk.json │ │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks.json │ │ │ ├── +(_:_:)-8bv54.json │ │ │ ├── action.json │ │ │ ├── actionlistenerfunction.json │ │ │ ├── actionsubscription.json │ │ │ ├── actionsubscription │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── alwaysfilter.json │ │ │ ├── applicationtype.json │ │ │ ├── applicationtype │ │ │ └── topwindow.json │ │ │ ├── articleuiconfiguration.json │ │ │ ├── articleuiconfiguration │ │ │ ├── engines.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── objcengines.json │ │ │ └── showcontactoptions.json │ │ │ ├── asyncaction.json │ │ │ ├── asyncaction │ │ │ └── execute(getstate:dispatch:).json │ │ │ ├── asyncmiddleware.json │ │ │ ├── asyncmiddleware │ │ │ ├── init().json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockasyncaction.json │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:).json │ │ │ └── init(executionblock:).json │ │ │ ├── blockmiddleware.json │ │ │ ├── blockmiddleware │ │ │ ├── init(actionfunction:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockreducer.json │ │ │ ├── blockreducer │ │ │ ├── init(initialstate:reduce:).json │ │ │ ├── init(initialstate:statekey:reduce:).json │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ └── statekey.json │ │ │ ├── cgcenterrectinrect(_:_:).json │ │ │ ├── cgmakecenteredrectinrect(_:_:_:).json │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:).json │ │ │ ├── cgrectmakecenteredinscreen(_:_:).json │ │ │ ├── combinedreducer.json │ │ │ ├── combinedreducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── reducer-implementations.json │ │ │ └── statekey.json │ │ │ ├── containerchild.json │ │ │ ├── containerchild │ │ │ └── childdelegate.json │ │ │ ├── containerchildcontroller.json │ │ │ ├── containerchildcontrollerdelegate.json │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── navitem.json │ │ │ └── willdismiss().json │ │ │ ├── containerviewcontroller.json │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations.json │ │ │ ├── initwithcoder:.json │ │ │ ├── initwithnibname:bundle:.json │ │ │ ├── navitem.json │ │ │ ├── viewdidload().json │ │ │ └── willdismiss().json │ │ │ ├── coordinatingviewcontroller.json │ │ │ ├── coordinatingviewcontroller │ │ │ ├── init(coordinator:).json │ │ │ ├── viewdidappear(_:).json │ │ │ ├── viewdiddisappear(_:).json │ │ │ ├── viewdidload().json │ │ │ └── viewwillappear(_:).json │ │ │ ├── coordinator.json │ │ │ ├── coordinator │ │ │ └── start(present:with:).json │ │ │ ├── defaultlogger.json │ │ │ ├── dismissutil.json │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:).json │ │ │ ├── navigationcontroller(_:didpush:).json │ │ │ └── remove(_:from:).json │ │ │ ├── dispatchfunction.json │ │ │ ├── equalsfilter.json │ │ │ ├── filetype.json │ │ │ ├── filetype │ │ │ ├── !=(_:_:).json │ │ │ ├── binary.json │ │ │ ├── equatable-implementations.json │ │ │ ├── excel.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── heic.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── jpg.json │ │ │ ├── keynote.json │ │ │ ├── numbers.json │ │ │ ├── pages.json │ │ │ ├── pdf.json │ │ │ ├── plain.json │ │ │ ├── png.json │ │ │ ├── powerpoint.json │ │ │ ├── powerpointx.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── word.json │ │ │ ├── filterfunction.json │ │ │ ├── getstatefunction.json │ │ │ ├── helpcenterarticlevotinghandler.json │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ ├── currentarticlevote().json │ │ │ └── init(witharticleid:andlocale:).json │ │ │ ├── helpcentercontactusrouter.json │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch().json │ │ │ ├── decidebuttonactionfornavbar().json │ │ │ └── init(withpresentingviewcontroller:configurations:engines:).json │ │ │ ├── helpcentercoordinator.json │ │ │ ├── helpcentercoordinator │ │ │ ├── init(helpcentercontroller:uiconfigurations:).json │ │ │ └── start(present:with:).json │ │ │ ├── helpcenterdelegate.json │ │ │ ├── helpcenterui.json │ │ │ ├── helpcenteruiconfiguration.json │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines.json │ │ │ ├── groupids.json │ │ │ ├── grouptype.json │ │ │ ├── init().json │ │ │ ├── labels.json │ │ │ ├── objcengines.json │ │ │ ├── overviewcontentmodel.json │ │ │ ├── showcontactoptions.json │ │ │ └── showcontactoptionsonemptysearch.json │ │ │ ├── keyedstate.json │ │ │ ├── listenerfunction.json │ │ │ ├── loggermiddleware.json │ │ │ ├── loggermiddleware │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middleware.json │ │ │ ├── middleware │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middlewarefunction.json │ │ │ ├── nextfunction.json │ │ │ ├── reducer.json │ │ │ ├── reducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── statekey-65k0h.json │ │ │ ├── statekey-9741m.json │ │ │ └── statetype.json │ │ │ ├── reducerfunction.json │ │ │ ├── requestattachment.json │ │ │ ├── requestattachment │ │ │ ├── data.json │ │ │ ├── filename.json │ │ │ ├── filetype.json │ │ │ └── init(filename:data:filetype:).json │ │ │ ├── requestcoordinator.json │ │ │ ├── requestcoordinator │ │ │ └── start(present:with:).json │ │ │ ├── requestlistuiconfiguration.json │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation.json │ │ │ ├── init().json │ │ │ └── isequal(_:).json │ │ │ ├── requestui.json │ │ │ ├── requestui │ │ │ ├── buildrequestlist().json │ │ │ ├── buildrequestlist(with:).json │ │ │ ├── buildrequestui().json │ │ │ ├── buildrequestui(requestid:).json │ │ │ ├── buildrequestui(requestid:configurations:).json │ │ │ └── buildrequestui(with:).json │ │ │ ├── requestuiconfiguration.json │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields.json │ │ │ ├── fileattachments.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── subject.json │ │ │ ├── tags.json │ │ │ └── ticketformid.json │ │ │ ├── state.json │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ │ ├── init(dictionary:).json │ │ │ ├── init(dictionaryliteral:).json │ │ │ ├── keys.json │ │ │ ├── subscript(_:).json │ │ │ ├── subscript(forkey:oftype:).json │ │ │ ├── subscript(forkeyoftype:).json │ │ │ ├── value(forkey:).json │ │ │ ├── value(forkey:oftype:).json │ │ │ └── value(forkeyoftype:).json │ │ │ ├── statekey.json │ │ │ ├── stateselector.json │ │ │ ├── store.json │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:).json │ │ │ ├── addlistener(forstatetype:statekey:if:callback:).json │ │ │ ├── addlistener(if:callback:).json │ │ │ ├── addlistener(if:stateselector:callback:).json │ │ │ ├── dispatch(action:).json │ │ │ ├── reset(state:).json │ │ │ ├── reset(state:forkey:).json │ │ │ ├── resetfullstate(_:).json │ │ │ └── state.json │ │ │ ├── suas.json │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:).json │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl.json │ │ │ ├── createstore(reducer:state:middleware:)-4w130.json │ │ │ └── enabledebuglogging.json │ │ │ ├── suasdebuglogger.json │ │ │ ├── suasdebuglogger │ │ │ └── enabled.json │ │ │ ├── suasdynamicequatable.json │ │ │ ├── suasdynamicequatable │ │ │ ├── isequal(to:)-19mke.json │ │ │ └── isequal(to:)-28xku.json │ │ │ ├── subscription.json │ │ │ ├── subscription │ │ │ ├── informwithcurrentstate().json │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── supportengine.json │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configs.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── supportsdk_h.json │ │ │ ├── supportui.json │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride.json │ │ │ ├── initialize(withzendesk:).json │ │ │ ├── instance.json │ │ │ └── refreshrequest(requestid:).json │ │ │ ├── swift.json │ │ │ ├── swift │ │ │ ├── string.json │ │ │ └── string │ │ │ │ ├── isequal(to:).json │ │ │ │ └── suasdynamicequatable-implementations.json │ │ │ ├── system_version_greater_than_seven.json │ │ │ ├── theme.json │ │ │ ├── theme │ │ │ ├── currenttheme.json │ │ │ └── primarycolor.json │ │ │ ├── uikit.json │ │ │ ├── uikit │ │ │ ├── uiapplication.json │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations.json │ │ │ │ └── topwindow.json │ │ │ ├── window.json │ │ │ ├── window │ │ │ ├── addsubview(_:).json │ │ │ ├── bounds.json │ │ │ ├── layer.json │ │ │ └── windowlevel.json │ │ │ ├── zd_is_ipad.json │ │ │ ├── zd_is_iphone.json │ │ │ ├── zdkconstants.json │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast().json │ │ │ └── init.json │ │ │ ├── zdkcontactusvisibility.json │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:).json │ │ │ ├── articlelistandarticle.json │ │ │ ├── articlelistonly.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── off.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkcreaterequestuidelegate.json │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage().json │ │ │ ├── createrequestbarbuttonlocalizedlabel().json │ │ │ └── navbarcreaterequestuitype().json │ │ │ ├── zdkdismissutil │ │ │ └── init.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ └── currentarticlevote().json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol.json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ └── updatebuttonstatesforbutton(atindexselected:).json │ │ │ ├── zdkhelpcenterattachmentsdatasource.json │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ └── init(articleid:).json │ │ │ ├── zdkhelpcentercellconfigureblock.json │ │ │ ├── zdkhelpcenterconversationsuidelegate.json │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active().json │ │ │ ├── conversationsbarbuttonimage().json │ │ │ ├── conversationsbarbuttonlocalizedlabel().json │ │ │ └── navbarconversationsuitype().json │ │ │ ├── zdkhelpcenterdatasource.json │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource().json │ │ │ ├── hasitems.json │ │ │ ├── item(at:).json │ │ │ ├── items.json │ │ │ ├── provider.json │ │ │ └── reloaddata().json │ │ │ ├── zdkhelpcenterdelegate.json │ │ │ ├── zdkhelpcenterdelegate │ │ │ └── uidelegate.json │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription.json │ │ │ ├── zdkhelpcentererror.json │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:).json │ │ │ ├── emptyhelpcenter.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── invalidcategoryids.json │ │ │ ├── invalidsectionids.json │ │ │ ├── noarticlesforlabels.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkhelpcentererrordomain.json │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription.json │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription.json │ │ │ ├── zdkhelpcenternosectionslocaliseddescription.json │ │ │ ├── zdkhelpcenterui.json │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:).json │ │ │ ├── build(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(_:).json │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenteroverview().json │ │ │ ├── buildhelpcenteroverview(withconfigs:).json │ │ │ ├── buildhelpcenteroverviewui().json │ │ │ └── buildhelpcenteroverviewui(withconfigs:).json │ │ │ ├── zdklayoutguideapplicator.json │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── init(viewcontroller:toplevel:layoutposition:).json │ │ │ └── init(viewcontroller:toplevelview:layoutposition:).json │ │ │ ├── zdklayoutguideapplicatorposition.json │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:).json │ │ │ ├── bottom.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── top.json │ │ │ ├── zdknavbarcreaterequestuitype.json │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── image.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── localizedlabel.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkrequestui │ │ │ └── init.json │ │ │ ├── zdkspinnerdelegate.json │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center.json │ │ │ ├── frame.json │ │ │ ├── ishidden.json │ │ │ ├── startanimating().json │ │ │ └── stopanimating().json │ │ │ ├── zdksuasdebuglogger │ │ │ └── init.json │ │ │ ├── zdksupportattachmentcell.json │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier().json │ │ │ ├── filesize.json │ │ │ └── title.json │ │ │ ├── zdktheme │ │ │ └── init.json │ │ │ ├── zdktoastviewwrapper.json │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss().json │ │ │ ├── hidetoastview(_:).json │ │ │ ├── isvisible.json │ │ │ ├── showerror(in:withmessage:).json │ │ │ ├── showerror(in:withmessage:buttontitle:action:).json │ │ │ └── showerror(in:withmessage:duration:).json │ │ │ ├── zdkuiislandscape().json │ │ │ ├── zdkuiorigininwindow(_:).json │ │ │ ├── zdkuiscreenframe().json │ │ │ ├── zdkuiutil.json │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96.json │ │ │ ├── appearancevalue(for:selector:)-4i9sm.json │ │ │ ├── appearancevalue(for:whencontainedin:selector:).json │ │ │ ├── buildbutton(withframe:andtitle:).json │ │ │ ├── currentinterfaceorientation().json │ │ │ ├── fixorientation(of:).json │ │ │ ├── islandscape().json │ │ │ ├── isnewerversion(_:).json │ │ │ ├── isolderversion(_:).json │ │ │ ├── ispad().json │ │ │ ├── issameversion(_:).json │ │ │ ├── scaledheight(for:constrainedbywidth:).json │ │ │ ├── separatorheightforscreenscale().json │ │ │ └── shouldenableattachments(_:).json │ │ │ ├── zdlog.json │ │ │ └── zduispinner.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks │ │ │ └── index.html │ │ │ ├── +(_:_:)-8bv54 │ │ │ └── index.html │ │ │ ├── action │ │ │ └── index.html │ │ │ ├── actionlistenerfunction │ │ │ └── index.html │ │ │ ├── actionsubscription │ │ │ ├── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── alwaysfilter │ │ │ └── index.html │ │ │ ├── applicationtype │ │ │ ├── index.html │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── articleuiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ └── showcontactoptions │ │ │ │ └── index.html │ │ │ ├── asyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── asyncmiddleware │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(executionblock:) │ │ │ │ └── index.html │ │ │ ├── blockmiddleware │ │ │ ├── index.html │ │ │ ├── init(actionfunction:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockreducer │ │ │ ├── index.html │ │ │ ├── init(initialstate:reduce:) │ │ │ │ └── index.html │ │ │ ├── init(initialstate:statekey:reduce:) │ │ │ │ └── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── cgcenterrectinrect(_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectinrect(_:_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:) │ │ │ └── index.html │ │ │ ├── cgrectmakecenteredinscreen(_:_:) │ │ │ └── index.html │ │ │ ├── combinedreducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── reducer-implementations │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── containerchild │ │ │ ├── childdelegate │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── containerchildcontroller │ │ │ └── index.html │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initwithcoder: │ │ │ │ └── index.html │ │ │ ├── initwithnibname:bundle: │ │ │ │ └── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── coordinatingviewcontroller │ │ │ ├── index.html │ │ │ ├── init(coordinator:) │ │ │ │ └── index.html │ │ │ ├── viewdidappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdiddisappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── viewwillappear(_:) │ │ │ │ └── index.html │ │ │ ├── coordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── defaultlogger │ │ │ └── index.html │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── navigationcontroller(_:didpush:) │ │ │ │ └── index.html │ │ │ └── remove(_:from:) │ │ │ │ └── index.html │ │ │ ├── dispatchfunction │ │ │ └── index.html │ │ │ ├── equalsfilter │ │ │ └── index.html │ │ │ ├── filetype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── binary │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── excel │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── heic │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── jpg │ │ │ │ └── index.html │ │ │ ├── keynote │ │ │ │ └── index.html │ │ │ ├── numbers │ │ │ │ └── index.html │ │ │ ├── pages │ │ │ │ └── index.html │ │ │ ├── pdf │ │ │ │ └── index.html │ │ │ ├── plain │ │ │ │ └── index.html │ │ │ ├── png │ │ │ │ └── index.html │ │ │ ├── powerpoint │ │ │ │ └── index.html │ │ │ ├── powerpointx │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── word │ │ │ │ └── index.html │ │ │ ├── filterfunction │ │ │ └── index.html │ │ │ ├── getstatefunction │ │ │ └── index.html │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(witharticleid:andlocale:) │ │ │ │ └── index.html │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch() │ │ │ │ └── index.html │ │ │ ├── decidebuttonactionfornavbar() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(withpresentingviewcontroller:configurations:engines:) │ │ │ │ └── index.html │ │ │ ├── helpcentercoordinator │ │ │ ├── index.html │ │ │ ├── init(helpcentercontroller:uiconfigurations:) │ │ │ │ └── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── helpcenterdelegate │ │ │ └── index.html │ │ │ ├── helpcenterui │ │ │ └── index.html │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── groupids │ │ │ │ └── index.html │ │ │ ├── grouptype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── labels │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ ├── overviewcontentmodel │ │ │ │ └── index.html │ │ │ ├── showcontactoptions │ │ │ │ └── index.html │ │ │ └── showcontactoptionsonemptysearch │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── keyedstate │ │ │ └── index.html │ │ │ ├── listenerfunction │ │ │ └── index.html │ │ │ ├── loggermiddleware │ │ │ ├── index.html │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middleware │ │ │ ├── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middlewarefunction │ │ │ └── index.html │ │ │ ├── nextfunction │ │ │ └── index.html │ │ │ ├── reducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── statekey-65k0h │ │ │ │ └── index.html │ │ │ ├── statekey-9741m │ │ │ │ └── index.html │ │ │ └── statetype │ │ │ │ └── index.html │ │ │ ├── reducerfunction │ │ │ └── index.html │ │ │ ├── requestattachment │ │ │ ├── data │ │ │ │ └── index.html │ │ │ ├── filename │ │ │ │ └── index.html │ │ │ ├── filetype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(filename:data:filetype:) │ │ │ │ └── index.html │ │ │ ├── requestcoordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── requestui │ │ │ ├── buildrequestlist() │ │ │ │ └── index.html │ │ │ ├── buildrequestlist(with:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui() │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:configurations:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(with:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields │ │ │ │ └── index.html │ │ │ ├── fileattachments │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── subject │ │ │ │ └── index.html │ │ │ ├── tags │ │ │ │ └── index.html │ │ │ └── ticketformid │ │ │ │ └── index.html │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(dictionary:) │ │ │ │ └── index.html │ │ │ ├── init(dictionaryliteral:) │ │ │ │ └── index.html │ │ │ ├── keys │ │ │ │ └── index.html │ │ │ ├── subscript(_:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkey:oftype:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:oftype:) │ │ │ │ └── index.html │ │ │ └── value(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── statekey │ │ │ └── index.html │ │ │ ├── stateselector │ │ │ └── index.html │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:) │ │ │ │ └── index.html │ │ │ ├── addlistener(forstatetype:statekey:if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:stateselector:callback:) │ │ │ │ └── index.html │ │ │ ├── dispatch(action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── reset(state:) │ │ │ │ └── index.html │ │ │ ├── reset(state:forkey:) │ │ │ │ └── index.html │ │ │ ├── resetfullstate(_:) │ │ │ │ └── index.html │ │ │ └── state │ │ │ │ └── index.html │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:) │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-4w130 │ │ │ │ └── index.html │ │ │ ├── enabledebuglogging │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdebuglogger │ │ │ ├── enabled │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdynamicequatable │ │ │ ├── index.html │ │ │ ├── isequal(to:)-19mke │ │ │ │ └── index.html │ │ │ └── isequal(to:)-28xku │ │ │ │ └── index.html │ │ │ ├── subscription │ │ │ ├── index.html │ │ │ ├── informwithcurrentstate() │ │ │ │ └── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configs │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── notifyobservers(_:) │ │ │ │ └── index.html │ │ │ ├── observable-implementations │ │ │ │ └── index.html │ │ │ ├── observeupdates(_:) │ │ │ │ └── index.html │ │ │ ├── onevent(_:) │ │ │ │ └── index.html │ │ │ ├── onupdate │ │ │ │ └── index.html │ │ │ ├── start(messagingapi:) │ │ │ │ └── index.html │ │ │ ├── stop() │ │ │ │ └── index.html │ │ │ └── transferoptiondescription │ │ │ │ └── index.html │ │ │ ├── supportsdk_h │ │ │ └── index.html │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initialize(withzendesk:) │ │ │ │ └── index.html │ │ │ ├── instance │ │ │ │ └── index.html │ │ │ └── refreshrequest(requestid:) │ │ │ │ └── index.html │ │ │ ├── swift │ │ │ ├── index.html │ │ │ └── string │ │ │ │ ├── index.html │ │ │ │ ├── isequal(to:) │ │ │ │ └── index.html │ │ │ │ └── suasdynamicequatable-implementations │ │ │ │ └── index.html │ │ │ ├── system_version_greater_than_seven │ │ │ └── index.html │ │ │ ├── theme │ │ │ ├── currenttheme │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── primarycolor │ │ │ │ └── index.html │ │ │ ├── uikit │ │ │ ├── index.html │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── window │ │ │ ├── addsubview(_:) │ │ │ │ └── index.html │ │ │ ├── bounds │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── layer │ │ │ │ └── index.html │ │ │ └── windowlevel │ │ │ │ └── index.html │ │ │ ├── zd_is_ipad │ │ │ └── index.html │ │ │ ├── zd_is_iphone │ │ │ └── index.html │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── articlelistandarticle │ │ │ │ └── index.html │ │ │ ├── articlelistonly │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── off │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── createrequestbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarcreaterequestuitype() │ │ │ │ └── index.html │ │ │ ├── zdkdismissutil │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ ├── index.html │ │ │ └── updatebuttonstatesforbutton(atindexselected:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ ├── index.html │ │ │ └── init(articleid:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentercellconfigureblock │ │ │ └── index.html │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarconversationsuitype() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource() │ │ │ │ └── index.html │ │ │ ├── hasitems │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── item(at:) │ │ │ │ └── index.html │ │ │ ├── items │ │ │ │ └── index.html │ │ │ ├── provider │ │ │ │ └── index.html │ │ │ └── reloaddata() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdelegate │ │ │ ├── index.html │ │ │ └── uidelegate │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emptyhelpcenter │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── invalidcategoryids │ │ │ │ └── index.html │ │ │ ├── invalidsectionids │ │ │ │ └── index.html │ │ │ ├── noarticlesforlabels │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentererrordomain │ │ │ └── index.html │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternosectionslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:) │ │ │ │ └── index.html │ │ │ ├── build(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview(withconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui(withconfigs:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── index.html │ │ │ ├── init(viewcontroller:toplevel:layoutposition:) │ │ │ │ └── index.html │ │ │ └── init(viewcontroller:toplevelview:layoutposition:) │ │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── bottom │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── top │ │ │ │ └── index.html │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── image │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── localizedlabel │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkrequestui │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center │ │ │ │ └── index.html │ │ │ ├── frame │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── ishidden │ │ │ │ └── index.html │ │ │ ├── startanimating() │ │ │ │ └── index.html │ │ │ └── stopanimating() │ │ │ │ └── index.html │ │ │ ├── zdksuasdebuglogger │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier() │ │ │ │ └── index.html │ │ │ ├── filesize │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── title │ │ │ │ └── index.html │ │ │ ├── zdktheme │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss() │ │ │ │ └── index.html │ │ │ ├── hidetoastview(_:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isvisible │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:) │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:buttontitle:action:) │ │ │ │ └── index.html │ │ │ └── showerror(in:withmessage:duration:) │ │ │ │ └── index.html │ │ │ ├── zdkuiislandscape() │ │ │ └── index.html │ │ │ ├── zdkuiorigininwindow(_:) │ │ │ └── index.html │ │ │ ├── zdkuiscreenframe() │ │ │ └── index.html │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96 │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:selector:)-4i9sm │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:whencontainedin:selector:) │ │ │ │ └── index.html │ │ │ ├── buildbutton(withframe:andtitle:) │ │ │ │ └── index.html │ │ │ ├── currentinterfaceorientation() │ │ │ │ └── index.html │ │ │ ├── fixorientation(of:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── islandscape() │ │ │ │ └── index.html │ │ │ ├── isnewerversion(_:) │ │ │ │ └── index.html │ │ │ ├── isolderversion(_:) │ │ │ │ └── index.html │ │ │ ├── ispad() │ │ │ │ └── index.html │ │ │ ├── issameversion(_:) │ │ │ │ └── index.html │ │ │ ├── scaledheight(for:constrainedbywidth:) │ │ │ │ └── index.html │ │ │ ├── separatorheightforscreenscale() │ │ │ │ └── index.html │ │ │ └── shouldenableattachments(_:) │ │ │ │ └── index.html │ │ │ ├── zdlog │ │ │ └── index.html │ │ │ └── zduispinner │ │ │ └── index.html │ ├── favicon.ico │ ├── favicon.svg │ ├── img │ │ ├── added-icon.d6f7e47d.svg │ │ ├── deprecated-icon.015b4f17.svg │ │ ├── modified-icon.f496e73d.svg │ │ └── no-image@2x.df2a0a50.png │ ├── index.html │ ├── index │ │ ├── availability.index │ │ ├── data.mdb │ │ ├── index.json │ │ └── navigator.index │ ├── js │ │ ├── chunk-2d0d3105.cd72cc8e.js │ │ ├── chunk-c0335d80.76a68cc5.js │ │ ├── chunk-vendors.ba2dd0cb.js │ │ ├── documentation-topic.57e91f8a.js │ │ ├── documentation-topic~topic.1679ec90.js │ │ ├── documentation-topic~topic~tutorials-overview.90c61522.js │ │ ├── highlight-js-bash.1b52852f.js │ │ ├── highlight-js-c.d1db3f17.js │ │ ├── highlight-js-cpp.eaddddbe.js │ │ ├── highlight-js-css.75eab1fe.js │ │ ├── highlight-js-custom-markdown.7cffc4b3.js │ │ ├── highlight-js-custom-swift.5cda5c20.js │ │ ├── highlight-js-diff.62d66733.js │ │ ├── highlight-js-http.163e45b6.js │ │ ├── highlight-js-java.8326d9d8.js │ │ ├── highlight-js-javascript.acb8a8eb.js │ │ ├── highlight-js-json.471128d2.js │ │ ├── highlight-js-llvm.6100b125.js │ │ ├── highlight-js-markdown.90077643.js │ │ ├── highlight-js-objectivec.bcdf5156.js │ │ ├── highlight-js-perl.757d7b6f.js │ │ ├── highlight-js-php.cc8d6c27.js │ │ ├── highlight-js-python.c214ed92.js │ │ ├── highlight-js-ruby.f889d392.js │ │ ├── highlight-js-scss.62ee18da.js │ │ ├── highlight-js-shell.dd7f411f.js │ │ ├── highlight-js-swift.84f3e88c.js │ │ ├── highlight-js-xml.9c3688c7.js │ │ ├── index.e8a5d294.js │ │ ├── topic.8cd0c0c4.js │ │ └── tutorials-overview.2a32cd6f.js │ └── metadata.json ├── 8.0.3 │ ├── css │ │ ├── chunk-c0335d80.10a2f091.css │ │ ├── documentation-topic.1d1eec04.css │ │ ├── documentation-topic~topic.b6287bcf.css │ │ ├── documentation-topic~topic~tutorials-overview.d6f5411c.css │ │ ├── index.038e887c.css │ │ ├── topic.d8c126f3.css │ │ └── tutorials-overview.c249c765.css │ ├── data │ │ └── documentation │ │ │ ├── supportsdk.json │ │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks.json │ │ │ ├── +(_:_:)-8bv54.json │ │ │ ├── action.json │ │ │ ├── actionlistenerfunction.json │ │ │ ├── actionsubscription.json │ │ │ ├── actionsubscription │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── alwaysfilter.json │ │ │ ├── applicationtype.json │ │ │ ├── applicationtype │ │ │ └── topwindow.json │ │ │ ├── articleuiconfiguration.json │ │ │ ├── articleuiconfiguration │ │ │ ├── engines.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── objcengines.json │ │ │ └── showcontactoptions.json │ │ │ ├── asyncaction.json │ │ │ ├── asyncaction │ │ │ └── execute(getstate:dispatch:).json │ │ │ ├── asyncmiddleware.json │ │ │ ├── asyncmiddleware │ │ │ ├── init().json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockasyncaction.json │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:).json │ │ │ └── init(executionblock:).json │ │ │ ├── blockmiddleware.json │ │ │ ├── blockmiddleware │ │ │ ├── init(actionfunction:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockreducer.json │ │ │ ├── blockreducer │ │ │ ├── init(initialstate:reduce:).json │ │ │ ├── init(initialstate:statekey:reduce:).json │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ └── statekey.json │ │ │ ├── cgcenterrectinrect(_:_:).json │ │ │ ├── cgmakecenteredrectinrect(_:_:_:).json │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:).json │ │ │ ├── cgrectmakecenteredinscreen(_:_:).json │ │ │ ├── combinedreducer.json │ │ │ ├── combinedreducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── reducer-implementations.json │ │ │ └── statekey.json │ │ │ ├── containerchild.json │ │ │ ├── containerchild │ │ │ └── childdelegate.json │ │ │ ├── containerchildcontroller.json │ │ │ ├── containerchildcontrollerdelegate.json │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── navitem.json │ │ │ └── willdismiss().json │ │ │ ├── containerviewcontroller.json │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations.json │ │ │ ├── initwithcoder:.json │ │ │ ├── initwithnibname:bundle:.json │ │ │ ├── navitem.json │ │ │ ├── viewdidload().json │ │ │ └── willdismiss().json │ │ │ ├── coordinatingviewcontroller.json │ │ │ ├── coordinatingviewcontroller │ │ │ ├── init(coordinator:).json │ │ │ ├── viewdidappear(_:).json │ │ │ ├── viewdiddisappear(_:).json │ │ │ ├── viewdidload().json │ │ │ └── viewwillappear(_:).json │ │ │ ├── coordinator.json │ │ │ ├── coordinator │ │ │ └── start(present:with:).json │ │ │ ├── defaultlogger.json │ │ │ ├── dismissutil.json │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:).json │ │ │ ├── navigationcontroller(_:didpush:).json │ │ │ └── remove(_:from:).json │ │ │ ├── dispatchfunction.json │ │ │ ├── equalsfilter.json │ │ │ ├── filetype.json │ │ │ ├── filetype │ │ │ ├── !=(_:_:).json │ │ │ ├── binary.json │ │ │ ├── equatable-implementations.json │ │ │ ├── excel.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── heic.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── jpg.json │ │ │ ├── keynote.json │ │ │ ├── numbers.json │ │ │ ├── pages.json │ │ │ ├── pdf.json │ │ │ ├── plain.json │ │ │ ├── png.json │ │ │ ├── powerpoint.json │ │ │ ├── powerpointx.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── word.json │ │ │ ├── filterfunction.json │ │ │ ├── getstatefunction.json │ │ │ ├── helpcenterarticlevotinghandler.json │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ ├── currentarticlevote().json │ │ │ └── init(witharticleid:andlocale:).json │ │ │ ├── helpcentercontactusrouter.json │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch().json │ │ │ ├── decidebuttonactionfornavbar().json │ │ │ └── init(withpresentingviewcontroller:configurations:engines:).json │ │ │ ├── helpcentercoordinator.json │ │ │ ├── helpcentercoordinator │ │ │ ├── init(helpcentercontroller:uiconfigurations:).json │ │ │ └── start(present:with:).json │ │ │ ├── helpcenterdelegate.json │ │ │ ├── helpcenterui.json │ │ │ ├── helpcenteruiconfiguration.json │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines.json │ │ │ ├── groupids.json │ │ │ ├── grouptype.json │ │ │ ├── init().json │ │ │ ├── labels.json │ │ │ ├── objcengines.json │ │ │ ├── overviewcontentmodel.json │ │ │ ├── showcontactoptions.json │ │ │ └── showcontactoptionsonemptysearch.json │ │ │ ├── keyedstate.json │ │ │ ├── listenerfunction.json │ │ │ ├── loggermiddleware.json │ │ │ ├── loggermiddleware │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middleware.json │ │ │ ├── middleware │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middlewarefunction.json │ │ │ ├── nextfunction.json │ │ │ ├── reducer.json │ │ │ ├── reducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── statekey-65k0h.json │ │ │ ├── statekey-9741m.json │ │ │ └── statetype.json │ │ │ ├── reducerfunction.json │ │ │ ├── requestattachment.json │ │ │ ├── requestattachment │ │ │ ├── data.json │ │ │ ├── filename.json │ │ │ ├── filetype.json │ │ │ └── init(filename:data:filetype:).json │ │ │ ├── requestcoordinator.json │ │ │ ├── requestcoordinator │ │ │ └── start(present:with:).json │ │ │ ├── requestlistuiconfiguration.json │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation.json │ │ │ ├── init().json │ │ │ └── isequal(_:).json │ │ │ ├── requestui.json │ │ │ ├── requestui │ │ │ ├── buildrequestlist().json │ │ │ ├── buildrequestlist(with:).json │ │ │ ├── buildrequestui().json │ │ │ ├── buildrequestui(requestid:).json │ │ │ ├── buildrequestui(requestid:configurations:).json │ │ │ └── buildrequestui(with:).json │ │ │ ├── requestuiconfiguration.json │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields.json │ │ │ ├── fileattachments.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── subject.json │ │ │ ├── tags.json │ │ │ └── ticketformid.json │ │ │ ├── state.json │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ │ ├── init(dictionary:).json │ │ │ ├── init(dictionaryliteral:).json │ │ │ ├── keys.json │ │ │ ├── subscript(_:).json │ │ │ ├── subscript(forkey:oftype:).json │ │ │ ├── subscript(forkeyoftype:).json │ │ │ ├── value(forkey:).json │ │ │ ├── value(forkey:oftype:).json │ │ │ └── value(forkeyoftype:).json │ │ │ ├── statekey.json │ │ │ ├── stateselector.json │ │ │ ├── store.json │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:).json │ │ │ ├── addlistener(forstatetype:statekey:if:callback:).json │ │ │ ├── addlistener(if:callback:).json │ │ │ ├── addlistener(if:stateselector:callback:).json │ │ │ ├── dispatch(action:).json │ │ │ ├── reset(state:).json │ │ │ ├── reset(state:forkey:).json │ │ │ ├── resetfullstate(_:).json │ │ │ └── state.json │ │ │ ├── suas.json │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:).json │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl.json │ │ │ ├── createstore(reducer:state:middleware:)-4w130.json │ │ │ └── enabledebuglogging.json │ │ │ ├── suasdebuglogger.json │ │ │ ├── suasdebuglogger │ │ │ └── enabled.json │ │ │ ├── suasdynamicequatable.json │ │ │ ├── suasdynamicequatable │ │ │ ├── isequal(to:)-19mke.json │ │ │ └── isequal(to:)-28xku.json │ │ │ ├── subscription.json │ │ │ ├── subscription │ │ │ ├── informwithcurrentstate().json │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── supportengine.json │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configs.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── supportsdk_h.json │ │ │ ├── supportui.json │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride.json │ │ │ ├── initialize(withzendesk:).json │ │ │ ├── instance.json │ │ │ └── refreshrequest(requestid:).json │ │ │ ├── swift.json │ │ │ ├── swift │ │ │ ├── string.json │ │ │ └── string │ │ │ │ ├── isequal(to:).json │ │ │ │ └── suasdynamicequatable-implementations.json │ │ │ ├── system_version_greater_than_seven.json │ │ │ ├── theme.json │ │ │ ├── theme │ │ │ ├── currenttheme.json │ │ │ └── primarycolor.json │ │ │ ├── uikit.json │ │ │ ├── uikit │ │ │ ├── uiapplication.json │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations.json │ │ │ │ └── topwindow.json │ │ │ ├── window.json │ │ │ ├── window │ │ │ ├── addsubview(_:).json │ │ │ ├── bounds.json │ │ │ ├── layer.json │ │ │ └── windowlevel.json │ │ │ ├── zd_is_ipad.json │ │ │ ├── zd_is_iphone.json │ │ │ ├── zdkconstants.json │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast().json │ │ │ └── init.json │ │ │ ├── zdkcontactusvisibility.json │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:).json │ │ │ ├── articlelistandarticle.json │ │ │ ├── articlelistonly.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── off.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkcreaterequestuidelegate.json │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage().json │ │ │ ├── createrequestbarbuttonlocalizedlabel().json │ │ │ └── navbarcreaterequestuitype().json │ │ │ ├── zdkdismissutil │ │ │ └── init.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ └── currentarticlevote().json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol.json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ └── updatebuttonstatesforbutton(atindexselected:).json │ │ │ ├── zdkhelpcenterattachmentsdatasource.json │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ └── init(articleid:).json │ │ │ ├── zdkhelpcentercellconfigureblock.json │ │ │ ├── zdkhelpcenterconversationsuidelegate.json │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active().json │ │ │ ├── conversationsbarbuttonimage().json │ │ │ ├── conversationsbarbuttonlocalizedlabel().json │ │ │ └── navbarconversationsuitype().json │ │ │ ├── zdkhelpcenterdatasource.json │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource().json │ │ │ ├── hasitems.json │ │ │ ├── item(at:).json │ │ │ ├── items.json │ │ │ ├── provider.json │ │ │ └── reloaddata().json │ │ │ ├── zdkhelpcenterdelegate.json │ │ │ ├── zdkhelpcenterdelegate │ │ │ └── uidelegate.json │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription.json │ │ │ ├── zdkhelpcentererror.json │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:).json │ │ │ ├── emptyhelpcenter.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── invalidcategoryids.json │ │ │ ├── invalidsectionids.json │ │ │ ├── noarticlesforlabels.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkhelpcentererrordomain.json │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription.json │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription.json │ │ │ ├── zdkhelpcenternosectionslocaliseddescription.json │ │ │ ├── zdkhelpcenterui.json │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:).json │ │ │ ├── build(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(_:).json │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenteroverview().json │ │ │ ├── buildhelpcenteroverview(withconfigs:).json │ │ │ ├── buildhelpcenteroverviewui().json │ │ │ └── buildhelpcenteroverviewui(withconfigs:).json │ │ │ ├── zdklayoutguideapplicator.json │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── init(viewcontroller:toplevel:layoutposition:).json │ │ │ └── init(viewcontroller:toplevelview:layoutposition:).json │ │ │ ├── zdklayoutguideapplicatorposition.json │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:).json │ │ │ ├── bottom.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── top.json │ │ │ ├── zdknavbarcreaterequestuitype.json │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── image.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── localizedlabel.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkrequestui │ │ │ └── init.json │ │ │ ├── zdkspinnerdelegate.json │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center.json │ │ │ ├── frame.json │ │ │ ├── ishidden.json │ │ │ ├── startanimating().json │ │ │ └── stopanimating().json │ │ │ ├── zdksuasdebuglogger │ │ │ └── init.json │ │ │ ├── zdksupportattachmentcell.json │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier().json │ │ │ ├── filesize.json │ │ │ └── title.json │ │ │ ├── zdktheme │ │ │ └── init.json │ │ │ ├── zdktoastviewwrapper.json │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss().json │ │ │ ├── hidetoastview(_:).json │ │ │ ├── isvisible.json │ │ │ ├── showerror(in:withmessage:).json │ │ │ ├── showerror(in:withmessage:buttontitle:action:).json │ │ │ └── showerror(in:withmessage:duration:).json │ │ │ ├── zdkuiislandscape().json │ │ │ ├── zdkuiorigininwindow(_:).json │ │ │ ├── zdkuiscreenframe().json │ │ │ ├── zdkuiutil.json │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96.json │ │ │ ├── appearancevalue(for:selector:)-4i9sm.json │ │ │ ├── appearancevalue(for:whencontainedin:selector:).json │ │ │ ├── buildbutton(withframe:andtitle:).json │ │ │ ├── currentinterfaceorientation().json │ │ │ ├── fixorientation(of:).json │ │ │ ├── islandscape().json │ │ │ ├── isnewerversion(_:).json │ │ │ ├── isolderversion(_:).json │ │ │ ├── ispad().json │ │ │ ├── issameversion(_:).json │ │ │ ├── scaledheight(for:constrainedbywidth:).json │ │ │ ├── separatorheightforscreenscale().json │ │ │ └── shouldenableattachments(_:).json │ │ │ ├── zdlog.json │ │ │ └── zduispinner.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks │ │ │ └── index.html │ │ │ ├── +(_:_:)-8bv54 │ │ │ └── index.html │ │ │ ├── action │ │ │ └── index.html │ │ │ ├── actionlistenerfunction │ │ │ └── index.html │ │ │ ├── actionsubscription │ │ │ ├── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── alwaysfilter │ │ │ └── index.html │ │ │ ├── applicationtype │ │ │ ├── index.html │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── articleuiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ └── showcontactoptions │ │ │ │ └── index.html │ │ │ ├── asyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── asyncmiddleware │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(executionblock:) │ │ │ │ └── index.html │ │ │ ├── blockmiddleware │ │ │ ├── index.html │ │ │ ├── init(actionfunction:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockreducer │ │ │ ├── index.html │ │ │ ├── init(initialstate:reduce:) │ │ │ │ └── index.html │ │ │ ├── init(initialstate:statekey:reduce:) │ │ │ │ └── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── cgcenterrectinrect(_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectinrect(_:_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:) │ │ │ └── index.html │ │ │ ├── cgrectmakecenteredinscreen(_:_:) │ │ │ └── index.html │ │ │ ├── combinedreducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── reducer-implementations │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── containerchild │ │ │ ├── childdelegate │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── containerchildcontroller │ │ │ └── index.html │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initwithcoder: │ │ │ │ └── index.html │ │ │ ├── initwithnibname:bundle: │ │ │ │ └── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── coordinatingviewcontroller │ │ │ ├── index.html │ │ │ ├── init(coordinator:) │ │ │ │ └── index.html │ │ │ ├── viewdidappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdiddisappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── viewwillappear(_:) │ │ │ │ └── index.html │ │ │ ├── coordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── defaultlogger │ │ │ └── index.html │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── navigationcontroller(_:didpush:) │ │ │ │ └── index.html │ │ │ └── remove(_:from:) │ │ │ │ └── index.html │ │ │ ├── dispatchfunction │ │ │ └── index.html │ │ │ ├── equalsfilter │ │ │ └── index.html │ │ │ ├── filetype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── binary │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── excel │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── heic │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── jpg │ │ │ │ └── index.html │ │ │ ├── keynote │ │ │ │ └── index.html │ │ │ ├── numbers │ │ │ │ └── index.html │ │ │ ├── pages │ │ │ │ └── index.html │ │ │ ├── pdf │ │ │ │ └── index.html │ │ │ ├── plain │ │ │ │ └── index.html │ │ │ ├── png │ │ │ │ └── index.html │ │ │ ├── powerpoint │ │ │ │ └── index.html │ │ │ ├── powerpointx │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── word │ │ │ │ └── index.html │ │ │ ├── filterfunction │ │ │ └── index.html │ │ │ ├── getstatefunction │ │ │ └── index.html │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(witharticleid:andlocale:) │ │ │ │ └── index.html │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch() │ │ │ │ └── index.html │ │ │ ├── decidebuttonactionfornavbar() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(withpresentingviewcontroller:configurations:engines:) │ │ │ │ └── index.html │ │ │ ├── helpcentercoordinator │ │ │ ├── index.html │ │ │ ├── init(helpcentercontroller:uiconfigurations:) │ │ │ │ └── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── helpcenterdelegate │ │ │ └── index.html │ │ │ ├── helpcenterui │ │ │ └── index.html │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── groupids │ │ │ │ └── index.html │ │ │ ├── grouptype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── labels │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ ├── overviewcontentmodel │ │ │ │ └── index.html │ │ │ ├── showcontactoptions │ │ │ │ └── index.html │ │ │ └── showcontactoptionsonemptysearch │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── keyedstate │ │ │ └── index.html │ │ │ ├── listenerfunction │ │ │ └── index.html │ │ │ ├── loggermiddleware │ │ │ ├── index.html │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middleware │ │ │ ├── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middlewarefunction │ │ │ └── index.html │ │ │ ├── nextfunction │ │ │ └── index.html │ │ │ ├── reducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── statekey-65k0h │ │ │ │ └── index.html │ │ │ ├── statekey-9741m │ │ │ │ └── index.html │ │ │ └── statetype │ │ │ │ └── index.html │ │ │ ├── reducerfunction │ │ │ └── index.html │ │ │ ├── requestattachment │ │ │ ├── data │ │ │ │ └── index.html │ │ │ ├── filename │ │ │ │ └── index.html │ │ │ ├── filetype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(filename:data:filetype:) │ │ │ │ └── index.html │ │ │ ├── requestcoordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── requestui │ │ │ ├── buildrequestlist() │ │ │ │ └── index.html │ │ │ ├── buildrequestlist(with:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui() │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:configurations:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(with:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields │ │ │ │ └── index.html │ │ │ ├── fileattachments │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── subject │ │ │ │ └── index.html │ │ │ ├── tags │ │ │ │ └── index.html │ │ │ └── ticketformid │ │ │ │ └── index.html │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(dictionary:) │ │ │ │ └── index.html │ │ │ ├── init(dictionaryliteral:) │ │ │ │ └── index.html │ │ │ ├── keys │ │ │ │ └── index.html │ │ │ ├── subscript(_:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkey:oftype:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:oftype:) │ │ │ │ └── index.html │ │ │ └── value(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── statekey │ │ │ └── index.html │ │ │ ├── stateselector │ │ │ └── index.html │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:) │ │ │ │ └── index.html │ │ │ ├── addlistener(forstatetype:statekey:if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:stateselector:callback:) │ │ │ │ └── index.html │ │ │ ├── dispatch(action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── reset(state:) │ │ │ │ └── index.html │ │ │ ├── reset(state:forkey:) │ │ │ │ └── index.html │ │ │ ├── resetfullstate(_:) │ │ │ │ └── index.html │ │ │ └── state │ │ │ │ └── index.html │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:) │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-4w130 │ │ │ │ └── index.html │ │ │ ├── enabledebuglogging │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdebuglogger │ │ │ ├── enabled │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdynamicequatable │ │ │ ├── index.html │ │ │ ├── isequal(to:)-19mke │ │ │ │ └── index.html │ │ │ └── isequal(to:)-28xku │ │ │ │ └── index.html │ │ │ ├── subscription │ │ │ ├── index.html │ │ │ ├── informwithcurrentstate() │ │ │ │ └── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configs │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── notifyobservers(_:) │ │ │ │ └── index.html │ │ │ ├── observable-implementations │ │ │ │ └── index.html │ │ │ ├── observeupdates(_:) │ │ │ │ └── index.html │ │ │ ├── onevent(_:) │ │ │ │ └── index.html │ │ │ ├── onupdate │ │ │ │ └── index.html │ │ │ ├── start(messagingapi:) │ │ │ │ └── index.html │ │ │ ├── stop() │ │ │ │ └── index.html │ │ │ └── transferoptiondescription │ │ │ │ └── index.html │ │ │ ├── supportsdk_h │ │ │ └── index.html │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initialize(withzendesk:) │ │ │ │ └── index.html │ │ │ ├── instance │ │ │ │ └── index.html │ │ │ └── refreshrequest(requestid:) │ │ │ │ └── index.html │ │ │ ├── swift │ │ │ ├── index.html │ │ │ └── string │ │ │ │ ├── index.html │ │ │ │ ├── isequal(to:) │ │ │ │ └── index.html │ │ │ │ └── suasdynamicequatable-implementations │ │ │ │ └── index.html │ │ │ ├── system_version_greater_than_seven │ │ │ └── index.html │ │ │ ├── theme │ │ │ ├── currenttheme │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── primarycolor │ │ │ │ └── index.html │ │ │ ├── uikit │ │ │ ├── index.html │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── window │ │ │ ├── addsubview(_:) │ │ │ │ └── index.html │ │ │ ├── bounds │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── layer │ │ │ │ └── index.html │ │ │ └── windowlevel │ │ │ │ └── index.html │ │ │ ├── zd_is_ipad │ │ │ └── index.html │ │ │ ├── zd_is_iphone │ │ │ └── index.html │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── articlelistandarticle │ │ │ │ └── index.html │ │ │ ├── articlelistonly │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── off │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── createrequestbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarcreaterequestuitype() │ │ │ │ └── index.html │ │ │ ├── zdkdismissutil │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ ├── index.html │ │ │ └── updatebuttonstatesforbutton(atindexselected:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ ├── index.html │ │ │ └── init(articleid:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentercellconfigureblock │ │ │ └── index.html │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarconversationsuitype() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource() │ │ │ │ └── index.html │ │ │ ├── hasitems │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── item(at:) │ │ │ │ └── index.html │ │ │ ├── items │ │ │ │ └── index.html │ │ │ ├── provider │ │ │ │ └── index.html │ │ │ └── reloaddata() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdelegate │ │ │ ├── index.html │ │ │ └── uidelegate │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emptyhelpcenter │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── invalidcategoryids │ │ │ │ └── index.html │ │ │ ├── invalidsectionids │ │ │ │ └── index.html │ │ │ ├── noarticlesforlabels │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentererrordomain │ │ │ └── index.html │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternosectionslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:) │ │ │ │ └── index.html │ │ │ ├── build(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview(withconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui(withconfigs:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── index.html │ │ │ ├── init(viewcontroller:toplevel:layoutposition:) │ │ │ │ └── index.html │ │ │ └── init(viewcontroller:toplevelview:layoutposition:) │ │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── bottom │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── top │ │ │ │ └── index.html │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── image │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── localizedlabel │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkrequestui │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center │ │ │ │ └── index.html │ │ │ ├── frame │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── ishidden │ │ │ │ └── index.html │ │ │ ├── startanimating() │ │ │ │ └── index.html │ │ │ └── stopanimating() │ │ │ │ └── index.html │ │ │ ├── zdksuasdebuglogger │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier() │ │ │ │ └── index.html │ │ │ ├── filesize │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── title │ │ │ │ └── index.html │ │ │ ├── zdktheme │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss() │ │ │ │ └── index.html │ │ │ ├── hidetoastview(_:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isvisible │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:) │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:buttontitle:action:) │ │ │ │ └── index.html │ │ │ └── showerror(in:withmessage:duration:) │ │ │ │ └── index.html │ │ │ ├── zdkuiislandscape() │ │ │ └── index.html │ │ │ ├── zdkuiorigininwindow(_:) │ │ │ └── index.html │ │ │ ├── zdkuiscreenframe() │ │ │ └── index.html │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96 │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:selector:)-4i9sm │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:whencontainedin:selector:) │ │ │ │ └── index.html │ │ │ ├── buildbutton(withframe:andtitle:) │ │ │ │ └── index.html │ │ │ ├── currentinterfaceorientation() │ │ │ │ └── index.html │ │ │ ├── fixorientation(of:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── islandscape() │ │ │ │ └── index.html │ │ │ ├── isnewerversion(_:) │ │ │ │ └── index.html │ │ │ ├── isolderversion(_:) │ │ │ │ └── index.html │ │ │ ├── ispad() │ │ │ │ └── index.html │ │ │ ├── issameversion(_:) │ │ │ │ └── index.html │ │ │ ├── scaledheight(for:constrainedbywidth:) │ │ │ │ └── index.html │ │ │ ├── separatorheightforscreenscale() │ │ │ │ └── index.html │ │ │ └── shouldenableattachments(_:) │ │ │ │ └── index.html │ │ │ ├── zdlog │ │ │ └── index.html │ │ │ └── zduispinner │ │ │ └── index.html │ ├── favicon.ico │ ├── favicon.svg │ ├── img │ │ ├── added-icon.d6f7e47d.svg │ │ ├── deprecated-icon.015b4f17.svg │ │ ├── modified-icon.f496e73d.svg │ │ └── no-image@2x.df2a0a50.png │ ├── index.html │ ├── index │ │ ├── availability.index │ │ ├── data.mdb │ │ ├── index.json │ │ └── navigator.index │ ├── js │ │ ├── chunk-2d0d3105.cd72cc8e.js │ │ ├── chunk-c0335d80.76a68cc5.js │ │ ├── chunk-vendors.ba2dd0cb.js │ │ ├── documentation-topic.57e91f8a.js │ │ ├── documentation-topic~topic.1679ec90.js │ │ ├── documentation-topic~topic~tutorials-overview.90c61522.js │ │ ├── highlight-js-bash.1b52852f.js │ │ ├── highlight-js-c.d1db3f17.js │ │ ├── highlight-js-cpp.eaddddbe.js │ │ ├── highlight-js-css.75eab1fe.js │ │ ├── highlight-js-custom-markdown.7cffc4b3.js │ │ ├── highlight-js-custom-swift.5cda5c20.js │ │ ├── highlight-js-diff.62d66733.js │ │ ├── highlight-js-http.163e45b6.js │ │ ├── highlight-js-java.8326d9d8.js │ │ ├── highlight-js-javascript.acb8a8eb.js │ │ ├── highlight-js-json.471128d2.js │ │ ├── highlight-js-llvm.6100b125.js │ │ ├── highlight-js-markdown.90077643.js │ │ ├── highlight-js-objectivec.bcdf5156.js │ │ ├── highlight-js-perl.757d7b6f.js │ │ ├── highlight-js-php.cc8d6c27.js │ │ ├── highlight-js-python.c214ed92.js │ │ ├── highlight-js-ruby.f889d392.js │ │ ├── highlight-js-scss.62ee18da.js │ │ ├── highlight-js-shell.dd7f411f.js │ │ ├── highlight-js-swift.84f3e88c.js │ │ ├── highlight-js-xml.9c3688c7.js │ │ ├── index.e8a5d294.js │ │ ├── topic.8cd0c0c4.js │ │ └── tutorials-overview.2a32cd6f.js │ └── metadata.json ├── 8.0.4 │ ├── css │ │ ├── chunk-c0335d80.10a2f091.css │ │ ├── documentation-topic.1d1eec04.css │ │ ├── documentation-topic~topic.b6287bcf.css │ │ ├── documentation-topic~topic~tutorials-overview.d6f5411c.css │ │ ├── index.038e887c.css │ │ ├── topic.d8c126f3.css │ │ └── tutorials-overview.c249c765.css │ ├── data │ │ └── documentation │ │ │ ├── supportsdk.json │ │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks.json │ │ │ ├── +(_:_:)-8bv54.json │ │ │ ├── action.json │ │ │ ├── actionlistenerfunction.json │ │ │ ├── actionsubscription.json │ │ │ ├── actionsubscription │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── alwaysfilter.json │ │ │ ├── applicationtype.json │ │ │ ├── applicationtype │ │ │ └── topwindow.json │ │ │ ├── articleuiconfiguration.json │ │ │ ├── articleuiconfiguration │ │ │ ├── engines.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── objcengines.json │ │ │ └── showcontactoptions.json │ │ │ ├── asyncaction.json │ │ │ ├── asyncaction │ │ │ └── execute(getstate:dispatch:).json │ │ │ ├── asyncmiddleware.json │ │ │ ├── asyncmiddleware │ │ │ ├── init().json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockasyncaction.json │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:).json │ │ │ └── init(executionblock:).json │ │ │ ├── blockmiddleware.json │ │ │ ├── blockmiddleware │ │ │ ├── init(actionfunction:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockreducer.json │ │ │ ├── blockreducer │ │ │ ├── init(initialstate:reduce:).json │ │ │ ├── init(initialstate:statekey:reduce:).json │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ └── statekey.json │ │ │ ├── cgcenterrectinrect(_:_:).json │ │ │ ├── cgmakecenteredrectinrect(_:_:_:).json │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:).json │ │ │ ├── cgrectmakecenteredinscreen(_:_:).json │ │ │ ├── combinedreducer.json │ │ │ ├── combinedreducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── reducer-implementations.json │ │ │ └── statekey.json │ │ │ ├── containerchild.json │ │ │ ├── containerchild │ │ │ └── childdelegate.json │ │ │ ├── containerchildcontroller.json │ │ │ ├── containerchildcontrollerdelegate.json │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── navitem.json │ │ │ └── willdismiss().json │ │ │ ├── containerviewcontroller.json │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations.json │ │ │ ├── initwithcoder:.json │ │ │ ├── initwithnibname:bundle:.json │ │ │ ├── navitem.json │ │ │ ├── viewdidload().json │ │ │ └── willdismiss().json │ │ │ ├── coordinatingviewcontroller.json │ │ │ ├── coordinatingviewcontroller │ │ │ ├── init(coordinator:).json │ │ │ ├── viewdidappear(_:).json │ │ │ ├── viewdiddisappear(_:).json │ │ │ ├── viewdidload().json │ │ │ └── viewwillappear(_:).json │ │ │ ├── coordinator.json │ │ │ ├── coordinator │ │ │ └── start(present:with:).json │ │ │ ├── defaultlogger.json │ │ │ ├── dismissutil.json │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:).json │ │ │ ├── navigationcontroller(_:didpush:).json │ │ │ └── remove(_:from:).json │ │ │ ├── dispatchfunction.json │ │ │ ├── equalsfilter.json │ │ │ ├── filetype.json │ │ │ ├── filetype │ │ │ ├── !=(_:_:).json │ │ │ ├── binary.json │ │ │ ├── equatable-implementations.json │ │ │ ├── excel.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── heic.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── jpg.json │ │ │ ├── keynote.json │ │ │ ├── numbers.json │ │ │ ├── pages.json │ │ │ ├── pdf.json │ │ │ ├── plain.json │ │ │ ├── png.json │ │ │ ├── powerpoint.json │ │ │ ├── powerpointx.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── word.json │ │ │ ├── filterfunction.json │ │ │ ├── getstatefunction.json │ │ │ ├── helpcenterarticlevotinghandler.json │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ ├── currentarticlevote().json │ │ │ └── init(witharticleid:andlocale:).json │ │ │ ├── helpcentercontactusrouter.json │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch().json │ │ │ ├── decidebuttonactionfornavbar().json │ │ │ └── init(withpresentingviewcontroller:configurations:engines:).json │ │ │ ├── helpcentercoordinator.json │ │ │ ├── helpcentercoordinator │ │ │ ├── init(helpcentercontroller:uiconfigurations:).json │ │ │ └── start(present:with:).json │ │ │ ├── helpcenterdelegate.json │ │ │ ├── helpcenterui.json │ │ │ ├── helpcenteruiconfiguration.json │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines.json │ │ │ ├── groupids.json │ │ │ ├── grouptype.json │ │ │ ├── init().json │ │ │ ├── labels.json │ │ │ ├── objcengines.json │ │ │ ├── overviewcontentmodel.json │ │ │ ├── showcontactoptions.json │ │ │ └── showcontactoptionsonemptysearch.json │ │ │ ├── keyedstate.json │ │ │ ├── listenerfunction.json │ │ │ ├── loggermiddleware.json │ │ │ ├── loggermiddleware │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middleware.json │ │ │ ├── middleware │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middlewarefunction.json │ │ │ ├── nextfunction.json │ │ │ ├── reducer.json │ │ │ ├── reducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── statekey-65k0h.json │ │ │ ├── statekey-9741m.json │ │ │ └── statetype.json │ │ │ ├── reducerfunction.json │ │ │ ├── requestattachment.json │ │ │ ├── requestattachment │ │ │ ├── data.json │ │ │ ├── filename.json │ │ │ ├── filetype.json │ │ │ └── init(filename:data:filetype:).json │ │ │ ├── requestcoordinator.json │ │ │ ├── requestcoordinator │ │ │ └── start(present:with:).json │ │ │ ├── requestlistuiconfiguration.json │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation.json │ │ │ ├── init().json │ │ │ └── isequal(_:).json │ │ │ ├── requestui.json │ │ │ ├── requestui │ │ │ ├── buildrequestlist().json │ │ │ ├── buildrequestlist(with:).json │ │ │ ├── buildrequestui().json │ │ │ ├── buildrequestui(requestid:).json │ │ │ ├── buildrequestui(requestid:configurations:).json │ │ │ └── buildrequestui(with:).json │ │ │ ├── requestuiconfiguration.json │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields.json │ │ │ ├── fileattachments.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── subject.json │ │ │ ├── tags.json │ │ │ └── ticketformid.json │ │ │ ├── state.json │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ │ ├── init(dictionary:).json │ │ │ ├── init(dictionaryliteral:).json │ │ │ ├── keys.json │ │ │ ├── subscript(_:).json │ │ │ ├── subscript(forkey:oftype:).json │ │ │ ├── subscript(forkeyoftype:).json │ │ │ ├── value(forkey:).json │ │ │ ├── value(forkey:oftype:).json │ │ │ └── value(forkeyoftype:).json │ │ │ ├── statekey.json │ │ │ ├── stateselector.json │ │ │ ├── store.json │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:).json │ │ │ ├── addlistener(forstatetype:statekey:if:callback:).json │ │ │ ├── addlistener(if:callback:).json │ │ │ ├── addlistener(if:stateselector:callback:).json │ │ │ ├── dispatch(action:).json │ │ │ ├── reset(state:).json │ │ │ ├── reset(state:forkey:).json │ │ │ ├── resetfullstate(_:).json │ │ │ └── state.json │ │ │ ├── suas.json │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:).json │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl.json │ │ │ ├── createstore(reducer:state:middleware:)-4w130.json │ │ │ └── enabledebuglogging.json │ │ │ ├── suasdebuglogger.json │ │ │ ├── suasdebuglogger │ │ │ └── enabled.json │ │ │ ├── suasdynamicequatable.json │ │ │ ├── suasdynamicequatable │ │ │ ├── isequal(to:)-19mke.json │ │ │ └── isequal(to:)-28xku.json │ │ │ ├── subscription.json │ │ │ ├── subscription │ │ │ ├── informwithcurrentstate().json │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── supportengine.json │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configs.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── supportsdk_h.json │ │ │ ├── supportui.json │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride.json │ │ │ ├── initialize(withzendesk:).json │ │ │ ├── instance.json │ │ │ └── refreshrequest(requestid:).json │ │ │ ├── swift.json │ │ │ ├── swift │ │ │ ├── string.json │ │ │ └── string │ │ │ │ ├── isequal(to:).json │ │ │ │ └── suasdynamicequatable-implementations.json │ │ │ ├── system_version_greater_than_seven.json │ │ │ ├── theme.json │ │ │ ├── theme │ │ │ ├── currenttheme.json │ │ │ └── primarycolor.json │ │ │ ├── uikit.json │ │ │ ├── uikit │ │ │ ├── uiapplication.json │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations.json │ │ │ │ └── topwindow.json │ │ │ ├── window.json │ │ │ ├── window │ │ │ ├── addsubview(_:).json │ │ │ ├── bounds.json │ │ │ ├── layer.json │ │ │ └── windowlevel.json │ │ │ ├── zd_is_ipad.json │ │ │ ├── zd_is_iphone.json │ │ │ ├── zdkconstants.json │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast().json │ │ │ └── init.json │ │ │ ├── zdkcontactusvisibility.json │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:).json │ │ │ ├── articlelistandarticle.json │ │ │ ├── articlelistonly.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── off.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkcreaterequestuidelegate.json │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage().json │ │ │ ├── createrequestbarbuttonlocalizedlabel().json │ │ │ └── navbarcreaterequestuitype().json │ │ │ ├── zdkdismissutil │ │ │ └── init.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ └── currentarticlevote().json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol.json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ └── updatebuttonstatesforbutton(atindexselected:).json │ │ │ ├── zdkhelpcenterattachmentsdatasource.json │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ └── init(articleid:).json │ │ │ ├── zdkhelpcentercellconfigureblock.json │ │ │ ├── zdkhelpcenterconversationsuidelegate.json │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active().json │ │ │ ├── conversationsbarbuttonimage().json │ │ │ ├── conversationsbarbuttonlocalizedlabel().json │ │ │ └── navbarconversationsuitype().json │ │ │ ├── zdkhelpcenterdatasource.json │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource().json │ │ │ ├── hasitems.json │ │ │ ├── item(at:).json │ │ │ ├── items.json │ │ │ ├── provider.json │ │ │ └── reloaddata().json │ │ │ ├── zdkhelpcenterdelegate.json │ │ │ ├── zdkhelpcenterdelegate │ │ │ └── uidelegate.json │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription.json │ │ │ ├── zdkhelpcentererror.json │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:).json │ │ │ ├── emptyhelpcenter.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── invalidcategoryids.json │ │ │ ├── invalidsectionids.json │ │ │ ├── noarticlesforlabels.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkhelpcentererrordomain.json │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription.json │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription.json │ │ │ ├── zdkhelpcenternosectionslocaliseddescription.json │ │ │ ├── zdkhelpcenterui.json │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:).json │ │ │ ├── build(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(_:).json │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenteroverview().json │ │ │ ├── buildhelpcenteroverview(withconfigs:).json │ │ │ ├── buildhelpcenteroverviewui().json │ │ │ └── buildhelpcenteroverviewui(withconfigs:).json │ │ │ ├── zdklayoutguideapplicator.json │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── init(viewcontroller:toplevel:layoutposition:).json │ │ │ └── init(viewcontroller:toplevelview:layoutposition:).json │ │ │ ├── zdklayoutguideapplicatorposition.json │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:).json │ │ │ ├── bottom.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── top.json │ │ │ ├── zdknavbarcreaterequestuitype.json │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── image.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── localizedlabel.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkrequestui │ │ │ └── init.json │ │ │ ├── zdkspinnerdelegate.json │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center.json │ │ │ ├── frame.json │ │ │ ├── ishidden.json │ │ │ ├── startanimating().json │ │ │ └── stopanimating().json │ │ │ ├── zdksuasdebuglogger │ │ │ └── init.json │ │ │ ├── zdksupportattachmentcell.json │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier().json │ │ │ ├── filesize.json │ │ │ └── title.json │ │ │ ├── zdktheme │ │ │ └── init.json │ │ │ ├── zdktoastviewwrapper.json │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss().json │ │ │ ├── hidetoastview(_:).json │ │ │ ├── isvisible.json │ │ │ ├── showerror(in:withmessage:).json │ │ │ ├── showerror(in:withmessage:buttontitle:action:).json │ │ │ └── showerror(in:withmessage:duration:).json │ │ │ ├── zdkuiislandscape().json │ │ │ ├── zdkuiorigininwindow(_:).json │ │ │ ├── zdkuiscreenframe().json │ │ │ ├── zdkuiutil.json │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96.json │ │ │ ├── appearancevalue(for:selector:)-4i9sm.json │ │ │ ├── appearancevalue(for:whencontainedin:selector:).json │ │ │ ├── buildbutton(withframe:andtitle:).json │ │ │ ├── currentinterfaceorientation().json │ │ │ ├── fixorientation(of:).json │ │ │ ├── islandscape().json │ │ │ ├── isnewerversion(_:).json │ │ │ ├── isolderversion(_:).json │ │ │ ├── ispad().json │ │ │ ├── issameversion(_:).json │ │ │ ├── scaledheight(for:constrainedbywidth:).json │ │ │ ├── separatorheightforscreenscale().json │ │ │ └── shouldenableattachments(_:).json │ │ │ ├── zdlog.json │ │ │ └── zduispinner.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks │ │ │ └── index.html │ │ │ ├── +(_:_:)-8bv54 │ │ │ └── index.html │ │ │ ├── action │ │ │ └── index.html │ │ │ ├── actionlistenerfunction │ │ │ └── index.html │ │ │ ├── actionsubscription │ │ │ ├── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── alwaysfilter │ │ │ └── index.html │ │ │ ├── applicationtype │ │ │ ├── index.html │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── articleuiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ └── showcontactoptions │ │ │ │ └── index.html │ │ │ ├── asyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── asyncmiddleware │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(executionblock:) │ │ │ │ └── index.html │ │ │ ├── blockmiddleware │ │ │ ├── index.html │ │ │ ├── init(actionfunction:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockreducer │ │ │ ├── index.html │ │ │ ├── init(initialstate:reduce:) │ │ │ │ └── index.html │ │ │ ├── init(initialstate:statekey:reduce:) │ │ │ │ └── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── cgcenterrectinrect(_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectinrect(_:_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:) │ │ │ └── index.html │ │ │ ├── cgrectmakecenteredinscreen(_:_:) │ │ │ └── index.html │ │ │ ├── combinedreducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── reducer-implementations │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── containerchild │ │ │ ├── childdelegate │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── containerchildcontroller │ │ │ └── index.html │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initwithcoder: │ │ │ │ └── index.html │ │ │ ├── initwithnibname:bundle: │ │ │ │ └── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── coordinatingviewcontroller │ │ │ ├── index.html │ │ │ ├── init(coordinator:) │ │ │ │ └── index.html │ │ │ ├── viewdidappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdiddisappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── viewwillappear(_:) │ │ │ │ └── index.html │ │ │ ├── coordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── defaultlogger │ │ │ └── index.html │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── navigationcontroller(_:didpush:) │ │ │ │ └── index.html │ │ │ └── remove(_:from:) │ │ │ │ └── index.html │ │ │ ├── dispatchfunction │ │ │ └── index.html │ │ │ ├── equalsfilter │ │ │ └── index.html │ │ │ ├── filetype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── binary │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── excel │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── heic │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── jpg │ │ │ │ └── index.html │ │ │ ├── keynote │ │ │ │ └── index.html │ │ │ ├── numbers │ │ │ │ └── index.html │ │ │ ├── pages │ │ │ │ └── index.html │ │ │ ├── pdf │ │ │ │ └── index.html │ │ │ ├── plain │ │ │ │ └── index.html │ │ │ ├── png │ │ │ │ └── index.html │ │ │ ├── powerpoint │ │ │ │ └── index.html │ │ │ ├── powerpointx │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── word │ │ │ │ └── index.html │ │ │ ├── filterfunction │ │ │ └── index.html │ │ │ ├── getstatefunction │ │ │ └── index.html │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(witharticleid:andlocale:) │ │ │ │ └── index.html │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch() │ │ │ │ └── index.html │ │ │ ├── decidebuttonactionfornavbar() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(withpresentingviewcontroller:configurations:engines:) │ │ │ │ └── index.html │ │ │ ├── helpcentercoordinator │ │ │ ├── index.html │ │ │ ├── init(helpcentercontroller:uiconfigurations:) │ │ │ │ └── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── helpcenterdelegate │ │ │ └── index.html │ │ │ ├── helpcenterui │ │ │ └── index.html │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── groupids │ │ │ │ └── index.html │ │ │ ├── grouptype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── labels │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ ├── overviewcontentmodel │ │ │ │ └── index.html │ │ │ ├── showcontactoptions │ │ │ │ └── index.html │ │ │ └── showcontactoptionsonemptysearch │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── keyedstate │ │ │ └── index.html │ │ │ ├── listenerfunction │ │ │ └── index.html │ │ │ ├── loggermiddleware │ │ │ ├── index.html │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middleware │ │ │ ├── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middlewarefunction │ │ │ └── index.html │ │ │ ├── nextfunction │ │ │ └── index.html │ │ │ ├── reducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── statekey-65k0h │ │ │ │ └── index.html │ │ │ ├── statekey-9741m │ │ │ │ └── index.html │ │ │ └── statetype │ │ │ │ └── index.html │ │ │ ├── reducerfunction │ │ │ └── index.html │ │ │ ├── requestattachment │ │ │ ├── data │ │ │ │ └── index.html │ │ │ ├── filename │ │ │ │ └── index.html │ │ │ ├── filetype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(filename:data:filetype:) │ │ │ │ └── index.html │ │ │ ├── requestcoordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── requestui │ │ │ ├── buildrequestlist() │ │ │ │ └── index.html │ │ │ ├── buildrequestlist(with:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui() │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:configurations:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(with:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields │ │ │ │ └── index.html │ │ │ ├── fileattachments │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── subject │ │ │ │ └── index.html │ │ │ ├── tags │ │ │ │ └── index.html │ │ │ └── ticketformid │ │ │ │ └── index.html │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(dictionary:) │ │ │ │ └── index.html │ │ │ ├── init(dictionaryliteral:) │ │ │ │ └── index.html │ │ │ ├── keys │ │ │ │ └── index.html │ │ │ ├── subscript(_:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkey:oftype:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:oftype:) │ │ │ │ └── index.html │ │ │ └── value(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── statekey │ │ │ └── index.html │ │ │ ├── stateselector │ │ │ └── index.html │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:) │ │ │ │ └── index.html │ │ │ ├── addlistener(forstatetype:statekey:if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:stateselector:callback:) │ │ │ │ └── index.html │ │ │ ├── dispatch(action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── reset(state:) │ │ │ │ └── index.html │ │ │ ├── reset(state:forkey:) │ │ │ │ └── index.html │ │ │ ├── resetfullstate(_:) │ │ │ │ └── index.html │ │ │ └── state │ │ │ │ └── index.html │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:) │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-4w130 │ │ │ │ └── index.html │ │ │ ├── enabledebuglogging │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdebuglogger │ │ │ ├── enabled │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdynamicequatable │ │ │ ├── index.html │ │ │ ├── isequal(to:)-19mke │ │ │ │ └── index.html │ │ │ └── isequal(to:)-28xku │ │ │ │ └── index.html │ │ │ ├── subscription │ │ │ ├── index.html │ │ │ ├── informwithcurrentstate() │ │ │ │ └── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configs │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── notifyobservers(_:) │ │ │ │ └── index.html │ │ │ ├── observable-implementations │ │ │ │ └── index.html │ │ │ ├── observeupdates(_:) │ │ │ │ └── index.html │ │ │ ├── onevent(_:) │ │ │ │ └── index.html │ │ │ ├── onupdate │ │ │ │ └── index.html │ │ │ ├── start(messagingapi:) │ │ │ │ └── index.html │ │ │ ├── stop() │ │ │ │ └── index.html │ │ │ └── transferoptiondescription │ │ │ │ └── index.html │ │ │ ├── supportsdk_h │ │ │ └── index.html │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initialize(withzendesk:) │ │ │ │ └── index.html │ │ │ ├── instance │ │ │ │ └── index.html │ │ │ └── refreshrequest(requestid:) │ │ │ │ └── index.html │ │ │ ├── swift │ │ │ ├── index.html │ │ │ └── string │ │ │ │ ├── index.html │ │ │ │ ├── isequal(to:) │ │ │ │ └── index.html │ │ │ │ └── suasdynamicequatable-implementations │ │ │ │ └── index.html │ │ │ ├── system_version_greater_than_seven │ │ │ └── index.html │ │ │ ├── theme │ │ │ ├── currenttheme │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── primarycolor │ │ │ │ └── index.html │ │ │ ├── uikit │ │ │ ├── index.html │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── window │ │ │ ├── addsubview(_:) │ │ │ │ └── index.html │ │ │ ├── bounds │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── layer │ │ │ │ └── index.html │ │ │ └── windowlevel │ │ │ │ └── index.html │ │ │ ├── zd_is_ipad │ │ │ └── index.html │ │ │ ├── zd_is_iphone │ │ │ └── index.html │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── articlelistandarticle │ │ │ │ └── index.html │ │ │ ├── articlelistonly │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── off │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── createrequestbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarcreaterequestuitype() │ │ │ │ └── index.html │ │ │ ├── zdkdismissutil │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ ├── index.html │ │ │ └── updatebuttonstatesforbutton(atindexselected:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ ├── index.html │ │ │ └── init(articleid:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentercellconfigureblock │ │ │ └── index.html │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarconversationsuitype() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource() │ │ │ │ └── index.html │ │ │ ├── hasitems │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── item(at:) │ │ │ │ └── index.html │ │ │ ├── items │ │ │ │ └── index.html │ │ │ ├── provider │ │ │ │ └── index.html │ │ │ └── reloaddata() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdelegate │ │ │ ├── index.html │ │ │ └── uidelegate │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emptyhelpcenter │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── invalidcategoryids │ │ │ │ └── index.html │ │ │ ├── invalidsectionids │ │ │ │ └── index.html │ │ │ ├── noarticlesforlabels │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentererrordomain │ │ │ └── index.html │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternosectionslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:) │ │ │ │ └── index.html │ │ │ ├── build(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview(withconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui(withconfigs:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── index.html │ │ │ ├── init(viewcontroller:toplevel:layoutposition:) │ │ │ │ └── index.html │ │ │ └── init(viewcontroller:toplevelview:layoutposition:) │ │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── bottom │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── top │ │ │ │ └── index.html │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── image │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── localizedlabel │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkrequestui │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center │ │ │ │ └── index.html │ │ │ ├── frame │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── ishidden │ │ │ │ └── index.html │ │ │ ├── startanimating() │ │ │ │ └── index.html │ │ │ └── stopanimating() │ │ │ │ └── index.html │ │ │ ├── zdksuasdebuglogger │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier() │ │ │ │ └── index.html │ │ │ ├── filesize │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── title │ │ │ │ └── index.html │ │ │ ├── zdktheme │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss() │ │ │ │ └── index.html │ │ │ ├── hidetoastview(_:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isvisible │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:) │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:buttontitle:action:) │ │ │ │ └── index.html │ │ │ └── showerror(in:withmessage:duration:) │ │ │ │ └── index.html │ │ │ ├── zdkuiislandscape() │ │ │ └── index.html │ │ │ ├── zdkuiorigininwindow(_:) │ │ │ └── index.html │ │ │ ├── zdkuiscreenframe() │ │ │ └── index.html │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96 │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:selector:)-4i9sm │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:whencontainedin:selector:) │ │ │ │ └── index.html │ │ │ ├── buildbutton(withframe:andtitle:) │ │ │ │ └── index.html │ │ │ ├── currentinterfaceorientation() │ │ │ │ └── index.html │ │ │ ├── fixorientation(of:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── islandscape() │ │ │ │ └── index.html │ │ │ ├── isnewerversion(_:) │ │ │ │ └── index.html │ │ │ ├── isolderversion(_:) │ │ │ │ └── index.html │ │ │ ├── ispad() │ │ │ │ └── index.html │ │ │ ├── issameversion(_:) │ │ │ │ └── index.html │ │ │ ├── scaledheight(for:constrainedbywidth:) │ │ │ │ └── index.html │ │ │ ├── separatorheightforscreenscale() │ │ │ │ └── index.html │ │ │ └── shouldenableattachments(_:) │ │ │ │ └── index.html │ │ │ ├── zdlog │ │ │ └── index.html │ │ │ └── zduispinner │ │ │ └── index.html │ ├── favicon.ico │ ├── favicon.svg │ ├── img │ │ ├── added-icon.d6f7e47d.svg │ │ ├── deprecated-icon.015b4f17.svg │ │ ├── modified-icon.f496e73d.svg │ │ └── no-image@2x.df2a0a50.png │ ├── index.html │ ├── index │ │ ├── availability.index │ │ ├── data.mdb │ │ ├── index.json │ │ └── navigator.index │ ├── js │ │ ├── chunk-2d0d3105.cd72cc8e.js │ │ ├── chunk-c0335d80.76a68cc5.js │ │ ├── chunk-vendors.ba2dd0cb.js │ │ ├── documentation-topic.57e91f8a.js │ │ ├── documentation-topic~topic.1679ec90.js │ │ ├── documentation-topic~topic~tutorials-overview.90c61522.js │ │ ├── highlight-js-bash.1b52852f.js │ │ ├── highlight-js-c.d1db3f17.js │ │ ├── highlight-js-cpp.eaddddbe.js │ │ ├── highlight-js-css.75eab1fe.js │ │ ├── highlight-js-custom-markdown.7cffc4b3.js │ │ ├── highlight-js-custom-swift.5cda5c20.js │ │ ├── highlight-js-diff.62d66733.js │ │ ├── highlight-js-http.163e45b6.js │ │ ├── highlight-js-java.8326d9d8.js │ │ ├── highlight-js-javascript.acb8a8eb.js │ │ ├── highlight-js-json.471128d2.js │ │ ├── highlight-js-llvm.6100b125.js │ │ ├── highlight-js-markdown.90077643.js │ │ ├── highlight-js-objectivec.bcdf5156.js │ │ ├── highlight-js-perl.757d7b6f.js │ │ ├── highlight-js-php.cc8d6c27.js │ │ ├── highlight-js-python.c214ed92.js │ │ ├── highlight-js-ruby.f889d392.js │ │ ├── highlight-js-scss.62ee18da.js │ │ ├── highlight-js-shell.dd7f411f.js │ │ ├── highlight-js-swift.84f3e88c.js │ │ ├── highlight-js-xml.9c3688c7.js │ │ ├── index.e8a5d294.js │ │ ├── topic.8cd0c0c4.js │ │ └── tutorials-overview.2a32cd6f.js │ └── metadata.json ├── 9.0.0 │ ├── css │ │ ├── chunk-c0335d80.10a2f091.css │ │ ├── documentation-topic.1d1eec04.css │ │ ├── documentation-topic~topic.b6287bcf.css │ │ ├── documentation-topic~topic~tutorials-overview.d6f5411c.css │ │ ├── index.038e887c.css │ │ ├── topic.d8c126f3.css │ │ └── tutorials-overview.c249c765.css │ ├── data │ │ └── documentation │ │ │ ├── supportsdk.json │ │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks.json │ │ │ ├── +(_:_:)-8bv54.json │ │ │ ├── action.json │ │ │ ├── actionlistenerfunction.json │ │ │ ├── actionsubscription.json │ │ │ ├── actionsubscription │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── alwaysfilter.json │ │ │ ├── applicationtype.json │ │ │ ├── applicationtype │ │ │ └── topwindow.json │ │ │ ├── articleuiconfiguration.json │ │ │ ├── articleuiconfiguration │ │ │ ├── engines.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── objcengines.json │ │ │ └── showcontactoptions.json │ │ │ ├── asyncaction.json │ │ │ ├── asyncaction │ │ │ └── execute(getstate:dispatch:).json │ │ │ ├── asyncmiddleware.json │ │ │ ├── asyncmiddleware │ │ │ ├── init().json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockasyncaction.json │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:).json │ │ │ └── init(executionblock:).json │ │ │ ├── blockmiddleware.json │ │ │ ├── blockmiddleware │ │ │ ├── init(actionfunction:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockreducer.json │ │ │ ├── blockreducer │ │ │ ├── init(initialstate:reduce:).json │ │ │ ├── init(initialstate:statekey:reduce:).json │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ └── statekey.json │ │ │ ├── cgcenterrectinrect(_:_:).json │ │ │ ├── cgmakecenteredrectinrect(_:_:_:).json │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:).json │ │ │ ├── cgrectmakecenteredinscreen(_:_:).json │ │ │ ├── combinedreducer.json │ │ │ ├── combinedreducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── reducer-implementations.json │ │ │ └── statekey.json │ │ │ ├── containerchild.json │ │ │ ├── containerchild │ │ │ └── childdelegate.json │ │ │ ├── containerchildcontroller.json │ │ │ ├── containerchildcontrollerdelegate.json │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── navitem.json │ │ │ └── willdismiss().json │ │ │ ├── containerviewcontroller.json │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations.json │ │ │ ├── initwithcoder:.json │ │ │ ├── initwithnibname:bundle:.json │ │ │ ├── navitem.json │ │ │ ├── viewdidload().json │ │ │ └── willdismiss().json │ │ │ ├── coordinatingviewcontroller.json │ │ │ ├── coordinatingviewcontroller │ │ │ ├── init(coordinator:).json │ │ │ ├── viewdidappear(_:).json │ │ │ ├── viewdiddisappear(_:).json │ │ │ ├── viewdidload().json │ │ │ └── viewwillappear(_:).json │ │ │ ├── coordinator.json │ │ │ ├── coordinator │ │ │ └── start(present:with:).json │ │ │ ├── defaultlogger.json │ │ │ ├── dismissutil.json │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:).json │ │ │ ├── navigationcontroller(_:didpush:).json │ │ │ └── remove(_:from:).json │ │ │ ├── dispatchfunction.json │ │ │ ├── equalsfilter.json │ │ │ ├── filetype.json │ │ │ ├── filetype │ │ │ ├── !=(_:_:).json │ │ │ ├── binary.json │ │ │ ├── equatable-implementations.json │ │ │ ├── excel.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── heic.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── jpg.json │ │ │ ├── keynote.json │ │ │ ├── numbers.json │ │ │ ├── pages.json │ │ │ ├── pdf.json │ │ │ ├── plain.json │ │ │ ├── png.json │ │ │ ├── powerpoint.json │ │ │ ├── powerpointx.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── word.json │ │ │ ├── filterfunction.json │ │ │ ├── getstatefunction.json │ │ │ ├── helpcenterarticlevotinghandler.json │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ ├── currentarticlevote().json │ │ │ └── init(witharticleid:andlocale:).json │ │ │ ├── helpcentercontactusrouter.json │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch().json │ │ │ ├── decidebuttonactionfornavbar().json │ │ │ └── init(withpresentingviewcontroller:configurations:engines:).json │ │ │ ├── helpcentercoordinator.json │ │ │ ├── helpcentercoordinator │ │ │ ├── init(helpcentercontroller:uiconfigurations:).json │ │ │ └── start(present:with:).json │ │ │ ├── helpcenterdelegate.json │ │ │ ├── helpcenterui.json │ │ │ ├── helpcenteruiconfiguration.json │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines.json │ │ │ ├── groupids.json │ │ │ ├── grouptype.json │ │ │ ├── init().json │ │ │ ├── labels.json │ │ │ ├── objcengines.json │ │ │ ├── overviewcontentmodel.json │ │ │ ├── showcontactoptions.json │ │ │ └── showcontactoptionsonemptysearch.json │ │ │ ├── keyedstate.json │ │ │ ├── listenerfunction.json │ │ │ ├── loggermiddleware.json │ │ │ ├── loggermiddleware │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middleware.json │ │ │ ├── middleware │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middlewarefunction.json │ │ │ ├── nextfunction.json │ │ │ ├── reducer.json │ │ │ ├── reducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── statekey-65k0h.json │ │ │ ├── statekey-9741m.json │ │ │ └── statetype.json │ │ │ ├── reducerfunction.json │ │ │ ├── requestattachment.json │ │ │ ├── requestattachment │ │ │ ├── data.json │ │ │ ├── filename.json │ │ │ ├── filetype.json │ │ │ └── init(filename:data:filetype:).json │ │ │ ├── requestcoordinator.json │ │ │ ├── requestcoordinator │ │ │ └── start(present:with:).json │ │ │ ├── requestlistuiconfiguration.json │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation.json │ │ │ ├── init().json │ │ │ └── isequal(_:).json │ │ │ ├── requestui.json │ │ │ ├── requestui │ │ │ ├── buildrequestlist().json │ │ │ ├── buildrequestlist(with:).json │ │ │ ├── buildrequestui().json │ │ │ ├── buildrequestui(requestid:).json │ │ │ ├── buildrequestui(requestid:configurations:).json │ │ │ └── buildrequestui(with:).json │ │ │ ├── requestuiconfiguration.json │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields.json │ │ │ ├── fileattachments.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── subject.json │ │ │ ├── tags.json │ │ │ └── ticketformid.json │ │ │ ├── state.json │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ │ ├── init(dictionary:).json │ │ │ ├── init(dictionaryliteral:).json │ │ │ ├── keys.json │ │ │ ├── subscript(_:).json │ │ │ ├── subscript(forkey:oftype:).json │ │ │ ├── subscript(forkeyoftype:).json │ │ │ ├── value(forkey:).json │ │ │ ├── value(forkey:oftype:).json │ │ │ └── value(forkeyoftype:).json │ │ │ ├── statekey.json │ │ │ ├── stateselector.json │ │ │ ├── store.json │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:).json │ │ │ ├── addlistener(forstatetype:statekey:if:callback:).json │ │ │ ├── addlistener(if:callback:).json │ │ │ ├── addlistener(if:stateselector:callback:).json │ │ │ ├── dispatch(action:).json │ │ │ ├── reset(state:).json │ │ │ ├── reset(state:forkey:).json │ │ │ ├── resetfullstate(_:).json │ │ │ └── state.json │ │ │ ├── suas.json │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:).json │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl.json │ │ │ ├── createstore(reducer:state:middleware:)-4w130.json │ │ │ └── enabledebuglogging.json │ │ │ ├── suasdebuglogger.json │ │ │ ├── suasdebuglogger │ │ │ └── enabled.json │ │ │ ├── suasdynamicequatable.json │ │ │ ├── suasdynamicequatable │ │ │ ├── isequal(to:)-19mke.json │ │ │ └── isequal(to:)-28xku.json │ │ │ ├── subscription.json │ │ │ ├── subscription │ │ │ ├── informwithcurrentstate().json │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── supportengine.json │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configs.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── supportsdk_h.json │ │ │ ├── supportui.json │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride.json │ │ │ ├── initialize(withzendesk:).json │ │ │ ├── instance.json │ │ │ └── refreshrequest(requestid:).json │ │ │ ├── swift.json │ │ │ ├── swift │ │ │ ├── string.json │ │ │ └── string │ │ │ │ ├── isequal(to:).json │ │ │ │ └── suasdynamicequatable-implementations.json │ │ │ ├── system_version_greater_than_seven.json │ │ │ ├── theme.json │ │ │ ├── theme │ │ │ ├── currenttheme.json │ │ │ └── primarycolor.json │ │ │ ├── uikit.json │ │ │ ├── uikit │ │ │ ├── uiapplication.json │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations.json │ │ │ │ └── topwindow.json │ │ │ ├── window.json │ │ │ ├── window │ │ │ ├── addsubview(_:).json │ │ │ ├── bounds.json │ │ │ ├── layer.json │ │ │ └── windowlevel.json │ │ │ ├── zd_is_ipad.json │ │ │ ├── zd_is_iphone.json │ │ │ ├── zdkconstants.json │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast().json │ │ │ └── init.json │ │ │ ├── zdkcontactusvisibility.json │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:).json │ │ │ ├── articlelistandarticle.json │ │ │ ├── articlelistonly.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── off.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkcreaterequestuidelegate.json │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage().json │ │ │ ├── createrequestbarbuttonlocalizedlabel().json │ │ │ └── navbarcreaterequestuitype().json │ │ │ ├── zdkdismissutil │ │ │ └── init.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ └── currentarticlevote().json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol.json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ └── updatebuttonstatesforbutton(atindexselected:).json │ │ │ ├── zdkhelpcenterattachmentsdatasource.json │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ └── init(articleid:).json │ │ │ ├── zdkhelpcentercellconfigureblock.json │ │ │ ├── zdkhelpcenterconversationsuidelegate.json │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active().json │ │ │ ├── conversationsbarbuttonimage().json │ │ │ ├── conversationsbarbuttonlocalizedlabel().json │ │ │ └── navbarconversationsuitype().json │ │ │ ├── zdkhelpcenterdatasource.json │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource().json │ │ │ ├── hasitems.json │ │ │ ├── item(at:).json │ │ │ ├── items.json │ │ │ ├── provider.json │ │ │ └── reloaddata().json │ │ │ ├── zdkhelpcenterdelegate.json │ │ │ ├── zdkhelpcenterdelegate │ │ │ └── uidelegate.json │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription.json │ │ │ ├── zdkhelpcentererror.json │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:).json │ │ │ ├── emptyhelpcenter.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── invalidcategoryids.json │ │ │ ├── invalidsectionids.json │ │ │ ├── noarticlesforlabels.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkhelpcentererrordomain.json │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription.json │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription.json │ │ │ ├── zdkhelpcenternosectionslocaliseddescription.json │ │ │ ├── zdkhelpcenterui.json │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:).json │ │ │ ├── build(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(_:).json │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenteroverview().json │ │ │ ├── buildhelpcenteroverview(withconfigs:).json │ │ │ ├── buildhelpcenteroverviewui().json │ │ │ └── buildhelpcenteroverviewui(withconfigs:).json │ │ │ ├── zdklayoutguideapplicator.json │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── init(viewcontroller:toplevel:layoutposition:).json │ │ │ └── init(viewcontroller:toplevelview:layoutposition:).json │ │ │ ├── zdklayoutguideapplicatorposition.json │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:).json │ │ │ ├── bottom.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── top.json │ │ │ ├── zdknavbarcreaterequestuitype.json │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── image.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── localizedlabel.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkrequestui │ │ │ └── init.json │ │ │ ├── zdkspinnerdelegate.json │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center.json │ │ │ ├── frame.json │ │ │ ├── ishidden.json │ │ │ ├── startanimating().json │ │ │ └── stopanimating().json │ │ │ ├── zdksuasdebuglogger │ │ │ └── init.json │ │ │ ├── zdksupportattachmentcell.json │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier().json │ │ │ ├── filesize.json │ │ │ └── title.json │ │ │ ├── zdktheme │ │ │ └── init.json │ │ │ ├── zdktoastviewwrapper.json │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss().json │ │ │ ├── hidetoastview(_:).json │ │ │ ├── isvisible.json │ │ │ ├── showerror(in:withmessage:).json │ │ │ ├── showerror(in:withmessage:buttontitle:action:).json │ │ │ └── showerror(in:withmessage:duration:).json │ │ │ ├── zdkuiislandscape().json │ │ │ ├── zdkuiorigininwindow(_:).json │ │ │ ├── zdkuiscreenframe().json │ │ │ ├── zdkuiutil.json │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96.json │ │ │ ├── appearancevalue(for:selector:)-4i9sm.json │ │ │ ├── appearancevalue(for:whencontainedin:selector:).json │ │ │ ├── buildbutton(withframe:andtitle:).json │ │ │ ├── currentinterfaceorientation().json │ │ │ ├── fixorientation(of:).json │ │ │ ├── islandscape().json │ │ │ ├── isnewerversion(_:).json │ │ │ ├── isolderversion(_:).json │ │ │ ├── ispad().json │ │ │ ├── issameversion(_:).json │ │ │ ├── scaledheight(for:constrainedbywidth:).json │ │ │ ├── separatorheightforscreenscale().json │ │ │ └── shouldenableattachments(_:).json │ │ │ ├── zdlog.json │ │ │ └── zduispinner.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks │ │ │ └── index.html │ │ │ ├── +(_:_:)-8bv54 │ │ │ └── index.html │ │ │ ├── action │ │ │ └── index.html │ │ │ ├── actionlistenerfunction │ │ │ └── index.html │ │ │ ├── actionsubscription │ │ │ ├── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── alwaysfilter │ │ │ └── index.html │ │ │ ├── applicationtype │ │ │ ├── index.html │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── articleuiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ └── showcontactoptions │ │ │ │ └── index.html │ │ │ ├── asyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── asyncmiddleware │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(executionblock:) │ │ │ │ └── index.html │ │ │ ├── blockmiddleware │ │ │ ├── index.html │ │ │ ├── init(actionfunction:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockreducer │ │ │ ├── index.html │ │ │ ├── init(initialstate:reduce:) │ │ │ │ └── index.html │ │ │ ├── init(initialstate:statekey:reduce:) │ │ │ │ └── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── cgcenterrectinrect(_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectinrect(_:_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:) │ │ │ └── index.html │ │ │ ├── cgrectmakecenteredinscreen(_:_:) │ │ │ └── index.html │ │ │ ├── combinedreducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── reducer-implementations │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── containerchild │ │ │ ├── childdelegate │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── containerchildcontroller │ │ │ └── index.html │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initwithcoder: │ │ │ │ └── index.html │ │ │ ├── initwithnibname:bundle: │ │ │ │ └── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── coordinatingviewcontroller │ │ │ ├── index.html │ │ │ ├── init(coordinator:) │ │ │ │ └── index.html │ │ │ ├── viewdidappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdiddisappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── viewwillappear(_:) │ │ │ │ └── index.html │ │ │ ├── coordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── defaultlogger │ │ │ └── index.html │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── navigationcontroller(_:didpush:) │ │ │ │ └── index.html │ │ │ └── remove(_:from:) │ │ │ │ └── index.html │ │ │ ├── dispatchfunction │ │ │ └── index.html │ │ │ ├── equalsfilter │ │ │ └── index.html │ │ │ ├── filetype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── binary │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── excel │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── heic │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── jpg │ │ │ │ └── index.html │ │ │ ├── keynote │ │ │ │ └── index.html │ │ │ ├── numbers │ │ │ │ └── index.html │ │ │ ├── pages │ │ │ │ └── index.html │ │ │ ├── pdf │ │ │ │ └── index.html │ │ │ ├── plain │ │ │ │ └── index.html │ │ │ ├── png │ │ │ │ └── index.html │ │ │ ├── powerpoint │ │ │ │ └── index.html │ │ │ ├── powerpointx │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── word │ │ │ │ └── index.html │ │ │ ├── filterfunction │ │ │ └── index.html │ │ │ ├── getstatefunction │ │ │ └── index.html │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(witharticleid:andlocale:) │ │ │ │ └── index.html │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch() │ │ │ │ └── index.html │ │ │ ├── decidebuttonactionfornavbar() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(withpresentingviewcontroller:configurations:engines:) │ │ │ │ └── index.html │ │ │ ├── helpcentercoordinator │ │ │ ├── index.html │ │ │ ├── init(helpcentercontroller:uiconfigurations:) │ │ │ │ └── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── helpcenterdelegate │ │ │ └── index.html │ │ │ ├── helpcenterui │ │ │ └── index.html │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── groupids │ │ │ │ └── index.html │ │ │ ├── grouptype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── labels │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ ├── overviewcontentmodel │ │ │ │ └── index.html │ │ │ ├── showcontactoptions │ │ │ │ └── index.html │ │ │ └── showcontactoptionsonemptysearch │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── keyedstate │ │ │ └── index.html │ │ │ ├── listenerfunction │ │ │ └── index.html │ │ │ ├── loggermiddleware │ │ │ ├── index.html │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middleware │ │ │ ├── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middlewarefunction │ │ │ └── index.html │ │ │ ├── nextfunction │ │ │ └── index.html │ │ │ ├── reducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── statekey-65k0h │ │ │ │ └── index.html │ │ │ ├── statekey-9741m │ │ │ │ └── index.html │ │ │ └── statetype │ │ │ │ └── index.html │ │ │ ├── reducerfunction │ │ │ └── index.html │ │ │ ├── requestattachment │ │ │ ├── data │ │ │ │ └── index.html │ │ │ ├── filename │ │ │ │ └── index.html │ │ │ ├── filetype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(filename:data:filetype:) │ │ │ │ └── index.html │ │ │ ├── requestcoordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── requestui │ │ │ ├── buildrequestlist() │ │ │ │ └── index.html │ │ │ ├── buildrequestlist(with:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui() │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:configurations:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(with:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields │ │ │ │ └── index.html │ │ │ ├── fileattachments │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── subject │ │ │ │ └── index.html │ │ │ ├── tags │ │ │ │ └── index.html │ │ │ └── ticketformid │ │ │ │ └── index.html │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(dictionary:) │ │ │ │ └── index.html │ │ │ ├── init(dictionaryliteral:) │ │ │ │ └── index.html │ │ │ ├── keys │ │ │ │ └── index.html │ │ │ ├── subscript(_:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkey:oftype:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:oftype:) │ │ │ │ └── index.html │ │ │ └── value(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── statekey │ │ │ └── index.html │ │ │ ├── stateselector │ │ │ └── index.html │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:) │ │ │ │ └── index.html │ │ │ ├── addlistener(forstatetype:statekey:if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:stateselector:callback:) │ │ │ │ └── index.html │ │ │ ├── dispatch(action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── reset(state:) │ │ │ │ └── index.html │ │ │ ├── reset(state:forkey:) │ │ │ │ └── index.html │ │ │ ├── resetfullstate(_:) │ │ │ │ └── index.html │ │ │ └── state │ │ │ │ └── index.html │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:) │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-4w130 │ │ │ │ └── index.html │ │ │ ├── enabledebuglogging │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdebuglogger │ │ │ ├── enabled │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdynamicequatable │ │ │ ├── index.html │ │ │ ├── isequal(to:)-19mke │ │ │ │ └── index.html │ │ │ └── isequal(to:)-28xku │ │ │ │ └── index.html │ │ │ ├── subscription │ │ │ ├── index.html │ │ │ ├── informwithcurrentstate() │ │ │ │ └── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configs │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── notifyobservers(_:) │ │ │ │ └── index.html │ │ │ ├── observable-implementations │ │ │ │ └── index.html │ │ │ ├── observeupdates(_:) │ │ │ │ └── index.html │ │ │ ├── onevent(_:) │ │ │ │ └── index.html │ │ │ ├── onupdate │ │ │ │ └── index.html │ │ │ ├── start(messagingapi:) │ │ │ │ └── index.html │ │ │ ├── stop() │ │ │ │ └── index.html │ │ │ └── transferoptiondescription │ │ │ │ └── index.html │ │ │ ├── supportsdk_h │ │ │ └── index.html │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initialize(withzendesk:) │ │ │ │ └── index.html │ │ │ ├── instance │ │ │ │ └── index.html │ │ │ └── refreshrequest(requestid:) │ │ │ │ └── index.html │ │ │ ├── swift │ │ │ ├── index.html │ │ │ └── string │ │ │ │ ├── index.html │ │ │ │ ├── isequal(to:) │ │ │ │ └── index.html │ │ │ │ └── suasdynamicequatable-implementations │ │ │ │ └── index.html │ │ │ ├── system_version_greater_than_seven │ │ │ └── index.html │ │ │ ├── theme │ │ │ ├── currenttheme │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── primarycolor │ │ │ │ └── index.html │ │ │ ├── uikit │ │ │ ├── index.html │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── window │ │ │ ├── addsubview(_:) │ │ │ │ └── index.html │ │ │ ├── bounds │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── layer │ │ │ │ └── index.html │ │ │ └── windowlevel │ │ │ │ └── index.html │ │ │ ├── zd_is_ipad │ │ │ └── index.html │ │ │ ├── zd_is_iphone │ │ │ └── index.html │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── articlelistandarticle │ │ │ │ └── index.html │ │ │ ├── articlelistonly │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── off │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── createrequestbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarcreaterequestuitype() │ │ │ │ └── index.html │ │ │ ├── zdkdismissutil │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ ├── index.html │ │ │ └── updatebuttonstatesforbutton(atindexselected:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ ├── index.html │ │ │ └── init(articleid:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentercellconfigureblock │ │ │ └── index.html │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarconversationsuitype() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource() │ │ │ │ └── index.html │ │ │ ├── hasitems │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── item(at:) │ │ │ │ └── index.html │ │ │ ├── items │ │ │ │ └── index.html │ │ │ ├── provider │ │ │ │ └── index.html │ │ │ └── reloaddata() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdelegate │ │ │ ├── index.html │ │ │ └── uidelegate │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emptyhelpcenter │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── invalidcategoryids │ │ │ │ └── index.html │ │ │ ├── invalidsectionids │ │ │ │ └── index.html │ │ │ ├── noarticlesforlabels │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentererrordomain │ │ │ └── index.html │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternosectionslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:) │ │ │ │ └── index.html │ │ │ ├── build(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview(withconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui(withconfigs:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── index.html │ │ │ ├── init(viewcontroller:toplevel:layoutposition:) │ │ │ │ └── index.html │ │ │ └── init(viewcontroller:toplevelview:layoutposition:) │ │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── bottom │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── top │ │ │ │ └── index.html │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── image │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── localizedlabel │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkrequestui │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center │ │ │ │ └── index.html │ │ │ ├── frame │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── ishidden │ │ │ │ └── index.html │ │ │ ├── startanimating() │ │ │ │ └── index.html │ │ │ └── stopanimating() │ │ │ │ └── index.html │ │ │ ├── zdksuasdebuglogger │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier() │ │ │ │ └── index.html │ │ │ ├── filesize │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── title │ │ │ │ └── index.html │ │ │ ├── zdktheme │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss() │ │ │ │ └── index.html │ │ │ ├── hidetoastview(_:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isvisible │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:) │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:buttontitle:action:) │ │ │ │ └── index.html │ │ │ └── showerror(in:withmessage:duration:) │ │ │ │ └── index.html │ │ │ ├── zdkuiislandscape() │ │ │ └── index.html │ │ │ ├── zdkuiorigininwindow(_:) │ │ │ └── index.html │ │ │ ├── zdkuiscreenframe() │ │ │ └── index.html │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96 │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:selector:)-4i9sm │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:whencontainedin:selector:) │ │ │ │ └── index.html │ │ │ ├── buildbutton(withframe:andtitle:) │ │ │ │ └── index.html │ │ │ ├── currentinterfaceorientation() │ │ │ │ └── index.html │ │ │ ├── fixorientation(of:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── islandscape() │ │ │ │ └── index.html │ │ │ ├── isnewerversion(_:) │ │ │ │ └── index.html │ │ │ ├── isolderversion(_:) │ │ │ │ └── index.html │ │ │ ├── ispad() │ │ │ │ └── index.html │ │ │ ├── issameversion(_:) │ │ │ │ └── index.html │ │ │ ├── scaledheight(for:constrainedbywidth:) │ │ │ │ └── index.html │ │ │ ├── separatorheightforscreenscale() │ │ │ │ └── index.html │ │ │ └── shouldenableattachments(_:) │ │ │ │ └── index.html │ │ │ ├── zdlog │ │ │ └── index.html │ │ │ └── zduispinner │ │ │ └── index.html │ ├── favicon.ico │ ├── favicon.svg │ ├── img │ │ ├── added-icon.d6f7e47d.svg │ │ ├── deprecated-icon.015b4f17.svg │ │ ├── modified-icon.f496e73d.svg │ │ └── no-image@2x.df2a0a50.png │ ├── index.html │ ├── index │ │ ├── availability.index │ │ ├── data.mdb │ │ ├── index.json │ │ └── navigator.index │ ├── js │ │ ├── chunk-2d0d3105.cd72cc8e.js │ │ ├── chunk-c0335d80.76a68cc5.js │ │ ├── chunk-vendors.ba2dd0cb.js │ │ ├── documentation-topic.57e91f8a.js │ │ ├── documentation-topic~topic.1679ec90.js │ │ ├── documentation-topic~topic~tutorials-overview.90c61522.js │ │ ├── highlight-js-bash.1b52852f.js │ │ ├── highlight-js-c.d1db3f17.js │ │ ├── highlight-js-cpp.eaddddbe.js │ │ ├── highlight-js-css.75eab1fe.js │ │ ├── highlight-js-custom-markdown.7cffc4b3.js │ │ ├── highlight-js-custom-swift.5cda5c20.js │ │ ├── highlight-js-diff.62d66733.js │ │ ├── highlight-js-http.163e45b6.js │ │ ├── highlight-js-java.8326d9d8.js │ │ ├── highlight-js-javascript.acb8a8eb.js │ │ ├── highlight-js-json.471128d2.js │ │ ├── highlight-js-llvm.6100b125.js │ │ ├── highlight-js-markdown.90077643.js │ │ ├── highlight-js-objectivec.bcdf5156.js │ │ ├── highlight-js-perl.757d7b6f.js │ │ ├── highlight-js-php.cc8d6c27.js │ │ ├── highlight-js-python.c214ed92.js │ │ ├── highlight-js-ruby.f889d392.js │ │ ├── highlight-js-scss.62ee18da.js │ │ ├── highlight-js-shell.dd7f411f.js │ │ ├── highlight-js-swift.84f3e88c.js │ │ ├── highlight-js-xml.9c3688c7.js │ │ ├── index.e8a5d294.js │ │ ├── topic.8cd0c0c4.js │ │ └── tutorials-overview.2a32cd6f.js │ └── metadata.json ├── 9.1.0 │ ├── css │ │ ├── 866.2d08a543.css │ │ ├── 989.4f123103.css │ │ ├── documentation-topic.da0b1931.css │ │ ├── index.3a335429.css │ │ ├── topic.4be8f56d.css │ │ └── tutorials-overview.adb17623.css │ ├── data │ │ └── documentation │ │ │ ├── supportsdk.json │ │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks.json │ │ │ ├── +(_:_:)-8bv54.json │ │ │ ├── action.json │ │ │ ├── actionlistenerfunction.json │ │ │ ├── actionsubscription.json │ │ │ ├── actionsubscription │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── alwaysfilter.json │ │ │ ├── applicationtype.json │ │ │ ├── applicationtype │ │ │ └── topwindow.json │ │ │ ├── articleuiconfiguration.json │ │ │ ├── articleuiconfiguration │ │ │ ├── engines.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── objcengines.json │ │ │ └── showcontactoptions.json │ │ │ ├── asyncaction.json │ │ │ ├── asyncaction │ │ │ └── execute(getstate:dispatch:).json │ │ │ ├── asyncmiddleware.json │ │ │ ├── asyncmiddleware │ │ │ ├── init().json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockasyncaction.json │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:).json │ │ │ └── init(executionblock:).json │ │ │ ├── blockmiddleware.json │ │ │ ├── blockmiddleware │ │ │ ├── init(actionfunction:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── blockreducer.json │ │ │ ├── blockreducer │ │ │ ├── init(initialstate:reduce:).json │ │ │ ├── init(initialstate:statekey:reduce:).json │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ └── statekey.json │ │ │ ├── cgcenterrectinrect(_:_:).json │ │ │ ├── cgmakecenteredrectinrect(_:_:_:).json │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:).json │ │ │ ├── cgrectmakecenteredinscreen(_:_:).json │ │ │ ├── combinedreducer.json │ │ │ ├── combinedreducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── reducer-implementations.json │ │ │ └── statekey.json │ │ │ ├── containerchild.json │ │ │ ├── containerchild │ │ │ └── childdelegate.json │ │ │ ├── containerchildcontroller.json │ │ │ ├── containerchildcontrollerdelegate.json │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── navitem.json │ │ │ └── willdismiss().json │ │ │ ├── containerviewcontroller.json │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations.json │ │ │ ├── initwithcoder:.json │ │ │ ├── initwithnibname:bundle:.json │ │ │ ├── navitem.json │ │ │ ├── viewdidload().json │ │ │ └── willdismiss().json │ │ │ ├── coordinatingviewcontroller.json │ │ │ ├── coordinatingviewcontroller │ │ │ ├── init(coordinator:).json │ │ │ ├── viewdidappear(_:).json │ │ │ ├── viewdiddisappear(_:).json │ │ │ ├── viewdidload().json │ │ │ └── viewwillappear(_:).json │ │ │ ├── coordinator.json │ │ │ ├── coordinator │ │ │ └── start(present:with:).json │ │ │ ├── defaultlogger.json │ │ │ ├── dismissutil.json │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:).json │ │ │ ├── navigationcontroller(_:didpush:).json │ │ │ └── remove(_:from:).json │ │ │ ├── dispatchfunction.json │ │ │ ├── equalsfilter.json │ │ │ ├── filetype.json │ │ │ ├── filetype │ │ │ ├── !=(_:_:).json │ │ │ ├── binary.json │ │ │ ├── equatable-implementations.json │ │ │ ├── excel.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── heic.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── jpg.json │ │ │ ├── keynote.json │ │ │ ├── numbers.json │ │ │ ├── pages.json │ │ │ ├── pdf.json │ │ │ ├── plain.json │ │ │ ├── png.json │ │ │ ├── powerpoint.json │ │ │ ├── powerpointx.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── word.json │ │ │ ├── filterfunction.json │ │ │ ├── getstatefunction.json │ │ │ ├── helpcenterarticlevotinghandler.json │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ ├── currentarticlevote().json │ │ │ └── init(witharticleid:andlocale:).json │ │ │ ├── helpcentercontactusrouter.json │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch().json │ │ │ ├── decidebuttonactionfornavbar().json │ │ │ └── init(withpresentingviewcontroller:configurations:engines:).json │ │ │ ├── helpcentercoordinator.json │ │ │ ├── helpcentercoordinator │ │ │ ├── init(helpcentercontroller:uiconfigurations:).json │ │ │ └── start(present:with:).json │ │ │ ├── helpcenterdelegate.json │ │ │ ├── helpcenterui.json │ │ │ ├── helpcenteruiconfiguration.json │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines.json │ │ │ ├── groupids.json │ │ │ ├── grouptype.json │ │ │ ├── init().json │ │ │ ├── labels.json │ │ │ ├── objcengines.json │ │ │ ├── overviewcontentmodel.json │ │ │ ├── showcontactoptions.json │ │ │ └── showcontactoptionsonemptysearch.json │ │ │ ├── keyedstate.json │ │ │ ├── listenerfunction.json │ │ │ ├── loggermiddleware.json │ │ │ ├── loggermiddleware │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:).json │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middleware.json │ │ │ ├── middleware │ │ │ └── onaction(action:getstate:dispatch:next:).json │ │ │ ├── middlewarefunction.json │ │ │ ├── nextfunction.json │ │ │ ├── reducer.json │ │ │ ├── reducer │ │ │ ├── initialstate.json │ │ │ ├── reduce(state:action:).json │ │ │ ├── statekey-9741m.json │ │ │ ├── statekey.json │ │ │ └── statetype.json │ │ │ ├── reducerfunction.json │ │ │ ├── requestattachment.json │ │ │ ├── requestattachment │ │ │ ├── data.json │ │ │ ├── filename.json │ │ │ ├── filetype.json │ │ │ └── init(filename:data:filetype:).json │ │ │ ├── requestcoordinator.json │ │ │ ├── requestcoordinator │ │ │ └── start(present:with:).json │ │ │ ├── requestlistuiconfiguration.json │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation.json │ │ │ ├── init().json │ │ │ └── isequal(_:).json │ │ │ ├── requestui.json │ │ │ ├── requestui │ │ │ ├── buildrequestlist().json │ │ │ ├── buildrequestlist(with:).json │ │ │ ├── buildrequestui().json │ │ │ ├── buildrequestui(requestid:).json │ │ │ ├── buildrequestui(requestid:configurations:).json │ │ │ └── buildrequestui(with:).json │ │ │ ├── requestuiconfiguration.json │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields.json │ │ │ ├── fileattachments.json │ │ │ ├── init().json │ │ │ ├── isequal(_:).json │ │ │ ├── subject.json │ │ │ ├── tags.json │ │ │ └── ticketformid.json │ │ │ ├── state.json │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ │ ├── init(dictionary:).json │ │ │ ├── init(dictionaryliteral:).json │ │ │ ├── keys.json │ │ │ ├── subscript(_:).json │ │ │ ├── subscript(forkey:oftype:).json │ │ │ ├── subscript(forkeyoftype:).json │ │ │ ├── value(forkey:).json │ │ │ ├── value(forkey:oftype:).json │ │ │ └── value(forkeyoftype:).json │ │ │ ├── statekey.json │ │ │ ├── stateselector.json │ │ │ ├── store.json │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:).json │ │ │ ├── addlistener(forstatetype:statekey:if:callback:).json │ │ │ ├── addlistener(if:callback:).json │ │ │ ├── addlistener(if:stateselector:callback:).json │ │ │ ├── dispatch(action:).json │ │ │ ├── reset(state:).json │ │ │ ├── reset(state:forkey:).json │ │ │ ├── resetfullstate(_:).json │ │ │ └── state.json │ │ │ ├── suas.json │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:).json │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl.json │ │ │ ├── createstore(reducer:state:middleware:)-4w130.json │ │ │ └── enabledebuglogging.json │ │ │ ├── suasdebuglogger.json │ │ │ ├── suasdebuglogger │ │ │ └── enabled.json │ │ │ ├── suasdynamicequatable.json │ │ │ ├── suasdynamicequatable │ │ │ ├── isequal(to:)-19mke.json │ │ │ └── isequal(to:).json │ │ │ ├── subscription.json │ │ │ ├── subscription │ │ │ ├── informwithcurrentstate().json │ │ │ ├── linklifecycleto(object:).json │ │ │ └── removelistener().json │ │ │ ├── supportengine.json │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configs.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── supportsdk_h.json │ │ │ ├── supportui.json │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride.json │ │ │ ├── initialize(withzendesk:).json │ │ │ ├── instance.json │ │ │ └── refreshrequest(requestid:).json │ │ │ ├── swift.json │ │ │ ├── swift │ │ │ ├── string.json │ │ │ └── string │ │ │ │ ├── isequal(to:).json │ │ │ │ └── suasdynamicequatable-implementations.json │ │ │ ├── system_version_greater_than_seven.json │ │ │ ├── theme.json │ │ │ ├── theme │ │ │ ├── currenttheme.json │ │ │ └── primarycolor.json │ │ │ ├── uikit.json │ │ │ ├── uikit │ │ │ ├── uiapplication.json │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations.json │ │ │ │ └── topwindow.json │ │ │ ├── window.json │ │ │ ├── window │ │ │ ├── addsubview(_:).json │ │ │ ├── bounds.json │ │ │ ├── layer.json │ │ │ └── windowlevel.json │ │ │ ├── zd_is_ipad.json │ │ │ ├── zd_is_iphone.json │ │ │ ├── zdkconstants.json │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast().json │ │ │ └── init.json │ │ │ ├── zdkcontactusvisibility.json │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:).json │ │ │ ├── articlelistandarticle.json │ │ │ ├── articlelistonly.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── off.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkcreaterequestuidelegate.json │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage().json │ │ │ ├── createrequestbarbuttonlocalizedlabel().json │ │ │ └── navbarcreaterequestuitype().json │ │ │ ├── zdkdismissutil │ │ │ └── init.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol.json │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:).json │ │ │ └── currentarticlevote().json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol.json │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ └── updatebuttonstatesforbutton(atindexselected:).json │ │ │ ├── zdkhelpcenterattachmentsdatasource.json │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ └── init(articleid:).json │ │ │ ├── zdkhelpcentercellconfigureblock.json │ │ │ ├── zdkhelpcenterconversationsuidelegate.json │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active().json │ │ │ ├── conversationsbarbuttonimage().json │ │ │ ├── conversationsbarbuttonlocalizedlabel().json │ │ │ └── navbarconversationsuitype().json │ │ │ ├── zdkhelpcenterdatasource.json │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource().json │ │ │ ├── hasitems.json │ │ │ ├── item(at:).json │ │ │ ├── items.json │ │ │ ├── provider.json │ │ │ └── reloaddata().json │ │ │ ├── zdkhelpcenterdelegate.json │ │ │ ├── zdkhelpcenterdelegate │ │ │ └── uidelegate.json │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription.json │ │ │ ├── zdkhelpcentererror.json │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:).json │ │ │ ├── emptyhelpcenter.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── invalidcategoryids.json │ │ │ ├── invalidsectionids.json │ │ │ ├── noarticlesforlabels.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkhelpcentererrordomain.json │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription.json │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription.json │ │ │ ├── zdkhelpcenternosectionslocaliseddescription.json │ │ │ ├── zdkhelpcenterui.json │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:).json │ │ │ ├── build(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:).json │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(_:).json │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:).json │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:).json │ │ │ ├── buildhelpcenteroverview().json │ │ │ ├── buildhelpcenteroverview(withconfigs:).json │ │ │ ├── buildhelpcenteroverviewui().json │ │ │ └── buildhelpcenteroverviewui(withconfigs:).json │ │ │ ├── zdklayoutguideapplicator.json │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── init(viewcontroller:toplevel:layoutposition:).json │ │ │ └── init(viewcontroller:toplevelview:layoutposition:).json │ │ │ ├── zdklayoutguideapplicatorposition.json │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:).json │ │ │ ├── bottom.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── top.json │ │ │ ├── zdknavbarcreaterequestuitype.json │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── image.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── localizedlabel.json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── zdkrequestui │ │ │ └── init.json │ │ │ ├── zdkspinnerdelegate.json │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center.json │ │ │ ├── frame.json │ │ │ ├── ishidden.json │ │ │ ├── startanimating().json │ │ │ └── stopanimating().json │ │ │ ├── zdksuasdebuglogger │ │ │ └── init.json │ │ │ ├── zdksupportattachmentcell.json │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier().json │ │ │ ├── filesize.json │ │ │ └── title.json │ │ │ ├── zdktheme │ │ │ └── init.json │ │ │ ├── zdktoastviewwrapper.json │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss().json │ │ │ ├── hidetoastview(_:).json │ │ │ ├── isvisible.json │ │ │ ├── showerror(in:withmessage:).json │ │ │ ├── showerror(in:withmessage:buttontitle:action:).json │ │ │ └── showerror(in:withmessage:duration:).json │ │ │ ├── zdkuiislandscape().json │ │ │ ├── zdkuiorigininwindow(_:).json │ │ │ ├── zdkuiscreenframe().json │ │ │ ├── zdkuiutil.json │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96.json │ │ │ ├── appearancevalue(for:selector:)-4i9sm.json │ │ │ ├── appearancevalue(for:whencontainedin:selector:).json │ │ │ ├── buildbutton(withframe:andtitle:).json │ │ │ ├── currentinterfaceorientation().json │ │ │ ├── fixorientation(of:).json │ │ │ ├── islandscape().json │ │ │ ├── isnewerversion(_:).json │ │ │ ├── isolderversion(_:).json │ │ │ ├── ispad().json │ │ │ ├── issameversion(_:).json │ │ │ ├── scaledheight(for:constrainedbywidth:).json │ │ │ ├── separatorheightforscreenscale().json │ │ │ └── shouldenableattachments(_:).json │ │ │ ├── zdlog.json │ │ │ └── zduispinner.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── supportsdk │ │ │ ├── +(_:_:)-2o1ks │ │ │ └── index.html │ │ │ ├── +(_:_:)-8bv54 │ │ │ └── index.html │ │ │ ├── action │ │ │ └── index.html │ │ │ ├── actionlistenerfunction │ │ │ └── index.html │ │ │ ├── actionsubscription │ │ │ ├── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── alwaysfilter │ │ │ └── index.html │ │ │ ├── applicationtype │ │ │ ├── index.html │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── articleuiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ └── showcontactoptions │ │ │ │ └── index.html │ │ │ ├── asyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── asyncmiddleware │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockasyncaction │ │ │ ├── execute(getstate:dispatch:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(executionblock:) │ │ │ │ └── index.html │ │ │ ├── blockmiddleware │ │ │ ├── index.html │ │ │ ├── init(actionfunction:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── blockreducer │ │ │ ├── index.html │ │ │ ├── init(initialstate:reduce:) │ │ │ │ └── index.html │ │ │ ├── init(initialstate:statekey:reduce:) │ │ │ │ └── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── cgcenterrectinrect(_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectinrect(_:_:_:) │ │ │ └── index.html │ │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:) │ │ │ └── index.html │ │ │ ├── cgrectmakecenteredinscreen(_:_:) │ │ │ └── index.html │ │ │ ├── combinedreducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── reducer-implementations │ │ │ │ └── index.html │ │ │ └── statekey │ │ │ │ └── index.html │ │ │ ├── containerchild │ │ │ ├── childdelegate │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── containerchildcontroller │ │ │ └── index.html │ │ │ ├── containerchildcontrollerdelegate │ │ │ ├── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── containerviewcontroller │ │ │ ├── containerchildcontrollerdelegate-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initwithcoder: │ │ │ │ └── index.html │ │ │ ├── initwithnibname:bundle: │ │ │ │ └── index.html │ │ │ ├── navitem │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── willdismiss() │ │ │ │ └── index.html │ │ │ ├── coordinatingviewcontroller │ │ │ ├── index.html │ │ │ ├── init(coordinator:) │ │ │ │ └── index.html │ │ │ ├── viewdidappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdiddisappear(_:) │ │ │ │ └── index.html │ │ │ ├── viewdidload() │ │ │ │ └── index.html │ │ │ └── viewwillappear(_:) │ │ │ │ └── index.html │ │ │ ├── coordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── defaultlogger │ │ │ └── index.html │ │ │ ├── dismissutil │ │ │ ├── barbuttonfor(_:embededin:action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── navigationcontroller(_:didpush:) │ │ │ │ └── index.html │ │ │ └── remove(_:from:) │ │ │ │ └── index.html │ │ │ ├── dispatchfunction │ │ │ └── index.html │ │ │ ├── equalsfilter │ │ │ └── index.html │ │ │ ├── filetype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── binary │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── excel │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── heic │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── jpg │ │ │ │ └── index.html │ │ │ ├── keynote │ │ │ │ └── index.html │ │ │ ├── numbers │ │ │ │ └── index.html │ │ │ ├── pages │ │ │ │ └── index.html │ │ │ ├── pdf │ │ │ │ └── index.html │ │ │ ├── plain │ │ │ │ └── index.html │ │ │ ├── png │ │ │ │ └── index.html │ │ │ ├── powerpoint │ │ │ │ └── index.html │ │ │ ├── powerpointx │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── word │ │ │ │ └── index.html │ │ │ ├── filterfunction │ │ │ └── index.html │ │ │ ├── getstatefunction │ │ │ └── index.html │ │ │ ├── helpcenterarticlevotinghandler │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(witharticleid:andlocale:) │ │ │ │ └── index.html │ │ │ ├── helpcentercontactusrouter │ │ │ ├── decidebuttonactionforemptysearch() │ │ │ │ └── index.html │ │ │ ├── decidebuttonactionfornavbar() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(withpresentingviewcontroller:configurations:engines:) │ │ │ │ └── index.html │ │ │ ├── helpcentercoordinator │ │ │ ├── index.html │ │ │ ├── init(helpcentercontroller:uiconfigurations:) │ │ │ │ └── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── helpcenterdelegate │ │ │ └── index.html │ │ │ ├── helpcenterui │ │ │ └── index.html │ │ │ ├── helpcenteruiconfiguration │ │ │ ├── engines │ │ │ │ └── index.html │ │ │ ├── groupids │ │ │ │ └── index.html │ │ │ ├── grouptype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── labels │ │ │ │ └── index.html │ │ │ ├── objcengines │ │ │ │ └── index.html │ │ │ ├── overviewcontentmodel │ │ │ │ └── index.html │ │ │ ├── showcontactoptions │ │ │ │ └── index.html │ │ │ └── showcontactoptionsonemptysearch │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── keyedstate │ │ │ └── index.html │ │ │ ├── listenerfunction │ │ │ └── index.html │ │ │ ├── loggermiddleware │ │ │ ├── index.html │ │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:) │ │ │ │ └── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middleware │ │ │ ├── index.html │ │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ │ └── index.html │ │ │ ├── middlewarefunction │ │ │ └── index.html │ │ │ ├── nextfunction │ │ │ └── index.html │ │ │ ├── reducer │ │ │ ├── index.html │ │ │ ├── initialstate │ │ │ │ └── index.html │ │ │ ├── reduce(state:action:) │ │ │ │ └── index.html │ │ │ ├── statekey-9741m │ │ │ │ └── index.html │ │ │ ├── statekey │ │ │ │ └── index.html │ │ │ └── statetype │ │ │ │ └── index.html │ │ │ ├── reducerfunction │ │ │ └── index.html │ │ │ ├── requestattachment │ │ │ ├── data │ │ │ │ └── index.html │ │ │ ├── filename │ │ │ │ └── index.html │ │ │ ├── filetype │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init(filename:data:filetype:) │ │ │ │ └── index.html │ │ │ ├── requestcoordinator │ │ │ ├── index.html │ │ │ └── start(present:with:) │ │ │ │ └── index.html │ │ │ ├── requestlistuiconfiguration │ │ │ ├── allowrequestcreation │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ └── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── requestui │ │ │ ├── buildrequestlist() │ │ │ │ └── index.html │ │ │ ├── buildrequestlist(with:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui() │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(requestid:configurations:) │ │ │ │ └── index.html │ │ │ ├── buildrequestui(with:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── requestuiconfiguration │ │ │ ├── customfields │ │ │ │ └── index.html │ │ │ ├── fileattachments │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── subject │ │ │ │ └── index.html │ │ │ ├── tags │ │ │ │ └── index.html │ │ │ └── ticketformid │ │ │ │ └── index.html │ │ │ ├── state │ │ │ ├── expressiblebydictionaryliteral-implementations │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(dictionary:) │ │ │ │ └── index.html │ │ │ ├── init(dictionaryliteral:) │ │ │ │ └── index.html │ │ │ ├── keys │ │ │ │ └── index.html │ │ │ ├── subscript(_:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkey:oftype:) │ │ │ │ └── index.html │ │ │ ├── subscript(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:) │ │ │ │ └── index.html │ │ │ ├── value(forkey:oftype:) │ │ │ │ └── index.html │ │ │ └── value(forkeyoftype:) │ │ │ │ └── index.html │ │ │ ├── statekey │ │ │ └── index.html │ │ │ ├── stateselector │ │ │ └── index.html │ │ │ ├── store │ │ │ ├── addactionlistener(actionlistener:) │ │ │ │ └── index.html │ │ │ ├── addlistener(forstatetype:statekey:if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:callback:) │ │ │ │ └── index.html │ │ │ ├── addlistener(if:stateselector:callback:) │ │ │ │ └── index.html │ │ │ ├── dispatch(action:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── reset(state:) │ │ │ │ └── index.html │ │ │ ├── reset(state:forkey:) │ │ │ │ └── index.html │ │ │ ├── resetfullstate(_:) │ │ │ │ └── index.html │ │ │ └── state │ │ │ │ └── index.html │ │ │ ├── suas │ │ │ ├── createstore(reducer:middleware:) │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-3k9yl │ │ │ │ └── index.html │ │ │ ├── createstore(reducer:state:middleware:)-4w130 │ │ │ │ └── index.html │ │ │ ├── enabledebuglogging │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdebuglogger │ │ │ ├── enabled │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── suasdynamicequatable │ │ │ ├── index.html │ │ │ ├── isequal(to:)-19mke │ │ │ │ └── index.html │ │ │ └── isequal(to:) │ │ │ │ └── index.html │ │ │ ├── subscription │ │ │ ├── index.html │ │ │ ├── informwithcurrentstate() │ │ │ │ └── index.html │ │ │ ├── linklifecycleto(object:) │ │ │ │ └── index.html │ │ │ └── removelistener() │ │ │ │ └── index.html │ │ │ ├── supportengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configs │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── notifyobservers(_:) │ │ │ │ └── index.html │ │ │ ├── observable-implementations │ │ │ │ └── index.html │ │ │ ├── observeupdates(_:) │ │ │ │ └── index.html │ │ │ ├── onevent(_:) │ │ │ │ └── index.html │ │ │ ├── onupdate │ │ │ │ └── index.html │ │ │ ├── start(messagingapi:) │ │ │ │ └── index.html │ │ │ ├── stop() │ │ │ │ └── index.html │ │ │ └── transferoptiondescription │ │ │ │ └── index.html │ │ │ ├── supportsdk_h │ │ │ └── index.html │ │ │ ├── supportui │ │ │ ├── helpcenterlocaleoverride │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── initialize(withzendesk:) │ │ │ │ └── index.html │ │ │ ├── instance │ │ │ │ └── index.html │ │ │ └── refreshrequest(requestid:) │ │ │ │ └── index.html │ │ │ ├── swift │ │ │ ├── index.html │ │ │ └── string │ │ │ │ ├── index.html │ │ │ │ ├── isequal(to:) │ │ │ │ └── index.html │ │ │ │ └── suasdynamicequatable-implementations │ │ │ │ └── index.html │ │ │ ├── system_version_greater_than_seven │ │ │ └── index.html │ │ │ ├── theme │ │ │ ├── currenttheme │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── primarycolor │ │ │ │ └── index.html │ │ │ ├── uikit │ │ │ ├── index.html │ │ │ └── uiapplication │ │ │ │ ├── applicationtype-implementations │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── topwindow │ │ │ │ └── index.html │ │ │ ├── window │ │ │ ├── addsubview(_:) │ │ │ │ └── index.html │ │ │ ├── bounds │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── layer │ │ │ │ └── index.html │ │ │ └── windowlevel │ │ │ │ └── index.html │ │ │ ├── zd_is_ipad │ │ │ └── index.html │ │ │ ├── zd_is_iphone │ │ │ └── index.html │ │ │ ├── zdkconstants │ │ │ ├── colorfortoast() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkcontactusvisibility │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── articlelistandarticle │ │ │ │ └── index.html │ │ │ ├── articlelistonly │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── off │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkcreaterequestuidelegate │ │ │ ├── createrequestbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── createrequestbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarcreaterequestuitype() │ │ │ │ └── index.html │ │ │ ├── zdkdismissutil │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ │ ├── articleratingvoteselected(_:at:) │ │ │ │ └── index.html │ │ │ ├── currentarticlevote() │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ │ ├── index.html │ │ │ └── updatebuttonstatesforbutton(atindexselected:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterattachmentsdatasource │ │ │ ├── index.html │ │ │ └── init(articleid:) │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentercellconfigureblock │ │ │ └── index.html │ │ │ ├── zdkhelpcenterconversationsuidelegate │ │ │ ├── active() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonimage() │ │ │ │ └── index.html │ │ │ ├── conversationsbarbuttonlocalizedlabel() │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── navbarconversationsuitype() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdatasource │ │ │ ├── cellidentifierfordatasource() │ │ │ │ └── index.html │ │ │ ├── hasitems │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── item(at:) │ │ │ │ └── index.html │ │ │ ├── items │ │ │ │ └── index.html │ │ │ ├── provider │ │ │ │ └── index.html │ │ │ └── reloaddata() │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenterdelegate │ │ │ ├── index.html │ │ │ └── uidelegate │ │ │ │ └── index.html │ │ │ ├── zdkhelpcenteremptyhelpcenterdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcentererror │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emptyhelpcenter │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── invalidcategoryids │ │ │ │ └── index.html │ │ │ ├── invalidsectionids │ │ │ │ └── index.html │ │ │ ├── noarticlesforlabels │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkhelpcentererrordomain │ │ │ └── index.html │ │ │ ├── zdkhelpcenternoarticlesforlabelsdescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternocategorieslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenternosectionslocaliseddescription │ │ │ └── index.html │ │ │ ├── zdkhelpcenterui │ │ │ ├── build(_:) │ │ │ │ └── index.html │ │ │ ├── build(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(_:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverview(withconfigs:) │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui() │ │ │ │ └── index.html │ │ │ ├── buildhelpcenteroverviewui(withconfigs:) │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicator │ │ │ ├── index.html │ │ │ ├── init(viewcontroller:toplevel:layoutposition:) │ │ │ │ └── index.html │ │ │ └── init(viewcontroller:toplevelview:layoutposition:) │ │ │ │ └── index.html │ │ │ ├── zdklayoutguideapplicatorposition │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── bottom │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── top │ │ │ │ └── index.html │ │ │ ├── zdknavbarcreaterequestuitype │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── image │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── localizedlabel │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── zdkrequestui │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdkspinnerdelegate │ │ │ ├── center │ │ │ │ └── index.html │ │ │ ├── frame │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── ishidden │ │ │ │ └── index.html │ │ │ ├── startanimating() │ │ │ │ └── index.html │ │ │ └── stopanimating() │ │ │ │ └── index.html │ │ │ ├── zdksuasdebuglogger │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdksupportattachmentcell │ │ │ ├── cellidentifier() │ │ │ │ └── index.html │ │ │ ├── filesize │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── title │ │ │ │ └── index.html │ │ │ ├── zdktheme │ │ │ └── init │ │ │ │ └── index.html │ │ │ ├── zdktoastviewwrapper │ │ │ ├── dismiss() │ │ │ │ └── index.html │ │ │ ├── hidetoastview(_:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isvisible │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:) │ │ │ │ └── index.html │ │ │ ├── showerror(in:withmessage:buttontitle:action:) │ │ │ │ └── index.html │ │ │ └── showerror(in:withmessage:duration:) │ │ │ │ └── index.html │ │ │ ├── zdkuiislandscape() │ │ │ └── index.html │ │ │ ├── zdkuiorigininwindow(_:) │ │ │ └── index.html │ │ │ ├── zdkuiscreenframe() │ │ │ └── index.html │ │ │ ├── zdkuiutil │ │ │ ├── appearancevalue(for:selector:)-1dn96 │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:selector:)-4i9sm │ │ │ │ └── index.html │ │ │ ├── appearancevalue(for:whencontainedin:selector:) │ │ │ │ └── index.html │ │ │ ├── buildbutton(withframe:andtitle:) │ │ │ │ └── index.html │ │ │ ├── currentinterfaceorientation() │ │ │ │ └── index.html │ │ │ ├── fixorientation(of:) │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── islandscape() │ │ │ │ └── index.html │ │ │ ├── isnewerversion(_:) │ │ │ │ └── index.html │ │ │ ├── isolderversion(_:) │ │ │ │ └── index.html │ │ │ ├── ispad() │ │ │ │ └── index.html │ │ │ ├── issameversion(_:) │ │ │ │ └── index.html │ │ │ ├── scaledheight(for:constrainedbywidth:) │ │ │ │ └── index.html │ │ │ ├── separatorheightforscreenscale() │ │ │ │ └── index.html │ │ │ └── shouldenableattachments(_:) │ │ │ │ └── index.html │ │ │ ├── zdlog │ │ │ └── index.html │ │ │ └── zduispinner │ │ │ └── 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.aeb682fd.js │ │ ├── 866.6e371bd7.js │ │ ├── chunk-vendors.bdb7cbba.js │ │ ├── documentation-topic.28579b4f.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.d2f6f6a9.js │ │ ├── topic.24dedb87.js │ │ └── tutorials-overview.2d184ec0.js │ └── metadata.json └── 9.2.0 │ ├── css │ ├── 866.2d08a543.css │ ├── 989.4f123103.css │ ├── documentation-topic.da0b1931.css │ ├── index.3a335429.css │ ├── topic.4be8f56d.css │ └── tutorials-overview.adb17623.css │ ├── data │ └── documentation │ │ ├── supportsdk.json │ │ └── supportsdk │ │ ├── +(_:_:)-2o1ks.json │ │ ├── +(_:_:)-8bv54.json │ │ ├── action.json │ │ ├── actionlistenerfunction.json │ │ ├── actionsubscription.json │ │ ├── actionsubscription │ │ ├── linklifecycleto(object:).json │ │ └── removelistener().json │ │ ├── alwaysfilter.json │ │ ├── applicationtype.json │ │ ├── applicationtype │ │ └── topwindow.json │ │ ├── articleuiconfiguration.json │ │ ├── articleuiconfiguration │ │ ├── engines.json │ │ ├── init().json │ │ ├── isequal(_:).json │ │ ├── objcengines.json │ │ └── showcontactoptions.json │ │ ├── asyncaction.json │ │ ├── asyncaction │ │ └── execute(getstate:dispatch:).json │ │ ├── asyncmiddleware.json │ │ ├── asyncmiddleware │ │ ├── init().json │ │ └── onaction(action:getstate:dispatch:next:).json │ │ ├── blockasyncaction.json │ │ ├── blockasyncaction │ │ ├── execute(getstate:dispatch:).json │ │ └── init(executionblock:).json │ │ ├── blockmiddleware.json │ │ ├── blockmiddleware │ │ ├── init(actionfunction:).json │ │ └── onaction(action:getstate:dispatch:next:).json │ │ ├── blockreducer.json │ │ ├── blockreducer │ │ ├── init(initialstate:reduce:).json │ │ ├── init(initialstate:statekey:reduce:).json │ │ ├── initialstate.json │ │ ├── reduce(state:action:).json │ │ └── statekey.json │ │ ├── cgcenterrectinrect(_:_:).json │ │ ├── cgmakecenteredrectinrect(_:_:_:).json │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:).json │ │ ├── cgrectmakecenteredinscreen(_:_:).json │ │ ├── combinedreducer.json │ │ ├── combinedreducer │ │ ├── initialstate.json │ │ ├── reduce(state:action:).json │ │ ├── reducer-implementations.json │ │ └── statekey.json │ │ ├── containerchild.json │ │ ├── containerchild │ │ └── childdelegate.json │ │ ├── containerchildcontroller.json │ │ ├── containerchildcontrollerdelegate.json │ │ ├── containerchildcontrollerdelegate │ │ ├── navitem.json │ │ └── willdismiss().json │ │ ├── containerviewcontroller.json │ │ ├── containerviewcontroller │ │ ├── containerchildcontrollerdelegate-implementations.json │ │ ├── initwithcoder:.json │ │ ├── initwithnibname:bundle:.json │ │ ├── navitem.json │ │ ├── viewdidload().json │ │ └── willdismiss().json │ │ ├── coordinatingviewcontroller.json │ │ ├── coordinatingviewcontroller │ │ ├── init(coordinator:).json │ │ ├── viewdidappear(_:).json │ │ ├── viewdiddisappear(_:).json │ │ ├── viewdidload().json │ │ └── viewwillappear(_:).json │ │ ├── coordinator.json │ │ ├── coordinator │ │ └── start(present:with:).json │ │ ├── defaultlogger.json │ │ ├── dismissutil.json │ │ ├── dismissutil │ │ ├── barbuttonfor(_:embededin:action:).json │ │ ├── navigationcontroller(_:didpush:).json │ │ └── remove(_:from:).json │ │ ├── dispatchfunction.json │ │ ├── equalsfilter.json │ │ ├── filetype.json │ │ ├── filetype │ │ ├── !=(_:_:).json │ │ ├── binary.json │ │ ├── equatable-implementations.json │ │ ├── excel.json │ │ ├── hash(into:).json │ │ ├── hashvalue.json │ │ ├── heic.json │ │ ├── init(rawvalue:).json │ │ ├── jpg.json │ │ ├── keynote.json │ │ ├── numbers.json │ │ ├── pages.json │ │ ├── pdf.json │ │ ├── plain.json │ │ ├── png.json │ │ ├── powerpoint.json │ │ ├── powerpointx.json │ │ ├── rawrepresentable-implementations.json │ │ └── word.json │ │ ├── filterfunction.json │ │ ├── getstatefunction.json │ │ ├── helpcenterarticlevotinghandler.json │ │ ├── helpcenterarticlevotinghandler │ │ ├── articleratingvoteselected(_:at:).json │ │ ├── currentarticlevote().json │ │ └── init(witharticleid:andlocale:).json │ │ ├── helpcentercontactusrouter.json │ │ ├── helpcentercontactusrouter │ │ ├── decidebuttonactionforemptysearch().json │ │ ├── decidebuttonactionfornavbar().json │ │ └── init(withpresentingviewcontroller:configurations:engines:).json │ │ ├── helpcentercoordinator.json │ │ ├── helpcentercoordinator │ │ ├── init(helpcentercontroller:uiconfigurations:).json │ │ └── start(present:with:).json │ │ ├── helpcenterdelegate.json │ │ ├── helpcenterui.json │ │ ├── helpcenteruiconfiguration.json │ │ ├── helpcenteruiconfiguration │ │ ├── engines.json │ │ ├── groupids.json │ │ ├── grouptype.json │ │ ├── init().json │ │ ├── labels.json │ │ ├── objcengines.json │ │ ├── overviewcontentmodel.json │ │ ├── showcontactoptions.json │ │ └── showcontactoptionsonemptysearch.json │ │ ├── keyedstate.json │ │ ├── listenerfunction.json │ │ ├── loggermiddleware.json │ │ ├── loggermiddleware │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:).json │ │ └── onaction(action:getstate:dispatch:next:).json │ │ ├── middleware.json │ │ ├── middleware │ │ └── onaction(action:getstate:dispatch:next:).json │ │ ├── middlewarefunction.json │ │ ├── nextfunction.json │ │ ├── reducer.json │ │ ├── reducer │ │ ├── initialstate.json │ │ ├── reduce(state:action:).json │ │ ├── statekey-9741m.json │ │ ├── statekey.json │ │ └── statetype.json │ │ ├── reducerfunction.json │ │ ├── requestattachment.json │ │ ├── requestattachment │ │ ├── data.json │ │ ├── filename.json │ │ ├── filetype.json │ │ └── init(filename:data:filetype:).json │ │ ├── requestcoordinator.json │ │ ├── requestcoordinator │ │ └── start(present:with:).json │ │ ├── requestlistuiconfiguration.json │ │ ├── requestlistuiconfiguration │ │ ├── allowrequestcreation.json │ │ ├── init().json │ │ └── isequal(_:).json │ │ ├── requestui.json │ │ ├── requestui │ │ ├── buildrequestlist().json │ │ ├── buildrequestlist(with:).json │ │ ├── buildrequestui().json │ │ ├── buildrequestui(requestid:).json │ │ ├── buildrequestui(requestid:configurations:).json │ │ └── buildrequestui(with:).json │ │ ├── requestuiconfiguration.json │ │ ├── requestuiconfiguration │ │ ├── customfields.json │ │ ├── fileattachments.json │ │ ├── init().json │ │ ├── isequal(_:).json │ │ ├── subject.json │ │ ├── tags.json │ │ └── ticketformid.json │ │ ├── state.json │ │ ├── state │ │ ├── expressiblebydictionaryliteral-implementations.json │ │ ├── init(dictionary:).json │ │ ├── init(dictionaryliteral:).json │ │ ├── keys.json │ │ ├── subscript(_:).json │ │ ├── subscript(forkey:oftype:).json │ │ ├── subscript(forkeyoftype:).json │ │ ├── value(forkey:).json │ │ ├── value(forkey:oftype:).json │ │ └── value(forkeyoftype:).json │ │ ├── statekey.json │ │ ├── stateselector.json │ │ ├── store.json │ │ ├── store │ │ ├── addactionlistener(actionlistener:).json │ │ ├── addlistener(forstatetype:statekey:if:callback:).json │ │ ├── addlistener(if:callback:).json │ │ ├── addlistener(if:stateselector:callback:).json │ │ ├── dispatch(action:).json │ │ ├── reset(state:).json │ │ ├── reset(state:forkey:).json │ │ ├── resetfullstate(_:).json │ │ └── state.json │ │ ├── suas.json │ │ ├── suas │ │ ├── createstore(reducer:middleware:).json │ │ ├── createstore(reducer:state:middleware:)-3k9yl.json │ │ ├── createstore(reducer:state:middleware:)-4w130.json │ │ └── enabledebuglogging.json │ │ ├── suasdebuglogger.json │ │ ├── suasdebuglogger │ │ └── enabled.json │ │ ├── suasdynamicequatable.json │ │ ├── suasdynamicequatable │ │ ├── isequal(to:)-19mke.json │ │ └── isequal(to:).json │ │ ├── subscription.json │ │ ├── subscription │ │ ├── informwithcurrentstate().json │ │ ├── linklifecycleto(object:).json │ │ └── removelistener().json │ │ ├── supportengine.json │ │ ├── supportengine │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ ├── configs.json │ │ ├── engine().json │ │ ├── engine-implementations.json │ │ ├── id.json │ │ ├── isconversationongoing().json │ │ ├── isconversationongoing(_:).json │ │ ├── notifyobservers(_:).json │ │ ├── observable-implementations.json │ │ ├── observeupdates(_:).json │ │ ├── onevent(_:).json │ │ ├── onupdate.json │ │ ├── start(messagingapi:).json │ │ ├── stop().json │ │ └── transferoptiondescription.json │ │ ├── supportsdk_h.json │ │ ├── supportui.json │ │ ├── supportui │ │ ├── helpcenterlocaleoverride.json │ │ ├── initialize(withzendesk:).json │ │ ├── instance.json │ │ └── refreshrequest(requestid:).json │ │ ├── swift.json │ │ ├── swift │ │ ├── string.json │ │ └── string │ │ │ ├── isequal(to:).json │ │ │ └── suasdynamicequatable-implementations.json │ │ ├── system_version_greater_than_seven.json │ │ ├── theme.json │ │ ├── theme │ │ ├── currenttheme.json │ │ └── primarycolor.json │ │ ├── uikit.json │ │ ├── uikit │ │ ├── uiapplication.json │ │ └── uiapplication │ │ │ ├── applicationtype-implementations.json │ │ │ └── topwindow.json │ │ ├── window.json │ │ ├── window │ │ ├── addsubview(_:).json │ │ ├── bounds.json │ │ ├── layer.json │ │ └── windowlevel.json │ │ ├── zd_is_ipad.json │ │ ├── zd_is_iphone.json │ │ ├── zdkconstants.json │ │ ├── zdkconstants │ │ ├── colorfortoast().json │ │ └── init.json │ │ ├── zdkcontactusvisibility.json │ │ ├── zdkcontactusvisibility │ │ ├── !=(_:_:).json │ │ ├── articlelistandarticle.json │ │ ├── articlelistonly.json │ │ ├── equatable-implementations.json │ │ ├── hash(into:).json │ │ ├── hashvalue.json │ │ ├── init(rawvalue:).json │ │ ├── off.json │ │ └── rawrepresentable-implementations.json │ │ ├── zdkcreaterequestuidelegate.json │ │ ├── zdkcreaterequestuidelegate │ │ ├── createrequestbarbuttonimage().json │ │ ├── createrequestbarbuttonlocalizedlabel().json │ │ └── navbarcreaterequestuitype().json │ │ ├── zdkdismissutil │ │ └── init.json │ │ ├── zdkhelpcenterarticleratinghandlerprotocol.json │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ ├── articleratingvoteselected(_:at:).json │ │ └── currentarticlevote().json │ │ ├── zdkhelpcenterarticleratingstateprotocol.json │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ └── updatebuttonstatesforbutton(atindexselected:).json │ │ ├── zdkhelpcenterattachmentsdatasource.json │ │ ├── zdkhelpcenterattachmentsdatasource │ │ └── init(articleid:).json │ │ ├── zdkhelpcentercellconfigureblock.json │ │ ├── zdkhelpcenterconversationsuidelegate.json │ │ ├── zdkhelpcenterconversationsuidelegate │ │ ├── active().json │ │ ├── conversationsbarbuttonimage().json │ │ ├── conversationsbarbuttonlocalizedlabel().json │ │ └── navbarconversationsuitype().json │ │ ├── zdkhelpcenterdatasource.json │ │ ├── zdkhelpcenterdatasource │ │ ├── cellidentifierfordatasource().json │ │ ├── hasitems.json │ │ ├── item(at:).json │ │ ├── items.json │ │ ├── provider.json │ │ └── reloaddata().json │ │ ├── zdkhelpcenterdelegate.json │ │ ├── zdkhelpcenterdelegate │ │ └── uidelegate.json │ │ ├── zdkhelpcenteremptyhelpcenterdescription.json │ │ ├── zdkhelpcentererror.json │ │ ├── zdkhelpcentererror │ │ ├── !=(_:_:).json │ │ ├── emptyhelpcenter.json │ │ ├── equatable-implementations.json │ │ ├── hash(into:).json │ │ ├── hashvalue.json │ │ ├── init(rawvalue:).json │ │ ├── invalidcategoryids.json │ │ ├── invalidsectionids.json │ │ ├── noarticlesforlabels.json │ │ └── rawrepresentable-implementations.json │ │ ├── zdkhelpcentererrordomain.json │ │ ├── zdkhelpcenternoarticlesforlabelsdescription.json │ │ ├── zdkhelpcenternocategorieslocaliseddescription.json │ │ ├── zdkhelpcenternosectionslocaliseddescription.json │ │ ├── zdkhelpcenterui.json │ │ ├── zdkhelpcenterui │ │ ├── build(_:).json │ │ ├── build(_:andconfigs:).json │ │ ├── buildhelpcenterarticle(witharticleid:).json │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:).json │ │ ├── buildhelpcenterarticleui(_:).json │ │ ├── buildhelpcenterarticleui(_:andconfigs:).json │ │ ├── buildhelpcenterarticleui(witharticleid:).json │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:).json │ │ ├── buildhelpcenteroverview().json │ │ ├── buildhelpcenteroverview(withconfigs:).json │ │ ├── buildhelpcenteroverviewui().json │ │ └── buildhelpcenteroverviewui(withconfigs:).json │ │ ├── zdklayoutguideapplicator.json │ │ ├── zdklayoutguideapplicator │ │ ├── init(viewcontroller:toplevel:layoutposition:).json │ │ └── init(viewcontroller:toplevelview:layoutposition:).json │ │ ├── zdklayoutguideapplicatorposition.json │ │ ├── zdklayoutguideapplicatorposition │ │ ├── !=(_:_:).json │ │ ├── bottom.json │ │ ├── equatable-implementations.json │ │ ├── hash(into:).json │ │ ├── hashvalue.json │ │ ├── init(rawvalue:).json │ │ ├── rawrepresentable-implementations.json │ │ └── top.json │ │ ├── zdknavbarcreaterequestuitype.json │ │ ├── zdknavbarcreaterequestuitype │ │ ├── !=(_:_:).json │ │ ├── equatable-implementations.json │ │ ├── hash(into:).json │ │ ├── hashvalue.json │ │ ├── image.json │ │ ├── init(rawvalue:).json │ │ ├── localizedlabel.json │ │ └── rawrepresentable-implementations.json │ │ ├── zdkrequestui │ │ └── init.json │ │ ├── zdkspinnerdelegate.json │ │ ├── zdkspinnerdelegate │ │ ├── center.json │ │ ├── frame.json │ │ ├── ishidden.json │ │ ├── startanimating().json │ │ └── stopanimating().json │ │ ├── zdksuasdebuglogger │ │ └── init.json │ │ ├── zdksupportattachmentcell.json │ │ ├── zdksupportattachmentcell │ │ ├── cellidentifier().json │ │ ├── filesize.json │ │ └── title.json │ │ ├── zdktheme │ │ └── init.json │ │ ├── zdktoastviewwrapper.json │ │ ├── zdktoastviewwrapper │ │ ├── dismiss().json │ │ ├── hidetoastview(_:).json │ │ ├── isvisible.json │ │ ├── showerror(in:withmessage:).json │ │ ├── showerror(in:withmessage:buttontitle:action:).json │ │ └── showerror(in:withmessage:duration:).json │ │ ├── zdkuiislandscape().json │ │ ├── zdkuiorigininwindow(_:).json │ │ ├── zdkuiscreenframe().json │ │ ├── zdkuiutil.json │ │ ├── zdkuiutil │ │ ├── appearancevalue(for:selector:)-1dn96.json │ │ ├── appearancevalue(for:selector:)-4i9sm.json │ │ ├── appearancevalue(for:whencontainedin:selector:).json │ │ ├── buildbutton(withframe:andtitle:).json │ │ ├── currentinterfaceorientation().json │ │ ├── fixorientation(of:).json │ │ ├── islandscape().json │ │ ├── isnewerversion(_:).json │ │ ├── isolderversion(_:).json │ │ ├── ispad().json │ │ ├── issameversion(_:).json │ │ ├── scaledheight(for:constrainedbywidth:).json │ │ ├── separatorheightforscreenscale().json │ │ └── shouldenableattachments(_:).json │ │ ├── zdlog.json │ │ └── zduispinner.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ └── supportsdk │ │ ├── +(_:_:)-2o1ks │ │ └── index.html │ │ ├── +(_:_:)-8bv54 │ │ └── index.html │ │ ├── action │ │ └── index.html │ │ ├── actionlistenerfunction │ │ └── index.html │ │ ├── actionsubscription │ │ ├── index.html │ │ ├── linklifecycleto(object:) │ │ │ └── index.html │ │ └── removelistener() │ │ │ └── index.html │ │ ├── alwaysfilter │ │ └── index.html │ │ ├── applicationtype │ │ ├── index.html │ │ └── topwindow │ │ │ └── index.html │ │ ├── articleuiconfiguration │ │ ├── engines │ │ │ └── index.html │ │ ├── index.html │ │ ├── init() │ │ │ └── index.html │ │ ├── isequal(_:) │ │ │ └── index.html │ │ ├── objcengines │ │ │ └── index.html │ │ └── showcontactoptions │ │ │ └── index.html │ │ ├── asyncaction │ │ ├── execute(getstate:dispatch:) │ │ │ └── index.html │ │ └── index.html │ │ ├── asyncmiddleware │ │ ├── index.html │ │ ├── init() │ │ │ └── index.html │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ └── index.html │ │ ├── blockasyncaction │ │ ├── execute(getstate:dispatch:) │ │ │ └── index.html │ │ ├── index.html │ │ └── init(executionblock:) │ │ │ └── index.html │ │ ├── blockmiddleware │ │ ├── index.html │ │ ├── init(actionfunction:) │ │ │ └── index.html │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ └── index.html │ │ ├── blockreducer │ │ ├── index.html │ │ ├── init(initialstate:reduce:) │ │ │ └── index.html │ │ ├── init(initialstate:statekey:reduce:) │ │ │ └── index.html │ │ ├── initialstate │ │ │ └── index.html │ │ ├── reduce(state:action:) │ │ │ └── index.html │ │ └── statekey │ │ │ └── index.html │ │ ├── cgcenterrectinrect(_:_:) │ │ └── index.html │ │ ├── cgmakecenteredrectinrect(_:_:_:) │ │ └── index.html │ │ ├── cgmakecenteredrectonxinrect(_:_:_:_:) │ │ └── index.html │ │ ├── cgrectmakecenteredinscreen(_:_:) │ │ └── index.html │ │ ├── combinedreducer │ │ ├── index.html │ │ ├── initialstate │ │ │ └── index.html │ │ ├── reduce(state:action:) │ │ │ └── index.html │ │ ├── reducer-implementations │ │ │ └── index.html │ │ └── statekey │ │ │ └── index.html │ │ ├── containerchild │ │ ├── childdelegate │ │ │ └── index.html │ │ └── index.html │ │ ├── containerchildcontroller │ │ └── index.html │ │ ├── containerchildcontrollerdelegate │ │ ├── index.html │ │ ├── navitem │ │ │ └── index.html │ │ └── willdismiss() │ │ │ └── index.html │ │ ├── containerviewcontroller │ │ ├── containerchildcontrollerdelegate-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── initwithcoder: │ │ │ └── index.html │ │ ├── initwithnibname:bundle: │ │ │ └── index.html │ │ ├── navitem │ │ │ └── index.html │ │ ├── viewdidload() │ │ │ └── index.html │ │ └── willdismiss() │ │ │ └── index.html │ │ ├── coordinatingviewcontroller │ │ ├── index.html │ │ ├── init(coordinator:) │ │ │ └── index.html │ │ ├── viewdidappear(_:) │ │ │ └── index.html │ │ ├── viewdiddisappear(_:) │ │ │ └── index.html │ │ ├── viewdidload() │ │ │ └── index.html │ │ └── viewwillappear(_:) │ │ │ └── index.html │ │ ├── coordinator │ │ ├── index.html │ │ └── start(present:with:) │ │ │ └── index.html │ │ ├── defaultlogger │ │ └── index.html │ │ ├── dismissutil │ │ ├── barbuttonfor(_:embededin:action:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── navigationcontroller(_:didpush:) │ │ │ └── index.html │ │ └── remove(_:from:) │ │ │ └── index.html │ │ ├── dispatchfunction │ │ └── index.html │ │ ├── equalsfilter │ │ └── index.html │ │ ├── filetype │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── binary │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── excel │ │ │ └── index.html │ │ ├── hash(into:) │ │ │ └── index.html │ │ ├── hashvalue │ │ │ └── index.html │ │ ├── heic │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(rawvalue:) │ │ │ └── index.html │ │ ├── jpg │ │ │ └── index.html │ │ ├── keynote │ │ │ └── index.html │ │ ├── numbers │ │ │ └── index.html │ │ ├── pages │ │ │ └── index.html │ │ ├── pdf │ │ │ └── index.html │ │ ├── plain │ │ │ └── index.html │ │ ├── png │ │ │ └── index.html │ │ ├── powerpoint │ │ │ └── index.html │ │ ├── powerpointx │ │ │ └── index.html │ │ ├── rawrepresentable-implementations │ │ │ └── index.html │ │ └── word │ │ │ └── index.html │ │ ├── filterfunction │ │ └── index.html │ │ ├── getstatefunction │ │ └── index.html │ │ ├── helpcenterarticlevotinghandler │ │ ├── articleratingvoteselected(_:at:) │ │ │ └── index.html │ │ ├── currentarticlevote() │ │ │ └── index.html │ │ ├── index.html │ │ └── init(witharticleid:andlocale:) │ │ │ └── index.html │ │ ├── helpcentercontactusrouter │ │ ├── decidebuttonactionforemptysearch() │ │ │ └── index.html │ │ ├── decidebuttonactionfornavbar() │ │ │ └── index.html │ │ ├── index.html │ │ └── init(withpresentingviewcontroller:configurations:engines:) │ │ │ └── index.html │ │ ├── helpcentercoordinator │ │ ├── index.html │ │ ├── init(helpcentercontroller:uiconfigurations:) │ │ │ └── index.html │ │ └── start(present:with:) │ │ │ └── index.html │ │ ├── helpcenterdelegate │ │ └── index.html │ │ ├── helpcenterui │ │ └── index.html │ │ ├── helpcenteruiconfiguration │ │ ├── engines │ │ │ └── index.html │ │ ├── groupids │ │ │ └── index.html │ │ ├── grouptype │ │ │ └── index.html │ │ ├── index.html │ │ ├── init() │ │ │ └── index.html │ │ ├── labels │ │ │ └── index.html │ │ ├── objcengines │ │ │ └── index.html │ │ ├── overviewcontentmodel │ │ │ └── index.html │ │ ├── showcontactoptions │ │ │ └── index.html │ │ └── showcontactoptionsonemptysearch │ │ │ └── index.html │ │ ├── index.html │ │ ├── keyedstate │ │ └── index.html │ │ ├── listenerfunction │ │ └── index.html │ │ ├── loggermiddleware │ │ ├── index.html │ │ ├── init(showtimestamp:showduration:linelength:predicate:debugonly:titleformatter:statetransformer:actiontransformer:logger:) │ │ │ └── index.html │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ └── index.html │ │ ├── middleware │ │ ├── index.html │ │ └── onaction(action:getstate:dispatch:next:) │ │ │ └── index.html │ │ ├── middlewarefunction │ │ └── index.html │ │ ├── nextfunction │ │ └── index.html │ │ ├── reducer │ │ ├── index.html │ │ ├── initialstate │ │ │ └── index.html │ │ ├── reduce(state:action:) │ │ │ └── index.html │ │ ├── statekey-9741m │ │ │ └── index.html │ │ ├── statekey │ │ │ └── index.html │ │ └── statetype │ │ │ └── index.html │ │ ├── reducerfunction │ │ └── index.html │ │ ├── requestattachment │ │ ├── data │ │ │ └── index.html │ │ ├── filename │ │ │ └── index.html │ │ ├── filetype │ │ │ └── index.html │ │ ├── index.html │ │ └── init(filename:data:filetype:) │ │ │ └── index.html │ │ ├── requestcoordinator │ │ ├── index.html │ │ └── start(present:with:) │ │ │ └── index.html │ │ ├── requestlistuiconfiguration │ │ ├── allowrequestcreation │ │ │ └── index.html │ │ ├── index.html │ │ ├── init() │ │ │ └── index.html │ │ └── isequal(_:) │ │ │ └── index.html │ │ ├── requestui │ │ ├── buildrequestlist() │ │ │ └── index.html │ │ ├── buildrequestlist(with:) │ │ │ └── index.html │ │ ├── buildrequestui() │ │ │ └── index.html │ │ ├── buildrequestui(requestid:) │ │ │ └── index.html │ │ ├── buildrequestui(requestid:configurations:) │ │ │ └── index.html │ │ ├── buildrequestui(with:) │ │ │ └── index.html │ │ └── index.html │ │ ├── requestuiconfiguration │ │ ├── customfields │ │ │ └── index.html │ │ ├── fileattachments │ │ │ └── index.html │ │ ├── index.html │ │ ├── init() │ │ │ └── index.html │ │ ├── isequal(_:) │ │ │ └── index.html │ │ ├── subject │ │ │ └── index.html │ │ ├── tags │ │ │ └── index.html │ │ └── ticketformid │ │ │ └── index.html │ │ ├── state │ │ ├── expressiblebydictionaryliteral-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(dictionary:) │ │ │ └── index.html │ │ ├── init(dictionaryliteral:) │ │ │ └── index.html │ │ ├── keys │ │ │ └── index.html │ │ ├── subscript(_:) │ │ │ └── index.html │ │ ├── subscript(forkey:oftype:) │ │ │ └── index.html │ │ ├── subscript(forkeyoftype:) │ │ │ └── index.html │ │ ├── value(forkey:) │ │ │ └── index.html │ │ ├── value(forkey:oftype:) │ │ │ └── index.html │ │ └── value(forkeyoftype:) │ │ │ └── index.html │ │ ├── statekey │ │ └── index.html │ │ ├── stateselector │ │ └── index.html │ │ ├── store │ │ ├── addactionlistener(actionlistener:) │ │ │ └── index.html │ │ ├── addlistener(forstatetype:statekey:if:callback:) │ │ │ └── index.html │ │ ├── addlistener(if:callback:) │ │ │ └── index.html │ │ ├── addlistener(if:stateselector:callback:) │ │ │ └── index.html │ │ ├── dispatch(action:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── reset(state:) │ │ │ └── index.html │ │ ├── reset(state:forkey:) │ │ │ └── index.html │ │ ├── resetfullstate(_:) │ │ │ └── index.html │ │ └── state │ │ │ └── index.html │ │ ├── suas │ │ ├── createstore(reducer:middleware:) │ │ │ └── index.html │ │ ├── createstore(reducer:state:middleware:)-3k9yl │ │ │ └── index.html │ │ ├── createstore(reducer:state:middleware:)-4w130 │ │ │ └── index.html │ │ ├── enabledebuglogging │ │ │ └── index.html │ │ └── index.html │ │ ├── suasdebuglogger │ │ ├── enabled │ │ │ └── index.html │ │ └── index.html │ │ ├── suasdynamicequatable │ │ ├── index.html │ │ ├── isequal(to:)-19mke │ │ │ └── index.html │ │ └── isequal(to:) │ │ │ └── index.html │ │ ├── subscription │ │ ├── index.html │ │ ├── informwithcurrentstate() │ │ │ └── index.html │ │ ├── linklifecycleto(object:) │ │ │ └── index.html │ │ └── removelistener() │ │ │ └── index.html │ │ ├── supportengine │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ └── index.html │ │ ├── configs │ │ │ └── index.html │ │ ├── engine() │ │ │ └── index.html │ │ ├── engine-implementations │ │ │ └── index.html │ │ ├── id │ │ │ └── index.html │ │ ├── index.html │ │ ├── isconversationongoing() │ │ │ └── index.html │ │ ├── isconversationongoing(_:) │ │ │ └── index.html │ │ ├── notifyobservers(_:) │ │ │ └── index.html │ │ ├── observable-implementations │ │ │ └── index.html │ │ ├── observeupdates(_:) │ │ │ └── index.html │ │ ├── onevent(_:) │ │ │ └── index.html │ │ ├── onupdate │ │ │ └── index.html │ │ ├── start(messagingapi:) │ │ │ └── index.html │ │ ├── stop() │ │ │ └── index.html │ │ └── transferoptiondescription │ │ │ └── index.html │ │ ├── supportsdk_h │ │ └── index.html │ │ ├── supportui │ │ ├── helpcenterlocaleoverride │ │ │ └── index.html │ │ ├── index.html │ │ ├── initialize(withzendesk:) │ │ │ └── index.html │ │ ├── instance │ │ │ └── index.html │ │ └── refreshrequest(requestid:) │ │ │ └── index.html │ │ ├── swift │ │ ├── index.html │ │ └── string │ │ │ ├── index.html │ │ │ ├── isequal(to:) │ │ │ └── index.html │ │ │ └── suasdynamicequatable-implementations │ │ │ └── index.html │ │ ├── system_version_greater_than_seven │ │ └── index.html │ │ ├── theme │ │ ├── currenttheme │ │ │ └── index.html │ │ ├── index.html │ │ └── primarycolor │ │ │ └── index.html │ │ ├── uikit │ │ ├── index.html │ │ └── uiapplication │ │ │ ├── applicationtype-implementations │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── topwindow │ │ │ └── index.html │ │ ├── window │ │ ├── addsubview(_:) │ │ │ └── index.html │ │ ├── bounds │ │ │ └── index.html │ │ ├── index.html │ │ ├── layer │ │ │ └── index.html │ │ └── windowlevel │ │ │ └── index.html │ │ ├── zd_is_ipad │ │ └── index.html │ │ ├── zd_is_iphone │ │ └── index.html │ │ ├── zdkconstants │ │ ├── colorfortoast() │ │ │ └── index.html │ │ ├── index.html │ │ └── init │ │ │ └── index.html │ │ ├── zdkcontactusvisibility │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── articlelistandarticle │ │ │ └── index.html │ │ ├── articlelistonly │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── hash(into:) │ │ │ └── index.html │ │ ├── hashvalue │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(rawvalue:) │ │ │ └── index.html │ │ ├── off │ │ │ └── index.html │ │ └── rawrepresentable-implementations │ │ │ └── index.html │ │ ├── zdkcreaterequestuidelegate │ │ ├── createrequestbarbuttonimage() │ │ │ └── index.html │ │ ├── createrequestbarbuttonlocalizedlabel() │ │ │ └── index.html │ │ ├── index.html │ │ └── navbarcreaterequestuitype() │ │ │ └── index.html │ │ ├── zdkdismissutil │ │ └── init │ │ │ └── index.html │ │ ├── zdkhelpcenterarticleratinghandlerprotocol │ │ ├── articleratingvoteselected(_:at:) │ │ │ └── index.html │ │ ├── currentarticlevote() │ │ │ └── index.html │ │ └── index.html │ │ ├── zdkhelpcenterarticleratingstateprotocol │ │ ├── index.html │ │ └── updatebuttonstatesforbutton(atindexselected:) │ │ │ └── index.html │ │ ├── zdkhelpcenterattachmentsdatasource │ │ ├── index.html │ │ └── init(articleid:) │ │ │ └── index.html │ │ ├── zdkhelpcentercellconfigureblock │ │ └── index.html │ │ ├── zdkhelpcenterconversationsuidelegate │ │ ├── active() │ │ │ └── index.html │ │ ├── conversationsbarbuttonimage() │ │ │ └── index.html │ │ ├── conversationsbarbuttonlocalizedlabel() │ │ │ └── index.html │ │ ├── index.html │ │ └── navbarconversationsuitype() │ │ │ └── index.html │ │ ├── zdkhelpcenterdatasource │ │ ├── cellidentifierfordatasource() │ │ │ └── index.html │ │ ├── hasitems │ │ │ └── index.html │ │ ├── index.html │ │ ├── item(at:) │ │ │ └── index.html │ │ ├── items │ │ │ └── index.html │ │ ├── provider │ │ │ └── index.html │ │ └── reloaddata() │ │ │ └── index.html │ │ ├── zdkhelpcenterdelegate │ │ ├── index.html │ │ └── uidelegate │ │ │ └── index.html │ │ ├── zdkhelpcenteremptyhelpcenterdescription │ │ └── index.html │ │ ├── zdkhelpcentererror │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── emptyhelpcenter │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── hash(into:) │ │ │ └── index.html │ │ ├── hashvalue │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(rawvalue:) │ │ │ └── index.html │ │ ├── invalidcategoryids │ │ │ └── index.html │ │ ├── invalidsectionids │ │ │ └── index.html │ │ ├── noarticlesforlabels │ │ │ └── index.html │ │ └── rawrepresentable-implementations │ │ │ └── index.html │ │ ├── zdkhelpcentererrordomain │ │ └── index.html │ │ ├── zdkhelpcenternoarticlesforlabelsdescription │ │ └── index.html │ │ ├── zdkhelpcenternocategorieslocaliseddescription │ │ └── index.html │ │ ├── zdkhelpcenternosectionslocaliseddescription │ │ └── index.html │ │ ├── zdkhelpcenterui │ │ ├── build(_:) │ │ │ └── index.html │ │ ├── build(_:andconfigs:) │ │ │ └── index.html │ │ ├── buildhelpcenterarticle(witharticleid:) │ │ │ └── index.html │ │ ├── buildhelpcenterarticle(witharticleid:andconfigs:) │ │ │ └── index.html │ │ ├── buildhelpcenterarticleui(_:) │ │ │ └── index.html │ │ ├── buildhelpcenterarticleui(_:andconfigs:) │ │ │ └── index.html │ │ ├── buildhelpcenterarticleui(witharticleid:) │ │ │ └── index.html │ │ ├── buildhelpcenterarticleui(witharticleid:andconfigs:) │ │ │ └── index.html │ │ ├── buildhelpcenteroverview() │ │ │ └── index.html │ │ ├── buildhelpcenteroverview(withconfigs:) │ │ │ └── index.html │ │ ├── buildhelpcenteroverviewui() │ │ │ └── index.html │ │ ├── buildhelpcenteroverviewui(withconfigs:) │ │ │ └── index.html │ │ └── index.html │ │ ├── zdklayoutguideapplicator │ │ ├── index.html │ │ ├── init(viewcontroller:toplevel:layoutposition:) │ │ │ └── index.html │ │ └── init(viewcontroller:toplevelview:layoutposition:) │ │ │ └── index.html │ │ ├── zdklayoutguideapplicatorposition │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── bottom │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── hash(into:) │ │ │ └── index.html │ │ ├── hashvalue │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(rawvalue:) │ │ │ └── index.html │ │ ├── rawrepresentable-implementations │ │ │ └── index.html │ │ └── top │ │ │ └── index.html │ │ ├── zdknavbarcreaterequestuitype │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── hash(into:) │ │ │ └── index.html │ │ ├── hashvalue │ │ │ └── index.html │ │ ├── image │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(rawvalue:) │ │ │ └── index.html │ │ ├── localizedlabel │ │ │ └── index.html │ │ └── rawrepresentable-implementations │ │ │ └── index.html │ │ ├── zdkrequestui │ │ └── init │ │ │ └── index.html │ │ ├── zdkspinnerdelegate │ │ ├── center │ │ │ └── index.html │ │ ├── frame │ │ │ └── index.html │ │ ├── index.html │ │ ├── ishidden │ │ │ └── index.html │ │ ├── startanimating() │ │ │ └── index.html │ │ └── stopanimating() │ │ │ └── index.html │ │ ├── zdksuasdebuglogger │ │ └── init │ │ │ └── index.html │ │ ├── zdksupportattachmentcell │ │ ├── cellidentifier() │ │ │ └── index.html │ │ ├── filesize │ │ │ └── index.html │ │ ├── index.html │ │ └── title │ │ │ └── index.html │ │ ├── zdktheme │ │ └── init │ │ │ └── index.html │ │ ├── zdktoastviewwrapper │ │ ├── dismiss() │ │ │ └── index.html │ │ ├── hidetoastview(_:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── isvisible │ │ │ └── index.html │ │ ├── showerror(in:withmessage:) │ │ │ └── index.html │ │ ├── showerror(in:withmessage:buttontitle:action:) │ │ │ └── index.html │ │ └── showerror(in:withmessage:duration:) │ │ │ └── index.html │ │ ├── zdkuiislandscape() │ │ └── index.html │ │ ├── zdkuiorigininwindow(_:) │ │ └── index.html │ │ ├── zdkuiscreenframe() │ │ └── index.html │ │ ├── zdkuiutil │ │ ├── appearancevalue(for:selector:)-1dn96 │ │ │ └── index.html │ │ ├── appearancevalue(for:selector:)-4i9sm │ │ │ └── index.html │ │ ├── appearancevalue(for:whencontainedin:selector:) │ │ │ └── index.html │ │ ├── buildbutton(withframe:andtitle:) │ │ │ └── index.html │ │ ├── currentinterfaceorientation() │ │ │ └── index.html │ │ ├── fixorientation(of:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── islandscape() │ │ │ └── index.html │ │ ├── isnewerversion(_:) │ │ │ └── index.html │ │ ├── isolderversion(_:) │ │ │ └── index.html │ │ ├── ispad() │ │ │ └── index.html │ │ ├── issameversion(_:) │ │ │ └── index.html │ │ ├── scaledheight(for:constrainedbywidth:) │ │ │ └── index.html │ │ ├── separatorheightforscreenscale() │ │ │ └── index.html │ │ └── shouldenableattachments(_:) │ │ │ └── index.html │ │ ├── zdlog │ │ └── index.html │ │ └── zduispinner │ │ └── 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.aeb682fd.js │ ├── 866.6e371bd7.js │ ├── chunk-vendors.bdb7cbba.js │ ├── documentation-topic.28579b4f.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.d2f6f6a9.js │ ├── topic.24dedb87.js │ └── tutorials-overview.2d184ec0.js │ └── metadata.json └── index.html /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/deploy-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/.github/workflows/deploy-documentation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/Cartfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Placeholder.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SupportSDK.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/SupportSDK.xcframework/Info.plist -------------------------------------------------------------------------------- /SupportSDK.xcframework/ios-arm64/SupportSDK.framework/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/SupportSDK.xcframework/ios-arm64/SupportSDK.framework/Assets.car -------------------------------------------------------------------------------- /SupportSDK.xcframework/ios-arm64/SupportSDK.framework/ImageCell.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/SupportSDK.xcframework/ios-arm64/SupportSDK.framework/ImageCell.nib -------------------------------------------------------------------------------- /SupportSDK.xcframework/ios-arm64/SupportSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/SupportSDK.xcframework/ios-arm64/SupportSDK.framework/Info.plist -------------------------------------------------------------------------------- /SupportSDK.xcframework/ios-arm64/SupportSDK.framework/SupportSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/SupportSDK.xcframework/ios-arm64/SupportSDK.framework/SupportSDK -------------------------------------------------------------------------------- /SupportSDK.xcframework/ios-arm64/SupportSDK.framework/icoDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/SupportSDK.xcframework/ios-arm64/SupportSDK.framework/icoDown.png -------------------------------------------------------------------------------- /SupportSDK.xcframework/ios-arm64/SupportSDK.framework/icoVoteUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/SupportSDK.xcframework/ios-arm64/SupportSDK.framework/icoVoteUp.png -------------------------------------------------------------------------------- /ZendeskSupportSDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/ZendeskSupportSDK.podspec -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/css/documentation-topic.3bca6578.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/css/documentation-topic.3bca6578.css -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/css/index.12bb178a.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/css/index.12bb178a.css -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/css/topic.ee15af52.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/css/topic.ee15af52.css -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/css/tutorials-overview.06e8bcf7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/css/tutorials-overview.06e8bcf7.css -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/action.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/filetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/filetype.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/keyedstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/keyedstate.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/middleware.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/reducer.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/requestui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/requestui.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/state.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/state/keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/state/keys.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/statekey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/statekey.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/store.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/suas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/suas.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/supportui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/supportui.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/theme.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/theme/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/theme/init.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/window.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/zd_is_ipad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/zd_is_ipad.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/zdkuiutil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/zdkuiutil.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/data/documentation/supportsdk/zdlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/data/documentation/supportsdk/zdlog.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/developer-og.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/action/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/filetype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/filetype/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/reducer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/reducer/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/requestui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/requestui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/state/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/statekey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/statekey/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/store/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/suas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/suas/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/supportui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/supportui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/theme/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/window/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/zdkuiutil/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/zdkuiutil/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/documentation/supportsdk/zdlog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/documentation/supportsdk/zdlog/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/favicon.ico -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/favicon.svg -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/index/availability.index -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/index/data.mdb -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/index/index.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/index/navigator.index -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/chunk-vendors.b24b7aaa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/chunk-vendors.b24b7aaa.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/documentation-topic.f62098b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/documentation-topic.f62098b6.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-custom-swift.5cda5c20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-custom-swift.5cda5c20.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/index.58e30ec4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/index.58e30ec4.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/topic.6a1c7b7f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/topic.6a1c7b7f.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/js/tutorials-overview.c8178b83.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/js/tutorials-overview.c8178b83.js -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/metadata.json -------------------------------------------------------------------------------- /docs/SupportSDK/7.0.0/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/7.0.0/theme-settings.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/css/documentation-topic.3bca6578.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/css/documentation-topic.3bca6578.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/css/index.12bb178a.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/css/index.12bb178a.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/css/topic.ee15af52.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/css/topic.ee15af52.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/css/tutorials-overview.06e8bcf7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/css/tutorials-overview.06e8bcf7.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/action.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/filetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/filetype.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/keyedstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/keyedstate.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/middleware.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/reducer.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/requestui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/requestui.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/state.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/state/keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/state/keys.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/statekey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/statekey.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/store.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/suas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/suas.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/supportui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/supportui.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/theme.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/theme/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/theme/init.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/window.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/zd_is_ipad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/zd_is_ipad.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/zdkuiutil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/zdkuiutil.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/data/documentation/supportsdk/zdlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/data/documentation/supportsdk/zdlog.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/developer-og.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/action/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/filetype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/filetype/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/reducer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/reducer/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/requestui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/requestui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/state/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/statekey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/statekey/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/store/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/suas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/suas/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/supportui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/supportui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/theme/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/window/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/zdkuiutil/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/zdkuiutil/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/documentation/supportsdk/zdlog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/documentation/supportsdk/zdlog/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/favicon.ico -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/favicon.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/index/availability.index -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/index/data.mdb -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/index/index.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/index/navigator.index -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/chunk-vendors.b24b7aaa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/chunk-vendors.b24b7aaa.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/documentation-topic.f62098b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/documentation-topic.f62098b6.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-custom-swift.5cda5c20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-custom-swift.5cda5c20.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/index.58e30ec4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/index.58e30ec4.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/topic.6a1c7b7f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/topic.6a1c7b7f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/js/tutorials-overview.c8178b83.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/js/tutorials-overview.c8178b83.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/metadata.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.0/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.0/theme-settings.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/css/chunk-c0335d80.10a2f091.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/css/chunk-c0335d80.10a2f091.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/css/documentation-topic.1d1eec04.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/css/documentation-topic.1d1eec04.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/css/documentation-topic~topic.b6287bcf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/css/documentation-topic~topic.b6287bcf.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/css/index.038e887c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/css/index.038e887c.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/css/topic.d8c126f3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/css/topic.d8c126f3.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/css/tutorials-overview.c249c765.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/css/tutorials-overview.c249c765.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/action.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/filetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/filetype.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/keyedstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/keyedstate.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/middleware.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/reducer.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/requestui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/requestui.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/state.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/state/keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/state/keys.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/statekey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/statekey.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/store.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/suas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/suas.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/supportui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/supportui.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/swift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/swift.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/theme.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/uikit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/uikit.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/window.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/zd_is_ipad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/zd_is_ipad.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/zdkuiutil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/zdkuiutil.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/data/documentation/supportsdk/zdlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/data/documentation/supportsdk/zdlog.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/developer-og.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/action/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/filetype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/filetype/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/reducer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/reducer/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/requestui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/requestui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/state/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/statekey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/statekey/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/store/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/suas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/suas/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/supportui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/supportui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/swift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/swift/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/theme/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/uikit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/uikit/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/window/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/zdkuiutil/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/zdkuiutil/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/documentation/supportsdk/zdlog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/documentation/supportsdk/zdlog/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/favicon.ico -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/favicon.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/index/availability.index -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/index/data.mdb -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/index/index.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/index/navigator.index -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/chunk-c0335d80.76a68cc5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/chunk-c0335d80.76a68cc5.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/chunk-vendors.ba2dd0cb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/chunk-vendors.ba2dd0cb.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/documentation-topic.57e91f8a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/documentation-topic.57e91f8a.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/documentation-topic~topic.1679ec90.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/documentation-topic~topic.1679ec90.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-custom-swift.5cda5c20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-custom-swift.5cda5c20.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/index.e8a5d294.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/index.e8a5d294.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/topic.8cd0c0c4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/topic.8cd0c0c4.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/js/tutorials-overview.2a32cd6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/js/tutorials-overview.2a32cd6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.1/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.1/metadata.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/css/chunk-c0335d80.10a2f091.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/css/chunk-c0335d80.10a2f091.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/css/documentation-topic.1d1eec04.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/css/documentation-topic.1d1eec04.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/css/documentation-topic~topic.b6287bcf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/css/documentation-topic~topic.b6287bcf.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/css/index.038e887c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/css/index.038e887c.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/css/topic.d8c126f3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/css/topic.d8c126f3.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/css/tutorials-overview.c249c765.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/css/tutorials-overview.c249c765.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/action.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/filetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/filetype.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/keyedstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/keyedstate.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/middleware.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/reducer.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/requestui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/requestui.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/state.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/state/keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/state/keys.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/statekey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/statekey.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/store.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/suas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/suas.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/supportui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/supportui.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/swift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/swift.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/theme.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/uikit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/uikit.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/window.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/zd_is_ipad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/zd_is_ipad.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/zdkuiutil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/zdkuiutil.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/data/documentation/supportsdk/zdlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/data/documentation/supportsdk/zdlog.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/developer-og.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/action/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/filetype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/filetype/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/reducer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/reducer/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/requestui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/requestui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/state/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/statekey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/statekey/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/store/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/suas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/suas/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/supportui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/supportui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/swift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/swift/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/theme/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/uikit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/uikit/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/window/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/zdkuiutil/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/zdkuiutil/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/documentation/supportsdk/zdlog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/documentation/supportsdk/zdlog/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/favicon.ico -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/favicon.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/index/availability.index -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/index/data.mdb -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/index/index.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/index/navigator.index -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/chunk-c0335d80.76a68cc5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/chunk-c0335d80.76a68cc5.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/chunk-vendors.ba2dd0cb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/chunk-vendors.ba2dd0cb.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/documentation-topic.57e91f8a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/documentation-topic.57e91f8a.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/documentation-topic~topic.1679ec90.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/documentation-topic~topic.1679ec90.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-custom-swift.5cda5c20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-custom-swift.5cda5c20.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/index.e8a5d294.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/index.e8a5d294.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/topic.8cd0c0c4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/topic.8cd0c0c4.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/js/tutorials-overview.2a32cd6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/js/tutorials-overview.2a32cd6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.2/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.2/metadata.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/css/chunk-c0335d80.10a2f091.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/css/chunk-c0335d80.10a2f091.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/css/documentation-topic.1d1eec04.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/css/documentation-topic.1d1eec04.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/css/documentation-topic~topic.b6287bcf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/css/documentation-topic~topic.b6287bcf.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/css/index.038e887c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/css/index.038e887c.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/css/topic.d8c126f3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/css/topic.d8c126f3.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/css/tutorials-overview.c249c765.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/css/tutorials-overview.c249c765.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/action.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/filetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/filetype.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/keyedstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/keyedstate.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/middleware.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/reducer.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/requestui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/requestui.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/state.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/state/keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/state/keys.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/statekey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/statekey.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/store.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/suas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/suas.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/supportui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/supportui.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/swift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/swift.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/theme.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/uikit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/uikit.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/window.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/zd_is_ipad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/zd_is_ipad.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/zdkuiutil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/zdkuiutil.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/data/documentation/supportsdk/zdlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/data/documentation/supportsdk/zdlog.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/developer-og.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/action/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/filetype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/filetype/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/reducer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/reducer/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/requestui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/requestui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/state/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/statekey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/statekey/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/store/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/suas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/suas/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/supportui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/supportui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/swift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/swift/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/theme/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/uikit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/uikit/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/window/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/zdkuiutil/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/zdkuiutil/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/documentation/supportsdk/zdlog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/documentation/supportsdk/zdlog/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/favicon.ico -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/favicon.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/index/availability.index -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/index/data.mdb -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/index/index.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/index/navigator.index -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/chunk-c0335d80.76a68cc5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/chunk-c0335d80.76a68cc5.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/chunk-vendors.ba2dd0cb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/chunk-vendors.ba2dd0cb.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/documentation-topic.57e91f8a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/documentation-topic.57e91f8a.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/documentation-topic~topic.1679ec90.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/documentation-topic~topic.1679ec90.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-custom-swift.5cda5c20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-custom-swift.5cda5c20.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/index.e8a5d294.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/index.e8a5d294.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/topic.8cd0c0c4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/topic.8cd0c0c4.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/js/tutorials-overview.2a32cd6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/js/tutorials-overview.2a32cd6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.3/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.3/metadata.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/css/chunk-c0335d80.10a2f091.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/css/chunk-c0335d80.10a2f091.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/css/documentation-topic.1d1eec04.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/css/documentation-topic.1d1eec04.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/css/documentation-topic~topic.b6287bcf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/css/documentation-topic~topic.b6287bcf.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/css/index.038e887c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/css/index.038e887c.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/css/topic.d8c126f3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/css/topic.d8c126f3.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/css/tutorials-overview.c249c765.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/css/tutorials-overview.c249c765.css -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/action.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/filetype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/filetype.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/keyedstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/keyedstate.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/middleware.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/reducer.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/requestui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/requestui.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/state.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/state/keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/state/keys.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/statekey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/statekey.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/store.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/suas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/suas.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/supportui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/supportui.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/swift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/swift.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/theme.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/uikit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/uikit.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/window.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/zd_is_ipad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/zd_is_ipad.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/zdkuiutil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/zdkuiutil.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/data/documentation/supportsdk/zdlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/data/documentation/supportsdk/zdlog.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/developer-og.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/action/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/filetype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/filetype/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/reducer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/reducer/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/requestui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/requestui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/state/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/statekey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/statekey/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/store/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/suas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/suas/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/supportui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/supportui/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/swift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/swift/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/theme/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/uikit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/uikit/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/window/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/documentation/supportsdk/zdlog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/documentation/supportsdk/zdlog/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/favicon.ico -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/favicon.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/index/availability.index -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/index/data.mdb -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/index/index.json -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/index/navigator.index -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/chunk-c0335d80.76a68cc5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/chunk-c0335d80.76a68cc5.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/chunk-vendors.ba2dd0cb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/chunk-vendors.ba2dd0cb.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/documentation-topic.57e91f8a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/documentation-topic.57e91f8a.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/documentation-topic~topic.1679ec90.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/documentation-topic~topic.1679ec90.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-custom-swift.5cda5c20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-custom-swift.5cda5c20.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/index.e8a5d294.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/index.e8a5d294.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/topic.8cd0c0c4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/topic.8cd0c0c4.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/js/tutorials-overview.2a32cd6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/js/tutorials-overview.2a32cd6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/8.0.4/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/8.0.4/metadata.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/css/chunk-c0335d80.10a2f091.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/css/chunk-c0335d80.10a2f091.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/css/documentation-topic.1d1eec04.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/css/documentation-topic.1d1eec04.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/css/documentation-topic~topic.b6287bcf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/css/documentation-topic~topic.b6287bcf.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/css/index.038e887c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/css/index.038e887c.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/css/topic.d8c126f3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/css/topic.d8c126f3.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/css/tutorials-overview.c249c765.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/css/tutorials-overview.c249c765.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/data/documentation/supportsdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/data/documentation/supportsdk.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/data/documentation/supportsdk/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/data/documentation/supportsdk/action.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/data/documentation/supportsdk/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/data/documentation/supportsdk/reducer.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/data/documentation/supportsdk/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/data/documentation/supportsdk/state.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/data/documentation/supportsdk/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/data/documentation/supportsdk/store.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/data/documentation/supportsdk/suas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/data/documentation/supportsdk/suas.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/data/documentation/supportsdk/swift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/data/documentation/supportsdk/swift.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/data/documentation/supportsdk/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/data/documentation/supportsdk/theme.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/data/documentation/supportsdk/uikit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/data/documentation/supportsdk/uikit.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/data/documentation/supportsdk/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/data/documentation/supportsdk/window.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/data/documentation/supportsdk/zdlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/data/documentation/supportsdk/zdlog.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/developer-og.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/documentation/supportsdk/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/documentation/supportsdk/action/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/documentation/supportsdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/documentation/supportsdk/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/documentation/supportsdk/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/documentation/supportsdk/state/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/documentation/supportsdk/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/documentation/supportsdk/store/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/documentation/supportsdk/suas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/documentation/supportsdk/suas/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/documentation/supportsdk/swift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/documentation/supportsdk/swift/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/documentation/supportsdk/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/documentation/supportsdk/theme/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/documentation/supportsdk/uikit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/documentation/supportsdk/uikit/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/documentation/supportsdk/window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/documentation/supportsdk/window/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/documentation/supportsdk/zdlog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/documentation/supportsdk/zdlog/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/favicon.ico -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/favicon.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/index/availability.index -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/index/data.mdb -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/index/index.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/index/navigator.index -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/chunk-c0335d80.76a68cc5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/chunk-c0335d80.76a68cc5.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/chunk-vendors.ba2dd0cb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/chunk-vendors.ba2dd0cb.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/documentation-topic.57e91f8a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/documentation-topic.57e91f8a.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/documentation-topic~topic.1679ec90.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/documentation-topic~topic.1679ec90.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-custom-swift.5cda5c20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-custom-swift.5cda5c20.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/index.e8a5d294.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/index.e8a5d294.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/topic.8cd0c0c4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/topic.8cd0c0c4.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/js/tutorials-overview.2a32cd6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/js/tutorials-overview.2a32cd6f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.0.0/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.0.0/metadata.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/css/866.2d08a543.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/css/866.2d08a543.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/css/989.4f123103.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/css/989.4f123103.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/css/documentation-topic.da0b1931.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/css/documentation-topic.da0b1931.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/css/index.3a335429.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/css/index.3a335429.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/css/topic.4be8f56d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/css/topic.4be8f56d.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/css/tutorials-overview.adb17623.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/css/tutorials-overview.adb17623.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/data/documentation/supportsdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/data/documentation/supportsdk.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/data/documentation/supportsdk/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/data/documentation/supportsdk/action.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/data/documentation/supportsdk/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/data/documentation/supportsdk/reducer.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/data/documentation/supportsdk/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/data/documentation/supportsdk/state.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/data/documentation/supportsdk/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/data/documentation/supportsdk/store.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/data/documentation/supportsdk/suas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/data/documentation/supportsdk/suas.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/data/documentation/supportsdk/swift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/data/documentation/supportsdk/swift.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/data/documentation/supportsdk/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/data/documentation/supportsdk/theme.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/data/documentation/supportsdk/uikit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/data/documentation/supportsdk/uikit.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/data/documentation/supportsdk/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/data/documentation/supportsdk/window.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/data/documentation/supportsdk/zdlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/data/documentation/supportsdk/zdlog.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/developer-og.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/documentation/supportsdk/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/documentation/supportsdk/action/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/documentation/supportsdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/documentation/supportsdk/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/documentation/supportsdk/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/documentation/supportsdk/state/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/documentation/supportsdk/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/documentation/supportsdk/store/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/documentation/supportsdk/suas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/documentation/supportsdk/suas/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/documentation/supportsdk/swift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/documentation/supportsdk/swift/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/documentation/supportsdk/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/documentation/supportsdk/theme/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/documentation/supportsdk/uikit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/documentation/supportsdk/uikit/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/documentation/supportsdk/window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/documentation/supportsdk/window/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/documentation/supportsdk/zdlog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/documentation/supportsdk/zdlog/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/favicon.ico -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/favicon.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/img/added-icon.832a5d2c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/img/added-icon.832a5d2c.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/img/deprecated-icon.7bf1740a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/img/deprecated-icon.7bf1740a.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/img/modified-icon.efb2697d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/img/modified-icon.efb2697d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/index/availability.index -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/index/data.mdb -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/index/index.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/index/navigator.index -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/104.fe5974d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/104.fe5974d0.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/337.274a8ccc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/337.274a8ccc.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/842.aeb682fd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/842.aeb682fd.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/866.6e371bd7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/866.6e371bd7.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/chunk-vendors.bdb7cbba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/chunk-vendors.bdb7cbba.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/documentation-topic.28579b4f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/documentation-topic.28579b4f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-bash-js.702f0c5c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-bash-js.702f0c5c.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-c-js.063069d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-c-js.063069d3.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-cpp-js.458a9ae4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-cpp-js.458a9ae4.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-css-js.bfc4251f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-css-js.bfc4251f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-custom-swift.738731d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-custom-swift.738731d1.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-diff-js.4db9a783.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-diff-js.4db9a783.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-http-js.f78e83c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-http-js.f78e83c2.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-java-js.4fe21e94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-java-js.4fe21e94.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-javascript-js.dfc9d16d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-javascript-js.dfc9d16d.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-json-js.2a1856ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-json-js.2a1856ba.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-llvm-js.26121771.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-llvm-js.26121771.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-markdown-js.a2f456af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-markdown-js.a2f456af.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-objectivec-js.74dea052.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-objectivec-js.74dea052.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-perl-js.da6eda82.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-perl-js.da6eda82.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-php-js.c458ffa4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-php-js.c458ffa4.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-python-js.60354774.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-python-js.60354774.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-ruby-js.7272231f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-ruby-js.7272231f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-scss-js.adcd11a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-scss-js.adcd11a2.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-shell-js.0ad5b20f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-shell-js.0ad5b20f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-swift-js.bdd5bff5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-swift-js.bdd5bff5.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/highlight-js-xml-js.0d78f903.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/highlight-js-xml-js.0d78f903.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/index.d2f6f6a9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/index.d2f6f6a9.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/topic.24dedb87.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/topic.24dedb87.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/js/tutorials-overview.2d184ec0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/js/tutorials-overview.2d184ec0.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.1.0/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.1.0/metadata.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/css/866.2d08a543.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/css/866.2d08a543.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/css/989.4f123103.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/css/989.4f123103.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/css/documentation-topic.da0b1931.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/css/documentation-topic.da0b1931.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/css/index.3a335429.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/css/index.3a335429.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/css/topic.4be8f56d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/css/topic.4be8f56d.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/css/tutorials-overview.adb17623.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/css/tutorials-overview.adb17623.css -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/data/documentation/supportsdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/data/documentation/supportsdk.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/data/documentation/supportsdk/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/data/documentation/supportsdk/action.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/data/documentation/supportsdk/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/data/documentation/supportsdk/reducer.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/data/documentation/supportsdk/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/data/documentation/supportsdk/state.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/data/documentation/supportsdk/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/data/documentation/supportsdk/store.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/data/documentation/supportsdk/suas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/data/documentation/supportsdk/suas.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/data/documentation/supportsdk/swift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/data/documentation/supportsdk/swift.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/data/documentation/supportsdk/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/data/documentation/supportsdk/theme.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/data/documentation/supportsdk/uikit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/data/documentation/supportsdk/uikit.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/data/documentation/supportsdk/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/data/documentation/supportsdk/window.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/data/documentation/supportsdk/zdlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/data/documentation/supportsdk/zdlog.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/developer-og.jpg -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/documentation/supportsdk/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/documentation/supportsdk/action/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/documentation/supportsdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/documentation/supportsdk/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/documentation/supportsdk/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/documentation/supportsdk/state/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/documentation/supportsdk/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/documentation/supportsdk/store/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/documentation/supportsdk/suas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/documentation/supportsdk/suas/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/documentation/supportsdk/swift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/documentation/supportsdk/swift/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/documentation/supportsdk/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/documentation/supportsdk/theme/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/documentation/supportsdk/uikit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/documentation/supportsdk/uikit/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/documentation/supportsdk/window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/documentation/supportsdk/window/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/documentation/supportsdk/zdlog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/documentation/supportsdk/zdlog/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/favicon.ico -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/favicon.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/img/added-icon.832a5d2c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/img/added-icon.832a5d2c.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/img/deprecated-icon.7bf1740a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/img/deprecated-icon.7bf1740a.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/img/modified-icon.efb2697d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/img/modified-icon.efb2697d.svg -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/index.html -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/index/availability.index -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/index/data.mdb -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/index/index.json -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/index/navigator.index -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/104.fe5974d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/104.fe5974d0.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/337.274a8ccc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/337.274a8ccc.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/842.aeb682fd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/842.aeb682fd.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/866.6e371bd7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/866.6e371bd7.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/chunk-vendors.bdb7cbba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/chunk-vendors.bdb7cbba.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/documentation-topic.28579b4f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/documentation-topic.28579b4f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-bash-js.702f0c5c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-bash-js.702f0c5c.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-c-js.063069d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-c-js.063069d3.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-cpp-js.458a9ae4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-cpp-js.458a9ae4.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-css-js.bfc4251f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-css-js.bfc4251f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-custom-swift.738731d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-custom-swift.738731d1.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-diff-js.4db9a783.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-diff-js.4db9a783.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-http-js.f78e83c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-http-js.f78e83c2.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-java-js.4fe21e94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-java-js.4fe21e94.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-javascript-js.dfc9d16d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-javascript-js.dfc9d16d.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-json-js.2a1856ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-json-js.2a1856ba.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-llvm-js.26121771.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-llvm-js.26121771.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-markdown-js.a2f456af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-markdown-js.a2f456af.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-objectivec-js.74dea052.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-objectivec-js.74dea052.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-perl-js.da6eda82.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-perl-js.da6eda82.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-php-js.c458ffa4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-php-js.c458ffa4.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-python-js.60354774.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-python-js.60354774.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-ruby-js.7272231f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-ruby-js.7272231f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-scss-js.adcd11a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-scss-js.adcd11a2.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-shell-js.0ad5b20f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-shell-js.0ad5b20f.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-swift-js.bdd5bff5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-swift-js.bdd5bff5.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/highlight-js-xml-js.0d78f903.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/highlight-js-xml-js.0d78f903.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/index.d2f6f6a9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/index.d2f6f6a9.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/topic.24dedb87.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/topic.24dedb87.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/js/tutorials-overview.2d184ec0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/js/tutorials-overview.2d184ec0.js -------------------------------------------------------------------------------- /docs/SupportSDK/9.2.0/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/SupportSDK/9.2.0/metadata.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/support_sdk_ios/HEAD/docs/index.html --------------------------------------------------------------------------------