@adventurelabs/scout-core 1.4.74 → 1.4.76
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/helpers/cache.d.ts +10 -0
- package/dist/helpers/cache.js +86 -2
- package/dist/helpers/client_abilities_jwt_keys.d.ts +10 -0
- package/dist/helpers/client_abilities_jwt_keys.js +25 -0
- package/dist/helpers/client_abilities_token.d.ts +7 -0
- package/dist/helpers/client_abilities_token.js +53 -0
- package/dist/helpers/client_abilities_token_server.d.ts +7 -0
- package/dist/helpers/client_abilities_token_server.js +7 -0
- package/dist/helpers/herd_roles.d.ts +14 -0
- package/dist/helpers/herd_roles.js +134 -0
- package/dist/helpers/index.d.ts +4 -0
- package/dist/helpers/index.js +4 -0
- package/dist/helpers/invitations.d.ts +2 -2
- package/dist/helpers/invitations.js +2 -2
- package/dist/helpers/pubsub_token.d.ts +3 -1
- package/dist/helpers/pubsub_token.js +41 -0
- package/dist/helpers/ui.d.ts +3 -2
- package/dist/helpers/ui.js +6 -1
- package/dist/helpers/users.d.ts +2 -2
- package/dist/helpers/users.js +27 -16
- package/dist/index.d.ts +7 -1
- package/dist/index.js +6 -0
- package/dist/providers/ScoutRefreshProvider.d.ts +28 -3532
- package/dist/providers/ScoutRefreshProvider.js +191 -36
- package/dist/types/client_abilities_token.d.ts +19 -0
- package/dist/types/client_abilities_token.js +16 -0
- package/dist/types/db.d.ts +11 -2
- package/dist/types/jwt_mint.d.ts +10 -0
- package/dist/types/jwt_mint.js +26 -0
- package/dist/types/pubsub_token.d.ts +5 -0
- package/dist/types/pubsub_token.js +1 -1
- package/dist/types/supabase.d.ts +191 -38
- package/dist/types/supabase.js +0 -1
- package/package.json +12 -9
package/dist/types/supabase.d.ts
CHANGED
|
@@ -7,6 +7,30 @@ export type Database = {
|
|
|
7
7
|
};
|
|
8
8
|
public: {
|
|
9
9
|
Tables: {
|
|
10
|
+
abilities: {
|
|
11
|
+
Row: {
|
|
12
|
+
description: string | null;
|
|
13
|
+
id: number;
|
|
14
|
+
inserted_at: string;
|
|
15
|
+
is_system: boolean;
|
|
16
|
+
key: string;
|
|
17
|
+
};
|
|
18
|
+
Insert: {
|
|
19
|
+
description?: string | null;
|
|
20
|
+
id?: number;
|
|
21
|
+
inserted_at?: string;
|
|
22
|
+
is_system?: boolean;
|
|
23
|
+
key: string;
|
|
24
|
+
};
|
|
25
|
+
Update: {
|
|
26
|
+
description?: string | null;
|
|
27
|
+
id?: number;
|
|
28
|
+
inserted_at?: string;
|
|
29
|
+
is_system?: boolean;
|
|
30
|
+
key?: string;
|
|
31
|
+
};
|
|
32
|
+
Relationships: [];
|
|
33
|
+
};
|
|
10
34
|
actions: {
|
|
11
35
|
Row: {
|
|
12
36
|
id: number;
|
|
@@ -331,6 +355,27 @@ export type Database = {
|
|
|
331
355
|
}
|
|
332
356
|
];
|
|
333
357
|
};
|
|
358
|
+
client_abilities_jwt_public_keys: {
|
|
359
|
+
Row: {
|
|
360
|
+
created_at: string;
|
|
361
|
+
kid: string;
|
|
362
|
+
public_jwk: Json;
|
|
363
|
+
revoked_at: string | null;
|
|
364
|
+
};
|
|
365
|
+
Insert: {
|
|
366
|
+
created_at?: string;
|
|
367
|
+
kid: string;
|
|
368
|
+
public_jwk: Json;
|
|
369
|
+
revoked_at?: string | null;
|
|
370
|
+
};
|
|
371
|
+
Update: {
|
|
372
|
+
created_at?: string;
|
|
373
|
+
kid?: string;
|
|
374
|
+
public_jwk?: Json;
|
|
375
|
+
revoked_at?: string | null;
|
|
376
|
+
};
|
|
377
|
+
Relationships: [];
|
|
378
|
+
};
|
|
334
379
|
connectivity: {
|
|
335
380
|
Row: {
|
|
336
381
|
altitude: number;
|
|
@@ -840,9 +885,9 @@ export type Database = {
|
|
|
840
885
|
email: string;
|
|
841
886
|
expires_at: string | null;
|
|
842
887
|
herd_id: number;
|
|
888
|
+
herd_role_id: number;
|
|
843
889
|
id: number;
|
|
844
890
|
invited_by: string;
|
|
845
|
-
role: Database["public"]["Enums"]["role"];
|
|
846
891
|
status: Database["public"]["Enums"]["herd_invitation_status"];
|
|
847
892
|
};
|
|
848
893
|
Insert: {
|
|
@@ -851,9 +896,9 @@ export type Database = {
|
|
|
851
896
|
email: string;
|
|
852
897
|
expires_at?: string | null;
|
|
853
898
|
herd_id: number;
|
|
899
|
+
herd_role_id: number;
|
|
854
900
|
id?: number;
|
|
855
901
|
invited_by: string;
|
|
856
|
-
role: Database["public"]["Enums"]["role"];
|
|
857
902
|
status?: Database["public"]["Enums"]["herd_invitation_status"];
|
|
858
903
|
};
|
|
859
904
|
Update: {
|
|
@@ -862,9 +907,9 @@ export type Database = {
|
|
|
862
907
|
email?: string;
|
|
863
908
|
expires_at?: string | null;
|
|
864
909
|
herd_id?: number;
|
|
910
|
+
herd_role_id?: number;
|
|
865
911
|
id?: number;
|
|
866
912
|
invited_by?: string;
|
|
867
|
-
role?: Database["public"]["Enums"]["role"];
|
|
868
913
|
status?: Database["public"]["Enums"]["herd_invitation_status"];
|
|
869
914
|
};
|
|
870
915
|
Relationships: [
|
|
@@ -875,6 +920,13 @@ export type Database = {
|
|
|
875
920
|
referencedRelation: "herds";
|
|
876
921
|
referencedColumns: ["id"];
|
|
877
922
|
},
|
|
923
|
+
{
|
|
924
|
+
foreignKeyName: "herd_invitations_herd_role_id_fkey";
|
|
925
|
+
columns: ["herd_role_id"];
|
|
926
|
+
isOneToOne: false;
|
|
927
|
+
referencedRelation: "herd_roles";
|
|
928
|
+
referencedColumns: ["id"];
|
|
929
|
+
},
|
|
878
930
|
{
|
|
879
931
|
foreignKeyName: "herd_invitations_invited_by_fkey";
|
|
880
932
|
columns: ["invited_by"];
|
|
@@ -884,6 +936,74 @@ export type Database = {
|
|
|
884
936
|
}
|
|
885
937
|
];
|
|
886
938
|
};
|
|
939
|
+
herd_role_abilities: {
|
|
940
|
+
Row: {
|
|
941
|
+
ability_id: number;
|
|
942
|
+
herd_role_id: number;
|
|
943
|
+
id: number;
|
|
944
|
+
};
|
|
945
|
+
Insert: {
|
|
946
|
+
ability_id: number;
|
|
947
|
+
herd_role_id: number;
|
|
948
|
+
id?: number;
|
|
949
|
+
};
|
|
950
|
+
Update: {
|
|
951
|
+
ability_id?: number;
|
|
952
|
+
herd_role_id?: number;
|
|
953
|
+
id?: number;
|
|
954
|
+
};
|
|
955
|
+
Relationships: [
|
|
956
|
+
{
|
|
957
|
+
foreignKeyName: "herd_role_abilities_ability_id_fkey";
|
|
958
|
+
columns: ["ability_id"];
|
|
959
|
+
isOneToOne: false;
|
|
960
|
+
referencedRelation: "abilities";
|
|
961
|
+
referencedColumns: ["id"];
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
foreignKeyName: "herd_role_abilities_herd_role_id_fkey";
|
|
965
|
+
columns: ["herd_role_id"];
|
|
966
|
+
isOneToOne: false;
|
|
967
|
+
referencedRelation: "herd_roles";
|
|
968
|
+
referencedColumns: ["id"];
|
|
969
|
+
}
|
|
970
|
+
];
|
|
971
|
+
};
|
|
972
|
+
herd_roles: {
|
|
973
|
+
Row: {
|
|
974
|
+
herd_id: number;
|
|
975
|
+
id: number;
|
|
976
|
+
inserted_at: string;
|
|
977
|
+
is_system: boolean;
|
|
978
|
+
name: string;
|
|
979
|
+
system_name: string;
|
|
980
|
+
};
|
|
981
|
+
Insert: {
|
|
982
|
+
herd_id: number;
|
|
983
|
+
id?: number;
|
|
984
|
+
inserted_at?: string;
|
|
985
|
+
is_system?: boolean;
|
|
986
|
+
name: string;
|
|
987
|
+
system_name: string;
|
|
988
|
+
};
|
|
989
|
+
Update: {
|
|
990
|
+
herd_id?: number;
|
|
991
|
+
id?: number;
|
|
992
|
+
inserted_at?: string;
|
|
993
|
+
is_system?: boolean;
|
|
994
|
+
name?: string;
|
|
995
|
+
system_name?: string;
|
|
996
|
+
};
|
|
997
|
+
Relationships: [
|
|
998
|
+
{
|
|
999
|
+
foreignKeyName: "herd_roles_herd_id_fkey";
|
|
1000
|
+
columns: ["herd_id"];
|
|
1001
|
+
isOneToOne: false;
|
|
1002
|
+
referencedRelation: "herds";
|
|
1003
|
+
referencedColumns: ["id"];
|
|
1004
|
+
}
|
|
1005
|
+
];
|
|
1006
|
+
};
|
|
887
1007
|
herds: {
|
|
888
1008
|
Row: {
|
|
889
1009
|
auto_delete_media_with_humans: boolean | null;
|
|
@@ -1685,35 +1805,35 @@ export type Database = {
|
|
|
1685
1805
|
users_roles_per_herd: {
|
|
1686
1806
|
Row: {
|
|
1687
1807
|
herd_id: number;
|
|
1808
|
+
herd_role_id: number;
|
|
1688
1809
|
id: number;
|
|
1689
1810
|
inserted_at: string;
|
|
1690
1811
|
lifecycle: Database["public"]["Enums"]["entity_lifecycle"];
|
|
1691
1812
|
lifecycle_changed_at: string;
|
|
1692
1813
|
lifecycle_changed_by: string | null;
|
|
1693
1814
|
lifecycle_reason: string | null;
|
|
1694
|
-
role: Database["public"]["Enums"]["role"];
|
|
1695
1815
|
user_id: string;
|
|
1696
1816
|
};
|
|
1697
1817
|
Insert: {
|
|
1698
1818
|
herd_id: number;
|
|
1819
|
+
herd_role_id: number;
|
|
1699
1820
|
id?: number;
|
|
1700
1821
|
inserted_at?: string;
|
|
1701
1822
|
lifecycle?: Database["public"]["Enums"]["entity_lifecycle"];
|
|
1702
1823
|
lifecycle_changed_at?: string;
|
|
1703
1824
|
lifecycle_changed_by?: string | null;
|
|
1704
1825
|
lifecycle_reason?: string | null;
|
|
1705
|
-
role: Database["public"]["Enums"]["role"];
|
|
1706
1826
|
user_id: string;
|
|
1707
1827
|
};
|
|
1708
1828
|
Update: {
|
|
1709
1829
|
herd_id?: number;
|
|
1830
|
+
herd_role_id?: number;
|
|
1710
1831
|
id?: number;
|
|
1711
1832
|
inserted_at?: string;
|
|
1712
1833
|
lifecycle?: Database["public"]["Enums"]["entity_lifecycle"];
|
|
1713
1834
|
lifecycle_changed_at?: string;
|
|
1714
1835
|
lifecycle_changed_by?: string | null;
|
|
1715
1836
|
lifecycle_reason?: string | null;
|
|
1716
|
-
role?: Database["public"]["Enums"]["role"];
|
|
1717
1837
|
user_id?: string;
|
|
1718
1838
|
};
|
|
1719
1839
|
Relationships: [
|
|
@@ -1724,6 +1844,13 @@ export type Database = {
|
|
|
1724
1844
|
referencedRelation: "herds";
|
|
1725
1845
|
referencedColumns: ["id"];
|
|
1726
1846
|
},
|
|
1847
|
+
{
|
|
1848
|
+
foreignKeyName: "users_roles_per_herd_herd_role_id_fkey";
|
|
1849
|
+
columns: ["herd_role_id"];
|
|
1850
|
+
isOneToOne: false;
|
|
1851
|
+
referencedRelation: "herd_roles";
|
|
1852
|
+
referencedColumns: ["id"];
|
|
1853
|
+
},
|
|
1727
1854
|
{
|
|
1728
1855
|
foreignKeyName: "users_roles_per_herd_lifecycle_changed_by_fkey";
|
|
1729
1856
|
columns: ["lifecycle_changed_by"];
|
|
@@ -1941,9 +2068,9 @@ export type Database = {
|
|
|
1941
2068
|
email: string;
|
|
1942
2069
|
expires_at: string | null;
|
|
1943
2070
|
herd_id: number;
|
|
2071
|
+
herd_role_id: number;
|
|
1944
2072
|
id: number;
|
|
1945
2073
|
invited_by: string;
|
|
1946
|
-
role: Database["public"]["Enums"]["role"];
|
|
1947
2074
|
status: Database["public"]["Enums"]["herd_invitation_status"];
|
|
1948
2075
|
}[];
|
|
1949
2076
|
SetofOptions: {
|
|
@@ -2008,7 +2135,7 @@ export type Database = {
|
|
|
2008
2135
|
p_email: string;
|
|
2009
2136
|
p_expires_at?: string;
|
|
2010
2137
|
p_herd_id: number;
|
|
2011
|
-
|
|
2138
|
+
p_herd_role_id: number;
|
|
2012
2139
|
};
|
|
2013
2140
|
Returns: {
|
|
2014
2141
|
accepted_at: string | null;
|
|
@@ -2016,9 +2143,9 @@ export type Database = {
|
|
|
2016
2143
|
email: string;
|
|
2017
2144
|
expires_at: string | null;
|
|
2018
2145
|
herd_id: number;
|
|
2146
|
+
herd_role_id: number;
|
|
2019
2147
|
id: number;
|
|
2020
2148
|
invited_by: string;
|
|
2021
|
-
role: Database["public"]["Enums"]["role"];
|
|
2022
2149
|
status: Database["public"]["Enums"]["herd_invitation_status"];
|
|
2023
2150
|
};
|
|
2024
2151
|
SetofOptions: {
|
|
@@ -2413,6 +2540,14 @@ export type Database = {
|
|
|
2413
2540
|
isSetofReturn: true;
|
|
2414
2541
|
};
|
|
2415
2542
|
};
|
|
2543
|
+
get_client_abilities_jwt_public_keys: {
|
|
2544
|
+
Args: never;
|
|
2545
|
+
Returns: Json;
|
|
2546
|
+
};
|
|
2547
|
+
get_client_abilities_token_claims: {
|
|
2548
|
+
Args: never;
|
|
2549
|
+
Returns: Json;
|
|
2550
|
+
};
|
|
2416
2551
|
get_connectivity_for_artifact: {
|
|
2417
2552
|
Args: {
|
|
2418
2553
|
artifact_id_caller: number;
|
|
@@ -3105,36 +3240,13 @@ export type Database = {
|
|
|
3105
3240
|
};
|
|
3106
3241
|
Returns: {
|
|
3107
3242
|
herd_id: number;
|
|
3243
|
+
herd_role_id: number;
|
|
3108
3244
|
id: number;
|
|
3109
3245
|
inserted_at: string;
|
|
3110
3246
|
lifecycle: Database["public"]["Enums"]["entity_lifecycle"];
|
|
3111
3247
|
lifecycle_changed_at: string;
|
|
3112
3248
|
lifecycle_changed_by: string | null;
|
|
3113
3249
|
lifecycle_reason: string | null;
|
|
3114
|
-
role: Database["public"]["Enums"]["role"];
|
|
3115
|
-
user_id: string;
|
|
3116
|
-
};
|
|
3117
|
-
SetofOptions: {
|
|
3118
|
-
from: "*";
|
|
3119
|
-
to: "users_roles_per_herd";
|
|
3120
|
-
isOneToOne: true;
|
|
3121
|
-
isSetofReturn: false;
|
|
3122
|
-
};
|
|
3123
|
-
};
|
|
3124
|
-
remove_user_from_herd_for_admin: {
|
|
3125
|
-
Args: {
|
|
3126
|
-
p_herd_id: number;
|
|
3127
|
-
p_user_id: string;
|
|
3128
|
-
};
|
|
3129
|
-
Returns: {
|
|
3130
|
-
herd_id: number;
|
|
3131
|
-
id: number;
|
|
3132
|
-
inserted_at: string;
|
|
3133
|
-
lifecycle: Database["public"]["Enums"]["entity_lifecycle"];
|
|
3134
|
-
lifecycle_changed_at: string;
|
|
3135
|
-
lifecycle_changed_by: string | null;
|
|
3136
|
-
lifecycle_reason: string | null;
|
|
3137
|
-
role: Database["public"]["Enums"]["role"];
|
|
3138
3250
|
user_id: string;
|
|
3139
3251
|
};
|
|
3140
3252
|
SetofOptions: {
|
|
@@ -3255,9 +3367,9 @@ export type Database = {
|
|
|
3255
3367
|
email: string;
|
|
3256
3368
|
expires_at: string | null;
|
|
3257
3369
|
herd_id: number;
|
|
3370
|
+
herd_role_id: number;
|
|
3258
3371
|
id: number;
|
|
3259
3372
|
invited_by: string;
|
|
3260
|
-
role: Database["public"]["Enums"]["role"];
|
|
3261
3373
|
status: Database["public"]["Enums"]["herd_invitation_status"];
|
|
3262
3374
|
}[];
|
|
3263
3375
|
SetofOptions: {
|
|
@@ -3271,6 +3383,35 @@ export type Database = {
|
|
|
3271
3383
|
Args: never;
|
|
3272
3384
|
Returns: undefined;
|
|
3273
3385
|
};
|
|
3386
|
+
remove_user_from_herd_for_admin: {
|
|
3387
|
+
Args: {
|
|
3388
|
+
p_herd_id: number;
|
|
3389
|
+
p_user_id: string;
|
|
3390
|
+
};
|
|
3391
|
+
Returns: {
|
|
3392
|
+
herd_id: number;
|
|
3393
|
+
herd_role_id: number;
|
|
3394
|
+
id: number;
|
|
3395
|
+
inserted_at: string;
|
|
3396
|
+
lifecycle: Database["public"]["Enums"]["entity_lifecycle"];
|
|
3397
|
+
lifecycle_changed_at: string;
|
|
3398
|
+
lifecycle_changed_by: string | null;
|
|
3399
|
+
lifecycle_reason: string | null;
|
|
3400
|
+
user_id: string;
|
|
3401
|
+
};
|
|
3402
|
+
SetofOptions: {
|
|
3403
|
+
from: "*";
|
|
3404
|
+
to: "users_roles_per_herd";
|
|
3405
|
+
isOneToOne: true;
|
|
3406
|
+
isSetofReturn: false;
|
|
3407
|
+
};
|
|
3408
|
+
};
|
|
3409
|
+
revoke_client_abilities_jwt_public_key: {
|
|
3410
|
+
Args: {
|
|
3411
|
+
p_kid: string;
|
|
3412
|
+
};
|
|
3413
|
+
Returns: undefined;
|
|
3414
|
+
};
|
|
3274
3415
|
revoke_herd_invitations: {
|
|
3275
3416
|
Args: {
|
|
3276
3417
|
p_invitation_ids: number[];
|
|
@@ -3281,9 +3422,9 @@ export type Database = {
|
|
|
3281
3422
|
email: string;
|
|
3282
3423
|
expires_at: string | null;
|
|
3283
3424
|
herd_id: number;
|
|
3425
|
+
herd_role_id: number;
|
|
3284
3426
|
id: number;
|
|
3285
3427
|
invited_by: string;
|
|
3286
|
-
role: Database["public"]["Enums"]["role"];
|
|
3287
3428
|
status: Database["public"]["Enums"]["herd_invitation_status"];
|
|
3288
3429
|
}[];
|
|
3289
3430
|
SetofOptions: {
|
|
@@ -3314,6 +3455,12 @@ export type Database = {
|
|
|
3314
3455
|
isSetofReturn: true;
|
|
3315
3456
|
};
|
|
3316
3457
|
};
|
|
3458
|
+
seed_herd_default_roles: {
|
|
3459
|
+
Args: {
|
|
3460
|
+
p_herd_id: number;
|
|
3461
|
+
};
|
|
3462
|
+
Returns: undefined;
|
|
3463
|
+
};
|
|
3317
3464
|
set_herd_location: {
|
|
3318
3465
|
Args: {
|
|
3319
3466
|
p_herd_id: number;
|
|
@@ -3343,6 +3490,13 @@ export type Database = {
|
|
|
3343
3490
|
};
|
|
3344
3491
|
Returns: undefined;
|
|
3345
3492
|
};
|
|
3493
|
+
upsert_client_abilities_jwt_public_key: {
|
|
3494
|
+
Args: {
|
|
3495
|
+
p_kid: string;
|
|
3496
|
+
p_public_jwk: Json;
|
|
3497
|
+
};
|
|
3498
|
+
Returns: undefined;
|
|
3499
|
+
};
|
|
3346
3500
|
upsert_pubsub_jwt_public_key: {
|
|
3347
3501
|
Args: {
|
|
3348
3502
|
p_kid: string;
|
|
@@ -3359,7 +3513,6 @@ export type Database = {
|
|
|
3359
3513
|
herd_invitation_status: "pending" | "accepted" | "revoked" | "expired";
|
|
3360
3514
|
media_type: "image" | "video" | "audio" | "text";
|
|
3361
3515
|
plan_type: "mission" | "fence" | "rally" | "markov";
|
|
3362
|
-
role: "admin" | "editor" | "viewer";
|
|
3363
3516
|
tag_observation_type: "manual" | "auto";
|
|
3364
3517
|
user_status: "ONLINE" | "OFFLINE";
|
|
3365
3518
|
};
|
|
@@ -3505,7 +3658,8 @@ export type Database = {
|
|
|
3505
3658
|
id: number | null;
|
|
3506
3659
|
email: string | null;
|
|
3507
3660
|
herd_id: number | null;
|
|
3508
|
-
|
|
3661
|
+
herd_role_id: number | null;
|
|
3662
|
+
role_system_name: string | null;
|
|
3509
3663
|
invited_by: string | null;
|
|
3510
3664
|
status: Database["public"]["Enums"]["herd_invitation_status"] | null;
|
|
3511
3665
|
created_at: string | null;
|
|
@@ -3686,7 +3840,6 @@ export declare const Constants: {
|
|
|
3686
3840
|
readonly herd_invitation_status: readonly ["pending", "accepted", "revoked", "expired"];
|
|
3687
3841
|
readonly media_type: readonly ["image", "video", "audio", "text"];
|
|
3688
3842
|
readonly plan_type: readonly ["mission", "fence", "rally", "markov"];
|
|
3689
|
-
readonly role: readonly ["admin", "editor", "viewer"];
|
|
3690
3843
|
readonly tag_observation_type: readonly ["manual", "auto"];
|
|
3691
3844
|
readonly user_status: readonly ["ONLINE", "OFFLINE"];
|
|
3692
3845
|
};
|
package/dist/types/supabase.js
CHANGED
|
@@ -27,7 +27,6 @@ export const Constants = {
|
|
|
27
27
|
herd_invitation_status: ["pending", "accepted", "revoked", "expired"],
|
|
28
28
|
media_type: ["image", "video", "audio", "text"],
|
|
29
29
|
plan_type: ["mission", "fence", "rally", "markov"],
|
|
30
|
-
role: ["admin", "editor", "viewer"],
|
|
31
30
|
tag_observation_type: ["manual", "auto"],
|
|
32
31
|
user_status: ["ONLINE", "OFFLINE"],
|
|
33
32
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adventurelabs/scout-core",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.76",
|
|
4
4
|
"description": "Core utilities and helpers for Adventure Labs Scout applications",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -34,24 +34,27 @@
|
|
|
34
34
|
},
|
|
35
35
|
"homepage": "https://github.com/Adventurous-Bytes/scout#readme",
|
|
36
36
|
"peerDependencies": {
|
|
37
|
+
"@reduxjs/toolkit": "^2.0.0",
|
|
38
|
+
"@supabase/ssr": "^0.7.0",
|
|
39
|
+
"@supabase/supabase-js": "^2.89.0",
|
|
37
40
|
"next": ">=15.0.0",
|
|
38
41
|
"react": ">=18.0.0",
|
|
39
42
|
"react-dom": ">=18.0.0",
|
|
40
|
-
"react-redux": ">=9.0.0"
|
|
41
|
-
"@supabase/supabase-js": "^2.89.0",
|
|
42
|
-
"@supabase/ssr": "^0.7.0",
|
|
43
|
-
"@reduxjs/toolkit": "^2.0.0"
|
|
43
|
+
"react-redux": ">=9.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
+
"@reduxjs/toolkit": "^2.0.0",
|
|
47
|
+
"@supabase/ssr": "^0.7.0",
|
|
48
|
+
"@supabase/supabase-js": "^2.57.4",
|
|
46
49
|
"@types/react": "^18.0.0",
|
|
47
50
|
"@types/react-dom": "^18.0.0",
|
|
48
|
-
"typescript": "^5.0.0",
|
|
49
51
|
"next": ">=15.0.0",
|
|
50
52
|
"react": ">=18.0.0",
|
|
51
53
|
"react-dom": ">=18.0.0",
|
|
52
54
|
"react-redux": ">=9.0.0",
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
55
|
+
"typescript": "^5.0.0"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"jose": "5"
|
|
56
59
|
}
|
|
57
60
|
}
|