@typespec/http-specs 0.1.0-alpha.16-dev.3 → 0.1.0-alpha.16-dev.4

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-specs",
3
- "version": "0.1.0-alpha.16-dev.3",
3
+ "version": "0.1.0-alpha.16-dev.4",
4
4
  "description": "Spec scenarios and mock apis",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -4,8 +4,8 @@ import "@typespec/versioning";
4
4
 
5
5
  using Http;
6
6
  using Spector;
7
- using TypeSpec.Versioning;
8
- using TypeSpec.Rest;
7
+ using Versioning;
8
+ using Rest;
9
9
 
10
10
  @versioned(Versions)
11
11
  @service(#{ title: "ServerPathMultiple" })
@@ -4,7 +4,7 @@ import "@typespec/versioning";
4
4
 
5
5
  using Http;
6
6
  using Spector;
7
- using TypeSpec.Versioning;
7
+ using Versioning;
8
8
 
9
9
  /**
10
10
  * Illustrates versioned server.
@@ -4,7 +4,7 @@ import "@typespec/spector";
4
4
 
5
5
  using Http;
6
6
  using Spector;
7
- using TypeSpec.Versioning;
7
+ using Versioning;
8
8
 
9
9
  @doc("Illustrates conditional request headers")
10
10
  @scenarioService("/special-headers/conditional-request")
@@ -4,7 +4,7 @@ import "@typespec/spector";
4
4
 
5
5
  using Http;
6
6
  using Spector;
7
- using TypeSpec.Versioning;
7
+ using Versioning;
8
8
 
9
9
  @doc("Illustrates OASIS repeatability headers")
10
10
  @scenarioService("/special-headers/repeatability")
@@ -2,8 +2,8 @@ import "@typespec/http";
2
2
  import "@typespec/http/streams";
3
3
  import "@typespec/spector";
4
4
 
5
- using TypeSpec.Http;
6
- using TypeSpec.Http.Streams;
5
+ using Http;
6
+ using Http.Streams;
7
7
  using Spector;
8
8
 
9
9
  @doc("Test of jsonl streaming.")