@almadar/std 3.12.0 → 3.12.1

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,5 +1,4 @@
1
- import { BehaviorSchema } from './types.js';
2
- import '@almadar/core/types';
1
+ import { OrbitalSchema } from '@almadar/core/types';
3
2
 
4
3
  /**
5
4
  * Exports Reader
@@ -13,10 +12,10 @@ import '@almadar/core/types';
13
12
 
14
13
  type BehaviorLevel = 'atoms' | 'molecules' | 'organisms';
15
14
  declare function getAllBehaviorNames(): string[];
16
- declare function getAllBehaviors(): BehaviorSchema[];
17
- declare function getBehaviorsByLevel(level: BehaviorLevel): BehaviorSchema[];
18
- declare function loadGoldenOrb(behaviorName: string): BehaviorSchema | null;
15
+ declare function getAllBehaviors(): OrbitalSchema[];
16
+ declare function getBehaviorsByLevel(level: BehaviorLevel): OrbitalSchema[];
17
+ declare function loadGoldenOrb(behaviorName: string): OrbitalSchema | null;
19
18
  declare function hasGoldenOrb(behaviorName: string): boolean;
20
- declare function getBehavior(behaviorName: string): BehaviorSchema | null;
19
+ declare function getBehavior(behaviorName: string): OrbitalSchema | null;
21
20
 
22
21
  export { type BehaviorLevel, getAllBehaviorNames, getAllBehaviors, getBehavior, getBehaviorsByLevel, hasGoldenOrb, loadGoldenOrb };