@xyo-network/diviner-forecasting-method-arima 4.1.2 → 4.1.4

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,21 +1,2 @@
1
- import { ForecastingMethod } from '@xyo-network/diviner-forecasting-model';
2
- import { Payload } from '@xyo-network/payload-model';
3
- import { ARIMAOptions } from 'arima';
4
-
5
- declare const commonOpts: ARIMAOptions;
6
- type PredictionPayload = Payload<{
7
- error?: number;
8
- value: number;
9
- }>;
10
- declare const configurableArima: (opts?: ARIMAOptions, predictionSteps?: number) => ForecastingMethod;
11
-
12
- declare const arimaOpts: ARIMAOptions;
13
- declare const arimaForecastingName = "arimaForecasting";
14
- declare const arimaForecastingMethod: ForecastingMethod;
15
-
16
- declare const seasonalArimaOpts: ARIMAOptions;
17
- declare const seasonalArimaForecastingName = "seasonalArimaForecasting";
18
- declare const seasonalArimaForecastingMethod: ForecastingMethod;
19
-
20
- export { arimaForecastingMethod, arimaForecastingName, arimaOpts, commonOpts, configurableArima, seasonalArimaForecastingMethod, seasonalArimaForecastingName, seasonalArimaOpts };
21
- export type { PredictionPayload };
1
+ export * from './arima/index.ts';
2
+ //# sourceMappingURL=index.d.ts.map
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": "4.1.2",
4
+ "version": "4.1.4",
5
5
  "description": "XYO Archivist",
6
6
  "license": "LGPL-3.0-only",
7
7
  "author": "Arie Trouw",
@@ -16,14 +16,14 @@
16
16
  "module": "dist/neutral/index.mjs",
17
17
  "types": "dist/neutral/index.d.ts",
18
18
  "dependencies": {
19
- "@xyo-network/diviner-forecasting-model": "^4.1.2",
20
- "@xyo-network/payload-model": "^4.1.2",
19
+ "@xyo-network/diviner-forecasting-model": "^4.1.4",
20
+ "@xyo-network/payload-model": "^4.1.4",
21
21
  "arima": "^0.2.5"
22
22
  },
23
23
  "devDependencies": {
24
- "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.23",
25
- "@xylabs/tsconfig": "^7.0.0-rc.23",
26
- "@xylabs/vitest-extended": "^4.13.15",
24
+ "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
25
+ "@xylabs/tsconfig": "^7.0.0-rc.27",
26
+ "@xylabs/vitest-extended": "^4.13.16",
27
27
  "typescript": "^5.8.3",
28
28
  "vitest": "^3.2.4"
29
29
  },