Skip to content

Commit

Permalink
release/5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
runner authored and runner committed Apr 22, 2022
1 parent 5892744 commit da1a868
Show file tree
Hide file tree
Showing 376 changed files with 10,902 additions and 135 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" ~> 5.4.1
github "zendesk/messaging_sdk_ios" ~> 3.8.4
github "zendesk/support_providers_sdk_ios" ~> 5.5.0
github "zendesk/messaging_sdk_ios" ~> 3.8.5
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("5.4.1")),
.exact("5.5.0")),
.package(name: "ZendeskMessagingSDK",
url: "https://github.com/zendesk/messaging_sdk_ios",
.exact("3.8.4"))
.exact("3.8.5"))
],
targets: [
.binaryTarget(
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>5.4.1</string>
<string>5.5.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ public struct PageView<T> : Swift.Encodable where T : Swift.Encodable {
public func encode(to encoder: Swift.Encoder) throws
}
public typealias CompletionHandler = (Foundation.Data?, Foundation.URLResponse?, Swift.Error?) -> Swift.Void
public struct BaseStore {
public func getMachineID() -> Swift.String
}
@objc(ZDKUser) public class User : ObjectiveC.NSObject, Swift.Decodable {
@objc final public let id: Swift.String
@objc final public let name: Swift.String
Expand Down Expand Up @@ -202,12 +205,14 @@ public enum LoggerConfig {
}
public protocol StoreModule {
var cacheDirectory: Foundation.URL? { get }
var baseStore: ZendeskCoreSDK.BaseStore { get }
var sessionStore: ZendeskCoreSDK.SessionStore { get }
func clearAll()
func clearSettingsAndSession()
func clearSession()
}
@_hasMissingDesignatedInitializers final public class Stores : ZendeskCoreSDK.StoreModule {
final public let baseStore: ZendeskCoreSDK.BaseStore
final public let sessionStore: ZendeskCoreSDK.SessionStore
final public var cacheDirectory: Foundation.URL? {
get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ public struct PageView<T> : Swift.Encodable where T : Swift.Encodable {
public func encode(to encoder: Swift.Encoder) throws
}
public typealias CompletionHandler = (Foundation.Data?, Foundation.URLResponse?, Swift.Error?) -> Swift.Void
public struct BaseStore {
public func getMachineID() -> Swift.String
}
@objc(ZDKUser) public class User : ObjectiveC.NSObject, Swift.Decodable {
@objc final public let id: Swift.String
@objc final public let name: Swift.String
Expand Down Expand Up @@ -202,12 +205,14 @@ public enum LoggerConfig {
}
public protocol StoreModule {
var cacheDirectory: Foundation.URL? { get }
var baseStore: ZendeskCoreSDK.BaseStore { get }
var sessionStore: ZendeskCoreSDK.SessionStore { get }
func clearAll()
func clearSettingsAndSession()
func clearSession()
}
@_hasMissingDesignatedInitializers final public class Stores : ZendeskCoreSDK.StoreModule {
final public let baseStore: ZendeskCoreSDK.BaseStore
final public let sessionStore: ZendeskCoreSDK.SessionStore
final public var cacheDirectory: Foundation.URL? {
get
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>5.4.1</string>
<string>5.5.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ public struct PageView<T> : Swift.Encodable where T : Swift.Encodable {
public func encode(to encoder: Swift.Encoder) throws
}
public typealias CompletionHandler = (Foundation.Data?, Foundation.URLResponse?, Swift.Error?) -> Swift.Void
public struct BaseStore {
public func getMachineID() -> Swift.String
}
@objc(ZDKUser) public class User : ObjectiveC.NSObject, Swift.Decodable {
@objc final public let id: Swift.String
@objc final public let name: Swift.String
Expand Down Expand Up @@ -202,12 +205,14 @@ public enum LoggerConfig {
}
public protocol StoreModule {
var cacheDirectory: Foundation.URL? { get }
var baseStore: ZendeskCoreSDK.BaseStore { get }
var sessionStore: ZendeskCoreSDK.SessionStore { get }
func clearAll()
func clearSettingsAndSession()
func clearSession()
}
@_hasMissingDesignatedInitializers final public class Stores : ZendeskCoreSDK.StoreModule {
final public let baseStore: ZendeskCoreSDK.BaseStore
final public let sessionStore: ZendeskCoreSDK.SessionStore
final public var cacheDirectory: Foundation.URL? {
get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ public struct PageView<T> : Swift.Encodable where T : Swift.Encodable {
public func encode(to encoder: Swift.Encoder) throws
}
public typealias CompletionHandler = (Foundation.Data?, Foundation.URLResponse?, Swift.Error?) -> Swift.Void
public struct BaseStore {
public func getMachineID() -> Swift.String
}
@objc(ZDKUser) public class User : ObjectiveC.NSObject, Swift.Decodable {
@objc final public let id: Swift.String
@objc final public let name: Swift.String
Expand Down Expand Up @@ -202,12 +205,14 @@ public enum LoggerConfig {
}
public protocol StoreModule {
var cacheDirectory: Foundation.URL? { get }
var baseStore: ZendeskCoreSDK.BaseStore { get }
var sessionStore: ZendeskCoreSDK.SessionStore { get }
func clearAll()
func clearSettingsAndSession()
func clearSession()
}
@_hasMissingDesignatedInitializers final public class Stores : ZendeskCoreSDK.StoreModule {
final public let baseStore: ZendeskCoreSDK.BaseStore
final public let sessionStore: ZendeskCoreSDK.SessionStore
final public var cacheDirectory: Foundation.URL? {
get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ public struct PageView<T> : Swift.Encodable where T : Swift.Encodable {
public func encode(to encoder: Swift.Encoder) throws
}
public typealias CompletionHandler = (Foundation.Data?, Foundation.URLResponse?, Swift.Error?) -> Swift.Void
public struct BaseStore {
public func getMachineID() -> Swift.String
}
@objc(ZDKUser) public class User : ObjectiveC.NSObject, Swift.Decodable {
@objc final public let id: Swift.String
@objc final public let name: Swift.String
Expand Down Expand Up @@ -202,12 +205,14 @@ public enum LoggerConfig {
}
public protocol StoreModule {
var cacheDirectory: Foundation.URL? { get }
var baseStore: ZendeskCoreSDK.BaseStore { get }
var sessionStore: ZendeskCoreSDK.SessionStore { get }
func clearAll()
func clearSettingsAndSession()
func clearSession()
}
@_hasMissingDesignatedInitializers final public class Stores : ZendeskCoreSDK.StoreModule {
final public let baseStore: ZendeskCoreSDK.BaseStore
final public let sessionStore: ZendeskCoreSDK.SessionStore
final public var cacheDirectory: Foundation.URL? {
get
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>5.4.1</string>
<string>5.5.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ public struct PageView<T> : Swift.Encodable where T : Swift.Encodable {
public func encode(to encoder: Swift.Encoder) throws
}
public typealias CompletionHandler = (Foundation.Data?, Foundation.URLResponse?, Swift.Error?) -> Swift.Void
public struct BaseStore {
public func getMachineID() -> Swift.String
}
@objc(ZDKUser) public class User : ObjectiveC.NSObject, Swift.Decodable {
@objc final public let id: Swift.String
@objc final public let name: Swift.String
Expand Down Expand Up @@ -201,12 +204,14 @@ public enum LoggerConfig {
}
public protocol StoreModule {
var cacheDirectory: Foundation.URL? { get }
var baseStore: ZendeskCoreSDK.BaseStore { get }
var sessionStore: ZendeskCoreSDK.SessionStore { get }
func clearAll()
func clearSettingsAndSession()
func clearSession()
}
@_hasMissingDesignatedInitializers final public class Stores : ZendeskCoreSDK.StoreModule {
final public let baseStore: ZendeskCoreSDK.BaseStore
final public let sessionStore: ZendeskCoreSDK.SessionStore
final public var cacheDirectory: Foundation.URL? {
get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ public struct PageView<T> : Swift.Encodable where T : Swift.Encodable {
public func encode(to encoder: Swift.Encoder) throws
}
public typealias CompletionHandler = (Foundation.Data?, Foundation.URLResponse?, Swift.Error?) -> Swift.Void
public struct BaseStore {
public func getMachineID() -> Swift.String
}
@objc(ZDKUser) public class User : ObjectiveC.NSObject, Swift.Decodable {
@objc final public let id: Swift.String
@objc final public let name: Swift.String
Expand Down Expand Up @@ -201,12 +204,14 @@ public enum LoggerConfig {
}
public protocol StoreModule {
var cacheDirectory: Foundation.URL? { get }
var baseStore: ZendeskCoreSDK.BaseStore { get }
var sessionStore: ZendeskCoreSDK.SessionStore { get }
func clearAll()
func clearSettingsAndSession()
func clearSession()
}
@_hasMissingDesignatedInitializers final public class Stores : ZendeskCoreSDK.StoreModule {
final public let baseStore: ZendeskCoreSDK.BaseStore
final public let sessionStore: ZendeskCoreSDK.SessionStore
final public var cacheDirectory: Foundation.URL? {
get
Expand Down
Binary file modified SupportSDK.framework/Assets.car
Binary file not shown.
Binary file modified SupportSDK.framework/Info.plist
Binary file not shown.
Binary file modified SupportSDK.framework/SupportSDK
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@
"ios.SupportEngine.messageSend.errorMessage" = "حدث خطأ ما ولم أتمكن من إرسال رسالتك. الرجاء إعادة المحاولة لاحقًا.";
"ios.SupportEngine.messageSend.retry.button" = "إعادة المحاولة";
"ios.SupportEngine.requestCreated.conversationsEnabledMessage" = "شكرًا لك. لقد أُرسِلت رسالة إلى الفريق. يمكنك عرض هذه الرسالة وإضافة المزيد من المعلومات من هنا:";
"ios.SupportEngine.requestCreated.conversationsOff.confirm" = "موافق";
"ios.SupportEngine.requestCreated.conversationsOff.message" = "شكرًا لك. لقد أُرسِلت رسالة إلى الفريق. إذا كان الرد مطلوبًا، فسيتصل بك عضو من الفريق بالبريد الإلكتروني.";
"ios.SupportEngine.requestCreated.conversationsOff.title" = "تم بنجاح";
"ios.SupportEngine.requestCreated.emailPrompt.hint" = "أدخل عنوان بريدك الإلكتروني...";
"ios.SupportEngine.requestCreated.emailPrompt.message" = "إذا كان الرد مطلوبًا، فسيتصل بك عضو من الفريق بالبريد الإلكتروني. ما هو عنوان بريدك الإلكتروني؟";
"ios.SupportEngine.requestCreated.emailValidationFailed.message" = "عنوان البريد الإلكتروني الذي أدخلته غير صحيح. أدخِل عنوان بريد إلكتروني صالح.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,17 @@
"ios.ZDKRequests.requestListEmpty.subtitle" = "Започнатите от това приложение разговори ще се виждат тук";
"ios.ZDKRequests.rightBarButton.title.contact" = "Връзка с нас";
"ios.sdk.ZDKHelpCenter.article.voting.title" = "Беше ли полезна тази статия?";
"ios.sdk.ZDKRequests.createRequest.attachment.fileTooBig" = "Макс. обем на прикачения файл е %@ MB";
"ios.sdk.ZDKRequests.createRequest.attachment.fileTooBig" = "Макс. размер на прикачения файл е %@ MB";
"ios.sdk.ZDKRequests.leftBarButton.close.title" = "Затваряне";
"ios.sdk.ZDKRequests.pushNotification.dismiss.title" = "Игнориране";
"ios.sdk.ZDKRequests.pushNotification.open.title" = "Отваряне";
"ios.SupportEngine.greeting.message" = "Въведете съобщение и ще намеря кой да ви помогне.";
"ios.SupportEngine.messageSend.errorMessage" = "Възникна грешка и не можах да изпратя съобщението. Моля опитайте отново по-късно.";
"ios.SupportEngine.messageSend.retry.button" = "Нов опит";
"ios.SupportEngine.requestCreated.conversationsEnabledMessage" = "Благодарим ви. На екипа е изпратено съобщение. Можете да го видите и да добавите още подробности тук:";
"ios.SupportEngine.requestCreated.conversationsOff.confirm" = "ОК";
"ios.SupportEngine.requestCreated.conversationsOff.message" = "Благодарим ви. На екипа е изпратено съобщение. Ако е необходим отговор, ще го получите с имейл.";
"ios.SupportEngine.requestCreated.conversationsOff.title" = "Готово";
"ios.SupportEngine.requestCreated.emailPrompt.hint" = "Въведете имейл адреса си...";
"ios.SupportEngine.requestCreated.emailPrompt.message" = "Ако е необходим отговор, някой ще се свърже с вас по имейл. Какъв е имейл адресът ви?";
"ios.SupportEngine.requestCreated.emailValidationFailed.message" = "Въведеният имейл адрес е неправилен. Въведете валиден имейл адрес.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@
"ios.SupportEngine.messageSend.errorMessage" = "Něco se nepovedlo a vaše zpráva nebyla odeslána. Zkuste to prosím znovu později.";
"ios.SupportEngine.messageSend.retry.button" = "Zkusit znovu";
"ios.SupportEngine.requestCreated.conversationsEnabledMessage" = "Děkujeme. Zpráva byla odeslána týmu. Zde si můžete tuto zprávu prohlédnout a přidat další podrobnosti:";
"ios.SupportEngine.requestCreated.conversationsOff.confirm" = "OK";
"ios.SupportEngine.requestCreated.conversationsOff.message" = "Děkujeme. Zpráva byla odeslána týmu. Pokud je potřeba odpověď, budou vás kontaktovat e-mailem.";
"ios.SupportEngine.requestCreated.conversationsOff.title" = "Úspěch";
"ios.SupportEngine.requestCreated.emailPrompt.hint" = "Zadejte svou e-mailovou adresu...";
"ios.SupportEngine.requestCreated.emailPrompt.message" = "Pokud je potřeba odpověď, někdo vás bude kontaktovat e-mailem. Jakou máte e-mailovou adresu?";
"ios.SupportEngine.requestCreated.emailValidationFailed.message" = "Zadaná e‑mailová adresa je nesprávná. Zadejte platnou e‑mailovou adresu.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@
"ios.SupportEngine.messageSend.errorMessage" = "Der gik noget galt, og din meddelelse kunne ikke sendes. Prøv igen senere.";
"ios.SupportEngine.messageSend.retry.button" = "Prøv igen";
"ios.SupportEngine.requestCreated.conversationsEnabledMessage" = "Mange tak. Der er blevet sendt en meddelelse til teamet. Du kan se denne meddelelse og tilføje yderligere detaljer her:";
"ios.SupportEngine.requestCreated.conversationsOff.confirm" = "OK";
"ios.SupportEngine.requestCreated.conversationsOff.message" = "Mange tak. Der er blevet sendt en meddelelse til teamet. De vil kontakte dig via e-mail, hvis et svar er nødvendigt.";
"ios.SupportEngine.requestCreated.conversationsOff.title" = "Det lykkedes";
"ios.SupportEngine.requestCreated.emailPrompt.hint" = "Indtast din e-mailadresse ...";
"ios.SupportEngine.requestCreated.emailPrompt.message" = "Du vil blive kontaktet via e-mail, hvis et svar er nødvendigt. Hvad er din e-mailadresse?";
"ios.SupportEngine.requestCreated.emailValidationFailed.message" = "Den indtastede e-mailadresse er forkert. Indtast en gyldig e-mailadresse.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@
"ios.SupportEngine.messageSend.errorMessage" = "Nachricht konnte wegen eines Fehlers nicht gesendet werden. Bitte versuchen Sie es später erneut.";
"ios.SupportEngine.messageSend.retry.button" = "Erneut versuchen";
"ios.SupportEngine.requestCreated.conversationsEnabledMessage" = "Vielen Dank. Eine Nachricht wurde an das Team gesendet. Sie können diese Nachricht hier anzeigen und weitere Details eingeben:";
"ios.SupportEngine.requestCreated.conversationsOff.confirm" = "OK";
"ios.SupportEngine.requestCreated.conversationsOff.message" = "Vielen Dank. Eine Nachricht wurde an das Team gesendet. Wenn eine Antwort erforderlich ist, wird sich jemand per E-Mail bei Ihnen melden.";
"ios.SupportEngine.requestCreated.conversationsOff.title" = "Erfolg";
"ios.SupportEngine.requestCreated.emailPrompt.hint" = "E-Mail-Adresse eingeben...";
"ios.SupportEngine.requestCreated.emailPrompt.message" = "Wenn eine Antwort erforderlich ist, wird sich jemand per E-Mail bei Ihnen melden. Wie lautet Ihre E-Mail-Adresse?";
"ios.SupportEngine.requestCreated.emailValidationFailed.message" = "Die eingegebene E-Mail-Adresse ist ungültig. Geben Sie eine gültige E-Mail-Adresse ein.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@
"ios.SupportEngine.messageSend.errorMessage" = "Παρουσιάστηκε πρόβλημα και δεν κατάφερα να στείλω το μήνυμά σας. Προσπαθήστε ξανά αργότερα.";
"ios.SupportEngine.messageSend.retry.button" = "Επανάληψη";
"ios.SupportEngine.requestCreated.conversationsEnabledMessage" = "Σας ευχαριστούμε. Έχει σταλεί ένα μήνυμα στην ομάδα. Μπορείτε να προβάλετε αυτό το μήνυμα και να προσθέσετε περισσότερες λεπτομέρειες εδώ:";
"ios.SupportEngine.requestCreated.conversationsOff.confirm" = "OK";
"ios.SupportEngine.requestCreated.conversationsOff.message" = "Σας ευχαριστούμε. Έχει σταλεί ένα μήνυμα στην ομάδα. Αν χρειάζεται απάντηση, θα επικοινωνήσουν μαζί σας μέσω email.";
"ios.SupportEngine.requestCreated.conversationsOff.title" = "Επιτυχία";
"ios.SupportEngine.requestCreated.emailPrompt.hint" = "Πληκτρολογήστε το email σας...";
"ios.SupportEngine.requestCreated.emailPrompt.message" = "Αν χρειάζεται απάντηση, κάποιος υπεύθυνος θα επικοινωνήσει μαζί σας μέσω email. Ποια είναι η διεύθυνση email σας;";
"ios.SupportEngine.requestCreated.emailValidationFailed.message" = "Η διεύθυνση email που εισαγάγατε είναι εσφαλμένη. Καταχωρήστε μια έγκυρη διεύθυνση email.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@
"ios.SupportEngine.messageSend.errorMessage" = "Something went wrong and I wasn't able to send your message. Please try again later.";
"ios.SupportEngine.messageSend.retry.button" = "Retry";
"ios.SupportEngine.requestCreated.conversationsEnabledMessage" = "Thank you. A message has been sent to the team. You can view this message and add additional details here:";
"ios.SupportEngine.requestCreated.conversationsOff.confirm" = "OK";
"ios.SupportEngine.requestCreated.conversationsOff.message" = "Thank you. A message has been sent to the team. If a reply is needed, they will contact you by email.";
"ios.SupportEngine.requestCreated.conversationsOff.title" = "Success";
"ios.SupportEngine.requestCreated.emailPrompt.hint" = "Enter your email...";
"ios.SupportEngine.requestCreated.emailPrompt.message" = "If a reply is needed, someone will contact you by email. What is your email address?";
"ios.SupportEngine.requestCreated.emailValidationFailed.message" = "The email address you entered is incorrect. Enter a valid email address.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@
"ios.SupportEngine.messageSend.errorMessage" = "Something went wrong and I wasn't able to send your message. Please try again later.";
"ios.SupportEngine.messageSend.retry.button" = "Retry";
"ios.SupportEngine.requestCreated.conversationsEnabledMessage" = "Thank you. A message has been sent to the team. You can view this message and add additional details here:";
"ios.SupportEngine.requestCreated.conversationsOff.confirm" = "OK";
"ios.SupportEngine.requestCreated.conversationsOff.message" = "Thank you. A message has been sent to the team. If a reply is needed, they will contact you by email.";
"ios.SupportEngine.requestCreated.conversationsOff.title" = "Success";
"ios.SupportEngine.requestCreated.emailPrompt.hint" = "Enter your email...";
"ios.SupportEngine.requestCreated.emailPrompt.message" = "If a reply is needed, someone will contact you by email. What is your email address?";
"ios.SupportEngine.requestCreated.emailValidationFailed.message" = "The email address you entered is incorrect. Enter a valid email address.";
Expand Down
Loading

0 comments on commit da1a868

Please sign in to comment.