@teardown/react-native 2.0.36 → 2.0.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teardown/react-native",
3
- "version": "2.0.36",
3
+ "version": "2.0.38",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -52,9 +52,9 @@
52
52
  "prepublishOnly": "bun run build"
53
53
  },
54
54
  "dependencies": {
55
- "@teardown/ingest-api": "2.0.36",
56
- "@teardown/schemas": "2.0.36",
57
- "@teardown/types": "2.0.36",
55
+ "@teardown/ingest-api": "2.0.38",
56
+ "@teardown/schemas": "2.0.38",
57
+ "@teardown/types": "2.0.38",
58
58
  "eventemitter3": "^5.0.1",
59
59
  "react-native-get-random-values": "^2.0.0",
60
60
  "uuid": "^13.0.0",
@@ -63,7 +63,7 @@
63
63
  "devDependencies": {
64
64
  "@biomejs/biome": "2.3.10",
65
65
  "@react-native-firebase/messaging": "*",
66
- "@teardown/tsconfig": "2.0.36",
66
+ "@teardown/tsconfig": "2.0.38",
67
67
  "@types/bun": "1.3.5",
68
68
  "@types/react": "~19.1.0",
69
69
  "@types/uuid": "^11.0.0",
@@ -206,7 +206,7 @@ export class ForceUpdateClient {
206
206
 
207
207
  private updateFromVersionInfo(versionInfo: {
208
208
  status: IdentifyVersionStatusEnum;
209
- update: { release_notes: string | null } | null;
209
+ update: { release_notes?: string | null } | null;
210
210
  }) {
211
211
  const status = versionInfo.status;
212
212
  const releaseNotes = versionInfo.update?.release_notes ?? null;
@@ -39,7 +39,7 @@ export interface UpdateInfo {
39
39
  export interface IdentityUser {
40
40
  session_id: string;
41
41
  device_id: string;
42
- user_id: string;
42
+ user_id?: string;
43
43
  token: string;
44
44
  version_info: {
45
45
  status: IdentifyVersionStatusEnum;