@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,335 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "44558c52-1f14-41e8-a3bb-4ff919663687",
5
+ "prevId": "b40e99e7-5146-4202-abfd-1c03df81d9f5",
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
+ "created_at": {
127
+ "name": "created_at",
128
+ "type": "integer",
129
+ "primaryKey": false,
130
+ "notNull": true,
131
+ "autoincrement": false,
132
+ "default": "(unixepoch() * 1000)"
133
+ },
134
+ "updated_at": {
135
+ "name": "updated_at",
136
+ "type": "integer",
137
+ "primaryKey": false,
138
+ "notNull": true,
139
+ "autoincrement": false,
140
+ "default": "(unixepoch() * 1000)"
141
+ },
142
+ "resolved_at": {
143
+ "name": "resolved_at",
144
+ "type": "integer",
145
+ "primaryKey": false,
146
+ "notNull": false,
147
+ "autoincrement": false
148
+ }
149
+ },
150
+ "indexes": {},
151
+ "foreignKeys": {},
152
+ "compositePrimaryKeys": {},
153
+ "uniqueConstraints": {},
154
+ "checkConstraints": {}
155
+ },
156
+ "messages": {
157
+ "name": "messages",
158
+ "columns": {
159
+ "id": {
160
+ "name": "id",
161
+ "type": "integer",
162
+ "primaryKey": true,
163
+ "notNull": true,
164
+ "autoincrement": true
165
+ },
166
+ "conversation_id": {
167
+ "name": "conversation_id",
168
+ "type": "text",
169
+ "primaryKey": false,
170
+ "notNull": true,
171
+ "autoincrement": false
172
+ },
173
+ "turn": {
174
+ "name": "turn",
175
+ "type": "integer",
176
+ "primaryKey": false,
177
+ "notNull": true,
178
+ "autoincrement": false
179
+ },
180
+ "role": {
181
+ "name": "role",
182
+ "type": "text",
183
+ "primaryKey": false,
184
+ "notNull": true,
185
+ "autoincrement": false
186
+ },
187
+ "content": {
188
+ "name": "content",
189
+ "type": "text",
190
+ "primaryKey": false,
191
+ "notNull": true,
192
+ "autoincrement": false
193
+ },
194
+ "created_at": {
195
+ "name": "created_at",
196
+ "type": "integer",
197
+ "primaryKey": false,
198
+ "notNull": true,
199
+ "autoincrement": false,
200
+ "default": "(unixepoch() * 1000)"
201
+ }
202
+ },
203
+ "indexes": {},
204
+ "foreignKeys": {
205
+ "messages_conversation_id_conversations_id_fk": {
206
+ "name": "messages_conversation_id_conversations_id_fk",
207
+ "tableFrom": "messages",
208
+ "tableTo": "conversations",
209
+ "columnsFrom": [
210
+ "conversation_id"
211
+ ],
212
+ "columnsTo": [
213
+ "id"
214
+ ],
215
+ "onDelete": "cascade",
216
+ "onUpdate": "no action"
217
+ }
218
+ },
219
+ "compositePrimaryKeys": {},
220
+ "uniqueConstraints": {},
221
+ "checkConstraints": {}
222
+ },
223
+ "widget_anchors": {
224
+ "name": "widget_anchors",
225
+ "columns": {
226
+ "conversation_id": {
227
+ "name": "conversation_id",
228
+ "type": "text",
229
+ "primaryKey": true,
230
+ "notNull": true,
231
+ "autoincrement": false
232
+ },
233
+ "url": {
234
+ "name": "url",
235
+ "type": "text",
236
+ "primaryKey": false,
237
+ "notNull": true,
238
+ "autoincrement": false
239
+ },
240
+ "file": {
241
+ "name": "file",
242
+ "type": "text",
243
+ "primaryKey": false,
244
+ "notNull": false,
245
+ "autoincrement": false
246
+ },
247
+ "line": {
248
+ "name": "line",
249
+ "type": "integer",
250
+ "primaryKey": false,
251
+ "notNull": false,
252
+ "autoincrement": false
253
+ },
254
+ "col": {
255
+ "name": "col",
256
+ "type": "integer",
257
+ "primaryKey": false,
258
+ "notNull": false,
259
+ "autoincrement": false
260
+ },
261
+ "selector": {
262
+ "name": "selector",
263
+ "type": "text",
264
+ "primaryKey": false,
265
+ "notNull": true,
266
+ "autoincrement": false
267
+ },
268
+ "click_x": {
269
+ "name": "click_x",
270
+ "type": "integer",
271
+ "primaryKey": false,
272
+ "notNull": false,
273
+ "autoincrement": false
274
+ },
275
+ "click_y": {
276
+ "name": "click_y",
277
+ "type": "integer",
278
+ "primaryKey": false,
279
+ "notNull": false,
280
+ "autoincrement": false
281
+ },
282
+ "viewport_w": {
283
+ "name": "viewport_w",
284
+ "type": "integer",
285
+ "primaryKey": false,
286
+ "notNull": false,
287
+ "autoincrement": false
288
+ },
289
+ "viewport_h": {
290
+ "name": "viewport_h",
291
+ "type": "integer",
292
+ "primaryKey": false,
293
+ "notNull": false,
294
+ "autoincrement": false
295
+ },
296
+ "user_agent": {
297
+ "name": "user_agent",
298
+ "type": "text",
299
+ "primaryKey": false,
300
+ "notNull": false,
301
+ "autoincrement": false
302
+ }
303
+ },
304
+ "indexes": {},
305
+ "foreignKeys": {
306
+ "widget_anchors_conversation_id_conversations_id_fk": {
307
+ "name": "widget_anchors_conversation_id_conversations_id_fk",
308
+ "tableFrom": "widget_anchors",
309
+ "tableTo": "conversations",
310
+ "columnsFrom": [
311
+ "conversation_id"
312
+ ],
313
+ "columnsTo": [
314
+ "id"
315
+ ],
316
+ "onDelete": "cascade",
317
+ "onUpdate": "no action"
318
+ }
319
+ },
320
+ "compositePrimaryKeys": {},
321
+ "uniqueConstraints": {},
322
+ "checkConstraints": {}
323
+ }
324
+ },
325
+ "views": {},
326
+ "enums": {},
327
+ "_meta": {
328
+ "schemas": {},
329
+ "tables": {},
330
+ "columns": {}
331
+ },
332
+ "internal": {
333
+ "indexes": {}
334
+ }
335
+ }
@@ -0,0 +1,343 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "33464fa3-92a8-4f76-a68a-60b0170a84bc",
5
+ "prevId": "44558c52-1f14-41e8-a3bb-4ff919663687",
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
+ "widget_anchors": {
232
+ "name": "widget_anchors",
233
+ "columns": {
234
+ "conversation_id": {
235
+ "name": "conversation_id",
236
+ "type": "text",
237
+ "primaryKey": true,
238
+ "notNull": true,
239
+ "autoincrement": false
240
+ },
241
+ "url": {
242
+ "name": "url",
243
+ "type": "text",
244
+ "primaryKey": false,
245
+ "notNull": true,
246
+ "autoincrement": false
247
+ },
248
+ "file": {
249
+ "name": "file",
250
+ "type": "text",
251
+ "primaryKey": false,
252
+ "notNull": false,
253
+ "autoincrement": false
254
+ },
255
+ "line": {
256
+ "name": "line",
257
+ "type": "integer",
258
+ "primaryKey": false,
259
+ "notNull": false,
260
+ "autoincrement": false
261
+ },
262
+ "col": {
263
+ "name": "col",
264
+ "type": "integer",
265
+ "primaryKey": false,
266
+ "notNull": false,
267
+ "autoincrement": false
268
+ },
269
+ "selector": {
270
+ "name": "selector",
271
+ "type": "text",
272
+ "primaryKey": false,
273
+ "notNull": true,
274
+ "autoincrement": false
275
+ },
276
+ "click_x": {
277
+ "name": "click_x",
278
+ "type": "integer",
279
+ "primaryKey": false,
280
+ "notNull": false,
281
+ "autoincrement": false
282
+ },
283
+ "click_y": {
284
+ "name": "click_y",
285
+ "type": "integer",
286
+ "primaryKey": false,
287
+ "notNull": false,
288
+ "autoincrement": false
289
+ },
290
+ "viewport_w": {
291
+ "name": "viewport_w",
292
+ "type": "integer",
293
+ "primaryKey": false,
294
+ "notNull": false,
295
+ "autoincrement": false
296
+ },
297
+ "viewport_h": {
298
+ "name": "viewport_h",
299
+ "type": "integer",
300
+ "primaryKey": false,
301
+ "notNull": false,
302
+ "autoincrement": false
303
+ },
304
+ "user_agent": {
305
+ "name": "user_agent",
306
+ "type": "text",
307
+ "primaryKey": false,
308
+ "notNull": false,
309
+ "autoincrement": false
310
+ }
311
+ },
312
+ "indexes": {},
313
+ "foreignKeys": {
314
+ "widget_anchors_conversation_id_conversations_id_fk": {
315
+ "name": "widget_anchors_conversation_id_conversations_id_fk",
316
+ "tableFrom": "widget_anchors",
317
+ "tableTo": "conversations",
318
+ "columnsFrom": [
319
+ "conversation_id"
320
+ ],
321
+ "columnsTo": [
322
+ "id"
323
+ ],
324
+ "onDelete": "cascade",
325
+ "onUpdate": "no action"
326
+ }
327
+ },
328
+ "compositePrimaryKeys": {},
329
+ "uniqueConstraints": {},
330
+ "checkConstraints": {}
331
+ }
332
+ },
333
+ "views": {},
334
+ "enums": {},
335
+ "_meta": {
336
+ "schemas": {},
337
+ "tables": {},
338
+ "columns": {}
339
+ },
340
+ "internal": {
341
+ "indexes": {}
342
+ }
343
+ }