@uniteverses/shared 1.0.99 → 1.0.100
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.
|
@@ -23,17 +23,27 @@ export interface PoliticiansCommunityResidentsExploreOrganizationPhoneInput {
|
|
|
23
23
|
number: string;
|
|
24
24
|
label?: string | null;
|
|
25
25
|
}
|
|
26
|
+
export interface PoliticiansCommunityResidentsExploreOrganizationTranslationInput {
|
|
27
|
+
languageId: string;
|
|
28
|
+
name: string;
|
|
29
|
+
description?: string | null;
|
|
30
|
+
}
|
|
26
31
|
export interface PoliticiansCommunityResidentsExploreOrganizationUpdateInput {
|
|
27
32
|
name?: string;
|
|
28
33
|
description?: string | null;
|
|
29
34
|
imageStoragePath?: string | null;
|
|
30
35
|
addresses?: PoliticiansCommunityResidentsExploreOrganizationAddressInput[];
|
|
31
36
|
phones?: PoliticiansCommunityResidentsExploreOrganizationPhoneInput[];
|
|
32
|
-
translations?:
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
translations?: PoliticiansCommunityResidentsExploreOrganizationTranslationInput[];
|
|
38
|
+
}
|
|
39
|
+
export interface PoliticiansCommunityResidentsExploreOrganizationCreateInput {
|
|
40
|
+
name: string;
|
|
41
|
+
description?: string | null;
|
|
42
|
+
imageStoragePath?: string | null;
|
|
43
|
+
typeIds?: string[];
|
|
44
|
+
addresses?: PoliticiansCommunityResidentsExploreOrganizationAddressInput[];
|
|
45
|
+
phones?: PoliticiansCommunityResidentsExploreOrganizationPhoneInput[];
|
|
46
|
+
translations?: PoliticiansCommunityResidentsExploreOrganizationTranslationInput[];
|
|
37
47
|
}
|
|
38
48
|
export interface PoliticiansCommunityResidentsExploreOrganization {
|
|
39
49
|
id: string;
|
|
@@ -13,3 +13,11 @@ export interface PoliticiansCommunityResidentsExploreType {
|
|
|
13
13
|
createdAt: string;
|
|
14
14
|
translations?: PoliticiansCommunityResidentsExploreTypeTranslation[];
|
|
15
15
|
}
|
|
16
|
+
export interface PoliticiansCommunityResidentsExploreTypeTranslationInput {
|
|
17
|
+
languageId: string;
|
|
18
|
+
name: string;
|
|
19
|
+
}
|
|
20
|
+
export interface PoliticiansCommunityResidentsExploreTypeCreateInput {
|
|
21
|
+
emoji: string;
|
|
22
|
+
translations: PoliticiansCommunityResidentsExploreTypeTranslationInput[];
|
|
23
|
+
}
|