Skip to content

Commit c98dfae

Browse files
committed
feat(clients): codegen cleanup
1 parent df939bc commit c98dfae

File tree

50 files changed

+57
-57
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+57
-57
lines changed

clients/client-api-gateway/src/commands/GetExportCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export interface GetExportCommandInput extends GetExportRequest {}
3434
export type GetExportCommandOutputType = Omit<ExportResponse, "body"> & {
3535
body?: Uint8ArrayBlobAdapter;
3636
};
37+
3738
/**
3839
* @public
3940
*

clients/client-api-gateway/src/commands/GetSdkCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export interface GetSdkCommandInput extends GetSdkRequest {}
3434
export type GetSdkCommandOutputType = Omit<SdkResponse, "body"> & {
3535
body?: Uint8ArrayBlobAdapter;
3636
};
37+
3738
/**
3839
* @public
3940
*

clients/client-api-gateway/src/commands/ImportApiKeysCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export { __MetadataBearer, $Command };
2828
export type ImportApiKeysCommandInputType = Omit<ImportApiKeysRequest, "body"> & {
2929
body: BlobTypes;
3030
};
31+
3132
/**
3233
* @public
3334
*

clients/client-api-gateway/src/commands/ImportDocumentationPartsCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export { __MetadataBearer, $Command };
2828
export type ImportDocumentationPartsCommandInputType = Omit<ImportDocumentationPartsRequest, "body"> & {
2929
body: BlobTypes;
3030
};
31+
3132
/**
3233
* @public
3334
*

clients/client-api-gateway/src/commands/ImportRestApiCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export { __MetadataBearer, $Command };
2828
export type ImportRestApiCommandInputType = Omit<ImportRestApiRequest, "body"> & {
2929
body: BlobTypes;
3030
};
31+
3132
/**
3233
* @public
3334
*

clients/client-api-gateway/src/commands/PutRestApiCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export { __MetadataBearer, $Command };
2828
export type PutRestApiCommandInputType = Omit<PutRestApiRequest, "body"> & {
2929
body: BlobTypes;
3030
};
31+
3132
/**
3233
* @public
3334
*

clients/client-apigatewaymanagementapi/src/commands/PostToConnectionCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export { __MetadataBearer, $Command };
3232
export type PostToConnectionCommandInputType = Omit<PostToConnectionRequest, "Data"> & {
3333
Data: BlobTypes;
3434
};
35+
3536
/**
3637
* @public
3738
*

clients/client-apigatewayv2/src/commands/ExportApiCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export interface ExportApiCommandInput extends ExportApiRequest {}
3434
export type ExportApiCommandOutputType = Omit<ExportApiResponse, "body"> & {
3535
body?: Uint8ArrayBlobAdapter;
3636
};
37+
3738
/**
3839
* @public
3940
*

clients/client-appconfig/src/commands/CreateHostedConfigurationVersionCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export type CreateHostedConfigurationVersionCommandInputType = Omit<
4040
> & {
4141
Content: BlobTypes;
4242
};
43+
4344
/**
4445
* @public
4546
*
@@ -53,6 +54,7 @@ export interface CreateHostedConfigurationVersionCommandInput
5354
export type CreateHostedConfigurationVersionCommandOutputType = Omit<HostedConfigurationVersion, "Content"> & {
5455
Content?: Uint8ArrayBlobAdapter;
5556
};
57+
5658
/**
5759
* @public
5860
*

clients/client-appconfig/src/commands/GetConfigurationCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export interface GetConfigurationCommandInput extends GetConfigurationRequest {}
3434
export type GetConfigurationCommandOutputType = Omit<Configuration, "Content"> & {
3535
Content?: Uint8ArrayBlobAdapter;
3636
};
37+
3738
/**
3839
* @public
3940
*

0 commit comments

Comments
 (0)