@yaakapp/api 0.2.23 → 0.2.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/bindings/events.d.ts
CHANGED
|
@@ -205,7 +205,7 @@ export type FormInputText = {
|
|
|
205
205
|
};
|
|
206
206
|
export type GetHttpAuthenticationResponse = {
|
|
207
207
|
name: string;
|
|
208
|
-
config: Array<
|
|
208
|
+
config: Array<FormInput>;
|
|
209
209
|
};
|
|
210
210
|
export type GetHttpRequestActionsRequest = Record<string, never>;
|
|
211
211
|
export type GetHttpRequestActionsResponse = {
|
|
@@ -222,10 +222,6 @@ export type GetTemplateFunctionsResponse = {
|
|
|
222
222
|
functions: Array<TemplateFunction>;
|
|
223
223
|
pluginRefId: string;
|
|
224
224
|
};
|
|
225
|
-
export type HttpAuthenticationConfigInput = {
|
|
226
|
-
name: string;
|
|
227
|
-
args: Array<FormInput>;
|
|
228
|
-
};
|
|
229
225
|
export type HttpHeader = {
|
|
230
226
|
name: string;
|
|
231
227
|
value: string;
|
package/lib/bindings/models.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export type GrpcMetadataEntry = {
|
|
|
29
29
|
enabled?: boolean;
|
|
30
30
|
name: string;
|
|
31
31
|
value: string;
|
|
32
|
-
id
|
|
32
|
+
id?: string;
|
|
33
33
|
};
|
|
34
34
|
export type GrpcRequest = {
|
|
35
35
|
model: "grpc_request";
|
|
@@ -72,7 +72,7 @@ export type HttpRequestHeader = {
|
|
|
72
72
|
enabled?: boolean;
|
|
73
73
|
name: string;
|
|
74
74
|
value: string;
|
|
75
|
-
id
|
|
75
|
+
id?: string;
|
|
76
76
|
};
|
|
77
77
|
export type HttpResponse = {
|
|
78
78
|
model: "http_response";
|
|
@@ -103,7 +103,7 @@ export type HttpUrlParameter = {
|
|
|
103
103
|
enabled?: boolean;
|
|
104
104
|
name: string;
|
|
105
105
|
value: string;
|
|
106
|
-
id
|
|
106
|
+
id?: string;
|
|
107
107
|
};
|
|
108
108
|
export type Workspace = {
|
|
109
109
|
model: "workspace";
|