@typespec/http-client-csharp 1.0.0-alpha.20260610.4 → 1.0.0-alpha.20260610.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/http-client-csharp",
3
- "version": "1.0.0-alpha.20260610.4",
3
+ "version": "1.0.0-alpha.20260610.7",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec library for emitting Http Client libraries for C#.",
6
6
  "homepage": "https://typespec.io",
@@ -58,35 +58,35 @@
58
58
  "emitter/lib/*.tsp"
59
59
  ],
60
60
  "peerDependencies": {
61
- "@azure-tools/typespec-azure-core": ">=0.68.0 <0.69.0 || ~0.69.0-0",
62
- "@azure-tools/typespec-client-generator-core": ">=0.68.3 <0.69.0 || ~0.69.0-0",
63
- "@typespec/compiler": "^1.12.0",
64
- "@typespec/http": "^1.12.0",
65
- "@typespec/openapi": "^1.12.0",
66
- "@typespec/rest": ">=0.82.0 <0.83.0 || ~0.83.0-0",
67
- "@typespec/sse": ">=0.82.0 <0.83.0 || ~0.83.0-0",
68
- "@typespec/streams": ">=0.82.0 <0.83.0 || ~0.83.0-0",
69
- "@typespec/versioning": ">=0.82.0 <0.83.0 || ~0.83.0-0"
61
+ "@azure-tools/typespec-azure-core": ">=0.69.0 <0.70.0 || ~0.70.0-0",
62
+ "@azure-tools/typespec-client-generator-core": ">=0.69.0 <0.70.0 || ~0.70.0-0",
63
+ "@typespec/compiler": "^1.13.0",
64
+ "@typespec/http": "^1.13.0",
65
+ "@typespec/openapi": "^1.13.0",
66
+ "@typespec/rest": ">=0.83.0 <0.84.0 || ~0.84.0-0",
67
+ "@typespec/sse": ">=0.83.0 <0.84.0 || ~0.84.0-0",
68
+ "@typespec/streams": ">=0.83.0 <0.84.0 || ~0.84.0-0",
69
+ "@typespec/versioning": ">=0.83.0 <0.84.0 || ~0.84.0-0"
70
70
  },
71
71
  "devDependencies": {
72
- "@azure-tools/azure-http-specs": "0.1.0-alpha.40",
73
- "@azure-tools/typespec-azure-core": "0.68.0",
74
- "@azure-tools/typespec-client-generator-core": "0.68.3",
72
+ "@azure-tools/azure-http-specs": "0.1.0-alpha.42",
73
+ "@azure-tools/typespec-azure-core": "0.69.0",
74
+ "@azure-tools/typespec-client-generator-core": "0.69.0",
75
75
  "@microsoft/api-extractor": "^7.52.2",
76
76
  "@types/node": "~22.12.0",
77
- "@typespec/compiler": "1.12.0",
78
- "@typespec/http": "1.12.0",
79
- "@typespec/http-specs": "0.1.0-alpha.37",
80
- "@typespec/json-schema": "1.12.0",
81
- "@typespec/library-linter": "0.82.0",
82
- "@typespec/openapi": "1.12.0",
83
- "@typespec/rest": "0.82.0",
77
+ "@typespec/compiler": "1.13.0",
78
+ "@typespec/http": "1.13.0",
79
+ "@typespec/http-specs": "0.1.0-alpha.38",
80
+ "@typespec/json-schema": "1.13.0",
81
+ "@typespec/library-linter": "0.83.0",
82
+ "@typespec/openapi": "1.13.0",
83
+ "@typespec/rest": "0.83.0",
84
84
  "@typespec/spector": "0.1.0-alpha.25",
85
- "@typespec/sse": "0.82.0",
86
- "@typespec/streams": "0.82.0",
87
- "@typespec/tspd": "0.74.2",
88
- "@typespec/versioning": "0.82.0",
89
- "@typespec/xml": "0.82.0",
85
+ "@typespec/sse": "0.83.0",
86
+ "@typespec/streams": "0.83.0",
87
+ "@typespec/tspd": "0.75.0",
88
+ "@typespec/versioning": "0.83.0",
89
+ "@typespec/xml": "0.83.0",
90
90
  "@vitest/coverage-v8": "^4.1.8",
91
91
  "@vitest/ui": "^4.1.8",
92
92
  "c8": "^10.1.2",
package/readme.md CHANGED
@@ -127,7 +127,7 @@ Allows emitter authors to specify the path to a custom emitter package, allowing
127
127
 
128
128
  ### `plugins`
129
129
 
130
- **Type:** `array`
130
+ **Type:** `string[]`
131
131
 
132
132
  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:
133
133
 
@@ -142,10 +142,20 @@ options:
142
142
 
143
143
  ### `license`
144
144
 
145
- **Type:** `object`
145
+ **Type:** `object { name, company, link, header, description }`
146
146
 
147
147
  License information for the generated client code.
148
148
 
149
+ **Properties:**
150
+
151
+ | Name | Type | Default | Description |
152
+ | ------------- | -------- | ------- | ----------- |
153
+ | `name` | `string` | | |
154
+ | `company` | `string` | | |
155
+ | `link` | `string` | | |
156
+ | `header` | `string` | | |
157
+ | `description` | `string` | | |
158
+
149
159
  ### `sdk-context-options`
150
160
 
151
161
  **Type:** `object`