Skip to content

Commit 6d7099b

Browse files
Merge branch 'main' into fix/workflow-monitor-oom
2 parents a921b02 + 4ac0e64 commit 6d7099b

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

ui-next/src/types/RemoteServiceTypes.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,18 @@ export type Server = {
6060
type: "OPENAPI_SPEC" | "USER_DEFINED";
6161
};
6262

63+
type RequestParam = {
64+
name: string;
65+
type: string;
66+
required: boolean;
67+
schema?: { type?: string };
68+
};
69+
6370
type commonServiceDef = {
6471
name: string;
6572
type: string;
6673
methods: Method[];
74+
requestParams?: RequestParam[];
6775
serviceURI?: string;
6876
config: Config;
6977
circuitBreakerEnabled?: boolean;

ui-next/src/utils/flags.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ declare global {
1515
authorizationEndpoint?: string;
1616
tokenEndpoint?: string;
1717
endSessionEndpoint?: string;
18+
isTestEnvironment?: boolean;
1819
};
1920
auth0Identifiers?: {
2021
domain?: string;

0 commit comments

Comments
 (0)