├── .gitattributes ├── EdgeCore ├── 5.0.0 │ └── EdgeCore.podspec ├── 5.0.1 │ └── EdgeCore.podspec ├── 5.1.0 │ └── EdgeCore.podspec ├── 5.2.0 │ └── EdgeCore.podspec ├── 5.3.0 │ └── EdgeCore.podspec ├── 5.3.1 │ └── EdgeCore.podspec ├── 5.3.2 │ └── EdgeCore.podspec ├── 5.3.3 │ └── EdgeCore.podspec ├── 5.4.0 │ └── EdgeCore.podspec ├── 5.5.0 │ └── EdgeCore.podspec ├── 5.5.1 │ └── EdgeCore.podspec ├── 5.6.0 │ └── EdgeCore.podspec ├── 5.6.1 │ └── EdgeCore.podspec ├── 5.6.2 │ └── EdgeCore.podspec ├── 5.6.3 │ └── EdgeCore.podspec ├── 5.7.0 │ └── EdgeCore.podspec ├── 5.9.2 │ └── EdgeCore.podspec ├── 5.9.3 │ └── EdgeCore.podspec ├── 5.8.1 │ └── EdgeCore.podspec ├── 5.8.2 │ └── EdgeCore.podspec ├── 5.8.3 │ └── EdgeCore.podspec ├── 5.8.4 │ └── EdgeCore.podspec ├── 5.9.0 │ └── EdgeCore.podspec ├── 5.8.0 │ └── EdgeCore.podspec ├── 5.10.0 │ └── EdgeCore.podspec └── 5.10.1 │ └── EdgeCore.podspec ├── mim-OE-SE-iOS ├── 5.9.3 │ └── mim-OE-SE-iOS.podspec ├── 5.8.0 │ └── mim-OE-SE-iOS.podspec ├── 5.8.2 │ └── mim-OE-SE-iOS.podspec ├── 5.8.3 │ └── mim-OE-SE-iOS.podspec ├── 5.10.0 │ └── mim-OE-SE-iOS.podspec └── 5.9.0 │ └── mim-OE-SE-iOS.podspec ├── mim-OE-ai-SE-iOS ├── 5.9.3 │ └── mim-OE-ai-SE-iOS.podspec ├── 5.8.0 │ └── mim-OE-ai-SE-iOS.podspec ├── 5.8.2 │ └── mim-OE-ai-SE-iOS.podspec ├── 5.8.3 │ └── mim-OE-ai-SE-iOS.podspec ├── 5.10.0 │ └── mim-OE-ai-SE-iOS.podspec └── 5.9.0 │ └── mim-OE-ai-SE-iOS.podspec ├── mim-OE-SE-iOS-developer ├── 5.9.3 │ └── mim-OE-SE-iOS-developer.podspec ├── 5.8.0 │ └── mim-OE-SE-iOS-developer.podspec ├── 5.8.2 │ └── mim-OE-SE-iOS-developer.podspec ├── 5.8.3 │ └── mim-OE-SE-iOS-developer.podspec ├── 5.10.0 │ └── mim-OE-SE-iOS-developer.podspec └── 5.9.0 │ └── mim-OE-SE-iOS-developer.podspec ├── mim-OE-ai-SE-iOS-developer ├── 5.9.3 │ └── mim-OE-ai-SE-iOS-developer.podspec ├── 5.8.0 │ └── mim-OE-ai-SE-iOS-developer.podspec ├── 5.8.2 │ └── mim-OE-ai-SE-iOS-developer.podspec ├── 5.8.3 │ └── mim-OE-ai-SE-iOS-developer.podspec ├── 5.10.0 │ └── mim-OE-ai-SE-iOS-developer.podspec └── 5.9.0 │ └── mim-OE-ai-SE-iOS-developer.podspec ├── EdgeService ├── 5.6.1 │ └── EdgeService.podspec ├── 5.7.0 │ └── EdgeService.podspec ├── 5.8.0 │ └── EdgeService.podspec └── 5.9.3 │ └── EdgeService.podspec └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-vendored 2 | *.swift linguist-vendored=false 3 | -------------------------------------------------------------------------------- /EdgeCore/5.0.0/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.0.0" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.8.0' 29 | s.dependency 'SwiftyJSON', '~> 5.0.1' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.6.2' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.0.1/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.0.1" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.8.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.1' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.6.2' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.1.0/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.1.0" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.8.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.1' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.6.2' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.2.0/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.2.0" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.8.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.1' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.6.2' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.3.0/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.3.0" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.8.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.1' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.6.2' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.3.1/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.3.1" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.8.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.1' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.6.2' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.3.2/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.3.2" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.8.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.1' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.6.2' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.3.3/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.3.3" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.8.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.2' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.6.2' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.4.0/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.4.0" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.9.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.2' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.7.5' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.5.0/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.5.0" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.9.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.2' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.7.5' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.5.1/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.5.1" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.9.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.2' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.7.5' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.6.0/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.6.0" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.9.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.2' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.7.5' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.6.1/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.6.1" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.9.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.2' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.7.5' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.6.2/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.6.2" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.9.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.2' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.7.5' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.6.3/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.6.3" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.9.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.2' 30 | s.dependency 'JWTDecode', '~> 3.1.0' 31 | s.dependency 'AppAuth', '~> 1.7.5' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /EdgeCore/5.7.0/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.7.0" 13 | s.summary = "mimik edge core client library" 14 | 15 | s.description = <<-DESC 16 | EdgeCore cocoapod is a Cocopods.org distributed framework that provides APIs to help you interact with mimik core services. For the edgeEngine framework and its APIs see EdgeEngine. 17 | DESC 18 | 19 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 20 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 21 | 22 | s.author = { "mimik" => "apps@mimik.com" } 23 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 24 | s.swift_versions = '5.0' 25 | 26 | s.vendored_frameworks = "EdgeCore.xcframework" 27 | 28 | s.dependency 'Alamofire', '~> 5.10.1' 29 | s.dependency 'SwiftyJSON', '~> 5.0.2' 30 | s.dependency 'JWTDecode', '~> 3.2.0' 31 | s.dependency 'AppAuth', '~> 1.7.5' 32 | 33 | s.platform = 'ios', '15.0' 34 | end 35 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS/5.9.3/mim-OE-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS" 12 | s.version = "5.9.3" 13 | s.summary = "mimik Client Library (mim OE, Enterprise license)" 14 | 15 | s.description = <<-DESC 16 | The **mimik Client Library** is a unified SDK that embeds and manages **mimik OE** — a lightweight mimik operating environment enabling developers to build, deploy, and orchestrate microservices and AI-powered workflows across hybrid edge-cloud systems. 17 | 18 | It abstracts away the complexities of: 19 | - OAuth2 / JWT-based authentication 20 | - Edge node discovery and orchestration 21 | - Lifecycle and configuration management for microservices 22 | - AI model integration, streaming prompts, and unified outputs. 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 33 | 34 | s.dependency 'EdgeCore', '~> 5.9.3' 35 | 36 | s.platform = 'ios', '16.0' 37 | end 38 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS/5.9.3/mim-OE-ai-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS" 12 | s.version = "5.9.3" 13 | s.summary = "mimik Client Library (mim OE, Enterprise license, with AI support)" 14 | 15 | s.description = <<-DESC 16 | The **mimik Client Library** is a unified SDK that embeds and manages **mimik OE** — a lightweight mimik operating environment enabling developers to build, deploy, and orchestrate microservices and AI-powered workflows across hybrid edge-cloud systems. 17 | 18 | It abstracts away the complexities of: 19 | - OAuth2 / JWT-based authentication 20 | - Edge node discovery and orchestration 21 | - Lifecycle and configuration management for microservices 22 | - AI model integration, streaming prompts, and unified outputs. 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 33 | 34 | s.dependency 'EdgeCore', '~> 5.9.3' 35 | 36 | s.platform = 'ios', '16.0' 37 | end 38 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS-developer/5.9.3/mim-OE-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS-developer" 12 | s.version = "5.9.3" 13 | s.summary = "mimik Client Library (mim OE, Developer license)" 14 | 15 | s.description = <<-DESC 16 | The **mimik Client Library** is a unified SDK that embeds and manages **mimik OE** — a lightweight mimik operating environment enabling developers to build, deploy, and orchestrate microservices and AI-powered workflows across hybrid edge-cloud systems. 17 | 18 | It abstracts away the complexities of: 19 | - OAuth2 / JWT-based authentication 20 | - Edge node discovery and orchestration 21 | - Lifecycle and configuration management for microservices 22 | - AI model integration, streaming prompts, and unified outputs. 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 33 | 34 | s.dependency 'EdgeCore', '~> 5.9.3' 35 | 36 | s.platform = 'ios', '16.0' 37 | end 38 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS-developer/5.9.3/mim-OE-ai-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS-developer" 12 | s.version = "5.9.3" 13 | s.summary = "mimik Client Library (mim OE, Developer license, with AI support)" 14 | 15 | s.description = <<-DESC 16 | The **mimik Client Library** is a unified SDK that embeds and manages **mimik OE** — a lightweight mimik operating environment enabling developers to build, deploy, and orchestrate microservices and AI-powered workflows across hybrid edge-cloud systems. 17 | 18 | It abstracts away the complexities of: 19 | - OAuth2 / JWT-based authentication 20 | - Edge node discovery and orchestration 21 | - Lifecycle and configuration management for microservices 22 | - AI model integration, streaming prompts, and unified outputs. 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 33 | 34 | s.dependency 'EdgeCore', '~> 5.9.3' 35 | 36 | s.platform = 'ios', '16.0' 37 | end 38 | -------------------------------------------------------------------------------- /EdgeService/5.6.1/EdgeService.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeService.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeService" 12 | s.version = "5.6.1" 13 | s.summary = "mimik service client library" 14 | 15 | s.description = <<-DESC 16 | The purpose of the mimik Client Library for iOS is to provide a programmatic way to work with the edgeEngine Runtime to access information about the mobile device on which the application is running, as well as mobile devices running within a cluster of mobile devices that are hosting the edgeEngine Runtime. Also, to allow developers to use edge microservices running within a particular cluster. 17 | 18 | The mimik Client Library for iOS suite consists of three individual cocoapod components: 19 | - EdgeCore 20 | - EdgeEngine (or EdgeEngineDeveloper) 21 | - EdgeService 22 | DESC 23 | 24 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeService" 25 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 26 | 27 | s.author = { "mimik" => "apps@mimik.com" } 28 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeService.git", :tag => "#{s.version}" } 29 | s.swift_versions = '5.0' 30 | 31 | s.vendored_frameworks = "EdgeService.xcframework" 32 | 33 | s.dependency 'EdgeCore', '~> 5.6.1' 34 | s.dependency 'Alamofire', '~> 5.9.1' 35 | s.dependency 'SwiftyJSON', '~> 5.0.2' 36 | 37 | s.platform = 'ios', '15.0' 38 | end 39 | -------------------------------------------------------------------------------- /EdgeService/5.7.0/EdgeService.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeService.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeService" 12 | s.version = "5.7.0" 13 | s.summary = "mimik service client library" 14 | 15 | s.description = <<-DESC 16 | The purpose of the mimik Client Library for iOS is to provide a programmatic way to work with the edgeEngine Runtime to access information about the mobile device on which the application is running, as well as mobile devices running within a cluster of mobile devices that are hosting the edgeEngine Runtime. Also, to allow developers to use edge microservices running within a particular cluster. 17 | 18 | The mimik Client Library for iOS suite consists of three individual cocoapod components: 19 | - EdgeCore 20 | - EdgeEngine (or EdgeEngineDeveloper) 21 | - EdgeService 22 | DESC 23 | 24 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeService" 25 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 26 | 27 | s.author = { "mimik" => "apps@mimik.com" } 28 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeService.git", :tag => "#{s.version}" } 29 | s.swift_versions = '5.0' 30 | 31 | s.vendored_frameworks = "EdgeService.xcframework" 32 | 33 | s.dependency 'EdgeCore', '~> 5.7.0' 34 | s.dependency 'Alamofire', '~> 5.10.1' 35 | s.dependency 'SwiftyJSON', '~> 5.0.2' 36 | 37 | s.platform = 'ios', '15.0' 38 | end 39 | -------------------------------------------------------------------------------- /EdgeCore/5.9.2/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.9.2" 13 | s.summary = "mimik Client Library (Core)" 14 | 15 | s.description = <<-DESC 16 | The **mimik Client Library** is a unified SDK that embeds and manages **mimik OE** — a lightweight mimik operating environment enabling developers to build, deploy, and orchestrate microservices and AI-powered workflows across hybrid edge-cloud systems. 17 | 18 | It abstracts away the complexities of: 19 | - OAuth2 / JWT-based authentication 20 | - Edge node discovery and orchestration 21 | - Lifecycle and configuration management for microservices 22 | - AI model integration, streaming prompts, and unified outputs. 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeCore.xcframework" 33 | 34 | s.dependency 'Alamofire', '~> 5.10.2' 35 | s.dependency 'SwiftyJSON', '~> 5.0.2' 36 | s.dependency 'JWTDecode', '~> 3.3.0' 37 | s.dependency 'AppAuth', '~> 1.7.6' 38 | 39 | s.platform = 'ios', '16.0' 40 | 41 | s.xcconfig = {'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',} 42 | end 43 | -------------------------------------------------------------------------------- /EdgeCore/5.9.3/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.9.3" 13 | s.summary = "mimik Client Library (Core)" 14 | 15 | s.description = <<-DESC 16 | The **mimik Client Library** is a unified SDK that embeds and manages **mimik OE** — a lightweight mimik operating environment enabling developers to build, deploy, and orchestrate microservices and AI-powered workflows across hybrid edge-cloud systems. 17 | 18 | It abstracts away the complexities of: 19 | - OAuth2 / JWT-based authentication 20 | - Edge node discovery and orchestration 21 | - Lifecycle and configuration management for microservices 22 | - AI model integration, streaming prompts, and unified outputs. 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeCore.xcframework" 33 | 34 | s.dependency 'Alamofire', '~> 5.10.2' 35 | s.dependency 'SwiftyJSON', '~> 5.0.2' 36 | s.dependency 'JWTDecode', '~> 3.3.0' 37 | s.dependency 'AppAuth', '~> 1.7.6' 38 | 39 | s.platform = 'ios', '16.0' 40 | 41 | s.xcconfig = {'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',} 42 | end 43 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS/5.8.0/mim-OE-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS" 12 | s.version = "5.8.0" 13 | s.summary = "mimik Client Library (Enterprise)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-SE-iOS 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.0' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS/5.8.2/mim-OE-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS" 12 | s.version = "5.8.2" 13 | s.summary = "mimik Client Library (Enterprise)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-SE-iOS 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.2' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS/5.8.3/mim-OE-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS" 12 | s.version = "5.8.3" 13 | s.summary = "mimik Client Library (Enterprise)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-SE-iOS 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.3' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS/5.8.0/mim-OE-ai-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS" 12 | s.version = "5.8.0" 13 | s.summary = "mimik Client Library (AI, Enterprise)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.0' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS/5.8.2/mim-OE-ai-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS" 12 | s.version = "5.8.2" 13 | s.summary = "mimik Client Library (AI, Enterprise)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.2' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS/5.8.3/mim-OE-ai-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS" 12 | s.version = "5.8.3" 13 | s.summary = "mimik Client Library (AI, Enterprise)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.3' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS-developer/5.8.0/mim-OE-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS-developer" 12 | s.version = "5.8.0" 13 | s.summary = "mimik Client Library (Developer)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.0' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS-developer/5.8.2/mim-OE-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS-developer" 12 | s.version = "5.8.2" 13 | s.summary = "mimik Client Library (Developer)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.2' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS-developer/5.8.3/mim-OE-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS-developer" 12 | s.version = "5.8.3" 13 | s.summary = "mimik Client Library (Developer)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.3' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /EdgeService/5.8.0/EdgeService.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeService.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeService" 12 | s.version = "5.8.0" 13 | s.summary = "mimik Client Library (Service)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeService" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeService.git", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeService.xcframework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.0' 37 | s.dependency 'Alamofire', '~> 5.10.1' 38 | s.dependency 'SwiftyJSON', '~> 5.0.2' 39 | 40 | s.platform = 'ios', '16.0' 41 | end 42 | -------------------------------------------------------------------------------- /EdgeService/5.9.3/EdgeService.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeService.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeService" 12 | s.version = "5.9.3" 13 | s.summary = "mimik Client Library (Service)" 14 | 15 | s.description = <<-DESC 16 | One-stop, static API entry point for integrating with both microservices that run on the `mim OE` runtime (`Runtime`) and backend microservices (`Backend`) that run in the traditional cloud. 17 | 18 | `ClientGatewayAccess` organizes APIs into two categories: 19 | 20 | - **`Runtime`** — microservices that **run on the `mim OE` runtime**. 21 | These can run locally on devices *or* on cloud instances (e.g., AWS/GCP VMs) that host the runtime and act like runtime-enabled nodes. 22 | - **`Backend`** — **traditional backend microservices** that run in the cloud. 23 | These **do not** use the `mim OE` runtime. 24 | 25 | This API is used by the *mimik Access* app and is available for integration in third-party applications. 26 | DESC 27 | 28 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeService" 29 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 30 | 31 | s.author = { "mimik" => "apps@mimik.com" } 32 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeService.git", :tag => "#{s.version}" } 33 | s.swift_versions = '5.0' 34 | 35 | s.vendored_frameworks = "EdgeService.xcframework" 36 | 37 | s.dependency 'EdgeCore', '~> 5.9.3' 38 | s.dependency 'Alamofire', '~> 5.10.1' 39 | s.dependency 'SwiftyJSON', '~> 5.0.2' 40 | 41 | s.platform = 'ios', '16.0' 42 | end 43 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS-developer/5.8.0/mim-OE-ai-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS-developer" 12 | s.version = "5.8.0" 13 | s.summary = "mimik Client Library (AI, Developer)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.0' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS-developer/5.8.2/mim-OE-ai-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS-developer" 12 | s.version = "5.8.2" 13 | s.summary = "mimik Client Library (AI, Developer)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.2' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS-developer/5.8.3/mim-OE-ai-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS-developer" 12 | s.version = "5.8.3" 13 | s.summary = "mimik Client Library (AI, Developer)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 35 | 36 | s.dependency 'EdgeCore', '~> 5.8.3' 37 | 38 | s.platform = 'ios', '16.0' 39 | end 40 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS/5.10.0/mim-OE-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS" 12 | s.version = "5.10.0" 13 | s.summary = "SDK for embedding mim OE runtime (Full license, no AI support)" 14 | 15 | s.description = <<-DESC 16 | The mimik Client Library is a unified SDK that lets developers embed and manage mim OE while also providing higher-level services for building hybrid edge–cloud applications. It includes APIs for: 17 | - OE runtime control: initialize, configure, and monitor the mim OE runtime 18 | - Authentication: OAuth2/JWT flows, developer console login/signup, token exchange, and session management 19 | - Edge node discovery & orchestration: auto-discovery, routing, and service registration across clusters 20 | - Microservice lifecycle management: deploy, scale, update, and remove services dynamically 21 | - AI integration: unified interface to query device, edge, and cloud models, with streaming prompts and standardized outputs 22 | - Developer Console integration: prebuilt authentication views, application APIs, and ID token handling 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 33 | 34 | s.dependency 'EdgeCore', '~> 5.10.0' 35 | 36 | s.platform = 'ios', '16.0' 37 | end 38 | -------------------------------------------------------------------------------- /EdgeCore/5.8.1/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.8.1" 13 | s.summary = "mimik Client Library (Core)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeCore.xcframework" 35 | 36 | s.dependency 'Alamofire', '~> 5.10.2' 37 | s.dependency 'SwiftyJSON', '~> 5.0.2' 38 | s.dependency 'JWTDecode', '~> 3.2.0' 39 | s.dependency 'AppAuth', '~> 1.7.6' 40 | 41 | s.platform = 'ios', '16.0' 42 | 43 | s.xcconfig = {'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',} 44 | end 45 | -------------------------------------------------------------------------------- /EdgeCore/5.8.2/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.8.2" 13 | s.summary = "mimik Client Library (Core)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeCore.xcframework" 35 | 36 | s.dependency 'Alamofire', '~> 5.10.2' 37 | s.dependency 'SwiftyJSON', '~> 5.0.2' 38 | s.dependency 'JWTDecode', '~> 3.2.0' 39 | s.dependency 'AppAuth', '~> 1.7.6' 40 | 41 | s.platform = 'ios', '16.0' 42 | 43 | s.xcconfig = {'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',} 44 | end 45 | -------------------------------------------------------------------------------- /EdgeCore/5.8.3/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.8.3" 13 | s.summary = "mimik Client Library (Core)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeCore.xcframework" 35 | 36 | s.dependency 'Alamofire', '~> 5.10.2' 37 | s.dependency 'SwiftyJSON', '~> 5.0.2' 38 | s.dependency 'JWTDecode', '~> 3.2.0' 39 | s.dependency 'AppAuth', '~> 1.7.6' 40 | 41 | s.platform = 'ios', '16.0' 42 | 43 | s.xcconfig = {'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',} 44 | end 45 | -------------------------------------------------------------------------------- /EdgeCore/5.8.4/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.8.4" 13 | s.summary = "mimik Client Library (Core)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeCore.xcframework" 35 | 36 | s.dependency 'Alamofire', '~> 5.10.2' 37 | s.dependency 'SwiftyJSON', '~> 5.0.2' 38 | s.dependency 'JWTDecode', '~> 3.2.0' 39 | s.dependency 'AppAuth', '~> 1.7.6' 40 | 41 | s.platform = 'ios', '16.0' 42 | 43 | s.xcconfig = {'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',} 44 | end 45 | -------------------------------------------------------------------------------- /EdgeCore/5.9.0/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.9.0" 13 | s.summary = "mimik Client Library (Core)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS-developer 21 | - EdgeCore 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeCore.xcframework" 35 | 36 | s.dependency 'Alamofire', '~> 5.10.2' 37 | s.dependency 'SwiftyJSON', '~> 5.0.2' 38 | s.dependency 'JWTDecode', '~> 3.3.0' 39 | s.dependency 'AppAuth', '~> 1.7.6' 40 | 41 | s.platform = 'ios', '16.0' 42 | 43 | s.xcconfig = {'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',} 44 | end 45 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS/5.10.0/mim-OE-ai-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS" 12 | s.version = "5.10.0" 13 | s.summary = "SDK for embedding mim OE runtime (Full license, with AI support)" 14 | 15 | s.description = <<-DESC 16 | The mimik Client Library is a unified SDK that lets developers embed and manage mim OE while also providing higher-level services for building hybrid edge–cloud applications. It includes APIs for: 17 | - OE runtime control: initialize, configure, and monitor the mim OE runtime 18 | - Authentication: OAuth2/JWT flows, developer console login/signup, token exchange, and session management 19 | - Edge node discovery & orchestration: auto-discovery, routing, and service registration across clusters 20 | - Microservice lifecycle management: deploy, scale, update, and remove services dynamically 21 | - AI integration: unified interface to query device, edge, and cloud models, with streaming prompts and standardized outputs 22 | - Developer Console integration: prebuilt authentication views, application APIs, and ID token handling 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 33 | 34 | s.dependency 'EdgeCore', '~> 5.10.0' 35 | 36 | s.platform = 'ios', '16.0' 37 | end 38 | -------------------------------------------------------------------------------- /EdgeCore/5.8.0/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.8.0" 13 | s.summary = "mimik Client Library (Core)" 14 | 15 | s.description = <<-DESC 16 | mimik Client Library provides a programmatic interface for working with the mim OE Runtime (formerly known as edgeEngine), accessing information about mobile device clusters, using on-device lightweight RESTful API microservices, and optionally integrating with mimik ai components. 17 | 18 | Please note the following mimik Client Library client library cocoapods: 19 | 20 | - mim-OE-ai-SE-iOS-developer (required) 21 | - EdgeCore (required) 22 | - EdgeService (optional) 23 | 24 | These components provide various APIs that help developers with core operations, such as setting up the mim OE Runtime (formerly known as edgeEngine), authenticating developers, deploying edge microservices, and optionally integrating with mimik ai. 25 | DESC 26 | 27 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 28 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 29 | 30 | s.author = { "mimik" => "apps@mimik.com" } 31 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 32 | s.swift_versions = '5.0' 33 | 34 | s.vendored_frameworks = "EdgeCore.xcframework" 35 | 36 | s.dependency 'Alamofire', '~> 5.10.1' 37 | s.dependency 'SwiftyJSON', '~> 5.0.2' 38 | s.dependency 'JWTDecode', '~> 3.2.0' 39 | s.dependency 'AppAuth', '~> 1.7.5' 40 | 41 | s.platform = 'ios', '16.0' 42 | 43 | s.xcconfig = {'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',} 44 | end 45 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS-developer/5.10.0/mim-OE-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS-developer" 12 | s.version = "5.10.0" 13 | s.summary = "SDK for embedding mim OE runtime (Developer license, no AI support)" 14 | 15 | s.description = <<-DESC 16 | The mimik Client Library is a unified SDK that lets developers embed and manage mim OE while also providing higher-level services for building hybrid edge–cloud applications. It includes APIs for: 17 | - OE runtime control: initialize, configure, and monitor the mim OE runtime 18 | - Authentication: OAuth2/JWT flows, developer console login/signup, token exchange, and session management 19 | - Edge node discovery & orchestration: auto-discovery, routing, and service registration across clusters 20 | - Microservice lifecycle management: deploy, scale, update, and remove services dynamically 21 | - AI integration: unified interface to query device, edge, and cloud models, with streaming prompts and standardized outputs 22 | - Developer Console integration: prebuilt authentication views, application APIs, and ID token handling 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 33 | 34 | s.dependency 'EdgeCore', '~> 5.10.0' 35 | 36 | s.platform = 'ios', '16.0' 37 | end 38 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS-developer/5.10.0/mim-OE-ai-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS-developer" 12 | s.version = "5.10.0" 13 | s.summary = "SDK for embedding mim OE runtime (Developer license, with AI support)" 14 | 15 | s.description = <<-DESC 16 | The mimik Client Library is a unified SDK that lets developers embed and manage mim OE while also providing higher-level services for building hybrid edge–cloud applications. It includes APIs for: 17 | - OE runtime control: initialize, configure, and monitor the mim OE runtime 18 | - Authentication: OAuth2/JWT flows, developer console login/signup, token exchange, and session management 19 | - Edge node discovery & orchestration: auto-discovery, routing, and service registration across clusters 20 | - Microservice lifecycle management: deploy, scale, update, and remove services dynamically 21 | - AI integration: unified interface to query device, edge, and cloud models, with streaming prompts and standardized outputs 22 | - Developer Console integration: prebuilt authentication views, application APIs, and ID token handling 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 33 | 34 | s.dependency 'EdgeCore', '~> 5.10.0' 35 | 36 | s.platform = 'ios', '16.0' 37 | end 38 | -------------------------------------------------------------------------------- /EdgeCore/5.10.0/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.10.0" 13 | s.summary = "SDK for embedding mim OE with APIs for auth, device discovery, microservice management, AI models, and Dev Console." 14 | 15 | s.description = <<-DESC 16 | The mimik Client Library is a unified SDK that lets developers embed and manage mim OE while also providing higher-level services for building hybrid edge–cloud applications. It includes APIs for: 17 | - OE runtime control: initialize, configure, and monitor the mim OE runtime 18 | - Authentication: OAuth2/JWT flows, developer console login/signup, token exchange, and session management 19 | - Edge node discovery & orchestration: auto-discovery, routing, and service registration across clusters 20 | - Microservice lifecycle management: deploy, scale, update, and remove services dynamically 21 | - AI integration: unified interface to query device, edge, and cloud models, with streaming prompts and standardized outputs 22 | - Developer Console integration: prebuilt authentication views, application APIs, and ID token handling 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeCore.xcframework" 33 | 34 | s.dependency 'Alamofire', '~> 5.10.2' 35 | s.dependency 'SwiftyJSON', '~> 5.0.2' 36 | s.dependency 'JWTDecode', '~> 3.3.0' 37 | s.dependency 'AppAuth', '~> 1.7.6' 38 | 39 | s.platform = 'ios', '16.0' 40 | 41 | s.xcconfig = {'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',} 42 | end 43 | -------------------------------------------------------------------------------- /EdgeCore/5.10.1/EdgeCore.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EdgeCore.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "EdgeCore" 12 | s.version = "5.10.1" 13 | s.summary = "SDK for embedding mim OE with APIs for auth, device discovery, microservice management, AI models, and Dev Console." 14 | 15 | s.description = <<-DESC 16 | The mimik Client Library is a unified SDK that lets developers embed and manage mim OE while also providing higher-level services for building hybrid edge–cloud applications. It includes APIs for: 17 | - OE runtime control: initialize, configure, and monitor the mim OE runtime 18 | - Authentication: OAuth2/JWT flows, developer console login/signup, token exchange, and session management 19 | - Edge node discovery & orchestration: auto-discovery, routing, and service registration across clusters 20 | - Microservice lifecycle management: deploy, scale, update, and remove services dynamically 21 | - AI integration: unified interface to query device, edge, and cloud models, with streaming prompts and standardized outputs 22 | - Developer Console integration: prebuilt authentication views, application APIs, and ID token handling 23 | DESC 24 | 25 | s.homepage = "https://github.com/mimikgit/cocoapod-EdgeCore" 26 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 27 | 28 | s.author = { "mimik" => "apps@mimik.com" } 29 | s.source = { :git => "https://github.com/mimikgit/cocoapod-EdgeCore.git", :tag => "#{s.version}" } 30 | s.swift_versions = '5.0' 31 | 32 | s.vendored_frameworks = "EdgeCore.xcframework" 33 | 34 | s.dependency 'Alamofire', '~> 5.10.2' 35 | s.dependency 'SwiftyJSON', '~> 5.0.2' 36 | s.dependency 'JWTDecode', '~> 3.3.0' 37 | s.dependency 'AppAuth', '~> 1.7.6' 38 | 39 | s.platform = 'ios', '16.0' 40 | 41 | s.xcconfig = {'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',} 42 | end 43 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS/5.9.0/mim-OE-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS" 12 | s.version = "5.9.0" 13 | s.summary = "mimik Client Library (mim OE, Enterprise license)" 14 | 15 | s.description = <<-DESC 16 | The mimik Client Library provides a low-level, programmatic interface for interacting with the mim OE Runtime (formerly known as the edge engine). 17 | 18 | Quick Start: 19 | 20 | - Onboarding Tutorial 21 | Step-by-step setup and usage guide: 22 | https://devdocs.mimik.com/tutorials/01-submenu/02-submenu/02-index 23 | 24 | - API Documentation 25 | Complete reference for available classes, methods, and usage patterns: 26 | https://mimikgit.github.io/cocoapod-EdgeCore/documentation/edgecore/edgecore 27 | 28 | Features: 29 | 30 | The library exposes functionality to: 31 | 32 | - Initialize and configure the mim OE Runtime, including local runtime setup, configuration loading, and lifecycle management 33 | - Discover and interact with nodes in a Hybrid Edge Cloud cluster using built-in discovery and service registration APIs 34 | - Deploy and manage RESTful microservices on the edge cloud node using a lightweight container abstraction 35 | - Authenticate and authorize developers and services using token-based flows (OAuth2, JWT) 36 | - (Optional) Integrate with on-device AI runtimes, allowing local invocation of Vision and Language models without requiring cloud access 37 | 38 | Runtime Characteristics: 39 | 40 | - Written for resource-constrained environments 41 | - Supports offline-first and peer-to-peer communication paradigms 42 | - Built for decentralized orchestration across edge cloud nodes in distributed environments 43 | 44 | Use Case Examples: 45 | 46 | - Register and expose a microservice on a local node 47 | - Query cluster topology and fetch metadata from peer nodes 48 | - Secure communication between services using tokens 49 | - (Optional) Launch a local AI model for image or text inference 50 | 51 | This library is intended for developers building distributed edge cloud native apps where network reliability, low-latency processing, and on-device compute are critical. 52 | DESC 53 | 54 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS" 55 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 56 | 57 | s.author = { "mimik" => "apps@mimik.com" } 58 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS", :tag => "#{s.version}" } 59 | s.swift_versions = '5.0' 60 | 61 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 62 | 63 | s.dependency 'EdgeCore', '~> 5.9.0' 64 | 65 | s.platform = 'ios', '16.0' 66 | end 67 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS/5.9.0/mim-OE-ai-SE-iOS.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS" 12 | s.version = "5.9.0" 13 | s.summary = "mimik Client Library (mim OE, Enterprise license, with AI support)" 14 | 15 | s.description = <<-DESC 16 | The mimik Client Library provides a low-level, programmatic interface for interacting with the mim OE Runtime (formerly known as the edge engine). 17 | 18 | Quick Start: 19 | 20 | - Onboarding Tutorial 21 | Step-by-step setup and usage guide: 22 | https://devdocs.mimik.com/tutorials/01-submenu/02-submenu/02-index 23 | 24 | - API Documentation 25 | Complete reference for available classes, methods, and usage patterns: 26 | https://mimikgit.github.io/cocoapod-EdgeCore/documentation/edgecore/edgecore 27 | 28 | Features: 29 | 30 | The library exposes functionality to: 31 | 32 | - Initialize and configure the mim OE Runtime, including local runtime setup, configuration loading, and lifecycle management 33 | - Discover and interact with nodes in a Hybrid Edge Cloud cluster using built-in discovery and service registration APIs 34 | - Deploy and manage RESTful microservices on the edge cloud node using a lightweight container abstraction 35 | - Authenticate and authorize developers and services using token-based flows (OAuth2, JWT) 36 | - (Optional) Integrate with on-device AI runtimes, allowing local invocation of Vision and Language models without requiring cloud access 37 | 38 | Runtime Characteristics: 39 | 40 | - Written for resource-constrained environments 41 | - Supports offline-first and peer-to-peer communication paradigms 42 | - Built for decentralized orchestration across edge cloud nodes in distributed environments 43 | 44 | Use Case Examples: 45 | 46 | - Register and expose a microservice on a local node 47 | - Query cluster topology and fetch metadata from peer nodes 48 | - Secure communication between services using tokens 49 | - (Optional) Launch a local AI model for image or text inference 50 | 51 | This library is intended for developers building distributed edge cloud native apps where network reliability, low-latency processing, and on-device compute are critical. 52 | DESC 53 | 54 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS" 55 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 56 | 57 | s.author = { "mimik" => "apps@mimik.com" } 58 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS", :tag => "#{s.version}" } 59 | s.swift_versions = '5.0' 60 | 61 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 62 | 63 | s.dependency 'EdgeCore', '~> 5.9.0' 64 | 65 | s.platform = 'ios', '16.0' 66 | end 67 | -------------------------------------------------------------------------------- /mim-OE-SE-iOS-developer/5.9.0/mim-OE-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-SE-iOS-developer" 12 | s.version = "5.9.0" 13 | s.summary = "mimik Client Library (mim OE, Developer license)" 14 | 15 | s.description = <<-DESC 16 | The mimik Client Library provides a low-level, programmatic interface for interacting with the mim OE Runtime (formerly known as the edge engine). 17 | 18 | Quick Start: 19 | 20 | - Onboarding Tutorial 21 | Step-by-step setup and usage guide: 22 | https://devdocs.mimik.com/tutorials/01-submenu/02-submenu/02-index 23 | 24 | - API Documentation 25 | Complete reference for available classes, methods, and usage patterns: 26 | https://mimikgit.github.io/cocoapod-EdgeCore/documentation/edgecore/edgecore 27 | 28 | Features: 29 | 30 | The library exposes functionality to: 31 | 32 | - Initialize and configure the mim OE Runtime, including local runtime setup, configuration loading, and lifecycle management 33 | - Discover and interact with nodes in a Hybrid Edge Cloud cluster using built-in discovery and service registration APIs 34 | - Deploy and manage RESTful microservices on the edge cloud node using a lightweight container abstraction 35 | - Authenticate and authorize developers and services using token-based flows (OAuth2, JWT) 36 | - (Optional) Integrate with on-device AI runtimes, allowing local invocation of Vision and Language models without requiring cloud access 37 | 38 | Runtime Characteristics: 39 | 40 | - Written for resource-constrained environments 41 | - Supports offline-first and peer-to-peer communication paradigms 42 | - Built for decentralized orchestration across edge cloud nodes in distributed environments 43 | 44 | Use Case Examples: 45 | 46 | - Register and expose a microservice on a local node 47 | - Query cluster topology and fetch metadata from peer nodes 48 | - Secure communication between services using tokens 49 | - (Optional) Launch a local AI model for image or text inference 50 | 51 | This library is intended for developers building distributed edge cloud native apps where network reliability, low-latency processing, and on-device compute are critical. 52 | DESC 53 | 54 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer" 55 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 56 | 57 | s.author = { "mimik" => "apps@mimik.com" } 58 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer", :tag => "#{s.version}" } 59 | s.swift_versions = '5.0' 60 | 61 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 62 | 63 | s.dependency 'EdgeCore', '~> 5.9.0' 64 | 65 | s.platform = 'ios', '16.0' 66 | end 67 | -------------------------------------------------------------------------------- /mim-OE-ai-SE-iOS-developer/5.9.0/mim-OE-ai-SE-iOS-developer.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint mim-OE-ai-SE-iOS-developer.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | s.name = "mim-OE-ai-SE-iOS-developer" 12 | s.version = "5.9.0" 13 | s.summary = "mimik Client Library (mim OE, Developer license, with AI support)" 14 | 15 | s.description = <<-DESC 16 | The mimik Client Library provides a low-level, programmatic interface for interacting with the mim OE Runtime (formerly known as the edge engine). 17 | 18 | Quick Start: 19 | 20 | - Onboarding Tutorial 21 | Step-by-step setup and usage guide: 22 | https://devdocs.mimik.com/tutorials/01-submenu/02-submenu/02-index 23 | 24 | - API Documentation 25 | Complete reference for available classes, methods, and usage patterns: 26 | https://mimikgit.github.io/cocoapod-EdgeCore/documentation/edgecore/edgecore 27 | 28 | Features: 29 | 30 | The library exposes functionality to: 31 | 32 | - Initialize and configure the mim OE Runtime, including local runtime setup, configuration loading, and lifecycle management 33 | - Discover and interact with nodes in a Hybrid Edge Cloud cluster using built-in discovery and service registration APIs 34 | - Deploy and manage RESTful microservices on the edge cloud node using a lightweight container abstraction 35 | - Authenticate and authorize developers and services using token-based flows (OAuth2, JWT) 36 | - (Optional) Integrate with on-device AI runtimes, allowing local invocation of Vision and Language models without requiring cloud access 37 | 38 | Runtime Characteristics: 39 | 40 | - Written for resource-constrained environments 41 | - Supports offline-first and peer-to-peer communication paradigms 42 | - Built for decentralized orchestration across edge cloud nodes in distributed environments 43 | 44 | Use Case Examples: 45 | 46 | - Register and expose a microservice on a local node 47 | - Query cluster topology and fetch metadata from peer nodes 48 | - Secure communication between services using tokens 49 | - (Optional) Launch a local AI model for image or text inference 50 | 51 | This library is intended for developers building distributed edge cloud native apps where network reliability, low-latency processing, and on-device compute are critical. 52 | DESC 53 | 54 | s.homepage = "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer" 55 | s.license = { :type => "CUSTOM", :file => "LICENSE" } 56 | 57 | s.author = { "mimik" => "apps@mimik.com" } 58 | s.source = { :git => "https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer", :tag => "#{s.version}" } 59 | s.swift_versions = '5.0' 60 | 61 | s.vendored_frameworks = "EdgeEngine.xcframework", "edge.framework" 62 | 63 | s.dependency 'EdgeCore', '~> 5.9.0' 64 | 65 | s.platform = 'ios', '16.0' 66 | end 67 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mimik Client Library 2 | 3 | The **mimik Client Library** is a unified SDK for integrating and managing **mim OE** — a lightweight mimik operating environment enabling developers to build, deploy, and orchestrate microservices and AI-powered workflows across hybrid edge-cloud systems. 4 | 5 | It abstracts away the complexities of: 6 | - OAuth2 / JWT-based authentication 7 | - Network node discovery and orchestration 8 | - Lifecycle and configuration management for microservices 9 | - AI model integration, unified assistant streaming prompts 10 | - Developer Console integration for authentication, app management, session handling, and ready-to-use SwiftUI authentication views 11 | 12 | --- 13 | 14 | ## 🚀 Getting Started 15 | 16 | The fastest way to get started: 17 | 18 | 1. Follow the onboarding tutorial 19 | 📘 [Step-by-Step Tutorial](https://devdocs.mimik.com/tutorials/01-submenu/02-submenu/02-index) 20 | 21 | 2. Add the required pods to your `Podfile`: 22 | 23 | ```ruby 24 | platform :ios, '16.0' 25 | source 'https://github.com/CocoaPods/Specs.git' 26 | source 'https://github.com/mimikgit/cocoapod-edge-specs.git' 27 | 28 | use_frameworks! 29 | inhibit_all_warnings! 30 | 31 | def mimik 32 | pod 'EdgeCore' 33 | pod 'mim-OE-ai-SE-iOS-developer' 34 | end 35 | 36 | target 'YourAppTarget' do 37 | mimik() 38 | end 39 | 40 | post_install do |installer| 41 | installer.pods_project.targets.each do |target| 42 | target.build_configurations.each do |config| 43 | config.build_settings['VALID_ARCHS'] = '$(ARCHS_STANDARD_64_BIT)' 44 | config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.0' 45 | config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES' 46 | end 47 | end 48 | end 49 | ``` 50 | 51 | 3. Get your mim OE license key from the [mimik Developer Console](https://developer.mimik.com/console) 52 | 53 | --- 54 | 55 | ## 💡 Key Concepts 56 | 57 | **mim OE** (Operating Environment) is the runtime platform powering edge microservices and AI workloads. It can run on iOS devices, simulators, or macOS using Catalyst. The Client Library gives you direct control over: 58 | 59 | - Service deployment 60 | - Runtime lifecycle 61 | - AI model execution 62 | - Secure communication and auth 63 | 64 | **Developer Console** is the companion API that manages: 65 | - Developer authentication and session state 66 | - Authorization of mim OE runtime access 67 | - Application creation, listing, and deletion 68 | - Issuance of tokens for secure client–server communication 69 | - Ready-to-use SwiftUI authentication views 70 | 71 | --- 72 | 73 | ## ✨ Features Overview 74 | 75 | The mimik Client Library provides a unified API to: 76 | 77 | ### 🔧 Initialize and Control mim OE 78 | - Start, stop, and monitor the mim OE runtime 79 | - Configure logging, runtime health, and startup parameters 80 | 81 | ### 🔐 Authenticate Developers and Users 82 | - OAuth2-compliant developer and user login 83 | - Support for token exchange, scopes, signup/login flows 84 | - Handle account recovery, password changes, and deletions 85 | - **Developer Console Authentication APIs** for email/password auth, signup, password reset, token issuance 86 | 87 | ### 🌍 Discover & Orchestrate Edge Nodes 88 | - Auto-discover available edge nodes 89 | - Route requests across hybrid clusters 90 | - Register and manage services 91 | 92 | ### 📦 Deploy & Manage Microservices 93 | - Deploy microservices or full use-case workflows 94 | - Package using container-style config and update dynamically 95 | - Scale, tear down, or update services via API 96 | 97 | ### 🤖 Unified AI Model Integration 98 | - List available AI models across device, edge, and cloud 99 | - Use a single interface to prompt vision and language models 100 | 101 | ### 🔁 Stream AI Prompts & Responses 102 | - Send prompts and receive streaming replies 103 | - Handle user-initiated prompt cancellations cleanly 104 | 105 | ### 📋 Standardized AI Outputs 106 | - Unified output handling via `AssistantOutput` 107 | - Supports chat UI, system automation, and batch processing 108 | 109 | ### 🧑‍💻 Developer Console Integration 110 | - AuthenticationView (SwiftUI): prebuilt login screen with app branding, error handling, and supplementary flows 111 | - Applications API: create, list, find, and delete applications 112 | - Session Management: manage developer sessions with token-based flows 113 | - ID Tokens: issue and manage ID tokens for secure runtime access 114 | 115 | ## 📦 Pod Distribution 116 | 117 | Use the table below to choose the CocoaPods that best match your use case: 118 | 119 | | Pod | Includes | AI Support | Recommended For | 120 | |-----|----------|------------|------------------| 121 | | [`EdgeCore`](https://github.com/mimikgit/cocoapod-EdgeCore) | Core | | Always include | 122 | | [`mim-OE-SE-iOS-developer`](https://github.com/mimikgit/cocoapod-mim-OE-SE-iOS-developer) | Core + mim OE | ❌ | Lightweight, non-AI apps | 123 | | [`mim-OE-ai-SE-iOS-developer`](https://github.com/mimikgit/cocoapod-mim-OE-ai-SE-iOS-developer) | Core + mim OE + AI | ✅ | Vision/Language AI support | 124 | | [`EdgeService`](https://github.com/mimikgit/cocoapod-EdgeService) | Deployment tools | | For managing custom microservices | 125 | 126 | > **✅ Recommended Default:** Add `EdgeCore` and `mim-OE-ai-SE-iOS-developer` to your Podfile. 127 | 128 | --- 129 | 130 | ## 📱 Supported Platforms 131 | 132 | - **iOS Devices:** iOS 16.0+ 133 | - **iOS Simulators:** iOS 16.0+ 134 | - **Mac Catalyst:** macOS 14.0+ 135 | 136 | --- 137 | 138 | ## 📄 Documentation 139 | 140 | - **API Reference (EdgeCore):** 141 | [ClientLibrary Reference](https://mimikgit.github.io/cocoapod-EdgeCore/documentation/edgecore/clientlibrary) 142 | [ClientRuntime Protocol](https://mimikgit.github.io/cocoapod-EdgeCore/documentation/edgecore/clientruntime) 143 | 144 | - **EdgeService Reference:** 145 | [EdgeServiceClient Docs](https://mimikgit.github.io/cocoapod-EdgeService/documentation/edgeservice) 146 | 147 | - **Developer Console Reference:** 148 | [DeveloperConsole APIs](https://mimikgit.github.io/cocoapod-EdgeCore/documentation/edgecore/developerconsole) 149 | 150 | - All APIs are also documented in Xcode with built-in method and struct descriptions. 151 | 152 | --- 153 | 154 | ## 🧪 Tutorials by Use Case 155 | 156 | ### ▶️ Get Started 157 | - [Understanding the mimik Client Library for iOS](https://devdocs.mimik.com/key-concepts/10-index) 158 | 159 | ### 🛠️ Build Apps 160 | - [Creating a Simple iOS App Using an Edge Microservice](https://devdocs.mimik.com/tutorials/01-submenu/02-submenu/01-index) 161 | - [Integrating the mimik Client Library into Your iOS Project](https://devdocs.mimik.com/tutorials/01-submenu/02-submenu/02-index) 162 | 163 | ### ⚙️ Work with Runtime 164 | - [Working with mim OE in an iOS Project](https://devdocs.mimik.com/tutorials/01-submenu/02-submenu/03-index) 165 | 166 | ### 📦 Manage Microservices 167 | - [Deploying Edge Microservices](https://devdocs.mimik.com/tutorials/01-submenu/02-submenu/04-index) 168 | 169 | ### 🔑 Developer Console Integration 170 | - [Using the AuthenticationView in SwiftUI](https://github.com/mimikgit/mimik-ai-agentix-playground-example-iOS) 171 | - [Managing Applications via Developer Console](https://github.com/mimikgit/mimik-ai-agentix-playground-example-iOS) 172 | 173 | --- 174 | 175 | ## 📜 Licensing 176 | 177 | To initialize `mim-OE-ai-SE-iOS-developer`, obtain a license key at: 178 | 🔐 [mimik Developer Console](https://developer.mimik.com/console) 179 | 180 | For enterprise projects or commercial distribution, contact: 181 | 💼 [mimik Support](https://mimik.com/contact-us/) 182 | 183 | --- 184 | 185 | ## 👤 Author 186 | 187 | [mimik](https://mimik.com) 188 | Learn more at [mimik Developer Documentation](https://devdocs.mimik.com) 189 | --------------------------------------------------------------------------------