@kronos-integration/endpoint 9.5.0 → 9.5.1

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/README.md CHANGED
@@ -93,6 +93,7 @@ Named communication (end)-points inside of kronos
93
93
  * [SendEndpoint](#sendendpoint)
94
94
  * [Parameters](#parameters-19)
95
95
  * [isOut](#isout-2)
96
+ * [isIn](#isin-4)
96
97
 
97
98
  ## DummyReceiveEndpoint
98
99
 
@@ -102,7 +103,7 @@ Dummy endpoints are used during construction of the endpoint mesh.
102
103
 
103
104
  ### receive
104
105
 
105
- dummy does nothing by intention
106
+ dummy does nothing by intention.
106
107
 
107
108
  ### isIn
108
109
 
@@ -447,7 +448,7 @@ Send Endpoint acting as a default endpoints.
447
448
 
448
449
  ### isDefault
449
450
 
450
- We are a default endpoint
451
+ We are a default endpoint.
451
452
 
452
453
  Returns **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** always true
453
454
 
@@ -474,6 +475,12 @@ We are always *out*
474
475
 
475
476
  Returns **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** always true
476
477
 
478
+ ## isIn
479
+
480
+ Always receiving.
481
+
482
+ Returns **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** true
483
+
477
484
  # install
478
485
 
479
486
  With [npm](http://npmjs.org) do:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kronos-integration/endpoint",
3
- "version": "9.5.0",
3
+ "version": "9.5.1",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -38,7 +38,7 @@
38
38
  "lint:tsc": "tsc --allowJs --checkJs --noEmit -t esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
39
39
  },
40
40
  "dependencies": {
41
- "@kronos-integration/interceptor": "^10.2.38"
41
+ "@kronos-integration/interceptor": "^10.3.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "ava": "^6.1.1",
@@ -6,7 +6,7 @@ import { Endpoint } from "./endpoint.mjs";
6
6
  */
7
7
  export class DummyReceiveEndpoint extends Endpoint {
8
8
  /**
9
- * dummy does nothing by intention
9
+ * dummy does nothing by intention.
10
10
  */
11
11
  async receive() {}
12
12
 
@@ -4,7 +4,7 @@
4
4
  */
5
5
  export class DummyReceiveEndpoint extends Endpoint {
6
6
  /**
7
- * dummy does nothing by intention
7
+ * dummy does nothing by intention.
8
8
  */
9
9
  receive(): Promise<void>;
10
10
  }
@@ -153,3 +153,4 @@ export class Endpoint {
153
153
  get receivingInterceptors(): any[];
154
154
  }
155
155
  export type ConnectionState = any;
156
+ import { Interceptor } from "@kronos-integration/interceptor";