Merge pull request #485 from buster-so/dallin/bus-1366-5k-records-returned-notification

add has_more_records to the server shared type
This commit is contained in:
dal 2025-07-11 14:39:27 -07:00 committed by GitHub
commit 59f850e792
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

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