File tree Expand file tree Collapse file tree 4 files changed +21
-1
lines changed Expand file tree Collapse file tree 4 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
25
25
- Setting: ` dev-proxy-toolkit.apiPort ` - Port number used to communicate with Dev Proxy API
26
26
- Diagnostics: Collection renamed to ` dev-proxy-toolkit `
27
27
- Snippets: Support for JSONC (JSON with Comments) files
28
+ - Snippets: ` devproxy-plugin-graph-minimal-permissions-guidance-config ` - MinimalPermissionsGuidancePlugin config section
28
29
29
30
### Changed:
30
31
Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ Shown when the active document is a Dev Proxy configuration file
107
107
| ` devproxy-plugin-latency ` | LatencyPlugin instance |
108
108
| ` devproxy-plugin-latency-config ` | LatencyPlugin config section |
109
109
| ` devproxy-plugin-graph-minimal-permissions-guidance ` | MinimalPermissionsGuidancePlugin instance |
110
+ | ` devproxy-plugin-graph-minimal-permissions-guidance-config ` | MinimalPermissionsGuidancePlugin config section |
110
111
| ` devproxy-plugin-graph-minimal-permissions ` | MinimalPermissionsPlugin instance |
111
112
| ` devproxy-plugin-mock-generator ` | MockGeneratorPlugin instance |
112
113
| ` devproxy-plugin-mock-request ` | MockResponsePlugin instance |
Original file line number Diff line number Diff line change @@ -101,7 +101,11 @@ export const pluginSnippets: PluginSnippets = {
101
101
} ,
102
102
} ,
103
103
MinimalPermissionsGuidancePlugin : {
104
- instance : 'devproxy-plugin-minimal-permissions-guidance'
104
+ instance : 'devproxy-plugin-minimal-permissions-guidance' ,
105
+ config : {
106
+ name : 'devproxy-plugin-minimal-permissions-guidance-config' ,
107
+ required : false
108
+ }
105
109
} ,
106
110
MinimalPermissionsPlugin : {
107
111
instance : 'devproxy-plugin-minimal-permissions' ,
Original file line number Diff line number Diff line change 540
540
],
541
541
"description" : " MinimalPermissionsGuidancePlugin instance"
542
542
},
543
+ "MinimalPermissionsGuidancePluginConfig" : {
544
+ "prefix" : " devproxy-plugin-graph-minimal-permissions-guidance-config" ,
545
+ "body" : [
546
+ " \" minimalPermissionsGuidancePlugin\" : {" ,
547
+ " \t\" permissionsToIgnore\" : [" ,
548
+ " \t\t\" profile\" ," ,
549
+ " \t\t\" openid\" ," ,
550
+ " \t\t\" offline_access\" ," ,
551
+ " \t\t\" email\" " ,
552
+ " \t ]" ,
553
+ " }"
554
+ ],
555
+ "description" : " MinimalPermissionsGuidancePlugin config section"
556
+ },
543
557
"MinimalPermissionsPlugin" : {
544
558
"prefix" : " devproxy-plugin-graph-minimal-permissions" ,
545
559
"body" : [
You can’t perform that action at this time.
0 commit comments