@tstdl/base 0.93.102 → 0.93.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,6 +16,7 @@ let InAppNotification = class InAppNotification extends TenantBaseEntity {
16
16
  static entityName = 'InAppNotification';
17
17
  userId;
18
18
  logId;
19
+ // TODO: anpinnen?
19
20
  readTimestamp;
20
21
  archiveTimestamp;
21
22
  };
@@ -5,6 +5,10 @@ export declare class S3ObjectStorageProviderConfig {
5
5
  * S3 endpoint
6
6
  */
7
7
  endpoint: string;
8
+ /**
9
+ * S3 Region
10
+ */
11
+ region?: string;
8
12
  /**
9
13
  * S3 bucket, use a single bucket for all modules (which will become transparent key prefixes)
10
14
  *
@@ -18,6 +18,10 @@ export class S3ObjectStorageProviderConfig {
18
18
  * S3 endpoint
19
19
  */
20
20
  endpoint;
21
+ /**
22
+ * S3 Region
23
+ */
24
+ region;
21
25
  /**
22
26
  * S3 bucket, use a single bucket for all modules (which will become transparent key prefixes)
23
27
  *
@@ -50,6 +54,7 @@ let S3ObjectStorageProvider = class S3ObjectStorageProvider extends ObjectStorag
50
54
  }
51
55
  this.client = new Client({
52
56
  endPoint: hostname,
57
+ region: config.region,
53
58
  port: (port.length > 0) ? parseInt(port, 10) : undefined,
54
59
  useSSL: protocol == 'https:',
55
60
  accessKey: config.accessKey,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.93.102",
3
+ "version": "0.93.103",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"