Skip to content

Commit 69a7e62

Browse files
authored
chore: update protocol test codegen output (#1410)
1 parent 0d5ab1d commit 69a7e62

13 files changed

+169
-13
lines changed

private/smithy-rpcv2-cbor/src/commands/EmptyInputOutputCommand.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,16 @@ export class EmptyInputOutputCommand extends $Command
6666
.f(void 0, void 0)
6767
.ser(se_EmptyInputOutputCommand)
6868
.de(de_EmptyInputOutputCommand)
69-
.build() {}
69+
.build() {
70+
/** @internal type navigation helper, not in runtime. */
71+
protected declare static __types: {
72+
api: {
73+
input: {};
74+
output: {};
75+
};
76+
sdk: {
77+
input: EmptyInputOutputCommandInput;
78+
output: EmptyInputOutputCommandOutput;
79+
};
80+
};
81+
}

private/smithy-rpcv2-cbor/src/commands/Float16Command.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,16 @@ export class Float16Command extends $Command
6868
.f(void 0, void 0)
6969
.ser(se_Float16Command)
7070
.de(de_Float16Command)
71-
.build() {}
71+
.build() {
72+
/** @internal type navigation helper, not in runtime. */
73+
protected declare static __types: {
74+
api: {
75+
input: {};
76+
output: Float16Output;
77+
};
78+
sdk: {
79+
input: Float16CommandInput;
80+
output: Float16CommandOutput;
81+
};
82+
};
83+
}

private/smithy-rpcv2-cbor/src/commands/FractionalSecondsCommand.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,16 @@ export class FractionalSecondsCommand extends $Command
6868
.f(void 0, void 0)
6969
.ser(se_FractionalSecondsCommand)
7070
.de(de_FractionalSecondsCommand)
71-
.build() {}
71+
.build() {
72+
/** @internal type navigation helper, not in runtime. */
73+
protected declare static __types: {
74+
api: {
75+
input: {};
76+
output: FractionalSecondsOutput;
77+
};
78+
sdk: {
79+
input: FractionalSecondsCommandInput;
80+
output: FractionalSecondsCommandOutput;
81+
};
82+
};
83+
}

private/smithy-rpcv2-cbor/src/commands/GreetingWithErrorsCommand.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,16 @@ export class GreetingWithErrorsCommand extends $Command
8181
.f(void 0, void 0)
8282
.ser(se_GreetingWithErrorsCommand)
8383
.de(de_GreetingWithErrorsCommand)
84-
.build() {}
84+
.build() {
85+
/** @internal type navigation helper, not in runtime. */
86+
protected declare static __types: {
87+
api: {
88+
input: {};
89+
output: GreetingWithErrorsOutput;
90+
};
91+
sdk: {
92+
input: GreetingWithErrorsCommandInput;
93+
output: GreetingWithErrorsCommandOutput;
94+
};
95+
};
96+
}

private/smithy-rpcv2-cbor/src/commands/NoInputOutputCommand.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,16 @@ export class NoInputOutputCommand extends $Command
6565
.f(void 0, void 0)
6666
.ser(se_NoInputOutputCommand)
6767
.de(de_NoInputOutputCommand)
68-
.build() {}
68+
.build() {
69+
/** @internal type navigation helper, not in runtime. */
70+
protected declare static __types: {
71+
api: {
72+
input: {};
73+
output: {};
74+
};
75+
sdk: {
76+
input: NoInputOutputCommandInput;
77+
output: NoInputOutputCommandOutput;
78+
};
79+
};
80+
}

private/smithy-rpcv2-cbor/src/commands/OperationWithDefaultsCommand.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,16 @@ export class OperationWithDefaultsCommand extends $Command
134134
.f(void 0, void 0)
135135
.ser(se_OperationWithDefaultsCommand)
136136
.de(de_OperationWithDefaultsCommand)
137-
.build() {}
137+
.build() {
138+
/** @internal type navigation helper, not in runtime. */
139+
protected declare static __types: {
140+
api: {
141+
input: OperationWithDefaultsInput;
142+
output: OperationWithDefaultsOutput;
143+
};
144+
sdk: {
145+
input: OperationWithDefaultsCommandInput;
146+
output: OperationWithDefaultsCommandOutput;
147+
};
148+
};
149+
}

private/smithy-rpcv2-cbor/src/commands/OptionalInputOutputCommand.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,16 @@ export class OptionalInputOutputCommand extends $Command
7070
.f(void 0, void 0)
7171
.ser(se_OptionalInputOutputCommand)
7272
.de(de_OptionalInputOutputCommand)
73-
.build() {}
73+
.build() {
74+
/** @internal type navigation helper, not in runtime. */
75+
protected declare static __types: {
76+
api: {
77+
input: SimpleStructure;
78+
output: SimpleStructure;
79+
};
80+
sdk: {
81+
input: OptionalInputOutputCommandInput;
82+
output: OptionalInputOutputCommandOutput;
83+
};
84+
};
85+
}

private/smithy-rpcv2-cbor/src/commands/RecursiveShapesCommand.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,16 @@ export class RecursiveShapesCommand extends $Command
9494
.f(void 0, void 0)
9595
.ser(se_RecursiveShapesCommand)
9696
.de(de_RecursiveShapesCommand)
97-
.build() {}
97+
.build() {
98+
/** @internal type navigation helper, not in runtime. */
99+
protected declare static __types: {
100+
api: {
101+
input: RecursiveShapesInputOutput;
102+
output: RecursiveShapesInputOutput;
103+
};
104+
sdk: {
105+
input: RecursiveShapesCommandInput;
106+
output: RecursiveShapesCommandOutput;
107+
};
108+
};
109+
}

private/smithy-rpcv2-cbor/src/commands/RpcV2CborDenseMapsCommand.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,16 @@ export class RpcV2CborDenseMapsCommand extends $Command
111111
.f(void 0, void 0)
112112
.ser(se_RpcV2CborDenseMapsCommand)
113113
.de(de_RpcV2CborDenseMapsCommand)
114-
.build() {}
114+
.build() {
115+
/** @internal type navigation helper, not in runtime. */
116+
protected declare static __types: {
117+
api: {
118+
input: RpcV2CborDenseMapsInputOutput;
119+
output: RpcV2CborDenseMapsInputOutput;
120+
};
121+
sdk: {
122+
input: RpcV2CborDenseMapsCommandInput;
123+
output: RpcV2CborDenseMapsCommandOutput;
124+
};
125+
};
126+
}

private/smithy-rpcv2-cbor/src/commands/RpcV2CborListsCommand.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,16 @@ export class RpcV2CborListsCommand extends $Command
149149
.f(void 0, void 0)
150150
.ser(se_RpcV2CborListsCommand)
151151
.de(de_RpcV2CborListsCommand)
152-
.build() {}
152+
.build() {
153+
/** @internal type navigation helper, not in runtime. */
154+
protected declare static __types: {
155+
api: {
156+
input: RpcV2CborListInputOutput;
157+
output: RpcV2CborListInputOutput;
158+
};
159+
sdk: {
160+
input: RpcV2CborListsCommandInput;
161+
output: RpcV2CborListsCommandOutput;
162+
};
163+
};
164+
}

0 commit comments

Comments
 (0)