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
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [1.7.1] - Unreleased

### Changed:
### Added:

- Snippets: All snippets that reference schemas updated to use `v1.3.0` schema
- Snippets: Added `devproxy-plugin-har-generator` - HarGeneratorPlugin instance
- Snippets: Added `devproxy-plugin-har-generator-config` - HarGeneratorPlugin config section
- Snippets: Added `devproxy-plugin-openai-usage-debugging` - OpenAIUsageDebuggingPlugin instance

### Changed:

- Snippets: All snippets that reference schemas updated to use `v1.3.0` schema

## [1.6.0] - 2025-10-13

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ See [Dev Proxy MCP Server](https://github.com/dev-proxy-tools/mcp) for more info
| `devproxy-plugin-openai-mock-response` | OpenAIMockResponsePlugin instance |
| `devproxy-plugin-openai-telemetry` | OpenAITelemetryPlugin instance |
| `devproxy-plugin-openai-telemetry-config` | OpenAITelemetryPlugin config section |
| `devproxy-plugin-openai-usage-debugging` | OpenAIUsageDebuggingPlugin instance |
| `devproxy-plugin-open-api-spec-generator` | OpenApiSpecGeneratorPlugin instance |
| `devproxy-plugin-open-api-spec-generator-config` | OpenApiSpecGeneratorPlugin config section |
| `devproxy-plugin-rate-limiting` | MockResponsePlugin instance |
Expand Down
7 changes: 7 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@ export const pluginSnippets: PluginSnippets = {
required: true,
}
},
OpenAIUsageDebuggingPlugin: {
instance: 'devproxy-plugin-openai-usage-debugging',
},
OpenApiSpecGeneratorPlugin: {
instance: 'devproxy-plugin-open-api-spec-generator',
config: {
Expand Down Expand Up @@ -369,6 +372,10 @@ export const pluginDocs: PluginDocs = {
name: 'OpenAI Telemetry Plugin',
url: 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/openaitelemetryplugin',
},
OpenAIUsageDebuggingPlugin: {
name: 'OpenAI Usage Debugging Plugin',
url: 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/openaiusagedebuggingplugin',
},
OpenApiSpecGeneratorPlugin: {
name: 'Open API Spec Generator Plugin',
url: 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/openapispecgeneratorplugin',
Expand Down
11 changes: 11 additions & 0 deletions src/snippets/json-snippets.json
Original file line number Diff line number Diff line change
Expand Up @@ -975,6 +975,17 @@
],
"description": "OpenAITelemetryPlugin config section"
},
"OpenAIUsageDebuggingPlugin": {
"prefix": "devproxy-plugin-openai-usage-debugging",
"body": [
"{",
"\t\"name\": \"OpenAIUsageDebuggingPlugin\",",
"\t\"enabled\": true,",
"\t\"pluginPath\": \"~appFolder/plugins/DevProxy.Plugins.dll\"",
"}"
],
"description": "OpenAIUsageDebuggingPlugin instance"
},
"OpenApiSpecGeneratorPlugin": {
"prefix": "devproxy-plugin-open-api-spec-generator",
"body": [
Expand Down