@xyo-network/diviner-forecasting-memory 2.57.5 → 2.58.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.
@@ -17,7 +17,7 @@
17
17
  <h1>Type alias SupportedForecastingType</h1></div>
18
18
  <div class="tsd-signature"><span class="tsd-kind-type-alias">Supported<wbr/>Forecasting<wbr/>Type</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">typeof </span><span class="tsd-signature-type ">arimaForecastingName</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">typeof </span><span class="tsd-signature-type ">seasonalArimaForecastingName</span></div><aside class="tsd-sources">
19
19
  <ul>
20
- <li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/2e2024303/packages/modules/packages/diviner/packages/forecasting/packages/memory/src/MemoryForecastingDiviner.ts#L18">modules/packages/diviner/packages/forecasting/packages/memory/src/MemoryForecastingDiviner.ts:18</a></li></ul></aside></div>
20
+ <li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/24e3ae188/packages/modules/packages/diviner/packages/forecasting/packages/memory/src/MemoryForecastingDiviner.ts#L18">modules/packages/diviner/packages/forecasting/packages/memory/src/MemoryForecastingDiviner.ts:18</a></li></ul></aside></div>
21
21
  <div class="col-sidebar">
22
22
  <div class="page-menu">
23
23
  <div class="tsd-navigation settings">
package/package.json CHANGED
@@ -10,22 +10,22 @@
10
10
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@types/jsonpath": "^0.2.0",
14
- "@xylabs/assert": "^2.7.6",
15
- "@xylabs/exists": "^2.7.6",
16
- "@xyo-network/archivist-wrapper": "^2.57.5",
17
- "@xyo-network/boundwitness-model": "^2.57.5",
18
- "@xyo-network/diviner-boundwitness-model": "^2.57.5",
19
- "@xyo-network/diviner-forecasting-abstract": "^2.57.5",
20
- "@xyo-network/diviner-forecasting-method-arima": "^2.57.5",
21
- "@xyo-network/diviner-forecasting-model": "^2.57.5",
22
- "@xyo-network/diviner-wrapper": "^2.57.5",
23
- "@xyo-network/payload-model": "^2.57.5",
13
+ "@xylabs/assert": "^2.8.1",
14
+ "@xylabs/exists": "^2.8.1",
15
+ "@xyo-network/archivist-wrapper": "^2.58.0",
16
+ "@xyo-network/boundwitness-model": "^2.58.0",
17
+ "@xyo-network/diviner-boundwitness-model": "^2.58.0",
18
+ "@xyo-network/diviner-forecasting-abstract": "^2.58.0",
19
+ "@xyo-network/diviner-forecasting-method-arima": "^2.58.0",
20
+ "@xyo-network/diviner-forecasting-model": "^2.58.0",
21
+ "@xyo-network/diviner-wrapper": "^2.58.0",
22
+ "@xyo-network/payload-model": "^2.58.0",
24
23
  "jsonpath": "^1.1.1"
25
24
  },
26
25
  "devDependencies": {
27
- "@xylabs/ts-scripts-yarn3": "^2.17.12",
28
- "@xylabs/tsconfig": "^2.17.12",
26
+ "@types/jsonpath": "^0.2.0",
27
+ "@xylabs/ts-scripts-yarn3": "^2.17.13",
28
+ "@xylabs/tsconfig": "^2.17.13",
29
29
  "typescript": "^5.0.4"
30
30
  },
31
31
  "description": "Primary SDK for using XYO Protocol 2.0",
@@ -61,5 +61,5 @@
61
61
  },
62
62
  "sideEffects": false,
63
63
  "types": "dist/types/index.d.ts",
64
- "version": "2.57.5"
64
+ "version": "2.58.0"
65
65
  }
@@ -60,7 +60,7 @@ export class MemoryForecastingDiviner<
60
60
  const addresses = this.config.witnessAddresses
61
61
  const payload_schemas = [assertEx(this.config.witnessSchema, 'Missing witnessSchema in config')]
62
62
  const payloads: Payload[] = []
63
- const archivistMod = assertEx((await this.upResolver.resolve(this.config.archivist)).pop(), 'Unable to resolve archivist')
63
+ const archivistMod = assertEx(await this.readArchivist(), 'Unable to resolve archivist')
64
64
  const archivist = ArchivistWrapper.wrap(archivistMod)
65
65
  const bwDivinerMod = assertEx((await this.upResolver.resolve(this.config.boundWitnessDiviner)).pop(), 'Unable to resolve boundWitnessDiviner')
66
66
  const bwDiviner = DivinerWrapper.wrap(bwDivinerMod)