@uniteverses/shared 1.0.106 → 1.0.108

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.
@@ -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;
@@ -33,6 +38,13 @@ export interface PoliticiansCommunityResidentsExploreProfilePublic {
33
38
  imageUrl?: string | null;
34
39
  translations: PoliticiansCommunityResidentsExploreProfilePublicTranslation[];
35
40
  }
41
+ export interface PoliticiansCommunityResidentsExploreProfileMapItem {
42
+ id: string;
43
+ imageUrl?: string | null;
44
+ latitude: number | null;
45
+ longitude: number | null;
46
+ translations: PoliticiansCommunityResidentsExploreProfilePublicTranslation[];
47
+ }
36
48
  export interface PoliticiansCommunityResidentsExploreProfileTranslationInput {
37
49
  languageId: string;
38
50
  firstName: string;
@@ -43,11 +55,13 @@ export interface PoliticiansCommunityResidentsExploreProfileTranslationInput {
43
55
  }
44
56
  export interface PoliticiansCommunityResidentsExploreProfileCreateInput {
45
57
  dob: string;
58
+ organizationId?: string | null;
46
59
  imageStoragePath?: string | null;
47
60
  translations: PoliticiansCommunityResidentsExploreProfileTranslationInput[];
48
61
  }
49
62
  export interface PoliticiansCommunityResidentsExploreProfileUpdateInput {
50
63
  dob?: string;
64
+ organizationId?: string | null;
51
65
  imageStoragePath?: string | null;
52
66
  translations?: PoliticiansCommunityResidentsExploreProfileTranslationInput[];
53
67
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.106",
3
+ "version": "1.0.108",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [