1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-27 11:02:16 +01:00

chore: generate orval

This commit is contained in:
Jaanus 2025-10-23 15:39:59 +03:00
parent d0c70fcc7d
commit 95141b79e8
No known key found for this signature in database
5 changed files with 68 additions and 0 deletions

View File

@ -0,0 +1,14 @@
/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
export type GetPlausibleMetrics401 = {
/** The ID of the error instance */
id?: string;
/** A description of what went wrong. */
message?: string;
/** The name of the error kind */
name?: string;
};

View File

@ -0,0 +1,14 @@
/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
export type GetPlausibleMetrics403 = {
/** The ID of the error instance */
id?: string;
/** A description of what went wrong. */
message?: string;
/** The name of the error kind */
name?: string;
};

View File

@ -0,0 +1,14 @@
/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
export type GetPlausibleMetrics404 = {
/** The ID of the error instance */
id?: string;
/** A description of what went wrong. */
message?: string;
/** The name of the error kind */
name?: string;
};

View File

@ -0,0 +1,14 @@
/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { PlausibleMetricsResponseSchemaDataItem } from './plausibleMetricsResponseSchemaDataItem.js';
/**
* Response containing Plausible analytics data for favorite events.
*/
export interface PlausibleMetricsResponseSchema {
/** Array of analytics data points */
data: PlausibleMetricsResponseSchemaDataItem[];
}

View File

@ -0,0 +1,12 @@
/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
export type PlausibleMetricsResponseSchemaDataItem = {
/** Number of events for this time period */
count: number;
/** Date and time of the event (hourly granularity) */
date: string;
};