@squiz/db-lib 1.66.3 → 1.68.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.68.0
4
+
5
+ ### Minor Changes
6
+
7
+ - bd553fe: fix dynamdb integration test issues
8
+
9
+ ## 1.67.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 6f1e812: fix dynamdb integration test issues
14
+
3
15
  ## 1.66.3
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,12 @@
1
+ export declare const getDynamoDbOptions: (awsRegion: string, nodeEnv: 'production' | 'development') => {
2
+ region: string;
3
+ credentials?: undefined;
4
+ endpoint?: undefined;
5
+ } | {
6
+ credentials: {
7
+ accessKeyId: string;
8
+ secretAccessKey: string;
9
+ };
10
+ endpoint: string;
11
+ region?: undefined;
12
+ };
package/lib/index.d.ts CHANGED
@@ -2,6 +2,7 @@ export * from './AbstractRepository';
2
2
  export * from './ConnectionManager';
3
3
  export * from './dynamodb/DynamoDbManager';
4
4
  export * from './dynamodb/AbstractDynamoDbRepository';
5
+ export * from './dynamodb/getDynamoDbOptions';
5
6
  export * from './Migrator';
6
7
  export * from './Repositories';
7
8
  export * from './getConnectionInfo';