namirasoft-inference 1.5.6 → 1.5.7

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.
@@ -18,7 +18,7 @@ const NamirasoftInferenceServerUsage_1 = require("./NamirasoftInferenceServerUsa
18
18
  const NamirasoftInferenceServerValue_1 = require("./NamirasoftInferenceServerValue");
19
19
  class NamirasoftInferenceServer extends namirasoft_account_1.NSABaseServer {
20
20
  constructor(base_url, token_manager, onError) {
21
- super(base_url, `1.5.6`, token_manager, onError);
21
+ super(base_url, `1.5.7`, token_manager, onError);
22
22
  this.health = new NamirasoftInferenceServerHealth_1.NamirasoftInferenceServerHealth(this);
23
23
  this.metrics = new NamirasoftInferenceServerMetrics_1.NamirasoftInferenceServerMetrics(this);
24
24
  this.value = new NamirasoftInferenceServerValue_1.NamirasoftInferenceServerValue(this);
@@ -3,5 +3,4 @@ export type FailoverTargetInputRow = {
3
3
  inferencer_type: FailoverTargetInferencerType;
4
4
  inferencer_id: string;
5
5
  timeout: number;
6
- order: number;
7
6
  };
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.5.6",
11
+ "version": "1.5.7",
12
12
  "author": "Amir Abolhasani",
13
13
  "license": "MIT",
14
14
  "main": "./dist/index.js",
@@ -53,7 +53,7 @@ export class NamirasoftInferenceServer extends NSABaseServer
53
53
  usage: NamirasoftInferenceServerUsage;
54
54
  constructor(base_url: string, token_manager: TokenManager, onError: (error: Error) => void)
55
55
  {
56
- super(base_url, `1.5.6`, token_manager, onError);
56
+ super(base_url, `1.5.7`, token_manager, onError);
57
57
  this.health = new NamirasoftInferenceServerHealth(this);
58
58
  this.metrics = new NamirasoftInferenceServerMetrics(this);
59
59
  this.value = new NamirasoftInferenceServerValue(this);
@@ -25,5 +25,4 @@ export type FailoverTargetInputRow =
25
25
  inferencer_type: FailoverTargetInferencerType;
26
26
  inferencer_id: string;
27
27
  timeout: number;
28
- order: number;
29
28
  }