We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a921b02 + 4ac0e64 commit 6d7099bCopy full SHA for 6d7099b
2 files changed
ui-next/src/types/RemoteServiceTypes.ts
@@ -60,10 +60,18 @@ export type Server = {
60
type: "OPENAPI_SPEC" | "USER_DEFINED";
61
};
62
63
+type RequestParam = {
64
+ name: string;
65
+ type: string;
66
+ required: boolean;
67
+ schema?: { type?: string };
68
+};
69
+
70
type commonServiceDef = {
71
name: string;
72
type: string;
73
methods: Method[];
74
+ requestParams?: RequestParam[];
75
serviceURI?: string;
76
config: Config;
77
circuitBreakerEnabled?: boolean;
ui-next/src/utils/flags.ts
@@ -15,6 +15,7 @@ declare global {
15
authorizationEndpoint?: string;
16
tokenEndpoint?: string;
17
endSessionEndpoint?: string;
18
+ isTestEnvironment?: boolean;
19
20
auth0Identifiers?: {
21
domain?: string;
0 commit comments