@zodic/shared 0.0.184 → 0.0.185

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.184",
3
+ "version": "0.0.185",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -9,7 +9,6 @@ import {
9
9
  import { DrizzleD1Database } from 'drizzle-orm/d1';
10
10
  import { Context, Env } from 'hono';
11
11
  import type { Container } from 'inversify';
12
- import { ConceptNameDO } from '../../app';
13
12
 
14
13
  export type CentralBindings = {
15
14
  TEST_IMAGES_BUCKET: R2Bucket;
@@ -27,6 +26,7 @@ export type CentralBindings = {
27
26
  KV_CONCEPT_NAMES: KVNamespace;
28
27
  CONCEPT_GENERATION_QUEUE: Queue;
29
28
  CONCEPT_NAMES_DO: DurableObjectNamespace;
29
+ CROWN_QUEUE: Queue;
30
30
 
31
31
  PROMPT_IMAGE_DESCRIBER: string;
32
32
  PROMPT_GENERATE_ARCHETYPE_BASIC_INFO: string;
@@ -117,6 +117,7 @@ export type BackendBindings = Env &
117
117
  | 'TOGETHER_API_KEY'
118
118
  | 'CONCEPT_NAMES_DO'
119
119
  | 'API_BASE_URL'
120
+ | 'CROWN_QUEUE'
120
121
  >;
121
122
 
122
123
  export type BackendCtx = Context<