add has_more_records to the server shared type

This commit is contained in:
dal 2025-07-11 15:30:53 -06:00
parent 7277e45235
commit 10431a81d3
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
1 changed files with 1 additions and 0 deletions

View File

@ -24,6 +24,7 @@ export const MetricDataResponseSchema = z.object({
data: DataResultSchema.nullable(),
data_metadata: DataMetadataSchema,
metricId: z.string(),
has_more_records: z.boolean(),
});
export type GetMetricResponse = z.infer<typeof GetMetricResponseSchema>;