@xyo-network/diviner-forecasting-memory 4.1.2 → 4.1.3
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/dist/neutral/index.d.ts +2 -24
- package/package.json +14 -14
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,24 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { ForecastingMethod, PayloadValueTransformer } from '@xyo-network/diviner-forecasting-model';
|
|
4
|
-
import { ModuleIdentifier } from '@xyo-network/module-model';
|
|
5
|
-
import { Schema, Payload } from '@xyo-network/payload-model';
|
|
6
|
-
|
|
7
|
-
type SupportedForecastingType = typeof arimaForecastingName | typeof seasonalArimaForecastingName;
|
|
8
|
-
declare class MemoryForecastingDiviner<TParams extends ForecastingDivinerParams = ForecastingDivinerParams> extends AbstractForecastingDiviner<TParams> {
|
|
9
|
-
static readonly configSchemas: Schema[];
|
|
10
|
-
static readonly defaultConfigSchema: Schema;
|
|
11
|
-
protected static readonly forecastingMethodDict: Record<SupportedForecastingType, ForecastingMethod>;
|
|
12
|
-
get boundWitnessDiviner(): ModuleIdentifier;
|
|
13
|
-
/**
|
|
14
|
-
* The max number of records to search during the batch query
|
|
15
|
-
*/
|
|
16
|
-
protected get batchLimit(): number;
|
|
17
|
-
protected get forecastingMethod(): ForecastingMethod;
|
|
18
|
-
protected get maxTrainingLength(): number;
|
|
19
|
-
protected get transformer(): PayloadValueTransformer;
|
|
20
|
-
protected getPayloadsInWindow(_startTimestamp: number, _stopTimestamp: number): Promise<Payload[]>;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
export { MemoryForecastingDiviner };
|
|
24
|
-
export type { SupportedForecastingType };
|
|
1
|
+
export * from './MemoryForecastingDiviner.ts';
|
|
2
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-forecasting-memory",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.3",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,23 +29,23 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/assert": "^4.13.
|
|
33
|
-
"@xylabs/exists": "^4.13.
|
|
34
|
-
"@xyo-network/archivist-model": "^4.1.
|
|
35
|
-
"@xyo-network/diviner-boundwitness-model": "^4.1.
|
|
36
|
-
"@xyo-network/diviner-forecasting-abstract": "^4.1.
|
|
37
|
-
"@xyo-network/diviner-forecasting-method-arima": "^4.1.
|
|
38
|
-
"@xyo-network/diviner-forecasting-model": "^4.1.
|
|
39
|
-
"@xyo-network/diviner-model": "^4.1.
|
|
40
|
-
"@xyo-network/module-model": "^4.1.
|
|
41
|
-
"@xyo-network/payload-model": "^4.1.
|
|
32
|
+
"@xylabs/assert": "^4.13.16",
|
|
33
|
+
"@xylabs/exists": "^4.13.16",
|
|
34
|
+
"@xyo-network/archivist-model": "^4.1.3",
|
|
35
|
+
"@xyo-network/diviner-boundwitness-model": "^4.1.3",
|
|
36
|
+
"@xyo-network/diviner-forecasting-abstract": "^4.1.3",
|
|
37
|
+
"@xyo-network/diviner-forecasting-method-arima": "^4.1.3",
|
|
38
|
+
"@xyo-network/diviner-forecasting-model": "^4.1.3",
|
|
39
|
+
"@xyo-network/diviner-model": "^4.1.3",
|
|
40
|
+
"@xyo-network/module-model": "^4.1.3",
|
|
41
|
+
"@xyo-network/payload-model": "^4.1.3",
|
|
42
42
|
"jsonpath": "^1.1.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/jsonpath": "^0.2.4",
|
|
46
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.
|
|
47
|
-
"@xylabs/tsconfig": "^7.0.0-rc.
|
|
48
|
-
"@xyo-network/boundwitness-model": "^4.1.
|
|
46
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
|
|
47
|
+
"@xylabs/tsconfig": "^7.0.0-rc.27",
|
|
48
|
+
"@xyo-network/boundwitness-model": "^4.1.3",
|
|
49
49
|
"typescript": "^5.8.3"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|