@yaakapp/api 0.2.27 → 0.2.28
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,7 @@ export type CallHttpAuthenticationRequest = {
|
|
|
23
23
|
headers: Array<HttpHeader>;
|
|
24
24
|
};
|
|
25
25
|
export type CallHttpAuthenticationResponse = {
|
|
26
|
-
|
|
27
|
-
headers: Array<HttpHeader>;
|
|
26
|
+
setHeaders: Array<HttpHeader>;
|
|
28
27
|
};
|
|
29
28
|
export type CallHttpRequestActionArgs = {
|
|
30
29
|
httpRequest: HttpRequest;
|
|
@@ -376,7 +375,7 @@ export type PromptTextRequest = {
|
|
|
376
375
|
/**
|
|
377
376
|
* Require the user to enter a non-empty value
|
|
378
377
|
*/
|
|
379
|
-
|
|
378
|
+
required?: boolean;
|
|
380
379
|
};
|
|
381
380
|
export type PromptTextResponse = {
|
|
382
381
|
value: string | null;
|
package/lib/bindings/models.d.ts
CHANGED