@xyo-network/diviner-forecasting-method-arima 3.18.10 → 4.0.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json.schemastore.org/package.json",
3
3
  "name": "@xyo-network/diviner-forecasting-method-arima",
4
- "version": "3.18.10",
4
+ "version": "4.0.1",
5
5
  "description": "XYO Archivist",
6
6
  "license": "LGPL-3.0-only",
7
7
  "author": "Arie Trouw",
@@ -16,16 +16,16 @@
16
16
  "module": "dist/neutral/index.mjs",
17
17
  "types": "dist/types/index.d.ts",
18
18
  "dependencies": {
19
- "@xyo-network/diviner-forecasting-model": "^3.18.10",
20
- "@xyo-network/payload-model": "^3.18.10",
19
+ "@xyo-network/diviner-forecasting-model": "^4.0.1",
20
+ "@xyo-network/payload-model": "^4.0.1",
21
21
  "arima": "^0.2.5"
22
22
  },
23
23
  "devDependencies": {
24
- "@xylabs/ts-scripts-yarn3": "^6.5.8",
25
- "@xylabs/tsconfig": "^6.5.8",
26
- "@xylabs/vitest-extended": "^4.11.21",
24
+ "@xylabs/ts-scripts-yarn3": "^6.5.12",
25
+ "@xylabs/tsconfig": "^6.5.12",
26
+ "@xylabs/vitest-extended": "^4.12.30",
27
27
  "typescript": "^5.8.3",
28
- "vitest": "^3.2.3"
28
+ "vitest": "^3.2.4"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"
@@ -1,19 +1,19 @@
1
1
  /* eslint-disable @typescript-eslint/member-ordering */
2
2
 
3
- declare type ARIMAMethod =
4
- | 0 // Exact Maximum Likelihood Method (Default)
5
- | 1 // Conditional Method - Sum Of Squares
6
- | 2 // Box-Jenkins Method
3
+ declare type ARIMAMethod
4
+ = | 0 // Exact Maximum Likelihood Method (Default)
5
+ | 1 // Conditional Method - Sum Of Squares
6
+ | 2 // Box-Jenkins Method
7
7
 
8
- declare type OptimizationMethod =
9
- | 0 // Nelder-Mead
10
- | 1 // Newton Line Search
11
- | 2 // Newton Trust Region - Hook Step
12
- | 3 // Newton Trust Region - Double Dog-Leg
13
- | 4 // Conjugate Gradient
14
- | 5 // BFGS
15
- | 6 // Limited Memory BFGS (Default)
16
- | 7 // BFGS Using More Thuente Method
8
+ declare type OptimizationMethod
9
+ = | 0 // Nelder-Mead
10
+ | 1 // Newton Line Search
11
+ | 2 // Newton Trust Region - Hook Step
12
+ | 3 // Newton Trust Region - Double Dog-Leg
13
+ | 4 // Conjugate Gradient
14
+ | 5 // BFGS
15
+ | 6 // Limited Memory BFGS (Default)
16
+ | 7 // BFGS Using More Thuente Method
17
17
 
18
18
  declare interface ARIMAOptions {
19
19
  auto?: boolean // automatic ARIMA (default: false)