@timothyw/pat-common 1.0.20 → 1.0.21

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.
@@ -103,6 +103,6 @@ export declare const updateUserRequestSchema: z.ZodObject<{
103
103
  } | undefined;
104
104
  }>;
105
105
  export type UpdateUserRequest = z.infer<typeof updateUserRequestSchema>;
106
- export interface UpdateUserConfigResponse {
106
+ export interface UpdateUserResponse {
107
107
  user: UserData;
108
108
  }
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.20",
5
+ "version": "1.0.21",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {
@@ -8,6 +8,6 @@ export const updateUserRequestSchema = userDataSchema
8
8
 
9
9
  export type UpdateUserRequest = z.infer<typeof updateUserRequestSchema>;
10
10
 
11
- export interface UpdateUserConfigResponse {
11
+ export interface UpdateUserResponse {
12
12
  user: UserData
13
13
  }