@powersync/management-client 0.0.0-dev-20260225124534 → 0.0.0-dev.6cd95165
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/index.d.ts +59 -35
- package/dist/index.js +18 -18
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -612,6 +612,10 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
612
612
|
errors: {
|
|
613
613
|
level: "warning" | "fatal";
|
|
614
614
|
message: string;
|
|
615
|
+
location?: {
|
|
616
|
+
start_offset: number;
|
|
617
|
+
end_offset: number;
|
|
618
|
+
} | undefined;
|
|
615
619
|
ts?: string | undefined;
|
|
616
620
|
}[];
|
|
617
621
|
}[];
|
|
@@ -619,6 +623,10 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
619
623
|
errors: {
|
|
620
624
|
level: "warning" | "fatal";
|
|
621
625
|
message: string;
|
|
626
|
+
location?: {
|
|
627
|
+
start_offset: number;
|
|
628
|
+
end_offset: number;
|
|
629
|
+
} | undefined;
|
|
622
630
|
ts?: string | undefined;
|
|
623
631
|
}[];
|
|
624
632
|
connections: {
|
|
@@ -635,6 +643,10 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
635
643
|
errors: {
|
|
636
644
|
level: "warning" | "fatal";
|
|
637
645
|
message: string;
|
|
646
|
+
location?: {
|
|
647
|
+
start_offset: number;
|
|
648
|
+
end_offset: number;
|
|
649
|
+
} | undefined;
|
|
638
650
|
ts?: string | undefined;
|
|
639
651
|
}[];
|
|
640
652
|
pattern?: string | undefined;
|
|
@@ -650,6 +662,10 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
650
662
|
errors: {
|
|
651
663
|
level: "warning" | "fatal";
|
|
652
664
|
message: string;
|
|
665
|
+
location?: {
|
|
666
|
+
start_offset: number;
|
|
667
|
+
end_offset: number;
|
|
668
|
+
} | undefined;
|
|
653
669
|
ts?: string | undefined;
|
|
654
670
|
}[];
|
|
655
671
|
connections: {
|
|
@@ -666,6 +682,10 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
666
682
|
errors: {
|
|
667
683
|
level: "warning" | "fatal";
|
|
668
684
|
message: string;
|
|
685
|
+
location?: {
|
|
686
|
+
start_offset: number;
|
|
687
|
+
end_offset: number;
|
|
688
|
+
} | undefined;
|
|
669
689
|
ts?: string | undefined;
|
|
670
690
|
}[];
|
|
671
691
|
pattern?: string | undefined;
|
|
@@ -1007,6 +1027,10 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
1007
1027
|
errors: {
|
|
1008
1028
|
level: "warning" | "fatal";
|
|
1009
1029
|
message: string;
|
|
1030
|
+
location?: {
|
|
1031
|
+
start_offset: number;
|
|
1032
|
+
end_offset: number;
|
|
1033
|
+
} | undefined;
|
|
1010
1034
|
ts?: string | undefined;
|
|
1011
1035
|
}[];
|
|
1012
1036
|
schema: string;
|
|
@@ -1025,6 +1049,10 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
1025
1049
|
errors: {
|
|
1026
1050
|
level: "warning" | "fatal";
|
|
1027
1051
|
message: string;
|
|
1052
|
+
location?: {
|
|
1053
|
+
start_offset: number;
|
|
1054
|
+
end_offset: number;
|
|
1055
|
+
} | undefined;
|
|
1028
1056
|
ts?: string | undefined;
|
|
1029
1057
|
}[];
|
|
1030
1058
|
content?: string | undefined;
|
|
@@ -1136,76 +1164,72 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
1136
1164
|
version: string;
|
|
1137
1165
|
}[], C>;
|
|
1138
1166
|
/**
|
|
1139
|
-
* Gets client
|
|
1167
|
+
* Gets a summary of client connections for a PowerSync instance within a date range.
|
|
1140
1168
|
*
|
|
1141
|
-
* @returns Promise resolving to connection
|
|
1169
|
+
* @returns Promise resolving to connection summary data including total user counts and SDK breakdowns
|
|
1142
1170
|
* @example
|
|
1143
1171
|
* ```typescript
|
|
1144
|
-
* const response = await client.
|
|
1172
|
+
* const response = await client.getConnectionsSummary({
|
|
1145
1173
|
* org_id: 'org-123',
|
|
1146
1174
|
* app_id: 'app-456',
|
|
1147
1175
|
* id: 'instance-789',
|
|
1148
1176
|
* start: '2024-01-01T00:00:00Z',
|
|
1149
1177
|
* end: '2024-01-31T23:59:59Z'
|
|
1150
1178
|
* });
|
|
1151
|
-
* console.log(response.
|
|
1152
|
-
* console.log(response.
|
|
1179
|
+
* console.log(response.total_users); // Total number of users
|
|
1180
|
+
* console.log(response.sdk_breakdown); // Array of SDK connection summaries
|
|
1153
1181
|
* ```
|
|
1154
1182
|
*/
|
|
1155
|
-
|
|
1183
|
+
getConnectionsSummary: sdk.Endpoint<{
|
|
1156
1184
|
start: string;
|
|
1157
1185
|
end: string;
|
|
1158
1186
|
scrape_ttl?: {
|
|
1159
1187
|
date: string;
|
|
1160
1188
|
} | undefined;
|
|
1161
|
-
} & {
|
|
1162
|
-
org_id: string;
|
|
1163
|
-
app_id: string;
|
|
1164
|
-
id: string;
|
|
1165
1189
|
}, {
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
users: number;
|
|
1190
|
+
total_users: number;
|
|
1191
|
+
sdk_breakdown: {
|
|
1169
1192
|
sdk: string;
|
|
1193
|
+
users: number;
|
|
1170
1194
|
clients: number;
|
|
1171
1195
|
}[];
|
|
1172
1196
|
}, C>;
|
|
1173
1197
|
/**
|
|
1174
1198
|
* Gets currently connected clients for a PowerSync instance.
|
|
1175
1199
|
*
|
|
1176
|
-
* @returns Promise resolving to current connection data including user counts and SDK breakdowns
|
|
1200
|
+
* @returns Promise resolving to current connection summary data including total user counts and SDK breakdowns
|
|
1177
1201
|
* @example
|
|
1178
1202
|
* ```typescript
|
|
1179
|
-
* const response = await client.
|
|
1203
|
+
* const response = await client.getCurrentConnections({
|
|
1180
1204
|
* org_id: 'org-123',
|
|
1181
1205
|
* app_id: 'app-456',
|
|
1182
1206
|
* id: 'instance-789'
|
|
1183
1207
|
* });
|
|
1184
|
-
* console.log(response.
|
|
1185
|
-
* console.log(response.
|
|
1208
|
+
* console.log(response.total_users); // Number of currently connected users
|
|
1209
|
+
* console.log(response.sdk_breakdown); // Array of current SDK connection summaries
|
|
1186
1210
|
* ```
|
|
1187
1211
|
*/
|
|
1188
|
-
|
|
1189
|
-
org_id
|
|
1190
|
-
app_id
|
|
1191
|
-
id
|
|
1212
|
+
getCurrentConnections: sdk.Endpoint<{
|
|
1213
|
+
org_id?: string | undefined;
|
|
1214
|
+
app_id?: string | undefined;
|
|
1215
|
+
id?: string | undefined;
|
|
1192
1216
|
}, {
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
users: number;
|
|
1217
|
+
total_users: number;
|
|
1218
|
+
sdk_breakdown: {
|
|
1196
1219
|
sdk: string;
|
|
1220
|
+
users: number;
|
|
1197
1221
|
clients: number;
|
|
1198
1222
|
}[];
|
|
1199
1223
|
}, C>;
|
|
1200
1224
|
/**
|
|
1201
|
-
* Gets paginated
|
|
1225
|
+
* Gets paginated client session data for a PowerSync instance.
|
|
1202
1226
|
* Returns connection events including connect/disconnect times, user agents, and SDK information.
|
|
1203
1227
|
*
|
|
1204
|
-
* @returns Promise resolving to paginated
|
|
1228
|
+
* @returns Promise resolving to paginated client session events. Also includes a `paginate` method for iterating through all pages.
|
|
1205
1229
|
* @example
|
|
1206
1230
|
* ```typescript
|
|
1207
1231
|
* // Single page request
|
|
1208
|
-
* const response = await client.
|
|
1232
|
+
* const response = await client.getClientSessions({
|
|
1209
1233
|
* org_id: 'org-123',
|
|
1210
1234
|
* app_id: 'app-456',
|
|
1211
1235
|
* id: 'instance-789',
|
|
@@ -1221,7 +1245,7 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
1221
1245
|
* console.log(response.cursor); // cursor for the next page
|
|
1222
1246
|
*
|
|
1223
1247
|
* // Iterate through all pages
|
|
1224
|
-
* for await (const page of client.
|
|
1248
|
+
* for await (const page of client.getClientSessions.paginate({
|
|
1225
1249
|
* org_id: 'org-123',
|
|
1226
1250
|
* app_id: 'app-456',
|
|
1227
1251
|
* id: 'instance-789',
|
|
@@ -1235,10 +1259,10 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
1235
1259
|
* }
|
|
1236
1260
|
* ```
|
|
1237
1261
|
*/
|
|
1238
|
-
|
|
1239
|
-
id
|
|
1240
|
-
org_id
|
|
1241
|
-
app_id
|
|
1262
|
+
getClientSessions: ((params: {
|
|
1263
|
+
id?: string | undefined;
|
|
1264
|
+
org_id?: string | undefined;
|
|
1265
|
+
app_id?: string | undefined;
|
|
1242
1266
|
user_id?: string | undefined;
|
|
1243
1267
|
client_id?: string | undefined;
|
|
1244
1268
|
date_range?: {
|
|
@@ -1264,9 +1288,9 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
1264
1288
|
cursor?: string | undefined;
|
|
1265
1289
|
}>) & {
|
|
1266
1290
|
paginate: (params: {
|
|
1267
|
-
id
|
|
1268
|
-
org_id
|
|
1269
|
-
app_id
|
|
1291
|
+
id?: string | undefined;
|
|
1292
|
+
org_id?: string | undefined;
|
|
1293
|
+
app_id?: string | undefined;
|
|
1270
1294
|
user_id?: string | undefined;
|
|
1271
1295
|
client_id?: string | undefined;
|
|
1272
1296
|
date_range?: {
|
package/dist/index.js
CHANGED
|
@@ -345,52 +345,52 @@ export class PowerSyncManagementClient extends sdk.SDKClient {
|
|
|
345
345
|
path: general.LIST_VERSIONS_V2
|
|
346
346
|
});
|
|
347
347
|
/**
|
|
348
|
-
* Gets client
|
|
348
|
+
* Gets a summary of client connections for a PowerSync instance within a date range.
|
|
349
349
|
*
|
|
350
|
-
* @returns Promise resolving to connection
|
|
350
|
+
* @returns Promise resolving to connection summary data including total user counts and SDK breakdowns
|
|
351
351
|
* @example
|
|
352
352
|
* ```typescript
|
|
353
|
-
* const response = await client.
|
|
353
|
+
* const response = await client.getConnectionsSummary({
|
|
354
354
|
* org_id: 'org-123',
|
|
355
355
|
* app_id: 'app-456',
|
|
356
356
|
* id: 'instance-789',
|
|
357
357
|
* start: '2024-01-01T00:00:00Z',
|
|
358
358
|
* end: '2024-01-31T23:59:59Z'
|
|
359
359
|
* });
|
|
360
|
-
* console.log(response.
|
|
361
|
-
* console.log(response.
|
|
360
|
+
* console.log(response.total_users); // Total number of users
|
|
361
|
+
* console.log(response.sdk_breakdown); // Array of SDK connection summaries
|
|
362
362
|
* ```
|
|
363
363
|
*/
|
|
364
|
-
|
|
365
|
-
path: report.
|
|
364
|
+
getConnectionsSummary = this.createEndpoint({
|
|
365
|
+
path: report.GET_CONNECTIONS_SUMMARY
|
|
366
366
|
});
|
|
367
367
|
/**
|
|
368
368
|
* Gets currently connected clients for a PowerSync instance.
|
|
369
369
|
*
|
|
370
|
-
* @returns Promise resolving to current connection data including user counts and SDK breakdowns
|
|
370
|
+
* @returns Promise resolving to current connection summary data including total user counts and SDK breakdowns
|
|
371
371
|
* @example
|
|
372
372
|
* ```typescript
|
|
373
|
-
* const response = await client.
|
|
373
|
+
* const response = await client.getCurrentConnections({
|
|
374
374
|
* org_id: 'org-123',
|
|
375
375
|
* app_id: 'app-456',
|
|
376
376
|
* id: 'instance-789'
|
|
377
377
|
* });
|
|
378
|
-
* console.log(response.
|
|
379
|
-
* console.log(response.
|
|
378
|
+
* console.log(response.total_users); // Number of currently connected users
|
|
379
|
+
* console.log(response.sdk_breakdown); // Array of current SDK connection summaries
|
|
380
380
|
* ```
|
|
381
381
|
*/
|
|
382
|
-
|
|
382
|
+
getCurrentConnections = this.createEndpoint({
|
|
383
383
|
path: report.GET_CURRENT_CONNECTIONS
|
|
384
384
|
});
|
|
385
385
|
/**
|
|
386
|
-
* Gets paginated
|
|
386
|
+
* Gets paginated client session data for a PowerSync instance.
|
|
387
387
|
* Returns connection events including connect/disconnect times, user agents, and SDK information.
|
|
388
388
|
*
|
|
389
|
-
* @returns Promise resolving to paginated
|
|
389
|
+
* @returns Promise resolving to paginated client session events. Also includes a `paginate` method for iterating through all pages.
|
|
390
390
|
* @example
|
|
391
391
|
* ```typescript
|
|
392
392
|
* // Single page request
|
|
393
|
-
* const response = await client.
|
|
393
|
+
* const response = await client.getClientSessions({
|
|
394
394
|
* org_id: 'org-123',
|
|
395
395
|
* app_id: 'app-456',
|
|
396
396
|
* id: 'instance-789',
|
|
@@ -406,7 +406,7 @@ export class PowerSyncManagementClient extends sdk.SDKClient {
|
|
|
406
406
|
* console.log(response.cursor); // cursor for the next page
|
|
407
407
|
*
|
|
408
408
|
* // Iterate through all pages
|
|
409
|
-
* for await (const page of client.
|
|
409
|
+
* for await (const page of client.getClientSessions.paginate({
|
|
410
410
|
* org_id: 'org-123',
|
|
411
411
|
* app_id: 'app-456',
|
|
412
412
|
* id: 'instance-789',
|
|
@@ -420,8 +420,8 @@ export class PowerSyncManagementClient extends sdk.SDKClient {
|
|
|
420
420
|
* }
|
|
421
421
|
* ```
|
|
422
422
|
*/
|
|
423
|
-
|
|
424
|
-
path: report.
|
|
423
|
+
getClientSessions = sdk.createPaginatedEndpoint(this.createEndpoint({
|
|
424
|
+
path: report.GET_CLIENT_SESSIONS
|
|
425
425
|
}));
|
|
426
426
|
}
|
|
427
427
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powersync/management-client",
|
|
3
|
-
"version": "0.0.0-dev
|
|
3
|
+
"version": "0.0.0-dev.6cd95165",
|
|
4
4
|
"description": "A TypeScript client for the PowerSync Management Service API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@journeyapps-labs/common-sdk": "^1.0.2",
|
|
24
|
-
"@powersync/management-types": "
|
|
24
|
+
"@powersync/management-types": "0.0.0-dev.6cd95165"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/json-schema": "^7.0.15"
|