@adventurelabs/scout-core 1.4.68 → 1.4.70
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/herd_allowed_domains.d.ts +5 -0
- package/dist/helpers/herd_allowed_domains.js +15 -0
- package/dist/helpers/herds.d.ts +4 -1
- package/dist/helpers/herds.js +1 -5
- package/dist/helpers/index.d.ts +3 -0
- package/dist/helpers/index.js +3 -0
- package/dist/helpers/invitations.d.ts +8 -0
- package/dist/helpers/invitations.js +47 -0
- package/dist/helpers/lifecycle.d.ts +14 -0
- package/dist/helpers/lifecycle.js +74 -0
- package/dist/helpers/parts.d.ts +19 -13
- package/dist/helpers/parts.js +51 -47
- package/dist/helpers/pubsub_token.d.ts +5 -0
- package/dist/helpers/pubsub_token.js +14 -0
- package/dist/helpers/pubsub_token_server.d.ts +7 -0
- package/dist/helpers/pubsub_token_server.js +7 -0
- package/dist/helpers/users.d.ts +4 -1
- package/dist/helpers/users.js +15 -0
- package/dist/index.d.ts +6 -1
- package/dist/index.js +5 -0
- package/dist/providers/ScoutRefreshProvider.d.ts +351 -26
- package/dist/types/db.d.ts +5 -0
- package/dist/types/pubsub_token.d.ts +7 -0
- package/dist/types/pubsub_token.js +1 -0
- package/dist/types/supabase.d.ts +366 -30
- package/dist/types/supabase.js +3 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export * from "./types/supabase";
|
|
|
10
10
|
export * from "./types/bounding_boxes";
|
|
11
11
|
export * from "./types/events";
|
|
12
12
|
export * from "./types/connectivity";
|
|
13
|
+
export * from "./types/pubsub_token";
|
|
13
14
|
export * from "./helpers/analysis_usage";
|
|
14
15
|
export * from "./helpers/artifacts";
|
|
15
16
|
export * from "./helpers/auth";
|
|
@@ -35,6 +36,8 @@ export * from "./helpers/tags";
|
|
|
35
36
|
export * from "./helpers/time";
|
|
36
37
|
export * from "./helpers/ui";
|
|
37
38
|
export * from "./helpers/users";
|
|
39
|
+
export * from "./helpers/invitations";
|
|
40
|
+
export * from "./helpers/herd_allowed_domains";
|
|
38
41
|
export * from "./helpers/web";
|
|
39
42
|
export * from "./helpers/zones";
|
|
40
43
|
export * from "./helpers/storage";
|
|
@@ -43,6 +46,8 @@ export * from "./helpers/cache";
|
|
|
43
46
|
export * from "./helpers/health_metrics";
|
|
44
47
|
export * from "./helpers/heartbeats";
|
|
45
48
|
export * from "./helpers/providers";
|
|
49
|
+
export * from "./helpers/pubsub_token";
|
|
50
|
+
export * from "./helpers/pubsub_token_server";
|
|
46
51
|
export * from "./helpers/observations";
|
|
47
52
|
export * from "./helpers/operators";
|
|
48
53
|
export * from "./helpers/versions_software";
|
|
@@ -70,5 +75,5 @@ export * from "./supabase/middleware";
|
|
|
70
75
|
export * from "./supabase/server";
|
|
71
76
|
export * from "./api_keys/actions";
|
|
72
77
|
export type { HerdModule, IHerdModule } from "./types/herd_module";
|
|
73
|
-
export type { IDevice, IEvent, IUser, IHerd, IHerdPrettyLocation, IEventWithTags, IZoneWithActions, ICredential, CredentialInsert, CredentialUpdate, ICertificate, CertificateInsert, CertificateUpdate, IUserAndRole, IUserProfileRow, IApiKeyScout, ILayer, IHeartbeat, IProvider, IConnectivity, ISession, ISessionWithCoordinates, IConnectivityWithCoordinates, IObservation, ObservationInsert, ObservationUpdate, IAnalysisJob, IAnalysisTask, AnalysisWorkStatus, } from "./types/db";
|
|
78
|
+
export type { IDevice, IEvent, IUser, IHerd, IHerdPrettyLocation, IEventWithTags, IZoneWithActions, ICredential, CredentialInsert, CredentialUpdate, ICertificate, CertificateInsert, CertificateUpdate, IUserAndRole, IUserProfileRow, IHerdInvitation, IHerdAllowedDomain, HerdInvitationStatus, IApiKeyScout, ILayer, IHeartbeat, IProvider, IConnectivity, ISession, ISessionWithCoordinates, IConnectivityWithCoordinates, IObservation, ObservationInsert, ObservationUpdate, IAnalysisJob, IAnalysisTask, AnalysisWorkStatus, } from "./types/db";
|
|
74
79
|
export { EnumSessionsVisibility } from "./types/events";
|
package/dist/index.js
CHANGED
|
@@ -12,6 +12,7 @@ export * from "./types/supabase";
|
|
|
12
12
|
export * from "./types/bounding_boxes";
|
|
13
13
|
export * from "./types/events";
|
|
14
14
|
export * from "./types/connectivity";
|
|
15
|
+
export * from "./types/pubsub_token";
|
|
15
16
|
// Helpers
|
|
16
17
|
export * from "./helpers/analysis_usage";
|
|
17
18
|
export * from "./helpers/artifacts";
|
|
@@ -38,6 +39,8 @@ export * from "./helpers/tags";
|
|
|
38
39
|
export * from "./helpers/time";
|
|
39
40
|
export * from "./helpers/ui";
|
|
40
41
|
export * from "./helpers/users";
|
|
42
|
+
export * from "./helpers/invitations";
|
|
43
|
+
export * from "./helpers/herd_allowed_domains";
|
|
41
44
|
export * from "./helpers/web";
|
|
42
45
|
export * from "./helpers/zones";
|
|
43
46
|
export * from "./helpers/storage";
|
|
@@ -46,6 +49,8 @@ export * from "./helpers/cache";
|
|
|
46
49
|
export * from "./helpers/health_metrics";
|
|
47
50
|
export * from "./helpers/heartbeats";
|
|
48
51
|
export * from "./helpers/providers";
|
|
52
|
+
export * from "./helpers/pubsub_token";
|
|
53
|
+
export * from "./helpers/pubsub_token_server";
|
|
49
54
|
export * from "./helpers/observations";
|
|
50
55
|
export * from "./helpers/operators";
|
|
51
56
|
export * from "./helpers/versions_software";
|