@uniteverses/shared 1.0.32 → 1.0.34

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.
@@ -42,11 +42,20 @@ export interface User {
42
42
  username: string;
43
43
  createdAt: string | Date;
44
44
  }
45
+ export interface CreateUserInput {
46
+ id: string;
47
+ firstName: string;
48
+ lastName: string;
49
+ username: string;
50
+ }
45
51
  export interface UpdateUserInput {
46
52
  firstName?: string;
47
53
  lastName?: string;
48
54
  username?: string;
49
55
  }
56
+ export interface CheckUsernameResult {
57
+ available: boolean;
58
+ }
50
59
  export interface CheckProfileResult {
51
60
  exists: boolean;
52
61
  }
@@ -358,6 +367,14 @@ export interface OrgFoodGroupItem {
358
367
  createdAt: string | Date;
359
368
  foodItem: OrgFoodItem;
360
369
  }
370
+ export interface Inquiry {
371
+ id: string;
372
+ message: string;
373
+ createdAt: string | Date;
374
+ }
375
+ export interface CreateInquiryInput {
376
+ message: string;
377
+ }
361
378
  export interface OrgFoodGroupWithChildren {
362
379
  id: string;
363
380
  organizationId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [