You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`options.sources`|[`Source`](#source)[]| The sources the rule belongs to. |
721
751
@@ -893,9 +923,9 @@ Update a rule.
893
923
| Parameter | Type | Description |
894
924
| ------ | ------ | ------ |
895
925
|`id`|[`ID`](utils.md#id)| The ID of the rule. |
896
-
|`options`|\{`name`: `string`; `query?`: [`HTTPQL`](utils.md#httpql); `section`: [`MatchReplaceSection`](#matchreplacesection); `sources`: [`Source`](#source)[]; \}| The new values for the rule. |
926
+
|`options`|\{`name`: `string`; `query?`: [`QueryInput`](utils.md#queryinput); `section`: [`MatchReplaceSection`](#matchreplacesection); `sources`: [`Source`](#source)[]; \}| The new values for the rule. |
897
927
|`options.name`|`string`| The new name of the rule. |
898
-
|`options.query?`|[`HTTPQL`](utils.md#httpql)| The new HTTPQL query of the rule. |
928
+
|`options.query?`|[`QueryInput`](utils.md#queryinput)| The new query of the rule. |
899
929
|`options.section`|[`MatchReplaceSection`](#matchreplacesection)| The new section of the rule. |
900
930
|`options.sources`|[`Source`](#source)[]| The new sources of the rule. |
This will open the session tab if not already open, set it as the selected session, and display the specified entry.
@@ -622,8 +657,6 @@ This will open the session tab if not already open, set it as the selected sessi
622
657
| ------ | ------ | ------ |
623
658
|`sessionId`|[`ID`](utils.md#id)| The ID of the session containing the entry. |
624
659
|`entryId`|[`ID`](utils.md#id)| The ID of the entry to show. |
625
-
|`options?`|\{`overwriteDraft?`: `boolean`; \}| The options for showing the entry. |
626
-
|`options.overwriteDraft?`|`boolean`| Whether to overwrite the request draft. If true, the draft will be removed and the entry's raw request will be shown. If false, the draft will be kept. |
627
660
628
661
###### Returns
629
662
@@ -632,9 +665,7 @@ This will open the session tab if not already open, set it as the selected sessi
632
665
###### Example
633
666
634
667
```ts
635
-
awaitsdk.replay.showEntry(sessionId, entryId, {
636
-
overwriteDraft: true,
637
-
});
668
+
awaitsdk.replay.showEntry(sessionId, entryId);
638
669
```
639
670
640
671
***
@@ -721,7 +752,7 @@ The ID of the session associated with this tab.
0 commit comments