trand_common_v1 0.1.21 → 0.1.23

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.
@@ -277,8 +277,8 @@ export type PreContent = PreContentListAdmin & {
277
277
  is_dinner: boolean | null;
278
278
  is_bar: boolean | null;
279
279
  is_club: boolean | null;
280
- possible_google_place_ids: string | null;
281
- possible_trip_advisor_ids: string | null;
280
+ possible_google_place_ids: string[] | null;
281
+ possible_trip_advisor_ids: string[] | null;
282
282
  admin_memo: string | null;
283
283
  is_gp_api_fetch_started: boolean | null;
284
284
  is_gp_api_fetch_finished: boolean | null;
@@ -294,13 +294,13 @@ export type PreContent = PreContentListAdmin & {
294
294
  export type PreContentInsert = {
295
295
  country_code: string;
296
296
  city_code: string;
297
- name: string;
298
- } & Partial<Omit<PreContent, "country_code" | "city_code" | "name">>;
297
+ slug_name: string;
298
+ } & Partial<Omit<PreContent, "country_code" | "city_code" | "slug_name">>;
299
299
  export type PreContentUpdate = {
300
300
  country_code: string;
301
301
  city_code: string;
302
- name: string;
303
- } & Partial<Omit<PreContent, "country_code" | "city_code" | "name">>;
302
+ slug_name: string;
303
+ } & Partial<Omit<PreContent, "country_code" | "city_code" | "slug_name">>;
304
304
  export type FetchedContent = {
305
305
  country_code: string;
306
306
  city_code: string;
@@ -448,13 +448,13 @@ export type FetchedContent = {
448
448
  export type FetchedContentInsert = {
449
449
  country_code: string;
450
450
  city_code: string;
451
- name: string;
452
- } & Partial<Omit<FetchedContent, "country_code" | "city_code" | "name">>;
451
+ slug_name: string;
452
+ } & Partial<Omit<FetchedContent, "country_code" | "city_code" | "slug_name">>;
453
453
  export type FetchedContentUpdate = {
454
454
  country_code: string;
455
455
  city_code: string;
456
- name: string;
457
- } & Partial<Omit<FetchedContent, "country_code" | "city_code" | "name">>;
456
+ slug_name: string;
457
+ } & Partial<Omit<FetchedContent, "country_code" | "city_code" | "slug_name">>;
458
458
  export type Content = {
459
459
  country_code: string;
460
460
  city_code: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trand_common_v1",
3
- "version": "0.1.21",
3
+ "version": "0.1.23",
4
4
  "description": "Common modules for Trand API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "trand"