@caido/sdk-frontend 0.51.2-beta.1 → 0.51.2-beta.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caido/sdk-frontend",
3
- "version": "0.51.2-beta.1",
3
+ "version": "0.51.2-beta.2",
4
4
  "description": "Typing for the Caido Frontend SDK",
5
5
  "author": "Caido Labs Inc. <dev@caido.io>",
6
6
  "license": "MIT",
@@ -2859,6 +2859,7 @@ export type ReplayEntrySettings = {
2859
2859
  placeholders: Array<ReplayPlaceholder>;
2860
2860
  };
2861
2861
  export type ReplayEntrySettingsInput = {
2862
+ connectionClose: Scalars["Boolean"]["input"];
2862
2863
  placeholders: Array<ReplayPlaceholderInput>;
2863
2864
  updateContentLength: Scalars["Boolean"]["input"];
2864
2865
  };
@@ -117,6 +117,11 @@ export type SendRequestOptions = {
117
117
  * Defaults to true.
118
118
  */
119
119
  updateContentLength?: boolean;
120
+ /**
121
+ * Whether to force close the connection by setting Connection: close header.
122
+ * Defaults to true.
123
+ */
124
+ connectionClose?: boolean;
120
125
  /**
121
126
  * Whether to overwrite the editor's draft content.
122
127
  * If true, draft content will be overwritten with the new request.