@teardown/schemas 0.1.39 → 0.1.41
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 +6 -6
- package/src/.DS_Store +0 -0
- package/src/modules/identify/schemas.ts +0 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teardown/schemas",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.41",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -93,14 +93,14 @@
|
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
95
|
"@sinclair/typebox": "^0.34.41",
|
|
96
|
-
"@teardown/types": "0.1.
|
|
96
|
+
"@teardown/types": "0.1.41"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
|
-
"@biomejs/biome": "2.3.
|
|
100
|
-
"@teardown/tsconfig": "0.1.
|
|
101
|
-
"typescript": "
|
|
99
|
+
"@biomejs/biome": "2.3.8",
|
|
100
|
+
"@teardown/tsconfig": "0.1.41",
|
|
101
|
+
"typescript": "5.9.3"
|
|
102
102
|
},
|
|
103
103
|
"peerDependencies": {
|
|
104
|
-
"typescript": "
|
|
104
|
+
"typescript": "5.9.3"
|
|
105
105
|
}
|
|
106
106
|
}
|
package/src/.DS_Store
ADDED
|
Binary file
|
|
@@ -114,10 +114,6 @@ export const DeviceInfoSchema = Type.Object({
|
|
|
114
114
|
* Update info (optional) - not all builds will have an update
|
|
115
115
|
*/
|
|
116
116
|
update: Type.Union([DeviceUpdateInfoSchema, Type.Null()]),
|
|
117
|
-
/**
|
|
118
|
-
* Notifications info (optional)
|
|
119
|
-
*/
|
|
120
|
-
notifications: Type.Union([NotificationsInfoSchema, Type.Null()]),
|
|
121
117
|
});
|
|
122
118
|
export type DeviceInfo = Static<typeof DeviceInfoSchema>;
|
|
123
119
|
|