@stinkycomputing/cachearoo 1.0.24 → 1.0.25

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.
@@ -1,4 +1,4 @@
1
- import { Cachearoo, CachearooSettings, RequestOptions } from './libs/cro';
1
+ import { Cachearoo, CachearooSettings, RequestOptions, ReplyError, TimeoutError, AlreadyExistsError } from './libs/cro';
2
2
  import { CompetingConsumer, Producer } from './libs/cro.msg.competing-consumers';
3
3
  import { Requestor, Replier } from './libs/cro.msg.request-reply';
4
4
  export declare namespace Messaging {
@@ -16,4 +16,4 @@ export declare namespace Messaging {
16
16
  };
17
17
  }
18
18
  export { Requestor, Replier } from './libs/cro.msg.request-reply';
19
- export { Cachearoo, CachearooSettings, RequestOptions };
19
+ export { Cachearoo, CachearooSettings, RequestOptions, ReplyError, TimeoutError, AlreadyExistsError };
@@ -1,12 +1,15 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RequestOptions = exports.CachearooSettings = exports.Cachearoo = exports.Replier = exports.Requestor = exports.Messaging = void 0;
3
+ exports.AlreadyExistsError = exports.TimeoutError = exports.ReplyError = exports.RequestOptions = exports.CachearooSettings = exports.Cachearoo = exports.Replier = exports.Requestor = exports.Messaging = void 0;
4
4
  const fetch = require("node-fetch-commonjs");
5
5
  global.fetch = fetch;
6
6
  const cro_1 = require("./libs/cro");
7
7
  Object.defineProperty(exports, "Cachearoo", { enumerable: true, get: function () { return cro_1.Cachearoo; } });
8
8
  Object.defineProperty(exports, "CachearooSettings", { enumerable: true, get: function () { return cro_1.CachearooSettings; } });
9
9
  Object.defineProperty(exports, "RequestOptions", { enumerable: true, get: function () { return cro_1.RequestOptions; } });
10
+ Object.defineProperty(exports, "ReplyError", { enumerable: true, get: function () { return cro_1.ReplyError; } });
11
+ Object.defineProperty(exports, "TimeoutError", { enumerable: true, get: function () { return cro_1.TimeoutError; } });
12
+ Object.defineProperty(exports, "AlreadyExistsError", { enumerable: true, get: function () { return cro_1.AlreadyExistsError; } });
10
13
  const cro_msg_competing_consumers_1 = require("./libs/cro.msg.competing-consumers");
11
14
  const cro_msg_request_reply_1 = require("./libs/cro.msg.request-reply");
12
15
  const cro_msg_competing_consumers_2 = require("./libs/cro.msg.competing-consumers");
@@ -1,4 +1,4 @@
1
- import { Cachearoo, CachearooSettings, RequestOptions } from './libs/cro';
1
+ import { Cachearoo, CachearooSettings, RequestOptions, ReplyError, TimeoutError, AlreadyExistsError } from './libs/cro';
2
2
  import { CompetingConsumer, Producer } from './libs/cro.msg.competing-consumers';
3
3
  import { Requestor, Replier } from './libs/cro.msg.request-reply';
4
4
  export declare namespace Messaging {
@@ -16,4 +16,4 @@ export declare namespace Messaging {
16
16
  };
17
17
  }
18
18
  export { Requestor, Replier } from './libs/cro.msg.request-reply';
19
- export { Cachearoo, CachearooSettings, RequestOptions };
19
+ export { Cachearoo, CachearooSettings, RequestOptions, ReplyError, TimeoutError, AlreadyExistsError };