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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 2.2.0 (2026-02-25)

### New Features

Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ keywords:
- extension
license: MIT
commit: 455f0784f291c69a6c1331364f150d4fa1fb2289
version: 2.1.3
date-released: "2026-02-05"
version: 2.2.0
date-released: "2026-02-25"
2 changes: 1 addition & 1 deletion docs/_environment
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=2.1.3
VERSION=2.2.0
64 changes: 32 additions & 32 deletions docs/api/core/archive.qmd

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions docs/api/core/auth.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Tokens can also be set via VS Code settings or the extension's authentication UI
function createAuthConfig(options?): AuthConfig;
```

Defined in: [packages/core/src/types/auth.ts:66](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/types/auth.ts#L66)
Defined in: [packages/core/src/types/auth.ts:66](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/types/auth.ts#L66)

Create an AuthConfig from options.
Automatically reads from environment variables if not provided.
Expand All @@ -77,7 +77,7 @@ Error if header format is invalid
function getAuthHeaders(auth, isGitHub): Record<string, string>;
```

Defined in: [packages/core/src/types/auth.ts:107](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/types/auth.ts#L107)
Defined in: [packages/core/src/types/auth.ts:107](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/types/auth.ts#L107)

Get authorization headers for a request.

Expand All @@ -96,39 +96,39 @@ Headers object for fetch

## AuthConfig {#symbol-interface-authconfig}

Defined in: [packages/core/src/types/auth.ts:41](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/types/auth.ts#L41)
Defined in: [packages/core/src/types/auth.ts:41](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/types/auth.ts#L41)

Authentication configuration for API requests.

### Properties

| Property | Type | Description | Defined in |
| ------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <a id="property-githubtoken"></a> `githubToken?` | `string` | GitHub personal access token for GitHub API and private repos. | [packages/core/src/types/auth.ts:43](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/types/auth.ts#L43) |
| <a id="property-httpheaders"></a> `httpHeaders` | `<code><a href="auth.qmd#symbol-interface-httpheader" style="text-decoration-line: underline; text-decoration-style: dashed; text-decoration-thickness: 1px; text-decoration-color: currentColor;">HttpHeader</a>[]</code>`{=html} | Custom HTTP headers for URL downloads. | [packages/core/src/types/auth.ts:45](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/types/auth.ts#L45) |
| <a id="property-githubtoken"></a> `githubToken?` | `string` | GitHub personal access token for GitHub API and private repos. | [packages/core/src/types/auth.ts:43](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/types/auth.ts#L43) |
| <a id="property-httpheaders"></a> `httpHeaders` | `<code><a href="auth.qmd#symbol-interface-httpheader" style="text-decoration-line: underline; text-decoration-style: dashed; text-decoration-thickness: 1px; text-decoration-color: currentColor;">HttpHeader</a>[]</code>`{=html} | Custom HTTP headers for URL downloads. | [packages/core/src/types/auth.ts:45](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/types/auth.ts#L45) |

## AuthConfigOptions {#symbol-interface-authconfigoptions}

Defined in: [packages/core/src/types/auth.ts:51](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/types/auth.ts#L51)
Defined in: [packages/core/src/types/auth.ts:51](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/types/auth.ts#L51)

Options for creating an AuthConfig.

### Properties

| Property | Type | Description | Defined in |
| ------------------------------------------------ | ---------- | ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <a id="property-githubtoken"></a> `githubToken?` | `string` | GitHub personal access token. | [packages/core/src/types/auth.ts:53](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/types/auth.ts#L53) |
| <a id="property-httpheaders"></a> `httpHeaders?` | `string[]` | HTTP headers in "Name: Value" format. | [packages/core/src/types/auth.ts:55](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/types/auth.ts#L55) |
| <a id="property-githubtoken"></a> `githubToken?` | `string` | GitHub personal access token. | [packages/core/src/types/auth.ts:53](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/types/auth.ts#L53) |
| <a id="property-httpheaders"></a> `httpHeaders?` | `string[]` | HTTP headers in "Name: Value" format. | [packages/core/src/types/auth.ts:55](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/types/auth.ts#L55) |

## HttpHeader {#symbol-interface-httpheader}

Defined in: [packages/core/src/types/auth.ts:31](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/types/auth.ts#L31)
Defined in: [packages/core/src/types/auth.ts:31](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/types/auth.ts#L31)

HTTP header for custom authentication.

### Properties

| Property | Type | Description | Defined in |
| ----------------------------------- | -------- | --------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <a id="property-name"></a> `name` | `string` | Header name (e.g., "Authorization"). | [packages/core/src/types/auth.ts:33](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/types/auth.ts#L33) |
| <a id="property-value"></a> `value` | `string` | Header value (e.g., "Bearer token123"). | [packages/core/src/types/auth.ts:35](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/types/auth.ts#L35) |
| <a id="property-name"></a> `name` | `string` | Header name (e.g., "Authorization"). | [packages/core/src/types/auth.ts:33](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/types/auth.ts#L33) |
| <a id="property-value"></a> `value` | `string` | Header value (e.g., "Bearer token123"). | [packages/core/src/types/auth.ts:35](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/types/auth.ts#L35) |
2 changes: 1 addition & 1 deletion docs/api/core/constants.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ title: "Constants"
const USER_AGENT: "quarto-wizard" = "quarto-wizard";
```

Defined in: [packages/core/src/constants.ts:2](https://github.com/mcanouil/quarto-wizard/blob/b137ce01c347ae00b9119bd3b64f63ca147770fe/packages/core/src/constants.ts#L2)
Defined in: [packages/core/src/constants.ts:2](https://github.com/mcanouil/quarto-wizard/blob/dc3fe65d072077e2a6ee11958d4c7c0853bffc4f/packages/core/src/constants.ts#L2)

User-Agent header value for all outgoing HTTP requests.
Loading