@zodic/shared 0.0.123 → 0.0.125
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/db/schema.ts
CHANGED
|
@@ -43,6 +43,7 @@ export const users = sqliteTable(
|
|
|
43
43
|
credits_balance: integer('credits_balance').default(0).notNull(),
|
|
44
44
|
totalCreditsEarned: integer('total_credits_earned').default(0).notNull(),
|
|
45
45
|
lastTransactionAt: integer('last_transaction_at', { mode: 'timestamp' }), // Nullable for no transactions
|
|
46
|
+
language: text('language'),
|
|
46
47
|
...timestampFields,
|
|
47
48
|
},
|
|
48
49
|
(t) => [
|
package/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -315,3 +315,85 @@ export type ControlNetConfig =
|
|
|
315
315
|
preprocessorId: 19; // Edge to Image
|
|
316
316
|
weight: number;
|
|
317
317
|
};
|
|
318
|
+
|
|
319
|
+
export type AstroKVData = {
|
|
320
|
+
birthChart: {
|
|
321
|
+
wheelUrl: string;
|
|
322
|
+
planets: {
|
|
323
|
+
name: string;
|
|
324
|
+
sign: string;
|
|
325
|
+
house: number | null;
|
|
326
|
+
}[];
|
|
327
|
+
ascendant: {
|
|
328
|
+
sign: string;
|
|
329
|
+
};
|
|
330
|
+
moonPhase: {
|
|
331
|
+
name: string;
|
|
332
|
+
id: number;
|
|
333
|
+
calc: string;
|
|
334
|
+
description: string;
|
|
335
|
+
};
|
|
336
|
+
elements: {
|
|
337
|
+
elements: {
|
|
338
|
+
name: string;
|
|
339
|
+
percentage: number;
|
|
340
|
+
}[];
|
|
341
|
+
description: string;
|
|
342
|
+
dominantElementId: number;
|
|
343
|
+
};
|
|
344
|
+
modes: {
|
|
345
|
+
modes: {
|
|
346
|
+
name: string;
|
|
347
|
+
percentage: number;
|
|
348
|
+
}[];
|
|
349
|
+
description: string;
|
|
350
|
+
dominantModeId: number;
|
|
351
|
+
};
|
|
352
|
+
hemisphere: {
|
|
353
|
+
eastWest: {
|
|
354
|
+
name: string;
|
|
355
|
+
id: number;
|
|
356
|
+
description: string;
|
|
357
|
+
};
|
|
358
|
+
northSouth: {
|
|
359
|
+
name: string;
|
|
360
|
+
id: number;
|
|
361
|
+
description: string;
|
|
362
|
+
};
|
|
363
|
+
};
|
|
364
|
+
dominantSign: {
|
|
365
|
+
name: string;
|
|
366
|
+
percentage: number;
|
|
367
|
+
};
|
|
368
|
+
};
|
|
369
|
+
planets: {
|
|
370
|
+
name: string;
|
|
371
|
+
sign: string;
|
|
372
|
+
house: number | null;
|
|
373
|
+
degree: number;
|
|
374
|
+
retrograde: boolean;
|
|
375
|
+
signReport: string;
|
|
376
|
+
houseReport: string;
|
|
377
|
+
}[];
|
|
378
|
+
advancedPlanets: {
|
|
379
|
+
name: string;
|
|
380
|
+
sign: string;
|
|
381
|
+
house: number | null;
|
|
382
|
+
degree: number;
|
|
383
|
+
retrograde: boolean;
|
|
384
|
+
}[];
|
|
385
|
+
houses: {
|
|
386
|
+
house: number;
|
|
387
|
+
sign: string;
|
|
388
|
+
degree: number;
|
|
389
|
+
report: string;
|
|
390
|
+
}[];
|
|
391
|
+
aspects: {
|
|
392
|
+
aspectingPlanet: string;
|
|
393
|
+
aspectedPlanet: string;
|
|
394
|
+
type: string;
|
|
395
|
+
orb: number;
|
|
396
|
+
diff: number;
|
|
397
|
+
}[];
|
|
398
|
+
};
|
|
399
|
+
|