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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harvester_sdk",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "SDK for interacting with the Harvester API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
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>;