@xyo-network/diviner-forecasting-method-arima 5.3.29 → 5.4.0

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.
Files changed (2) hide show
  1. package/README.md +0 -132
  2. package/package.json +18 -22
package/README.md CHANGED
@@ -38,138 +38,6 @@ bun add {{name}}
38
38
 
39
39
  See the [LICENSE](LICENSE) file for license rights and limitations (LGPL-3.0-only).
40
40
 
41
- ## Reference
42
-
43
- ### packages
44
-
45
- ### modules
46
-
47
- ### packages
48
-
49
- ### diviner
50
-
51
- ### packages
52
-
53
- ### forecasting
54
-
55
- ### packages
56
-
57
- ### arima
58
-
59
- ### .temp-typedoc
60
-
61
- ### functions
62
-
63
- ### <a id="configurableArima"></a>configurableArima
64
-
65
- [**@xyo-network/diviner-forecasting-method-arima**](#../README)
66
-
67
- ***
68
-
69
- ```ts
70
- function configurableArima(opts?, predictionSteps?): ForecastingMethod;
71
- ```
72
-
73
- ## Parameters
74
-
75
- ### opts?
76
-
77
- `ARIMAOptions` = `commonOpts`
78
-
79
- ### predictionSteps?
80
-
81
- `number` = `10`
82
-
83
- ## Returns
84
-
85
- `ForecastingMethod`
86
-
87
- ### type-aliases
88
-
89
- ### <a id="PredictionPayload"></a>PredictionPayload
90
-
91
- [**@xyo-network/diviner-forecasting-method-arima**](#../README)
92
-
93
- ***
94
-
95
- ```ts
96
- type PredictionPayload = Payload<{
97
- error?: number;
98
- value: number;
99
- }>;
100
- ```
101
-
102
- ### variables
103
-
104
- ### <a id="arimaForecastingMethod"></a>arimaForecastingMethod
105
-
106
- [**@xyo-network/diviner-forecasting-method-arima**](#../README)
107
-
108
- ***
109
-
110
- ```ts
111
- const arimaForecastingMethod: ForecastingMethod;
112
- ```
113
-
114
- ### <a id="arimaForecastingName"></a>arimaForecastingName
115
-
116
- [**@xyo-network/diviner-forecasting-method-arima**](#../README)
117
-
118
- ***
119
-
120
- ```ts
121
- const arimaForecastingName: "arimaForecasting" = 'arimaForecasting';
122
- ```
123
-
124
- ### <a id="arimaOpts"></a>arimaOpts
125
-
126
- [**@xyo-network/diviner-forecasting-method-arima**](#../README)
127
-
128
- ***
129
-
130
- ```ts
131
- const arimaOpts: ARIMAOptions;
132
- ```
133
-
134
- ### <a id="commonOpts"></a>commonOpts
135
-
136
- [**@xyo-network/diviner-forecasting-method-arima**](#../README)
137
-
138
- ***
139
-
140
- ```ts
141
- const commonOpts: ARIMAOptions;
142
- ```
143
-
144
- ### <a id="seasonalArimaForecastingMethod"></a>seasonalArimaForecastingMethod
145
-
146
- [**@xyo-network/diviner-forecasting-method-arima**](#../README)
147
-
148
- ***
149
-
150
- ```ts
151
- const seasonalArimaForecastingMethod: ForecastingMethod;
152
- ```
153
-
154
- ### <a id="seasonalArimaForecastingName"></a>seasonalArimaForecastingName
155
-
156
- [**@xyo-network/diviner-forecasting-method-arima**](#../README)
157
-
158
- ***
159
-
160
- ```ts
161
- const seasonalArimaForecastingName: "seasonalArimaForecasting" = 'seasonalArimaForecasting';
162
- ```
163
-
164
- ### <a id="seasonalArimaOpts"></a>seasonalArimaOpts
165
-
166
- [**@xyo-network/diviner-forecasting-method-arima**](#../README)
167
-
168
- ***
169
-
170
- ```ts
171
- const seasonalArimaOpts: ARIMAOptions;
172
- ```
173
41
 
174
42
 
175
43
  [logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
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": "5.3.29",
4
+ "version": "5.4.0",
5
5
  "description": "XYO Archivist",
6
6
  "license": "LGPL-3.0-only",
7
7
  "author": "Arie Trouw",
@@ -10,12 +10,10 @@
10
10
  "exports": {
11
11
  ".": {
12
12
  "types": "./dist/neutral/index.d.ts",
13
- "import": "./dist/neutral/index.mjs",
14
13
  "default": "./dist/neutral/index.mjs"
15
14
  },
16
15
  "./package.json": "./package.json"
17
16
  },
18
- "types": "dist/neutral/index.d.ts",
19
17
  "files": [
20
18
  "dist",
21
19
  "!**/*.bench.*",
@@ -25,34 +23,32 @@
25
23
  ],
26
24
  "dependencies": {
27
25
  "arima": "~0.2.8",
28
- "@xyo-network/diviner-forecasting-model": "~5.3.29",
29
- "@xyo-network/payload-model": "~5.3.29"
26
+ "@xyo-network/diviner-forecasting-model": "~5.4.0",
27
+ "@xyo-network/payload-model": "~5.4.0"
30
28
  },
31
29
  "devDependencies": {
32
30
  "@opentelemetry/api": "^1.9.1",
33
- "@types/node": "^25.5.2",
34
- "@xylabs/sdk-js": "^5.0.95",
35
- "@xylabs/ts-scripts-common": "~7.8.4",
36
- "@xylabs/ts-scripts-pnpm": "~7.8.4",
37
- "@xylabs/tsconfig": "~7.8.4",
38
- "@xylabs/vitest-extended": "~5.0.95",
39
- "@xylabs/vitest-matchers": "~5.0.95",
40
- "axios": "^1.14.0",
31
+ "@types/node": "^25.6.0",
32
+ "@xylabs/sdk-js": "^5.0.97",
33
+ "@xylabs/toolchain": "~7.10.8",
34
+ "@xylabs/tsconfig": "~7.10.8",
35
+ "@xylabs/vitest-extended": "~5.0.97",
36
+ "@xylabs/vitest-matchers": "~5.0.97",
41
37
  "esbuild": "^0.28.0",
42
38
  "pako": "~2.1.0",
43
39
  "typescript": "~5.9.3",
44
- "vite": "^8.0.5",
45
- "vitest": "~4.1.2",
40
+ "vite": "^8.0.8",
41
+ "vitest": "~4.1.4",
46
42
  "zod": "^4.3.6",
47
- "@xyo-network/manifest-model": "~5.3.29",
48
- "@xyo-network/account-model": "~5.3.29",
49
- "@xyo-network/module-model": "~5.3.29",
50
- "@xyo-network/previous-hash-store-model": "~5.3.29"
43
+ "@xyo-network/account-model": "~5.4.0",
44
+ "@xyo-network/module-model": "~5.4.0",
45
+ "@xyo-network/manifest-model": "~5.4.0",
46
+ "@xyo-network/previous-hash-store-model": "~5.4.0"
51
47
  },
52
48
  "peerDependencies": {
53
- "@xyo-network/account-model": "~5.3.29",
54
- "@xyo-network/module-model": "~5.3.29",
55
- "@xyo-network/manifest-model": "~5.3.29"
49
+ "@xyo-network/account-model": "~5.4",
50
+ "@xyo-network/manifest-model": "~5.4",
51
+ "@xyo-network/module-model": "~5.4"
56
52
  },
57
53
  "publishConfig": {
58
54
  "access": "public"