trand_common_v1 0.2.37 → 0.2.39

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.
@@ -2,7 +2,7 @@ import { TCategoryDetail, TCategoryListForAdmin, TCategoryListForPublic } from "
2
2
  import { TCityDetail } from "../types/t-city";
3
3
  import { TCompletedYouTubeChannelDetail } from "../types/t-completed-youtube-channel";
4
4
  import { TCompletedYouTubeVideoDetail, TCompletedYouTubeVideoListForPublicFront } from "../types/t-completed-youtube-video";
5
- import { TContentDetail, TContentListForPublicFrontList } from "../types/t-content";
5
+ import { TContentDetail } from "../types/t-content";
6
6
  import { TContentGPPhoto } from "../types/t-content-gp-photo";
7
7
  import { TContentI18n } from "../types/t-content-i18n";
8
8
  import { TContentImage } from "../types/t-content-image";
@@ -66,7 +66,7 @@ export type ResponseCityDetailForPublic = {
66
66
  streets?: TStreetListForCityDetail[];
67
67
  mapCityContent?: {
68
68
  map: TMapTypeAndContent;
69
- content: TContentListForPublicFrontList;
69
+ content: TContentDetail;
70
70
  }[];
71
71
  mapCitySelectedContent?: TMapTypeAndSelectedContent[];
72
72
  mapCityYouTubeVideo?: {
@@ -108,7 +108,7 @@ export type ResponseStreetDetailForPublic = {
108
108
  metadataI18n?: TRelatedMetadataI18n;
109
109
  mapStreetContent?: {
110
110
  map: TMapTypeAndContent;
111
- content: TContentListForPublicFrontList;
111
+ content: TContentDetail;
112
112
  }[];
113
113
  mapStreetSelectedContent?: TMapTypeAndSelectedContent[];
114
114
  mapStreetYouTubeVideo?: {
@@ -147,7 +147,7 @@ export type ResponseCategoryDetailForPublic = {
147
147
  metadataI18n?: TRelatedMetadataI18n;
148
148
  mapCategoryContent?: {
149
149
  map: TMapTypeAndContent;
150
- content: TContentListForPublicFrontList;
150
+ content: TContentDetail;
151
151
  }[];
152
152
  mapCategorySelectedContent?: TMapTypeAndSelectedContent[];
153
153
  mapCategoryYouTubeVideo?: {
@@ -213,7 +213,7 @@ export type ResponseStagDetailForPublic = {
213
213
  metadataI18n?: TRelatedMetadataI18n;
214
214
  mapStagContent?: {
215
215
  map: TMapTypeAndContent;
216
- content: TContentListForPublicFrontList;
216
+ content: TContentDetail;
217
217
  }[];
218
218
  mapStagSelectedContent?: TMapTypeAndSelectedContent[];
219
219
  mapStagYouTubeVideo?: {
@@ -240,7 +240,7 @@ export type ResponseStagDetailByCityForPublic = {
240
240
  metadataI18n?: TRelatedMetadataI18n;
241
241
  mapStagContent?: {
242
242
  map: TMapTypeAndContent;
243
- content: TContentListForPublicFrontList;
243
+ content: TContentDetail;
244
244
  }[];
245
245
  mapStagSelectedContent?: TMapTypeAndSelectedContent[];
246
246
  mapStagYouTubeVideo?: {
@@ -335,6 +335,19 @@ export type ResponseContentDetailForPublic = {
335
335
  content: TTag;
336
336
  }[];
337
337
  };
338
+ /**
339
+ * Response Tag Detail For Public
340
+ */
341
+ export type ResponseTagDetailForPublic = {
342
+ tag: TTag;
343
+ cityDetail: {
344
+ name: string;
345
+ };
346
+ mapTagContent?: {
347
+ map: TMapTagAndContent;
348
+ content: TContentDetail;
349
+ }[];
350
+ };
338
351
  /**
339
352
  * Response Metadata For Public HTML head
340
353
  * Street, Stag, Content
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trand_common_v1",
3
- "version": "0.2.37",
3
+ "version": "0.2.39",
4
4
  "description": "Common modules for Trand API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "trand"