@uniteverses/shared 1.0.105 → 1.0.107

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.
@@ -22,6 +22,7 @@ export interface PoliticiansCommunityResidentsExploreOrganizationEvent {
22
22
  isActive: boolean;
23
23
  createdAt: string;
24
24
  pinned: boolean;
25
+ hasChat: boolean;
25
26
  translations: PoliticiansCommunityResidentsExploreOrganizationEventTranslation[];
26
27
  imageUrl?: string | null;
27
28
  _count?: {
@@ -45,6 +46,7 @@ export interface PoliticiansCommunityResidentsExploreOrganizationEventCreateInpu
45
46
  imageStoragePath?: string | null;
46
47
  isActive?: boolean;
47
48
  pinned?: boolean;
49
+ hasChat?: boolean;
48
50
  typeIds?: string[];
49
51
  translations: {
50
52
  languageId: string;
@@ -56,6 +58,7 @@ export interface PoliticiansCommunityResidentsExploreOrganizationEventUpdateInpu
56
58
  imageStoragePath?: string | null;
57
59
  isActive?: boolean;
58
60
  pinned?: boolean;
61
+ hasChat?: boolean;
59
62
  typeIds?: string[];
60
63
  translations?: {
61
64
  languageId: string;
@@ -14,6 +14,11 @@ export interface PoliticiansCommunityResidentsExploreProfileTranslation {
14
14
  export interface PoliticiansCommunityResidentsExploreProfile {
15
15
  id: string;
16
16
  userId: string;
17
+ organizationId?: string | null;
18
+ organization?: {
19
+ id: string;
20
+ name: string;
21
+ } | null;
17
22
  dob: string;
18
23
  imageUrl?: string | null;
19
24
  createdAt: string;
@@ -43,11 +48,13 @@ export interface PoliticiansCommunityResidentsExploreProfileTranslationInput {
43
48
  }
44
49
  export interface PoliticiansCommunityResidentsExploreProfileCreateInput {
45
50
  dob: string;
51
+ organizationId?: string | null;
46
52
  imageStoragePath?: string | null;
47
53
  translations: PoliticiansCommunityResidentsExploreProfileTranslationInput[];
48
54
  }
49
55
  export interface PoliticiansCommunityResidentsExploreProfileUpdateInput {
50
56
  dob?: string;
57
+ organizationId?: string | null;
51
58
  imageStoragePath?: string | null;
52
59
  translations?: PoliticiansCommunityResidentsExploreProfileTranslationInput[];
53
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.105",
3
+ "version": "1.0.107",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [