@zodic/shared 0.0.413 → 0.0.414

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.413",
3
+ "version": "0.0.414",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -5,6 +5,7 @@ import {
5
5
  KVNamespace,
6
6
  Queue,
7
7
  R2Bucket,
8
+ Service
8
9
  } from '@cloudflare/workers-types';
9
10
  import { DrizzleD1Database } from 'drizzle-orm/d1';
10
11
  import { Context, Env } from 'hono';
@@ -61,6 +62,7 @@ export type CentralBindings = {
61
62
 
62
63
  API_BASE_URL: string;
63
64
  ASTRO_API: Fetcher;
65
+ ASTRO_ENGINE: Service;
64
66
  };
65
67
 
66
68
  export type Variables = {
@@ -108,6 +110,7 @@ export type BackendBindings = Env &
108
110
  | 'ASAAS_API_URL'
109
111
  | 'PAYMENT_QUEUE'
110
112
  | 'ASTRO_API'
113
+ | 'ASTRO_ENGINE'
111
114
  >;
112
115
 
113
116
  export type BackendCtx = Context<
@@ -194,7 +194,6 @@ export type Hemisphere = {
194
194
  };
195
195
 
196
196
  export type HemisphereDetail = {
197
- description: string;
198
197
  id: number;
199
198
  };
200
199
 
@@ -451,7 +450,6 @@ export interface MoonPhaseKVData {
451
450
  }
452
451
 
453
452
  export interface HemisphereKVDetail {
454
- description: string | null;
455
453
  report: string | null;
456
454
  }
457
455