@zodic/shared 0.0.269 → 0.0.271

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.269",
3
+ "version": "0.0.271",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -26,6 +26,7 @@ export type CentralBindings = {
26
26
  KV_CONCEPT_NAMES: KVNamespace;
27
27
  KV_API_USAGE: KVNamespace;
28
28
  KV_CONCEPT_CACHE: KVNamespace;
29
+ KV_OAUTH_STATE: KVNamespace;
29
30
  CONCEPT_GENERATION_QUEUE: Queue;
30
31
  CONCEPT_NAMES_DO: DurableObjectNamespace;
31
32
  CROWN_QUEUE: Queue;
@@ -179,6 +180,7 @@ export type AuthBindings = Env &
179
180
  | 'CLOUDFLARE_ACCOUNT_ID'
180
181
  | 'DRIZZLE'
181
182
  | 'GOOGLE_TIMEZONE_API_KEY'
183
+ | 'KV_OAUTH_STATE'
182
184
  >;
183
185
 
184
186
  export type AuthCtx = Context<
@@ -460,7 +460,7 @@ export interface FeaturesKVData {
460
460
  modes: ModesKVData;
461
461
  }
462
462
 
463
- export interface NatalChartData {
463
+ export interface NatalChartKVData {
464
464
  wheelUrl: string;
465
465
  placements: Array<PlacementObject>;
466
466
  ascendant: {
@@ -513,14 +513,13 @@ export interface AspectKVData {
513
513
  }
514
514
 
515
515
  export interface AstroKVData {
516
- natalChart: NatalChartData;
516
+ natalChart: NatalChartKVData;
517
517
  corePlanets: Array<CorePlanetKVData>;
518
518
  advancedPlacements: Array<AdvancedPlacementKVData>;
519
519
  houses: Array<HouseKVData>;
520
520
  aspects: Array<AspectKVData>;
521
521
  }
522
522
 
523
-
524
523
  // Helper type for transforming astro_features to API types
525
524
  // In your-types.ts or where types are defined
526
525
  export interface AstroFeature {