├── .github └── workflows │ └── deploy-documentation.yml ├── .gitignore ├── CONTRIBUTING.md ├── Cartfile ├── ChatSDK.xcframework ├── Info.plist ├── ios-arm64 │ ├── ChatSDK.framework │ │ ├── ChatSDK │ │ ├── ChatStrings │ │ │ ├── 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 │ │ ├── Headers │ │ │ ├── ChatSDK-Swift.h │ │ │ └── ChatSDK.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── ChatSDK.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ └── module.modulemap │ │ └── PrivacyInfo.xcprivacy │ └── dSYMs │ │ └── ChatSDK.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── DWARF │ │ └── ChatSDK │ │ ├── Relocations │ │ └── aarch64 │ │ │ └── ChatSDK.yml │ │ └── Swift │ │ └── aarch64 │ │ ├── ChatProvidersSDK.swiftinterface │ │ ├── MessagingAPI.swiftinterface │ │ └── SDKConfigurations.swiftinterface └── ios-arm64_x86_64-simulator │ ├── ChatSDK.framework │ ├── ChatSDK │ ├── ChatStrings │ │ ├── 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 │ ├── Headers │ │ ├── ChatSDK-Swift.h │ │ └── ChatSDK.h │ ├── Info.plist │ ├── Modules │ │ ├── ChatSDK.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 │ ├── PrivacyInfo.xcprivacy │ └── _CodeSignature │ │ └── CodeResources │ └── dSYMs │ └── ChatSDK.framework.dSYM │ └── Contents │ ├── Info.plist │ └── Resources │ ├── DWARF │ └── ChatSDK │ ├── Relocations │ ├── aarch64 │ │ └── ChatSDK.yml │ └── x86_64 │ │ └── ChatSDK.yml │ └── Swift │ ├── aarch64 │ ├── ChatProvidersSDK.swiftinterface │ ├── MessagingAPI.swiftinterface │ └── SDKConfigurations.swiftinterface │ └── x86_64 │ ├── ChatProvidersSDK.swiftinterface │ ├── MessagingAPI.swiftinterface │ └── SDKConfigurations.swiftinterface ├── LICENSE.md ├── Package.swift ├── README.md ├── Sources └── Placeholder.swift ├── ZendeskChatSDK.podspec └── docs ├── ChatSDK ├── 4.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 │ │ │ ├── chatsdk.json │ │ │ └── chatsdk │ │ │ ├── chatconfiguration.json │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions.json │ │ │ ├── debugdescription.json │ │ │ ├── description.json │ │ │ ├── init().json │ │ │ ├── isagentavailabilityenabled.json │ │ │ ├── ischattranscriptpromptenabled.json │ │ │ ├── isequal(_:).json │ │ │ ├── isofflineformenabled.json │ │ │ ├── isprechatformenabled.json │ │ │ ├── menuactions.json │ │ │ ├── prechatformconfiguration.json │ │ │ └── setchatmenuactions(_:).json │ │ │ ├── chatengine.json │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configuration.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── log-swift.property.json │ │ │ ├── log-swift.type.property.json │ │ │ ├── loggable-implementations.json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── chatformconfiguration.json │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription.json │ │ │ ├── department.json │ │ │ ├── description.json │ │ │ ├── email.json │ │ │ ├── init(name:email:phonenumber:department:).json │ │ │ ├── isequal(_:).json │ │ │ ├── name.json │ │ │ └── phonenumber.json │ │ │ ├── chatmenuaction.json │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:).json │ │ │ ├── emailtranscript.json │ │ │ ├── endchat.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── chatsdkversionnumber.json │ │ │ ├── chatsdkversionstring.json │ │ │ ├── formfieldstatus.json │ │ │ └── formfieldstatus │ │ │ ├── !=(_:_:).json │ │ │ ├── description.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── hidden.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── optional.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── required.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── chatsdk │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions │ │ │ │ └── index.html │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isagentavailabilityenabled │ │ │ │ └── index.html │ │ │ ├── ischattranscriptpromptenabled │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── isofflineformenabled │ │ │ │ └── index.html │ │ │ ├── isprechatformenabled │ │ │ │ └── index.html │ │ │ ├── menuactions │ │ │ │ └── index.html │ │ │ ├── prechatformconfiguration │ │ │ │ └── index.html │ │ │ └── setchatmenuactions(_:) │ │ │ │ └── index.html │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configuration │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── log-swift.property │ │ │ │ └── index.html │ │ │ ├── log-swift.type.property │ │ │ │ └── index.html │ │ │ ├── loggable-implementations │ │ │ │ └── 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 │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── department │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── email │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(name:email:phonenumber:department:) │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── name │ │ │ │ └── index.html │ │ │ └── phonenumber │ │ │ │ └── index.html │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emailtranscript │ │ │ │ └── index.html │ │ │ ├── endchat │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── chatsdkversionnumber │ │ │ └── index.html │ │ │ ├── chatsdkversionstring │ │ │ └── index.html │ │ │ ├── formfieldstatus │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── hidden │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── optional │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── required │ │ │ │ └── index.html │ │ │ └── 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 ├── 4.0.1 │ ├── css │ │ ├── documentation-topic.3bca6578.css │ │ ├── documentation-topic~topic~tutorials-overview.82acfe22.css │ │ ├── index.12bb178a.css │ │ ├── topic.ee15af52.css │ │ └── tutorials-overview.06e8bcf7.css │ ├── data │ │ └── documentation │ │ │ ├── chatsdk.json │ │ │ └── chatsdk │ │ │ ├── chatconfiguration.json │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions.json │ │ │ ├── debugdescription.json │ │ │ ├── description.json │ │ │ ├── init().json │ │ │ ├── isagentavailabilityenabled.json │ │ │ ├── ischattranscriptpromptenabled.json │ │ │ ├── isequal(_:).json │ │ │ ├── isofflineformenabled.json │ │ │ ├── isprechatformenabled.json │ │ │ ├── menuactions.json │ │ │ ├── prechatformconfiguration.json │ │ │ └── setchatmenuactions(_:).json │ │ │ ├── chatengine.json │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configuration.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── log-swift.property.json │ │ │ ├── log-swift.type.property.json │ │ │ ├── loggable-implementations.json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── chatformconfiguration.json │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription.json │ │ │ ├── department.json │ │ │ ├── description.json │ │ │ ├── email.json │ │ │ ├── init(name:email:phonenumber:department:).json │ │ │ ├── isequal(_:).json │ │ │ ├── name.json │ │ │ └── phonenumber.json │ │ │ ├── chatmenuaction.json │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:).json │ │ │ ├── emailtranscript.json │ │ │ ├── endchat.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── chatsdkversionnumber.json │ │ │ ├── chatsdkversionstring.json │ │ │ ├── formfieldstatus.json │ │ │ └── formfieldstatus │ │ │ ├── !=(_:_:).json │ │ │ ├── description.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── hidden.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── optional.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── required.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── chatsdk │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions │ │ │ │ └── index.html │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isagentavailabilityenabled │ │ │ │ └── index.html │ │ │ ├── ischattranscriptpromptenabled │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── isofflineformenabled │ │ │ │ └── index.html │ │ │ ├── isprechatformenabled │ │ │ │ └── index.html │ │ │ ├── menuactions │ │ │ │ └── index.html │ │ │ ├── prechatformconfiguration │ │ │ │ └── index.html │ │ │ └── setchatmenuactions(_:) │ │ │ │ └── index.html │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configuration │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── log-swift.property │ │ │ │ └── index.html │ │ │ ├── log-swift.type.property │ │ │ │ └── index.html │ │ │ ├── loggable-implementations │ │ │ │ └── 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 │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── department │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── email │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(name:email:phonenumber:department:) │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── name │ │ │ │ └── index.html │ │ │ └── phonenumber │ │ │ │ └── index.html │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emailtranscript │ │ │ │ └── index.html │ │ │ ├── endchat │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── chatsdkversionnumber │ │ │ └── index.html │ │ │ ├── chatsdkversionstring │ │ │ └── index.html │ │ │ ├── formfieldstatus │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── hidden │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── optional │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── required │ │ │ │ └── index.html │ │ │ └── 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 ├── 5.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 │ │ │ ├── chatsdk.json │ │ │ └── chatsdk │ │ │ ├── chatconfiguration.json │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions.json │ │ │ ├── debugdescription.json │ │ │ ├── description.json │ │ │ ├── init().json │ │ │ ├── isagentavailabilityenabled.json │ │ │ ├── ischattranscriptpromptenabled.json │ │ │ ├── isequal(_:).json │ │ │ ├── isofflineformenabled.json │ │ │ ├── isprechatformenabled.json │ │ │ ├── menuactions.json │ │ │ ├── prechatformconfiguration.json │ │ │ └── setchatmenuactions(_:).json │ │ │ ├── chatengine.json │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configuration.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── log-swift.property.json │ │ │ ├── log-swift.type.property.json │ │ │ ├── loggable-implementations.json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── chatformconfiguration.json │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription.json │ │ │ ├── department.json │ │ │ ├── description.json │ │ │ ├── email.json │ │ │ ├── init(name:email:phonenumber:department:).json │ │ │ ├── isequal(_:).json │ │ │ ├── name.json │ │ │ └── phonenumber.json │ │ │ ├── chatmenuaction.json │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:).json │ │ │ ├── emailtranscript.json │ │ │ ├── endchat.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── chatsdkversionnumber.json │ │ │ ├── chatsdkversionstring.json │ │ │ ├── formfieldstatus.json │ │ │ └── formfieldstatus │ │ │ ├── !=(_:_:).json │ │ │ ├── description.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── hidden.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── optional.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── required.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── chatsdk │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions │ │ │ │ └── index.html │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isagentavailabilityenabled │ │ │ │ └── index.html │ │ │ ├── ischattranscriptpromptenabled │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── isofflineformenabled │ │ │ │ └── index.html │ │ │ ├── isprechatformenabled │ │ │ │ └── index.html │ │ │ ├── menuactions │ │ │ │ └── index.html │ │ │ ├── prechatformconfiguration │ │ │ │ └── index.html │ │ │ └── setchatmenuactions(_:) │ │ │ │ └── index.html │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configuration │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── log-swift.property │ │ │ │ └── index.html │ │ │ ├── log-swift.type.property │ │ │ │ └── index.html │ │ │ ├── loggable-implementations │ │ │ │ └── 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 │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── department │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── email │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(name:email:phonenumber:department:) │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── name │ │ │ │ └── index.html │ │ │ └── phonenumber │ │ │ │ └── index.html │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emailtranscript │ │ │ │ └── index.html │ │ │ ├── endchat │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── chatsdkversionnumber │ │ │ └── index.html │ │ │ ├── chatsdkversionstring │ │ │ └── index.html │ │ │ ├── formfieldstatus │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── hidden │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── optional │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── required │ │ │ │ └── index.html │ │ │ └── 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 ├── 5.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 │ │ │ ├── chatsdk.json │ │ │ └── chatsdk │ │ │ ├── chatconfiguration.json │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions.json │ │ │ ├── debugdescription.json │ │ │ ├── description.json │ │ │ ├── init().json │ │ │ ├── isagentavailabilityenabled.json │ │ │ ├── ischattranscriptpromptenabled.json │ │ │ ├── isequal(_:).json │ │ │ ├── isofflineformenabled.json │ │ │ ├── isprechatformenabled.json │ │ │ ├── menuactions.json │ │ │ ├── prechatformconfiguration.json │ │ │ └── setchatmenuactions(_:).json │ │ │ ├── chatengine.json │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configuration.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── log.json │ │ │ ├── loggable-implementations.json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── chatformconfiguration.json │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription.json │ │ │ ├── department.json │ │ │ ├── description.json │ │ │ ├── email.json │ │ │ ├── init(name:email:phonenumber:department:).json │ │ │ ├── isequal(_:).json │ │ │ ├── name.json │ │ │ └── phonenumber.json │ │ │ ├── chatmenuaction.json │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:).json │ │ │ ├── emailtranscript.json │ │ │ ├── endchat.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── chatsdkversionnumber.json │ │ │ ├── chatsdkversionstring.json │ │ │ ├── formfieldstatus.json │ │ │ └── formfieldstatus │ │ │ ├── !=(_:_:).json │ │ │ ├── description.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── hidden.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── optional.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── required.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── chatsdk │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions │ │ │ │ └── index.html │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isagentavailabilityenabled │ │ │ │ └── index.html │ │ │ ├── ischattranscriptpromptenabled │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── isofflineformenabled │ │ │ │ └── index.html │ │ │ ├── isprechatformenabled │ │ │ │ └── index.html │ │ │ ├── menuactions │ │ │ │ └── index.html │ │ │ ├── prechatformconfiguration │ │ │ │ └── index.html │ │ │ └── setchatmenuactions(_:) │ │ │ │ └── index.html │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configuration │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── log │ │ │ │ └── index.html │ │ │ ├── loggable-implementations │ │ │ │ └── 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 │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── department │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── email │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(name:email:phonenumber:department:) │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── name │ │ │ │ └── index.html │ │ │ └── phonenumber │ │ │ │ └── index.html │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emailtranscript │ │ │ │ └── index.html │ │ │ ├── endchat │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── chatsdkversionnumber │ │ │ └── index.html │ │ │ ├── chatsdkversionstring │ │ │ └── index.html │ │ │ ├── formfieldstatus │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── hidden │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── optional │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── required │ │ │ │ └── index.html │ │ │ └── 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 ├── 5.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 │ │ │ ├── chatsdk.json │ │ │ └── chatsdk │ │ │ ├── chatconfiguration.json │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions.json │ │ │ ├── debugdescription.json │ │ │ ├── description.json │ │ │ ├── init().json │ │ │ ├── isagentavailabilityenabled.json │ │ │ ├── ischattranscriptpromptenabled.json │ │ │ ├── isequal(_:).json │ │ │ ├── isofflineformenabled.json │ │ │ ├── isprechatformenabled.json │ │ │ ├── menuactions.json │ │ │ ├── prechatformconfiguration.json │ │ │ └── setchatmenuactions(_:).json │ │ │ ├── chatengine.json │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configuration.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── log.json │ │ │ ├── loggable-implementations.json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── chatformconfiguration.json │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription.json │ │ │ ├── department.json │ │ │ ├── description.json │ │ │ ├── email.json │ │ │ ├── init(name:email:phonenumber:department:).json │ │ │ ├── isequal(_:).json │ │ │ ├── name.json │ │ │ └── phonenumber.json │ │ │ ├── chatmenuaction.json │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:).json │ │ │ ├── emailtranscript.json │ │ │ ├── endchat.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── chatsdkversionnumber.json │ │ │ ├── chatsdkversionstring.json │ │ │ ├── formfieldstatus.json │ │ │ └── formfieldstatus │ │ │ ├── !=(_:_:).json │ │ │ ├── description.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── hidden.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── optional.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── required.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── chatsdk │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions │ │ │ │ └── index.html │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isagentavailabilityenabled │ │ │ │ └── index.html │ │ │ ├── ischattranscriptpromptenabled │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── isofflineformenabled │ │ │ │ └── index.html │ │ │ ├── isprechatformenabled │ │ │ │ └── index.html │ │ │ ├── menuactions │ │ │ │ └── index.html │ │ │ ├── prechatformconfiguration │ │ │ │ └── index.html │ │ │ └── setchatmenuactions(_:) │ │ │ │ └── index.html │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configuration │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── log │ │ │ │ └── index.html │ │ │ ├── loggable-implementations │ │ │ │ └── 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 │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── department │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── email │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(name:email:phonenumber:department:) │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── name │ │ │ │ └── index.html │ │ │ └── phonenumber │ │ │ │ └── index.html │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emailtranscript │ │ │ │ └── index.html │ │ │ ├── endchat │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── chatsdkversionnumber │ │ │ └── index.html │ │ │ ├── chatsdkversionstring │ │ │ └── index.html │ │ │ ├── formfieldstatus │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── hidden │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── optional │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── required │ │ │ │ └── index.html │ │ │ └── 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 ├── 5.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 │ │ │ ├── chatsdk.json │ │ │ └── chatsdk │ │ │ ├── chatconfiguration.json │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions.json │ │ │ ├── debugdescription.json │ │ │ ├── description.json │ │ │ ├── init().json │ │ │ ├── isagentavailabilityenabled.json │ │ │ ├── ischattranscriptpromptenabled.json │ │ │ ├── isequal(_:).json │ │ │ ├── isofflineformenabled.json │ │ │ ├── isprechatformenabled.json │ │ │ ├── menuactions.json │ │ │ ├── prechatformconfiguration.json │ │ │ └── setchatmenuactions(_:).json │ │ │ ├── chatengine.json │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configuration.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── log.json │ │ │ ├── loggable-implementations.json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── chatformconfiguration.json │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription.json │ │ │ ├── department.json │ │ │ ├── description.json │ │ │ ├── email.json │ │ │ ├── init(name:email:phonenumber:department:).json │ │ │ ├── isequal(_:).json │ │ │ ├── name.json │ │ │ └── phonenumber.json │ │ │ ├── chatmenuaction.json │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:).json │ │ │ ├── emailtranscript.json │ │ │ ├── endchat.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── chatsdkversionnumber.json │ │ │ ├── chatsdkversionstring.json │ │ │ ├── formfieldstatus.json │ │ │ └── formfieldstatus │ │ │ ├── !=(_:_:).json │ │ │ ├── description.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── hidden.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── optional.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── required.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── chatsdk │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions │ │ │ │ └── index.html │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isagentavailabilityenabled │ │ │ │ └── index.html │ │ │ ├── ischattranscriptpromptenabled │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── isofflineformenabled │ │ │ │ └── index.html │ │ │ ├── isprechatformenabled │ │ │ │ └── index.html │ │ │ ├── menuactions │ │ │ │ └── index.html │ │ │ ├── prechatformconfiguration │ │ │ │ └── index.html │ │ │ └── setchatmenuactions(_:) │ │ │ │ └── index.html │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configuration │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── log │ │ │ │ └── index.html │ │ │ ├── loggable-implementations │ │ │ │ └── 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 │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── department │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── email │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(name:email:phonenumber:department:) │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── name │ │ │ │ └── index.html │ │ │ └── phonenumber │ │ │ │ └── index.html │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emailtranscript │ │ │ │ └── index.html │ │ │ ├── endchat │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── chatsdkversionnumber │ │ │ └── index.html │ │ │ ├── chatsdkversionstring │ │ │ └── index.html │ │ │ ├── formfieldstatus │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── hidden │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── optional │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── required │ │ │ │ └── index.html │ │ │ └── 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 ├── 5.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 │ │ │ ├── chatsdk.json │ │ │ └── chatsdk │ │ │ ├── chatconfiguration.json │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions.json │ │ │ ├── debugdescription.json │ │ │ ├── description.json │ │ │ ├── init().json │ │ │ ├── isagentavailabilityenabled.json │ │ │ ├── ischattranscriptpromptenabled.json │ │ │ ├── isequal(_:).json │ │ │ ├── isofflineformenabled.json │ │ │ ├── isprechatformenabled.json │ │ │ ├── menuactions.json │ │ │ ├── prechatformconfiguration.json │ │ │ └── setchatmenuactions(_:).json │ │ │ ├── chatengine.json │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configuration.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── log.json │ │ │ ├── loggable-implementations.json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── chatformconfiguration.json │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription.json │ │ │ ├── department.json │ │ │ ├── description.json │ │ │ ├── email.json │ │ │ ├── init(name:email:phonenumber:department:).json │ │ │ ├── isequal(_:).json │ │ │ ├── name.json │ │ │ └── phonenumber.json │ │ │ ├── chatmenuaction.json │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:).json │ │ │ ├── emailtranscript.json │ │ │ ├── endchat.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── chatsdkversionnumber.json │ │ │ ├── chatsdkversionstring.json │ │ │ ├── formfieldstatus.json │ │ │ └── formfieldstatus │ │ │ ├── !=(_:_:).json │ │ │ ├── description.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── hidden.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── optional.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── required.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── chatsdk │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions │ │ │ │ └── index.html │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isagentavailabilityenabled │ │ │ │ └── index.html │ │ │ ├── ischattranscriptpromptenabled │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── isofflineformenabled │ │ │ │ └── index.html │ │ │ ├── isprechatformenabled │ │ │ │ └── index.html │ │ │ ├── menuactions │ │ │ │ └── index.html │ │ │ ├── prechatformconfiguration │ │ │ │ └── index.html │ │ │ └── setchatmenuactions(_:) │ │ │ │ └── index.html │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configuration │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── log │ │ │ │ └── index.html │ │ │ ├── loggable-implementations │ │ │ │ └── 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 │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── department │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── email │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(name:email:phonenumber:department:) │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── name │ │ │ │ └── index.html │ │ │ └── phonenumber │ │ │ │ └── index.html │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emailtranscript │ │ │ │ └── index.html │ │ │ ├── endchat │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── chatsdkversionnumber │ │ │ └── index.html │ │ │ ├── chatsdkversionstring │ │ │ └── index.html │ │ │ ├── formfieldstatus │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── hidden │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── optional │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── required │ │ │ │ └── index.html │ │ │ └── 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 ├── 5.0.5 │ ├── 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 │ │ │ ├── chatsdk.json │ │ │ └── chatsdk │ │ │ ├── chatconfiguration.json │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions.json │ │ │ ├── debugdescription.json │ │ │ ├── description.json │ │ │ ├── init().json │ │ │ ├── isagentavailabilityenabled.json │ │ │ ├── ischattranscriptpromptenabled.json │ │ │ ├── isequal(_:).json │ │ │ ├── isofflineformenabled.json │ │ │ ├── isprechatformenabled.json │ │ │ ├── menuactions.json │ │ │ ├── prechatformconfiguration.json │ │ │ └── setchatmenuactions(_:).json │ │ │ ├── chatengine.json │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ │ ├── configuration.json │ │ │ ├── engine().json │ │ │ ├── engine-implementations.json │ │ │ ├── id.json │ │ │ ├── isconversationongoing().json │ │ │ ├── isconversationongoing(_:).json │ │ │ ├── log.json │ │ │ ├── loggable-implementations.json │ │ │ ├── notifyobservers(_:).json │ │ │ ├── observable-implementations.json │ │ │ ├── observeupdates(_:).json │ │ │ ├── onevent(_:).json │ │ │ ├── onupdate.json │ │ │ ├── start(messagingapi:).json │ │ │ ├── stop().json │ │ │ └── transferoptiondescription.json │ │ │ ├── chatformconfiguration.json │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription.json │ │ │ ├── department.json │ │ │ ├── description.json │ │ │ ├── email.json │ │ │ ├── init(name:email:phonenumber:department:).json │ │ │ ├── isequal(_:).json │ │ │ ├── name.json │ │ │ └── phonenumber.json │ │ │ ├── chatmenuaction.json │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:).json │ │ │ ├── emailtranscript.json │ │ │ ├── endchat.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── init(rawvalue:).json │ │ │ └── rawrepresentable-implementations.json │ │ │ ├── chatsdkversionnumber.json │ │ │ ├── chatsdkversionstring.json │ │ │ ├── formfieldstatus.json │ │ │ └── formfieldstatus │ │ │ ├── !=(_:_:).json │ │ │ ├── description.json │ │ │ ├── equatable-implementations.json │ │ │ ├── hash(into:).json │ │ │ ├── hashvalue.json │ │ │ ├── hidden.json │ │ │ ├── init(rawvalue:).json │ │ │ ├── optional.json │ │ │ ├── rawrepresentable-implementations.json │ │ │ └── required.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ │ └── chatsdk │ │ │ ├── chatconfiguration │ │ │ ├── chatmenuactions │ │ │ │ └── index.html │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init() │ │ │ │ └── index.html │ │ │ ├── isagentavailabilityenabled │ │ │ │ └── index.html │ │ │ ├── ischattranscriptpromptenabled │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── isofflineformenabled │ │ │ │ └── index.html │ │ │ ├── isprechatformenabled │ │ │ │ └── index.html │ │ │ ├── menuactions │ │ │ │ └── index.html │ │ │ ├── prechatformconfiguration │ │ │ │ └── index.html │ │ │ └── setchatmenuactions(_:) │ │ │ │ └── index.html │ │ │ ├── chatengine │ │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ │ └── index.html │ │ │ ├── configuration │ │ │ │ └── index.html │ │ │ ├── engine() │ │ │ │ └── index.html │ │ │ ├── engine-implementations │ │ │ │ └── index.html │ │ │ ├── id │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── isconversationongoing() │ │ │ │ └── index.html │ │ │ ├── isconversationongoing(_:) │ │ │ │ └── index.html │ │ │ ├── log │ │ │ │ └── index.html │ │ │ ├── loggable-implementations │ │ │ │ └── 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 │ │ │ ├── chatformconfiguration │ │ │ ├── debugdescription │ │ │ │ └── index.html │ │ │ ├── department │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── email │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(name:email:phonenumber:department:) │ │ │ │ └── index.html │ │ │ ├── isequal(_:) │ │ │ │ └── index.html │ │ │ ├── name │ │ │ │ └── index.html │ │ │ └── phonenumber │ │ │ │ └── index.html │ │ │ ├── chatmenuaction │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── emailtranscript │ │ │ │ └── index.html │ │ │ ├── endchat │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ └── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ ├── chatsdkversionnumber │ │ │ └── index.html │ │ │ ├── chatsdkversionstring │ │ │ └── index.html │ │ │ ├── formfieldstatus │ │ │ ├── !=(_:_:) │ │ │ │ └── index.html │ │ │ ├── description │ │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ │ └── index.html │ │ │ ├── hash(into:) │ │ │ │ └── index.html │ │ │ ├── hashvalue │ │ │ │ └── index.html │ │ │ ├── hidden │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── init(rawvalue:) │ │ │ │ └── index.html │ │ │ ├── optional │ │ │ │ └── index.html │ │ │ ├── rawrepresentable-implementations │ │ │ │ └── index.html │ │ │ └── required │ │ │ │ └── index.html │ │ │ └── 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 └── 5.0.6 │ ├── css │ ├── 866.2d08a543.css │ ├── 989.4f123103.css │ ├── documentation-topic.da0b1931.css │ ├── index.3a335429.css │ ├── topic.4be8f56d.css │ └── tutorials-overview.adb17623.css │ ├── data │ └── documentation │ │ ├── chatsdk.json │ │ └── chatsdk │ │ ├── chatconfiguration.json │ │ ├── chatconfiguration │ │ ├── chatmenuactions.json │ │ ├── debugdescription.json │ │ ├── description.json │ │ ├── init().json │ │ ├── isagentavailabilityenabled.json │ │ ├── ischattranscriptpromptenabled.json │ │ ├── isequal(_:).json │ │ ├── isofflineformenabled.json │ │ ├── isprechatformenabled.json │ │ ├── menuactions.json │ │ ├── prechatformconfiguration.json │ │ └── setchatmenuactions(_:).json │ │ ├── chatengine.json │ │ ├── chatengine │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:).json │ │ ├── configuration.json │ │ ├── engine().json │ │ ├── engine-implementations.json │ │ ├── id.json │ │ ├── isconversationongoing().json │ │ ├── isconversationongoing(_:).json │ │ ├── log.json │ │ ├── loggable-implementations.json │ │ ├── notifyobservers(_:).json │ │ ├── observable-implementations.json │ │ ├── observeupdates(_:).json │ │ ├── onevent(_:).json │ │ ├── onupdate.json │ │ ├── start(messagingapi:).json │ │ ├── stop().json │ │ └── transferoptiondescription.json │ │ ├── chatformconfiguration.json │ │ ├── chatformconfiguration │ │ ├── debugdescription.json │ │ ├── department.json │ │ ├── description.json │ │ ├── email.json │ │ ├── init(name:email:phonenumber:department:).json │ │ ├── isequal(_:).json │ │ ├── name.json │ │ └── phonenumber.json │ │ ├── chatmenuaction.json │ │ ├── chatmenuaction │ │ ├── !=(_:_:).json │ │ ├── emailtranscript.json │ │ ├── endchat.json │ │ ├── equatable-implementations.json │ │ ├── hash(into:).json │ │ ├── hashvalue.json │ │ ├── init(rawvalue:).json │ │ └── rawrepresentable-implementations.json │ │ ├── chatsdkversionnumber.json │ │ ├── chatsdkversionstring.json │ │ ├── formfieldstatus.json │ │ └── formfieldstatus │ │ ├── !=(_:_:).json │ │ ├── description.json │ │ ├── equatable-implementations.json │ │ ├── hash(into:).json │ │ ├── hashvalue.json │ │ ├── hidden.json │ │ ├── init(rawvalue:).json │ │ ├── optional.json │ │ ├── rawrepresentable-implementations.json │ │ └── required.json │ ├── developer-og-twitter.jpg │ ├── developer-og.jpg │ ├── documentation │ └── chatsdk │ │ ├── chatconfiguration │ │ ├── chatmenuactions │ │ │ └── index.html │ │ ├── debugdescription │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── index.html │ │ ├── init() │ │ │ └── index.html │ │ ├── isagentavailabilityenabled │ │ │ └── index.html │ │ ├── ischattranscriptpromptenabled │ │ │ └── index.html │ │ ├── isequal(_:) │ │ │ └── index.html │ │ ├── isofflineformenabled │ │ │ └── index.html │ │ ├── isprechatformenabled │ │ │ └── index.html │ │ ├── menuactions │ │ │ └── index.html │ │ ├── prechatformconfiguration │ │ │ └── index.html │ │ └── setchatmenuactions(_:) │ │ │ └── index.html │ │ ├── chatengine │ │ ├── addobserver(_:identifier:eagerobserver:onremove:_:) │ │ │ └── index.html │ │ ├── configuration │ │ │ └── index.html │ │ ├── engine() │ │ │ └── index.html │ │ ├── engine-implementations │ │ │ └── index.html │ │ ├── id │ │ │ └── index.html │ │ ├── index.html │ │ ├── isconversationongoing() │ │ │ └── index.html │ │ ├── isconversationongoing(_:) │ │ │ └── index.html │ │ ├── log │ │ │ └── index.html │ │ ├── loggable-implementations │ │ │ └── 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 │ │ ├── chatformconfiguration │ │ ├── debugdescription │ │ │ └── index.html │ │ ├── department │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── email │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(name:email:phonenumber:department:) │ │ │ └── index.html │ │ ├── isequal(_:) │ │ │ └── index.html │ │ ├── name │ │ │ └── index.html │ │ └── phonenumber │ │ │ └── index.html │ │ ├── chatmenuaction │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── emailtranscript │ │ │ └── index.html │ │ ├── endchat │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── hash(into:) │ │ │ └── index.html │ │ ├── hashvalue │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(rawvalue:) │ │ │ └── index.html │ │ └── rawrepresentable-implementations │ │ │ └── index.html │ │ ├── chatsdkversionnumber │ │ └── index.html │ │ ├── chatsdkversionstring │ │ └── index.html │ │ ├── formfieldstatus │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── description │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── hash(into:) │ │ │ └── index.html │ │ ├── hashvalue │ │ │ └── index.html │ │ ├── hidden │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(rawvalue:) │ │ │ └── index.html │ │ ├── optional │ │ │ └── index.html │ │ ├── rawrepresentable-implementations │ │ │ └── index.html │ │ └── required │ │ │ └── index.html │ │ └── index.html │ ├── favicon.ico │ ├── favicon.svg │ ├── img │ ├── added-icon.832a5d2c.svg │ ├── deprecated-icon.7bf1740a.svg │ └── modified-icon.efb2697d.svg │ ├── index.html │ ├── index │ ├── availability.index │ ├── data.mdb │ ├── index.json │ └── navigator.index │ ├── js │ ├── 104.fe5974d0.js │ ├── 337.274a8ccc.js │ ├── 842.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/workflows/deploy-documentation.yml: -------------------------------------------------------------------------------- 1 | name: Deploy documentation 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | paths: 8 | - 'docs/**' 9 | 10 | permissions: 11 | contents: read 12 | pages: write 13 | id-token: write 14 | 15 | jobs: 16 | deploy-documentation: 17 | name: Deploy documentation to GitHub Pages 18 | environment: 19 | name: github-pages 20 | url: ${{ steps.deploy-documentation.outputs.page_url }} 21 | runs-on: ubuntu-latest 22 | steps: 23 | - name: Checkout 24 | uses: actions/checkout@v4 25 | 26 | - name: Configure GitHub Pages 27 | uses: actions/configure-pages@v5 28 | 29 | - name: Archive documentation 30 | run: tar --directory docs -cvf docs.tar . 31 | 32 | - name: Upload documentation 33 | uses: actions/upload-artifact@v4 34 | with: 35 | name: github-pages 36 | path: docs.tar 37 | retention-days: 1 38 | 39 | - name: Deploy documentation 40 | id: deploy-documentation 41 | uses: actions/deploy-pages@v4 42 | -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "zendesk/chat_providers_sdk_ios" ~> 5.0.5 2 | github "zendesk/messaging_sdk_ios" ~> 6.1.0 3 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AvailableLibraries 6 | 7 | 8 | BinaryPath 9 | ChatSDK.framework/ChatSDK 10 | DebugSymbolsPath 11 | dSYMs 12 | LibraryIdentifier 13 | ios-arm64_x86_64-simulator 14 | LibraryPath 15 | ChatSDK.framework 16 | SupportedArchitectures 17 | 18 | arm64 19 | x86_64 20 | 21 | SupportedPlatform 22 | ios 23 | SupportedPlatformVariant 24 | simulator 25 | 26 | 27 | BinaryPath 28 | ChatSDK.framework/ChatSDK 29 | DebugSymbolsPath 30 | dSYMs 31 | LibraryIdentifier 32 | ios-arm64 33 | LibraryPath 34 | ChatSDK.framework 35 | SupportedArchitectures 36 | 37 | arm64 38 | 39 | SupportedPlatform 40 | ios 41 | 42 | 43 | CFBundlePackageType 44 | XFWK 45 | XCFrameworkFormatVersion 46 | 1.0 47 | 48 | 49 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64/ChatSDK.framework/ChatSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/ChatSDK.xcframework/ios-arm64/ChatSDK.framework/ChatSDK -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64/ChatSDK.framework/ChatStrings/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleIdentifier 8 | $(PRODUCT_BUNDLE_IDENTIFIER) 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | $(PRODUCT_NAME) 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleVersion 18 | 1 19 | NSHumanReadableCopyright 20 | Copyright © 2019 Zendesk. All rights reserved. 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64/ChatSDK.framework/Headers/ChatSDK.h: -------------------------------------------------------------------------------- 1 | // 2 | // ChatSDK.h 3 | // ChatSDK 4 | // 5 | // Created by Zendesk on 05/11/2018. 6 | // 7 | // Copyright © 2018 Zendesk. All rights reserved. 8 | // 9 | // By downloading or using the Zendesk Mobile SDK, You agree to the Zendesk Master 10 | // Subscription Agreement https://www.zendesk.com/company/customers-partners/#master-subscription-agreement 11 | // and Application Developer and API License 12 | // 13 | // Agreement https://www.zendesk.com/company/customers-partners/#application-developer-api-license-agreement and 14 | // acknowledge that such terms govern Your use of and access to the Mobile SDK. 15 | 16 | 17 | #import 18 | 19 | //! Project version number for ChatSDK. 20 | FOUNDATION_EXPORT double ChatSDKVersionNumber; 21 | 22 | //! Project version string for ChatSDK. 23 | FOUNDATION_EXPORT const unsigned char ChatSDKVersionString[]; 24 | 25 | // In this header, you should import all the public headers of your framework using statements like #import 26 | 27 | 28 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64/ChatSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/ChatSDK.xcframework/ios-arm64/ChatSDK.framework/Info.plist -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64/ChatSDK.framework/Modules/ChatSDK.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/ChatSDK.xcframework/ios-arm64/ChatSDK.framework/Modules/ChatSDK.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64/ChatSDK.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ChatSDK { 2 | umbrella header "ChatSDK.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module ChatSDK.Swift { 9 | header "ChatSDK-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64/ChatSDK.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyAccessedAPITypes 6 | 7 | 8 | NSPrivacyAccessedAPIType 9 | NSPrivacyAccessedAPICategoryUserDefaults 10 | NSPrivacyAccessedAPITypeReasons 11 | 12 | CA92.1 13 | C56D.1 14 | 15 | 16 | 17 | NSPrivacyCollectedDataTypes 18 | 19 | 20 | NSPrivacyCollectedDataType 21 | NSPrivacyCollectedDataTypeDeviceID 22 | NSPrivacyCollectedDataTypeLinked 23 | 24 | NSPrivacyCollectedDataTypeTracking 25 | 26 | NSPrivacyCollectedDataTypePurposes 27 | 28 | NSPrivacyCollectedDataTypePurposeAppFunctionality 29 | 30 | 31 | 32 | NSPrivacyCollectedDataType 33 | NSPrivacyCollectedDataTypeOtherDiagnosticData 34 | NSPrivacyCollectedDataTypeLinked 35 | 36 | NSPrivacyCollectedDataTypeTracking 37 | 38 | NSPrivacyCollectedDataTypePurposes 39 | 40 | NSPrivacyCollectedDataTypePurposeAnalytics 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64/dSYMs/ChatSDK.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.com.zendesk.ChatSDK 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 5.0.6 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64/dSYMs/ChatSDK.framework.dSYM/Contents/Resources/DWARF/ChatSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/ChatSDK.xcframework/ios-arm64/dSYMs/ChatSDK.framework.dSYM/Contents/Resources/DWARF/ChatSDK -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/ChatSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/ChatSDK -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/ChatStrings/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleIdentifier 8 | $(PRODUCT_BUNDLE_IDENTIFIER) 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | $(PRODUCT_NAME) 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleVersion 18 | 1 19 | NSHumanReadableCopyright 20 | Copyright © 2019 Zendesk. All rights reserved. 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/Headers/ChatSDK.h: -------------------------------------------------------------------------------- 1 | // 2 | // ChatSDK.h 3 | // ChatSDK 4 | // 5 | // Created by Zendesk on 05/11/2018. 6 | // 7 | // Copyright © 2018 Zendesk. All rights reserved. 8 | // 9 | // By downloading or using the Zendesk Mobile SDK, You agree to the Zendesk Master 10 | // Subscription Agreement https://www.zendesk.com/company/customers-partners/#master-subscription-agreement 11 | // and Application Developer and API License 12 | // 13 | // Agreement https://www.zendesk.com/company/customers-partners/#application-developer-api-license-agreement and 14 | // acknowledge that such terms govern Your use of and access to the Mobile SDK. 15 | 16 | 17 | #import 18 | 19 | //! Project version number for ChatSDK. 20 | FOUNDATION_EXPORT double ChatSDKVersionNumber; 21 | 22 | //! Project version string for ChatSDK. 23 | FOUNDATION_EXPORT const unsigned char ChatSDKVersionString[]; 24 | 25 | // In this header, you should import all the public headers of your framework using statements like #import 26 | 27 | 28 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/Info.plist -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/Modules/ChatSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/Modules/ChatSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/Modules/ChatSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/Modules/ChatSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module ChatSDK { 2 | umbrella header "ChatSDK.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module ChatSDK.Swift { 9 | header "ChatSDK-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64_x86_64-simulator/ChatSDK.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPrivacyAccessedAPITypes 6 | 7 | 8 | NSPrivacyAccessedAPIType 9 | NSPrivacyAccessedAPICategoryUserDefaults 10 | NSPrivacyAccessedAPITypeReasons 11 | 12 | CA92.1 13 | C56D.1 14 | 15 | 16 | 17 | NSPrivacyCollectedDataTypes 18 | 19 | 20 | NSPrivacyCollectedDataType 21 | NSPrivacyCollectedDataTypeDeviceID 22 | NSPrivacyCollectedDataTypeLinked 23 | 24 | NSPrivacyCollectedDataTypeTracking 25 | 26 | NSPrivacyCollectedDataTypePurposes 27 | 28 | NSPrivacyCollectedDataTypePurposeAppFunctionality 29 | 30 | 31 | 32 | NSPrivacyCollectedDataType 33 | NSPrivacyCollectedDataTypeOtherDiagnosticData 34 | NSPrivacyCollectedDataTypeLinked 35 | 36 | NSPrivacyCollectedDataTypeTracking 37 | 38 | NSPrivacyCollectedDataTypePurposes 39 | 40 | NSPrivacyCollectedDataTypePurposeAnalytics 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/ChatSDK.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.com.zendesk.ChatSDK 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 5.0.6 17 | CFBundleVersion 18 | 1 19 | 20 | 21 | -------------------------------------------------------------------------------- /ChatSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/ChatSDK.framework.dSYM/Contents/Resources/DWARF/ChatSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/ChatSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/ChatSDK.framework.dSYM/Contents/Resources/DWARF/ChatSDK -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | By downloading or using the Zendesk Chat SDK, You agree to the Zendesk Master 2 | Subscription Agreement https://www.zendesk.com/company/customers-partners/#master-subscription-agreement and Application Developer and API License 3 | Agreement https://www.zendesk.com/company/customers-partners/#application-developer-api-license-agreement and 4 | acknowledge that such terms govern Your use of and access to the Mobile SDK. 5 | 6 | If You make any Contributions (defined below) to the Zendesk Chat SDK, You hereby grant Zendesk a royalty-free, worldwide, transferable, sub-licensable, irrevocable and perpetual license to incorporate into the Service or the Zendesk API or otherwise use and commercially exploit any Contributions. “Contribution” shall mean any work of authorship, including any modifications or additions to the Mobile SDK or derivative works thereof, that is submitted to Zendesk by You. -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version:5.3 2 | import PackageDescription 3 | let package = Package( 4 | name: "ZendeskChatSDK", 5 | platforms: [ 6 | .iOS(.v12) 7 | ], 8 | products: [ 9 | .library( 10 | name: "ZendeskChatSDK", 11 | targets: [ 12 | "ZendeskChatSDKTargets" 13 | ] 14 | ) 15 | ], 16 | dependencies: [ 17 | .package(name: "ZendeskChatProvidersSDK", 18 | url: "https://github.com/zendesk/chat_providers_sdk_ios", 19 | .exact("5.0.5")), 20 | .package(name: "ZendeskMessagingSDK", 21 | url: "https://github.com/zendesk/messaging_sdk_ios", 22 | .exact("6.1.0")) 23 | ], 24 | targets: [ 25 | .binaryTarget( 26 | name: "ChatSDK", 27 | path: "ChatSDK.xcframework" 28 | ), 29 | .target(name: "ZendeskChatSDKTargets", 30 | dependencies: [ 31 | .target(name: "ChatSDK"), 32 | .product(name: "ZendeskChatProvidersSDK", package: "ZendeskChatProvidersSDK"), 33 | .product(name: "ZendeskMessagingSDK", package: "ZendeskMessagingSDK") 34 | ], 35 | path: "Sources" 36 | ) 37 | ] 38 | ) 39 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | :warning: *Use of this software is subject to important terms and conditions as set forth in the License file* :warning: 2 | 3 | # Zendesk Chat SDK for iOS 4 | 5 | Zendesk Chat SDK is a quick, convenient way to get live chat into your mobile apps. With just a few lines of code, you can provide your end users with an easy way to get in touch from any mobile app. 6 | 7 | ## Documentation 8 | 9 | You can find our documentation on https://developer.zendesk.com/embeddables. 10 | 11 | ## Feature requests and issues 12 | 13 | All feature requests and issues are welcomed. Please see our [contributing guidelines](./CONTRIBUTING.md) to find out how to contact us. 14 | 15 | ## Copyright and license 16 | 17 | Copyright 2020 Zendesk 18 | 19 | By downloading or using the Zendesk Chat SDK, You agree to the Zendesk Master 20 | Subscription Agreement https://www.zendesk.com/company/customers-partners/#master-subscription-agreement and Application Developer and API License 21 | Agreement https://www.zendesk.com/company/customers-partners/#application-developer-api-license-agreement and 22 | acknowledge that such terms govern Your use of and access to the Chat SDK. 23 | 24 | If You make any Contributions (defined below) to the Zendesk Chat SDK, 25 | You hereby grant Zendesk a royalty-free, worldwide, transferable, sub-licensable, 26 | irrevocable and perpetual license to incorporate into the Service or the Zendesk API 27 | or otherwise use and commercially exploit any Contributions. “Contribution” shall mean 28 | any work of authorship, including any modifications or additions to the Mobile SDK 29 | or derivative works thereof, that is submitted to Zendesk by You. -------------------------------------------------------------------------------- /Sources/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/Sources/Placeholder.swift -------------------------------------------------------------------------------- /ZendeskChatSDK.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "ZendeskChatSDK" 3 | s.version = "5.0.6" 4 | s.summary = "ZendeskChatSDK #{s.version.to_s}" 5 | s.homepage = "https://developer.zendesk.com/documentation/classic-web-widget-sdks/" 6 | s.license = { 7 | :type => 'Copyright', 8 | :text => <<-LICENSE 9 | ZendeskSDKs 10 | Created by Zendesk on 1/09/2020 11 | Copyright (c) 2020 Zendesk. All rights reserved. 12 | By downloading or using the Zendesk Mobile SDK, You agree to the Zendesk Master 13 | Subscription Agreement https://www.zendesk.com/company/customers-partners/#master-subscription-agreement and Application Developer and API License 14 | Agreement https://www.zendesk.com/company/customers-partners/#application-developer-api-license-agreement and 15 | acknowledge that such terms govern Your use of and access to the Mobile SDK. 16 | LICENSE 17 | } 18 | s.author = 'Zendesk' 19 | s.platform = :ios, '12.0' 20 | s.requires_arc = true 21 | s.swift_version = '5.3.0' 22 | s.cocoapods_version = '>= 1.10.0' 23 | s.source = { :git => "https://github.com/zendesk/chat_sdk_ios.git", :tag => s.version } 24 | s.vendored_frameworks = 'ChatSDK.xcframework' 25 | s.dependency 'ZendeskChatProvidersSDK', '~> 5.0.5' 26 | s.dependency 'ZendeskMessagingSDK', '~> 6.1.0' 27 | end 28 | -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.0/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.0/developer-og.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.0/favicon.ico -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/favicon.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.0/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.0/index/availability.index -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.0/index/data.mdb -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.0/index/navigator.index -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-diff"],{"48b8":function(e,n){function a(e){const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-http"],{c01d:function(e,n){function a(e){const n=e.regex,a="HTTP/(2|1\\.[01])",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:"attribute",begin:n.concat("^",s,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},i=[t,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",end:/$/,contains:[{className:"meta",begin:a},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-json"],{"5ad2":function(n,e){function a(n){const e={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},a={match:/[{}[\],:]/,className:"punctuation",relevance:0},s={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[e,a,n.QUOTE_STRING_MODE,s,n.C_NUMBER_MODE,n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}n.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-shell"],{b65b:function(s,n){function e(s){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}s.exports=e}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/metadata.json: -------------------------------------------------------------------------------- 1 | {"bundleDisplayName":"ChatSDK","bundleIdentifier":"com.zendesk.ChatSDK","schemaVersion":{"major":0,"minor":1,"patch":0}} -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.0/theme-settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "meta": {}, 3 | "theme": { 4 | "code": { 5 | "indentationWidth": 4 6 | }, 7 | "colors": { 8 | "text": "", 9 | "text-background": "", 10 | "grid": "", 11 | "article-background": "", 12 | "generic-modal-background": "", 13 | "secondary-label": "", 14 | "header-text": "", 15 | "not-found": { 16 | "input-border": "" 17 | }, 18 | "runtime-preview": { 19 | "text": "" 20 | }, 21 | "tabnav-item": { 22 | "border-color": "" 23 | }, 24 | "svg-icon": { 25 | "fill-light": "", 26 | "fill-dark": "" 27 | }, 28 | "loading-placeholder": { 29 | "background": "" 30 | }, 31 | "button": { 32 | "text": "", 33 | "light": { 34 | "background": "", 35 | "backgroundHover": "", 36 | "backgroundActive": "" 37 | }, 38 | "dark": { 39 | "background": "", 40 | "backgroundHover": "", 41 | "backgroundActive": "" 42 | } 43 | }, 44 | "link": null 45 | }, 46 | "style": { 47 | "button": { 48 | "borderRadius": null 49 | } 50 | }, 51 | "typography": { 52 | "html-font": "" 53 | } 54 | }, 55 | "features": { 56 | "docs": { 57 | } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.1/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.1/developer-og.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.1/favicon.ico -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/favicon.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.1/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.1/index/availability.index -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.1/index/data.mdb -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/4.0.1/index/navigator.index -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-diff"],{"48b8":function(e,n){function a(e){const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-http"],{c01d:function(e,n){function a(e){const n=e.regex,a="HTTP/(2|1\\.[01])",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:"attribute",begin:n.concat("^",s,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},i=[t,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",end:/$/,contains:[{className:"meta",begin:a},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-json"],{"5ad2":function(n,e){function a(n){const e={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},a={match:/[{}[\],:]/,className:"punctuation",relevance:0},s={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[e,a,n.QUOTE_STRING_MODE,s,n.C_NUMBER_MODE,n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}n.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-shell"],{b65b:function(s,n){function e(s){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}s.exports=e}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/metadata.json: -------------------------------------------------------------------------------- 1 | {"bundleDisplayName":"ChatSDK","bundleIdentifier":"com.zendesk.ChatSDK","schemaVersion":{"major":0,"minor":1,"patch":0}} -------------------------------------------------------------------------------- /docs/ChatSDK/4.0.1/theme-settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "meta": {}, 3 | "theme": { 4 | "code": { 5 | "indentationWidth": 4 6 | }, 7 | "colors": { 8 | "text": "", 9 | "text-background": "", 10 | "grid": "", 11 | "article-background": "", 12 | "generic-modal-background": "", 13 | "secondary-label": "", 14 | "header-text": "", 15 | "not-found": { 16 | "input-border": "" 17 | }, 18 | "runtime-preview": { 19 | "text": "" 20 | }, 21 | "tabnav-item": { 22 | "border-color": "" 23 | }, 24 | "svg-icon": { 25 | "fill-light": "", 26 | "fill-dark": "" 27 | }, 28 | "loading-placeholder": { 29 | "background": "" 30 | }, 31 | "button": { 32 | "text": "", 33 | "light": { 34 | "background": "", 35 | "backgroundHover": "", 36 | "backgroundActive": "" 37 | }, 38 | "dark": { 39 | "background": "", 40 | "backgroundHover": "", 41 | "backgroundActive": "" 42 | } 43 | }, 44 | "link": null 45 | }, 46 | "style": { 47 | "button": { 48 | "borderRadius": null 49 | } 50 | }, 51 | "typography": { 52 | "html-font": "" 53 | } 54 | }, 55 | "features": { 56 | "docs": { 57 | } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.0/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.0/developer-og.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.0/favicon.ico -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/favicon.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.0/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.0/index/availability.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.0/index/data.mdb -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.0/index/navigator.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-diff"],{"48b8":function(e,n){function a(e){const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-http"],{c01d:function(e,n){function a(e){const n=e.regex,a="HTTP/(2|1\\.[01])",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:"attribute",begin:n.concat("^",s,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},i=[t,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",end:/$/,contains:[{className:"meta",begin:a},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-json"],{"5ad2":function(n,e){function a(n){const e={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},a={match:/[{}[\],:]/,className:"punctuation",relevance:0},s={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[e,a,n.QUOTE_STRING_MODE,s,n.C_NUMBER_MODE,n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}n.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-shell"],{b65b:function(s,n){function e(s){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}s.exports=e}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/metadata.json: -------------------------------------------------------------------------------- 1 | {"bundleDisplayName":"ChatSDK","bundleIdentifier":"com.zendesk.ChatSDK","schemaVersion":{"major":0,"minor":1,"patch":0}} -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.0/theme-settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "meta": {}, 3 | "theme": { 4 | "code": { 5 | "indentationWidth": 4 6 | }, 7 | "colors": { 8 | "text": "", 9 | "text-background": "", 10 | "grid": "", 11 | "article-background": "", 12 | "generic-modal-background": "", 13 | "secondary-label": "", 14 | "header-text": "", 15 | "not-found": { 16 | "input-border": "" 17 | }, 18 | "runtime-preview": { 19 | "text": "" 20 | }, 21 | "tabnav-item": { 22 | "border-color": "" 23 | }, 24 | "svg-icon": { 25 | "fill-light": "", 26 | "fill-dark": "" 27 | }, 28 | "loading-placeholder": { 29 | "background": "" 30 | }, 31 | "button": { 32 | "text": "", 33 | "light": { 34 | "background": "", 35 | "backgroundHover": "", 36 | "backgroundActive": "" 37 | }, 38 | "dark": { 39 | "background": "", 40 | "backgroundHover": "", 41 | "backgroundActive": "" 42 | } 43 | }, 44 | "link": null 45 | }, 46 | "style": { 47 | "button": { 48 | "borderRadius": null 49 | } 50 | }, 51 | "typography": { 52 | "html-font": "" 53 | } 54 | }, 55 | "features": { 56 | "docs": { 57 | } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.1/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.1/developer-og.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.1/favicon.ico -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/favicon.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.1/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.1/index/availability.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.1/index/data.mdb -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.1/index/navigator.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-diff"],{"48b8":function(e,n){function a(e){const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-http"],{c01d:function(e,n){function a(e){const n=e.regex,a="HTTP/(2|1\\.[01])",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:"attribute",begin:n.concat("^",s,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},i=[t,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",end:/$/,contains:[{className:"meta",begin:a},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-json"],{"5ad2":function(n,e){function a(n){const e={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},a={match:/[{}[\],:]/,className:"punctuation",relevance:0},s={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[e,a,n.QUOTE_STRING_MODE,s,n.C_NUMBER_MODE,n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}n.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-shell"],{b65b:function(s,n){function e(s){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}s.exports=e}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.1/metadata.json: -------------------------------------------------------------------------------- 1 | {"bundleIdentifier":"com.zendesk.ChatSDK","bundleDisplayName":"ChatSDK","schemaVersion":{"major":0,"minor":1,"patch":0}} -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.2/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.2/developer-og.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.2/favicon.ico -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/favicon.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.2/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.2/index/availability.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.2/index/data.mdb -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.2/index/navigator.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-diff"],{"48b8":function(e,n){function a(e){const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-http"],{c01d:function(e,n){function a(e){const n=e.regex,a="HTTP/(2|1\\.[01])",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:"attribute",begin:n.concat("^",s,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},i=[t,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",end:/$/,contains:[{className:"meta",begin:a},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-json"],{"5ad2":function(n,e){function a(n){const e={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},a={match:/[{}[\],:]/,className:"punctuation",relevance:0},s={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[e,a,n.QUOTE_STRING_MODE,s,n.C_NUMBER_MODE,n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}n.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-shell"],{b65b:function(s,n){function e(s){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}s.exports=e}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.2/metadata.json: -------------------------------------------------------------------------------- 1 | {"bundleIdentifier":"com.zendesk.ChatSDK","schemaVersion":{"minor":1,"major":0,"patch":0},"bundleDisplayName":"ChatSDK"} -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.3/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.3/developer-og.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.3/favicon.ico -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/favicon.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.3/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.3/index/availability.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.3/index/data.mdb -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.3/index/navigator.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-diff"],{"48b8":function(e,n){function a(e){const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-http"],{c01d:function(e,n){function a(e){const n=e.regex,a="HTTP/(2|1\\.[01])",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:"attribute",begin:n.concat("^",s,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},i=[t,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",end:/$/,contains:[{className:"meta",begin:a},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-json"],{"5ad2":function(n,e){function a(n){const e={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},a={match:/[{}[\],:]/,className:"punctuation",relevance:0},s={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[e,a,n.QUOTE_STRING_MODE,s,n.C_NUMBER_MODE,n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}n.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-shell"],{b65b:function(s,n){function e(s){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}s.exports=e}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.3/metadata.json: -------------------------------------------------------------------------------- 1 | {"bundleIdentifier":"com.zendesk.ChatSDK","schemaVersion":{"major":0,"minor":1,"patch":0},"bundleDisplayName":"ChatSDK"} -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.4/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.4/developer-og.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.4/favicon.ico -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/favicon.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.4/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.4/index/availability.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.4/index/data.mdb -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.4/index/navigator.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-diff"],{"48b8":function(e,n){function a(e){const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-http"],{c01d:function(e,n){function a(e){const n=e.regex,a="HTTP/(2|1\\.[01])",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:"attribute",begin:n.concat("^",s,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},i=[t,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",end:/$/,contains:[{className:"meta",begin:a},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-json"],{"5ad2":function(n,e){function a(n){const e={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},a={match:/[{}[\],:]/,className:"punctuation",relevance:0},s={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[e,a,n.QUOTE_STRING_MODE,s,n.C_NUMBER_MODE,n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}n.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-shell"],{b65b:function(s,n){function e(s){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}s.exports=e}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.4/metadata.json: -------------------------------------------------------------------------------- 1 | {"bundleDisplayName":"ChatSDK","bundleIdentifier":"com.zendesk.ChatSDK","schemaVersion":{"patch":0,"major":0,"minor":1}} -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.5/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.5/developer-og.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.5/favicon.ico -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/favicon.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.5/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.5/index/availability.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.5/index/data.mdb -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.5/index/navigator.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-diff"],{"48b8":function(e,n){function a(e){const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-http"],{c01d:function(e,n){function a(e){const n=e.regex,a="HTTP/(2|1\\.[01])",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:"attribute",begin:n.concat("^",s,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},i=[t,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",end:/$/,contains:[{className:"meta",begin:a},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-json"],{"5ad2":function(n,e){function a(n){const e={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},a={match:/[{}[\],:]/,className:"punctuation",relevance:0},s={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[e,a,n.QUOTE_STRING_MODE,s,n.C_NUMBER_MODE,n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}n.exports=a}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["highlight-js-shell"],{b65b:function(s,n){function e(s){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}s.exports=e}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.5/metadata.json: -------------------------------------------------------------------------------- 1 | {"schemaVersion":{"major":0,"patch":0,"minor":1},"bundleIdentifier":"com.zendesk.ChatSDK","bundleDisplayName":"ChatSDK"} -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.6/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.6/developer-og.jpg -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatconfiguration/chatmenuactions/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatconfiguration/debugdescription/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatconfiguration/description/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatconfiguration/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatconfiguration/init()/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatconfiguration/isequal(_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatconfiguration/isofflineformenabled/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatconfiguration/isprechatformenabled/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatconfiguration/menuactions/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatconfiguration/setchatmenuactions(_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/configuration/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/engine()/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/engine-implementations/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/id/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/isconversationongoing()/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/isconversationongoing(_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/log/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/loggable-implementations/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/notifyobservers(_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/observable-implementations/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/observeupdates(_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/onevent(_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/onupdate/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/start(messagingapi:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/stop()/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatengine/transferoptiondescription/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatformconfiguration/debugdescription/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatformconfiguration/department/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatformconfiguration/description/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatformconfiguration/email/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatformconfiguration/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatformconfiguration/isequal(_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatformconfiguration/name/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatformconfiguration/phonenumber/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatmenuaction/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatmenuaction/emailtranscript/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatmenuaction/endchat/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatmenuaction/hash(into:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatmenuaction/hashvalue/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatmenuaction/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatmenuaction/init(rawvalue:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatsdkversionnumber/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/chatsdkversionstring/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/formfieldstatus/!=(_:_:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/formfieldstatus/description/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/formfieldstatus/hash(into:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/formfieldstatus/hashvalue/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/formfieldstatus/hidden/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/formfieldstatus/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/formfieldstatus/init(rawvalue:)/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/formfieldstatus/optional/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/formfieldstatus/required/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/documentation/chatsdk/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.6/favicon.ico -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/favicon.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/img/added-icon.832a5d2c.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/img/deprecated-icon.7bf1740a.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/img/modified-icon.efb2697d.svg: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/index.html: -------------------------------------------------------------------------------- 1 | Documentation
-------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.6/index/availability.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.6/index/data.mdb -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/chat_sdk_ios/0f1f2aff30d83dc6456cbbd5fd35760fa57d647e/docs/ChatSDK/5.0.6/index/navigator.index -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/js/highlight-js-diff-js.4db9a783.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (self["webpackChunkswift_docc_render"]=self["webpackChunkswift_docc_render"]||[]).push([[213],{7731:function(e){function n(e){const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}e.exports=n}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/js/highlight-js-http-js.f78e83c2.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (self["webpackChunkswift_docc_render"]=self["webpackChunkswift_docc_render"]||[]).push([[878],{8937:function(e){function n(e){const n=e.regex,a="HTTP/(2|1\\.[01])",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:"attribute",begin:n.concat("^",s,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},i=[t,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})",end:/$/,contains:[{className:"meta",begin:a},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},{begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=n}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/js/highlight-js-json-js.2a1856ba.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (self["webpackChunkswift_docc_render"]=self["webpackChunkswift_docc_render"]||[]).push([[82],{14:function(e){function n(e){const n={className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},c={match:/[{}[\],:]/,className:"punctuation",relevance:0},a={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[n,c,e.QUOTE_STRING_MODE,a,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}e.exports=n}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/js/highlight-js-shell-js.0ad5b20f.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * This source file is part of the Swift.org open source project 3 | * 4 | * Copyright (c) 2021 Apple Inc. and the Swift project authors 5 | * Licensed under Apache License v2.0 with Runtime Library Exception 6 | * 7 | * See https://swift.org/LICENSE.txt for license information 8 | * See https://swift.org/CONTRIBUTORS.txt for Swift project authors 9 | */ 10 | (self["webpackChunkswift_docc_render"]=self["webpackChunkswift_docc_render"]||[]).push([[176],{7874:function(s){function e(s){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}s.exports=e}}]); -------------------------------------------------------------------------------- /docs/ChatSDK/5.0.6/metadata.json: -------------------------------------------------------------------------------- 1 | {"bundleID":"com.zendesk.ChatSDK","bundleDisplayName":"ChatSDK","schemaVersion":{"patch":0,"minor":1,"major":0}} --------------------------------------------------------------------------------