@teardown/ingest-api 2.0.29 → 2.0.30
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/generated/app.d.ts +13 -15
- package/package.json +6 -5
package/generated/app.d.ts
CHANGED
|
@@ -114,6 +114,14 @@ export declare const baseApp: Elysia<"", {
|
|
|
114
114
|
is_embedded_launch: boolean;
|
|
115
115
|
created_at: string;
|
|
116
116
|
} | null;
|
|
117
|
+
notifications?: {
|
|
118
|
+
push: {
|
|
119
|
+
enabled: boolean;
|
|
120
|
+
granted: boolean;
|
|
121
|
+
token: string | null;
|
|
122
|
+
platform: import("@teardown/schemas").NotificationPlatformEnum;
|
|
123
|
+
};
|
|
124
|
+
} | undefined;
|
|
117
125
|
};
|
|
118
126
|
user?: {
|
|
119
127
|
persona_id?: string | undefined;
|
|
@@ -143,21 +151,11 @@ export declare const baseApp: Elysia<"", {
|
|
|
143
151
|
version_info: {
|
|
144
152
|
status: import("@teardown/schemas").IdentifyVersionStatusEnum;
|
|
145
153
|
update: {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
effective_date: Date;
|
|
152
|
-
};
|
|
153
|
-
} | {
|
|
154
|
-
status: import("@teardown/schemas").IdentifyVersionStatusEnum.UPDATE_RECOMMENDED;
|
|
155
|
-
update: {
|
|
156
|
-
version: string;
|
|
157
|
-
build: string;
|
|
158
|
-
update_id: string;
|
|
159
|
-
effective_date: Date;
|
|
160
|
-
};
|
|
154
|
+
version: string;
|
|
155
|
+
build: string;
|
|
156
|
+
update_id: string;
|
|
157
|
+
effective_date: Date;
|
|
158
|
+
release_notes: string | null;
|
|
161
159
|
} | null;
|
|
162
160
|
};
|
|
163
161
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teardown/ingest-api",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.30",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -39,9 +39,10 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@elysiajs/eden": "1.4.5",
|
|
42
|
-
"@teardown/errors": "2.0.
|
|
43
|
-
"@teardown/schemas": "2.0.
|
|
44
|
-
"@teardown/types": "2.0.
|
|
42
|
+
"@teardown/errors": "2.0.30",
|
|
43
|
+
"@teardown/schemas": "2.0.30",
|
|
44
|
+
"@teardown/types": "2.0.30",
|
|
45
|
+
"elysia": "1.4.16",
|
|
45
46
|
"zod": "4.2.1"
|
|
46
47
|
},
|
|
47
48
|
"peerDependencies": {
|
|
@@ -50,6 +51,6 @@
|
|
|
50
51
|
"devDependencies": {
|
|
51
52
|
"@biomejs/biome": "2.3.10",
|
|
52
53
|
"@types/bun": "1.3.5",
|
|
53
|
-
"@teardown/tsconfig": "2.0.
|
|
54
|
+
"@teardown/tsconfig": "2.0.30"
|
|
54
55
|
}
|
|
55
56
|
}
|