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
200 changes: 198 additions & 2 deletions .fern/replay.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

125 changes: 2 additions & 123 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -21237,7 +21237,7 @@ await client.guardian.factors.sms.setProvider({
</dl>
</details>

<details><summary><code>client.guardian.factors.sms.<a href="/src/management/api/resources/guardian/resources/factors/resources/sms/client/Client.ts">getTemplates</a>() -> Management.GetGuardianFactorSmsTemplatesResponseContent</code></summary>
<details><summary><code>client.guardian.factors.sms.<a href="/src/management/api/resources/guardian/resources/factors/resources/sms/client/Client.ts">getTemplates</a>() -> Management.GetGuardianFactorSmsTemplatesResponseContent | undefined</code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -22016,7 +22016,7 @@ await client.jobs.verificationEmail.create({

## Jobs Errors

<details><summary><code>client.jobs.errors.<a href="/src/management/api/resources/jobs/resources/errors/client/Client.ts">get</a>(id) -> Management.ErrorsGetResponse</code></summary>
<details><summary><code>client.jobs.errors.<a href="/src/management/api/resources/jobs/resources/errors/client/Client.ts">get</a>(id) -> Management.ErrorsGetResponse | undefined</code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -28677,127 +28677,6 @@ await client.users.enrollments.get("id");
</dl>
</details>

## Users FederatedConnectionsTokensets

<details><summary><code>client.users.federatedConnectionsTokensets.<a href="/src/management/api/resources/users/resources/federatedConnectionsTokensets/client/Client.ts">list</a>(id) -> Management.FederatedConnectionTokenSet[]</code></summary>
<dl>
<dd>

#### 📝 Description

<dl>
<dd>

<dl>
<dd>

List active federated connections tokensets for a provided user

</dd>
</dl>
</dd>
</dl>

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```typescript
await client.users.federatedConnectionsTokensets.list("id");
```

</dd>
</dl>
</dd>
</dl>

#### ⚙️ Parameters

<dl>
<dd>

<dl>
<dd>

**id:** `string` — User identifier

</dd>
</dl>

<dl>
<dd>

**requestOptions:** `FederatedConnectionsTokensetsClient.RequestOptions`

</dd>
</dl>
</dd>
</dl>

</dd>
</dl>
</details>

<details><summary><code>client.users.federatedConnectionsTokensets.<a href="/src/management/api/resources/users/resources/federatedConnectionsTokensets/client/Client.ts">delete</a>(id, tokenset_id) -> void</code></summary>
<dl>
<dd>

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```typescript
await client.users.federatedConnectionsTokensets.delete("id", "tokenset_id");
```

</dd>
</dl>
</dd>
</dl>

#### ⚙️ Parameters

<dl>
<dd>

<dl>
<dd>

**id:** `string` — Id of the user that owns the tokenset

</dd>
</dl>

<dl>
<dd>

**tokenset_id:** `string` — The tokenset id

</dd>
</dl>

<dl>
<dd>

**requestOptions:** `FederatedConnectionsTokensetsClient.RequestOptions`

</dd>
</dl>
</dd>
</dl>

</dd>
</dl>
</details>

## Users Groups

<details><summary><code>client.users.groups.<a href="/src/management/api/resources/users/resources/groups/client/Client.ts">get</a>(id, { ...params }) -> core.Page&lt;Management.UserGroupsResponseSchema, Management.GetUserGroupsPaginatedResponseContent&gt;</code></summary>
Expand Down
2 changes: 1 addition & 1 deletion src/management/api/errors/BadRequestError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export class BadRequestError extends errors.ManagementError {
Error.captureStackTrace(this, this.constructor);
}

this.name = this.constructor.name;
this.name = "BadRequestError";
}
}
2 changes: 1 addition & 1 deletion src/management/api/errors/ConflictError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export class ConflictError extends errors.ManagementError {
Error.captureStackTrace(this, this.constructor);
}

this.name = this.constructor.name;
this.name = "ConflictError";
}
}
2 changes: 1 addition & 1 deletion src/management/api/errors/ContentTooLargeError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export class ContentTooLargeError extends errors.ManagementError {
Error.captureStackTrace(this, this.constructor);
}

this.name = this.constructor.name;
this.name = "ContentTooLargeError";
}
}
2 changes: 1 addition & 1 deletion src/management/api/errors/ForbiddenError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export class ForbiddenError extends errors.ManagementError {
Error.captureStackTrace(this, this.constructor);
}

this.name = this.constructor.name;
this.name = "ForbiddenError";
}
}
2 changes: 1 addition & 1 deletion src/management/api/errors/GoneError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export class GoneError extends errors.ManagementError {
Error.captureStackTrace(this, this.constructor);
}

this.name = this.constructor.name;
this.name = "GoneError";
}
}
2 changes: 1 addition & 1 deletion src/management/api/errors/InternalServerError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ export class InternalServerError extends errors.ManagementError {
Error.captureStackTrace(this, this.constructor);
}

this.name = this.constructor.name;
this.name = "InternalServerError";
}
}
Loading
Loading