@xyo-network/diviner-forecasting-method-arima 3.9.17 → 3.9.19

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.
@@ -0,0 +1,10 @@
1
+ import type { ForecastingMethod } from '@xyo-network/diviner-forecasting-model';
2
+ import type { Payload } from '@xyo-network/payload-model';
3
+ import type { ARIMAOptions } from 'arima';
4
+ export declare const commonOpts: ARIMAOptions;
5
+ export type PredictionPayload = Payload<{
6
+ error?: number;
7
+ value: number;
8
+ }>;
9
+ export declare const configurableArima: (opts?: ARIMAOptions, predictionSteps?: number) => ForecastingMethod;
10
+ //# sourceMappingURL=configurableArima.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"configurableArima.d.ts","sourceRoot":"","sources":["../../../../src/arima/configurable/configurableArima.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACA,iBAAiB,EAC5B,MAAM,wCAAwC,CAAA;AAC/C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AACzD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAGzC,eAAO,MAAM,UAAU,EAAE,YAAiC,CAAA;AAE1D,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC,CAAA;AAE1E,eAAO,MAAM,iBAAiB,GAAI,OAAM,YAAyB,EAAE,wBAAoB,KAAG,iBAgBzF,CAAA"}
@@ -0,0 +1,2 @@
1
+ export * from './configurableArima.ts';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/arima/configurable/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAA"}
@@ -0,0 +1,6 @@
1
+ import type { ForecastingMethod } from '@xyo-network/diviner-forecasting-model';
2
+ import type { ARIMAOptions } from 'arima';
3
+ export declare const arimaOpts: ARIMAOptions;
4
+ export declare const arimaForecastingName = "arimaForecasting";
5
+ export declare const arimaForecastingMethod: ForecastingMethod;
6
+ //# sourceMappingURL=arima.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"arima.d.ts","sourceRoot":"","sources":["../../../../src/arima/configured/arima.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAA;AAC/E,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAIzC,eAAO,MAAM,SAAS,EAAE,YAEvB,CAAA;AAED,eAAO,MAAM,oBAAoB,qBAAqB,CAAA;AAEtD,eAAO,MAAM,sBAAsB,EAAE,iBAAgD,CAAA"}
@@ -0,0 +1,3 @@
1
+ export * from './arima.ts';
2
+ export * from './seasonalArima.ts';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/arima/configured/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA"}
@@ -0,0 +1,6 @@
1
+ import type { ForecastingMethod } from '@xyo-network/diviner-forecasting-model';
2
+ import type { ARIMAOptions } from 'arima';
3
+ export declare const seasonalArimaOpts: ARIMAOptions;
4
+ export declare const seasonalArimaForecastingName = "seasonalArimaForecasting";
5
+ export declare const seasonalArimaForecastingMethod: ForecastingMethod;
6
+ //# sourceMappingURL=seasonalArima.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"seasonalArima.d.ts","sourceRoot":"","sources":["../../../../src/arima/configured/seasonalArima.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAA;AAC/E,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAIzC,eAAO,MAAM,iBAAiB,EAAE,YAE/B,CAAA;AAED,eAAO,MAAM,4BAA4B,6BAA6B,CAAA;AAEtE,eAAO,MAAM,8BAA8B,EAAE,iBAAwD,CAAA"}
@@ -0,0 +1,3 @@
1
+ export * from './configurable/index.ts';
2
+ export * from './configured/index.ts';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/arima/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,uBAAuB,CAAA"}
@@ -1,20 +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 { type PredictionPayload, arimaForecastingMethod, arimaForecastingName, arimaOpts, commonOpts, configurableArima, seasonalArimaForecastingMethod, seasonalArimaForecastingName, seasonalArimaOpts };
1
+ export * from './arima/index.ts';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA"}
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.9.17",
4
+ "version": "3.9.19",
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/neutral/index.d.ts",
18
18
  "dependencies": {
19
- "@xyo-network/diviner-forecasting-model": "^3.9.17",
20
- "@xyo-network/payload-model": "^3.9.17",
19
+ "@xyo-network/diviner-forecasting-model": "^3.9.19",
20
+ "@xyo-network/payload-model": "^3.9.19",
21
21
  "arima": "^0.2.5"
22
22
  },
23
23
  "devDependencies": {
24
- "@xylabs/ts-scripts-yarn3": "^5.0.24",
25
- "@xylabs/tsconfig": "^5.0.24",
24
+ "@xylabs/ts-scripts-yarn3": "^5.0.39",
25
+ "@xylabs/tsconfig": "^5.0.39",
26
26
  "@xylabs/vitest-extended": "^4.5.1",
27
- "typescript": "^5.7.3",
28
- "vitest": "^3.0.6"
27
+ "typescript": "^5.8.2",
28
+ "vitest": "^3.0.7"
29
29
  },
30
30
  "engines": {
31
31
  "node": ">=16 <17"