Skip to content

Commit

Permalink
Merge pull request #55 from salemove/release/0.32.1
Browse files Browse the repository at this point in the history
Glia iOS SDK 0.32.1
  • Loading branch information
dukhovnyi authored Jan 17, 2022
2 parents 186e5c8 + f26894a commit f3bdd50
Show file tree
Hide file tree
Showing 13 changed files with 46 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .gitbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ root: ./docs

structure:
readme: ../README.md
summary: ./SUMMARY.md
summary: ./SUMMARY.md
24 changes: 17 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

## Unreleased

Unreleased: https://github.com/salemove/ios-sdk/compare/0.32.0...master
Unreleased: https://github.com/salemove/ios-sdk/compare/0.32.1...master

## [0.32.1] - 2022-01-17

### Added

- `external_id` support

## [0.32.0] - 2021-12-23

Expand Down Expand Up @@ -51,15 +57,15 @@ Unreleased: https://github.com/salemove/ios-sdk/compare/0.32.0...master
- Added push notification support
- Added possibility to fetch visitor information
- Added possibility to start engagement with media

### Fixed

- Fixed media streaming on engagement transfer

[0.30.0]: https://github.com/salemove/ios-sdk/compare/0.29.6...0.30.0

## [0.29.6] - 2021-07-01

### Fixed

- Fixed `Avoiding duplicate symbols with static libraries/frameworks` issue (Swift Package Manager)
Expand Down Expand Up @@ -177,7 +183,6 @@ Unreleased: https://github.com/salemove/ios-sdk/compare/0.32.0...master

[0.23.0]: https://github.com/salemove/ios-bundle/compare/0.22.0...0.23.0


## [0.22.0] - 2020-08-18

### Changed
Expand All @@ -187,12 +192,11 @@ Unreleased: https://github.com/salemove/ios-sdk/compare/0.32.0...master

[0.22.0]: https://github.com/salemove/ios-bundle/compare/0.21.1...0.22.0


## [0.21.1] - 2020-07-10

### Changed

- Fixed the Log class access modifier
- Fixed the Log class access modifier
- Fixed Keychain problem when using real devices

[0.21.1]: https://github.com/salemove/ios-bundle/compare/0.21.0...0.21.1
Expand Down Expand Up @@ -247,7 +251,6 @@ Unreleased: https://github.com/salemove/ios-sdk/compare/0.32.0...master

[0.17.0]: https://github.com/salemove/ios-bundle/compare/0.16.3...0.17.0


## [0.16.3] - 2019-11-26

### Fixed
Expand Down Expand Up @@ -663,33 +666,40 @@ Unreleased: https://github.com/salemove/ios-sdk/compare/0.32.0...master
## [0.3.0] - 2017-12-18

### Added

- Websockets for keeping the incoming callbacks and messaging more stable
- applicationDidBecomeActive manageable by SDK
- Additional server selection

## [0.2.1] - 2017-11-28

### Changed

- Rename in the SDK the way to queue for an engagement

### Removed

- Ability to specify the interactor directly in the SDK, now using a configurable protocol

## [0.2.0] - 2017-11-23

### Added

- Ability to configure the SDK from the API
- SDK to accept the Interactable object as part of the engagement handling
- Ability to generate the documentation using jazzy

### Changed

- SDK now is compiled as a library, so the source code is closed

### Removed

- echo example query for the push notifications
- UI code for the SDK

## [0.1.0] - 2017-11-16

### Added

- Initial version of the SDK
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ let package = Package(
),
.binaryTarget(
name: "SalemoveSDK",
url: "https://github.com/salemove/ios-bundle/releases/download/0.32.0/SalemoveSDK.xcframework.zip",
checksum: "2f548182f0a4db0cc6ce96e3617ddcdfc5b2463fbab45c94983753f5ad33f841"
url: "https://github.com/salemove/ios-bundle/releases/download/0.32.1/SalemoveSDK.xcframework.zip",
checksum: "ba6de072907fddc8ce104d11764b6d127f12a8071393d9183c59724b74e42507"
),
.target(
name: "GliaSDK",
Expand Down
2 changes: 1 addition & 1 deletion SalemoveSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SalemoveSDK'
s.version = '0.32.0'
s.version = '0.32.1'
s.summary = 'The Salemove iOS library'
s.description = 'The Salemove iOS library brings the in-person customer experience to iOS devices.'
s.homepage = 'https://github.com/salemove/ios-sdk'
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,10 @@ public struct VisitorInfoUpdate : Swift.Encodable {
public var phone: Swift.String?
public var note: Swift.String?
public var noteUpdateMethod: SalemoveSDK.VisitorInfoUpdate.NoteUpdateMethod?
public var externalID: Swift.String?
public var externalID: Swift.String? {
get
set
}
public var customAttributes: [Swift.String : Swift.String]?
public var customAttributesUpdateMethod: SalemoveSDK.VisitorInfoUpdate.CustomAttributesUpdateMethod?
public init(name: Swift.String? = nil, email: Swift.String? = nil, phone: Swift.String? = nil, note: Swift.String? = nil, noteUpdateMethod: SalemoveSDK.VisitorInfoUpdate.NoteUpdateMethod? = nil, externalID: Swift.String? = nil, customAttributes: [Swift.String : Swift.String]? = nil, customAttributesUpdateMethod: SalemoveSDK.VisitorInfoUpdate.CustomAttributesUpdateMethod? = nil)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,10 @@ public struct VisitorInfoUpdate : Swift.Encodable {
public var phone: Swift.String?
public var note: Swift.String?
public var noteUpdateMethod: SalemoveSDK.VisitorInfoUpdate.NoteUpdateMethod?
public var externalID: Swift.String?
public var externalID: Swift.String? {
get
set
}
public var customAttributes: [Swift.String : Swift.String]?
public var customAttributesUpdateMethod: SalemoveSDK.VisitorInfoUpdate.CustomAttributesUpdateMethod?
public init(name: Swift.String? = nil, email: Swift.String? = nil, phone: Swift.String? = nil, note: Swift.String? = nil, noteUpdateMethod: SalemoveSDK.VisitorInfoUpdate.NoteUpdateMethod? = nil, externalID: Swift.String? = nil, customAttributes: [Swift.String : Swift.String]? = nil, customAttributesUpdateMethod: SalemoveSDK.VisitorInfoUpdate.CustomAttributesUpdateMethod? = nil)
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,10 @@ public struct VisitorInfoUpdate : Swift.Encodable {
public var phone: Swift.String?
public var note: Swift.String?
public var noteUpdateMethod: SalemoveSDK.VisitorInfoUpdate.NoteUpdateMethod?
public var externalID: Swift.String?
public var externalID: Swift.String? {
get
set
}
public var customAttributes: [Swift.String : Swift.String]?
public var customAttributesUpdateMethod: SalemoveSDK.VisitorInfoUpdate.CustomAttributesUpdateMethod?
public init(name: Swift.String? = nil, email: Swift.String? = nil, phone: Swift.String? = nil, note: Swift.String? = nil, noteUpdateMethod: SalemoveSDK.VisitorInfoUpdate.NoteUpdateMethod? = nil, externalID: Swift.String? = nil, customAttributes: [Swift.String : Swift.String]? = nil, customAttributesUpdateMethod: SalemoveSDK.VisitorInfoUpdate.CustomAttributesUpdateMethod? = nil)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,10 @@ public struct VisitorInfoUpdate : Swift.Encodable {
public var phone: Swift.String?
public var note: Swift.String?
public var noteUpdateMethod: SalemoveSDK.VisitorInfoUpdate.NoteUpdateMethod?
public var externalID: Swift.String?
public var externalID: Swift.String? {
get
set
}
public var customAttributes: [Swift.String : Swift.String]?
public var customAttributesUpdateMethod: SalemoveSDK.VisitorInfoUpdate.CustomAttributesUpdateMethod?
public init(name: Swift.String? = nil, email: Swift.String? = nil, phone: Swift.String? = nil, note: Swift.String? = nil, noteUpdateMethod: SalemoveSDK.VisitorInfoUpdate.NoteUpdateMethod? = nil, externalID: Swift.String? = nil, customAttributes: [Swift.String : Swift.String]? = nil, customAttributesUpdateMethod: SalemoveSDK.VisitorInfoUpdate.CustomAttributesUpdateMethod? = nil)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -18,31 +18,31 @@
</data>
<key>Info.plist</key>
<data>
aQWSgt2iMDOEUF4Kacj7+k+8hgY=
BnL7j30vGoXtH+ATRSJ+v6Nx9FI=
</data>
<key>Modules/SalemoveSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
pMUd/JjfHrzHl8bz5GXM1IYbJr4=
</data>
<key>Modules/SalemoveSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<data>
3IW0xtekn3EjXP55/zXnPHGbR+M=
uBoEox+/bAxsDxnOVO+Lf/GqVag=
</data>
<key>Modules/SalemoveSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
GtT/P3R7i5JNZjIgk55Ywuru4/Y=
y5MYPdcSJ5TISLMvEubOrnm9XCo=
</data>
<key>Modules/SalemoveSDK.swiftmodule/x86_64.swiftdoc</key>
<data>
pMUd/JjfHrzHl8bz5GXM1IYbJr4=
</data>
<key>Modules/SalemoveSDK.swiftmodule/x86_64.swiftinterface</key>
<data>
3IW0xtekn3EjXP55/zXnPHGbR+M=
uBoEox+/bAxsDxnOVO+Lf/GqVag=
</data>
<key>Modules/SalemoveSDK.swiftmodule/x86_64.swiftmodule</key>
<data>
GtT/P3R7i5JNZjIgk55Ywuru4/Y=
y5MYPdcSJ5TISLMvEubOrnm9XCo=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -83,14 +83,14 @@
<dict>
<key>hash2</key>
<data>
Ru3vTpgmVUgmc+DJlmFOU7S1U2xntZcuqWJJ8m8NtFY=
nLWYfLkbApWN75UUrHSLP8Hb01XW9uQzyqy5qf51lCk=
</data>
</dict>
<key>Modules/SalemoveSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
ZnwRnblNhkL4P1CJC9AxEekA7P4XwcCq3v81qR2rYfM=
dVXjeQkaBSDs8qJUFCmjlNdzapGkBdSBSVBDzBcD83g=
</data>
</dict>
<key>Modules/SalemoveSDK.swiftmodule/x86_64.swiftdoc</key>
Expand All @@ -104,14 +104,14 @@
<dict>
<key>hash2</key>
<data>
Ru3vTpgmVUgmc+DJlmFOU7S1U2xntZcuqWJJ8m8NtFY=
nLWYfLkbApWN75UUrHSLP8Hb01XW9uQzyqy5qf51lCk=
</data>
</dict>
<key>Modules/SalemoveSDK.swiftmodule/x86_64.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
ZnwRnblNhkL4P1CJC9AxEekA7P4XwcCq3v81qR2rYfM=
dVXjeQkaBSDs8qJUFCmjlNdzapGkBdSBSVBDzBcD83g=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down

0 comments on commit f3bdd50

Please sign in to comment.