trand_common_v1 0.1.113 → 0.1.114
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.
|
@@ -1290,6 +1290,14 @@ export type CompletedContentGPPhoto = {
|
|
|
1290
1290
|
google_maps_uri: string | null;
|
|
1291
1291
|
display_name: string | null;
|
|
1292
1292
|
};
|
|
1293
|
+
export type CompletedContentGPPhotoInsert = {
|
|
1294
|
+
content_code: string;
|
|
1295
|
+
hash_code: string;
|
|
1296
|
+
} & Partial<Omit<CompletedContentGPPhoto, "content_code" | "hash_code">>;
|
|
1297
|
+
export type CompletedContentGPPhotoUpdate = {
|
|
1298
|
+
content_code: string;
|
|
1299
|
+
hash_code: string;
|
|
1300
|
+
} & Partial<Omit<CompletedContentGPPhoto, "content_code" | "hash_code">>;
|
|
1293
1301
|
export type CompletedContentMetadataI18n = {
|
|
1294
1302
|
content_code: string;
|
|
1295
1303
|
lang_code: string;
|