@stacksjs/database 0.74.3 → 0.74.5
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.
- package/dist/drivers/helpers.js +1 -1
- package/dist/drivers/mysql.js +1 -1
- package/dist/drivers/postgres.js +1 -1
- package/dist/drivers/sqlite.js +1 -1
- package/dist/framework-schema.d.ts +214 -690
- package/dist/migrations.js +1 -1
- package/dist/relation-columns.js +1 -1
- package/dist/trait-tables.d.ts +3 -4
- package/dist/trait-tables.js +1 -1
- package/dist/uuid-columns.js +1 -1
- package/package.json +17 -17
|
@@ -19,12 +19,6 @@ export declare interface FrameworkSchema {
|
|
|
19
19
|
properties: string
|
|
20
20
|
ip_address: string
|
|
21
21
|
user_id: number
|
|
22
|
-
createdAt: string
|
|
23
|
-
updatedAt: string | null
|
|
24
|
-
subjectType: string
|
|
25
|
-
subjectId: number
|
|
26
|
-
ipAddress: string
|
|
27
|
-
userId: number
|
|
28
22
|
}
|
|
29
23
|
analytics_events: {
|
|
30
24
|
id: number
|
|
@@ -37,8 +31,6 @@ export declare interface FrameworkSchema {
|
|
|
37
31
|
value: number
|
|
38
32
|
currency: string
|
|
39
33
|
properties: string
|
|
40
|
-
createdAt: string
|
|
41
|
-
updatedAt: string | null
|
|
42
34
|
}
|
|
43
35
|
auction_items: {
|
|
44
36
|
id: number
|
|
@@ -60,19 +52,6 @@ export declare interface FrameworkSchema {
|
|
|
60
52
|
closes_at: string
|
|
61
53
|
extension_count: number
|
|
62
54
|
auction_id: number
|
|
63
|
-
createdAt: string
|
|
64
|
-
updatedAt: string | null
|
|
65
|
-
lotNumber: number
|
|
66
|
-
imageUrl: string
|
|
67
|
-
donorName: string
|
|
68
|
-
fairMarketValue: number
|
|
69
|
-
startingBid: number
|
|
70
|
-
minIncrement: number
|
|
71
|
-
buyNowPrice: number
|
|
72
|
-
reservePrice: number
|
|
73
|
-
closesAt: string
|
|
74
|
-
extensionCount: number
|
|
75
|
-
auctionId: number
|
|
76
55
|
}
|
|
77
56
|
auctions: {
|
|
78
57
|
id: number
|
|
@@ -90,15 +69,6 @@ export declare interface FrameworkSchema {
|
|
|
90
69
|
anti_snipe_minutes: number
|
|
91
70
|
extend_on_bid_window_minutes: number
|
|
92
71
|
max_extensions: number
|
|
93
|
-
createdAt: string
|
|
94
|
-
updatedAt: string | null
|
|
95
|
-
eventId: number
|
|
96
|
-
goalAmount: number
|
|
97
|
-
opensAt: string
|
|
98
|
-
closesAt: string
|
|
99
|
-
antiSnipeMinutes: number
|
|
100
|
-
extendOnBidWindowMinutes: number
|
|
101
|
-
maxExtensions: number
|
|
102
72
|
}
|
|
103
73
|
authors: {
|
|
104
74
|
id: number
|
|
@@ -110,9 +80,6 @@ export declare interface FrameworkSchema {
|
|
|
110
80
|
bio: string
|
|
111
81
|
avatar: string
|
|
112
82
|
user_id: number
|
|
113
|
-
createdAt: string
|
|
114
|
-
updatedAt: string | null
|
|
115
|
-
userId: number
|
|
116
83
|
}
|
|
117
84
|
automation_runs: {
|
|
118
85
|
id: number
|
|
@@ -131,16 +98,6 @@ export declare interface FrameworkSchema {
|
|
|
131
98
|
error: string
|
|
132
99
|
team_id: number
|
|
133
100
|
automation_id: number
|
|
134
|
-
createdAt: string
|
|
135
|
-
updatedAt: string | null
|
|
136
|
-
currentNodeId: string
|
|
137
|
-
subjectType: string
|
|
138
|
-
subjectId: string
|
|
139
|
-
idempotencyKey: string
|
|
140
|
-
startedAt: string
|
|
141
|
-
finishedAt: string
|
|
142
|
-
teamId: number
|
|
143
|
-
automationId: number
|
|
144
101
|
}
|
|
145
102
|
automations: {
|
|
146
103
|
id: number
|
|
@@ -154,10 +111,6 @@ export declare interface FrameworkSchema {
|
|
|
154
111
|
graph: unknown
|
|
155
112
|
published_at: string
|
|
156
113
|
team_id: number
|
|
157
|
-
createdAt: string
|
|
158
|
-
updatedAt: string | null
|
|
159
|
-
publishedAt: string
|
|
160
|
-
teamId: number
|
|
161
114
|
}
|
|
162
115
|
bids: {
|
|
163
116
|
id: number
|
|
@@ -172,14 +125,6 @@ export declare interface FrameworkSchema {
|
|
|
172
125
|
placed_at: string
|
|
173
126
|
auction_id: number
|
|
174
127
|
auction_item_id: number
|
|
175
|
-
createdAt: string
|
|
176
|
-
updatedAt: string | null
|
|
177
|
-
bidderName: string
|
|
178
|
-
bidderEmail: string
|
|
179
|
-
maxAmount: number
|
|
180
|
-
placedAt: string
|
|
181
|
-
auctionId: number
|
|
182
|
-
auctionItemId: number
|
|
183
128
|
}
|
|
184
129
|
board_columns: {
|
|
185
130
|
id: number
|
|
@@ -191,10 +136,6 @@ export declare interface FrameworkSchema {
|
|
|
191
136
|
position: number
|
|
192
137
|
card_limit: number
|
|
193
138
|
color: string
|
|
194
|
-
createdAt: string
|
|
195
|
-
updatedAt: string | null
|
|
196
|
-
boardId: number
|
|
197
|
-
cardLimit: number
|
|
198
139
|
}
|
|
199
140
|
boards: {
|
|
200
141
|
id: number
|
|
@@ -206,9 +147,7 @@ export declare interface FrameworkSchema {
|
|
|
206
147
|
icon: string
|
|
207
148
|
color: string
|
|
208
149
|
position: number
|
|
209
|
-
archived:
|
|
210
|
-
createdAt: string
|
|
211
|
-
updatedAt: string | null
|
|
150
|
+
archived: number
|
|
212
151
|
}
|
|
213
152
|
campaign_sends: {
|
|
214
153
|
id: number
|
|
@@ -234,20 +173,6 @@ export declare interface FrameworkSchema {
|
|
|
234
173
|
metadata: unknown
|
|
235
174
|
team_id: number
|
|
236
175
|
campaign_variant_id: number
|
|
237
|
-
createdAt: string
|
|
238
|
-
updatedAt: string | null
|
|
239
|
-
campaignId: number
|
|
240
|
-
subscriberId: number
|
|
241
|
-
emailListId: number
|
|
242
|
-
idempotencyKey: string
|
|
243
|
-
providerMessageId: string
|
|
244
|
-
sentAt: string
|
|
245
|
-
openedAt: string
|
|
246
|
-
clickedAt: string
|
|
247
|
-
deliveredAt: string
|
|
248
|
-
failedAt: string
|
|
249
|
-
teamId: number
|
|
250
|
-
campaignVariantId: number
|
|
251
176
|
}
|
|
252
177
|
campaign_variants: {
|
|
253
178
|
id: number
|
|
@@ -262,18 +187,9 @@ export declare interface FrameworkSchema {
|
|
|
262
187
|
open_count: number
|
|
263
188
|
click_count: number
|
|
264
189
|
conversion_count: number
|
|
265
|
-
is_winner:
|
|
190
|
+
is_winner: number
|
|
266
191
|
team_id: number
|
|
267
192
|
campaign_id: number
|
|
268
|
-
createdAt: string
|
|
269
|
-
updatedAt: string | null
|
|
270
|
-
sentCount: number
|
|
271
|
-
openCount: number
|
|
272
|
-
clickCount: number
|
|
273
|
-
conversionCount: number
|
|
274
|
-
isWinner: boolean
|
|
275
|
-
teamId: number
|
|
276
|
-
campaignId: number
|
|
277
193
|
}
|
|
278
194
|
campaigns: {
|
|
279
195
|
id: number
|
|
@@ -310,25 +226,12 @@ export declare interface FrameworkSchema {
|
|
|
310
226
|
start_date: string
|
|
311
227
|
end_date: string
|
|
312
228
|
team_id: number
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
replyTo: string
|
|
320
|
-
experimentMetric: "open_rate" | "click_rate" | "conversion_rate"
|
|
321
|
-
emailListId: number
|
|
322
|
-
scheduledAt: string
|
|
323
|
-
sentAt: string
|
|
324
|
-
audienceSize: number
|
|
325
|
-
sentCount: number
|
|
326
|
-
openRate: number
|
|
327
|
-
clickRate: number
|
|
328
|
-
conversionRate: number
|
|
329
|
-
startDate: string
|
|
330
|
-
endDate: string
|
|
331
|
-
teamId: number
|
|
229
|
+
}
|
|
230
|
+
card_assignees: {
|
|
231
|
+
card_id: number
|
|
232
|
+
user_id: number
|
|
233
|
+
assigned_by_user_id: number | null
|
|
234
|
+
created_at: string | null
|
|
332
235
|
}
|
|
333
236
|
card_comments: {
|
|
334
237
|
id: number
|
|
@@ -338,10 +241,11 @@ export declare interface FrameworkSchema {
|
|
|
338
241
|
card_id: number
|
|
339
242
|
user_id: number
|
|
340
243
|
body: string
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
244
|
+
}
|
|
245
|
+
card_labels: {
|
|
246
|
+
card_id: number
|
|
247
|
+
label_id: number
|
|
248
|
+
created_at: string | null
|
|
345
249
|
}
|
|
346
250
|
cards: {
|
|
347
251
|
id: number
|
|
@@ -355,17 +259,9 @@ export declare interface FrameworkSchema {
|
|
|
355
259
|
position: number
|
|
356
260
|
created_by_user_id: number
|
|
357
261
|
due_date: string
|
|
358
|
-
archived:
|
|
262
|
+
archived: number
|
|
359
263
|
board_column_id: number
|
|
360
264
|
user_id: number
|
|
361
|
-
createdAt: string
|
|
362
|
-
updatedAt: string | null
|
|
363
|
-
columnId: number
|
|
364
|
-
boardId: number
|
|
365
|
-
createdByUserId: number
|
|
366
|
-
dueDate: string
|
|
367
|
-
boardColumnId: number
|
|
368
|
-
userId: number
|
|
369
265
|
}
|
|
370
266
|
cart_items: {
|
|
371
267
|
id: number
|
|
@@ -384,18 +280,6 @@ export declare interface FrameworkSchema {
|
|
|
384
280
|
product_image: string
|
|
385
281
|
notes: string
|
|
386
282
|
cart_id: number
|
|
387
|
-
createdAt: string
|
|
388
|
-
updatedAt: string | null
|
|
389
|
-
unitPrice: number
|
|
390
|
-
totalPrice: number
|
|
391
|
-
taxRate: number
|
|
392
|
-
taxAmount: number
|
|
393
|
-
discountPercentage: number
|
|
394
|
-
discountAmount: number
|
|
395
|
-
productName: string
|
|
396
|
-
productSku: string
|
|
397
|
-
productImage: string
|
|
398
|
-
cartId: number
|
|
399
283
|
}
|
|
400
284
|
carts: {
|
|
401
285
|
id: number
|
|
@@ -414,15 +298,6 @@ export declare interface FrameworkSchema {
|
|
|
414
298
|
applied_coupon_id: string
|
|
415
299
|
customer_id: number
|
|
416
300
|
coupon_id: number
|
|
417
|
-
createdAt: string
|
|
418
|
-
updatedAt: string | null
|
|
419
|
-
totalItems: number
|
|
420
|
-
taxAmount: number
|
|
421
|
-
discountAmount: number
|
|
422
|
-
expiresAt: string
|
|
423
|
-
appliedCouponId: string
|
|
424
|
-
customerId: number
|
|
425
|
-
couponId: number
|
|
426
301
|
}
|
|
427
302
|
categories: {
|
|
428
303
|
id: number
|
|
@@ -433,15 +308,9 @@ export declare interface FrameworkSchema {
|
|
|
433
308
|
description: string
|
|
434
309
|
slug: string
|
|
435
310
|
image_url: string
|
|
436
|
-
is_active:
|
|
311
|
+
is_active: number
|
|
437
312
|
parent_category_id: string
|
|
438
313
|
display_order: number
|
|
439
|
-
createdAt: string
|
|
440
|
-
updatedAt: string | null
|
|
441
|
-
imageUrl: string
|
|
442
|
-
isActive: boolean
|
|
443
|
-
parentCategoryId: string
|
|
444
|
-
displayOrder: number
|
|
445
314
|
}
|
|
446
315
|
categorizable_models: {
|
|
447
316
|
id: number
|
|
@@ -451,6 +320,53 @@ export declare interface FrameworkSchema {
|
|
|
451
320
|
created_at: string
|
|
452
321
|
updated_at: string | null
|
|
453
322
|
}
|
|
323
|
+
categorizables: {
|
|
324
|
+
id: number
|
|
325
|
+
name: string
|
|
326
|
+
slug: string
|
|
327
|
+
description: string | null
|
|
328
|
+
is_active: number
|
|
329
|
+
categorizable_type: string
|
|
330
|
+
created_at: string
|
|
331
|
+
updated_at: string | null
|
|
332
|
+
}
|
|
333
|
+
ci_run_states: {
|
|
334
|
+
repo_full_name: string
|
|
335
|
+
last_conclusion: string | null
|
|
336
|
+
last_run_id: number | null
|
|
337
|
+
last_seen_at: string | null
|
|
338
|
+
last_notified_at: string | null
|
|
339
|
+
updated_at: string | null
|
|
340
|
+
}
|
|
341
|
+
ci_runner_alert_states: {
|
|
342
|
+
org: string
|
|
343
|
+
alerting: number
|
|
344
|
+
last_alerted_at: string | null
|
|
345
|
+
last_cleared_at: string | null
|
|
346
|
+
updated_at: string | null
|
|
347
|
+
}
|
|
348
|
+
ci_runner_samples: {
|
|
349
|
+
id: number
|
|
350
|
+
org: string
|
|
351
|
+
running: number
|
|
352
|
+
queued: number
|
|
353
|
+
cap: number
|
|
354
|
+
sampled_at: string
|
|
355
|
+
}
|
|
356
|
+
commentables: {
|
|
357
|
+
id: number
|
|
358
|
+
title: string
|
|
359
|
+
body: string
|
|
360
|
+
status: string
|
|
361
|
+
approved_at: number | null
|
|
362
|
+
rejected_at: number | null
|
|
363
|
+
commentables_id: number
|
|
364
|
+
commentables_type: string
|
|
365
|
+
user_id: number | null
|
|
366
|
+
is_active: number | null
|
|
367
|
+
created_at: string
|
|
368
|
+
updated_at: string | null
|
|
369
|
+
}
|
|
454
370
|
comments: {
|
|
455
371
|
id: number
|
|
456
372
|
uuid: string
|
|
@@ -467,16 +383,6 @@ export declare interface FrameworkSchema {
|
|
|
467
383
|
is_approved: number
|
|
468
384
|
post_id: number
|
|
469
385
|
user_id: number
|
|
470
|
-
createdAt: string
|
|
471
|
-
updatedAt: string | null
|
|
472
|
-
authorName: string
|
|
473
|
-
authorEmail: string
|
|
474
|
-
postTitle: string
|
|
475
|
-
ipAddress: string
|
|
476
|
-
userAgent: string
|
|
477
|
-
isApproved: number
|
|
478
|
-
postId: number
|
|
479
|
-
userId: number
|
|
480
386
|
}
|
|
481
387
|
communication_suppressions: {
|
|
482
388
|
id: number
|
|
@@ -490,11 +396,6 @@ export declare interface FrameworkSchema {
|
|
|
490
396
|
suppressed_at: string
|
|
491
397
|
lifted_at: string
|
|
492
398
|
team_id: number
|
|
493
|
-
createdAt: string
|
|
494
|
-
updatedAt: string | null
|
|
495
|
-
suppressedAt: string
|
|
496
|
-
liftedAt: string
|
|
497
|
-
teamId: number
|
|
498
399
|
}
|
|
499
400
|
consent_events: {
|
|
500
401
|
id: number
|
|
@@ -513,13 +414,6 @@ export declare interface FrameworkSchema {
|
|
|
513
414
|
ip_address: string
|
|
514
415
|
occurred_at: string
|
|
515
416
|
team_id: number
|
|
516
|
-
createdAt: string
|
|
517
|
-
updatedAt: string | null
|
|
518
|
-
policyVersion: string
|
|
519
|
-
idempotencyKey: string
|
|
520
|
-
ipAddress: string
|
|
521
|
-
occurredAt: string
|
|
522
|
-
teamId: number
|
|
523
417
|
}
|
|
524
418
|
coupons: {
|
|
525
419
|
id: number
|
|
@@ -529,7 +423,7 @@ export declare interface FrameworkSchema {
|
|
|
529
423
|
code: string
|
|
530
424
|
description: string
|
|
531
425
|
status: "Active" | "Scheduled" | "Expired"
|
|
532
|
-
is_active:
|
|
426
|
+
is_active: number
|
|
533
427
|
discount_type: "fixed_amount" | "percentage"
|
|
534
428
|
discount_value: number
|
|
535
429
|
min_order_amount: number
|
|
@@ -540,19 +434,37 @@ export declare interface FrameworkSchema {
|
|
|
540
434
|
start_date: string
|
|
541
435
|
end_date: string
|
|
542
436
|
product_id: number
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
437
|
+
}
|
|
438
|
+
courier_pings: {
|
|
439
|
+
id: number
|
|
440
|
+
uuid: string
|
|
441
|
+
created_at: string
|
|
442
|
+
updated_at: string | null
|
|
443
|
+
latitude: number
|
|
444
|
+
longitude: number
|
|
445
|
+
heading: number
|
|
446
|
+
speed: number
|
|
447
|
+
accuracy: number
|
|
448
|
+
recorded_at: string
|
|
449
|
+
courier_id: number
|
|
450
|
+
delivery_route_id: number
|
|
451
|
+
}
|
|
452
|
+
couriers: {
|
|
453
|
+
id: number
|
|
454
|
+
uuid: string
|
|
455
|
+
created_at: string
|
|
456
|
+
updated_at: string | null
|
|
457
|
+
name: string
|
|
458
|
+
phone: string
|
|
459
|
+
vehicle_number: string
|
|
460
|
+
license: string
|
|
461
|
+
status: "active" | "on_delivery" | "on_break" | "offline"
|
|
462
|
+
latitude: number
|
|
463
|
+
longitude: number
|
|
464
|
+
heading: number
|
|
465
|
+
speed: number
|
|
466
|
+
last_ping_at: string
|
|
467
|
+
user_id: number
|
|
556
468
|
}
|
|
557
469
|
customers: {
|
|
558
470
|
id: number
|
|
@@ -567,11 +479,19 @@ export declare interface FrameworkSchema {
|
|
|
567
479
|
status: "Active" | "Inactive"
|
|
568
480
|
avatar: string
|
|
569
481
|
user_id: number
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
482
|
+
}
|
|
483
|
+
dead_letter_jobs: {
|
|
484
|
+
id: number
|
|
485
|
+
uuid: string
|
|
486
|
+
connection: string
|
|
487
|
+
queue: string
|
|
488
|
+
payload: string
|
|
489
|
+
exception: string
|
|
490
|
+
reason: string
|
|
491
|
+
total_failures: number
|
|
492
|
+
first_failed_at: string | null
|
|
493
|
+
last_failed_at: string | null
|
|
494
|
+
dead_lettered_at: string
|
|
575
495
|
}
|
|
576
496
|
delivery_routes: {
|
|
577
497
|
id: number
|
|
@@ -588,14 +508,6 @@ export declare interface FrameworkSchema {
|
|
|
588
508
|
started_at: string
|
|
589
509
|
completed_at: string
|
|
590
510
|
courier_id: number
|
|
591
|
-
createdAt: string
|
|
592
|
-
updatedAt: string | null
|
|
593
|
-
deliveryTime: number
|
|
594
|
-
totalDistance: number
|
|
595
|
-
lastActive: number
|
|
596
|
-
startedAt: string
|
|
597
|
-
completedAt: string
|
|
598
|
-
courierId: number
|
|
599
511
|
}
|
|
600
512
|
delivery_stops: {
|
|
601
513
|
id: number
|
|
@@ -614,18 +526,9 @@ export declare interface FrameworkSchema {
|
|
|
614
526
|
arrived_at: string
|
|
615
527
|
completed_at: string
|
|
616
528
|
notes: string
|
|
529
|
+
type: "pickup" | "dropoff"
|
|
617
530
|
delivery_route_id: number
|
|
618
531
|
order_id: number
|
|
619
|
-
createdAt: string
|
|
620
|
-
updatedAt: string | null
|
|
621
|
-
recipientName: string
|
|
622
|
-
recipientPhone: string
|
|
623
|
-
etaAt: string
|
|
624
|
-
notifiedNearbyAt: string
|
|
625
|
-
arrivedAt: string
|
|
626
|
-
completedAt: string
|
|
627
|
-
deliveryRouteId: number
|
|
628
|
-
orderId: number
|
|
629
532
|
}
|
|
630
533
|
deployments: {
|
|
631
534
|
id: number
|
|
@@ -641,11 +544,6 @@ export declare interface FrameworkSchema {
|
|
|
641
544
|
author: string
|
|
642
545
|
url: string
|
|
643
546
|
error_log: string
|
|
644
|
-
createdAt: string
|
|
645
|
-
updatedAt: string | null
|
|
646
|
-
commitHash: string
|
|
647
|
-
commitMessage: string
|
|
648
|
-
errorLog: string
|
|
649
547
|
}
|
|
650
548
|
digital_deliveries: {
|
|
651
549
|
id: number
|
|
@@ -656,56 +554,9 @@ export declare interface FrameworkSchema {
|
|
|
656
554
|
description: string
|
|
657
555
|
download_limit: number
|
|
658
556
|
expiry_days: number
|
|
659
|
-
requires_login:
|
|
660
|
-
automatic_delivery:
|
|
557
|
+
requires_login: number
|
|
558
|
+
automatic_delivery: number
|
|
661
559
|
status: "active" | "inactive"
|
|
662
|
-
createdAt: string
|
|
663
|
-
updatedAt: string | null
|
|
664
|
-
downloadLimit: number
|
|
665
|
-
expiryDays: number
|
|
666
|
-
requiresLogin: boolean
|
|
667
|
-
automaticDelivery: boolean
|
|
668
|
-
}
|
|
669
|
-
courier_pings: {
|
|
670
|
-
id: number
|
|
671
|
-
uuid: string
|
|
672
|
-
created_at: string
|
|
673
|
-
updated_at: string | null
|
|
674
|
-
latitude: number
|
|
675
|
-
longitude: number
|
|
676
|
-
heading: number
|
|
677
|
-
speed: number
|
|
678
|
-
accuracy: number
|
|
679
|
-
recorded_at: string
|
|
680
|
-
courier_id: number
|
|
681
|
-
delivery_route_id: number
|
|
682
|
-
createdAt: string
|
|
683
|
-
updatedAt: string | null
|
|
684
|
-
recordedAt: string
|
|
685
|
-
courierId: number
|
|
686
|
-
deliveryRouteId: number
|
|
687
|
-
}
|
|
688
|
-
couriers: {
|
|
689
|
-
id: number
|
|
690
|
-
uuid: string
|
|
691
|
-
created_at: string
|
|
692
|
-
updated_at: string | null
|
|
693
|
-
name: string
|
|
694
|
-
phone: string
|
|
695
|
-
vehicle_number: string
|
|
696
|
-
license: string
|
|
697
|
-
status: "active" | "on_delivery" | "on_break" | "offline"
|
|
698
|
-
latitude: number
|
|
699
|
-
longitude: number
|
|
700
|
-
heading: number
|
|
701
|
-
speed: number
|
|
702
|
-
last_ping_at: string
|
|
703
|
-
user_id: number
|
|
704
|
-
createdAt: string
|
|
705
|
-
updatedAt: string | null
|
|
706
|
-
vehicleNumber: string
|
|
707
|
-
lastPingAt: string
|
|
708
|
-
userId: number
|
|
709
560
|
}
|
|
710
561
|
email_idempotency: {
|
|
711
562
|
id: number
|
|
@@ -716,11 +567,7 @@ export declare interface FrameworkSchema {
|
|
|
716
567
|
recipient: string
|
|
717
568
|
subject: string
|
|
718
569
|
provider: string
|
|
719
|
-
success:
|
|
720
|
-
createdAt: string
|
|
721
|
-
updatedAt: string | null
|
|
722
|
-
idempotencyKey: string
|
|
723
|
-
messageId: string
|
|
570
|
+
success: number
|
|
724
571
|
}
|
|
725
572
|
email_list_subscribers: {
|
|
726
573
|
id: number
|
|
@@ -733,12 +580,6 @@ export declare interface FrameworkSchema {
|
|
|
733
580
|
source: string
|
|
734
581
|
subscribed_at: string
|
|
735
582
|
unsubscribed_at: string
|
|
736
|
-
createdAt: string
|
|
737
|
-
updatedAt: string | null
|
|
738
|
-
emailListId: number
|
|
739
|
-
subscriberId: number
|
|
740
|
-
subscribedAt: string
|
|
741
|
-
unsubscribedAt: string
|
|
742
583
|
}
|
|
743
584
|
email_lists: {
|
|
744
585
|
id: number
|
|
@@ -755,14 +596,6 @@ export declare interface FrameworkSchema {
|
|
|
755
596
|
status: "active" | "inactive" | "archived"
|
|
756
597
|
is_public: number
|
|
757
598
|
double_opt_in: number
|
|
758
|
-
createdAt: string
|
|
759
|
-
updatedAt: string | null
|
|
760
|
-
subscriberCount: number
|
|
761
|
-
activeCount: number
|
|
762
|
-
unsubscribedCount: number
|
|
763
|
-
bouncedCount: number
|
|
764
|
-
isPublic: number
|
|
765
|
-
doubleOptIn: number
|
|
766
599
|
}
|
|
767
600
|
email_suppressions: {
|
|
768
601
|
id: number
|
|
@@ -771,8 +604,6 @@ export declare interface FrameworkSchema {
|
|
|
771
604
|
email: string
|
|
772
605
|
type: "bounce" | "complaint" | "unsubscribe" | "manual"
|
|
773
606
|
reason: string
|
|
774
|
-
createdAt: string
|
|
775
|
-
updatedAt: string | null
|
|
776
607
|
}
|
|
777
608
|
email_webhook_events: {
|
|
778
609
|
id: number
|
|
@@ -781,10 +612,6 @@ export declare interface FrameworkSchema {
|
|
|
781
612
|
provider: "mailgun" | "postmark" | "ses" | "sendgrid"
|
|
782
613
|
event_id: string
|
|
783
614
|
processed_at: string
|
|
784
|
-
createdAt: string
|
|
785
|
-
updatedAt: string | null
|
|
786
|
-
eventId: string
|
|
787
|
-
processedAt: string
|
|
788
615
|
}
|
|
789
616
|
errors: {
|
|
790
617
|
id: number
|
|
@@ -795,9 +622,6 @@ export declare interface FrameworkSchema {
|
|
|
795
622
|
stack: string
|
|
796
623
|
status: number
|
|
797
624
|
additional_info: string
|
|
798
|
-
createdAt: string
|
|
799
|
-
updatedAt: string | null
|
|
800
|
-
additionalInfo: string
|
|
801
625
|
}
|
|
802
626
|
failed_jobs: {
|
|
803
627
|
id: number
|
|
@@ -812,11 +636,6 @@ export declare interface FrameworkSchema {
|
|
|
812
636
|
max_attempts: number
|
|
813
637
|
duration_ms: number
|
|
814
638
|
failed_at: string
|
|
815
|
-
createdAt: string
|
|
816
|
-
updatedAt: string | null
|
|
817
|
-
maxAttempts: number
|
|
818
|
-
durationMs: number
|
|
819
|
-
failedAt: string
|
|
820
639
|
}
|
|
821
640
|
form_fields: {
|
|
822
641
|
id: number
|
|
@@ -825,15 +644,12 @@ export declare interface FrameworkSchema {
|
|
|
825
644
|
name: string
|
|
826
645
|
label: string
|
|
827
646
|
type: "text" | "textarea" | "email" | "phone" | "select" | "checkbox" | "radio" | "date" | "file" | "currency" | "section_break"
|
|
828
|
-
required:
|
|
647
|
+
required: number
|
|
829
648
|
position: number
|
|
830
649
|
width: "full" | "half"
|
|
831
650
|
options: unknown
|
|
832
651
|
conditions: unknown
|
|
833
652
|
form_id: number
|
|
834
|
-
createdAt: string
|
|
835
|
-
updatedAt: string | null
|
|
836
|
-
formId: number
|
|
837
653
|
}
|
|
838
654
|
form_submissions: {
|
|
839
655
|
id: number
|
|
@@ -850,13 +666,6 @@ export declare interface FrameworkSchema {
|
|
|
850
666
|
submitted_at: string
|
|
851
667
|
form_id: number
|
|
852
668
|
site_id: number
|
|
853
|
-
createdAt: string
|
|
854
|
-
updatedAt: string | null
|
|
855
|
-
amountCents: number
|
|
856
|
-
paymentIntentId: string
|
|
857
|
-
submittedAt: string
|
|
858
|
-
formId: number
|
|
859
|
-
siteId: number
|
|
860
669
|
}
|
|
861
670
|
forms: {
|
|
862
671
|
id: number
|
|
@@ -868,9 +677,6 @@ export declare interface FrameworkSchema {
|
|
|
868
677
|
status: "draft" | "active" | "closed"
|
|
869
678
|
settings: unknown
|
|
870
679
|
site_id: number
|
|
871
|
-
createdAt: string
|
|
872
|
-
updatedAt: string | null
|
|
873
|
-
siteId: number
|
|
874
680
|
}
|
|
875
681
|
gift_cards: {
|
|
876
682
|
id: number
|
|
@@ -886,28 +692,43 @@ export declare interface FrameworkSchema {
|
|
|
886
692
|
recipient_email: string
|
|
887
693
|
recipient_name: string
|
|
888
694
|
personal_message: string
|
|
889
|
-
is_digital:
|
|
890
|
-
is_reloadable:
|
|
891
|
-
is_active:
|
|
695
|
+
is_digital: number
|
|
696
|
+
is_reloadable: number
|
|
697
|
+
is_active: number
|
|
892
698
|
expiry_date: string
|
|
893
699
|
last_used_date: string
|
|
894
700
|
template_id: string
|
|
895
701
|
customer_id: number
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
702
|
+
}
|
|
703
|
+
job_batches: {
|
|
704
|
+
id: string
|
|
705
|
+
name: string
|
|
706
|
+
total_jobs: number
|
|
707
|
+
pending_jobs: number
|
|
708
|
+
failed_jobs: number
|
|
709
|
+
failed_job_ids: string
|
|
710
|
+
options: string | null
|
|
711
|
+
cancelled_at: string | null
|
|
712
|
+
created_at: string
|
|
713
|
+
finished_at: string | null
|
|
714
|
+
then_handler: string | null
|
|
715
|
+
catch_handler: string | null
|
|
716
|
+
finally_handler: string | null
|
|
717
|
+
}
|
|
718
|
+
job_idempotency: {
|
|
719
|
+
id: number
|
|
720
|
+
idempotency_key: string
|
|
721
|
+
job_name: string
|
|
722
|
+
queue: string
|
|
723
|
+
dispatched_at: string
|
|
724
|
+
}
|
|
725
|
+
job_quarantine: {
|
|
726
|
+
id: number
|
|
727
|
+
job_name: string
|
|
728
|
+
payload_hash: string
|
|
729
|
+
failure_count: number
|
|
730
|
+
window_start: string
|
|
731
|
+
quarantined_at: string | null
|
|
911
732
|
}
|
|
912
733
|
jobs: {
|
|
913
734
|
id: number
|
|
@@ -918,10 +739,6 @@ export declare interface FrameworkSchema {
|
|
|
918
739
|
attempts: number
|
|
919
740
|
available_at: number
|
|
920
741
|
reserved_at: number
|
|
921
|
-
createdAt: string
|
|
922
|
-
updatedAt: string | null
|
|
923
|
-
availableAt: number
|
|
924
|
-
reservedAt: number
|
|
925
742
|
}
|
|
926
743
|
labels: {
|
|
927
744
|
id: number
|
|
@@ -931,9 +748,6 @@ export declare interface FrameworkSchema {
|
|
|
931
748
|
board_id: number
|
|
932
749
|
name: string
|
|
933
750
|
color: string
|
|
934
|
-
createdAt: string
|
|
935
|
-
updatedAt: string | null
|
|
936
|
-
boardId: number
|
|
937
751
|
}
|
|
938
752
|
license_keys: {
|
|
939
753
|
id: number
|
|
@@ -947,12 +761,6 @@ export declare interface FrameworkSchema {
|
|
|
947
761
|
customer_id: number
|
|
948
762
|
product_id: number
|
|
949
763
|
order_id: number
|
|
950
|
-
createdAt: string
|
|
951
|
-
updatedAt: string | null
|
|
952
|
-
expiryDate: string
|
|
953
|
-
customerId: number
|
|
954
|
-
productId: number
|
|
955
|
-
orderId: number
|
|
956
764
|
}
|
|
957
765
|
logs: {
|
|
958
766
|
id: number
|
|
@@ -965,8 +773,6 @@ export declare interface FrameworkSchema {
|
|
|
965
773
|
project: string
|
|
966
774
|
stacktrace: string
|
|
967
775
|
file: string
|
|
968
|
-
createdAt: string
|
|
969
|
-
updatedAt: string | null
|
|
970
776
|
}
|
|
971
777
|
loyalty_points: {
|
|
972
778
|
id: number
|
|
@@ -979,13 +785,7 @@ export declare interface FrameworkSchema {
|
|
|
979
785
|
source_reference_id: string
|
|
980
786
|
description: string
|
|
981
787
|
expiry_date: string
|
|
982
|
-
is_used:
|
|
983
|
-
createdAt: string
|
|
984
|
-
updatedAt: string | null
|
|
985
|
-
walletId: string
|
|
986
|
-
sourceReferenceId: string
|
|
987
|
-
expiryDate: string
|
|
988
|
-
isUsed: boolean
|
|
788
|
+
is_used: number
|
|
989
789
|
}
|
|
990
790
|
loyalty_rewards: {
|
|
991
791
|
id: number
|
|
@@ -998,20 +798,10 @@ export declare interface FrameworkSchema {
|
|
|
998
798
|
reward_type: string
|
|
999
799
|
discount_percentage: number
|
|
1000
800
|
free_product_id: string
|
|
1001
|
-
is_active:
|
|
801
|
+
is_active: number
|
|
1002
802
|
expiry_days: number
|
|
1003
803
|
image_url: string
|
|
1004
804
|
product_id: number
|
|
1005
|
-
createdAt: string
|
|
1006
|
-
updatedAt: string | null
|
|
1007
|
-
pointsRequired: number
|
|
1008
|
-
rewardType: string
|
|
1009
|
-
discountPercentage: number
|
|
1010
|
-
freeProductId: string
|
|
1011
|
-
isActive: boolean
|
|
1012
|
-
expiryDays: number
|
|
1013
|
-
imageUrl: string
|
|
1014
|
-
productId: number
|
|
1015
805
|
}
|
|
1016
806
|
magic_link_tokens: {
|
|
1017
807
|
id: number
|
|
@@ -1024,13 +814,6 @@ export declare interface FrameworkSchema {
|
|
|
1024
814
|
redirect_to: string
|
|
1025
815
|
site_id: number
|
|
1026
816
|
user_id: number
|
|
1027
|
-
createdAt: string
|
|
1028
|
-
updatedAt: string | null
|
|
1029
|
-
expiresAt: string
|
|
1030
|
-
consumedAt: string
|
|
1031
|
-
redirectTo: string
|
|
1032
|
-
siteId: number
|
|
1033
|
-
userId: number
|
|
1034
817
|
}
|
|
1035
818
|
mail_preferences: {
|
|
1036
819
|
id: number
|
|
@@ -1043,39 +826,21 @@ export declare interface FrameworkSchema {
|
|
|
1043
826
|
theme: "light" | "dark" | "system"
|
|
1044
827
|
language: "en" | "fr" | "de" | "es" | "ja"
|
|
1045
828
|
default_reply_behavior: "reply" | "replyAll"
|
|
1046
|
-
send_and_archive:
|
|
829
|
+
send_and_archive: number
|
|
1047
830
|
auto_advance: "newer" | "older" | "back"
|
|
1048
|
-
desktop_notifications:
|
|
831
|
+
desktop_notifications: number
|
|
1049
832
|
notification_sound: "default" | "subtle" | "none"
|
|
1050
|
-
notification_preview:
|
|
833
|
+
notification_preview: number
|
|
1051
834
|
filters: string
|
|
1052
835
|
blocked_senders: string
|
|
1053
836
|
labels: string
|
|
1054
|
-
load_remote_images:
|
|
1055
|
-
show_external_content:
|
|
1056
|
-
vacation_enabled:
|
|
837
|
+
load_remote_images: number
|
|
838
|
+
show_external_content: number
|
|
839
|
+
vacation_enabled: number
|
|
1057
840
|
vacation_start_date: string
|
|
1058
841
|
vacation_end_date: string
|
|
1059
842
|
vacation_subject: string
|
|
1060
843
|
vacation_message: string
|
|
1061
|
-
createdAt: string
|
|
1062
|
-
updatedAt: string | null
|
|
1063
|
-
accountName: string
|
|
1064
|
-
displayDensity: "comfortable" | "default" | "compact"
|
|
1065
|
-
defaultReplyBehavior: "reply" | "replyAll"
|
|
1066
|
-
sendAndArchive: boolean
|
|
1067
|
-
autoAdvance: "newer" | "older" | "back"
|
|
1068
|
-
desktopNotifications: boolean
|
|
1069
|
-
notificationSound: "default" | "subtle" | "none"
|
|
1070
|
-
notificationPreview: boolean
|
|
1071
|
-
blockedSenders: string
|
|
1072
|
-
loadRemoteImages: boolean
|
|
1073
|
-
showExternalContent: boolean
|
|
1074
|
-
vacationEnabled: boolean
|
|
1075
|
-
vacationStartDate: string
|
|
1076
|
-
vacationEndDate: string
|
|
1077
|
-
vacationSubject: string
|
|
1078
|
-
vacationMessage: string
|
|
1079
844
|
}
|
|
1080
845
|
manufacturers: {
|
|
1081
846
|
id: number
|
|
@@ -1085,9 +850,7 @@ export declare interface FrameworkSchema {
|
|
|
1085
850
|
manufacturer: string
|
|
1086
851
|
description: string
|
|
1087
852
|
country: string
|
|
1088
|
-
featured:
|
|
1089
|
-
createdAt: string
|
|
1090
|
-
updatedAt: string | null
|
|
853
|
+
featured: number
|
|
1091
854
|
}
|
|
1092
855
|
menu_items: {
|
|
1093
856
|
id: number
|
|
@@ -1101,11 +864,6 @@ export declare interface FrameworkSchema {
|
|
|
1101
864
|
visibility: "public" | "auth"
|
|
1102
865
|
menu_id: number
|
|
1103
866
|
page_id: number
|
|
1104
|
-
createdAt: string
|
|
1105
|
-
updatedAt: string | null
|
|
1106
|
-
parentId: number
|
|
1107
|
-
menuId: number
|
|
1108
|
-
pageId: number
|
|
1109
867
|
}
|
|
1110
868
|
menus: {
|
|
1111
869
|
id: number
|
|
@@ -1114,9 +872,6 @@ export declare interface FrameworkSchema {
|
|
|
1114
872
|
handle: string
|
|
1115
873
|
name: string
|
|
1116
874
|
site_id: number
|
|
1117
|
-
createdAt: string
|
|
1118
|
-
updatedAt: string | null
|
|
1119
|
-
siteId: number
|
|
1120
875
|
}
|
|
1121
876
|
notification_deliveries: {
|
|
1122
877
|
id: number
|
|
@@ -1131,10 +886,6 @@ export declare interface FrameworkSchema {
|
|
|
1131
886
|
error: string
|
|
1132
887
|
metadata: string
|
|
1133
888
|
sent_at: string
|
|
1134
|
-
createdAt: string
|
|
1135
|
-
updatedAt: string | null
|
|
1136
|
-
userId: number
|
|
1137
|
-
sentAt: string
|
|
1138
889
|
}
|
|
1139
890
|
notifications: {
|
|
1140
891
|
id: number
|
|
@@ -1145,10 +896,6 @@ export declare interface FrameworkSchema {
|
|
|
1145
896
|
data: string
|
|
1146
897
|
read_at: string
|
|
1147
898
|
user_id: number
|
|
1148
|
-
createdAt: string
|
|
1149
|
-
updatedAt: string | null
|
|
1150
|
-
readAt: string
|
|
1151
|
-
userId: number
|
|
1152
899
|
}
|
|
1153
900
|
order_idempotency: {
|
|
1154
901
|
id: number
|
|
@@ -1156,10 +903,6 @@ export declare interface FrameworkSchema {
|
|
|
1156
903
|
updated_at: string | null
|
|
1157
904
|
idempotency_key: string
|
|
1158
905
|
order_id: number
|
|
1159
|
-
createdAt: string
|
|
1160
|
-
updatedAt: string | null
|
|
1161
|
-
idempotencyKey: string
|
|
1162
|
-
orderId: number
|
|
1163
906
|
}
|
|
1164
907
|
order_items: {
|
|
1165
908
|
id: number
|
|
@@ -1170,11 +913,6 @@ export declare interface FrameworkSchema {
|
|
|
1170
913
|
special_instructions: string
|
|
1171
914
|
order_id: number
|
|
1172
915
|
product_id: number
|
|
1173
|
-
createdAt: string
|
|
1174
|
-
updatedAt: string | null
|
|
1175
|
-
specialInstructions: string
|
|
1176
|
-
orderId: number
|
|
1177
|
-
productId: number
|
|
1178
916
|
}
|
|
1179
917
|
orders: {
|
|
1180
918
|
id: number
|
|
@@ -1198,23 +936,6 @@ export declare interface FrameworkSchema {
|
|
|
1198
936
|
applied_coupon_id: string
|
|
1199
937
|
customer_id: number
|
|
1200
938
|
coupon_id: number
|
|
1201
|
-
createdAt: string
|
|
1202
|
-
updatedAt: string | null
|
|
1203
|
-
totalAmount: number
|
|
1204
|
-
taxAmount: number
|
|
1205
|
-
discountAmount: number
|
|
1206
|
-
deliveryFee: number
|
|
1207
|
-
tipAmount: number
|
|
1208
|
-
orderType: string
|
|
1209
|
-
deliveryAddress: string
|
|
1210
|
-
specialInstructions: string
|
|
1211
|
-
estimatedDeliveryTime: string
|
|
1212
|
-
trackingToken: string
|
|
1213
|
-
deliveryLatitude: number
|
|
1214
|
-
deliveryLongitude: number
|
|
1215
|
-
appliedCouponId: string
|
|
1216
|
-
customerId: number
|
|
1217
|
-
couponId: number
|
|
1218
939
|
}
|
|
1219
940
|
page_revisions: {
|
|
1220
941
|
id: number
|
|
@@ -1227,11 +948,6 @@ export declare interface FrameworkSchema {
|
|
|
1227
948
|
note: string
|
|
1228
949
|
page_id: number
|
|
1229
950
|
author_id: number
|
|
1230
|
-
createdAt: string
|
|
1231
|
-
updatedAt: string | null
|
|
1232
|
-
metaDescription: string
|
|
1233
|
-
pageId: number
|
|
1234
|
-
authorId: number
|
|
1235
951
|
}
|
|
1236
952
|
pages: {
|
|
1237
953
|
id: number
|
|
@@ -1252,14 +968,6 @@ export declare interface FrameworkSchema {
|
|
|
1252
968
|
conversions: number
|
|
1253
969
|
author_id: number
|
|
1254
970
|
site_id: number
|
|
1255
|
-
createdAt: string
|
|
1256
|
-
updatedAt: string | null
|
|
1257
|
-
parentId: number
|
|
1258
|
-
metaDescription: string
|
|
1259
|
-
scheduledAt: string
|
|
1260
|
-
publishedAt: string
|
|
1261
|
-
authorId: number
|
|
1262
|
-
siteId: number
|
|
1263
971
|
}
|
|
1264
972
|
payment_methods: {
|
|
1265
973
|
id: number
|
|
@@ -1271,17 +979,9 @@ export declare interface FrameworkSchema {
|
|
|
1271
979
|
brand: string
|
|
1272
980
|
exp_month: number
|
|
1273
981
|
exp_year: number
|
|
1274
|
-
is_default:
|
|
982
|
+
is_default: number
|
|
1275
983
|
provider_id: string
|
|
1276
984
|
user_id: number
|
|
1277
|
-
createdAt: string
|
|
1278
|
-
updatedAt: string | null
|
|
1279
|
-
lastFour: number
|
|
1280
|
-
expMonth: number
|
|
1281
|
-
expYear: number
|
|
1282
|
-
isDefault: boolean
|
|
1283
|
-
providerId: string
|
|
1284
|
-
userId: number
|
|
1285
985
|
}
|
|
1286
986
|
payment_products: {
|
|
1287
987
|
id: number
|
|
@@ -1295,10 +995,6 @@ export declare interface FrameworkSchema {
|
|
|
1295
995
|
status: string
|
|
1296
996
|
image: string
|
|
1297
997
|
provider_id: string
|
|
1298
|
-
createdAt: string
|
|
1299
|
-
updatedAt: string | null
|
|
1300
|
-
unitPrice: number
|
|
1301
|
-
providerId: string
|
|
1302
998
|
}
|
|
1303
999
|
payment_transactions: {
|
|
1304
1000
|
id: number
|
|
@@ -1312,11 +1008,6 @@ export declare interface FrameworkSchema {
|
|
|
1312
1008
|
provider_id: string
|
|
1313
1009
|
user_id: number
|
|
1314
1010
|
payment_method_id: number
|
|
1315
|
-
createdAt: string
|
|
1316
|
-
updatedAt: string | null
|
|
1317
|
-
providerId: string
|
|
1318
|
-
userId: number
|
|
1319
|
-
paymentMethodId: number
|
|
1320
1011
|
}
|
|
1321
1012
|
payments: {
|
|
1322
1013
|
id: number
|
|
@@ -1337,17 +1028,14 @@ export declare interface FrameworkSchema {
|
|
|
1337
1028
|
notes: string
|
|
1338
1029
|
order_id: number
|
|
1339
1030
|
customer_id: number
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
refundAmount: number
|
|
1349
|
-
orderId: number
|
|
1350
|
-
customerId: number
|
|
1031
|
+
}
|
|
1032
|
+
permissions: {
|
|
1033
|
+
id: number
|
|
1034
|
+
name: string
|
|
1035
|
+
guard_name: string
|
|
1036
|
+
description: string | null
|
|
1037
|
+
created_at: string | null
|
|
1038
|
+
updated_at: string | null
|
|
1351
1039
|
}
|
|
1352
1040
|
pledges: {
|
|
1353
1041
|
id: number
|
|
@@ -1360,11 +1048,6 @@ export declare interface FrameworkSchema {
|
|
|
1360
1048
|
level: string
|
|
1361
1049
|
status: "pending" | "confirmed" | "cancelled"
|
|
1362
1050
|
auction_id: number
|
|
1363
|
-
createdAt: string
|
|
1364
|
-
updatedAt: string | null
|
|
1365
|
-
donorName: string
|
|
1366
|
-
donorEmail: string
|
|
1367
|
-
auctionId: number
|
|
1368
1051
|
}
|
|
1369
1052
|
posts: {
|
|
1370
1053
|
id: number
|
|
@@ -1385,15 +1068,6 @@ export declare interface FrameworkSchema {
|
|
|
1385
1068
|
is_featured: number
|
|
1386
1069
|
author_id: number
|
|
1387
1070
|
site_id: number
|
|
1388
|
-
createdAt: string
|
|
1389
|
-
updatedAt: string | null
|
|
1390
|
-
focusKeyword: string
|
|
1391
|
-
metaDescription: string
|
|
1392
|
-
canonicalUrl: string
|
|
1393
|
-
publishedAt: string
|
|
1394
|
-
isFeatured: number
|
|
1395
|
-
authorId: number
|
|
1396
|
-
siteId: number
|
|
1397
1071
|
}
|
|
1398
1072
|
print_devices: {
|
|
1399
1073
|
id: number
|
|
@@ -1407,11 +1081,6 @@ export declare interface FrameworkSchema {
|
|
|
1407
1081
|
status: "online" | "offline" | "warning"
|
|
1408
1082
|
last_ping: number
|
|
1409
1083
|
print_count: number
|
|
1410
|
-
createdAt: string
|
|
1411
|
-
updatedAt: string | null
|
|
1412
|
-
macAddress: string
|
|
1413
|
-
lastPing: number
|
|
1414
|
-
printCount: number
|
|
1415
1084
|
}
|
|
1416
1085
|
product_units: {
|
|
1417
1086
|
id: number
|
|
@@ -1422,12 +1091,8 @@ export declare interface FrameworkSchema {
|
|
|
1422
1091
|
abbreviation: string
|
|
1423
1092
|
type: string
|
|
1424
1093
|
description: string
|
|
1425
|
-
is_default:
|
|
1094
|
+
is_default: number
|
|
1426
1095
|
product_id: number
|
|
1427
|
-
createdAt: string
|
|
1428
|
-
updatedAt: string | null
|
|
1429
|
-
isDefault: boolean
|
|
1430
|
-
productId: number
|
|
1431
1096
|
}
|
|
1432
1097
|
product_variants: {
|
|
1433
1098
|
id: number
|
|
@@ -1440,9 +1105,6 @@ export declare interface FrameworkSchema {
|
|
|
1440
1105
|
options: string
|
|
1441
1106
|
status: "active" | "inactive" | "draft"
|
|
1442
1107
|
product_id: number
|
|
1443
|
-
createdAt: string
|
|
1444
|
-
updatedAt: string | null
|
|
1445
|
-
productId: number
|
|
1446
1108
|
}
|
|
1447
1109
|
products: {
|
|
1448
1110
|
id: number
|
|
@@ -1453,22 +1115,13 @@ export declare interface FrameworkSchema {
|
|
|
1453
1115
|
description: string
|
|
1454
1116
|
price: number
|
|
1455
1117
|
image_url: string
|
|
1456
|
-
is_available:
|
|
1118
|
+
is_available: number
|
|
1457
1119
|
inventory_count: number
|
|
1458
1120
|
preparation_time: number
|
|
1459
1121
|
allergens: string
|
|
1460
1122
|
nutritional_info: string
|
|
1461
1123
|
category_id: number
|
|
1462
1124
|
manufacturer_id: number
|
|
1463
|
-
createdAt: string
|
|
1464
|
-
updatedAt: string | null
|
|
1465
|
-
imageUrl: string
|
|
1466
|
-
isAvailable: boolean
|
|
1467
|
-
inventoryCount: number
|
|
1468
|
-
preparationTime: number
|
|
1469
|
-
nutritionalInfo: string
|
|
1470
|
-
categoryId: number
|
|
1471
|
-
manufacturerId: number
|
|
1472
1125
|
}
|
|
1473
1126
|
query_logs: {
|
|
1474
1127
|
id: number
|
|
@@ -1496,18 +1149,14 @@ export declare interface FrameworkSchema {
|
|
|
1496
1149
|
missing_indexes: string
|
|
1497
1150
|
explain_plan: string
|
|
1498
1151
|
optimization_suggestions: string
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
indexesUsed: string
|
|
1508
|
-
missingIndexes: string
|
|
1509
|
-
explainPlan: string
|
|
1510
|
-
optimizationSuggestions: string
|
|
1152
|
+
}
|
|
1153
|
+
queue_circuit_state: {
|
|
1154
|
+
queue_name: string
|
|
1155
|
+
success_count: number
|
|
1156
|
+
failure_count: number
|
|
1157
|
+
window_start: string
|
|
1158
|
+
paused_at: string | null
|
|
1159
|
+
resume_at: string | null
|
|
1511
1160
|
}
|
|
1512
1161
|
receipts: {
|
|
1513
1162
|
id: number
|
|
@@ -1523,9 +1172,6 @@ export declare interface FrameworkSchema {
|
|
|
1523
1172
|
duration: number
|
|
1524
1173
|
metadata: string
|
|
1525
1174
|
print_device_id: number
|
|
1526
|
-
createdAt: string
|
|
1527
|
-
updatedAt: string | null
|
|
1528
|
-
printDeviceId: number
|
|
1529
1175
|
}
|
|
1530
1176
|
redirects: {
|
|
1531
1177
|
id: number
|
|
@@ -1536,12 +1182,6 @@ export declare interface FrameworkSchema {
|
|
|
1536
1182
|
status_code: number
|
|
1537
1183
|
source: "slug-change" | "manual"
|
|
1538
1184
|
site_id: number
|
|
1539
|
-
createdAt: string
|
|
1540
|
-
updatedAt: string | null
|
|
1541
|
-
fromPath: string
|
|
1542
|
-
toPath: string
|
|
1543
|
-
statusCode: number
|
|
1544
|
-
siteId: number
|
|
1545
1185
|
}
|
|
1546
1186
|
releases: {
|
|
1547
1187
|
id: number
|
|
@@ -1554,8 +1194,6 @@ export declare interface FrameworkSchema {
|
|
|
1554
1194
|
notes: string
|
|
1555
1195
|
downloads: number
|
|
1556
1196
|
author: string
|
|
1557
|
-
createdAt: string
|
|
1558
|
-
updatedAt: string | null
|
|
1559
1197
|
}
|
|
1560
1198
|
requests: {
|
|
1561
1199
|
id: number
|
|
@@ -1570,15 +1208,6 @@ export declare interface FrameworkSchema {
|
|
|
1570
1208
|
memory_usage: number
|
|
1571
1209
|
user_agent: string
|
|
1572
1210
|
error_message: string
|
|
1573
|
-
createdAt: string
|
|
1574
|
-
updatedAt: string | null
|
|
1575
|
-
deletedAt: string | null
|
|
1576
|
-
statusCode: number
|
|
1577
|
-
durationMs: number
|
|
1578
|
-
ipAddress: string
|
|
1579
|
-
memoryUsage: number
|
|
1580
|
-
userAgent: string
|
|
1581
|
-
errorMessage: string
|
|
1582
1211
|
}
|
|
1583
1212
|
reviews: {
|
|
1584
1213
|
id: number
|
|
@@ -1588,25 +1217,28 @@ export declare interface FrameworkSchema {
|
|
|
1588
1217
|
rating: number
|
|
1589
1218
|
title: string
|
|
1590
1219
|
content: string
|
|
1591
|
-
is_verified_purchase:
|
|
1592
|
-
is_approved:
|
|
1593
|
-
is_featured:
|
|
1220
|
+
is_verified_purchase: number
|
|
1221
|
+
is_approved: number
|
|
1222
|
+
is_featured: number
|
|
1594
1223
|
helpful_votes: number
|
|
1595
1224
|
unhelpful_votes: number
|
|
1596
1225
|
purchase_date: string
|
|
1597
1226
|
images: string
|
|
1598
1227
|
product_id: number
|
|
1599
1228
|
customer_id: number
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1229
|
+
}
|
|
1230
|
+
role_permissions: {
|
|
1231
|
+
role_id: number
|
|
1232
|
+
permission_id: number
|
|
1233
|
+
created_at: string | null
|
|
1234
|
+
}
|
|
1235
|
+
roles: {
|
|
1236
|
+
id: number
|
|
1237
|
+
name: string
|
|
1238
|
+
guard_name: string
|
|
1239
|
+
description: string | null
|
|
1240
|
+
created_at: string | null
|
|
1241
|
+
updated_at: string | null
|
|
1610
1242
|
}
|
|
1611
1243
|
sender_domains: {
|
|
1612
1244
|
id: number
|
|
@@ -1620,12 +1252,6 @@ export declare interface FrameworkSchema {
|
|
|
1620
1252
|
verified_at: string
|
|
1621
1253
|
last_checked_at: string
|
|
1622
1254
|
team_id: number
|
|
1623
|
-
createdAt: string
|
|
1624
|
-
updatedAt: string | null
|
|
1625
|
-
dnsRecords: unknown
|
|
1626
|
-
verifiedAt: string
|
|
1627
|
-
lastCheckedAt: string
|
|
1628
|
-
teamId: number
|
|
1629
1255
|
}
|
|
1630
1256
|
shipping_methods: {
|
|
1631
1257
|
id: number
|
|
@@ -1637,10 +1263,6 @@ export declare interface FrameworkSchema {
|
|
|
1637
1263
|
base_rate: number
|
|
1638
1264
|
free_shipping: number
|
|
1639
1265
|
status: "active" | "inactive" | "draft"
|
|
1640
|
-
createdAt: string
|
|
1641
|
-
updatedAt: string | null
|
|
1642
|
-
baseRate: number
|
|
1643
|
-
freeShipping: number
|
|
1644
1266
|
}
|
|
1645
1267
|
shipping_rates: {
|
|
1646
1268
|
id: number
|
|
@@ -1652,12 +1274,6 @@ export declare interface FrameworkSchema {
|
|
|
1652
1274
|
rate: number
|
|
1653
1275
|
shipping_method_id: number
|
|
1654
1276
|
shipping_zone_id: number
|
|
1655
|
-
createdAt: string
|
|
1656
|
-
updatedAt: string | null
|
|
1657
|
-
weightFrom: number
|
|
1658
|
-
weightTo: number
|
|
1659
|
-
shippingMethodId: number
|
|
1660
|
-
shippingZoneId: number
|
|
1661
1277
|
}
|
|
1662
1278
|
shipping_zones: {
|
|
1663
1279
|
id: number
|
|
@@ -1670,26 +1286,16 @@ export declare interface FrameworkSchema {
|
|
|
1670
1286
|
postal_codes: string
|
|
1671
1287
|
status: "active" | "inactive" | "draft"
|
|
1672
1288
|
shipping_method_id: number
|
|
1673
|
-
createdAt: string
|
|
1674
|
-
updatedAt: string | null
|
|
1675
|
-
postalCodes: string
|
|
1676
|
-
shippingMethodId: number
|
|
1677
1289
|
}
|
|
1678
1290
|
site_domains: {
|
|
1679
1291
|
id: number
|
|
1680
1292
|
created_at: string
|
|
1681
1293
|
updated_at: string | null
|
|
1682
1294
|
domain: string
|
|
1683
|
-
is_primary:
|
|
1295
|
+
is_primary: number
|
|
1684
1296
|
verified_at: string
|
|
1685
1297
|
ssl_status: "pending" | "issued" | "failed"
|
|
1686
1298
|
site_id: number
|
|
1687
|
-
createdAt: string
|
|
1688
|
-
updatedAt: string | null
|
|
1689
|
-
isPrimary: boolean
|
|
1690
|
-
verifiedAt: string
|
|
1691
|
-
sslStatus: "pending" | "issued" | "failed"
|
|
1692
|
-
siteId: number
|
|
1693
1299
|
}
|
|
1694
1300
|
sites: {
|
|
1695
1301
|
id: number
|
|
@@ -1702,9 +1308,6 @@ export declare interface FrameworkSchema {
|
|
|
1702
1308
|
settings: unknown
|
|
1703
1309
|
timezone: string
|
|
1704
1310
|
team_id: number
|
|
1705
|
-
createdAt: string
|
|
1706
|
-
updatedAt: string | null
|
|
1707
|
-
teamId: number
|
|
1708
1311
|
}
|
|
1709
1312
|
sms_opt_outs: {
|
|
1710
1313
|
id: number
|
|
@@ -1713,9 +1316,6 @@ export declare interface FrameworkSchema {
|
|
|
1713
1316
|
phone: string
|
|
1714
1317
|
reason: string
|
|
1715
1318
|
opted_out_at: string
|
|
1716
|
-
createdAt: string
|
|
1717
|
-
updatedAt: string | null
|
|
1718
|
-
optedOutAt: string
|
|
1719
1319
|
}
|
|
1720
1320
|
social_accounts: {
|
|
1721
1321
|
id: number
|
|
@@ -1725,11 +1325,6 @@ export declare interface FrameworkSchema {
|
|
|
1725
1325
|
provider_user_id: string
|
|
1726
1326
|
provider_email: string
|
|
1727
1327
|
user_id: number
|
|
1728
|
-
createdAt: string
|
|
1729
|
-
updatedAt: string | null
|
|
1730
|
-
providerUserId: string
|
|
1731
|
-
providerEmail: string
|
|
1732
|
-
userId: number
|
|
1733
1328
|
}
|
|
1734
1329
|
social_posts: {
|
|
1735
1330
|
id: number
|
|
@@ -1748,13 +1343,6 @@ export declare interface FrameworkSchema {
|
|
|
1748
1343
|
image_url: string
|
|
1749
1344
|
external_id: string
|
|
1750
1345
|
user_id: number
|
|
1751
|
-
createdAt: string
|
|
1752
|
-
updatedAt: string | null
|
|
1753
|
-
scheduledAt: string
|
|
1754
|
-
publishedAt: string
|
|
1755
|
-
imageUrl: string
|
|
1756
|
-
externalId: string
|
|
1757
|
-
userId: number
|
|
1758
1346
|
}
|
|
1759
1347
|
subscriber_emails: {
|
|
1760
1348
|
id: number
|
|
@@ -1764,9 +1352,6 @@ export declare interface FrameworkSchema {
|
|
|
1764
1352
|
email: string
|
|
1765
1353
|
source: string
|
|
1766
1354
|
subscriber_id: number
|
|
1767
|
-
createdAt: string
|
|
1768
|
-
updatedAt: string | null
|
|
1769
|
-
subscriberId: number
|
|
1770
1355
|
}
|
|
1771
1356
|
subscribers: {
|
|
1772
1357
|
id: number
|
|
@@ -1778,10 +1363,6 @@ export declare interface FrameworkSchema {
|
|
|
1778
1363
|
source: string
|
|
1779
1364
|
unsubscribed_at: string
|
|
1780
1365
|
user_id: number
|
|
1781
|
-
createdAt: string
|
|
1782
|
-
updatedAt: string | null
|
|
1783
|
-
unsubscribedAt: string
|
|
1784
|
-
userId: number
|
|
1785
1366
|
}
|
|
1786
1367
|
subscriptions: {
|
|
1787
1368
|
id: number
|
|
@@ -1800,17 +1381,6 @@ export declare interface FrameworkSchema {
|
|
|
1800
1381
|
ends_at: string
|
|
1801
1382
|
last_used_at: string
|
|
1802
1383
|
user_id: number
|
|
1803
|
-
createdAt: string
|
|
1804
|
-
updatedAt: string | null
|
|
1805
|
-
providerId: string
|
|
1806
|
-
providerStatus: string
|
|
1807
|
-
unitPrice: number
|
|
1808
|
-
providerType: string
|
|
1809
|
-
providerPriceId: string
|
|
1810
|
-
trialEndsAt: string
|
|
1811
|
-
endsAt: string
|
|
1812
|
-
lastUsedAt: string
|
|
1813
|
-
userId: number
|
|
1814
1384
|
}
|
|
1815
1385
|
taggable_models: {
|
|
1816
1386
|
id: number
|
|
@@ -1820,6 +1390,17 @@ export declare interface FrameworkSchema {
|
|
|
1820
1390
|
created_at: string
|
|
1821
1391
|
updated_at: string | null
|
|
1822
1392
|
}
|
|
1393
|
+
taggables: {
|
|
1394
|
+
id: number
|
|
1395
|
+
name: string
|
|
1396
|
+
slug: string
|
|
1397
|
+
description: string | null
|
|
1398
|
+
is_active: number
|
|
1399
|
+
taggable_id: number | null
|
|
1400
|
+
taggable_type: string
|
|
1401
|
+
created_at: string
|
|
1402
|
+
updated_at: string | null
|
|
1403
|
+
}
|
|
1823
1404
|
tags: {
|
|
1824
1405
|
id: number
|
|
1825
1406
|
uuid: string
|
|
@@ -1829,8 +1410,6 @@ export declare interface FrameworkSchema {
|
|
|
1829
1410
|
slug: string
|
|
1830
1411
|
description: string
|
|
1831
1412
|
color: string
|
|
1832
|
-
createdAt: string
|
|
1833
|
-
updatedAt: string | null
|
|
1834
1413
|
}
|
|
1835
1414
|
tax_rates: {
|
|
1836
1415
|
id: number
|
|
@@ -1843,12 +1422,9 @@ export declare interface FrameworkSchema {
|
|
|
1843
1422
|
country: string
|
|
1844
1423
|
region: "North America" | "South America" | "Europe" | "Asia" | "Africa" | "Oceania" | "Antarctica"
|
|
1845
1424
|
status: "active" | "inactive"
|
|
1846
|
-
is_default:
|
|
1425
|
+
is_default: number
|
|
1847
1426
|
code: string
|
|
1848
|
-
exemptible:
|
|
1849
|
-
createdAt: string
|
|
1850
|
-
updatedAt: string | null
|
|
1851
|
-
isDefault: boolean
|
|
1427
|
+
exemptible: number
|
|
1852
1428
|
}
|
|
1853
1429
|
team_invitations: {
|
|
1854
1430
|
id: number
|
|
@@ -1868,18 +1444,6 @@ export declare interface FrameworkSchema {
|
|
|
1868
1444
|
expires_at: string
|
|
1869
1445
|
delivered_at: string
|
|
1870
1446
|
accepted_at: string
|
|
1871
|
-
createdAt: string
|
|
1872
|
-
updatedAt: string | null
|
|
1873
|
-
teamId: number
|
|
1874
|
-
tokenHash: string
|
|
1875
|
-
pendingKey: string
|
|
1876
|
-
invitedByUserId: number
|
|
1877
|
-
acceptedByUserId: number
|
|
1878
|
-
deliveryStatus: "pending" | "sent" | "failed"
|
|
1879
|
-
deliveryError: string
|
|
1880
|
-
expiresAt: string
|
|
1881
|
-
deliveredAt: string
|
|
1882
|
-
acceptedAt: string
|
|
1883
1447
|
}
|
|
1884
1448
|
team_members: {
|
|
1885
1449
|
id: number
|
|
@@ -1890,10 +1454,6 @@ export declare interface FrameworkSchema {
|
|
|
1890
1454
|
user_id: number
|
|
1891
1455
|
role: "owner" | "admin" | "member" | "viewer"
|
|
1892
1456
|
status: "active" | "suspended"
|
|
1893
|
-
createdAt: string
|
|
1894
|
-
updatedAt: string | null
|
|
1895
|
-
teamId: number
|
|
1896
|
-
userId: number
|
|
1897
1457
|
}
|
|
1898
1458
|
teams: {
|
|
1899
1459
|
id: number
|
|
@@ -1904,9 +1464,6 @@ export declare interface FrameworkSchema {
|
|
|
1904
1464
|
description: string
|
|
1905
1465
|
member_count: number
|
|
1906
1466
|
status: string
|
|
1907
|
-
createdAt: string
|
|
1908
|
-
updatedAt: string | null
|
|
1909
|
-
memberCount: number
|
|
1910
1467
|
}
|
|
1911
1468
|
transactions: {
|
|
1912
1469
|
id: number
|
|
@@ -1921,14 +1478,6 @@ export declare interface FrameworkSchema {
|
|
|
1921
1478
|
loyalty_points_earned: number
|
|
1922
1479
|
loyalty_points_redeemed: number
|
|
1923
1480
|
order_id: number
|
|
1924
|
-
createdAt: string
|
|
1925
|
-
updatedAt: string | null
|
|
1926
|
-
paymentMethod: string
|
|
1927
|
-
paymentDetails: string
|
|
1928
|
-
transactionReference: string
|
|
1929
|
-
loyaltyPointsEarned: number
|
|
1930
|
-
loyaltyPointsRedeemed: number
|
|
1931
|
-
orderId: number
|
|
1932
1481
|
}
|
|
1933
1482
|
usage_events: {
|
|
1934
1483
|
id: number
|
|
@@ -1941,11 +1490,16 @@ export declare interface FrameworkSchema {
|
|
|
1941
1490
|
metadata: unknown
|
|
1942
1491
|
occurred_at: string
|
|
1943
1492
|
team_id: number
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1493
|
+
}
|
|
1494
|
+
user_permissions: {
|
|
1495
|
+
user_id: number
|
|
1496
|
+
permission_id: number
|
|
1497
|
+
created_at: string | null
|
|
1498
|
+
}
|
|
1499
|
+
user_roles: {
|
|
1500
|
+
user_id: number
|
|
1501
|
+
role_id: number
|
|
1502
|
+
created_at: string | null
|
|
1949
1503
|
}
|
|
1950
1504
|
users: {
|
|
1951
1505
|
id: number
|
|
@@ -1955,21 +1509,13 @@ export declare interface FrameworkSchema {
|
|
|
1955
1509
|
email_verified_at: string | null
|
|
1956
1510
|
password_changed_at: string | null
|
|
1957
1511
|
two_factor_secret: string | null
|
|
1958
|
-
two_factor_enabled:
|
|
1512
|
+
two_factor_enabled: number | null
|
|
1959
1513
|
two_factor_last_used_step: number | null
|
|
1960
1514
|
stripe_id: string | null
|
|
1961
1515
|
name: string
|
|
1962
1516
|
email: string
|
|
1963
1517
|
password: string
|
|
1964
1518
|
avatar: string
|
|
1965
|
-
createdAt: string
|
|
1966
|
-
updatedAt: string | null
|
|
1967
|
-
emailVerifiedAt: string | null
|
|
1968
|
-
passwordChangedAt: string | null
|
|
1969
|
-
twoFactorSecret: string | null
|
|
1970
|
-
twoFactorEnabled: boolean | null
|
|
1971
|
-
twoFactorLastUsedStep: number | null
|
|
1972
|
-
stripeId: string | null
|
|
1973
1519
|
}
|
|
1974
1520
|
waitlist_products: {
|
|
1975
1521
|
id: number
|
|
@@ -1989,14 +1535,6 @@ export declare interface FrameworkSchema {
|
|
|
1989
1535
|
cancelled_at: string
|
|
1990
1536
|
product_id: number
|
|
1991
1537
|
customer_id: number
|
|
1992
|
-
createdAt: string
|
|
1993
|
-
updatedAt: string | null
|
|
1994
|
-
notificationPreference: "sms" | "email" | "both"
|
|
1995
|
-
notifiedAt: string
|
|
1996
|
-
purchasedAt: string
|
|
1997
|
-
cancelledAt: string
|
|
1998
|
-
productId: number
|
|
1999
|
-
customerId: number
|
|
2000
1538
|
}
|
|
2001
1539
|
waitlist_restaurants: {
|
|
2002
1540
|
id: number
|
|
@@ -2017,18 +1555,6 @@ export declare interface FrameworkSchema {
|
|
|
2017
1555
|
no_show_at: string
|
|
2018
1556
|
cancelled_at: string
|
|
2019
1557
|
customer_id: number
|
|
2020
|
-
createdAt: string
|
|
2021
|
-
updatedAt: string | null
|
|
2022
|
-
partySize: number
|
|
2023
|
-
checkInTime: string
|
|
2024
|
-
tablePreference: "indoor" | "bar" | "booth" | "no_preference"
|
|
2025
|
-
quotedWaitTime: number
|
|
2026
|
-
actualWaitTime: number
|
|
2027
|
-
queuePosition: number
|
|
2028
|
-
seatedAt: string
|
|
2029
|
-
noShowAt: string
|
|
2030
|
-
cancelledAt: string
|
|
2031
|
-
customerId: number
|
|
2032
1558
|
}
|
|
2033
1559
|
websockets: {
|
|
2034
1560
|
id: number
|
|
@@ -2038,7 +1564,5 @@ export declare interface FrameworkSchema {
|
|
|
2038
1564
|
socket: string
|
|
2039
1565
|
details: string
|
|
2040
1566
|
time: number
|
|
2041
|
-
createdAt: string
|
|
2042
|
-
updatedAt: string | null
|
|
2043
1567
|
}
|
|
2044
1568
|
}
|