Skip to content

Commit 78a69dc

Browse files
authored
chore(core/protocols): set public release level for runtime protocols (#7482)
1 parent b0f07b4 commit 78a69dc

15 files changed

+15
-15
lines changed

packages/core/src/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { ProtocolLib } from "../ProtocolLib";
1515
/**
1616
* Extends the Smithy implementation to add AwsQueryCompatibility support.
1717
*
18-
* @alpha
18+
* @public
1919
*/
2020
export class AwsSmithyRpcV2CborProtocol extends SmithyRpcV2CborProtocol {
2121
private readonly awsQueryCompatible: boolean;

packages/core/src/submodules/protocols/json/AwsJson1_0Protocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { AwsJsonRpcProtocol } from "./AwsJsonRpcProtocol";
22

33
/**
4-
* @alpha
4+
* @public
55
* @see https://smithy.io/2.0/aws/protocols/aws-json-1_1-protocol.html#differences-between-awsjson1-0-and-awsjson1-1
66
*/
77
export class AwsJson1_0Protocol extends AwsJsonRpcProtocol {

packages/core/src/submodules/protocols/json/AwsJson1_1Protocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { AwsJsonRpcProtocol } from "./AwsJsonRpcProtocol";
22

33
/**
4-
* @alpha
4+
* @public
55
* @see https://smithy.io/2.0/aws/protocols/aws-json-1_1-protocol.html#differences-between-awsjson1-0-and-awsjson1-1
66
*/
77
export class AwsJson1_1Protocol extends AwsJsonRpcProtocol {

packages/core/src/submodules/protocols/json/AwsJsonRpcProtocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { JsonCodec } from "./JsonCodec";
1818
import { loadRestJsonErrorCode } from "./parseJsonBody";
1919

2020
/**
21-
* @alpha
21+
* @public
2222
*/
2323
export abstract class AwsJsonRpcProtocol extends RpcProtocol {
2424
protected serializer: ShapeSerializer<string | Uint8Array>;

packages/core/src/submodules/protocols/json/AwsRestJsonProtocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { JsonCodec, JsonSettings } from "./JsonCodec";
2222
import { loadRestJsonErrorCode } from "./parseJsonBody";
2323

2424
/**
25-
* @alpha
25+
* @public
2626
*/
2727
export class AwsRestJsonProtocol extends HttpBindingProtocol {
2828
protected serializer: ShapeSerializer<string | Uint8Array>;

packages/core/src/submodules/protocols/json/JsonCodec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { JsonShapeDeserializer } from "./JsonShapeDeserializer";
55
import { JsonShapeSerializer } from "./JsonShapeSerializer";
66

77
/**
8-
* @alpha
8+
* @public
99
*/
1010
export type JsonSettings = CodecSettings & {
1111
jsonName: boolean;

packages/core/src/submodules/protocols/json/JsonShapeDeserializer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { jsonReviver } from "./jsonReviver";
2323
import { parseJsonBody } from "./parseJsonBody";
2424

2525
/**
26-
* @alpha
26+
* @public
2727
*/
2828
export class JsonShapeDeserializer extends SerdeContextConfig implements ShapeDeserializer<string> {
2929
public constructor(public readonly settings: JsonSettings) {

packages/core/src/submodules/protocols/json/JsonShapeSerializer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import type { JsonSettings } from "./JsonCodec";
1515
import { JsonReplacer } from "./jsonReplacer";
1616

1717
/**
18-
* @alpha
18+
* @public
1919
*/
2020
export class JsonShapeSerializer extends SerdeContextConfig implements ShapeSerializer<string> {
2121
private buffer: any;

packages/core/src/submodules/protocols/json/jsonReviver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { NumericValue } from "@smithy/core/serde";
88
*
99
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse#browser_compatibility
1010
*
11-
* @alpha
11+
* @internal
1212
*
1313
* @returns transformed value.
1414
*/

packages/core/src/submodules/protocols/query/AwsEc2QueryProtocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { AwsQueryProtocol } from "./AwsQueryProtocol";
22
import { QuerySerializerSettings } from "./QuerySerializerSettings";
33

44
/**
5-
* @alpha
5+
* @public
66
*/
77
export class AwsEc2QueryProtocol extends AwsQueryProtocol {
88
public constructor(

0 commit comments

Comments
 (0)