Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions src/reference/sdks/backend/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ The SDK for the Requests service.

The SDK for the runtime information.

##### scope

> **scope**: [`ScopeSDK`](index.md#scopesdk)

The SDK for the Scope service.

## Meta

### MetaSDK
Expand Down Expand Up @@ -1764,6 +1770,14 @@ The name of the reporter.

`string`

##### getRequestId()

The ID of the associated [Request](index.md#request-1).

###### Returns

`string`

##### getTitle()

The title of the finding.
Expand Down Expand Up @@ -2706,3 +2720,57 @@ Get the current version of Caido.
###### Returns

`string`

## Scope

### Scope

> **Scope**: `object`

A saved immutable Scope.

#### Type declaration

##### allowlist

> `readonly` **allowlist**: `string`[]

The allowlist of the scope.

##### denylist

> `readonly` **denylist**: `string`[]

The denylist of the scope.

##### id

> `readonly` **id**: [`ID`](index.md#id)

The unique Caido [ID](index.md#id) of the scope.

##### name

> `readonly` **name**: `string`

The name of the scope.

***

### ScopeSDK

> **ScopeSDK**: `object`

The SDK for the Scope service.

#### Type declaration

##### getAll()

Get all the scopes.

###### Returns

`Promise`\<[`Scope`](index.md#scope-1)[]\>

An array of [Scope](index.md#scope-1)
Loading