@yaakapp/api 0.2.27 → 0.2.29
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
|
@@ -23,8 +23,11 @@ export type CallHttpAuthenticationRequest = {
|
|
|
23
23
|
headers: Array<HttpHeader>;
|
|
24
24
|
};
|
|
25
25
|
export type CallHttpAuthenticationResponse = {
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
/**
|
|
27
|
+
* HTTP headers to add to the request. Existing headers will be replaced, while
|
|
28
|
+
* new headers will be added.
|
|
29
|
+
*/
|
|
30
|
+
setHeaders: Array<HttpHeader>;
|
|
28
31
|
};
|
|
29
32
|
export type CallHttpRequestActionArgs = {
|
|
30
33
|
httpRequest: HttpRequest;
|
|
@@ -376,7 +379,7 @@ export type PromptTextRequest = {
|
|
|
376
379
|
/**
|
|
377
380
|
* Require the user to enter a non-empty value
|
|
378
381
|
*/
|
|
379
|
-
|
|
382
|
+
required?: boolean;
|
|
380
383
|
};
|
|
381
384
|
export type PromptTextResponse = {
|
|
382
385
|
value: string | null;
|
package/lib/bindings/models.d.ts
CHANGED