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.
- package/dist/types/types-db.d.ts +8 -8
- package/package.json +1 -1
package/dist/types/types-db.d.ts
CHANGED
|
@@ -294,13 +294,13 @@ export type PreContent = PreContentListAdmin & {
|
|
|
294
294
|
export type PreContentInsert = {
|
|
295
295
|
country_code: string;
|
|
296
296
|
city_code: string;
|
|
297
|
-
|
|
298
|
-
} & Partial<Omit<PreContent, "country_code" | "city_code" | "
|
|
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
|
-
|
|
303
|
-
} & Partial<Omit<PreContent, "country_code" | "city_code" | "
|
|
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
|
-
|
|
452
|
-
} & Partial<Omit<FetchedContent, "country_code" | "city_code" | "
|
|
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
|
-
|
|
457
|
-
} & Partial<Omit<FetchedContent, "country_code" | "city_code" | "
|
|
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;
|