trand_common_v1 0.2.115 → 0.2.117

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 { TMapCategoryContent } from "../category/t-map-category-content.js";
2
2
  import { TMapCityContent } from "../city/t-map-city-content.js";
3
3
  import { TCompletedYouTubeVideoListForPublicFront } from "../completed_youtube_video/t-completed-youtube-video.js";
4
4
  import { TContentDetail, TContentDetailInsert, TContentDetailUpdate } from "../content/t-content.js";
5
- import { TContentBusinessHours, TContentBusinessHoursUpdate } from "../content/t-content-business-hours.js";
5
+ import { TContentBusinessHours } from "../content/t-content-business-hours.js";
6
6
  import { TContentI18n } from "../content/t-content-i18n.js";
7
7
  import { TContentImage, TContentImageAdminInput } from "../content/t-content-image.js";
8
8
  import { TContentKeyword } from "../content/t-content-keyword.js";
@@ -154,7 +154,7 @@ export type TContentAdminCreateForm = {
154
154
  contentInfo: TContentDetailInsert;
155
155
  description: TContentDescriptionInsert;
156
156
  targets: TContentTargetInsert;
157
- businessHours: TContentBusinessHoursUpdate[];
157
+ businessHours: Partial<Omit<TContentBusinessHours, "content_code">>[];
158
158
  files: Record<string, File | null>;
159
159
  images: TContentImageAdminInput[];
160
160
  };
@@ -162,7 +162,7 @@ export type TContentAdminUpdateForm = {
162
162
  contentInfo: TContentDetailUpdate;
163
163
  description: TContentDescriptionUpdate;
164
164
  targets: TContentTargetUpdate;
165
- businessHours: TContentBusinessHoursUpdate[];
165
+ businessHours: Partial<Omit<TContentBusinessHours, "content_code">>[];
166
166
  files: Record<string, File | null>;
167
167
  images: TContentImageAdminInput[];
168
168
  deletedImageKeys: Set<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trand_common_v1",
3
- "version": "0.2.115",
3
+ "version": "0.2.117",
4
4
  "description": "Common modules for Trand API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "trand"