trand_common_v1 0.2.130 → 0.2.131
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.
|
@@ -11,6 +11,7 @@ import { TContentDetail } from "../content/t-content.js";
|
|
|
11
11
|
import { TInstagramContent } from "../instagram_content/t-instagram-content.js";
|
|
12
12
|
import { ResponseItemsPaired, ResponseListBase } from "./trand-response.js";
|
|
13
13
|
import { ResponseStreetListForPublic } from "./trand-response-street.js";
|
|
14
|
+
import { TCityDescriptionInsert, TCityDescriptionUpdate } from "../city/t-city-description.js";
|
|
14
15
|
export type CityInfoBase = {
|
|
15
16
|
city_code: string;
|
|
16
17
|
name: string;
|
|
@@ -73,13 +74,15 @@ export type ResponseCityDetailForPublic = {
|
|
|
73
74
|
};
|
|
74
75
|
export type TCityAdminCreateForm = {
|
|
75
76
|
cityInfo: TCityDetailInsert;
|
|
77
|
+
description: TCityDescriptionInsert;
|
|
76
78
|
files: Record<string, File | null>;
|
|
77
79
|
images: TCityImageAdminInput[];
|
|
78
80
|
};
|
|
79
81
|
export type TCityAdminUpdateForm = {
|
|
80
82
|
cityInfo: TCityDetailUpdate;
|
|
83
|
+
description: TCityDescriptionUpdate;
|
|
81
84
|
files: Record<string, File | null>;
|
|
82
85
|
images: TCityImageAdminInput[];
|
|
83
|
-
|
|
84
|
-
|
|
86
|
+
deletedThumbnails: Map<string, string>;
|
|
87
|
+
deletedImages: Map<string, string>;
|
|
85
88
|
};
|
|
@@ -10,6 +10,7 @@ import { TStagImage, TStagImageAdminInput } from "../stag/t-stag-image.js";
|
|
|
10
10
|
import { TStagMetadataI18n } from "../stag/t-stag-metadata-i18n.js";
|
|
11
11
|
import { ResponseItemsPaired, ResponseListBase } from "./trand-response.js";
|
|
12
12
|
import { CityInfoBase } from "./trand-response-city.js";
|
|
13
|
+
import { TStagDescriptionInsert, TStagDescriptionUpdate } from "../stag/t-stag-description.js";
|
|
13
14
|
export type StagInfoBase = {
|
|
14
15
|
stag_code: string;
|
|
15
16
|
name: string;
|
|
@@ -78,13 +79,15 @@ export type ResponseStagDetailForPublic = {
|
|
|
78
79
|
};
|
|
79
80
|
export type TStagAdminCreateForm = {
|
|
80
81
|
stagInfo: TStagDetailInsert;
|
|
82
|
+
description: TStagDescriptionInsert;
|
|
81
83
|
files: Record<string, File | null>;
|
|
82
84
|
images: TStagImageAdminInput[];
|
|
83
85
|
};
|
|
84
86
|
export type TStagAdminUpdateForm = {
|
|
85
87
|
stagInfo: TStagDetailUpdate;
|
|
88
|
+
description: TStagDescriptionUpdate;
|
|
86
89
|
files: Record<string, File | null>;
|
|
87
90
|
images: TStagImageAdminInput[];
|
|
88
|
-
|
|
89
|
-
|
|
91
|
+
deletedThumbnails: Map<string, string>;
|
|
92
|
+
deletedImages: Map<string, string>;
|
|
90
93
|
};
|
|
@@ -10,6 +10,7 @@ import { TStreetImage, TStreetImageAdminInput } from "../street/t-street-image.j
|
|
|
10
10
|
import { TStreetMetadataI18n } from "../street/t-street-metadata-i18n.js";
|
|
11
11
|
import { ResponseItemsPaired, ResponseListBase } from "./trand-response.js";
|
|
12
12
|
import { CityInfoBase } from "./trand-response-city.js";
|
|
13
|
+
import { TStreetDescriptionInsert, TStreetDescriptionUpdate } from "../street/t-street-description.js";
|
|
13
14
|
export type StreetInfoBase = {
|
|
14
15
|
street_code: string;
|
|
15
16
|
name: string;
|
|
@@ -86,13 +87,15 @@ export type ResponseStreetDetailForPublic = {
|
|
|
86
87
|
};
|
|
87
88
|
export type TStreetAdminCreateForm = {
|
|
88
89
|
streetInfo: TStreetDetailInsert;
|
|
90
|
+
description: TStreetDescriptionInsert;
|
|
89
91
|
files: Record<string, File | null>;
|
|
90
92
|
images: TStreetImageAdminInput[];
|
|
91
93
|
};
|
|
92
94
|
export type TStreetAdminUpdateForm = {
|
|
93
95
|
streetInfo: TStreetDetailUpdate;
|
|
96
|
+
description: TStreetDescriptionUpdate;
|
|
94
97
|
files: Record<string, File | null>;
|
|
95
98
|
images: TStreetImageAdminInput[];
|
|
96
|
-
|
|
97
|
-
|
|
99
|
+
deletedThumbnails: Map<string, string>;
|
|
100
|
+
deletedImages: Map<string, string>;
|
|
98
101
|
};
|