@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,435 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "05491115-c81d-47ce-8e5c-1eedd6597ac0",
5
+ "prevId": "33464fa3-92a8-4f76-a68a-60b0170a84bc",
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
+ "conversations": {
67
+ "name": "conversations",
68
+ "columns": {
69
+ "id": {
70
+ "name": "id",
71
+ "type": "text",
72
+ "primaryKey": true,
73
+ "notNull": true,
74
+ "autoincrement": false
75
+ },
76
+ "comment": {
77
+ "name": "comment",
78
+ "type": "text",
79
+ "primaryKey": false,
80
+ "notNull": true,
81
+ "autoincrement": false
82
+ },
83
+ "agent_session_id": {
84
+ "name": "agent_session_id",
85
+ "type": "text",
86
+ "primaryKey": false,
87
+ "notNull": false,
88
+ "autoincrement": false
89
+ },
90
+ "status": {
91
+ "name": "status",
92
+ "type": "text",
93
+ "primaryKey": false,
94
+ "notNull": true,
95
+ "autoincrement": false,
96
+ "default": "'pending'"
97
+ },
98
+ "note": {
99
+ "name": "note",
100
+ "type": "text",
101
+ "primaryKey": false,
102
+ "notNull": false,
103
+ "autoincrement": false
104
+ },
105
+ "commit_sha": {
106
+ "name": "commit_sha",
107
+ "type": "text",
108
+ "primaryKey": false,
109
+ "notNull": false,
110
+ "autoincrement": false
111
+ },
112
+ "branch": {
113
+ "name": "branch",
114
+ "type": "text",
115
+ "primaryKey": false,
116
+ "notNull": false,
117
+ "autoincrement": false
118
+ },
119
+ "worktree_path": {
120
+ "name": "worktree_path",
121
+ "type": "text",
122
+ "primaryKey": false,
123
+ "notNull": false,
124
+ "autoincrement": false
125
+ },
126
+ "worktree_state": {
127
+ "name": "worktree_state",
128
+ "type": "text",
129
+ "primaryKey": false,
130
+ "notNull": true,
131
+ "autoincrement": false,
132
+ "default": "'none'"
133
+ },
134
+ "created_at": {
135
+ "name": "created_at",
136
+ "type": "integer",
137
+ "primaryKey": false,
138
+ "notNull": true,
139
+ "autoincrement": false,
140
+ "default": "(unixepoch() * 1000)"
141
+ },
142
+ "updated_at": {
143
+ "name": "updated_at",
144
+ "type": "integer",
145
+ "primaryKey": false,
146
+ "notNull": true,
147
+ "autoincrement": false,
148
+ "default": "(unixepoch() * 1000)"
149
+ },
150
+ "resolved_at": {
151
+ "name": "resolved_at",
152
+ "type": "integer",
153
+ "primaryKey": false,
154
+ "notNull": false,
155
+ "autoincrement": false
156
+ }
157
+ },
158
+ "indexes": {},
159
+ "foreignKeys": {},
160
+ "compositePrimaryKeys": {},
161
+ "uniqueConstraints": {},
162
+ "checkConstraints": {}
163
+ },
164
+ "messages": {
165
+ "name": "messages",
166
+ "columns": {
167
+ "id": {
168
+ "name": "id",
169
+ "type": "integer",
170
+ "primaryKey": true,
171
+ "notNull": true,
172
+ "autoincrement": true
173
+ },
174
+ "conversation_id": {
175
+ "name": "conversation_id",
176
+ "type": "text",
177
+ "primaryKey": false,
178
+ "notNull": true,
179
+ "autoincrement": false
180
+ },
181
+ "turn": {
182
+ "name": "turn",
183
+ "type": "integer",
184
+ "primaryKey": false,
185
+ "notNull": true,
186
+ "autoincrement": false
187
+ },
188
+ "role": {
189
+ "name": "role",
190
+ "type": "text",
191
+ "primaryKey": false,
192
+ "notNull": true,
193
+ "autoincrement": false
194
+ },
195
+ "content": {
196
+ "name": "content",
197
+ "type": "text",
198
+ "primaryKey": false,
199
+ "notNull": true,
200
+ "autoincrement": false
201
+ },
202
+ "created_at": {
203
+ "name": "created_at",
204
+ "type": "integer",
205
+ "primaryKey": false,
206
+ "notNull": true,
207
+ "autoincrement": false,
208
+ "default": "(unixepoch() * 1000)"
209
+ }
210
+ },
211
+ "indexes": {},
212
+ "foreignKeys": {
213
+ "messages_conversation_id_conversations_id_fk": {
214
+ "name": "messages_conversation_id_conversations_id_fk",
215
+ "tableFrom": "messages",
216
+ "tableTo": "conversations",
217
+ "columnsFrom": [
218
+ "conversation_id"
219
+ ],
220
+ "columnsTo": [
221
+ "id"
222
+ ],
223
+ "onDelete": "cascade",
224
+ "onUpdate": "no action"
225
+ }
226
+ },
227
+ "compositePrimaryKeys": {},
228
+ "uniqueConstraints": {},
229
+ "checkConstraints": {}
230
+ },
231
+ "pull_requests": {
232
+ "name": "pull_requests",
233
+ "columns": {
234
+ "id": {
235
+ "name": "id",
236
+ "type": "integer",
237
+ "primaryKey": true,
238
+ "notNull": true,
239
+ "autoincrement": true
240
+ },
241
+ "number": {
242
+ "name": "number",
243
+ "type": "integer",
244
+ "primaryKey": false,
245
+ "notNull": true,
246
+ "autoincrement": false
247
+ },
248
+ "url": {
249
+ "name": "url",
250
+ "type": "text",
251
+ "primaryKey": false,
252
+ "notNull": true,
253
+ "autoincrement": false
254
+ },
255
+ "branch": {
256
+ "name": "branch",
257
+ "type": "text",
258
+ "primaryKey": false,
259
+ "notNull": true,
260
+ "autoincrement": false
261
+ },
262
+ "base_branch": {
263
+ "name": "base_branch",
264
+ "type": "text",
265
+ "primaryKey": false,
266
+ "notNull": true,
267
+ "autoincrement": false
268
+ },
269
+ "title": {
270
+ "name": "title",
271
+ "type": "text",
272
+ "primaryKey": false,
273
+ "notNull": true,
274
+ "autoincrement": false
275
+ },
276
+ "body": {
277
+ "name": "body",
278
+ "type": "text",
279
+ "primaryKey": false,
280
+ "notNull": true,
281
+ "autoincrement": false,
282
+ "default": "''"
283
+ },
284
+ "state": {
285
+ "name": "state",
286
+ "type": "text",
287
+ "primaryKey": false,
288
+ "notNull": true,
289
+ "autoincrement": false,
290
+ "default": "'open'"
291
+ },
292
+ "conversation_ids": {
293
+ "name": "conversation_ids",
294
+ "type": "text",
295
+ "primaryKey": false,
296
+ "notNull": true,
297
+ "autoincrement": false,
298
+ "default": "('[]')"
299
+ },
300
+ "created_at": {
301
+ "name": "created_at",
302
+ "type": "integer",
303
+ "primaryKey": false,
304
+ "notNull": true,
305
+ "autoincrement": false,
306
+ "default": "(unixepoch() * 1000)"
307
+ },
308
+ "updated_at": {
309
+ "name": "updated_at",
310
+ "type": "integer",
311
+ "primaryKey": false,
312
+ "notNull": true,
313
+ "autoincrement": false,
314
+ "default": "(unixepoch() * 1000)"
315
+ }
316
+ },
317
+ "indexes": {},
318
+ "foreignKeys": {},
319
+ "compositePrimaryKeys": {},
320
+ "uniqueConstraints": {},
321
+ "checkConstraints": {}
322
+ },
323
+ "widget_anchors": {
324
+ "name": "widget_anchors",
325
+ "columns": {
326
+ "conversation_id": {
327
+ "name": "conversation_id",
328
+ "type": "text",
329
+ "primaryKey": true,
330
+ "notNull": true,
331
+ "autoincrement": false
332
+ },
333
+ "url": {
334
+ "name": "url",
335
+ "type": "text",
336
+ "primaryKey": false,
337
+ "notNull": true,
338
+ "autoincrement": false
339
+ },
340
+ "file": {
341
+ "name": "file",
342
+ "type": "text",
343
+ "primaryKey": false,
344
+ "notNull": false,
345
+ "autoincrement": false
346
+ },
347
+ "line": {
348
+ "name": "line",
349
+ "type": "integer",
350
+ "primaryKey": false,
351
+ "notNull": false,
352
+ "autoincrement": false
353
+ },
354
+ "col": {
355
+ "name": "col",
356
+ "type": "integer",
357
+ "primaryKey": false,
358
+ "notNull": false,
359
+ "autoincrement": false
360
+ },
361
+ "selector": {
362
+ "name": "selector",
363
+ "type": "text",
364
+ "primaryKey": false,
365
+ "notNull": true,
366
+ "autoincrement": false
367
+ },
368
+ "click_x": {
369
+ "name": "click_x",
370
+ "type": "integer",
371
+ "primaryKey": false,
372
+ "notNull": false,
373
+ "autoincrement": false
374
+ },
375
+ "click_y": {
376
+ "name": "click_y",
377
+ "type": "integer",
378
+ "primaryKey": false,
379
+ "notNull": false,
380
+ "autoincrement": false
381
+ },
382
+ "viewport_w": {
383
+ "name": "viewport_w",
384
+ "type": "integer",
385
+ "primaryKey": false,
386
+ "notNull": false,
387
+ "autoincrement": false
388
+ },
389
+ "viewport_h": {
390
+ "name": "viewport_h",
391
+ "type": "integer",
392
+ "primaryKey": false,
393
+ "notNull": false,
394
+ "autoincrement": false
395
+ },
396
+ "user_agent": {
397
+ "name": "user_agent",
398
+ "type": "text",
399
+ "primaryKey": false,
400
+ "notNull": false,
401
+ "autoincrement": false
402
+ }
403
+ },
404
+ "indexes": {},
405
+ "foreignKeys": {
406
+ "widget_anchors_conversation_id_conversations_id_fk": {
407
+ "name": "widget_anchors_conversation_id_conversations_id_fk",
408
+ "tableFrom": "widget_anchors",
409
+ "tableTo": "conversations",
410
+ "columnsFrom": [
411
+ "conversation_id"
412
+ ],
413
+ "columnsTo": [
414
+ "id"
415
+ ],
416
+ "onDelete": "cascade",
417
+ "onUpdate": "no action"
418
+ }
419
+ },
420
+ "compositePrimaryKeys": {},
421
+ "uniqueConstraints": {},
422
+ "checkConstraints": {}
423
+ }
424
+ },
425
+ "views": {},
426
+ "enums": {},
427
+ "_meta": {
428
+ "schemas": {},
429
+ "tables": {},
430
+ "columns": {}
431
+ },
432
+ "internal": {
433
+ "indexes": {}
434
+ }
435
+ }