tempest.games 0.2.27 → 0.2.29
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/CHANGELOG.md +14 -0
- package/app/assets/{index-D_ElUWcc.js → index-DXPnqfbE.js} +29 -29
- package/app/index.html +1 -1
- package/bin/backend.bun.js +111 -111
- package/bin/backend.worker.game.bun.js +7 -7
- package/bin/backend.worker.tribunal.bun.js +44 -44
- package/bin/frontend.bun.js +26 -26
- package/bin/setup-db.bun.js +66 -67
- package/package.json +10 -10
package/bin/setup-db.bun.js
CHANGED
|
@@ -1952,7 +1952,7 @@ function osUsername() {
|
|
|
1952
1952
|
}
|
|
1953
1953
|
}
|
|
1954
1954
|
|
|
1955
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
1955
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/entity.js
|
|
1956
1956
|
var entityKind = Symbol.for("drizzle:entityKind");
|
|
1957
1957
|
var hasOwnEntityKind = Symbol.for("drizzle:hasOwnEntityKind");
|
|
1958
1958
|
function is(value, type) {
|
|
@@ -1977,7 +1977,7 @@ function is(value, type) {
|
|
|
1977
1977
|
return false;
|
|
1978
1978
|
}
|
|
1979
1979
|
|
|
1980
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
1980
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/logger.js
|
|
1981
1981
|
class ConsoleLogWriter {
|
|
1982
1982
|
static [entityKind] = "ConsoleLogWriter";
|
|
1983
1983
|
write(message) {
|
|
@@ -2009,7 +2009,7 @@ class NoopLogger {
|
|
|
2009
2009
|
logQuery() {}
|
|
2010
2010
|
}
|
|
2011
2011
|
|
|
2012
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2012
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/query-promise.js
|
|
2013
2013
|
class QueryPromise {
|
|
2014
2014
|
static [entityKind] = "QueryPromise";
|
|
2015
2015
|
[Symbol.toStringTag] = "QueryPromise";
|
|
@@ -2030,7 +2030,7 @@ class QueryPromise {
|
|
|
2030
2030
|
}
|
|
2031
2031
|
}
|
|
2032
2032
|
|
|
2033
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2033
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/column.js
|
|
2034
2034
|
class Column {
|
|
2035
2035
|
constructor(table, config) {
|
|
2036
2036
|
this.table = table;
|
|
@@ -2080,20 +2080,20 @@ class Column {
|
|
|
2080
2080
|
}
|
|
2081
2081
|
}
|
|
2082
2082
|
|
|
2083
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2083
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/table.utils.js
|
|
2084
2084
|
var TableName = Symbol.for("drizzle:Name");
|
|
2085
2085
|
|
|
2086
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2086
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/tracing-utils.js
|
|
2087
2087
|
function iife(fn, ...args) {
|
|
2088
2088
|
return fn(...args);
|
|
2089
2089
|
}
|
|
2090
2090
|
|
|
2091
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2091
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/unique-constraint.js
|
|
2092
2092
|
function uniqueKeyName(table, columns) {
|
|
2093
2093
|
return `${table[TableName]}_${columns.join("_")}_unique`;
|
|
2094
2094
|
}
|
|
2095
2095
|
|
|
2096
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2096
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/common.js
|
|
2097
2097
|
class PgColumn extends Column {
|
|
2098
2098
|
constructor(table, config) {
|
|
2099
2099
|
if (!config.uniqueName) {
|
|
@@ -2142,7 +2142,7 @@ class ExtraConfigColumn extends PgColumn {
|
|
|
2142
2142
|
}
|
|
2143
2143
|
}
|
|
2144
2144
|
|
|
2145
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2145
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/enum.js
|
|
2146
2146
|
class PgEnumObjectColumn extends PgColumn {
|
|
2147
2147
|
static [entityKind] = "PgEnumObjectColumn";
|
|
2148
2148
|
enum;
|
|
@@ -2172,7 +2172,7 @@ class PgEnumColumn extends PgColumn {
|
|
|
2172
2172
|
}
|
|
2173
2173
|
}
|
|
2174
2174
|
|
|
2175
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2175
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/subquery.js
|
|
2176
2176
|
class Subquery {
|
|
2177
2177
|
static [entityKind] = "Subquery";
|
|
2178
2178
|
constructor(sql, fields, alias, isWith = false, usedTables = []) {
|
|
@@ -2191,10 +2191,10 @@ class WithSubquery extends Subquery {
|
|
|
2191
2191
|
static [entityKind] = "WithSubquery";
|
|
2192
2192
|
}
|
|
2193
2193
|
|
|
2194
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2195
|
-
var version = "0.44.
|
|
2194
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/version.js
|
|
2195
|
+
var version = "0.44.4";
|
|
2196
2196
|
|
|
2197
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2197
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/tracing.js
|
|
2198
2198
|
var otel;
|
|
2199
2199
|
var rawTracer;
|
|
2200
2200
|
var tracer = {
|
|
@@ -2221,10 +2221,10 @@ var tracer = {
|
|
|
2221
2221
|
}
|
|
2222
2222
|
};
|
|
2223
2223
|
|
|
2224
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2224
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/view-common.js
|
|
2225
2225
|
var ViewBaseConfig = Symbol.for("drizzle:ViewBaseConfig");
|
|
2226
2226
|
|
|
2227
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2227
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/table.js
|
|
2228
2228
|
var Schema = Symbol.for("drizzle:Schema");
|
|
2229
2229
|
var Columns = Symbol.for("drizzle:Columns");
|
|
2230
2230
|
var ExtraConfigColumns = Symbol.for("drizzle:ExtraConfigColumns");
|
|
@@ -2268,7 +2268,7 @@ function getTableUniqueName(table) {
|
|
|
2268
2268
|
return `${table[Schema] ?? "public"}.${table[TableName]}`;
|
|
2269
2269
|
}
|
|
2270
2270
|
|
|
2271
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2271
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/sql/sql.js
|
|
2272
2272
|
function isSQLWrapper(value) {
|
|
2273
2273
|
return value !== null && value !== undefined && typeof value.getSQL === "function";
|
|
2274
2274
|
}
|
|
@@ -2648,7 +2648,7 @@ Subquery.prototype.getSQL = function() {
|
|
|
2648
2648
|
return new SQL([this]);
|
|
2649
2649
|
};
|
|
2650
2650
|
|
|
2651
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2651
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/alias.js
|
|
2652
2652
|
class ColumnAliasProxyHandler {
|
|
2653
2653
|
constructor(table) {
|
|
2654
2654
|
this.table = table;
|
|
@@ -2727,7 +2727,7 @@ function mapColumnsInSQLToAlias(query, alias) {
|
|
|
2727
2727
|
}));
|
|
2728
2728
|
}
|
|
2729
2729
|
|
|
2730
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2730
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/selection-proxy.js
|
|
2731
2731
|
class SelectionProxyHandler {
|
|
2732
2732
|
static [entityKind] = "SelectionProxyHandler";
|
|
2733
2733
|
config;
|
|
@@ -2779,7 +2779,7 @@ class SelectionProxyHandler {
|
|
|
2779
2779
|
}
|
|
2780
2780
|
}
|
|
2781
2781
|
|
|
2782
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2782
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/utils.js
|
|
2783
2783
|
function mapResultRow(columns, row, joinsNotNullableMap) {
|
|
2784
2784
|
const nullifyMap = {};
|
|
2785
2785
|
const result = columns.reduce((result2, { path, field }, columnIndex) => {
|
|
@@ -2924,7 +2924,7 @@ function isConfig(data) {
|
|
|
2924
2924
|
return false;
|
|
2925
2925
|
}
|
|
2926
2926
|
|
|
2927
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2927
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/date.js
|
|
2928
2928
|
class PgDate extends PgColumn {
|
|
2929
2929
|
static [entityKind] = "PgDate";
|
|
2930
2930
|
getSQLType() {
|
|
@@ -2944,7 +2944,7 @@ class PgDateString extends PgColumn {
|
|
|
2944
2944
|
}
|
|
2945
2945
|
}
|
|
2946
2946
|
|
|
2947
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2947
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/json.js
|
|
2948
2948
|
class PgJson extends PgColumn {
|
|
2949
2949
|
static [entityKind] = "PgJson";
|
|
2950
2950
|
constructor(table, config) {
|
|
@@ -2968,7 +2968,7 @@ class PgJson extends PgColumn {
|
|
|
2968
2968
|
}
|
|
2969
2969
|
}
|
|
2970
2970
|
|
|
2971
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2971
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/jsonb.js
|
|
2972
2972
|
class PgJsonb extends PgColumn {
|
|
2973
2973
|
static [entityKind] = "PgJsonb";
|
|
2974
2974
|
constructor(table, config) {
|
|
@@ -2992,7 +2992,7 @@ class PgJsonb extends PgColumn {
|
|
|
2992
2992
|
}
|
|
2993
2993
|
}
|
|
2994
2994
|
|
|
2995
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
2995
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/numeric.js
|
|
2996
2996
|
class PgNumeric extends PgColumn {
|
|
2997
2997
|
static [entityKind] = "PgNumeric";
|
|
2998
2998
|
precision;
|
|
@@ -3018,7 +3018,7 @@ class PgNumeric extends PgColumn {
|
|
|
3018
3018
|
}
|
|
3019
3019
|
}
|
|
3020
3020
|
|
|
3021
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3021
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/time.js
|
|
3022
3022
|
class PgTime extends PgColumn {
|
|
3023
3023
|
static [entityKind] = "PgTime";
|
|
3024
3024
|
withTimezone;
|
|
@@ -3034,7 +3034,7 @@ class PgTime extends PgColumn {
|
|
|
3034
3034
|
}
|
|
3035
3035
|
}
|
|
3036
3036
|
|
|
3037
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3037
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/timestamp.js
|
|
3038
3038
|
class PgTimestamp extends PgColumn {
|
|
3039
3039
|
static [entityKind] = "PgTimestamp";
|
|
3040
3040
|
withTimezone;
|
|
@@ -3070,7 +3070,7 @@ class PgTimestampString extends PgColumn {
|
|
|
3070
3070
|
}
|
|
3071
3071
|
}
|
|
3072
3072
|
|
|
3073
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3073
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/uuid.js
|
|
3074
3074
|
class PgUUID extends PgColumn {
|
|
3075
3075
|
static [entityKind] = "PgUUID";
|
|
3076
3076
|
getSQLType() {
|
|
@@ -3078,7 +3078,7 @@ class PgUUID extends PgColumn {
|
|
|
3078
3078
|
}
|
|
3079
3079
|
}
|
|
3080
3080
|
|
|
3081
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3081
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/table.js
|
|
3082
3082
|
var InlineForeignKeys = Symbol.for("drizzle:PgInlineForeignKeys");
|
|
3083
3083
|
var EnableRLS = Symbol.for("drizzle:EnableRLS");
|
|
3084
3084
|
|
|
@@ -3094,7 +3094,7 @@ class PgTable extends Table {
|
|
|
3094
3094
|
[Table.Symbol.ExtraConfigColumns] = {};
|
|
3095
3095
|
}
|
|
3096
3096
|
|
|
3097
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3097
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/primary-keys.js
|
|
3098
3098
|
class PrimaryKeyBuilder {
|
|
3099
3099
|
static [entityKind] = "PgPrimaryKeyBuilder";
|
|
3100
3100
|
columns;
|
|
@@ -3122,7 +3122,7 @@ class PrimaryKey {
|
|
|
3122
3122
|
}
|
|
3123
3123
|
}
|
|
3124
3124
|
|
|
3125
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3125
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/casing.js
|
|
3126
3126
|
function toSnakeCase(input) {
|
|
3127
3127
|
const words = input.replace(/['\u2019]/g, "").match(/[\da-z]+|[A-Z]+(?![a-z])|[A-Z][\da-z]+/g) ?? [];
|
|
3128
3128
|
return words.map((word) => word.toLowerCase()).join("_");
|
|
@@ -3175,7 +3175,7 @@ class CasingCache {
|
|
|
3175
3175
|
}
|
|
3176
3176
|
}
|
|
3177
3177
|
|
|
3178
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3178
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/errors.js
|
|
3179
3179
|
class DrizzleError extends Error {
|
|
3180
3180
|
static [entityKind] = "DrizzleError";
|
|
3181
3181
|
constructor({ message, cause }) {
|
|
@@ -3185,6 +3185,19 @@ class DrizzleError extends Error {
|
|
|
3185
3185
|
}
|
|
3186
3186
|
}
|
|
3187
3187
|
|
|
3188
|
+
class DrizzleQueryError extends Error {
|
|
3189
|
+
constructor(query, params, cause) {
|
|
3190
|
+
super(`Failed query: ${query}
|
|
3191
|
+
params: ${params}`);
|
|
3192
|
+
this.query = query;
|
|
3193
|
+
this.params = params;
|
|
3194
|
+
this.cause = cause;
|
|
3195
|
+
Error.captureStackTrace(this, DrizzleQueryError);
|
|
3196
|
+
if (cause)
|
|
3197
|
+
this.cause = cause;
|
|
3198
|
+
}
|
|
3199
|
+
}
|
|
3200
|
+
|
|
3188
3201
|
class TransactionRollbackError extends DrizzleError {
|
|
3189
3202
|
static [entityKind] = "TransactionRollbackError";
|
|
3190
3203
|
constructor() {
|
|
@@ -3192,7 +3205,7 @@ class TransactionRollbackError extends DrizzleError {
|
|
|
3192
3205
|
}
|
|
3193
3206
|
}
|
|
3194
3207
|
|
|
3195
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3208
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/sql/expressions/conditions.js
|
|
3196
3209
|
function bindIfParam(value, column) {
|
|
3197
3210
|
if (isDriverValueEncoder(column) && !isSQLWrapper(value) && !is(value, Param) && !is(value, Placeholder) && !is(value, Column) && !is(value, Table) && !is(value, View)) {
|
|
3198
3211
|
return new Param(value, column);
|
|
@@ -3297,7 +3310,7 @@ function notIlike(column, value) {
|
|
|
3297
3310
|
return sql`${column} not ilike ${value}`;
|
|
3298
3311
|
}
|
|
3299
3312
|
|
|
3300
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3313
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/sql/expressions/select.js
|
|
3301
3314
|
function asc(column) {
|
|
3302
3315
|
return sql`${column} asc`;
|
|
3303
3316
|
}
|
|
@@ -3305,7 +3318,7 @@ function desc(column) {
|
|
|
3305
3318
|
return sql`${column} desc`;
|
|
3306
3319
|
}
|
|
3307
3320
|
|
|
3308
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3321
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/relations.js
|
|
3309
3322
|
class Relation {
|
|
3310
3323
|
constructor(sourceTable, referencedTable, relationName) {
|
|
3311
3324
|
this.sourceTable = sourceTable;
|
|
@@ -3525,12 +3538,12 @@ function mapRelationalRow(tablesConfig, tableConfig, row, buildQueryResultSelect
|
|
|
3525
3538
|
return result;
|
|
3526
3539
|
}
|
|
3527
3540
|
|
|
3528
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3541
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/view-base.js
|
|
3529
3542
|
class PgViewBase extends View {
|
|
3530
3543
|
static [entityKind] = "PgViewBase";
|
|
3531
3544
|
}
|
|
3532
3545
|
|
|
3533
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
3546
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/dialect.js
|
|
3534
3547
|
class PgDialect {
|
|
3535
3548
|
static [entityKind] = "PgDialect";
|
|
3536
3549
|
casing;
|
|
@@ -4088,7 +4101,7 @@ class PgDialect {
|
|
|
4088
4101
|
}
|
|
4089
4102
|
}
|
|
4090
4103
|
|
|
4091
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
4104
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/query-builders/query-builder.js
|
|
4092
4105
|
class TypedQueryBuilder {
|
|
4093
4106
|
static [entityKind] = "TypedQueryBuilder";
|
|
4094
4107
|
getSelectedFields() {
|
|
@@ -4096,7 +4109,7 @@ class TypedQueryBuilder {
|
|
|
4096
4109
|
}
|
|
4097
4110
|
}
|
|
4098
4111
|
|
|
4099
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
4112
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/select.js
|
|
4100
4113
|
class PgSelectBuilder {
|
|
4101
4114
|
static [entityKind] = "PgSelectBuilder";
|
|
4102
4115
|
fields;
|
|
@@ -4414,7 +4427,7 @@ var intersectAll = createSetOperator("intersect", true);
|
|
|
4414
4427
|
var except = createSetOperator("except", false);
|
|
4415
4428
|
var exceptAll = createSetOperator("except", true);
|
|
4416
4429
|
|
|
4417
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
4430
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/query-builder.js
|
|
4418
4431
|
class QueryBuilder {
|
|
4419
4432
|
static [entityKind] = "PgQueryBuilder";
|
|
4420
4433
|
dialect;
|
|
@@ -4492,7 +4505,7 @@ class QueryBuilder {
|
|
|
4492
4505
|
}
|
|
4493
4506
|
}
|
|
4494
4507
|
|
|
4495
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
4508
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/utils.js
|
|
4496
4509
|
function extractUsedTable(table) {
|
|
4497
4510
|
if (is(table, PgTable)) {
|
|
4498
4511
|
return [table[Schema] ? `${table[Schema]}.${table[Table.Symbol.BaseName]}` : table[Table.Symbol.BaseName]];
|
|
@@ -4506,7 +4519,7 @@ function extractUsedTable(table) {
|
|
|
4506
4519
|
return [];
|
|
4507
4520
|
}
|
|
4508
4521
|
|
|
4509
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
4522
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/delete.js
|
|
4510
4523
|
class PgDeleteBase extends QueryPromise {
|
|
4511
4524
|
constructor(table, session, dialect, withList) {
|
|
4512
4525
|
super();
|
|
@@ -4566,7 +4579,7 @@ class PgDeleteBase extends QueryPromise {
|
|
|
4566
4579
|
}
|
|
4567
4580
|
}
|
|
4568
4581
|
|
|
4569
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
4582
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/insert.js
|
|
4570
4583
|
class PgInsertBuilder {
|
|
4571
4584
|
constructor(table, session, dialect, withList, overridingSystemValue_) {
|
|
4572
4585
|
this.table = table;
|
|
@@ -4689,7 +4702,7 @@ class PgInsertBase extends QueryPromise {
|
|
|
4689
4702
|
}
|
|
4690
4703
|
}
|
|
4691
4704
|
|
|
4692
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
4705
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/refresh-materialized-view.js
|
|
4693
4706
|
class PgRefreshMaterializedView extends QueryPromise {
|
|
4694
4707
|
constructor(view, session, dialect) {
|
|
4695
4708
|
super();
|
|
@@ -4740,7 +4753,7 @@ class PgRefreshMaterializedView extends QueryPromise {
|
|
|
4740
4753
|
};
|
|
4741
4754
|
}
|
|
4742
4755
|
|
|
4743
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
4756
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/update.js
|
|
4744
4757
|
class PgUpdateBuilder {
|
|
4745
4758
|
constructor(table, session, dialect, withList) {
|
|
4746
4759
|
this.table = table;
|
|
@@ -4894,7 +4907,7 @@ class PgUpdateBase extends QueryPromise {
|
|
|
4894
4907
|
}
|
|
4895
4908
|
}
|
|
4896
4909
|
|
|
4897
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
4910
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/count.js
|
|
4898
4911
|
class PgCountBuilder extends SQL {
|
|
4899
4912
|
constructor(params) {
|
|
4900
4913
|
super(PgCountBuilder.buildEmbeddedCount(params.source, params.filters).queryChunks);
|
|
@@ -4935,7 +4948,7 @@ class PgCountBuilder extends SQL {
|
|
|
4935
4948
|
}
|
|
4936
4949
|
}
|
|
4937
4950
|
|
|
4938
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
4951
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/query.js
|
|
4939
4952
|
class RelationalQueryBuilder {
|
|
4940
4953
|
constructor(fullSchema, schema, tableNamesMap, table, tableConfig, dialect, session) {
|
|
4941
4954
|
this.fullSchema = fullSchema;
|
|
@@ -5018,7 +5031,7 @@ class PgRelationalQuery extends QueryPromise {
|
|
|
5018
5031
|
}
|
|
5019
5032
|
}
|
|
5020
5033
|
|
|
5021
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
5034
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/raw.js
|
|
5022
5035
|
class PgRaw extends QueryPromise {
|
|
5023
5036
|
constructor(execute, sql2, query, mapBatchResult) {
|
|
5024
5037
|
super();
|
|
@@ -5045,7 +5058,7 @@ class PgRaw extends QueryPromise {
|
|
|
5045
5058
|
}
|
|
5046
5059
|
}
|
|
5047
5060
|
|
|
5048
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
5061
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/db.js
|
|
5049
5062
|
class PgDatabase {
|
|
5050
5063
|
constructor(dialect, session, schema) {
|
|
5051
5064
|
this.dialect = dialect;
|
|
@@ -5171,7 +5184,7 @@ class PgDatabase {
|
|
|
5171
5184
|
}
|
|
5172
5185
|
}
|
|
5173
5186
|
|
|
5174
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
5187
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/cache/core/cache.js
|
|
5175
5188
|
class Cache {
|
|
5176
5189
|
static [entityKind] = "Cache";
|
|
5177
5190
|
}
|
|
@@ -5197,21 +5210,7 @@ async function hashQuery(sql2, params) {
|
|
|
5197
5210
|
return hashHex;
|
|
5198
5211
|
}
|
|
5199
5212
|
|
|
5200
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
5201
|
-
class DrizzleQueryError extends Error {
|
|
5202
|
-
constructor(query, params, cause) {
|
|
5203
|
-
super(`Failed query: ${query}
|
|
5204
|
-
params: ${params}`);
|
|
5205
|
-
this.query = query;
|
|
5206
|
-
this.params = params;
|
|
5207
|
-
this.cause = cause;
|
|
5208
|
-
Error.captureStackTrace(this, DrizzleQueryError);
|
|
5209
|
-
if (cause)
|
|
5210
|
-
this.cause = cause;
|
|
5211
|
-
}
|
|
5212
|
-
}
|
|
5213
|
-
|
|
5214
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.3_bun-types@1.2.19_@types+react@19.1.8__postgres@3.4.7/node_modules/drizzle-orm/pg-core/session.js
|
|
5213
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/pg-core/session.js
|
|
5215
5214
|
class PgPreparedQuery {
|
|
5216
5215
|
constructor(query, cache, queryMetadata, cacheConfig) {
|
|
5217
5216
|
this.query = query;
|
|
@@ -5343,7 +5342,7 @@ class PgTransaction extends PgDatabase {
|
|
|
5343
5342
|
}
|
|
5344
5343
|
}
|
|
5345
5344
|
|
|
5346
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
5345
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/postgres-js/session.js
|
|
5347
5346
|
class PostgresJsPreparedQuery extends PgPreparedQuery {
|
|
5348
5347
|
constructor(client, queryString, params, logger, cache, queryMetadata, cacheConfig, fields, _isResponseInArrayMode, customResultMapper) {
|
|
5349
5348
|
super({ sql: queryString, params }, cache, queryMetadata, cacheConfig);
|
|
@@ -5459,7 +5458,7 @@ class PostgresJsTransaction extends PgTransaction {
|
|
|
5459
5458
|
}
|
|
5460
5459
|
}
|
|
5461
5460
|
|
|
5462
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
5461
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/postgres-js/driver.js
|
|
5463
5462
|
class PostgresJsDatabase extends PgDatabase {
|
|
5464
5463
|
static [entityKind] = "PostgresJsDatabase";
|
|
5465
5464
|
}
|
|
@@ -5527,7 +5526,7 @@ function drizzle(...params) {
|
|
|
5527
5526
|
drizzle2.mock = mock;
|
|
5528
5527
|
})(drizzle || (drizzle = {}));
|
|
5529
5528
|
|
|
5530
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
5529
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/migrator.js
|
|
5531
5530
|
import crypto3 from "crypto";
|
|
5532
5531
|
import fs2 from "fs";
|
|
5533
5532
|
function readMigrationFiles(config) {
|
|
@@ -5559,7 +5558,7 @@ function readMigrationFiles(config) {
|
|
|
5559
5558
|
return migrationQueries;
|
|
5560
5559
|
}
|
|
5561
5560
|
|
|
5562
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.44.
|
|
5561
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.44.4_bun-types@1.2.19_@types+react@19.1.9__postgres@3.4.7/node_modules/drizzle-orm/postgres-js/migrator.js
|
|
5563
5562
|
async function migrate(db, config) {
|
|
5564
5563
|
const migrations = readMigrationFiles(config);
|
|
5565
5564
|
await db.dialect.migrate(migrations, db.session, config);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tempest.games",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.29",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -33,35 +33,35 @@
|
|
|
33
33
|
"@trpc/server": "11.4.3",
|
|
34
34
|
"arktype": "2.1.20",
|
|
35
35
|
"cron": "4.3.2",
|
|
36
|
-
"drizzle-orm": "0.44.
|
|
36
|
+
"drizzle-orm": "0.44.4",
|
|
37
37
|
"motion": "12.23.11",
|
|
38
38
|
"nanoid": "5.1.5",
|
|
39
39
|
"openai": "5.10.2",
|
|
40
40
|
"postgres": "3.4.7",
|
|
41
41
|
"react": "19.1.1",
|
|
42
42
|
"react-dom": "19.1.1",
|
|
43
|
-
"react-email": "4.2.
|
|
43
|
+
"react-email": "4.2.5",
|
|
44
44
|
"resend": "4.7.0",
|
|
45
45
|
"safegen": "0.6.2",
|
|
46
46
|
"socket.io": "4.8.1",
|
|
47
47
|
"socket.io-client": "4.8.1",
|
|
48
|
-
"atom.io": "0.33.
|
|
49
|
-
"
|
|
50
|
-
"
|
|
48
|
+
"atom.io": "0.33.20",
|
|
49
|
+
"treetrunks": "0.1.3",
|
|
50
|
+
"safedeposit": "0.1.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@react-email/components": "0.3.2",
|
|
54
54
|
"@types/bun": "npm:bun-types@1.2.19",
|
|
55
55
|
"@types/cors": "2.8.19",
|
|
56
56
|
"@types/node": "24.1.0",
|
|
57
|
-
"@types/react": "19.1.
|
|
58
|
-
"@types/react-dom": "19.1.
|
|
57
|
+
"@types/react": "19.1.9",
|
|
58
|
+
"@types/react-dom": "19.1.7",
|
|
59
59
|
"@vitejs/plugin-react-swc": "3.11.0",
|
|
60
60
|
"concurrently": "9.2.0",
|
|
61
61
|
"cors": "2.8.5",
|
|
62
62
|
"cross-env": "10.0.0",
|
|
63
63
|
"dotenv": "17.2.1",
|
|
64
|
-
"dotenv-cli": "
|
|
64
|
+
"dotenv-cli": "10.0.0",
|
|
65
65
|
"drizzle-kit": "0.31.4",
|
|
66
66
|
"eslint": "9.32.0",
|
|
67
67
|
"globals": "16.3.0",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"vite": "7.0.6",
|
|
71
71
|
"vite-tsconfig-paths": "5.1.4",
|
|
72
72
|
"vitest": "3.2.4",
|
|
73
|
-
"flightdeck": "0.2.
|
|
73
|
+
"flightdeck": "0.2.51",
|
|
74
74
|
"varmint": "0.5.2"
|
|
75
75
|
},
|
|
76
76
|
"scripts": {
|