@alteran/astro 0.1.0 → 0.1.3

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.
@@ -0,0 +1,389 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "cb70b8e1-d043-4b92-928a-ac332366391c",
5
+ "prevId": "6b1c0449-8e89-4892-8ca9-69887c4af0cd",
6
+ "tables": {
7
+ "blob_quota": {
8
+ "name": "blob_quota",
9
+ "columns": {
10
+ "did": {
11
+ "name": "did",
12
+ "type": "text",
13
+ "primaryKey": true,
14
+ "notNull": true,
15
+ "autoincrement": false
16
+ },
17
+ "total_bytes": {
18
+ "name": "total_bytes",
19
+ "type": "integer",
20
+ "primaryKey": false,
21
+ "notNull": true,
22
+ "autoincrement": false,
23
+ "default": 0
24
+ },
25
+ "blob_count": {
26
+ "name": "blob_count",
27
+ "type": "integer",
28
+ "primaryKey": false,
29
+ "notNull": true,
30
+ "autoincrement": false,
31
+ "default": 0
32
+ },
33
+ "updated_at": {
34
+ "name": "updated_at",
35
+ "type": "integer",
36
+ "primaryKey": false,
37
+ "notNull": true,
38
+ "autoincrement": false
39
+ }
40
+ },
41
+ "indexes": {},
42
+ "foreignKeys": {},
43
+ "compositePrimaryKeys": {},
44
+ "uniqueConstraints": {},
45
+ "checkConstraints": {}
46
+ },
47
+ "blob": {
48
+ "name": "blob",
49
+ "columns": {
50
+ "cid": {
51
+ "name": "cid",
52
+ "type": "text",
53
+ "primaryKey": true,
54
+ "notNull": true,
55
+ "autoincrement": false
56
+ },
57
+ "did": {
58
+ "name": "did",
59
+ "type": "text",
60
+ "primaryKey": false,
61
+ "notNull": true,
62
+ "autoincrement": false
63
+ },
64
+ "key": {
65
+ "name": "key",
66
+ "type": "text",
67
+ "primaryKey": false,
68
+ "notNull": true,
69
+ "autoincrement": false
70
+ },
71
+ "mime": {
72
+ "name": "mime",
73
+ "type": "text",
74
+ "primaryKey": false,
75
+ "notNull": true,
76
+ "autoincrement": false
77
+ },
78
+ "size": {
79
+ "name": "size",
80
+ "type": "integer",
81
+ "primaryKey": false,
82
+ "notNull": true,
83
+ "autoincrement": false
84
+ }
85
+ },
86
+ "indexes": {},
87
+ "foreignKeys": {},
88
+ "compositePrimaryKeys": {},
89
+ "uniqueConstraints": {},
90
+ "checkConstraints": {}
91
+ },
92
+ "blob_usage": {
93
+ "name": "blob_usage",
94
+ "columns": {
95
+ "record_uri": {
96
+ "name": "record_uri",
97
+ "type": "text",
98
+ "primaryKey": false,
99
+ "notNull": true,
100
+ "autoincrement": false
101
+ },
102
+ "key": {
103
+ "name": "key",
104
+ "type": "text",
105
+ "primaryKey": false,
106
+ "notNull": true,
107
+ "autoincrement": false
108
+ }
109
+ },
110
+ "indexes": {
111
+ "blob_usage_record_uri_idx": {
112
+ "name": "blob_usage_record_uri_idx",
113
+ "columns": [
114
+ "record_uri"
115
+ ],
116
+ "isUnique": false
117
+ }
118
+ },
119
+ "foreignKeys": {},
120
+ "compositePrimaryKeys": {},
121
+ "uniqueConstraints": {},
122
+ "checkConstraints": {}
123
+ },
124
+ "blockstore": {
125
+ "name": "blockstore",
126
+ "columns": {
127
+ "cid": {
128
+ "name": "cid",
129
+ "type": "text",
130
+ "primaryKey": true,
131
+ "notNull": true,
132
+ "autoincrement": false
133
+ },
134
+ "bytes": {
135
+ "name": "bytes",
136
+ "type": "text",
137
+ "primaryKey": false,
138
+ "notNull": false,
139
+ "autoincrement": false
140
+ }
141
+ },
142
+ "indexes": {},
143
+ "foreignKeys": {},
144
+ "compositePrimaryKeys": {},
145
+ "uniqueConstraints": {},
146
+ "checkConstraints": {}
147
+ },
148
+ "commit_log": {
149
+ "name": "commit_log",
150
+ "columns": {
151
+ "seq": {
152
+ "name": "seq",
153
+ "type": "integer",
154
+ "primaryKey": true,
155
+ "notNull": true,
156
+ "autoincrement": false
157
+ },
158
+ "cid": {
159
+ "name": "cid",
160
+ "type": "text",
161
+ "primaryKey": false,
162
+ "notNull": true,
163
+ "autoincrement": false
164
+ },
165
+ "rev": {
166
+ "name": "rev",
167
+ "type": "text",
168
+ "primaryKey": false,
169
+ "notNull": true,
170
+ "autoincrement": false
171
+ },
172
+ "data": {
173
+ "name": "data",
174
+ "type": "text",
175
+ "primaryKey": false,
176
+ "notNull": true,
177
+ "autoincrement": false
178
+ },
179
+ "sig": {
180
+ "name": "sig",
181
+ "type": "text",
182
+ "primaryKey": false,
183
+ "notNull": true,
184
+ "autoincrement": false
185
+ },
186
+ "ts": {
187
+ "name": "ts",
188
+ "type": "integer",
189
+ "primaryKey": false,
190
+ "notNull": true,
191
+ "autoincrement": false
192
+ }
193
+ },
194
+ "indexes": {
195
+ "commit_log_seq_idx": {
196
+ "name": "commit_log_seq_idx",
197
+ "columns": [
198
+ "seq"
199
+ ],
200
+ "isUnique": false
201
+ }
202
+ },
203
+ "foreignKeys": {},
204
+ "compositePrimaryKeys": {},
205
+ "uniqueConstraints": {},
206
+ "checkConstraints": {}
207
+ },
208
+ "login_attempts": {
209
+ "name": "login_attempts",
210
+ "columns": {
211
+ "ip": {
212
+ "name": "ip",
213
+ "type": "text",
214
+ "primaryKey": true,
215
+ "notNull": true,
216
+ "autoincrement": false
217
+ },
218
+ "attempts": {
219
+ "name": "attempts",
220
+ "type": "integer",
221
+ "primaryKey": false,
222
+ "notNull": true,
223
+ "autoincrement": false,
224
+ "default": 0
225
+ },
226
+ "locked_until": {
227
+ "name": "locked_until",
228
+ "type": "integer",
229
+ "primaryKey": false,
230
+ "notNull": false,
231
+ "autoincrement": false
232
+ },
233
+ "last_attempt": {
234
+ "name": "last_attempt",
235
+ "type": "integer",
236
+ "primaryKey": false,
237
+ "notNull": true,
238
+ "autoincrement": false
239
+ }
240
+ },
241
+ "indexes": {},
242
+ "foreignKeys": {},
243
+ "compositePrimaryKeys": {},
244
+ "uniqueConstraints": {},
245
+ "checkConstraints": {}
246
+ },
247
+ "record": {
248
+ "name": "record",
249
+ "columns": {
250
+ "uri": {
251
+ "name": "uri",
252
+ "type": "text",
253
+ "primaryKey": true,
254
+ "notNull": true,
255
+ "autoincrement": false
256
+ },
257
+ "did": {
258
+ "name": "did",
259
+ "type": "text",
260
+ "primaryKey": false,
261
+ "notNull": true,
262
+ "autoincrement": false
263
+ },
264
+ "cid": {
265
+ "name": "cid",
266
+ "type": "text",
267
+ "primaryKey": false,
268
+ "notNull": true,
269
+ "autoincrement": false
270
+ },
271
+ "json": {
272
+ "name": "json",
273
+ "type": "text",
274
+ "primaryKey": false,
275
+ "notNull": true,
276
+ "autoincrement": false
277
+ },
278
+ "created_at": {
279
+ "name": "created_at",
280
+ "type": "integer",
281
+ "primaryKey": false,
282
+ "notNull": false,
283
+ "autoincrement": false,
284
+ "default": 0
285
+ }
286
+ },
287
+ "indexes": {
288
+ "record_did_idx": {
289
+ "name": "record_did_idx",
290
+ "columns": [
291
+ "did"
292
+ ],
293
+ "isUnique": false
294
+ },
295
+ "record_cid_idx": {
296
+ "name": "record_cid_idx",
297
+ "columns": [
298
+ "cid"
299
+ ],
300
+ "isUnique": false
301
+ }
302
+ },
303
+ "foreignKeys": {},
304
+ "compositePrimaryKeys": {},
305
+ "uniqueConstraints": {},
306
+ "checkConstraints": {}
307
+ },
308
+ "repo_root": {
309
+ "name": "repo_root",
310
+ "columns": {
311
+ "did": {
312
+ "name": "did",
313
+ "type": "text",
314
+ "primaryKey": true,
315
+ "notNull": true,
316
+ "autoincrement": false
317
+ },
318
+ "commit_cid": {
319
+ "name": "commit_cid",
320
+ "type": "text",
321
+ "primaryKey": false,
322
+ "notNull": true,
323
+ "autoincrement": false
324
+ },
325
+ "rev": {
326
+ "name": "rev",
327
+ "type": "integer",
328
+ "primaryKey": false,
329
+ "notNull": true,
330
+ "autoincrement": false
331
+ }
332
+ },
333
+ "indexes": {},
334
+ "foreignKeys": {},
335
+ "compositePrimaryKeys": {},
336
+ "uniqueConstraints": {},
337
+ "checkConstraints": {}
338
+ },
339
+ "token_revocation": {
340
+ "name": "token_revocation",
341
+ "columns": {
342
+ "jti": {
343
+ "name": "jti",
344
+ "type": "text",
345
+ "primaryKey": true,
346
+ "notNull": true,
347
+ "autoincrement": false
348
+ },
349
+ "exp": {
350
+ "name": "exp",
351
+ "type": "integer",
352
+ "primaryKey": false,
353
+ "notNull": true,
354
+ "autoincrement": false
355
+ },
356
+ "revoked_at": {
357
+ "name": "revoked_at",
358
+ "type": "integer",
359
+ "primaryKey": false,
360
+ "notNull": true,
361
+ "autoincrement": false
362
+ }
363
+ },
364
+ "indexes": {
365
+ "token_revocation_exp_idx": {
366
+ "name": "token_revocation_exp_idx",
367
+ "columns": [
368
+ "exp"
369
+ ],
370
+ "isUnique": false
371
+ }
372
+ },
373
+ "foreignKeys": {},
374
+ "compositePrimaryKeys": {},
375
+ "uniqueConstraints": {},
376
+ "checkConstraints": {}
377
+ }
378
+ },
379
+ "views": {},
380
+ "enums": {},
381
+ "_meta": {
382
+ "schemas": {},
383
+ "tables": {},
384
+ "columns": {}
385
+ },
386
+ "internal": {
387
+ "indexes": {}
388
+ }
389
+ }
@@ -0,0 +1,41 @@
1
+ {
2
+ "version": "7",
3
+ "dialect": "sqlite",
4
+ "entries": [
5
+ {
6
+ "idx": 0,
7
+ "version": "6",
8
+ "when": 1759427503700,
9
+ "tag": "0000_neat_havok",
10
+ "breakpoints": true
11
+ },
12
+ {
13
+ "idx": 1,
14
+ "version": "6",
15
+ "when": 1759445626322,
16
+ "tag": "0001_moaning_silverclaw",
17
+ "breakpoints": true
18
+ },
19
+ {
20
+ "idx": 2,
21
+ "version": "6",
22
+ "when": 1759446916532,
23
+ "tag": "0002_eager_baron_strucker",
24
+ "breakpoints": true
25
+ },
26
+ {
27
+ "idx": 3,
28
+ "version": "6",
29
+ "when": 1759446975293,
30
+ "tag": "0003_lively_baron_strucker",
31
+ "breakpoints": true
32
+ },
33
+ {
34
+ "idx": 4,
35
+ "version": "6",
36
+ "when": 1759448068564,
37
+ "tag": "0004_skinny_domino",
38
+ "breakpoints": true
39
+ }
40
+ ]
41
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alteran/astro",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "description": "Astro integration for running a Cloudflare-hosted Bluesky PDS with Alteran.",
5
5
  "module": "index.js",
6
6
  "types": "index.d.ts",
@@ -15,7 +15,8 @@
15
15
  "index.js",
16
16
  "index.d.ts",
17
17
  "src",
18
- "types"
18
+ "types",
19
+ "migrations"
19
20
  ],
20
21
  "publishConfig": {
21
22
  "access": "public"