@adventurelabs/scout-core 1.0.12 → 1.0.13
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/supabase/server.d.ts +20 -20
- package/dist/types/supabase.d.ts +20 -20
- package/package.json +1 -1
|
@@ -472,6 +472,21 @@ export declare function newServerClient(): Promise<import("@supabase/supabase-js
|
|
|
472
472
|
};
|
|
473
473
|
Returns: Database["public"]["CompositeTypes"]["device_pretty_location"][];
|
|
474
474
|
};
|
|
475
|
+
get_events_and_tags_for_device: {
|
|
476
|
+
Args: {
|
|
477
|
+
device_id_caller: number;
|
|
478
|
+
limit_caller: number;
|
|
479
|
+
};
|
|
480
|
+
Returns: Database["public"]["CompositeTypes"]["event_and_tags_pretty_location"][];
|
|
481
|
+
};
|
|
482
|
+
get_events_and_tags_for_herd: {
|
|
483
|
+
Args: {
|
|
484
|
+
herd_id_caller: number;
|
|
485
|
+
limit_caller: number;
|
|
486
|
+
offset_caller: number;
|
|
487
|
+
};
|
|
488
|
+
Returns: Database["public"]["CompositeTypes"]["event_and_tags_pretty_location"][];
|
|
489
|
+
};
|
|
475
490
|
get_events_for_herd: {
|
|
476
491
|
Args: {
|
|
477
492
|
herd_id_in: number;
|
|
@@ -492,34 +507,19 @@ export declare function newServerClient(): Promise<import("@supabase/supabase-js
|
|
|
492
507
|
timestamp_observation: string;
|
|
493
508
|
}[];
|
|
494
509
|
};
|
|
495
|
-
|
|
510
|
+
get_events_with_tags_by_id: {
|
|
496
511
|
Args: {
|
|
497
|
-
|
|
498
|
-
offset_caller: number;
|
|
499
|
-
limit_caller: number;
|
|
512
|
+
event_id_caller: number;
|
|
500
513
|
};
|
|
501
|
-
Returns: Database["public"]["CompositeTypes"]["
|
|
514
|
+
Returns: Database["public"]["CompositeTypes"]["event_and_tags_pretty_location"];
|
|
502
515
|
};
|
|
503
|
-
|
|
516
|
+
get_events_with_tags_for_herd: {
|
|
504
517
|
Args: {
|
|
505
518
|
herd_id_caller: number;
|
|
506
|
-
limit_caller: number;
|
|
507
519
|
offset_caller: number;
|
|
508
|
-
};
|
|
509
|
-
Returns: Database["public"]["CompositeTypes"]["event_and_tags_pretty_location"][];
|
|
510
|
-
};
|
|
511
|
-
get_events_and_tags_for_device: {
|
|
512
|
-
Args: {
|
|
513
|
-
device_id_caller: number;
|
|
514
520
|
limit_caller: number;
|
|
515
521
|
};
|
|
516
|
-
Returns: Database["public"]["CompositeTypes"]["
|
|
517
|
-
};
|
|
518
|
-
get_events_with_tags_by_id: {
|
|
519
|
-
Args: {
|
|
520
|
-
event_id_caller: number;
|
|
521
|
-
};
|
|
522
|
-
Returns: Database["public"]["CompositeTypes"]["event_and_tags_pretty_location"];
|
|
522
|
+
Returns: Database["public"]["CompositeTypes"]["event_with_tags"][];
|
|
523
523
|
};
|
|
524
524
|
get_total_events_for_herd: {
|
|
525
525
|
Args: {
|
package/dist/types/supabase.d.ts
CHANGED
|
@@ -525,6 +525,21 @@ export type Database = {
|
|
|
525
525
|
};
|
|
526
526
|
Returns: Database["public"]["CompositeTypes"]["device_pretty_location"][];
|
|
527
527
|
};
|
|
528
|
+
get_events_and_tags_for_device: {
|
|
529
|
+
Args: {
|
|
530
|
+
device_id_caller: number;
|
|
531
|
+
limit_caller: number;
|
|
532
|
+
};
|
|
533
|
+
Returns: Database["public"]["CompositeTypes"]["event_and_tags_pretty_location"][];
|
|
534
|
+
};
|
|
535
|
+
get_events_and_tags_for_herd: {
|
|
536
|
+
Args: {
|
|
537
|
+
herd_id_caller: number;
|
|
538
|
+
limit_caller: number;
|
|
539
|
+
offset_caller: number;
|
|
540
|
+
};
|
|
541
|
+
Returns: Database["public"]["CompositeTypes"]["event_and_tags_pretty_location"][];
|
|
542
|
+
};
|
|
528
543
|
get_events_for_herd: {
|
|
529
544
|
Args: {
|
|
530
545
|
herd_id_in: number;
|
|
@@ -545,34 +560,19 @@ export type Database = {
|
|
|
545
560
|
timestamp_observation: string;
|
|
546
561
|
}[];
|
|
547
562
|
};
|
|
548
|
-
|
|
563
|
+
get_events_with_tags_by_id: {
|
|
549
564
|
Args: {
|
|
550
|
-
|
|
551
|
-
offset_caller: number;
|
|
552
|
-
limit_caller: number;
|
|
565
|
+
event_id_caller: number;
|
|
553
566
|
};
|
|
554
|
-
Returns: Database["public"]["CompositeTypes"]["
|
|
567
|
+
Returns: Database["public"]["CompositeTypes"]["event_and_tags_pretty_location"];
|
|
555
568
|
};
|
|
556
|
-
|
|
569
|
+
get_events_with_tags_for_herd: {
|
|
557
570
|
Args: {
|
|
558
571
|
herd_id_caller: number;
|
|
559
|
-
limit_caller: number;
|
|
560
572
|
offset_caller: number;
|
|
561
|
-
};
|
|
562
|
-
Returns: Database["public"]["CompositeTypes"]["event_and_tags_pretty_location"][];
|
|
563
|
-
};
|
|
564
|
-
get_events_and_tags_for_device: {
|
|
565
|
-
Args: {
|
|
566
|
-
device_id_caller: number;
|
|
567
573
|
limit_caller: number;
|
|
568
574
|
};
|
|
569
|
-
Returns: Database["public"]["CompositeTypes"]["
|
|
570
|
-
};
|
|
571
|
-
get_events_with_tags_by_id: {
|
|
572
|
-
Args: {
|
|
573
|
-
event_id_caller: number;
|
|
574
|
-
};
|
|
575
|
-
Returns: Database["public"]["CompositeTypes"]["event_and_tags_pretty_location"];
|
|
575
|
+
Returns: Database["public"]["CompositeTypes"]["event_with_tags"][];
|
|
576
576
|
};
|
|
577
577
|
get_total_events_for_herd: {
|
|
578
578
|
Args: {
|