@hachej/boring-core 0.1.0

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.
Files changed (52) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +83 -0
  3. package/dist/CoreFront-CDeLdfb0.d.ts +19 -0
  4. package/dist/app/front/index.d.ts +18 -0
  5. package/dist/app/front/index.js +162 -0
  6. package/dist/app/front/styles.css +6 -0
  7. package/dist/app/server/index.d.ts +96 -0
  8. package/dist/app/server/index.js +507 -0
  9. package/dist/app/vite/index.d.ts +10 -0
  10. package/dist/app/vite/index.js +33 -0
  11. package/dist/authHook-vsRhOvnh.d.ts +38 -0
  12. package/dist/chunk-CZ4HIXII.js +2869 -0
  13. package/dist/chunk-H5KU6R6Y.js +68 -0
  14. package/dist/chunk-HSRBZLKT.js +1684 -0
  15. package/dist/chunk-HYNKZSTF.js +18 -0
  16. package/dist/chunk-MLKGABMK.js +9 -0
  17. package/dist/chunk-VTOS4C7B.js +3443 -0
  18. package/dist/connection-CE7z-wBp.d.ts +145 -0
  19. package/dist/front/index.d.ts +458 -0
  20. package/dist/front/index.js +126 -0
  21. package/dist/front/theme.css +168 -0
  22. package/dist/front/top-bar-slot.d.ts +10 -0
  23. package/dist/front/top-bar-slot.js +9 -0
  24. package/dist/index-COZa03RP.d.ts +266 -0
  25. package/dist/migrate-D49JsATX.d.ts +8 -0
  26. package/dist/server/db/index.d.ts +209 -0
  27. package/dist/server/db/index.js +18 -0
  28. package/dist/server/index.d.ts +395 -0
  29. package/dist/server/index.js +136 -0
  30. package/dist/shared/index.d.ts +1 -0
  31. package/dist/shared/index.js +13 -0
  32. package/drizzle/.gitkeep +0 -0
  33. package/drizzle/0000_easy_meggan.sql +53 -0
  34. package/drizzle/0001_groovy_smiling_tiger.sql +14 -0
  35. package/drizzle/0002_busy_iron_man.sql +16 -0
  36. package/drizzle/0003_aspiring_richard_fisk.sql +12 -0
  37. package/drizzle/0004_heavy_lenny_balinger.sql +9 -0
  38. package/drizzle/0005_flimsy_mastermind.sql +17 -0
  39. package/drizzle/0006_happy_callisto.sql +13 -0
  40. package/drizzle/0007_v7_substrate.sql +54 -0
  41. package/drizzle/0008_workspace_sandbox_handles.sql +32 -0
  42. package/drizzle/0009_workspace_runtime_resources.sql +39 -0
  43. package/drizzle/meta/0000_snapshot.json +380 -0
  44. package/drizzle/meta/0001_snapshot.json +471 -0
  45. package/drizzle/meta/0002_snapshot.json +599 -0
  46. package/drizzle/meta/0003_snapshot.json +693 -0
  47. package/drizzle/meta/0004_snapshot.json +753 -0
  48. package/drizzle/meta/0005_snapshot.json +886 -0
  49. package/drizzle/meta/0006_snapshot.json +968 -0
  50. package/drizzle/meta/_journal.json +76 -0
  51. package/drizzle/schema.ts +110 -0
  52. package/package.json +127 -0
@@ -0,0 +1,380 @@
1
+ {
2
+ "id": "c6420244-dc32-4391-933f-ab928f092ac4",
3
+ "prevId": "00000000-0000-0000-0000-000000000000",
4
+ "version": "7",
5
+ "dialect": "postgresql",
6
+ "tables": {
7
+ "public.accounts": {
8
+ "name": "accounts",
9
+ "schema": "",
10
+ "columns": {
11
+ "id": {
12
+ "name": "id",
13
+ "type": "uuid",
14
+ "primaryKey": true,
15
+ "notNull": true,
16
+ "default": "pg_catalog.gen_random_uuid()"
17
+ },
18
+ "account_id": {
19
+ "name": "account_id",
20
+ "type": "text",
21
+ "primaryKey": false,
22
+ "notNull": true
23
+ },
24
+ "provider_id": {
25
+ "name": "provider_id",
26
+ "type": "text",
27
+ "primaryKey": false,
28
+ "notNull": true
29
+ },
30
+ "user_id": {
31
+ "name": "user_id",
32
+ "type": "uuid",
33
+ "primaryKey": false,
34
+ "notNull": true
35
+ },
36
+ "access_token": {
37
+ "name": "access_token",
38
+ "type": "text",
39
+ "primaryKey": false,
40
+ "notNull": false
41
+ },
42
+ "refresh_token": {
43
+ "name": "refresh_token",
44
+ "type": "text",
45
+ "primaryKey": false,
46
+ "notNull": false
47
+ },
48
+ "id_token": {
49
+ "name": "id_token",
50
+ "type": "text",
51
+ "primaryKey": false,
52
+ "notNull": false
53
+ },
54
+ "access_token_expires_at": {
55
+ "name": "access_token_expires_at",
56
+ "type": "timestamp",
57
+ "primaryKey": false,
58
+ "notNull": false
59
+ },
60
+ "refresh_token_expires_at": {
61
+ "name": "refresh_token_expires_at",
62
+ "type": "timestamp",
63
+ "primaryKey": false,
64
+ "notNull": false
65
+ },
66
+ "scope": {
67
+ "name": "scope",
68
+ "type": "text",
69
+ "primaryKey": false,
70
+ "notNull": false
71
+ },
72
+ "password": {
73
+ "name": "password",
74
+ "type": "text",
75
+ "primaryKey": false,
76
+ "notNull": false
77
+ },
78
+ "created_at": {
79
+ "name": "created_at",
80
+ "type": "timestamp",
81
+ "primaryKey": false,
82
+ "notNull": true,
83
+ "default": "now()"
84
+ },
85
+ "updated_at": {
86
+ "name": "updated_at",
87
+ "type": "timestamp",
88
+ "primaryKey": false,
89
+ "notNull": true,
90
+ "default": "now()"
91
+ }
92
+ },
93
+ "indexes": {
94
+ "accounts_userId_idx": {
95
+ "name": "accounts_userId_idx",
96
+ "columns": [
97
+ {
98
+ "expression": "user_id",
99
+ "isExpression": false,
100
+ "asc": true,
101
+ "nulls": "last"
102
+ }
103
+ ],
104
+ "isUnique": false,
105
+ "concurrently": false,
106
+ "method": "btree",
107
+ "with": {}
108
+ }
109
+ },
110
+ "foreignKeys": {
111
+ "accounts_user_id_users_id_fk": {
112
+ "name": "accounts_user_id_users_id_fk",
113
+ "tableFrom": "accounts",
114
+ "tableTo": "users",
115
+ "columnsFrom": [
116
+ "user_id"
117
+ ],
118
+ "columnsTo": [
119
+ "id"
120
+ ],
121
+ "onDelete": "cascade",
122
+ "onUpdate": "no action"
123
+ }
124
+ },
125
+ "compositePrimaryKeys": {},
126
+ "uniqueConstraints": {},
127
+ "policies": {},
128
+ "checkConstraints": {},
129
+ "isRLSEnabled": false
130
+ },
131
+ "public.sessions": {
132
+ "name": "sessions",
133
+ "schema": "",
134
+ "columns": {
135
+ "id": {
136
+ "name": "id",
137
+ "type": "uuid",
138
+ "primaryKey": true,
139
+ "notNull": true,
140
+ "default": "pg_catalog.gen_random_uuid()"
141
+ },
142
+ "expires_at": {
143
+ "name": "expires_at",
144
+ "type": "timestamp",
145
+ "primaryKey": false,
146
+ "notNull": true
147
+ },
148
+ "token": {
149
+ "name": "token",
150
+ "type": "text",
151
+ "primaryKey": false,
152
+ "notNull": true
153
+ },
154
+ "created_at": {
155
+ "name": "created_at",
156
+ "type": "timestamp",
157
+ "primaryKey": false,
158
+ "notNull": true,
159
+ "default": "now()"
160
+ },
161
+ "updated_at": {
162
+ "name": "updated_at",
163
+ "type": "timestamp",
164
+ "primaryKey": false,
165
+ "notNull": true,
166
+ "default": "now()"
167
+ },
168
+ "ip_address": {
169
+ "name": "ip_address",
170
+ "type": "text",
171
+ "primaryKey": false,
172
+ "notNull": false
173
+ },
174
+ "user_agent": {
175
+ "name": "user_agent",
176
+ "type": "text",
177
+ "primaryKey": false,
178
+ "notNull": false
179
+ },
180
+ "user_id": {
181
+ "name": "user_id",
182
+ "type": "uuid",
183
+ "primaryKey": false,
184
+ "notNull": true
185
+ }
186
+ },
187
+ "indexes": {
188
+ "sessions_userId_idx": {
189
+ "name": "sessions_userId_idx",
190
+ "columns": [
191
+ {
192
+ "expression": "user_id",
193
+ "isExpression": false,
194
+ "asc": true,
195
+ "nulls": "last"
196
+ }
197
+ ],
198
+ "isUnique": false,
199
+ "concurrently": false,
200
+ "method": "btree",
201
+ "with": {}
202
+ }
203
+ },
204
+ "foreignKeys": {
205
+ "sessions_user_id_users_id_fk": {
206
+ "name": "sessions_user_id_users_id_fk",
207
+ "tableFrom": "sessions",
208
+ "tableTo": "users",
209
+ "columnsFrom": [
210
+ "user_id"
211
+ ],
212
+ "columnsTo": [
213
+ "id"
214
+ ],
215
+ "onDelete": "cascade",
216
+ "onUpdate": "no action"
217
+ }
218
+ },
219
+ "compositePrimaryKeys": {},
220
+ "uniqueConstraints": {
221
+ "sessions_token_unique": {
222
+ "name": "sessions_token_unique",
223
+ "nullsNotDistinct": false,
224
+ "columns": [
225
+ "token"
226
+ ]
227
+ }
228
+ },
229
+ "policies": {},
230
+ "checkConstraints": {},
231
+ "isRLSEnabled": false
232
+ },
233
+ "public.users": {
234
+ "name": "users",
235
+ "schema": "",
236
+ "columns": {
237
+ "id": {
238
+ "name": "id",
239
+ "type": "uuid",
240
+ "primaryKey": true,
241
+ "notNull": true,
242
+ "default": "pg_catalog.gen_random_uuid()"
243
+ },
244
+ "name": {
245
+ "name": "name",
246
+ "type": "text",
247
+ "primaryKey": false,
248
+ "notNull": true
249
+ },
250
+ "email": {
251
+ "name": "email",
252
+ "type": "text",
253
+ "primaryKey": false,
254
+ "notNull": true
255
+ },
256
+ "email_verified": {
257
+ "name": "email_verified",
258
+ "type": "boolean",
259
+ "primaryKey": false,
260
+ "notNull": true,
261
+ "default": false
262
+ },
263
+ "image": {
264
+ "name": "image",
265
+ "type": "text",
266
+ "primaryKey": false,
267
+ "notNull": false
268
+ },
269
+ "created_at": {
270
+ "name": "created_at",
271
+ "type": "timestamp",
272
+ "primaryKey": false,
273
+ "notNull": true,
274
+ "default": "now()"
275
+ },
276
+ "updated_at": {
277
+ "name": "updated_at",
278
+ "type": "timestamp",
279
+ "primaryKey": false,
280
+ "notNull": true,
281
+ "default": "now()"
282
+ }
283
+ },
284
+ "indexes": {},
285
+ "foreignKeys": {},
286
+ "compositePrimaryKeys": {},
287
+ "uniqueConstraints": {
288
+ "users_email_unique": {
289
+ "name": "users_email_unique",
290
+ "nullsNotDistinct": false,
291
+ "columns": [
292
+ "email"
293
+ ]
294
+ }
295
+ },
296
+ "policies": {},
297
+ "checkConstraints": {},
298
+ "isRLSEnabled": false
299
+ },
300
+ "public.verification_tokens": {
301
+ "name": "verification_tokens",
302
+ "schema": "",
303
+ "columns": {
304
+ "id": {
305
+ "name": "id",
306
+ "type": "uuid",
307
+ "primaryKey": true,
308
+ "notNull": true,
309
+ "default": "pg_catalog.gen_random_uuid()"
310
+ },
311
+ "identifier": {
312
+ "name": "identifier",
313
+ "type": "text",
314
+ "primaryKey": false,
315
+ "notNull": true
316
+ },
317
+ "value": {
318
+ "name": "value",
319
+ "type": "text",
320
+ "primaryKey": false,
321
+ "notNull": true
322
+ },
323
+ "expires_at": {
324
+ "name": "expires_at",
325
+ "type": "timestamp",
326
+ "primaryKey": false,
327
+ "notNull": true
328
+ },
329
+ "created_at": {
330
+ "name": "created_at",
331
+ "type": "timestamp",
332
+ "primaryKey": false,
333
+ "notNull": true,
334
+ "default": "now()"
335
+ },
336
+ "updated_at": {
337
+ "name": "updated_at",
338
+ "type": "timestamp",
339
+ "primaryKey": false,
340
+ "notNull": true,
341
+ "default": "now()"
342
+ }
343
+ },
344
+ "indexes": {
345
+ "verification_tokens_identifier_idx": {
346
+ "name": "verification_tokens_identifier_idx",
347
+ "columns": [
348
+ {
349
+ "expression": "identifier",
350
+ "isExpression": false,
351
+ "asc": true,
352
+ "nulls": "last"
353
+ }
354
+ ],
355
+ "isUnique": false,
356
+ "concurrently": false,
357
+ "method": "btree",
358
+ "with": {}
359
+ }
360
+ },
361
+ "foreignKeys": {},
362
+ "compositePrimaryKeys": {},
363
+ "uniqueConstraints": {},
364
+ "policies": {},
365
+ "checkConstraints": {},
366
+ "isRLSEnabled": false
367
+ }
368
+ },
369
+ "enums": {},
370
+ "schemas": {},
371
+ "sequences": {},
372
+ "roles": {},
373
+ "policies": {},
374
+ "views": {},
375
+ "_meta": {
376
+ "columns": {},
377
+ "schemas": {},
378
+ "tables": {}
379
+ }
380
+ }