harvester_sdk 1.0.10 → 1.0.11
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.d.ts +2 -0
- package/package.json +1 -1
- package/types.ts +2 -0
package/dist/types.d.ts
CHANGED
|
@@ -1793,6 +1793,8 @@ export type DataType = z.infer<typeof zodDataSchema>;
|
|
|
1793
1793
|
export type MediaItemType = z.infer<typeof mediaItemSchema>;
|
|
1794
1794
|
export type AuthorType = z.infer<typeof authorSchema>;
|
|
1795
1795
|
export type RepliesInfoType = z.infer<typeof repliesInfoSchema>;
|
|
1796
|
+
export type GeoType = z.infer<typeof zodGeoSchema>;
|
|
1797
|
+
export type GeoSelectionType = z.infer<typeof zodGeoSelectionSchema>;
|
|
1796
1798
|
export type TelegramMetadataType = z.infer<typeof telegramMetadataSchema>;
|
|
1797
1799
|
export type FacebookMetadataType = z.infer<typeof facebookMetadataSchema>;
|
|
1798
1800
|
export type InstagramMetadataType = z.infer<typeof instagramMetadataSchema>;
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -328,6 +328,8 @@ export type DataType = z.infer<typeof zodDataSchema>;
|
|
|
328
328
|
export type MediaItemType = z.infer<typeof mediaItemSchema>;
|
|
329
329
|
export type AuthorType = z.infer<typeof authorSchema>;
|
|
330
330
|
export type RepliesInfoType = z.infer<typeof repliesInfoSchema>;
|
|
331
|
+
export type GeoType = z.infer<typeof zodGeoSchema>;
|
|
332
|
+
export type GeoSelectionType = z.infer<typeof zodGeoSelectionSchema>;
|
|
331
333
|
|
|
332
334
|
// Platform-specific metadata types
|
|
333
335
|
export type TelegramMetadataType = z.infer<typeof telegramMetadataSchema>;
|