@ad-sdk/bgd 0.0.3 → 0.0.4

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.
Files changed (3) hide show
  1. package/index.d.ts +2 -0
  2. package/index.js +22 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  export * from "./allocators";
2
2
  export * from "./lifecycle";
3
3
  export * from "./util";
4
+ export * from "./cancellation";
4
5
  export * from "./errors";
6
+ export * from "./runtime";
5
7
  export * from "./types";
package/index.js CHANGED
@@ -36,6 +36,17 @@ Object.keys(_util).forEach(function (key) {
36
36
  }
37
37
  });
38
38
  });
39
+ var _cancellation = require("./cancellation");
40
+ Object.keys(_cancellation).forEach(function (key) {
41
+ if (key === "default" || key === "__esModule") return;
42
+ if (key in exports && exports[key] === _cancellation[key]) return;
43
+ Object.defineProperty(exports, key, {
44
+ enumerable: true,
45
+ get: function () {
46
+ return _cancellation[key];
47
+ }
48
+ });
49
+ });
39
50
  var _errors = require("./errors");
40
51
  Object.keys(_errors).forEach(function (key) {
41
52
  if (key === "default" || key === "__esModule") return;
@@ -47,6 +58,17 @@ Object.keys(_errors).forEach(function (key) {
47
58
  }
48
59
  });
49
60
  });
61
+ var _runtime = require("./runtime");
62
+ Object.keys(_runtime).forEach(function (key) {
63
+ if (key === "default" || key === "__esModule") return;
64
+ if (key in exports && exports[key] === _runtime[key]) return;
65
+ Object.defineProperty(exports, key, {
66
+ enumerable: true,
67
+ get: function () {
68
+ return _runtime[key];
69
+ }
70
+ });
71
+ });
50
72
  var _types = require("./types");
51
73
  Object.keys(_types).forEach(function (key) {
52
74
  if (key === "default" || key === "__esModule") return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ad-sdk/bgd",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "main": "index.js",
5
5
  "license": "BSD-3-Clause",
6
6
  "repository": {