Skip to content

Commit

Permalink
fix(codegen): include NumberValue export in DocumentClient codegen (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhe authored Nov 6, 2023
1 parent 68c9a42 commit 1a03884
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ private void writeAdditionalFiles(
writer.write("export * from './pagination';");
writer.write("export * from './$L';", DocumentClientUtils.CLIENT_NAME);
writer.write("export * from './$L';", DocumentClientUtils.CLIENT_FULL_NAME);
writer.write("export { NumberValueImpl as NumberValue } from \"@aws-sdk/util-dynamodb\";");
});
}
}
Expand Down
1 change: 0 additions & 1 deletion lib/lib-dynamodb/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ export * from "./DynamoDBDocumentClient";
// smithy-typescript generated code
export * from "./commands";
export * from "./pagination";

export { NumberValueImpl as NumberValue } from "@aws-sdk/util-dynamodb";

0 comments on commit 1a03884

Please sign in to comment.