@pinagent/react-native 0.1.2 → 0.1.4

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,489 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "7f121196-2bdb-4998-b5e6-f2219e703188",
5
+ "prevId": "05491115-c81d-47ce-8e5c-1eedd6597ac0",
6
+ "tables": {
7
+ "active_runs": {
8
+ "name": "active_runs",
9
+ "columns": {
10
+ "conversation_id": {
11
+ "name": "conversation_id",
12
+ "type": "text",
13
+ "primaryKey": true,
14
+ "notNull": true,
15
+ "autoincrement": false
16
+ },
17
+ "started_at": {
18
+ "name": "started_at",
19
+ "type": "integer",
20
+ "primaryKey": false,
21
+ "notNull": true,
22
+ "autoincrement": false
23
+ },
24
+ "current_turn": {
25
+ "name": "current_turn",
26
+ "type": "integer",
27
+ "primaryKey": false,
28
+ "notNull": true,
29
+ "autoincrement": false
30
+ },
31
+ "awaiting_ask_id": {
32
+ "name": "awaiting_ask_id",
33
+ "type": "text",
34
+ "primaryKey": false,
35
+ "notNull": false,
36
+ "autoincrement": false
37
+ },
38
+ "last_error": {
39
+ "name": "last_error",
40
+ "type": "text",
41
+ "primaryKey": false,
42
+ "notNull": false,
43
+ "autoincrement": false
44
+ }
45
+ },
46
+ "indexes": {},
47
+ "foreignKeys": {
48
+ "active_runs_conversation_id_conversations_id_fk": {
49
+ "name": "active_runs_conversation_id_conversations_id_fk",
50
+ "tableFrom": "active_runs",
51
+ "tableTo": "conversations",
52
+ "columnsFrom": [
53
+ "conversation_id"
54
+ ],
55
+ "columnsTo": [
56
+ "id"
57
+ ],
58
+ "onDelete": "cascade",
59
+ "onUpdate": "no action"
60
+ }
61
+ },
62
+ "compositePrimaryKeys": {},
63
+ "uniqueConstraints": {},
64
+ "checkConstraints": {}
65
+ },
66
+ "audit_events": {
67
+ "name": "audit_events",
68
+ "columns": {
69
+ "id": {
70
+ "name": "id",
71
+ "type": "integer",
72
+ "primaryKey": true,
73
+ "notNull": true,
74
+ "autoincrement": true
75
+ },
76
+ "conversation_id": {
77
+ "name": "conversation_id",
78
+ "type": "text",
79
+ "primaryKey": false,
80
+ "notNull": false,
81
+ "autoincrement": false
82
+ },
83
+ "actor": {
84
+ "name": "actor",
85
+ "type": "text",
86
+ "primaryKey": false,
87
+ "notNull": true,
88
+ "autoincrement": false
89
+ },
90
+ "action": {
91
+ "name": "action",
92
+ "type": "text",
93
+ "primaryKey": false,
94
+ "notNull": true,
95
+ "autoincrement": false
96
+ },
97
+ "payload": {
98
+ "name": "payload",
99
+ "type": "text",
100
+ "primaryKey": false,
101
+ "notNull": true,
102
+ "autoincrement": false,
103
+ "default": "('{}')"
104
+ },
105
+ "created_at": {
106
+ "name": "created_at",
107
+ "type": "integer",
108
+ "primaryKey": false,
109
+ "notNull": true,
110
+ "autoincrement": false,
111
+ "default": "(unixepoch() * 1000)"
112
+ }
113
+ },
114
+ "indexes": {},
115
+ "foreignKeys": {},
116
+ "compositePrimaryKeys": {},
117
+ "uniqueConstraints": {},
118
+ "checkConstraints": {}
119
+ },
120
+ "conversations": {
121
+ "name": "conversations",
122
+ "columns": {
123
+ "id": {
124
+ "name": "id",
125
+ "type": "text",
126
+ "primaryKey": true,
127
+ "notNull": true,
128
+ "autoincrement": false
129
+ },
130
+ "comment": {
131
+ "name": "comment",
132
+ "type": "text",
133
+ "primaryKey": false,
134
+ "notNull": true,
135
+ "autoincrement": false
136
+ },
137
+ "agent_session_id": {
138
+ "name": "agent_session_id",
139
+ "type": "text",
140
+ "primaryKey": false,
141
+ "notNull": false,
142
+ "autoincrement": false
143
+ },
144
+ "status": {
145
+ "name": "status",
146
+ "type": "text",
147
+ "primaryKey": false,
148
+ "notNull": true,
149
+ "autoincrement": false,
150
+ "default": "'pending'"
151
+ },
152
+ "note": {
153
+ "name": "note",
154
+ "type": "text",
155
+ "primaryKey": false,
156
+ "notNull": false,
157
+ "autoincrement": false
158
+ },
159
+ "commit_sha": {
160
+ "name": "commit_sha",
161
+ "type": "text",
162
+ "primaryKey": false,
163
+ "notNull": false,
164
+ "autoincrement": false
165
+ },
166
+ "branch": {
167
+ "name": "branch",
168
+ "type": "text",
169
+ "primaryKey": false,
170
+ "notNull": false,
171
+ "autoincrement": false
172
+ },
173
+ "worktree_path": {
174
+ "name": "worktree_path",
175
+ "type": "text",
176
+ "primaryKey": false,
177
+ "notNull": false,
178
+ "autoincrement": false
179
+ },
180
+ "worktree_state": {
181
+ "name": "worktree_state",
182
+ "type": "text",
183
+ "primaryKey": false,
184
+ "notNull": true,
185
+ "autoincrement": false,
186
+ "default": "'none'"
187
+ },
188
+ "created_at": {
189
+ "name": "created_at",
190
+ "type": "integer",
191
+ "primaryKey": false,
192
+ "notNull": true,
193
+ "autoincrement": false,
194
+ "default": "(unixepoch() * 1000)"
195
+ },
196
+ "updated_at": {
197
+ "name": "updated_at",
198
+ "type": "integer",
199
+ "primaryKey": false,
200
+ "notNull": true,
201
+ "autoincrement": false,
202
+ "default": "(unixepoch() * 1000)"
203
+ },
204
+ "resolved_at": {
205
+ "name": "resolved_at",
206
+ "type": "integer",
207
+ "primaryKey": false,
208
+ "notNull": false,
209
+ "autoincrement": false
210
+ }
211
+ },
212
+ "indexes": {},
213
+ "foreignKeys": {},
214
+ "compositePrimaryKeys": {},
215
+ "uniqueConstraints": {},
216
+ "checkConstraints": {}
217
+ },
218
+ "messages": {
219
+ "name": "messages",
220
+ "columns": {
221
+ "id": {
222
+ "name": "id",
223
+ "type": "integer",
224
+ "primaryKey": true,
225
+ "notNull": true,
226
+ "autoincrement": true
227
+ },
228
+ "conversation_id": {
229
+ "name": "conversation_id",
230
+ "type": "text",
231
+ "primaryKey": false,
232
+ "notNull": true,
233
+ "autoincrement": false
234
+ },
235
+ "turn": {
236
+ "name": "turn",
237
+ "type": "integer",
238
+ "primaryKey": false,
239
+ "notNull": true,
240
+ "autoincrement": false
241
+ },
242
+ "role": {
243
+ "name": "role",
244
+ "type": "text",
245
+ "primaryKey": false,
246
+ "notNull": true,
247
+ "autoincrement": false
248
+ },
249
+ "content": {
250
+ "name": "content",
251
+ "type": "text",
252
+ "primaryKey": false,
253
+ "notNull": true,
254
+ "autoincrement": false
255
+ },
256
+ "created_at": {
257
+ "name": "created_at",
258
+ "type": "integer",
259
+ "primaryKey": false,
260
+ "notNull": true,
261
+ "autoincrement": false,
262
+ "default": "(unixepoch() * 1000)"
263
+ }
264
+ },
265
+ "indexes": {},
266
+ "foreignKeys": {
267
+ "messages_conversation_id_conversations_id_fk": {
268
+ "name": "messages_conversation_id_conversations_id_fk",
269
+ "tableFrom": "messages",
270
+ "tableTo": "conversations",
271
+ "columnsFrom": [
272
+ "conversation_id"
273
+ ],
274
+ "columnsTo": [
275
+ "id"
276
+ ],
277
+ "onDelete": "cascade",
278
+ "onUpdate": "no action"
279
+ }
280
+ },
281
+ "compositePrimaryKeys": {},
282
+ "uniqueConstraints": {},
283
+ "checkConstraints": {}
284
+ },
285
+ "pull_requests": {
286
+ "name": "pull_requests",
287
+ "columns": {
288
+ "id": {
289
+ "name": "id",
290
+ "type": "integer",
291
+ "primaryKey": true,
292
+ "notNull": true,
293
+ "autoincrement": true
294
+ },
295
+ "number": {
296
+ "name": "number",
297
+ "type": "integer",
298
+ "primaryKey": false,
299
+ "notNull": true,
300
+ "autoincrement": false
301
+ },
302
+ "url": {
303
+ "name": "url",
304
+ "type": "text",
305
+ "primaryKey": false,
306
+ "notNull": true,
307
+ "autoincrement": false
308
+ },
309
+ "branch": {
310
+ "name": "branch",
311
+ "type": "text",
312
+ "primaryKey": false,
313
+ "notNull": true,
314
+ "autoincrement": false
315
+ },
316
+ "base_branch": {
317
+ "name": "base_branch",
318
+ "type": "text",
319
+ "primaryKey": false,
320
+ "notNull": true,
321
+ "autoincrement": false
322
+ },
323
+ "title": {
324
+ "name": "title",
325
+ "type": "text",
326
+ "primaryKey": false,
327
+ "notNull": true,
328
+ "autoincrement": false
329
+ },
330
+ "body": {
331
+ "name": "body",
332
+ "type": "text",
333
+ "primaryKey": false,
334
+ "notNull": true,
335
+ "autoincrement": false,
336
+ "default": "''"
337
+ },
338
+ "state": {
339
+ "name": "state",
340
+ "type": "text",
341
+ "primaryKey": false,
342
+ "notNull": true,
343
+ "autoincrement": false,
344
+ "default": "'open'"
345
+ },
346
+ "conversation_ids": {
347
+ "name": "conversation_ids",
348
+ "type": "text",
349
+ "primaryKey": false,
350
+ "notNull": true,
351
+ "autoincrement": false,
352
+ "default": "('[]')"
353
+ },
354
+ "created_at": {
355
+ "name": "created_at",
356
+ "type": "integer",
357
+ "primaryKey": false,
358
+ "notNull": true,
359
+ "autoincrement": false,
360
+ "default": "(unixepoch() * 1000)"
361
+ },
362
+ "updated_at": {
363
+ "name": "updated_at",
364
+ "type": "integer",
365
+ "primaryKey": false,
366
+ "notNull": true,
367
+ "autoincrement": false,
368
+ "default": "(unixepoch() * 1000)"
369
+ }
370
+ },
371
+ "indexes": {},
372
+ "foreignKeys": {},
373
+ "compositePrimaryKeys": {},
374
+ "uniqueConstraints": {},
375
+ "checkConstraints": {}
376
+ },
377
+ "widget_anchors": {
378
+ "name": "widget_anchors",
379
+ "columns": {
380
+ "conversation_id": {
381
+ "name": "conversation_id",
382
+ "type": "text",
383
+ "primaryKey": true,
384
+ "notNull": true,
385
+ "autoincrement": false
386
+ },
387
+ "url": {
388
+ "name": "url",
389
+ "type": "text",
390
+ "primaryKey": false,
391
+ "notNull": true,
392
+ "autoincrement": false
393
+ },
394
+ "file": {
395
+ "name": "file",
396
+ "type": "text",
397
+ "primaryKey": false,
398
+ "notNull": false,
399
+ "autoincrement": false
400
+ },
401
+ "line": {
402
+ "name": "line",
403
+ "type": "integer",
404
+ "primaryKey": false,
405
+ "notNull": false,
406
+ "autoincrement": false
407
+ },
408
+ "col": {
409
+ "name": "col",
410
+ "type": "integer",
411
+ "primaryKey": false,
412
+ "notNull": false,
413
+ "autoincrement": false
414
+ },
415
+ "selector": {
416
+ "name": "selector",
417
+ "type": "text",
418
+ "primaryKey": false,
419
+ "notNull": true,
420
+ "autoincrement": false
421
+ },
422
+ "click_x": {
423
+ "name": "click_x",
424
+ "type": "integer",
425
+ "primaryKey": false,
426
+ "notNull": false,
427
+ "autoincrement": false
428
+ },
429
+ "click_y": {
430
+ "name": "click_y",
431
+ "type": "integer",
432
+ "primaryKey": false,
433
+ "notNull": false,
434
+ "autoincrement": false
435
+ },
436
+ "viewport_w": {
437
+ "name": "viewport_w",
438
+ "type": "integer",
439
+ "primaryKey": false,
440
+ "notNull": false,
441
+ "autoincrement": false
442
+ },
443
+ "viewport_h": {
444
+ "name": "viewport_h",
445
+ "type": "integer",
446
+ "primaryKey": false,
447
+ "notNull": false,
448
+ "autoincrement": false
449
+ },
450
+ "user_agent": {
451
+ "name": "user_agent",
452
+ "type": "text",
453
+ "primaryKey": false,
454
+ "notNull": false,
455
+ "autoincrement": false
456
+ }
457
+ },
458
+ "indexes": {},
459
+ "foreignKeys": {
460
+ "widget_anchors_conversation_id_conversations_id_fk": {
461
+ "name": "widget_anchors_conversation_id_conversations_id_fk",
462
+ "tableFrom": "widget_anchors",
463
+ "tableTo": "conversations",
464
+ "columnsFrom": [
465
+ "conversation_id"
466
+ ],
467
+ "columnsTo": [
468
+ "id"
469
+ ],
470
+ "onDelete": "cascade",
471
+ "onUpdate": "no action"
472
+ }
473
+ },
474
+ "compositePrimaryKeys": {},
475
+ "uniqueConstraints": {},
476
+ "checkConstraints": {}
477
+ }
478
+ },
479
+ "views": {},
480
+ "enums": {},
481
+ "_meta": {
482
+ "schemas": {},
483
+ "tables": {},
484
+ "columns": {}
485
+ },
486
+ "internal": {
487
+ "indexes": {}
488
+ }
489
+ }