├── .gitattributes ├── .gitignore ├── .npmignore ├── README.md ├── ZDCChat.bundle ├── Info.plist ├── ZDCChatAttachIcon.png ├── ZDCChatAttachIcon@2x.png ├── ZDCChatAttachIcon@3x.png ├── ZDCChatErrorIcon.png ├── ZDCChatErrorIcon@2x.png ├── ZDCChatErrorIcon@3x.png ├── ZDCChatFileIcon.png ├── ZDCChatFileIcon@2x.png ├── ZDCChatFileIcon@3x.png ├── ZDCChatPdfIcon.png ├── ZDCChatPdfIcon@2x.png ├── ZDCChatPdfIcon@3x.png ├── ZDCChatThumbDownGrey.png ├── ZDCChatThumbDownGrey@2x.png ├── ZDCChatThumbDownGrey@3x.png ├── ZDCChatThumbDownWhite.png ├── ZDCChatThumbDownWhite@2x.png ├── ZDCChatThumbDownWhite@3x.png ├── ZDCChatThumbUpGrey.png ├── ZDCChatThumbUpGrey@2x.png ├── ZDCChatThumbUpGrey@3x.png ├── ZDCChatThumbUpWhite.png ├── ZDCChatThumbUpWhite@2x.png ├── ZDCChatThumbUpWhite@3x.png ├── ZDCChatTxtIcon.png ├── ZDCChatTxtIcon@2x.png ├── ZDCChatTxtIcon@3x.png ├── ZDCDefaultAvatar.png ├── ZDCDefaultAvatar@2x.png ├── ZDCDefaultAvatar@3x.png ├── ZDCOverlayBackground.png ├── ZDCOverlayBackground@2x.png └── ZDCOverlayBackground@3x.png ├── ZDCChatStrings.bundle ├── Info.plist ├── ca.lproj │ └── Localizable.strings ├── cs.lproj │ └── Localizable.strings ├── da.lproj │ └── Localizable.strings ├── de.lproj │ └── Localizable.strings ├── en-GB.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── es.lproj │ └── Localizable.strings ├── fi.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── hi.lproj │ └── Localizable.strings ├── id.lproj │ └── Localizable.strings ├── it.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings ├── ko.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 ├── sv.lproj │ └── Localizable.strings ├── th.lproj │ └── Localizable.strings ├── tr.lproj │ └── Localizable.strings ├── vi.lproj │ └── Localizable.strings ├── zh-Hans.lproj │ └── Localizable.strings └── zh-Hant.lproj │ └── Localizable.strings ├── android ├── README.md ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── br │ └── com │ └── meutudo │ └── rnzendeskchat │ ├── ItemFactory.java │ ├── MessagingSerializer.java │ ├── NotificationGenerator.java │ ├── Utils.java │ ├── ZendeskChatModule.java │ ├── ZendeskChatPackage.java │ ├── observers │ ├── ChatConnectionObserver.java │ ├── ChatDepartmentsObserver.java │ ├── ChatObserver.java │ └── ChatTimeoutObserver.java │ ├── receivers │ └── NotificationOpenedReceiver.java │ └── services │ ├── ZendeskChatApiMessageService.java │ └── ZendeskChatMessageBackgroundService.java ├── index.js ├── ios ├── ItemFactory.h ├── ItemFactory.m ├── ZDCChat.bundle │ ├── Info.plist │ ├── ZDCChatAttachIcon.png │ ├── ZDCChatAttachIcon@2x.png │ ├── ZDCChatAttachIcon@3x.png │ ├── ZDCChatErrorIcon.png │ ├── ZDCChatErrorIcon@2x.png │ ├── ZDCChatErrorIcon@3x.png │ ├── ZDCChatFileIcon.png │ ├── ZDCChatFileIcon@2x.png │ ├── ZDCChatFileIcon@3x.png │ ├── ZDCChatPdfIcon.png │ ├── ZDCChatPdfIcon@2x.png │ ├── ZDCChatPdfIcon@3x.png │ ├── ZDCChatThumbDownGrey.png │ ├── ZDCChatThumbDownGrey@2x.png │ ├── ZDCChatThumbDownGrey@3x.png │ ├── ZDCChatThumbDownWhite.png │ ├── ZDCChatThumbDownWhite@2x.png │ ├── ZDCChatThumbDownWhite@3x.png │ ├── ZDCChatThumbUpGrey.png │ ├── ZDCChatThumbUpGrey@2x.png │ ├── ZDCChatThumbUpGrey@3x.png │ ├── ZDCChatThumbUpWhite.png │ ├── ZDCChatThumbUpWhite@2x.png │ ├── ZDCChatThumbUpWhite@3x.png │ ├── ZDCChatTxtIcon.png │ ├── ZDCChatTxtIcon@2x.png │ ├── ZDCChatTxtIcon@3x.png │ ├── ZDCDefaultAvatar.png │ ├── ZDCDefaultAvatar@2x.png │ ├── ZDCDefaultAvatar@3x.png │ ├── ZDCOverlayBackground.png │ ├── ZDCOverlayBackground@2x.png │ └── ZDCOverlayBackground@3x.png ├── ZDCChat.framework │ ├── Headers │ │ ├── ZDCAccountOfflineCell.h │ │ ├── ZDCAgentAttachmentCell.h │ │ ├── ZDCAgentChatCell.h │ │ ├── ZDCAgentTypingCell.h │ │ ├── ZDCChat.h │ │ ├── ZDCChatAvatar.h │ │ ├── ZDCChatCell.h │ │ ├── ZDCChatCellActionDelegate.h │ │ ├── ZDCChatOverlay.h │ │ ├── ZDCChatTimedOutCell.h │ │ ├── ZDCChatUI.h │ │ ├── ZDCChatUIController.h │ │ ├── ZDCChatView.h │ │ ├── ZDCChatViewController.h │ │ ├── ZDCConfig.h │ │ ├── ZDCFormCell.h │ │ ├── ZDCFormCellDepartment.h │ │ ├── ZDCFormCellMessage.h │ │ ├── ZDCFormCellSingleLine.h │ │ ├── ZDCJoinLeaveCell.h │ │ ├── ZDCLoadingErrorView.h │ │ ├── ZDCLoadingView.h │ │ ├── ZDCOfflineMessageHandler.h │ │ ├── ZDCOfflineMessageView.h │ │ ├── ZDCPreChatData.h │ │ ├── ZDCPreChatFormView.h │ │ ├── ZDCRatingCell.h │ │ ├── ZDCSystemTriggerCell.h │ │ ├── ZDCTextEntryView.h │ │ ├── ZDCVisitorAttachmentCell.h │ │ ├── ZDCVisitorChatCell.h │ │ ├── ZDUExternalImage.h │ │ ├── ZDUImageRequestDelegate.h │ │ └── ZDUViewController.h │ ├── Info.plist │ ├── Modules │ │ └── module.modulemap │ ├── PrivateHeaders │ │ ├── ZDCChatAlertHelper.h │ │ └── ZDCConfig+Timeout.h │ └── ZDCChat ├── ZDCChatAPI.framework │ ├── Headers │ │ ├── ZDCAPIConfig.h │ │ ├── ZDCChatAPI.h │ │ ├── ZDCChatAPIEnums.h │ │ ├── ZDCChatAgent.h │ │ ├── ZDCChatAttachment.h │ │ ├── ZDCChatEvent.h │ │ ├── ZDCChatFile.h │ │ ├── ZDCChatProfile.h │ │ ├── ZDCChatUpload.h │ │ ├── ZDCLog.h │ │ ├── ZDCProgressMonitor.h │ │ └── ZDCVisitorInfo.h │ ├── Info.plist │ ├── Modules │ │ └── module.modulemap │ ├── PrivateHeaders │ │ └── ZDCAPIConfig+Timeout.h │ └── ZDCChatAPI ├── ZDCChatStrings.bundle │ ├── Info.plist │ ├── ca.lproj │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── en-GB.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── hi.lproj │ │ └── Localizable.strings │ ├── id.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── ko.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 │ ├── sv.lproj │ │ └── Localizable.strings │ ├── th.lproj │ │ └── Localizable.strings │ ├── tr.lproj │ │ └── Localizable.strings │ ├── vi.lproj │ │ └── Localizable.strings │ ├── zh-Hans.lproj │ │ └── Localizable.strings │ └── zh-Hant.lproj │ │ └── Localizable.strings ├── ZendeskChat.h ├── ZendeskChat.m ├── ZendeskChat.xcodeproj │ └── project.pbxproj └── ZendeskChat.xcworkspace │ └── contents.xcworkspacedata ├── package.json ├── react-native-zendesk-chat.podspec ├── src ├── ZendeskChatAPI.js └── consts.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/README.md -------------------------------------------------------------------------------- /ZDCChat.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/Info.plist -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatAttachIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatAttachIcon.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatAttachIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatAttachIcon@2x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatAttachIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatAttachIcon@3x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatErrorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatErrorIcon.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatErrorIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatErrorIcon@2x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatErrorIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatErrorIcon@3x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatFileIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatFileIcon.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatFileIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatFileIcon@2x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatFileIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatFileIcon@3x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatPdfIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatPdfIcon.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatPdfIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatPdfIcon@2x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatPdfIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatPdfIcon@3x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbDownGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbDownGrey.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbDownGrey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbDownGrey@2x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbDownGrey@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbDownGrey@3x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbDownWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbDownWhite.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbDownWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbDownWhite@2x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbDownWhite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbDownWhite@3x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbUpGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbUpGrey.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbUpGrey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbUpGrey@2x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbUpGrey@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbUpGrey@3x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbUpWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbUpWhite.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbUpWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbUpWhite@2x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatThumbUpWhite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatThumbUpWhite@3x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatTxtIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatTxtIcon.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatTxtIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatTxtIcon@2x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCChatTxtIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCChatTxtIcon@3x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCDefaultAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCDefaultAvatar.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCDefaultAvatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCDefaultAvatar@2x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCDefaultAvatar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCDefaultAvatar@3x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCOverlayBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCOverlayBackground.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCOverlayBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCOverlayBackground@2x.png -------------------------------------------------------------------------------- /ZDCChat.bundle/ZDCOverlayBackground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChat.bundle/ZDCOverlayBackground@3x.png -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/Info.plist -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/en-GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZDCChatStrings.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ZDCChatStrings.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/ItemFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/ItemFactory.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/MessagingSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/MessagingSerializer.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/NotificationGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/NotificationGenerator.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/Utils.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/ZendeskChatModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/ZendeskChatModule.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/ZendeskChatPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/ZendeskChatPackage.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/observers/ChatConnectionObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/observers/ChatConnectionObserver.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/observers/ChatDepartmentsObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/observers/ChatDepartmentsObserver.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/observers/ChatObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/observers/ChatObserver.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/observers/ChatTimeoutObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/observers/ChatTimeoutObserver.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/receivers/NotificationOpenedReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/receivers/NotificationOpenedReceiver.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/services/ZendeskChatApiMessageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/services/ZendeskChatApiMessageService.java -------------------------------------------------------------------------------- /android/src/main/java/br/com/meutudo/rnzendeskchat/services/ZendeskChatMessageBackgroundService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/android/src/main/java/br/com/meutudo/rnzendeskchat/services/ZendeskChatMessageBackgroundService.java -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/index.js -------------------------------------------------------------------------------- /ios/ItemFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ItemFactory.h -------------------------------------------------------------------------------- /ios/ItemFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ItemFactory.m -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/Info.plist -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatAttachIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatAttachIcon.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatAttachIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatAttachIcon@2x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatAttachIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatAttachIcon@3x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatErrorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatErrorIcon.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatErrorIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatErrorIcon@2x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatErrorIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatErrorIcon@3x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatFileIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatFileIcon.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatFileIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatFileIcon@2x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatFileIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatFileIcon@3x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatPdfIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatPdfIcon.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatPdfIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatPdfIcon@2x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatPdfIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatPdfIcon@3x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbDownGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbDownGrey.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbDownGrey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbDownGrey@2x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbDownGrey@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbDownGrey@3x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbDownWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbDownWhite.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbDownWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbDownWhite@2x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbDownWhite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbDownWhite@3x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbUpGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbUpGrey.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbUpGrey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbUpGrey@2x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbUpGrey@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbUpGrey@3x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbUpWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbUpWhite.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbUpWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbUpWhite@2x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatThumbUpWhite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatThumbUpWhite@3x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatTxtIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatTxtIcon.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatTxtIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatTxtIcon@2x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCChatTxtIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCChatTxtIcon@3x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCDefaultAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCDefaultAvatar.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCDefaultAvatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCDefaultAvatar@2x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCDefaultAvatar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCDefaultAvatar@3x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCOverlayBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCOverlayBackground.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCOverlayBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCOverlayBackground@2x.png -------------------------------------------------------------------------------- /ios/ZDCChat.bundle/ZDCOverlayBackground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.bundle/ZDCOverlayBackground@3x.png -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCAccountOfflineCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCAccountOfflineCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCAgentAttachmentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCAgentAttachmentCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCAgentChatCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCAgentChatCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCAgentTypingCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCAgentTypingCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCChat.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCChatAvatar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCChatAvatar.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCChatCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCChatCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCChatCellActionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCChatCellActionDelegate.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCChatOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCChatOverlay.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCChatTimedOutCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCChatTimedOutCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCChatUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCChatUI.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCChatUIController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCChatUIController.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCChatView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCChatView.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCChatViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCChatViewController.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCConfig.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCFormCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCFormCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCFormCellDepartment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCFormCellDepartment.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCFormCellMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCFormCellMessage.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCFormCellSingleLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCFormCellSingleLine.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCJoinLeaveCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCJoinLeaveCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCLoadingErrorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCLoadingErrorView.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCLoadingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCLoadingView.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCOfflineMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCOfflineMessageHandler.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCOfflineMessageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCOfflineMessageView.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCPreChatData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCPreChatData.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCPreChatFormView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCPreChatFormView.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCRatingCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCRatingCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCSystemTriggerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCSystemTriggerCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCTextEntryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCTextEntryView.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCVisitorAttachmentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCVisitorAttachmentCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDCVisitorChatCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDCVisitorChatCell.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDUExternalImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDUExternalImage.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDUImageRequestDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDUImageRequestDelegate.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Headers/ZDUViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Headers/ZDUViewController.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Info.plist -------------------------------------------------------------------------------- /ios/ZDCChat.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/ZDCChat.framework/PrivateHeaders/ZDCChatAlertHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/PrivateHeaders/ZDCChatAlertHelper.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/PrivateHeaders/ZDCConfig+Timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/PrivateHeaders/ZDCConfig+Timeout.h -------------------------------------------------------------------------------- /ios/ZDCChat.framework/ZDCChat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChat.framework/ZDCChat -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCAPIConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCAPIConfig.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCChatAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCChatAPI.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCChatAPIEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCChatAPIEnums.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCChatAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCChatAgent.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCChatAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCChatAttachment.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCChatEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCChatEvent.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCChatFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCChatFile.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCChatProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCChatProfile.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCChatUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCChatUpload.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCLog.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCProgressMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCProgressMonitor.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Headers/ZDCVisitorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Headers/ZDCVisitorInfo.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Info.plist -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/PrivateHeaders/ZDCAPIConfig+Timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/PrivateHeaders/ZDCAPIConfig+Timeout.h -------------------------------------------------------------------------------- /ios/ZDCChatAPI.framework/ZDCChatAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatAPI.framework/ZDCChatAPI -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/Info.plist -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/en-GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZDCChatStrings.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZDCChatStrings.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /ios/ZendeskChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZendeskChat.h -------------------------------------------------------------------------------- /ios/ZendeskChat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZendeskChat.m -------------------------------------------------------------------------------- /ios/ZendeskChat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZendeskChat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ZendeskChat.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/ios/ZendeskChat.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/package.json -------------------------------------------------------------------------------- /react-native-zendesk-chat.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/react-native-zendesk-chat.podspec -------------------------------------------------------------------------------- /src/ZendeskChatAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/src/ZendeskChatAPI.js -------------------------------------------------------------------------------- /src/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/src/consts.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/witalobenicio/react-native-zendesk-chat-api/HEAD/yarn.lock --------------------------------------------------------------------------------