@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.
@@ -23,8 +23,11 @@ export type CallHttpAuthenticationRequest = {
23
23
  headers: Array<HttpHeader>;
24
24
  };
25
25
  export type CallHttpAuthenticationResponse = {
26
- url: string;
27
- headers: Array<HttpHeader>;
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
- require?: boolean;
382
+ required?: boolean;
380
383
  };
381
384
  export type PromptTextResponse = {
382
385
  value: string | null;
@@ -12,7 +12,7 @@ export type EnvironmentVariable = {
12
12
  enabled?: boolean;
13
13
  name: string;
14
14
  value: string;
15
- id: string;
15
+ id?: string;
16
16
  };
17
17
  export type Folder = {
18
18
  model: "folder";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yaakapp/api",
3
- "version": "0.2.27",
3
+ "version": "0.2.29",
4
4
  "main": "lib/index.js",
5
5
  "typings": "./lib/index.d.ts",
6
6
  "files": [