@timothyw/pat-common 1.0.10 → 1.0.11

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.
@@ -6,5 +6,3 @@ exports.updateUserConfigRequestSchema = models_1.userConfigSchema
6
6
  .omit({ _id: true, createdAt: true, updatedAt: true })
7
7
  .partial()
8
8
  .strict();
9
- const test = null;
10
- test.iosApp;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@timothyw/pat-common",
3
3
  "description": "",
4
4
  "author": "Timothy Washburn",
5
- "version": "1.0.10",
5
+ "version": "1.0.11",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {
@@ -1,5 +1,4 @@
1
1
  import { z } from "zod";
2
- import { UserId } from "../../id-types";
3
2
  import { UserConfig, userConfigSchema } from "../../models";
4
3
 
5
4
  export const updateUserConfigRequestSchema = userConfigSchema
@@ -9,9 +8,6 @@ export const updateUserConfigRequestSchema = userConfigSchema
9
8
 
10
9
  export type UpdateUserConfigRequest = z.infer<typeof updateUserConfigRequestSchema>;
11
10
 
12
- const test: UpdateUserConfigRequest | null = null;
13
- test!.iosApp
14
-
15
11
  export interface UpdateUserConfigResponse {
16
12
  user: UserConfig
17
13
  }