@hotmeshio/hotmesh 0.0.39 → 0.0.41

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.
package/build/index.d.ts CHANGED
@@ -3,3 +3,4 @@ import { MeshOSService as MeshOS } from './services/durable/meshos';
3
3
  import { HotMeshService as HotMesh } from './services/hotmesh';
4
4
  import { HotMeshConfig } from './types/hotmesh';
5
5
  export { Durable, HotMesh, HotMeshConfig, MeshOS };
6
+ export * as Types from './types';
package/build/index.js CHANGED
@@ -1,9 +1,33 @@
1
1
  "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
2
25
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MeshOS = exports.HotMesh = exports.Durable = void 0;
26
+ exports.Types = exports.MeshOS = exports.HotMesh = exports.Durable = void 0;
4
27
  const durable_1 = require("./services/durable");
5
28
  Object.defineProperty(exports, "Durable", { enumerable: true, get: function () { return durable_1.Durable; } });
6
29
  const meshos_1 = require("./services/durable/meshos");
7
30
  Object.defineProperty(exports, "MeshOS", { enumerable: true, get: function () { return meshos_1.MeshOSService; } });
8
31
  const hotmesh_1 = require("./services/hotmesh");
9
32
  Object.defineProperty(exports, "HotMesh", { enumerable: true, get: function () { return hotmesh_1.HotMeshService; } });
33
+ exports.Types = __importStar(require("./types"));
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@hotmeshio/hotmesh",
3
- "version": "0.0.39",
3
+ "version": "0.0.41",
4
4
  "description": "Unbreakable Workflows",
5
- "main": "build/index.js",
6
- "types": "build/index.d.ts",
5
+ "main": "./build/index.js",
6
+ "types": "./build/index.d.ts",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "https://github.com/hotmeshio/sdk-typescript.git"
package/index.ts CHANGED
@@ -4,3 +4,4 @@ import { HotMeshService as HotMesh } from './services/hotmesh';
4
4
  import { HotMeshConfig } from './types/hotmesh';
5
5
 
6
6
  export { Durable, HotMesh, HotMeshConfig, MeshOS };
7
+ export * as Types from './types';
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@hotmeshio/hotmesh",
3
- "version": "0.0.39",
3
+ "version": "0.0.41",
4
4
  "description": "Unbreakable Workflows",
5
- "main": "build/index.js",
6
- "types": "build/index.d.ts",
5
+ "main": "./build/index.js",
6
+ "types": "./build/index.d.ts",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "https://github.com/hotmeshio/sdk-typescript.git"