File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
clients/client-workspaces-thin-client/src Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -28,3 +28,17 @@ export * from "./models";
28
28
import "@aws-sdk/util-endpoints" ;
29
29
30
30
export { WorkSpacesThinClientServiceException } from "./models/WorkSpacesThinClientServiceException" ;
31
+
32
+ import { WorkSpacesThinClient } from "./WorkSpacesThinClient" ;
33
+
34
+ /**
35
+ * @deprecated use {WorkSpacesThinClient} (renamed) instead.
36
+ * The aggregated client is called WorkSpacesThinClient,
37
+ * and the barebones client is called WorkSpacesThinClientClient.
38
+ *
39
+ * Due to some code generation issues with the word "Client" in the service name,
40
+ * we are maintaining a few backwards compatible aliases here.
41
+ */
42
+ export const WorkSpacesThin = WorkSpacesThinClient ;
43
+
44
+ export type { WorkSpacesThinClientPaginationConfiguration as WorkSpacesThinPaginationConfiguration } from "./pagination/Interfaces" ;
Original file line number Diff line number Diff line change @@ -94,7 +94,6 @@ const {
94
94
95
95
const undoS3 = s3Hack ( ) ;
96
96
await generateClients ( models || globs || DEFAULT_CODE_GEN_INPUT_DIR , batchSize ) ;
97
- require ( "./customizations/workspaces-thin-client" ) ( ) ;
98
97
undoS3 ( ) ;
99
98
100
99
if ( ! noPrivateClients ) {
@@ -133,6 +132,8 @@ const {
133
132
emptyDirSync ( TEMP_CODE_GEN_INPUT_DIR ) ;
134
133
rmdirSync ( TEMP_CODE_GEN_INPUT_DIR ) ;
135
134
}
135
+
136
+ require ( "./customizations/workspaces-thin-client" ) ( ) ;
136
137
} catch ( e ) {
137
138
console . log ( e ) ;
138
139
process . exit ( 1 ) ;
You can’t perform that action at this time.
0 commit comments