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

chore: generate orval (#10852)

This commit is contained in:
Jaanus Sellin 2025-10-23 15:46:02 +03:00 committed by GitHub
parent e8dc64393e
commit 9b4a729944
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 73 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

@ -831,6 +831,9 @@ export * from './getPersonalDashboard404.js';
export * from './getPersonalDashboardProjectDetails401.js';
export * from './getPersonalDashboardProjectDetails403.js';
export * from './getPersonalDashboardProjectDetails404.js';
export * from './getPlausibleMetrics401.js';
export * from './getPlausibleMetrics403.js';
export * from './getPlausibleMetrics404.js';
export * from './getPlayground400.js';
export * from './getPlayground401.js';
export * from './getProfile401.js';
@ -1109,6 +1112,8 @@ export * from './personalDashboardSchemaFlagsItem.js';
export * from './personalDashboardSchemaProjectOwnersItem.js';
export * from './personalDashboardSchemaProjectOwnersItemOwnerType.js';
export * from './personalDashboardSchemaProjectsItem.js';
export * from './plausibleMetricsResponseSchema.js';
export * from './plausibleMetricsResponseSchemaDataItem.js';
export * from './playgroundConstraintSchema.js';
export * from './playgroundConstraintSchemaOperator.js';
export * from './playgroundFeatureSchema.js';

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;
};