@teardown/ingest-api 0.0.16 → 0.0.17

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.
@@ -52,10 +52,10 @@ export type UpdateInfo = z.infer<typeof UpdateInfoSchema>;
52
52
  * Device info schema
53
53
  */
54
54
  export declare const DeviceInfoSchema: z.ZodObject<{
55
- applicationInfo: z.ZodNullable<z.ZodObject<{
55
+ applicationInfo: z.ZodObject<{
56
56
  version: z.ZodNullable<z.ZodString>;
57
57
  buildNumber: z.ZodNullable<z.ZodString>;
58
- }, z.core.$strip>>;
58
+ }, z.core.$strip>;
59
59
  updateInfo: z.ZodNullable<z.ZodObject<{
60
60
  isEnabled: z.ZodBoolean;
61
61
  updateId: z.ZodNullable<z.ZodString>;
@@ -95,10 +95,10 @@ export type PersonaInfo = z.infer<typeof PersonaInfoSchema>;
95
95
  */
96
96
  export declare const IdentifyRequestSchema: z.ZodObject<{
97
97
  device: z.ZodObject<{
98
- applicationInfo: z.ZodNullable<z.ZodObject<{
98
+ applicationInfo: z.ZodObject<{
99
99
  version: z.ZodNullable<z.ZodString>;
100
100
  buildNumber: z.ZodNullable<z.ZodString>;
101
- }, z.core.$strip>>;
101
+ }, z.core.$strip>;
102
102
  updateInfo: z.ZodNullable<z.ZodObject<{
103
103
  isEnabled: z.ZodBoolean;
104
104
  updateId: z.ZodNullable<z.ZodString>;
@@ -40,7 +40,7 @@ export const UpdateInfoSchema = z.object({
40
40
  * Device info schema
41
41
  */
42
42
  export const DeviceInfoSchema = z.object({
43
- applicationInfo: ApplicationInfoSchema.nullable(),
43
+ applicationInfo: ApplicationInfoSchema,
44
44
  updateInfo: UpdateInfoSchema.nullable(),
45
45
  hardwareInfo: HardwareInfoSchema.nullable(),
46
46
  osInfo: OSInfoSchema.nullable(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teardown/ingest-api",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"