Skip to content

Commit 4120fd9

Browse files
committed
MAAnalyticsInfo fix
1 parent 00a19cb commit 4120fd9

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
**SDK**
55
- **Feature:** Updated `loadFromBundle(miniAppManifest:completionHandler)` interface with optional MiniAppManifest object.
66
- **Feature:** Added a new property in MiniAppViewable class to Enable/Disable 3D touch for the Miniapp that is launched.
7+
- **Fix:** Enable variables to public for `MAAnalyticsInfo`
78

89
**Sample App**
910
- **Feature:** Updated Sample app to send `miniAppManifest` while loading from bundle

Sources/Classes/core/Models/MAAnalyticsInfo.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ public enum MAAnalyticsActionType: String, Codable {
1616
}
1717

1818
public class MAAnalyticsInfo: Codable {
19-
let eventType: MAAnalyticsEventType
20-
let actionType: MAAnalyticsActionType
21-
let pageName: String
22-
let componentName: String
23-
let elementType: String
24-
let data: String
19+
public let eventType: MAAnalyticsEventType
20+
public let actionType: MAAnalyticsActionType
21+
public let pageName: String
22+
public let componentName: String
23+
public let elementType: String
24+
public let data: String
2525

2626
public init(eventType: MAAnalyticsEventType,
2727
actionType: MAAnalyticsActionType,

0 commit comments

Comments
 (0)