├── .gitignore ├── LICENSE ├── README.md ├── README.pdf ├── ZelloAPIObjC.podspec ├── ZelloAPISwift.podspec ├── csharp ├── APITest │ ├── APITest.sln │ └── APITest │ │ ├── APITest.cs │ │ ├── APITest.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ZelloAPI.cs └── ZelloAPI.cs ├── java ├── APITest │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── zello │ │ │ │ └── apitest │ │ │ │ ├── APITest.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── ResultCompletionHandler.java │ │ │ │ └── ZelloAPI.java │ │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── build.gradle ├── ResultCompletionHandler.java └── ZelloAPI.java ├── objective-c ├── APITest │ ├── APITest.xcodeproj │ │ └── project.pbxproj │ └── APITest │ │ ├── APITest.h │ │ ├── APITest.m │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZelloAPI.h │ │ ├── ZelloAPI.m │ │ └── main.m ├── CocoaPod │ ├── Example │ │ ├── Example.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Example │ │ │ ├── APITest.h │ │ │ ├── APITest.m │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ ├── Podfile │ │ ├── Podfile.lock │ │ └── Pods │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── Target Support Files │ │ │ ├── Pods-Example │ │ │ │ ├── Info.plist │ │ │ │ ├── Pods-Example-acknowledgements.markdown │ │ │ │ ├── Pods-Example-acknowledgements.plist │ │ │ │ ├── Pods-Example-dummy.m │ │ │ │ ├── Pods-Example-frameworks.sh │ │ │ │ ├── Pods-Example-resources.sh │ │ │ │ ├── Pods-Example-umbrella.h │ │ │ │ ├── Pods-Example.debug.xcconfig │ │ │ │ ├── Pods-Example.modulemap │ │ │ │ └── Pods-Example.release.xcconfig │ │ │ └── ZelloAPIObjC │ │ │ │ ├── Info.plist │ │ │ │ ├── ZelloAPIObjC-dummy.m │ │ │ │ ├── ZelloAPIObjC-umbrella.h │ │ │ │ ├── ZelloAPIObjC.modulemap │ │ │ │ └── ZelloAPIObjC.xcconfig │ │ │ └── ZelloAPIObjC │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── objective-c │ │ │ └── CocoaPod │ │ │ └── ZelloAPIObjC │ │ │ ├── ZelloAPI.h │ │ │ ├── ZelloAPI.m │ │ │ └── ZelloAPIObjC.h │ ├── ZelloAPIObjC.xcodeproj │ │ └── project.pbxproj │ └── ZelloAPIObjC │ │ ├── Info.plist │ │ ├── ZelloAPI.h │ │ ├── ZelloAPI.m │ │ └── ZelloAPIObjC.h ├── ZelloAPI.h └── ZelloAPI.m ├── php ├── api_test.php └── zello_server_api.class.php ├── python ├── .gitignore ├── main.py └── utils.py └── swift ├── APITest ├── APITest.xcodeproj │ └── project.pbxproj └── APITest │ ├── APITest-Bridging-Header.h │ ├── APITest.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── ZelloAPI.swift ├── CocoaPod ├── CommonCrypto │ ├── CommonCrypto.xcconfig │ ├── Info.plist │ ├── appletvos.modulemap │ ├── appletvos │ │ └── module.modulemap │ ├── appletvsimulator.modulemap │ ├── appletvsimulator │ │ └── module.modulemap │ ├── iphoneos.modulemap │ ├── iphoneos │ │ └── module.modulemap │ ├── iphonesimulator.modulemap │ └── iphonesimulator │ │ └── module.modulemap ├── Example │ ├── Example.xcodeproj │ │ └── project.pbxproj │ ├── Example │ │ ├── APITest.swift │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ ├── Target Support Files │ │ ├── Pods-Example │ │ │ ├── Info.plist │ │ │ ├── Pods-Example-acknowledgements.markdown │ │ │ ├── Pods-Example-acknowledgements.plist │ │ │ ├── Pods-Example-dummy.m │ │ │ ├── Pods-Example-frameworks.sh │ │ │ ├── Pods-Example-resources.sh │ │ │ ├── Pods-Example-umbrella.h │ │ │ ├── Pods-Example.debug.xcconfig │ │ │ ├── Pods-Example.modulemap │ │ │ └── Pods-Example.release.xcconfig │ │ └── ZelloAPISwift │ │ │ ├── Info.plist │ │ │ ├── ZelloAPISwift-dummy.m │ │ │ ├── ZelloAPISwift-umbrella.h │ │ │ ├── ZelloAPISwift.modulemap │ │ │ └── ZelloAPISwift.xcconfig │ │ └── ZelloAPISwift │ │ ├── LICENSE │ │ ├── README.md │ │ └── swift │ │ └── CocoaPod │ │ ├── CommonCrypto │ │ ├── CommonCrypto.xcconfig │ │ ├── Info.plist │ │ ├── appletvos.modulemap │ │ ├── appletvos │ │ │ └── module.modulemap │ │ ├── appletvsimulator.modulemap │ │ ├── appletvsimulator │ │ │ └── module.modulemap │ │ ├── iphoneos.modulemap │ │ ├── iphoneos │ │ │ └── module.modulemap │ │ ├── iphonesimulator.modulemap │ │ └── iphonesimulator │ │ │ └── module.modulemap │ │ └── ZelloAPISwift │ │ ├── Info.plist │ │ ├── ZelloAPI.swift │ │ └── ZelloAPISwift.h ├── ZelloAPISwift.xcodeproj │ └── project.pbxproj └── ZelloAPISwift │ ├── Info.plist │ ├── ZelloAPI.swift │ └── ZelloAPISwift.h └── ZelloAPI.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/README.pdf -------------------------------------------------------------------------------- /ZelloAPIObjC.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/ZelloAPIObjC.podspec -------------------------------------------------------------------------------- /ZelloAPISwift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/ZelloAPISwift.podspec -------------------------------------------------------------------------------- /csharp/APITest/APITest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/csharp/APITest/APITest.sln -------------------------------------------------------------------------------- /csharp/APITest/APITest/APITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/csharp/APITest/APITest/APITest.cs -------------------------------------------------------------------------------- /csharp/APITest/APITest/APITest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/csharp/APITest/APITest/APITest.csproj -------------------------------------------------------------------------------- /csharp/APITest/APITest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/csharp/APITest/APITest/App.config -------------------------------------------------------------------------------- /csharp/APITest/APITest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/csharp/APITest/APITest/Program.cs -------------------------------------------------------------------------------- /csharp/APITest/APITest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/csharp/APITest/APITest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /csharp/APITest/APITest/ZelloAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/csharp/APITest/APITest/ZelloAPI.cs -------------------------------------------------------------------------------- /csharp/ZelloAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/csharp/ZelloAPI.cs -------------------------------------------------------------------------------- /java/APITest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/.gitignore -------------------------------------------------------------------------------- /java/APITest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /java/APITest/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/build.gradle -------------------------------------------------------------------------------- /java/APITest/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /java/APITest/app/src/main/java/com/zello/apitest/APITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/java/com/zello/apitest/APITest.java -------------------------------------------------------------------------------- /java/APITest/app/src/main/java/com/zello/apitest/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/java/com/zello/apitest/MainActivity.java -------------------------------------------------------------------------------- /java/APITest/app/src/main/java/com/zello/apitest/ResultCompletionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/java/com/zello/apitest/ResultCompletionHandler.java -------------------------------------------------------------------------------- /java/APITest/app/src/main/java/com/zello/apitest/ZelloAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/java/com/zello/apitest/ZelloAPI.java -------------------------------------------------------------------------------- /java/APITest/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /java/APITest/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/APITest/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/APITest/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/APITest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/APITest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/APITest/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /java/APITest/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /java/APITest/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /java/APITest/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /java/APITest/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /java/APITest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/APITest/build.gradle -------------------------------------------------------------------------------- /java/ResultCompletionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/ResultCompletionHandler.java -------------------------------------------------------------------------------- /java/ZelloAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/java/ZelloAPI.java -------------------------------------------------------------------------------- /objective-c/APITest/APITest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /objective-c/APITest/APITest/APITest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/APITest.h -------------------------------------------------------------------------------- /objective-c/APITest/APITest/APITest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/APITest.m -------------------------------------------------------------------------------- /objective-c/APITest/APITest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/AppDelegate.h -------------------------------------------------------------------------------- /objective-c/APITest/APITest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/AppDelegate.m -------------------------------------------------------------------------------- /objective-c/APITest/APITest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /objective-c/APITest/APITest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /objective-c/APITest/APITest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /objective-c/APITest/APITest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/Info.plist -------------------------------------------------------------------------------- /objective-c/APITest/APITest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/ViewController.h -------------------------------------------------------------------------------- /objective-c/APITest/APITest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/ViewController.m -------------------------------------------------------------------------------- /objective-c/APITest/APITest/ZelloAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/ZelloAPI.h -------------------------------------------------------------------------------- /objective-c/APITest/APITest/ZelloAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/ZelloAPI.m -------------------------------------------------------------------------------- /objective-c/APITest/APITest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/APITest/APITest/main.m -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example/APITest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example/APITest.h -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example/APITest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example/APITest.m -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example/AppDelegate.h -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example/AppDelegate.m -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example/Info.plist -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example/ViewController.h -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example/ViewController.m -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Example/main.m -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Podfile -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Podfile.lock -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Info.plist -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/ZelloAPIObjC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/ZelloAPIObjC/Info.plist -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/ZelloAPIObjC/ZelloAPIObjC-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/ZelloAPIObjC/ZelloAPIObjC-dummy.m -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/ZelloAPIObjC/ZelloAPIObjC-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/ZelloAPIObjC/ZelloAPIObjC-umbrella.h -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/ZelloAPIObjC/ZelloAPIObjC.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/ZelloAPIObjC/ZelloAPIObjC.modulemap -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/Target Support Files/ZelloAPIObjC/ZelloAPIObjC.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/Target Support Files/ZelloAPIObjC/ZelloAPIObjC.xcconfig -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/ZelloAPIObjC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/ZelloAPIObjC/LICENSE -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/ZelloAPIObjC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/ZelloAPIObjC/README.md -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/ZelloAPIObjC/objective-c/CocoaPod/ZelloAPIObjC/ZelloAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/ZelloAPIObjC/objective-c/CocoaPod/ZelloAPIObjC/ZelloAPI.h -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/ZelloAPIObjC/objective-c/CocoaPod/ZelloAPIObjC/ZelloAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/ZelloAPIObjC/objective-c/CocoaPod/ZelloAPIObjC/ZelloAPI.m -------------------------------------------------------------------------------- /objective-c/CocoaPod/Example/Pods/ZelloAPIObjC/objective-c/CocoaPod/ZelloAPIObjC/ZelloAPIObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/Example/Pods/ZelloAPIObjC/objective-c/CocoaPod/ZelloAPIObjC/ZelloAPIObjC.h -------------------------------------------------------------------------------- /objective-c/CocoaPod/ZelloAPIObjC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/ZelloAPIObjC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /objective-c/CocoaPod/ZelloAPIObjC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/ZelloAPIObjC/Info.plist -------------------------------------------------------------------------------- /objective-c/CocoaPod/ZelloAPIObjC/ZelloAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/ZelloAPIObjC/ZelloAPI.h -------------------------------------------------------------------------------- /objective-c/CocoaPod/ZelloAPIObjC/ZelloAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/ZelloAPIObjC/ZelloAPI.m -------------------------------------------------------------------------------- /objective-c/CocoaPod/ZelloAPIObjC/ZelloAPIObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/CocoaPod/ZelloAPIObjC/ZelloAPIObjC.h -------------------------------------------------------------------------------- /objective-c/ZelloAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/ZelloAPI.h -------------------------------------------------------------------------------- /objective-c/ZelloAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/objective-c/ZelloAPI.m -------------------------------------------------------------------------------- /php/api_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/php/api_test.php -------------------------------------------------------------------------------- /php/zello_server_api.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/php/zello_server_api.class.php -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- 1 | params.json 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/python/main.py -------------------------------------------------------------------------------- /python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/python/utils.py -------------------------------------------------------------------------------- /swift/APITest/APITest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/APITest/APITest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /swift/APITest/APITest/APITest-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/APITest/APITest/APITest-Bridging-Header.h -------------------------------------------------------------------------------- /swift/APITest/APITest/APITest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/APITest/APITest/APITest.swift -------------------------------------------------------------------------------- /swift/APITest/APITest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/APITest/APITest/AppDelegate.swift -------------------------------------------------------------------------------- /swift/APITest/APITest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/APITest/APITest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /swift/APITest/APITest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/APITest/APITest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /swift/APITest/APITest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/APITest/APITest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /swift/APITest/APITest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/APITest/APITest/Info.plist -------------------------------------------------------------------------------- /swift/APITest/APITest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/APITest/APITest/ViewController.swift -------------------------------------------------------------------------------- /swift/APITest/APITest/ZelloAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/APITest/APITest/ZelloAPI.swift -------------------------------------------------------------------------------- /swift/CocoaPod/CommonCrypto/CommonCrypto.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/CommonCrypto/CommonCrypto.xcconfig -------------------------------------------------------------------------------- /swift/CocoaPod/CommonCrypto/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/CommonCrypto/Info.plist -------------------------------------------------------------------------------- /swift/CocoaPod/CommonCrypto/appletvos.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/CommonCrypto/appletvos.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/CommonCrypto/appletvos/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/CommonCrypto/appletvos/module.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/CommonCrypto/appletvsimulator.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/CommonCrypto/appletvsimulator.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/CommonCrypto/appletvsimulator/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/CommonCrypto/appletvsimulator/module.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/CommonCrypto/iphoneos.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/CommonCrypto/iphoneos.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/CommonCrypto/iphoneos/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/CommonCrypto/iphoneos/module.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/CommonCrypto/iphonesimulator.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/CommonCrypto/iphonesimulator.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/CommonCrypto/iphonesimulator/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/CommonCrypto/iphonesimulator/module.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Example/APITest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Example/APITest.swift -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Example/Info.plist -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Podfile -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Podfile.lock -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Info.plist -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/ZelloAPISwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/ZelloAPISwift/Info.plist -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/ZelloAPISwift/ZelloAPISwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/ZelloAPISwift/ZelloAPISwift-dummy.m -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/ZelloAPISwift/ZelloAPISwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/ZelloAPISwift/ZelloAPISwift-umbrella.h -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/ZelloAPISwift/ZelloAPISwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/ZelloAPISwift/ZelloAPISwift.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/Target Support Files/ZelloAPISwift/ZelloAPISwift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/Target Support Files/ZelloAPISwift/ZelloAPISwift.xcconfig -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/LICENSE -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/README.md -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/CommonCrypto.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/CommonCrypto.xcconfig -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/Info.plist -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/appletvos.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/appletvos.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/appletvos/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/appletvos/module.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/appletvsimulator.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/appletvsimulator.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/appletvsimulator/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/appletvsimulator/module.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/iphoneos.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/iphoneos.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/iphoneos/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/iphoneos/module.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/iphonesimulator.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/iphonesimulator.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/iphonesimulator/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/CommonCrypto/iphonesimulator/module.modulemap -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/ZelloAPISwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/ZelloAPISwift/Info.plist -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/ZelloAPISwift/ZelloAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/ZelloAPISwift/ZelloAPI.swift -------------------------------------------------------------------------------- /swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/ZelloAPISwift/ZelloAPISwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/Example/Pods/ZelloAPISwift/swift/CocoaPod/ZelloAPISwift/ZelloAPISwift.h -------------------------------------------------------------------------------- /swift/CocoaPod/ZelloAPISwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/ZelloAPISwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /swift/CocoaPod/ZelloAPISwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/ZelloAPISwift/Info.plist -------------------------------------------------------------------------------- /swift/CocoaPod/ZelloAPISwift/ZelloAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/ZelloAPISwift/ZelloAPI.swift -------------------------------------------------------------------------------- /swift/CocoaPod/ZelloAPISwift/ZelloAPISwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/CocoaPod/ZelloAPISwift/ZelloAPISwift.h -------------------------------------------------------------------------------- /swift/ZelloAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelloptt/zellowork-server-api-libs/HEAD/swift/ZelloAPI.swift --------------------------------------------------------------------------------