@teardown/types 0.1.43 → 0.1.45

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/types",
3
- "version": "0.1.43",
3
+ "version": "0.1.45",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@biomejs/biome": "2.3.8",
45
- "@teardown/tsconfig": "0.1.43",
45
+ "@teardown/tsconfig": "0.1.45",
46
46
  "@types/bun": "1.3.4"
47
47
  },
48
48
  "peerDependencies": {
@@ -30,11 +30,13 @@ export type Database = {
30
30
  ota_update_id: string | null
31
31
  ota_update_runtime_version: string | null
32
32
  ota_updates_enabled: boolean | null
33
+ sdk_name: string
34
+ sdk_version: string
33
35
  started_at: string
34
36
  token: string
35
37
  token_expires_at: string
36
38
  updated_at: string
37
- version: string | null
39
+ version: string
38
40
  version_build_id: string
39
41
  version_id: string
40
42
  }
@@ -53,11 +55,13 @@ export type Database = {
53
55
  ota_update_id?: string | null
54
56
  ota_update_runtime_version?: string | null
55
57
  ota_updates_enabled?: boolean | null
58
+ sdk_name: string
59
+ sdk_version?: string
56
60
  started_at?: string
57
61
  token: string
58
62
  token_expires_at: string
59
63
  updated_at?: string
60
- version?: string | null
64
+ version: string
61
65
  version_build_id: string
62
66
  version_id: string
63
67
  }
@@ -76,11 +80,13 @@ export type Database = {
76
80
  ota_update_id?: string | null
77
81
  ota_update_runtime_version?: string | null
78
82
  ota_updates_enabled?: boolean | null
83
+ sdk_name?: string
84
+ sdk_version?: string
79
85
  started_at?: string
80
86
  token?: string
81
87
  token_expires_at?: string
82
88
  updated_at?: string
83
- version?: string | null
89
+ version?: string
84
90
  version_build_id?: string
85
91
  version_id?: string
86
92
  }