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:
parent
e8dc64393e
commit
9b4a729944
14
frontend/src/openapi/models/getPlausibleMetrics401.ts
Normal file
14
frontend/src/openapi/models/getPlausibleMetrics401.ts
Normal 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;
|
||||||
|
};
|
||||||
14
frontend/src/openapi/models/getPlausibleMetrics403.ts
Normal file
14
frontend/src/openapi/models/getPlausibleMetrics403.ts
Normal 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;
|
||||||
|
};
|
||||||
14
frontend/src/openapi/models/getPlausibleMetrics404.ts
Normal file
14
frontend/src/openapi/models/getPlausibleMetrics404.ts
Normal 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;
|
||||||
|
};
|
||||||
@ -831,6 +831,9 @@ export * from './getPersonalDashboard404.js';
|
|||||||
export * from './getPersonalDashboardProjectDetails401.js';
|
export * from './getPersonalDashboardProjectDetails401.js';
|
||||||
export * from './getPersonalDashboardProjectDetails403.js';
|
export * from './getPersonalDashboardProjectDetails403.js';
|
||||||
export * from './getPersonalDashboardProjectDetails404.js';
|
export * from './getPersonalDashboardProjectDetails404.js';
|
||||||
|
export * from './getPlausibleMetrics401.js';
|
||||||
|
export * from './getPlausibleMetrics403.js';
|
||||||
|
export * from './getPlausibleMetrics404.js';
|
||||||
export * from './getPlayground400.js';
|
export * from './getPlayground400.js';
|
||||||
export * from './getPlayground401.js';
|
export * from './getPlayground401.js';
|
||||||
export * from './getProfile401.js';
|
export * from './getProfile401.js';
|
||||||
@ -1109,6 +1112,8 @@ export * from './personalDashboardSchemaFlagsItem.js';
|
|||||||
export * from './personalDashboardSchemaProjectOwnersItem.js';
|
export * from './personalDashboardSchemaProjectOwnersItem.js';
|
||||||
export * from './personalDashboardSchemaProjectOwnersItemOwnerType.js';
|
export * from './personalDashboardSchemaProjectOwnersItemOwnerType.js';
|
||||||
export * from './personalDashboardSchemaProjectsItem.js';
|
export * from './personalDashboardSchemaProjectsItem.js';
|
||||||
|
export * from './plausibleMetricsResponseSchema.js';
|
||||||
|
export * from './plausibleMetricsResponseSchemaDataItem.js';
|
||||||
export * from './playgroundConstraintSchema.js';
|
export * from './playgroundConstraintSchema.js';
|
||||||
export * from './playgroundConstraintSchemaOperator.js';
|
export * from './playgroundConstraintSchemaOperator.js';
|
||||||
export * from './playgroundFeatureSchema.js';
|
export * from './playgroundFeatureSchema.js';
|
||||||
|
|||||||
@ -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[];
|
||||||
|
}
|
||||||
@ -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;
|
||||||
|
};
|
||||||
Loading…
Reference in New Issue
Block a user