nao-core 0.0.11__py3-none-any.whl → 0.0.12__py3-none-any.whl

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 (28) hide show
  1. nao_core/__init__.py +1 -1
  2. nao_core/bin/migrations-postgres/0000_supreme_cable.sql +85 -0
  3. nao_core/bin/migrations-postgres/meta/0000_snapshot.json +610 -0
  4. nao_core/bin/migrations-postgres/meta/_journal.json +13 -0
  5. nao_core/bin/migrations-sqlite/0000_cloudy_squirrel_girl.sql +85 -0
  6. nao_core/bin/migrations-sqlite/meta/0000_snapshot.json +590 -0
  7. nao_core/bin/migrations-sqlite/meta/_journal.json +13 -0
  8. nao_core/bin/nao-chat-server +0 -0
  9. nao_core/bin/public/assets/index-BUcR0FCx.css +1 -0
  10. nao_core/bin/public/assets/index-DDQ8i103.js +14 -0
  11. nao_core/bin/public/assets/index-nOBqrovO.js +36 -0
  12. nao_core/bin/public/assets/login-CGCfd7iQ.js +1 -0
  13. nao_core/bin/public/assets/signinForm-BGrBZeLW.js +1 -0
  14. nao_core/bin/public/assets/signup-BGjbIX9B.js +1 -0
  15. nao_core/bin/public/github-icon.svg +19 -0
  16. nao_core/bin/public/google-icon.svg +2 -0
  17. nao_core/bin/public/index.html +2 -2
  18. nao_core/commands/debug.py +4 -0
  19. nao_core/commands/sync.py +2 -1
  20. {nao_core-0.0.11.dist-info → nao_core-0.0.12.dist-info}/METADATA +1 -1
  21. nao_core-0.0.12.dist-info/RECORD +31 -0
  22. nao_core/bin/public/assets/index-BSxC58nD.js +0 -36
  23. nao_core/bin/public/assets/index-Dh3br3Ia.js +0 -13
  24. nao_core/bin/public/assets/index-heKLHGGE.css +0 -1
  25. nao_core-0.0.11.dist-info/RECORD +0 -20
  26. {nao_core-0.0.11.dist-info → nao_core-0.0.12.dist-info}/WHEEL +0 -0
  27. {nao_core-0.0.11.dist-info → nao_core-0.0.12.dist-info}/entry_points.txt +0 -0
  28. {nao_core-0.0.11.dist-info → nao_core-0.0.12.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,13 @@
1
+ {
2
+ "version": "7",
3
+ "dialect": "postgresql",
4
+ "entries": [
5
+ {
6
+ "idx": 0,
7
+ "version": "7",
8
+ "when": 1767804105559,
9
+ "tag": "0000_supreme_cable",
10
+ "breakpoints": true
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,85 @@
1
+ CREATE TABLE `account` (
2
+ `id` text PRIMARY KEY NOT NULL,
3
+ `account_id` text NOT NULL,
4
+ `provider_id` text NOT NULL,
5
+ `user_id` text NOT NULL,
6
+ `access_token` text,
7
+ `refresh_token` text,
8
+ `id_token` text,
9
+ `access_token_expires_at` integer,
10
+ `refresh_token_expires_at` integer,
11
+ `scope` text,
12
+ `password` text,
13
+ `created_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL,
14
+ `updated_at` integer NOT NULL,
15
+ FOREIGN KEY (`user_id`) REFERENCES `user`(`id`) ON UPDATE no action ON DELETE cascade
16
+ );
17
+ --> statement-breakpoint
18
+ CREATE INDEX `account_userId_idx` ON `account` (`user_id`);--> statement-breakpoint
19
+ CREATE TABLE `chat_message` (
20
+ `id` text PRIMARY KEY NOT NULL,
21
+ `conversation_id` text NOT NULL,
22
+ `role` text NOT NULL,
23
+ `content` text NOT NULL,
24
+ `created_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL,
25
+ FOREIGN KEY (`conversation_id`) REFERENCES `conversation`(`id`) ON UPDATE no action ON DELETE cascade
26
+ );
27
+ --> statement-breakpoint
28
+ CREATE INDEX `chat_message_conversationId_idx` ON `chat_message` (`conversation_id`);--> statement-breakpoint
29
+ CREATE TABLE `conversation` (
30
+ `id` text PRIMARY KEY NOT NULL,
31
+ `user_id` text NOT NULL,
32
+ `title` text DEFAULT 'New Conversation' NOT NULL,
33
+ `created_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL,
34
+ `updated_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL,
35
+ FOREIGN KEY (`user_id`) REFERENCES `user`(`id`) ON UPDATE no action ON DELETE cascade
36
+ );
37
+ --> statement-breakpoint
38
+ CREATE INDEX `conversation_userId_idx` ON `conversation` (`user_id`);--> statement-breakpoint
39
+ CREATE TABLE `session` (
40
+ `id` text PRIMARY KEY NOT NULL,
41
+ `expires_at` integer NOT NULL,
42
+ `token` text NOT NULL,
43
+ `created_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL,
44
+ `updated_at` integer NOT NULL,
45
+ `ip_address` text,
46
+ `user_agent` text,
47
+ `user_id` text NOT NULL,
48
+ FOREIGN KEY (`user_id`) REFERENCES `user`(`id`) ON UPDATE no action ON DELETE cascade
49
+ );
50
+ --> statement-breakpoint
51
+ CREATE UNIQUE INDEX `session_token_unique` ON `session` (`token`);--> statement-breakpoint
52
+ CREATE INDEX `session_userId_idx` ON `session` (`user_id`);--> statement-breakpoint
53
+ CREATE TABLE `tool_call` (
54
+ `id` text PRIMARY KEY NOT NULL,
55
+ `message_id` text NOT NULL,
56
+ `tool_call_id` text NOT NULL,
57
+ `tool_name` text NOT NULL,
58
+ `input` text NOT NULL,
59
+ `output` text,
60
+ `created_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL,
61
+ FOREIGN KEY (`message_id`) REFERENCES `chat_message`(`id`) ON UPDATE no action ON DELETE cascade
62
+ );
63
+ --> statement-breakpoint
64
+ CREATE INDEX `tool_call_messageId_idx` ON `tool_call` (`message_id`);--> statement-breakpoint
65
+ CREATE TABLE `user` (
66
+ `id` text PRIMARY KEY NOT NULL,
67
+ `name` text NOT NULL,
68
+ `email` text NOT NULL,
69
+ `email_verified` integer DEFAULT false NOT NULL,
70
+ `image` text,
71
+ `created_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL,
72
+ `updated_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL
73
+ );
74
+ --> statement-breakpoint
75
+ CREATE UNIQUE INDEX `user_email_unique` ON `user` (`email`);--> statement-breakpoint
76
+ CREATE TABLE `verification` (
77
+ `id` text PRIMARY KEY NOT NULL,
78
+ `identifier` text NOT NULL,
79
+ `value` text NOT NULL,
80
+ `expires_at` integer NOT NULL,
81
+ `created_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL,
82
+ `updated_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL
83
+ );
84
+ --> statement-breakpoint
85
+ CREATE INDEX `verification_identifier_idx` ON `verification` (`identifier`);
@@ -0,0 +1,590 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "3f42e028-937d-4923-b9a2-9102012a7cc2",
5
+ "prevId": "00000000-0000-0000-0000-000000000000",
6
+ "tables": {
7
+ "account": {
8
+ "name": "account",
9
+ "columns": {
10
+ "id": {
11
+ "name": "id",
12
+ "type": "text",
13
+ "primaryKey": true,
14
+ "notNull": true,
15
+ "autoincrement": false
16
+ },
17
+ "account_id": {
18
+ "name": "account_id",
19
+ "type": "text",
20
+ "primaryKey": false,
21
+ "notNull": true,
22
+ "autoincrement": false
23
+ },
24
+ "provider_id": {
25
+ "name": "provider_id",
26
+ "type": "text",
27
+ "primaryKey": false,
28
+ "notNull": true,
29
+ "autoincrement": false
30
+ },
31
+ "user_id": {
32
+ "name": "user_id",
33
+ "type": "text",
34
+ "primaryKey": false,
35
+ "notNull": true,
36
+ "autoincrement": false
37
+ },
38
+ "access_token": {
39
+ "name": "access_token",
40
+ "type": "text",
41
+ "primaryKey": false,
42
+ "notNull": false,
43
+ "autoincrement": false
44
+ },
45
+ "refresh_token": {
46
+ "name": "refresh_token",
47
+ "type": "text",
48
+ "primaryKey": false,
49
+ "notNull": false,
50
+ "autoincrement": false
51
+ },
52
+ "id_token": {
53
+ "name": "id_token",
54
+ "type": "text",
55
+ "primaryKey": false,
56
+ "notNull": false,
57
+ "autoincrement": false
58
+ },
59
+ "access_token_expires_at": {
60
+ "name": "access_token_expires_at",
61
+ "type": "integer",
62
+ "primaryKey": false,
63
+ "notNull": false,
64
+ "autoincrement": false
65
+ },
66
+ "refresh_token_expires_at": {
67
+ "name": "refresh_token_expires_at",
68
+ "type": "integer",
69
+ "primaryKey": false,
70
+ "notNull": false,
71
+ "autoincrement": false
72
+ },
73
+ "scope": {
74
+ "name": "scope",
75
+ "type": "text",
76
+ "primaryKey": false,
77
+ "notNull": false,
78
+ "autoincrement": false
79
+ },
80
+ "password": {
81
+ "name": "password",
82
+ "type": "text",
83
+ "primaryKey": false,
84
+ "notNull": false,
85
+ "autoincrement": false
86
+ },
87
+ "created_at": {
88
+ "name": "created_at",
89
+ "type": "integer",
90
+ "primaryKey": false,
91
+ "notNull": true,
92
+ "autoincrement": false,
93
+ "default": "(cast(unixepoch('subsecond') * 1000 as integer))"
94
+ },
95
+ "updated_at": {
96
+ "name": "updated_at",
97
+ "type": "integer",
98
+ "primaryKey": false,
99
+ "notNull": true,
100
+ "autoincrement": false
101
+ }
102
+ },
103
+ "indexes": {
104
+ "account_userId_idx": {
105
+ "name": "account_userId_idx",
106
+ "columns": [
107
+ "user_id"
108
+ ],
109
+ "isUnique": false
110
+ }
111
+ },
112
+ "foreignKeys": {
113
+ "account_user_id_user_id_fk": {
114
+ "name": "account_user_id_user_id_fk",
115
+ "tableFrom": "account",
116
+ "tableTo": "user",
117
+ "columnsFrom": [
118
+ "user_id"
119
+ ],
120
+ "columnsTo": [
121
+ "id"
122
+ ],
123
+ "onDelete": "cascade",
124
+ "onUpdate": "no action"
125
+ }
126
+ },
127
+ "compositePrimaryKeys": {},
128
+ "uniqueConstraints": {},
129
+ "checkConstraints": {}
130
+ },
131
+ "chat_message": {
132
+ "name": "chat_message",
133
+ "columns": {
134
+ "id": {
135
+ "name": "id",
136
+ "type": "text",
137
+ "primaryKey": true,
138
+ "notNull": true,
139
+ "autoincrement": false
140
+ },
141
+ "conversation_id": {
142
+ "name": "conversation_id",
143
+ "type": "text",
144
+ "primaryKey": false,
145
+ "notNull": true,
146
+ "autoincrement": false
147
+ },
148
+ "role": {
149
+ "name": "role",
150
+ "type": "text",
151
+ "primaryKey": false,
152
+ "notNull": true,
153
+ "autoincrement": false
154
+ },
155
+ "content": {
156
+ "name": "content",
157
+ "type": "text",
158
+ "primaryKey": false,
159
+ "notNull": true,
160
+ "autoincrement": false
161
+ },
162
+ "created_at": {
163
+ "name": "created_at",
164
+ "type": "integer",
165
+ "primaryKey": false,
166
+ "notNull": true,
167
+ "autoincrement": false,
168
+ "default": "(cast(unixepoch('subsecond') * 1000 as integer))"
169
+ }
170
+ },
171
+ "indexes": {
172
+ "chat_message_conversationId_idx": {
173
+ "name": "chat_message_conversationId_idx",
174
+ "columns": [
175
+ "conversation_id"
176
+ ],
177
+ "isUnique": false
178
+ }
179
+ },
180
+ "foreignKeys": {
181
+ "chat_message_conversation_id_conversation_id_fk": {
182
+ "name": "chat_message_conversation_id_conversation_id_fk",
183
+ "tableFrom": "chat_message",
184
+ "tableTo": "conversation",
185
+ "columnsFrom": [
186
+ "conversation_id"
187
+ ],
188
+ "columnsTo": [
189
+ "id"
190
+ ],
191
+ "onDelete": "cascade",
192
+ "onUpdate": "no action"
193
+ }
194
+ },
195
+ "compositePrimaryKeys": {},
196
+ "uniqueConstraints": {},
197
+ "checkConstraints": {}
198
+ },
199
+ "conversation": {
200
+ "name": "conversation",
201
+ "columns": {
202
+ "id": {
203
+ "name": "id",
204
+ "type": "text",
205
+ "primaryKey": true,
206
+ "notNull": true,
207
+ "autoincrement": false
208
+ },
209
+ "user_id": {
210
+ "name": "user_id",
211
+ "type": "text",
212
+ "primaryKey": false,
213
+ "notNull": true,
214
+ "autoincrement": false
215
+ },
216
+ "title": {
217
+ "name": "title",
218
+ "type": "text",
219
+ "primaryKey": false,
220
+ "notNull": true,
221
+ "autoincrement": false,
222
+ "default": "'New Conversation'"
223
+ },
224
+ "created_at": {
225
+ "name": "created_at",
226
+ "type": "integer",
227
+ "primaryKey": false,
228
+ "notNull": true,
229
+ "autoincrement": false,
230
+ "default": "(cast(unixepoch('subsecond') * 1000 as integer))"
231
+ },
232
+ "updated_at": {
233
+ "name": "updated_at",
234
+ "type": "integer",
235
+ "primaryKey": false,
236
+ "notNull": true,
237
+ "autoincrement": false,
238
+ "default": "(cast(unixepoch('subsecond') * 1000 as integer))"
239
+ }
240
+ },
241
+ "indexes": {
242
+ "conversation_userId_idx": {
243
+ "name": "conversation_userId_idx",
244
+ "columns": [
245
+ "user_id"
246
+ ],
247
+ "isUnique": false
248
+ }
249
+ },
250
+ "foreignKeys": {
251
+ "conversation_user_id_user_id_fk": {
252
+ "name": "conversation_user_id_user_id_fk",
253
+ "tableFrom": "conversation",
254
+ "tableTo": "user",
255
+ "columnsFrom": [
256
+ "user_id"
257
+ ],
258
+ "columnsTo": [
259
+ "id"
260
+ ],
261
+ "onDelete": "cascade",
262
+ "onUpdate": "no action"
263
+ }
264
+ },
265
+ "compositePrimaryKeys": {},
266
+ "uniqueConstraints": {},
267
+ "checkConstraints": {}
268
+ },
269
+ "session": {
270
+ "name": "session",
271
+ "columns": {
272
+ "id": {
273
+ "name": "id",
274
+ "type": "text",
275
+ "primaryKey": true,
276
+ "notNull": true,
277
+ "autoincrement": false
278
+ },
279
+ "expires_at": {
280
+ "name": "expires_at",
281
+ "type": "integer",
282
+ "primaryKey": false,
283
+ "notNull": true,
284
+ "autoincrement": false
285
+ },
286
+ "token": {
287
+ "name": "token",
288
+ "type": "text",
289
+ "primaryKey": false,
290
+ "notNull": true,
291
+ "autoincrement": false
292
+ },
293
+ "created_at": {
294
+ "name": "created_at",
295
+ "type": "integer",
296
+ "primaryKey": false,
297
+ "notNull": true,
298
+ "autoincrement": false,
299
+ "default": "(cast(unixepoch('subsecond') * 1000 as integer))"
300
+ },
301
+ "updated_at": {
302
+ "name": "updated_at",
303
+ "type": "integer",
304
+ "primaryKey": false,
305
+ "notNull": true,
306
+ "autoincrement": false
307
+ },
308
+ "ip_address": {
309
+ "name": "ip_address",
310
+ "type": "text",
311
+ "primaryKey": false,
312
+ "notNull": false,
313
+ "autoincrement": false
314
+ },
315
+ "user_agent": {
316
+ "name": "user_agent",
317
+ "type": "text",
318
+ "primaryKey": false,
319
+ "notNull": false,
320
+ "autoincrement": false
321
+ },
322
+ "user_id": {
323
+ "name": "user_id",
324
+ "type": "text",
325
+ "primaryKey": false,
326
+ "notNull": true,
327
+ "autoincrement": false
328
+ }
329
+ },
330
+ "indexes": {
331
+ "session_token_unique": {
332
+ "name": "session_token_unique",
333
+ "columns": [
334
+ "token"
335
+ ],
336
+ "isUnique": true
337
+ },
338
+ "session_userId_idx": {
339
+ "name": "session_userId_idx",
340
+ "columns": [
341
+ "user_id"
342
+ ],
343
+ "isUnique": false
344
+ }
345
+ },
346
+ "foreignKeys": {
347
+ "session_user_id_user_id_fk": {
348
+ "name": "session_user_id_user_id_fk",
349
+ "tableFrom": "session",
350
+ "tableTo": "user",
351
+ "columnsFrom": [
352
+ "user_id"
353
+ ],
354
+ "columnsTo": [
355
+ "id"
356
+ ],
357
+ "onDelete": "cascade",
358
+ "onUpdate": "no action"
359
+ }
360
+ },
361
+ "compositePrimaryKeys": {},
362
+ "uniqueConstraints": {},
363
+ "checkConstraints": {}
364
+ },
365
+ "tool_call": {
366
+ "name": "tool_call",
367
+ "columns": {
368
+ "id": {
369
+ "name": "id",
370
+ "type": "text",
371
+ "primaryKey": true,
372
+ "notNull": true,
373
+ "autoincrement": false
374
+ },
375
+ "message_id": {
376
+ "name": "message_id",
377
+ "type": "text",
378
+ "primaryKey": false,
379
+ "notNull": true,
380
+ "autoincrement": false
381
+ },
382
+ "tool_call_id": {
383
+ "name": "tool_call_id",
384
+ "type": "text",
385
+ "primaryKey": false,
386
+ "notNull": true,
387
+ "autoincrement": false
388
+ },
389
+ "tool_name": {
390
+ "name": "tool_name",
391
+ "type": "text",
392
+ "primaryKey": false,
393
+ "notNull": true,
394
+ "autoincrement": false
395
+ },
396
+ "input": {
397
+ "name": "input",
398
+ "type": "text",
399
+ "primaryKey": false,
400
+ "notNull": true,
401
+ "autoincrement": false
402
+ },
403
+ "output": {
404
+ "name": "output",
405
+ "type": "text",
406
+ "primaryKey": false,
407
+ "notNull": false,
408
+ "autoincrement": false
409
+ },
410
+ "created_at": {
411
+ "name": "created_at",
412
+ "type": "integer",
413
+ "primaryKey": false,
414
+ "notNull": true,
415
+ "autoincrement": false,
416
+ "default": "(cast(unixepoch('subsecond') * 1000 as integer))"
417
+ }
418
+ },
419
+ "indexes": {
420
+ "tool_call_messageId_idx": {
421
+ "name": "tool_call_messageId_idx",
422
+ "columns": [
423
+ "message_id"
424
+ ],
425
+ "isUnique": false
426
+ }
427
+ },
428
+ "foreignKeys": {
429
+ "tool_call_message_id_chat_message_id_fk": {
430
+ "name": "tool_call_message_id_chat_message_id_fk",
431
+ "tableFrom": "tool_call",
432
+ "tableTo": "chat_message",
433
+ "columnsFrom": [
434
+ "message_id"
435
+ ],
436
+ "columnsTo": [
437
+ "id"
438
+ ],
439
+ "onDelete": "cascade",
440
+ "onUpdate": "no action"
441
+ }
442
+ },
443
+ "compositePrimaryKeys": {},
444
+ "uniqueConstraints": {},
445
+ "checkConstraints": {}
446
+ },
447
+ "user": {
448
+ "name": "user",
449
+ "columns": {
450
+ "id": {
451
+ "name": "id",
452
+ "type": "text",
453
+ "primaryKey": true,
454
+ "notNull": true,
455
+ "autoincrement": false
456
+ },
457
+ "name": {
458
+ "name": "name",
459
+ "type": "text",
460
+ "primaryKey": false,
461
+ "notNull": true,
462
+ "autoincrement": false
463
+ },
464
+ "email": {
465
+ "name": "email",
466
+ "type": "text",
467
+ "primaryKey": false,
468
+ "notNull": true,
469
+ "autoincrement": false
470
+ },
471
+ "email_verified": {
472
+ "name": "email_verified",
473
+ "type": "integer",
474
+ "primaryKey": false,
475
+ "notNull": true,
476
+ "autoincrement": false,
477
+ "default": false
478
+ },
479
+ "image": {
480
+ "name": "image",
481
+ "type": "text",
482
+ "primaryKey": false,
483
+ "notNull": false,
484
+ "autoincrement": false
485
+ },
486
+ "created_at": {
487
+ "name": "created_at",
488
+ "type": "integer",
489
+ "primaryKey": false,
490
+ "notNull": true,
491
+ "autoincrement": false,
492
+ "default": "(cast(unixepoch('subsecond') * 1000 as integer))"
493
+ },
494
+ "updated_at": {
495
+ "name": "updated_at",
496
+ "type": "integer",
497
+ "primaryKey": false,
498
+ "notNull": true,
499
+ "autoincrement": false,
500
+ "default": "(cast(unixepoch('subsecond') * 1000 as integer))"
501
+ }
502
+ },
503
+ "indexes": {
504
+ "user_email_unique": {
505
+ "name": "user_email_unique",
506
+ "columns": [
507
+ "email"
508
+ ],
509
+ "isUnique": true
510
+ }
511
+ },
512
+ "foreignKeys": {},
513
+ "compositePrimaryKeys": {},
514
+ "uniqueConstraints": {},
515
+ "checkConstraints": {}
516
+ },
517
+ "verification": {
518
+ "name": "verification",
519
+ "columns": {
520
+ "id": {
521
+ "name": "id",
522
+ "type": "text",
523
+ "primaryKey": true,
524
+ "notNull": true,
525
+ "autoincrement": false
526
+ },
527
+ "identifier": {
528
+ "name": "identifier",
529
+ "type": "text",
530
+ "primaryKey": false,
531
+ "notNull": true,
532
+ "autoincrement": false
533
+ },
534
+ "value": {
535
+ "name": "value",
536
+ "type": "text",
537
+ "primaryKey": false,
538
+ "notNull": true,
539
+ "autoincrement": false
540
+ },
541
+ "expires_at": {
542
+ "name": "expires_at",
543
+ "type": "integer",
544
+ "primaryKey": false,
545
+ "notNull": true,
546
+ "autoincrement": false
547
+ },
548
+ "created_at": {
549
+ "name": "created_at",
550
+ "type": "integer",
551
+ "primaryKey": false,
552
+ "notNull": true,
553
+ "autoincrement": false,
554
+ "default": "(cast(unixepoch('subsecond') * 1000 as integer))"
555
+ },
556
+ "updated_at": {
557
+ "name": "updated_at",
558
+ "type": "integer",
559
+ "primaryKey": false,
560
+ "notNull": true,
561
+ "autoincrement": false,
562
+ "default": "(cast(unixepoch('subsecond') * 1000 as integer))"
563
+ }
564
+ },
565
+ "indexes": {
566
+ "verification_identifier_idx": {
567
+ "name": "verification_identifier_idx",
568
+ "columns": [
569
+ "identifier"
570
+ ],
571
+ "isUnique": false
572
+ }
573
+ },
574
+ "foreignKeys": {},
575
+ "compositePrimaryKeys": {},
576
+ "uniqueConstraints": {},
577
+ "checkConstraints": {}
578
+ }
579
+ },
580
+ "views": {},
581
+ "enums": {},
582
+ "_meta": {
583
+ "schemas": {},
584
+ "tables": {},
585
+ "columns": {}
586
+ },
587
+ "internal": {
588
+ "indexes": {}
589
+ }
590
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "version": "7",
3
+ "dialect": "sqlite",
4
+ "entries": [
5
+ {
6
+ "idx": 0,
7
+ "version": "6",
8
+ "when": 1767804099092,
9
+ "tag": "0000_cloudy_squirrel_girl",
10
+ "breakpoints": true
11
+ }
12
+ ]
13
+ }
Binary file