@xyo-network/diviner-forecasting-method-arima 2.107.5 → 2.107.6

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/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "2.107.5",
7
+ "version": "2.107.6",
8
8
  "description": "XYO Archivist",
9
9
  "sideeffects": false,
10
10
  "engines": {
@@ -41,13 +41,13 @@
41
41
  "author": "Arie Trouw",
42
42
  "license": "LGPL-3.0-only",
43
43
  "dependencies": {
44
- "@xyo-network/diviner-forecasting-model": "~2.107.5",
45
- "@xyo-network/payload-model": "~2.107.5",
44
+ "@xyo-network/diviner-forecasting-model": "^2.107.6",
45
+ "@xyo-network/payload-model": "^2.107.6",
46
46
  "arima": "^0.2.5"
47
47
  },
48
48
  "devDependencies": {
49
- "@xylabs/ts-scripts-yarn3": "^3.11.10",
50
- "@xylabs/tsconfig": "^3.11.10",
49
+ "@xylabs/ts-scripts-yarn3": "^3.11.12",
50
+ "@xylabs/tsconfig": "^3.11.12",
51
51
  "typescript": "^5.5.2"
52
52
  },
53
53
  "type": "module"
@@ -37,7 +37,6 @@ declare type PredictionResult = [predictions: number[], meanSquareErrors: number
37
37
  declare module 'arima' {
38
38
  export { ARIMAMethod, ARIMAOptions, OptimizationMethod, PredictionResult }
39
39
 
40
- // eslint-disable-next-line import/no-default-export
41
40
  export default class ARIMA {
42
41
  constructor(options: ARIMAOptions)
43
42
  predict(steps: number): PredictionResult