@digitraffic/common 2024.1.24-1 → 2024.1.24-2

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.
@@ -3,7 +3,7 @@ import { ProxyHolder } from "../../runtime/secrets/proxy-holder.mjs";
3
3
  import { RdsHolder } from "../../runtime/secrets/rds-holder.mjs";
4
4
  import { getEnvVariable } from "../../../utils/utils.mjs";
5
5
  import { logger } from "../../runtime/dt-logger-default.mjs";
6
- const synthetics = await import("Synthetics");
6
+ import synthetics from "Synthetics";
7
7
  class DatabaseCheck {
8
8
  constructor(name, sql) {
9
9
  this.name = name;
@@ -1,4 +1,4 @@
1
- const AWS = await import("aws-sdk");
1
+ import AWS from "aws-sdk";
2
2
  import * as sinon from "sinon";
3
3
  import { EnvKeys } from "../aws/runtime/environment.mjs";
4
4
  import { setEnvVariable } from "../utils/utils.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitraffic/common",
3
- "version": "2024.1.24-1",
3
+ "version": "2024.1.24-2",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "repository": {
@@ -5,7 +5,7 @@ import { getEnvVariable } from "../../../utils/utils.mjs";
5
5
  import { Countable } from "../../../database/models.mjs";
6
6
  import { logger } from "../../runtime/dt-logger-default.mjs";
7
7
 
8
- const synthetics = await import("Synthetics");
8
+ import synthetics from "Synthetics";
9
9
 
10
10
  abstract class DatabaseCheck<T> {
11
11
  readonly name: string;
@@ -1,4 +1,4 @@
1
- const AWS = await import("aws-sdk");
1
+ import AWS from "aws-sdk";
2
2
  import * as sinon from "sinon";
3
3
  import { EnvKeys } from "../aws/runtime/environment.mjs";
4
4
  import { setEnvVariable } from "../utils/utils.mjs";