@zodic/shared 0.0.404 → 0.0.406
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/app/backend.ts +0 -1
- package/package.json +1 -1
- package/types/scopes/db.ts +0 -8
package/app/backend.ts
CHANGED
package/package.json
CHANGED
package/types/scopes/db.ts
CHANGED
|
@@ -6,7 +6,6 @@ import {
|
|
|
6
6
|
astroPlanets,
|
|
7
7
|
conceptCombinations,
|
|
8
8
|
concepts,
|
|
9
|
-
creditsTransactions,
|
|
10
9
|
generations,
|
|
11
10
|
tokens,
|
|
12
11
|
userArtifacts,
|
|
@@ -47,13 +46,6 @@ export type InsertConceptCombination = InferInsertModel<
|
|
|
47
46
|
export type SelectConcept = NullableSelect<typeof concepts>;
|
|
48
47
|
export type InsertConcept = InferInsertModel<typeof concepts>;
|
|
49
48
|
|
|
50
|
-
export type SelectCreditsTransaction = NullableSelect<
|
|
51
|
-
typeof creditsTransactions
|
|
52
|
-
>;
|
|
53
|
-
export type InsertCreditsTransaction = InferInsertModel<
|
|
54
|
-
typeof creditsTransactions
|
|
55
|
-
>;
|
|
56
|
-
|
|
57
49
|
export type SelectUserArtifact = NullableSelect<typeof userArtifacts>;
|
|
58
50
|
export type InsertUserArtifact = InferInsertModel<typeof userArtifacts>;
|
|
59
51
|
|