Skip to content

Commit

Permalink
types
Browse files Browse the repository at this point in the history
  • Loading branch information
chitalian committed Sep 18, 2024
1 parent 4a9617b commit 2cacf47
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions web/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 @@ -1693,9 +1697,7 @@ export interface components {
error: null;
};
"Result_Property-Array.string_": components["schemas"]["ResultSuccess_Property-Array_"] | components["schemas"]["ResultError_string_"];
Json: (string | number | boolean | {
[key: string]: components["schemas"]["Json"];
} | components["schemas"]["Json"][]) | null;
Json: JsonObject;
IntegrationCreateParams: {
integration_name: string;
settings?: components["schemas"]["Json"];
Expand Down

0 comments on commit 2cacf47

Please sign in to comment.