@xyo-network/witness-environment 3.9.2 → 3.9.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,4 +1,3 @@
1
- import * as _xylabs_object from '@xylabs/object';
2
1
  import { WithAdditional } from '@xylabs/object';
3
2
  import { Payload, Schema } from '@xyo-network/payload-model';
4
3
  import { WitnessConfig, WitnessParams } from '@xyo-network/witness-model';
@@ -18,10 +17,7 @@ type EnvironmentSubsetSchema = typeof EnvironmentSubsetSchema;
18
17
  type EnvironmentSubset = Payload<{
19
18
  values: string[];
20
19
  }, EnvironmentSubsetSchema>;
21
- declare const isEnvironmentSubsetPayload: (x?: unknown | null) => x is _xylabs_object.DeepRestrictToStringKeys<{
22
- schema: "network.xyo.environment.subset";
23
- values: string[];
24
- }>;
20
+ declare const isEnvironmentSubsetPayload: (x?: unknown | null) => x is EnvironmentSubset;
25
21
 
26
22
  declare class EnvironmentWitness<P extends EnvironmentWitnessParams = EnvironmentWitnessParams> extends AbstractWitness<P> {
27
23
  static readonly configSchemas: Schema[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/witness-environment",
3
- "version": "3.9.2",
3
+ "version": "3.9.4",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -30,18 +30,18 @@
30
30
  "types": "dist/neutral/index.d.ts",
31
31
  "dependencies": {
32
32
  "@xylabs/object": "^4.5.1",
33
- "@xyo-network/abstract-witness": "^3.9.2",
34
- "@xyo-network/module-model": "^3.9.2",
35
- "@xyo-network/payload-model": "^3.9.2",
36
- "@xyo-network/value-payload-plugin": "^3.9.2",
37
- "@xyo-network/witness-model": "^3.9.2"
33
+ "@xyo-network/abstract-witness": "^3.9.4",
34
+ "@xyo-network/module-model": "^3.9.4",
35
+ "@xyo-network/payload-model": "^3.9.4",
36
+ "@xyo-network/value-payload-plugin": "^3.9.4",
37
+ "@xyo-network/witness-model": "^3.9.4"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@xylabs/ts-scripts-yarn3": "^5.0.24",
41
41
  "@xylabs/tsconfig": "^5.0.24",
42
42
  "@xylabs/vitest-extended": "^4.5.1",
43
- "@xyo-network/account": "^3.9.2",
44
- "@xyo-network/payload-builder": "^3.9.2",
43
+ "@xyo-network/account": "^3.9.4",
44
+ "@xyo-network/payload-builder": "^3.9.4",
45
45
  "typescript": "^5.7.3",
46
46
  "vitest": "^3.0.5"
47
47
  },