@teardown/types 0.1.23 → 0.1.24

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.23",
3
+ "version": "0.1.24",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -16,6 +16,7 @@ export type Database = {
16
16
  Tables: {
17
17
  device_sessions: {
18
18
  Row: {
19
+ build_number: number
19
20
  created_at: string
20
21
  device_id: string
21
22
  emergency_launch_reason: string | null
@@ -30,13 +31,14 @@ export type Database = {
30
31
  ota_update_runtime_version: string | null
31
32
  ota_updates_enabled: boolean | null
32
33
  started_at: string
33
- token: string | null
34
+ token: string
34
35
  updated_at: string
35
36
  version: string | null
36
- version_build_id: string | null
37
- version_id: string | null
37
+ version_build_id: string
38
+ version_id: string
38
39
  }
39
40
  Insert: {
41
+ build_number: number
40
42
  created_at?: string
41
43
  device_id: string
42
44
  emergency_launch_reason?: string | null
@@ -51,13 +53,14 @@ export type Database = {
51
53
  ota_update_runtime_version?: string | null
52
54
  ota_updates_enabled?: boolean | null
53
55
  started_at?: string
54
- token?: string | null
56
+ token: string
55
57
  updated_at?: string
56
58
  version?: string | null
57
- version_build_id?: string | null
58
- version_id?: string | null
59
+ version_build_id: string
60
+ version_id: string
59
61
  }
60
62
  Update: {
63
+ build_number?: number
61
64
  created_at?: string
62
65
  device_id?: string
63
66
  emergency_launch_reason?: string | null
@@ -72,11 +75,11 @@ export type Database = {
72
75
  ota_update_runtime_version?: string | null
73
76
  ota_updates_enabled?: boolean | null
74
77
  started_at?: string
75
- token?: string | null
78
+ token?: string
76
79
  updated_at?: string
77
80
  version?: string | null
78
- version_build_id?: string | null
79
- version_id?: string | null
81
+ version_build_id?: string
82
+ version_id?: string
80
83
  }
81
84
  Relationships: [
82
85
  {