File tree Expand file tree Collapse file tree 4 files changed +20
-1
lines changed Expand file tree Collapse file tree 4 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
## [ 0.15.0] - Unreleased
11
11
12
+ ### Changed:
13
+
14
+ - Snippets: ` devproxy-plugin-open-api-spec-generator ` - OpenApiSpecGeneratorPlugin config section
15
+
12
16
## [ 0.14.0] - 2024-11-27
13
17
14
18
### Added:
Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ Shown when the active document is a Dev Proxy configuration file
126
126
| ` devproxy-plugin-graph-odsp-search-guidance ` | ODSPSearchGuidancePlugin instance |
127
127
| ` devproxy-plugin-openai-mock-response ` | OpenAIMockResponsePlugin instance |
128
128
| ` devproxy-plugin-open-api-spec-generator ` | OpenApiSpecGeneratorPlugin instance |
129
+ | ` devproxy-plugin-open-api-spec-generator-config ` | OpenApiSpecGeneratorPlugin config section |
129
130
| ` devproxy-plugin-rate-limiting ` | MockResponsePlugin instance |
130
131
| ` devproxy-plugin-rate-limiting-config ` | RateLimitingPlugin config section |
131
132
| ` devproxy-plugin-rate-limiting-file ` | Dev Proxy rate limiting file |
Original file line number Diff line number Diff line change @@ -148,7 +148,11 @@ export const pluginSnippets: PluginSnippets = {
148
148
instance : 'devproxy-plugin-openai-mock-response' ,
149
149
} ,
150
150
OpenApiSpecGeneratorPlugin : {
151
- instance : 'devproxy-plugin-openapi-doc-generator' ,
151
+ instance : 'devproxy-plugin-open-api-spec-generator' ,
152
+ config : {
153
+ name : 'devproxy-plugin-open-api-spec-generator-config' ,
154
+ required : false
155
+ }
152
156
} ,
153
157
RateLimitingPlugin : {
154
158
instance : 'devproxy-plugin-rate-limiting' ,
Original file line number Diff line number Diff line change 791
791
],
792
792
"description" : " OpenApiSpecGeneratorPlugin instance"
793
793
},
794
+ "OpenApiSpecGeneratorPluginConfig" : {
795
+ "prefix" : " devproxy-plugin-open-api-spec-generator-config" ,
796
+ "body" : [
797
+ " \" openApiSpecGeneratorPlugin\" : {" ,
798
+ " \t\" includeOptionsRequests\" : false," ,
799
+ " \t\" specVersion\" : \" v3_0\" " ,
800
+ " }"
801
+ ],
802
+ "description" : " OpenApiSpecGeneratorPlugin config section"
803
+ },
794
804
"RateLimitingPlugin" : {
795
805
"prefix" : " devproxy-plugin-rate-limiting" ,
796
806
"body" : [
You can’t perform that action at this time.
0 commit comments