trand_common_v1 0.1.21 → 0.1.22

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.
@@ -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.22",
4
4
  "description": "Common modules for Trand API Server and Admin User Frontend",
5
5
  "keywords": [
6
6
  "trand"