@powersync/service-core 0.0.0-dev-20251110113516 → 0.0.0-dev-20251110132117

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,12 @@
1
1
  # @powersync/service-core
2
2
 
3
- ## 0.0.0-dev-20251110113516
3
+ ## 0.0.0-dev-20251110132117
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - 422ae99: General client connections analytics added
8
8
  - Updated dependencies [422ae99]
9
- - @powersync/service-types@0.0.0-dev-20251110113516
9
+ - @powersync/service-types@0.0.0-dev-20251110132117
10
10
 
11
11
  ## 1.16.0
12
12
 
@@ -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 connections
33
- * This will return a paginated list of connections for a specific client ID within a date range if provided
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
- getClientConnections(data: event_types.ClientConnectionsRequest): Promise<event_types.PaginatedResponse<event_types.ClientConnection>>;
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-20251110113516",
8
+ "version": "0.0.0-dev-20251110132117",
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-20251110113516"
40
+ "@powersync/service-types": "0.0.0-dev-20251110132117"
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 connections
36
- * This will return a paginated list of connections for a specific client ID within a date range if provided
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
- getClientConnections(
39
- data: event_types.ClientConnectionsRequest
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.