@azure-typespec/http-client-csharp-mgmt 1.0.0-alpha.20260614.1 → 1.0.0-alpha.20260615.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -102,6 +102,12 @@ Set the log level for which to collect traces. The default value is `info`.
102
102
 
103
103
  Set to `true` to disable XML documentation generation. The default value is `false`.
104
104
 
105
+ ### `disable-roslyn-reduce`
106
+
107
+ **Type:** `boolean`
108
+
109
+ Set to `true` to skip the Roslyn reduce (simplification) post-processing step. This speeds up generation and is useful when iterating quickly. The default value is `false`.
110
+
105
111
  ### `generator-name`
106
112
 
107
113
  **Type:** `string`
@@ -116,16 +122,35 @@ Allows emitter authors to specify the path to a custom emitter package, allowing
116
122
 
117
123
  ### `plugins`
118
124
 
119
- **Type:** `array`
125
+ **Type:** `string[]`
120
126
 
121
- Paths to generator plugin assemblies (DLLs) or directories containing plugin assemblies. Each plugin must contain a class that extends GeneratorPlugin.
127
+ Paths to generator plugin assemblies (DLLs) or directories containing plugin assemblies. Each plugin must contain a class that extends `GeneratorPlugin`. Paths may be absolute or relative to the resolved `emitter-output-dir`. For example, to load plugins that live in a `codegen` folder under the output directory:
128
+
129
+ ```yaml
130
+ options:
131
+ '@typespec/http-client-csharp':
132
+ plugins:
133
+ - 'codegen/MyPlugin.dll' # file relative to emitter-output-dir
134
+ - 'codegen' # directory containing plugin assemblies
135
+ - '/abs/path/to/MyPlugin.dll' # absolute path used as-is
136
+ ```
122
137
 
123
138
  ### `license`
124
139
 
125
- **Type:** `object`
140
+ **Type:** `object { name, company, link, header, description }`
126
141
 
127
142
  License information for the generated client code.
128
143
 
144
+ **Properties:**
145
+
146
+ | Name | Type | Default | Description |
147
+ | ------------- | -------- | ------- | ----------- |
148
+ | `name` | `string` | | |
149
+ | `company` | `string` | | |
150
+ | `link` | `string` | | |
151
+ | `header` | `string` | | |
152
+ | `description` | `string` | | |
153
+
129
154
  ### `sdk-context-options`
130
155
 
131
156
  **Type:** `object`
@@ -148,16 +173,22 @@ Whether to put models under a separate 'Models' sub-namespace. This only applies
148
173
 
149
174
  **Type:** `boolean`
150
175
 
176
+ **Default:** `false`
177
+
151
178
  Whether to enable the WirePathAttribute on model properties. The default value is 'false'.
152
179
 
153
180
  ### `use-legacy-resource-detection`
154
181
 
155
182
  **Type:** `boolean`
156
183
 
184
+ **Default:** `true`
185
+
157
186
  Whether to use the legacy custom resource detection logic instead of the standardized resolveArmResources API from @azure-tools/typespec-azure-resource-manager. When true, uses the legacy logic. When false, uses the resolveArmResources API.
158
187
 
159
188
  ### `skip-api-version-override`
160
189
 
161
190
  **Type:** `boolean`
162
191
 
192
+ **Default:** `false`
193
+
163
194
  Temporary workaround: Whether to pass skipApiVersionOverride: true when instantiating ArmOperation types in generated LRO methods. When true, the LRO polling will not override the api-version from the initial request URI. This option will be removed once the api-version override issue is properly resolved in Azure.Core. The default value is 'false'.
@@ -6,10 +6,10 @@
6
6
  "compilationOptions": {},
7
7
  "targets": {
8
8
  ".NETCoreApp,Version=v10.0": {
9
- "Azure.Generator.Management/1.0.0-alpha.20260614.1": {
9
+ "Azure.Generator.Management/1.0.0-alpha.20260615.2": {
10
10
  "dependencies": {
11
11
  "Azure.Core": "1.59.0",
12
- "Azure.Generator": "1.0.0-alpha.20260609.4",
12
+ "Azure.Generator": "1.0.0-alpha.20260613.3",
13
13
  "Azure.ResourceManager": "1.14.0",
14
14
  "Humanizer.Core": "3.0.1"
15
15
  },
@@ -45,17 +45,17 @@
45
45
  }
46
46
  }
47
47
  },
48
- "Azure.Generator/1.0.0-alpha.20260609.4": {
48
+ "Azure.Generator/1.0.0-alpha.20260613.3": {
49
49
  "dependencies": {
50
50
  "Azure.Core": "1.59.0",
51
51
  "Azure.Core.Expressions.DataFactory": "1.0.0",
52
52
  "Azure.ResourceManager": "1.14.0",
53
- "Microsoft.TypeSpec.Generator.ClientModel": "1.0.0-alpha.20260609.5"
53
+ "Microsoft.TypeSpec.Generator.ClientModel": "1.0.0-alpha.20260612.4"
54
54
  },
55
55
  "runtime": {
56
56
  "lib/net10.0/Azure.Generator.dll": {
57
57
  "assemblyVersion": "1.0.0.0",
58
- "fileVersion": "1.0.26.30904"
58
+ "fileVersion": "1.0.26.31303"
59
59
  }
60
60
  }
61
61
  },
@@ -454,12 +454,12 @@
454
454
  }
455
455
  }
456
456
  },
457
- "Microsoft.TypeSpec.Generator/1.0.0-alpha.20260609.5": {
457
+ "Microsoft.TypeSpec.Generator/1.0.0-alpha.20260612.4": {
458
458
  "dependencies": {
459
459
  "CommandLineParser": "2.9.1",
460
460
  "Microsoft.Build": "17.9.5",
461
461
  "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
462
- "Microsoft.TypeSpec.Generator.Input": "1.0.0-alpha.20260609.5",
462
+ "Microsoft.TypeSpec.Generator.Input": "1.0.0-alpha.20260612.4",
463
463
  "NuGet.Configuration": "6.14.3",
464
464
  "NuGet.Protocol": "6.14.3",
465
465
  "NuGet.Versioning": "6.14.3",
@@ -473,10 +473,10 @@
473
473
  }
474
474
  }
475
475
  },
476
- "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260609.5": {
476
+ "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260612.4": {
477
477
  "dependencies": {
478
478
  "Microsoft.Extensions.Configuration.Abstractions": "10.0.3",
479
- "Microsoft.TypeSpec.Generator": "1.0.0-alpha.20260609.5",
479
+ "Microsoft.TypeSpec.Generator": "1.0.0-alpha.20260612.4",
480
480
  "System.ClientModel": "1.14.0"
481
481
  },
482
482
  "runtime": {
@@ -486,7 +486,7 @@
486
486
  }
487
487
  }
488
488
  },
489
- "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260609.5": {
489
+ "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260612.4": {
490
490
  "dependencies": {
491
491
  "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
492
492
  "System.Memory.Data": "10.0.3"
@@ -729,7 +729,7 @@
729
729
  }
730
730
  },
731
731
  "libraries": {
732
- "Azure.Generator.Management/1.0.0-alpha.20260614.1": {
732
+ "Azure.Generator.Management/1.0.0-alpha.20260615.2": {
733
733
  "type": "project",
734
734
  "serviceable": false,
735
735
  "sha512": ""
@@ -748,12 +748,12 @@
748
748
  "path": "azure.core.expressions.datafactory/1.0.0",
749
749
  "hashPath": "azure.core.expressions.datafactory.1.0.0.nupkg.sha512"
750
750
  },
751
- "Azure.Generator/1.0.0-alpha.20260609.4": {
751
+ "Azure.Generator/1.0.0-alpha.20260613.3": {
752
752
  "type": "package",
753
753
  "serviceable": true,
754
- "sha512": "sha512-IIcn2TaSwdp4TPJz+o/NI2R76oUYKnBbn8blSJstQ5lF4RjWonFN2tNKMs5k7YyrPXdOG7FtdjeCOmZk4SiR5Q==",
755
- "path": "azure.generator/1.0.0-alpha.20260609.4",
756
- "hashPath": "azure.generator.1.0.0-alpha.20260609.4.nupkg.sha512"
754
+ "sha512": "sha512-wRENS+BUUDv5BrV3NoQG7fUFgE6agnLgOCrIVnE7UTUcHwnqO5IwA34p30XYHqscEnXFowIOgcZbm4r+aO8Zlg==",
755
+ "path": "azure.generator/1.0.0-alpha.20260613.3",
756
+ "hashPath": "azure.generator.1.0.0-alpha.20260613.3.nupkg.sha512"
757
757
  },
758
758
  "Azure.ResourceManager/1.14.0": {
759
759
  "type": "package",
@@ -909,26 +909,26 @@
909
909
  "path": "microsoft.net.stringtools/17.9.5",
910
910
  "hashPath": "microsoft.net.stringtools.17.9.5.nupkg.sha512"
911
911
  },
912
- "Microsoft.TypeSpec.Generator/1.0.0-alpha.20260609.5": {
912
+ "Microsoft.TypeSpec.Generator/1.0.0-alpha.20260612.4": {
913
913
  "type": "package",
914
914
  "serviceable": true,
915
- "sha512": "sha512-7dftOGukcnydPqz5bq7dtBcZXzUPdlcdHqK0/yLpG1RBqgfllgnZ+C9JlZdYI0monWhtWwiG0x1jgbEils++JA==",
916
- "path": "microsoft.typespec.generator/1.0.0-alpha.20260609.5",
917
- "hashPath": "microsoft.typespec.generator.1.0.0-alpha.20260609.5.nupkg.sha512"
915
+ "sha512": "sha512-UvGQX8cyPf2YQM8JlVA+NW6AndJgCZLXp8F5TtDUgVSfCVIWPJ2512ZE4Z6QGNNRBlDcKqVMCSrrq+6HOfLeNw==",
916
+ "path": "microsoft.typespec.generator/1.0.0-alpha.20260612.4",
917
+ "hashPath": "microsoft.typespec.generator.1.0.0-alpha.20260612.4.nupkg.sha512"
918
918
  },
919
- "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260609.5": {
919
+ "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260612.4": {
920
920
  "type": "package",
921
921
  "serviceable": true,
922
- "sha512": "sha512-w+heUTXR3IVCJhPb+ZGZHEJR/MYxb9RwrpWxcLkYH2YTsgQy/Sdr1IatKXNMFwWmOZ10BQNZZ4TLI0A8jj8Dmw==",
923
- "path": "microsoft.typespec.generator.clientmodel/1.0.0-alpha.20260609.5",
924
- "hashPath": "microsoft.typespec.generator.clientmodel.1.0.0-alpha.20260609.5.nupkg.sha512"
922
+ "sha512": "sha512-W2n7fIGZ59ht5+y7Y2IjitQORCDUoyUVaqL1t7q7dMpx6v2DoJcoQg9Ltg4Mv2G1HStFunro8WGpGGpb/2Ghgw==",
923
+ "path": "microsoft.typespec.generator.clientmodel/1.0.0-alpha.20260612.4",
924
+ "hashPath": "microsoft.typespec.generator.clientmodel.1.0.0-alpha.20260612.4.nupkg.sha512"
925
925
  },
926
- "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260609.5": {
926
+ "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260612.4": {
927
927
  "type": "package",
928
928
  "serviceable": true,
929
- "sha512": "sha512-OqRdTYAw2aoRQPZNyyU/zhL9+98yMCrISpiXeGUyb1yh/htIDuFRq0kkYtMzSkBAkpVdYdF4+/VHq6z1x23VZA==",
930
- "path": "microsoft.typespec.generator.input/1.0.0-alpha.20260609.5",
931
- "hashPath": "microsoft.typespec.generator.input.1.0.0-alpha.20260609.5.nupkg.sha512"
929
+ "sha512": "sha512-cu382vfzVVKkgHiQ9/SYtA37eTiicfO2t/pRVD/fqVPiX2l7YDF95k0wwJ/DXj4FY4iT+WvilRmShL0fP2awKg==",
930
+ "path": "microsoft.typespec.generator.input/1.0.0-alpha.20260612.4",
931
+ "hashPath": "microsoft.typespec.generator.input.1.0.0-alpha.20260612.4.nupkg.sha512"
932
932
  },
933
933
  "Newtonsoft.Json/13.0.3": {
934
934
  "type": "package",
Binary file
@@ -6,10 +6,10 @@
6
6
  "compilationOptions": {},
7
7
  "targets": {
8
8
  ".NETCoreApp,Version=v10.0": {
9
- "Azure.Generator.Management/1.0.0-alpha.20260614.1": {
9
+ "Azure.Generator.Management/1.0.0-alpha.20260615.2": {
10
10
  "dependencies": {
11
11
  "Azure.Core": "1.59.0",
12
- "Azure.Generator": "1.0.0-alpha.20260609.4",
12
+ "Azure.Generator": "1.0.0-alpha.20260613.3",
13
13
  "Azure.ResourceManager": "1.14.0",
14
14
  "Humanizer.Core": "3.0.1"
15
15
  },
@@ -45,17 +45,17 @@
45
45
  }
46
46
  }
47
47
  },
48
- "Azure.Generator/1.0.0-alpha.20260609.4": {
48
+ "Azure.Generator/1.0.0-alpha.20260613.3": {
49
49
  "dependencies": {
50
50
  "Azure.Core": "1.59.0",
51
51
  "Azure.Core.Expressions.DataFactory": "1.0.0",
52
52
  "Azure.ResourceManager": "1.14.0",
53
- "Microsoft.TypeSpec.Generator.ClientModel": "1.0.0-alpha.20260609.5"
53
+ "Microsoft.TypeSpec.Generator.ClientModel": "1.0.0-alpha.20260612.4"
54
54
  },
55
55
  "runtime": {
56
56
  "lib/net10.0/Azure.Generator.dll": {
57
57
  "assemblyVersion": "1.0.0.0",
58
- "fileVersion": "1.0.26.30904"
58
+ "fileVersion": "1.0.26.31303"
59
59
  }
60
60
  }
61
61
  },
@@ -454,12 +454,12 @@
454
454
  }
455
455
  }
456
456
  },
457
- "Microsoft.TypeSpec.Generator/1.0.0-alpha.20260609.5": {
457
+ "Microsoft.TypeSpec.Generator/1.0.0-alpha.20260612.4": {
458
458
  "dependencies": {
459
459
  "CommandLineParser": "2.9.1",
460
460
  "Microsoft.Build": "17.9.5",
461
461
  "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
462
- "Microsoft.TypeSpec.Generator.Input": "1.0.0-alpha.20260609.5",
462
+ "Microsoft.TypeSpec.Generator.Input": "1.0.0-alpha.20260612.4",
463
463
  "NuGet.Configuration": "6.14.3",
464
464
  "NuGet.Protocol": "6.14.3",
465
465
  "NuGet.Versioning": "6.14.3",
@@ -473,10 +473,10 @@
473
473
  }
474
474
  }
475
475
  },
476
- "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260609.5": {
476
+ "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260612.4": {
477
477
  "dependencies": {
478
478
  "Microsoft.Extensions.Configuration.Abstractions": "10.0.3",
479
- "Microsoft.TypeSpec.Generator": "1.0.0-alpha.20260609.5",
479
+ "Microsoft.TypeSpec.Generator": "1.0.0-alpha.20260612.4",
480
480
  "System.ClientModel": "1.14.0"
481
481
  },
482
482
  "runtime": {
@@ -486,7 +486,7 @@
486
486
  }
487
487
  }
488
488
  },
489
- "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260609.5": {
489
+ "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260612.4": {
490
490
  "dependencies": {
491
491
  "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
492
492
  "System.Memory.Data": "10.0.3"
@@ -729,7 +729,7 @@
729
729
  }
730
730
  },
731
731
  "libraries": {
732
- "Azure.Generator.Management/1.0.0-alpha.20260614.1": {
732
+ "Azure.Generator.Management/1.0.0-alpha.20260615.2": {
733
733
  "type": "project",
734
734
  "serviceable": false,
735
735
  "sha512": ""
@@ -748,12 +748,12 @@
748
748
  "path": "azure.core.expressions.datafactory/1.0.0",
749
749
  "hashPath": "azure.core.expressions.datafactory.1.0.0.nupkg.sha512"
750
750
  },
751
- "Azure.Generator/1.0.0-alpha.20260609.4": {
751
+ "Azure.Generator/1.0.0-alpha.20260613.3": {
752
752
  "type": "package",
753
753
  "serviceable": true,
754
- "sha512": "sha512-IIcn2TaSwdp4TPJz+o/NI2R76oUYKnBbn8blSJstQ5lF4RjWonFN2tNKMs5k7YyrPXdOG7FtdjeCOmZk4SiR5Q==",
755
- "path": "azure.generator/1.0.0-alpha.20260609.4",
756
- "hashPath": "azure.generator.1.0.0-alpha.20260609.4.nupkg.sha512"
754
+ "sha512": "sha512-wRENS+BUUDv5BrV3NoQG7fUFgE6agnLgOCrIVnE7UTUcHwnqO5IwA34p30XYHqscEnXFowIOgcZbm4r+aO8Zlg==",
755
+ "path": "azure.generator/1.0.0-alpha.20260613.3",
756
+ "hashPath": "azure.generator.1.0.0-alpha.20260613.3.nupkg.sha512"
757
757
  },
758
758
  "Azure.ResourceManager/1.14.0": {
759
759
  "type": "package",
@@ -909,26 +909,26 @@
909
909
  "path": "microsoft.net.stringtools/17.9.5",
910
910
  "hashPath": "microsoft.net.stringtools.17.9.5.nupkg.sha512"
911
911
  },
912
- "Microsoft.TypeSpec.Generator/1.0.0-alpha.20260609.5": {
912
+ "Microsoft.TypeSpec.Generator/1.0.0-alpha.20260612.4": {
913
913
  "type": "package",
914
914
  "serviceable": true,
915
- "sha512": "sha512-7dftOGukcnydPqz5bq7dtBcZXzUPdlcdHqK0/yLpG1RBqgfllgnZ+C9JlZdYI0monWhtWwiG0x1jgbEils++JA==",
916
- "path": "microsoft.typespec.generator/1.0.0-alpha.20260609.5",
917
- "hashPath": "microsoft.typespec.generator.1.0.0-alpha.20260609.5.nupkg.sha512"
915
+ "sha512": "sha512-UvGQX8cyPf2YQM8JlVA+NW6AndJgCZLXp8F5TtDUgVSfCVIWPJ2512ZE4Z6QGNNRBlDcKqVMCSrrq+6HOfLeNw==",
916
+ "path": "microsoft.typespec.generator/1.0.0-alpha.20260612.4",
917
+ "hashPath": "microsoft.typespec.generator.1.0.0-alpha.20260612.4.nupkg.sha512"
918
918
  },
919
- "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260609.5": {
919
+ "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260612.4": {
920
920
  "type": "package",
921
921
  "serviceable": true,
922
- "sha512": "sha512-w+heUTXR3IVCJhPb+ZGZHEJR/MYxb9RwrpWxcLkYH2YTsgQy/Sdr1IatKXNMFwWmOZ10BQNZZ4TLI0A8jj8Dmw==",
923
- "path": "microsoft.typespec.generator.clientmodel/1.0.0-alpha.20260609.5",
924
- "hashPath": "microsoft.typespec.generator.clientmodel.1.0.0-alpha.20260609.5.nupkg.sha512"
922
+ "sha512": "sha512-W2n7fIGZ59ht5+y7Y2IjitQORCDUoyUVaqL1t7q7dMpx6v2DoJcoQg9Ltg4Mv2G1HStFunro8WGpGGpb/2Ghgw==",
923
+ "path": "microsoft.typespec.generator.clientmodel/1.0.0-alpha.20260612.4",
924
+ "hashPath": "microsoft.typespec.generator.clientmodel.1.0.0-alpha.20260612.4.nupkg.sha512"
925
925
  },
926
- "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260609.5": {
926
+ "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260612.4": {
927
927
  "type": "package",
928
928
  "serviceable": true,
929
- "sha512": "sha512-OqRdTYAw2aoRQPZNyyU/zhL9+98yMCrISpiXeGUyb1yh/htIDuFRq0kkYtMzSkBAkpVdYdF4+/VHq6z1x23VZA==",
930
- "path": "microsoft.typespec.generator.input/1.0.0-alpha.20260609.5",
931
- "hashPath": "microsoft.typespec.generator.input.1.0.0-alpha.20260609.5.nupkg.sha512"
929
+ "sha512": "sha512-cu382vfzVVKkgHiQ9/SYtA37eTiicfO2t/pRVD/fqVPiX2l7YDF95k0wwJ/DXj4FY4iT+WvilRmShL0fP2awKg==",
930
+ "path": "microsoft.typespec.generator.input/1.0.0-alpha.20260612.4",
931
+ "hashPath": "microsoft.typespec.generator.input.1.0.0-alpha.20260612.4.nupkg.sha512"
932
932
  },
933
933
  "Newtonsoft.Json/13.0.3": {
934
934
  "type": "package",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-typespec/http-client-csharp-mgmt",
3
- "version": "1.0.0-alpha.20260614.1",
3
+ "version": "1.0.0-alpha.20260615.2",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec library for emitting Azure management libraries for C#.",
6
6
  "readme": "https://github.com/Azure/azure-sdk-for-net/blob/main/eng/packages/http-client-csharp-mgmt/README.md",
@@ -38,32 +38,32 @@
38
38
  "dist/**"
39
39
  ],
40
40
  "dependencies": {
41
- "@azure-typespec/http-client-csharp": "1.0.0-alpha.20260609.4",
42
- "@typespec/http-client-csharp": "1.0.0-alpha.20260609.5"
41
+ "@azure-typespec/http-client-csharp": "1.0.0-alpha.20260613.3",
42
+ "@typespec/http-client-csharp": "1.0.0-alpha.20260612.4"
43
43
  },
44
44
  "devDependencies": {
45
- "@azure-tools/azure-http-specs": "0.1.0-alpha.40",
46
- "@azure-tools/typespec-autorest": "0.68.0",
47
- "@azure-tools/typespec-azure-core": "0.68.0",
48
- "@azure-tools/typespec-azure-resource-manager": "0.68.0",
49
- "@azure-tools/typespec-azure-rulesets": "0.68.0",
50
- "@azure-tools/typespec-client-generator-core": "0.68.4",
45
+ "@azure-tools/azure-http-specs": "0.1.0-alpha.42",
46
+ "@azure-tools/typespec-autorest": "0.69.0",
47
+ "@azure-tools/typespec-azure-core": "0.69.0",
48
+ "@azure-tools/typespec-azure-resource-manager": "0.69.0",
49
+ "@azure-tools/typespec-azure-rulesets": "0.69.0",
50
+ "@azure-tools/typespec-client-generator-core": "0.69.0",
51
51
  "@azure-tools/typespec-liftr-base": "0.14.0",
52
52
  "@eslint/js": "^9.2.0",
53
53
  "@types/node": "~22.12.0",
54
54
  "@types/pluralize": "^0.0.33",
55
55
  "@types/prettier": "^2.6.3",
56
- "@typespec/compiler": "1.12.0",
57
- "@typespec/events": "0.82.0",
58
- "@typespec/http": "1.12.0",
59
- "@typespec/http-specs": "0.1.0-alpha.37",
60
- "@typespec/openapi": "1.12.0",
61
- "@typespec/rest": "0.82.0",
62
- "@typespec/sse": "0.82.0",
63
- "@typespec/streams": "0.82.0",
64
- "@typespec/tspd": "0.74.2",
65
- "@typespec/versioning": "0.82.0",
66
- "@typespec/xml": "0.82.0",
56
+ "@typespec/compiler": "1.13.0",
57
+ "@typespec/events": "0.83.0",
58
+ "@typespec/http": "1.13.0",
59
+ "@typespec/http-specs": "0.1.0-alpha.38",
60
+ "@typespec/openapi": "1.13.0",
61
+ "@typespec/rest": "0.83.0",
62
+ "@typespec/sse": "0.83.0",
63
+ "@typespec/streams": "0.83.0",
64
+ "@typespec/tspd": "0.75.0",
65
+ "@typespec/versioning": "0.83.0",
66
+ "@typespec/xml": "0.83.0",
67
67
  "@vitest/coverage-v8": "^3.0.5",
68
68
  "@vitest/ui": "^3.0.5",
69
69
  "c8": "^10.1.2",