Skip to content

Commit

Permalink
[RELEASE] New version 9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
runner committed Oct 7, 2024
1 parent 250bd0f commit 757a915
Show file tree
Hide file tree
Showing 24 changed files with 19,244 additions and 19,256 deletions.
4 changes: 2 additions & 2 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "zendesk/support_providers_sdk_ios" ~> 8.0.4
github "zendesk/messaging_sdk_ios" ~> 6.0.2
github "zendesk/support_providers_sdk_ios" ~> 9.0.0
github "zendesk/messaging_sdk_ios" ~> 6.0.3
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ let package = Package(
dependencies: [
.package(name: "ZendeskSupportProvidersSDK",
url: "https://github.com/zendesk/support_providers_sdk_ios",
.exact("8.0.4")),
.exact("9.0.0")),
.package(name: "ZendeskMessagingSDK",
url: "https://github.com/zendesk/messaging_sdk_ios",
.exact("6.0.2"))
.exact("6.0.3"))
],
targets: [
.binaryTarget(
Expand Down
10 changes: 5 additions & 5 deletions SupportSDK.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,34 @@
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>SupportSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>SupportSDK.framework/SupportSDK</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SupportSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file modified SupportSDK.xcframework/ios-arm64/SupportSDK.framework/Info.plist
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -15425,13 +15425,6 @@
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/Attachments\/AttachmentPicker\/ViewModel\/ImageItem.swift",
"kind": "BooleanLiteral",
"offset": 528,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/Attachments\/AttachmentPicker\/Views\/Cells\/SidebarCell.swift",
"kind": "IntegerLiteral",
Expand Down Expand Up @@ -15610,7 +15603,7 @@
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/Views\/InputField\/Views\/AttachmentInput\/InputAttachmentCollectionViewState.swift",
"kind": "StringLiteral",
"offset": 6261,
"offset": 6232,
"length": 2,
"value": "\"\""
},
Expand Down Expand Up @@ -18809,7 +18802,7 @@
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/RequestTable\/RequestTableState.swift",
"kind": "IntegerLiteral",
"offset": 3467,
"offset": 3438,
"length": 1,
"value": "0"
},
Expand Down
Binary file modified SupportSDK.xcframework/ios-arm64/SupportSDK.framework/SupportSDK
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>8.0.4</string>
<string>9.0.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file not shown.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name SDKConfigurations
// swift-module-flags-ignorable: -enable-bare-slash-regex
import Foundation
@_exported import SDKConfigurations
import Swift
import _Concurrency
import _StringProcessing
import _SwiftConcurrencyShims
@objc(ZDKConfiguration) public protocol Configuration : ObjectiveC.NSObjectProtocol {
@objc init()
}
Expand All @@ -20,11 +23,11 @@ import _Concurrency
}
}
@objc(ZDKConfigurations) final public class Configurations : ObjectiveC.NSObject {
public typealias ConfigArrayType = [SDKConfigurations.Configuration]
public typealias ConfigArrayType = [any SDKConfigurations.Configuration]
@objc final public var configs: SDKConfigurations.Configurations.ConfigArrayType {
get
}
@objc public init(configs: [SDKConfigurations.Configuration])
@objc public init(configs: [any SDKConfigurations.Configuration])
@objc deinit
}
extension SDKConfigurations.Configurations : Swift.Collection {
Expand All @@ -37,7 +40,7 @@ extension SDKConfigurations.Configurations : Swift.Collection {
@objc final public var endIndex: SDKConfigurations.Configurations.Index {
@objc get
}
@objc final public func insert(_ configuration: SDKConfigurations.Configuration)
@objc final public func insert(_ configuration: any SDKConfigurations.Configuration)
@objc final public subscript(index: SDKConfigurations.Configurations.Index) -> Swift.IndexingIterator<SDKConfigurations.Configurations>.Element {
@objc get
}
Expand All @@ -47,7 +50,7 @@ extension SDKConfigurations.Configurations : Swift.Collection {
final public func index(after i: SDKConfigurations.Configurations.Index) -> SDKConfigurations.Configurations.Index
final public func addDefaultConfigIfNeeded<T>(ofType type: T.Type) where T : SDKConfigurations.Configuration
@available(swift, obsoleted: 1.0)
@objc final public func addDefaultConfigIfNeeded(_ config: SDKConfigurations.Configuration)
@objc final public func addDefaultConfigIfNeeded(_ config: any SDKConfigurations.Configuration)
public typealias Indices = Swift.DefaultIndices<SDKConfigurations.Configurations>
public typealias Iterator = Swift.IndexingIterator<SDKConfigurations.Configurations>
public typealias SubSequence = Swift.Slice<SDKConfigurations.Configurations>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -15425,13 +15425,6 @@
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/Attachments\/AttachmentPicker\/ViewModel\/ImageItem.swift",
"kind": "BooleanLiteral",
"offset": 528,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/Attachments\/AttachmentPicker\/Views\/Cells\/SidebarCell.swift",
"kind": "IntegerLiteral",
Expand Down Expand Up @@ -15610,7 +15603,7 @@
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/Views\/InputField\/Views\/AttachmentInput\/InputAttachmentCollectionViewState.swift",
"kind": "StringLiteral",
"offset": 6261,
"offset": 6232,
"length": 2,
"value": "\"\""
},
Expand Down Expand Up @@ -18809,7 +18802,7 @@
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/RequestTable\/RequestTableState.swift",
"kind": "IntegerLiteral",
"offset": 3467,
"offset": 3438,
"length": 1,
"value": "0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15425,13 +15425,6 @@
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/Attachments\/AttachmentPicker\/ViewModel\/ImageItem.swift",
"kind": "BooleanLiteral",
"offset": 528,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/Attachments\/AttachmentPicker\/Views\/Cells\/SidebarCell.swift",
"kind": "IntegerLiteral",
Expand Down Expand Up @@ -15610,7 +15603,7 @@
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/Views\/InputField\/Views\/AttachmentInput\/InputAttachmentCollectionViewState.swift",
"kind": "StringLiteral",
"offset": 6261,
"offset": 6232,
"length": 2,
"value": "\"\""
},
Expand Down Expand Up @@ -18809,7 +18802,7 @@
{
"filePath": "\/Users\/admin\/actions-runner\/_work\/zendesk_mobile_sdks_ios\/zendesk_mobile_sdks_ios\/SupportSDK\/SupportSDK\/Source\/Request\/RequestTable\/RequestTableState.swift",
"kind": "IntegerLiteral",
"offset": 3467,
"offset": 3438,
"length": 1,
"value": "0"
},
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
</data>
<key>Info.plist</key>
<data>
VEkN1b8ax44cHmorD3kvqodLdaM=
08Lo4oRqW9KRr+Fh2hDc/5EvLj0=
</data>
<key>InputFileCell.nib/objects-12.3+.nib</key>
<data>
Expand All @@ -110,7 +110,7 @@
</data>
<key>Modules/SupportSDK.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
<data>
28lzu1e5JtMcMeYX6GceorvXGLY=
hBnFrVixCf+/VEemr0PD1cNq8KA=
</data>
<key>Modules/SupportSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
<data>
Expand All @@ -126,11 +126,11 @@
</data>
<key>Modules/SupportSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<data>
1xE3F/tcK9gYVoja9QCGj+0nBRs=
aj+7r8JcP0mYOWXbENQZXQ8cxqQ=
</data>
<key>Modules/SupportSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
<data>
28lzu1e5JtMcMeYX6GceorvXGLY=
hBnFrVixCf+/VEemr0PD1cNq8KA=
</data>
<key>Modules/SupportSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
<data>
Expand All @@ -146,7 +146,7 @@
</data>
<key>Modules/SupportSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
94GJU4knSDEy0iUZOZAFJ6YoxC4=
rdwhPxJmK2J7yCvnZwreUB1rTFM=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -520,7 +520,7 @@
</dict>
<key>ZDKHelpCenterArticleRatingView.nib</key>
<data>
Cp+Ro0hSVoX/7XFxureXeNzdxxI=
hjUaZP2zn+nTHc3ijyMOiW3cxHQ=
</data>
<key>ZDKHelpCenterOverviewArticleTableViewCell.nib</key>
<data>
Expand Down Expand Up @@ -800,7 +800,7 @@
<dict>
<key>hash2</key>
<data>
Vdjskd68Pp9pDyWuVYl/HNCs71QF3rYsnas0SmkI88Y=
rSGTZTj0Ik6IqbqNrxyuaI166Wjo4r4m7q0TeKP85Y4=
</data>
</dict>
<key>Modules/SupportSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
Expand Down Expand Up @@ -828,14 +828,14 @@
<dict>
<key>hash2</key>
<data>
0jPrIR9NWix2D4LFMLlnEH3LJI9baDuICQYdvELsZYk=
2HW5YbAUWte937IGxZiUOXlsYn7wN8DLv1FrIF+HYFA=
</data>
</dict>
<key>Modules/SupportSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
<dict>
<key>hash2</key>
<data>
Vdjskd68Pp9pDyWuVYl/HNCs71QF3rYsnas0SmkI88Y=
rSGTZTj0Ik6IqbqNrxyuaI166Wjo4r4m7q0TeKP85Y4=
</data>
</dict>
<key>Modules/SupportSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
Expand Down Expand Up @@ -863,7 +863,7 @@
<dict>
<key>hash2</key>
<data>
NnCqKdkgsXN3zMNBfcot8GwFScDP0NZPeiRkGfj+nBw=
QW9lOBxFjyNAqcRbOIob5qASe89AMKmIJF1HM4Dray4=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down Expand Up @@ -1288,7 +1288,7 @@
<dict>
<key>hash2</key>
<data>
DU+kxBAB1qF6fK6FUXADKglYiyO9hKj6YfSHYF+K3Bw=
i6CldGKlgwBK7IL+iesQ7R+rhR+wOAkmztrVfCoQjBQ=
</data>
</dict>
<key>ZDKHelpCenterOverviewArticleTableViewCell.nib</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>8.0.4</string>
<string>9.0.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file not shown.
Loading

0 comments on commit 757a915

Please sign in to comment.