@typespec/compiler 0.59.0-dev.13 → 0.59.0-dev.14

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/dist/manifest.js CHANGED
@@ -1,4 +1,4 @@
1
1
  export default {
2
- "version": "0.59.0-dev.13",
3
- "commit": "7b5d26369345690b33d8e8a6f73746542bff01ce"
2
+ "version": "0.59.0-dev.14",
3
+ "commit": "e492ff7d7ba4aac89aac73e594d547d267d05b02"
4
4
  };
@@ -475,6 +475,17 @@ enum BytesKnownEncoding {
475
475
  base64url: "base64url",
476
476
  }
477
477
 
478
+ /**
479
+ * Encoding for serializing arrays
480
+ */
481
+ enum ArrayEncoding {
482
+ /** Each values of the array is separated by a | */
483
+ pipeDelimited,
484
+
485
+ /** Each values of the array is separated by a <space> */
486
+ spaceDelimited,
487
+ }
488
+
478
489
  /**
479
490
  * Specify how to encode the target type.
480
491
  * @param encodingOrEncodeAs Known name of an encoding or a scalar type to encode as(Only for numeric types to encode as string).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/compiler",
3
- "version": "0.59.0-dev.13",
3
+ "version": "0.59.0-dev.14",
4
4
  "description": "TypeSpec Compiler Preview",
5
5
  "author": "Microsoft Corporation",
6
6
  "license": "MIT",