asfur 1.0.129 → 1.0.130
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
|
@@ -2302,6 +2302,7 @@ export type HeatmapType = z.infer<typeof zodHeatmapSchema>;
|
|
|
2302
2302
|
export type SendEmailType = z.infer<typeof zodSendEmailSchema>;
|
|
2303
2303
|
export type SendWhatsappType = z.infer<typeof zodSendWhatsappSchema>;
|
|
2304
2304
|
export type PredefinedQueryType = z.infer<typeof zodPredefinedQuerySchema>;
|
|
2305
|
+
export type GeoSelectionGroupType = z.infer<typeof zodGeoSelectionGroupSchema>;
|
|
2305
2306
|
export type UserPublicMetadata = {
|
|
2306
2307
|
is_admin?: boolean;
|
|
2307
2308
|
regions?: {
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -408,6 +408,7 @@ export type HeatmapType = z.infer<typeof zodHeatmapSchema>;
|
|
|
408
408
|
export type SendEmailType = z.infer<typeof zodSendEmailSchema>;
|
|
409
409
|
export type SendWhatsappType = z.infer<typeof zodSendWhatsappSchema>;
|
|
410
410
|
export type PredefinedQueryType = z.infer<typeof zodPredefinedQuerySchema>;
|
|
411
|
+
export type GeoSelectionGroupType = z.infer<typeof zodGeoSelectionGroupSchema>;
|
|
411
412
|
|
|
412
413
|
export type UserPublicMetadata = {
|
|
413
414
|
is_admin?: boolean;
|