@zodic/shared 0.0.364 → 0.0.366
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 +5 -5
- package/package.json +1 -1
- package/types/scopes/legacy.ts +1 -1
- package/utils/astroPrompts/index.ts +1 -1
package/db/schema.ts
CHANGED
|
@@ -168,11 +168,11 @@ export const astroAspects = sqliteTable(
|
|
|
168
168
|
userId: text('user_id')
|
|
169
169
|
.notNull()
|
|
170
170
|
.references(() => users.id, { onDelete: 'cascade' }), // Links to the user
|
|
171
|
-
aspectingPlanet: text('aspecting_planet').notNull(), // E.g., "
|
|
172
|
-
aspectedPlanet: text('aspected_planet').notNull(), // E.g., "
|
|
173
|
-
aspectingPlanetId: integer('aspecting_planet_id').notNull(), // Index of the aspecting planet
|
|
174
|
-
aspectedPlanetId: integer('aspected_planet_id').notNull(), // Index of the aspected planet
|
|
175
|
-
type: text('type').notNull(), // E.g., "
|
|
171
|
+
aspectingPlanet: text('aspecting_planet').notNull(), // E.g., "sun" - planets + ascendant and midheaven at first
|
|
172
|
+
aspectedPlanet: text('aspected_planet').notNull(), // E.g., "mercury"
|
|
173
|
+
aspectingPlanetId: integer('aspecting_planet_id').notNull(), // Index of the aspecting planet in the api's list (0 for sun, 1 for moon)
|
|
174
|
+
aspectedPlanetId: integer('aspected_planet_id').notNull(), // Index of the aspected planet, same as aspecting id
|
|
175
|
+
type: text('type').notNull(), // E.g., "conjunction", "square"
|
|
176
176
|
orb: real('orb').notNull(), // Orb value
|
|
177
177
|
diff: real('diff').notNull(), // Difference value
|
|
178
178
|
},
|
package/package.json
CHANGED
package/types/scopes/legacy.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { pointNameMap } from '../../utils/astroPrompts/pointNameMap';
|
|
2
2
|
import { BackendBindings } from './cloudflare';
|
|
3
|
-
import {
|
|
3
|
+
import { ControlNetConfig, Gender } from './generic';
|
|
4
4
|
|
|
5
5
|
export const zodiacSigns = [
|
|
6
6
|
'aries',
|
|
@@ -141,7 +141,7 @@ export const astroPrompts = {
|
|
|
141
141
|
pointNameMap[aspectingPlanet] || aspectingPlanet
|
|
142
142
|
} ${aspectingType} ${pointNameMap[aspectedPlanet] || aspectedPlanet}.
|
|
143
143
|
The response should include an English version and a Portuguese version.
|
|
144
|
-
Use "###" for titles and "####" for subtitles.
|
|
144
|
+
Use "###" for titles and "####" for subtitles. Do not use the "—" character.
|
|
145
145
|
The response format should be exactly like this:
|
|
146
146
|
|
|
147
147
|
-- EN
|