Skip to content

Commit a1d004b

Browse files
chore(release): 7.3.5
1 parent 9e940a1 commit a1d004b

3 files changed

Lines changed: 16 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [7.3.5](https://github.com/smallcase/react-native-smallcase-gateway/compare/v7.3.4...v7.3.5) (2026-03-29)
6+
7+
8+
### Features
9+
10+
* add IMR_SETUP transaction type and bump SCGateway pod to 7.1.6 ([d411416](https://github.com/smallcase/react-native-smallcase-gateway/commit/d41141669da49d79988d43b9e476ed0eb07ae00c))
11+
512
### [7.3.4](https://github.com/smallcase/react-native-smallcase-gateway/compare/v7.3.3...v7.3.4) (2026-03-23)
613

714
### [7.3.3](https://github.com/smallcase/react-native-smallcase-gateway/compare/v7.3.2...v7.3.3) (2026-03-23)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-smallcase-gateway",
33
"title": "React Native Smallcase Gateway",
4-
"version": "7.3.4",
4+
"version": "7.3.5",
55
"description": "smallcase gateway bindings for react native",
66
"main": "src/index.js",
77
"files": [

src/SCGatewayEventEmitter.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@ class SCGatewayEvents {
118118
}
119119

120120
if (typeof callback !== 'function') {
121-
console.warn('[SCGatewayEvents] Invalid callback provided for SmallPlug subscription');
121+
console.warn(
122+
'[SCGatewayEvents] Invalid callback provided for SmallPlug subscription'
123+
);
122124
return null;
123125
}
124126

@@ -134,7 +136,11 @@ class SCGatewayEvents {
134136
}
135137
if (parsed.type !== 'smallplug_analytics_event') return;
136138
const { eventName, data } = parsed.data ?? {};
137-
callback({ eventName, data, timestamp: parsed.timestamp ?? Date.now() });
139+
callback({
140+
eventName,
141+
data,
142+
timestamp: parsed.timestamp ?? Date.now(),
143+
});
138144
}
139145
);
140146

0 commit comments

Comments
 (0)