@powersync/service-core 0.0.0-dev-20251110113516 → 0.0.0-dev-20251111070830
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/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# @powersync/service-core
|
|
2
2
|
|
|
3
|
-
## 0.0.0-dev-
|
|
3
|
+
## 0.0.0-dev-20251111070830
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- c6bdb4f: [MongoDB storage] Fix migration for indexes on connection_report_events.
|
|
7
8
|
- 422ae99: General client connections analytics added
|
|
8
9
|
- Updated dependencies [422ae99]
|
|
9
|
-
- @powersync/service-types@0.0.0-dev-
|
|
10
|
+
- @powersync/service-types@0.0.0-dev-20251111070830
|
|
10
11
|
|
|
11
12
|
## 1.16.0
|
|
12
13
|
|
|
@@ -29,10 +29,10 @@ export interface ReportStorage extends AsyncDisposable {
|
|
|
29
29
|
*/
|
|
30
30
|
getClientConnectionReports(data: event_types.ClientConnectionReportRequest): Promise<event_types.ClientConnectionReportResponse>;
|
|
31
31
|
/**
|
|
32
|
-
* Get a paginated list of
|
|
33
|
-
* This will return a paginated list of connections for a
|
|
32
|
+
* Get a paginated list of client connection events
|
|
33
|
+
* This will return a paginated list of connections for a client/ user ID or all if neither is provided, within a date range if provided
|
|
34
34
|
*/
|
|
35
|
-
|
|
35
|
+
getGeneralClientConnectionAnalytics(data: event_types.ClientConnectionAnalyticsRequest): Promise<event_types.PaginatedResponse<event_types.ClientConnection>>;
|
|
36
36
|
/**
|
|
37
37
|
* Delete old connection data based on a specific date.
|
|
38
38
|
* This is used to clean up old connection data that is no longer needed.
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
|
-
"version": "0.0.0-dev-
|
|
8
|
+
"version": "0.0.0-dev-20251111070830",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"license": "FSL-1.1-ALv2",
|
|
11
11
|
"type": "module",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@powersync/service-jsonbig": "0.17.12",
|
|
38
38
|
"@powersync/service-rsocket-router": "0.2.6",
|
|
39
39
|
"@powersync/service-sync-rules": "0.29.6",
|
|
40
|
-
"@powersync/service-types": "0.0.0-dev-
|
|
40
|
+
"@powersync/service-types": "0.0.0-dev-20251111070830"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/async": "^3.2.24",
|
|
@@ -32,11 +32,11 @@ export interface ReportStorage extends AsyncDisposable {
|
|
|
32
32
|
data: event_types.ClientConnectionReportRequest
|
|
33
33
|
): Promise<event_types.ClientConnectionReportResponse>;
|
|
34
34
|
/**
|
|
35
|
-
* Get a paginated list of
|
|
36
|
-
* This will return a paginated list of connections for a
|
|
35
|
+
* Get a paginated list of client connection events
|
|
36
|
+
* This will return a paginated list of connections for a client/ user ID or all if neither is provided, within a date range if provided
|
|
37
37
|
*/
|
|
38
|
-
|
|
39
|
-
data: event_types.
|
|
38
|
+
getGeneralClientConnectionAnalytics(
|
|
39
|
+
data: event_types.ClientConnectionAnalyticsRequest
|
|
40
40
|
): Promise<event_types.PaginatedResponse<event_types.ClientConnection>>;
|
|
41
41
|
/**
|
|
42
42
|
* Delete old connection data based on a specific date.
|