Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions bifrost/lib/clients/jawnTypes/private.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
type JsonValue = string | number | boolean | null | JsonArray | JsonObject;
interface JsonArray extends Array<JsonValue> {}
interface JsonObject { [key: string]: JsonValue; }

/**
* This file was auto-generated by openapi-typescript.
* Do not make direct changes to the file.
Expand Down Expand Up @@ -1096,9 +1100,7 @@ export interface components {
requestsCost: number;
};
};
Json: (string | number | boolean | {
[key: string]: components["schemas"]["Json"];
} | components["schemas"]["Json"][]) | null;
Json: JsonObject;
"ResultSuccess__40_Database-at-public_91_Tables_93_-at-organization_91_Row_93_-and-_role-string__41_-Array_": {
data: (({
tier: string | null;
Expand Down
8 changes: 5 additions & 3 deletions bifrost/lib/clients/jawnTypes/public.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
type JsonValue = string | number | boolean | null | JsonArray | JsonObject;
interface JsonArray extends Array<JsonValue> {}
interface JsonObject { [key: string]: JsonValue; }

/**
* This file was auto-generated by openapi-typescript.
* Do not make direct changes to the file.
Expand Down Expand Up @@ -1604,9 +1608,7 @@ export interface components {
bumpForMajorPromptVersionId?: string;
parentPromptVersionId: string;
};
Json: (string | number | boolean | {
[key: string]: components["schemas"]["Json"];
} | components["schemas"]["Json"][]) | null;
Json: JsonObject;
ExperimentV2PromptVersion: {
created_at: string | null;
experiment_id: string | null;
Expand Down
Loading
Loading