harvester_sdk 1.0.49 → 1.0.50
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 +1 -0
- package/package.json +1 -1
- package/types.ts +1 -0
package/dist/types.d.ts
CHANGED
|
@@ -2012,6 +2012,7 @@ export type GeoType = z.infer<typeof zodGeoSchema>;
|
|
|
2012
2012
|
export type GeoSelectionType = z.infer<typeof zodGeoSelectionSchema>;
|
|
2013
2013
|
export type DashboardStatsType = z.infer<typeof zodDashboardStatsSchema>;
|
|
2014
2014
|
export type RegionSummaryType = z.infer<typeof zodRegionSummarySchema>;
|
|
2015
|
+
export type ServerReportType = z.infer<typeof zodServerReportSchema>;
|
|
2015
2016
|
export type TelegramMetadataType = z.infer<typeof telegramMetadataSchema>;
|
|
2016
2017
|
export type FacebookMetadataType = z.infer<typeof facebookMetadataSchema>;
|
|
2017
2018
|
export type InstagramMetadataType = z.infer<typeof instagramMetadataSchema>;
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -452,6 +452,7 @@ export type GeoType = z.infer<typeof zodGeoSchema>;
|
|
|
452
452
|
export type GeoSelectionType = z.infer<typeof zodGeoSelectionSchema>;
|
|
453
453
|
export type DashboardStatsType = z.infer<typeof zodDashboardStatsSchema>;
|
|
454
454
|
export type RegionSummaryType = z.infer<typeof zodRegionSummarySchema>;
|
|
455
|
+
export type ServerReportType = z.infer<typeof zodServerReportSchema>;
|
|
455
456
|
|
|
456
457
|
// Platform-specific metadata types
|
|
457
458
|
export type TelegramMetadataType = z.infer<typeof telegramMetadataSchema>;
|