From f23158a36f322300014d4ad74b41f9360580409e Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Tue, 11 Oct 2022 13:22:54 -0700 Subject: [PATCH] chore(clients): add missing newline (#4030) --- clients/client-connectcases/src/index.ts | 1 + private/aws-echo-service/src/index.ts | 1 + private/aws-protocoltests-ec2/src/index.ts | 1 + private/aws-protocoltests-json-10/src/index.ts | 1 + private/aws-protocoltests-json/src/index.ts | 1 + private/aws-protocoltests-query/src/index.ts | 1 + private/aws-protocoltests-restjson/src/index.ts | 1 + private/aws-protocoltests-restxml/src/index.ts | 1 + 8 files changed, 8 insertions(+) diff --git a/clients/client-connectcases/src/index.ts b/clients/client-connectcases/src/index.ts index b42f57501ee0..1aef4941b46e 100644 --- a/clients/client-connectcases/src/index.ts +++ b/clients/client-connectcases/src/index.ts @@ -4,4 +4,5 @@ export * from "./ConnectCasesClient"; export * from "./commands"; export * from "./models"; export * from "./pagination"; + export { ConnectCasesServiceException } from "./models/ConnectCasesServiceException"; diff --git a/private/aws-echo-service/src/index.ts b/private/aws-echo-service/src/index.ts index e68a81039175..48589e49504e 100644 --- a/private/aws-echo-service/src/index.ts +++ b/private/aws-echo-service/src/index.ts @@ -3,4 +3,5 @@ export * from "./EchoServiceClient"; export * from "./EchoService"; export * from "./commands"; export * from "./models"; + export { EchoServiceServiceException } from "./models/EchoServiceServiceException"; diff --git a/private/aws-protocoltests-ec2/src/index.ts b/private/aws-protocoltests-ec2/src/index.ts index d6a5b8703020..f781f476b63c 100644 --- a/private/aws-protocoltests-ec2/src/index.ts +++ b/private/aws-protocoltests-ec2/src/index.ts @@ -3,4 +3,5 @@ export * from "./EC2Protocol"; export * from "./EC2ProtocolClient"; export * from "./commands"; export * from "./models"; + export { EC2ProtocolServiceException } from "./models/EC2ProtocolServiceException"; diff --git a/private/aws-protocoltests-json-10/src/index.ts b/private/aws-protocoltests-json-10/src/index.ts index add5e27e487c..f5643d1f597a 100644 --- a/private/aws-protocoltests-json-10/src/index.ts +++ b/private/aws-protocoltests-json-10/src/index.ts @@ -3,4 +3,5 @@ export * from "./JSONRPC10"; export * from "./JSONRPC10Client"; export * from "./commands"; export * from "./models"; + export { JSONRPC10ServiceException } from "./models/JSONRPC10ServiceException"; diff --git a/private/aws-protocoltests-json/src/index.ts b/private/aws-protocoltests-json/src/index.ts index 0d8cb31242b9..a53dfcfee565 100644 --- a/private/aws-protocoltests-json/src/index.ts +++ b/private/aws-protocoltests-json/src/index.ts @@ -3,4 +3,5 @@ export * from "./JsonProtocol"; export * from "./JsonProtocolClient"; export * from "./commands"; export * from "./models"; + export { JsonProtocolServiceException } from "./models/JsonProtocolServiceException"; diff --git a/private/aws-protocoltests-query/src/index.ts b/private/aws-protocoltests-query/src/index.ts index 51d2b72c4d00..1ccc6c659f4f 100644 --- a/private/aws-protocoltests-query/src/index.ts +++ b/private/aws-protocoltests-query/src/index.ts @@ -3,4 +3,5 @@ export * from "./QueryProtocol"; export * from "./QueryProtocolClient"; export * from "./commands"; export * from "./models"; + export { QueryProtocolServiceException } from "./models/QueryProtocolServiceException"; diff --git a/private/aws-protocoltests-restjson/src/index.ts b/private/aws-protocoltests-restjson/src/index.ts index a1b03ac24f1e..871a4ba32b05 100644 --- a/private/aws-protocoltests-restjson/src/index.ts +++ b/private/aws-protocoltests-restjson/src/index.ts @@ -3,4 +3,5 @@ export * from "./RestJsonProtocol"; export * from "./RestJsonProtocolClient"; export * from "./commands"; export * from "./models"; + export { RestJsonProtocolServiceException } from "./models/RestJsonProtocolServiceException"; diff --git a/private/aws-protocoltests-restxml/src/index.ts b/private/aws-protocoltests-restxml/src/index.ts index 8ae1506581cc..eeea8487512e 100644 --- a/private/aws-protocoltests-restxml/src/index.ts +++ b/private/aws-protocoltests-restxml/src/index.ts @@ -3,4 +3,5 @@ export * from "./RestXmlProtocol"; export * from "./RestXmlProtocolClient"; export * from "./commands"; export * from "./models"; + export { RestXmlProtocolServiceException } from "./models/RestXmlProtocolServiceException";