@powersync/management-client 0.0.0-dev.6cd95165 → 0.0.0-dev.6f42cb4c
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 +189 -1
- package/dist/index.js +80 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1186,6 +1186,10 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
1186
1186
|
scrape_ttl?: {
|
|
1187
1187
|
date: string;
|
|
1188
1188
|
} | undefined;
|
|
1189
|
+
} & {
|
|
1190
|
+
org_id: string;
|
|
1191
|
+
app_id: string;
|
|
1192
|
+
id: string;
|
|
1189
1193
|
}, {
|
|
1190
1194
|
total_users: number;
|
|
1191
1195
|
sdk_breakdown: {
|
|
@@ -1210,9 +1214,13 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
1210
1214
|
* ```
|
|
1211
1215
|
*/
|
|
1212
1216
|
getCurrentConnections: sdk.Endpoint<{
|
|
1217
|
+
id?: string | undefined;
|
|
1213
1218
|
org_id?: string | undefined;
|
|
1214
1219
|
app_id?: string | undefined;
|
|
1215
|
-
|
|
1220
|
+
} & {
|
|
1221
|
+
org_id: string;
|
|
1222
|
+
app_id: string;
|
|
1223
|
+
id: string;
|
|
1216
1224
|
}, {
|
|
1217
1225
|
total_users: number;
|
|
1218
1226
|
sdk_breakdown: {
|
|
@@ -1272,6 +1280,10 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
1272
1280
|
} & {
|
|
1273
1281
|
cursor?: string | undefined;
|
|
1274
1282
|
limit?: number | undefined;
|
|
1283
|
+
} & {
|
|
1284
|
+
org_id: string;
|
|
1285
|
+
app_id: string;
|
|
1286
|
+
id: string;
|
|
1275
1287
|
}) => Promise<{
|
|
1276
1288
|
total: number;
|
|
1277
1289
|
count: number;
|
|
@@ -1300,6 +1312,182 @@ export declare class PowerSyncManagementClient<C extends sdk.NetworkClient = sdk
|
|
|
1300
1312
|
} & {
|
|
1301
1313
|
cursor?: string | undefined;
|
|
1302
1314
|
limit?: number | undefined;
|
|
1315
|
+
} & {
|
|
1316
|
+
org_id: string;
|
|
1317
|
+
app_id: string;
|
|
1318
|
+
id: string;
|
|
1319
|
+
}) => AsyncGenerator<{
|
|
1320
|
+
total: number;
|
|
1321
|
+
count: number;
|
|
1322
|
+
more: boolean;
|
|
1323
|
+
items: {
|
|
1324
|
+
user_id: string;
|
|
1325
|
+
sdk: string;
|
|
1326
|
+
client_id: string;
|
|
1327
|
+
connected_at: string;
|
|
1328
|
+
user_agent: string;
|
|
1329
|
+
disconnected_at?: string | undefined;
|
|
1330
|
+
jwt_exp?: string | undefined;
|
|
1331
|
+
}[];
|
|
1332
|
+
cursor?: string | undefined;
|
|
1333
|
+
}, void, unknown>;
|
|
1334
|
+
};
|
|
1335
|
+
/**
|
|
1336
|
+
* Gets client connection reports for a PowerSync instance within a date range.
|
|
1337
|
+
*
|
|
1338
|
+
* @returns Promise resolving to connection report data including user counts and SDK breakdowns
|
|
1339
|
+
* @example
|
|
1340
|
+
* ```typescript
|
|
1341
|
+
* const response = await client.getClientConnectionReports({
|
|
1342
|
+
* org_id: 'org-123',
|
|
1343
|
+
* app_id: 'app-456',
|
|
1344
|
+
* id: 'instance-789',
|
|
1345
|
+
* start: '2024-01-01T00:00:00Z',
|
|
1346
|
+
* end: '2024-01-31T23:59:59Z'
|
|
1347
|
+
* });
|
|
1348
|
+
* console.log(response.users); // Total number of users
|
|
1349
|
+
* console.log(response.sdks); // Array of SDK connection reports
|
|
1350
|
+
* ```
|
|
1351
|
+
* @deprecated Use `getConnectionsSummary` instead.
|
|
1352
|
+
*/
|
|
1353
|
+
getClientConnectionReports: sdk.Endpoint<{
|
|
1354
|
+
start: string;
|
|
1355
|
+
end: string;
|
|
1356
|
+
scrape_ttl?: {
|
|
1357
|
+
date: string;
|
|
1358
|
+
} | undefined;
|
|
1359
|
+
} & {
|
|
1360
|
+
org_id: string;
|
|
1361
|
+
app_id: string;
|
|
1362
|
+
id: string;
|
|
1363
|
+
}, {
|
|
1364
|
+
users: number;
|
|
1365
|
+
sdks: {
|
|
1366
|
+
sdk: string;
|
|
1367
|
+
users: number;
|
|
1368
|
+
clients: number;
|
|
1369
|
+
}[];
|
|
1370
|
+
}, C>;
|
|
1371
|
+
/**
|
|
1372
|
+
* Gets currently connected clients for a PowerSync instance.
|
|
1373
|
+
*
|
|
1374
|
+
* @returns Promise resolving to current connection data including user counts and SDK breakdowns
|
|
1375
|
+
* @example
|
|
1376
|
+
* ```typescript
|
|
1377
|
+
* const response = await client.getConnectedClients({
|
|
1378
|
+
* org_id: 'org-123',
|
|
1379
|
+
* app_id: 'app-456',
|
|
1380
|
+
* id: 'instance-789'
|
|
1381
|
+
* });
|
|
1382
|
+
* console.log(response.users); // Number of currently connected users
|
|
1383
|
+
* console.log(response.sdks); // Array of current SDK connections
|
|
1384
|
+
* ```
|
|
1385
|
+
* @deprecated Use `getCurrentConnections` instead.
|
|
1386
|
+
*/
|
|
1387
|
+
getConnectedClients: sdk.Endpoint<{
|
|
1388
|
+
id?: string | undefined;
|
|
1389
|
+
org_id?: string | undefined;
|
|
1390
|
+
app_id?: string | undefined;
|
|
1391
|
+
} & {
|
|
1392
|
+
org_id: string;
|
|
1393
|
+
app_id: string;
|
|
1394
|
+
id: string;
|
|
1395
|
+
}, {
|
|
1396
|
+
users: number;
|
|
1397
|
+
sdks: {
|
|
1398
|
+
sdk: string;
|
|
1399
|
+
users: number;
|
|
1400
|
+
clients: number;
|
|
1401
|
+
}[];
|
|
1402
|
+
}, C>;
|
|
1403
|
+
/**
|
|
1404
|
+
* Gets paginated general client connection analytics for a PowerSync instance.
|
|
1405
|
+
* Returns connection events including connect/disconnect times, user agents, and SDK information.
|
|
1406
|
+
*
|
|
1407
|
+
* @returns Promise resolving to paginated connection analytics events. Also includes a `paginate` method for iterating through all pages.
|
|
1408
|
+
* @example
|
|
1409
|
+
* ```typescript
|
|
1410
|
+
* // Single page request
|
|
1411
|
+
* const response = await client.getGeneralClientConnectionAnalytics({
|
|
1412
|
+
* org_id: 'org-123',
|
|
1413
|
+
* app_id: 'app-456',
|
|
1414
|
+
* id: 'instance-789',
|
|
1415
|
+
* date_range: {
|
|
1416
|
+
* start: '2024-01-01T00:00:00Z',
|
|
1417
|
+
* end: '2024-01-31T23:59:59Z'
|
|
1418
|
+
* },
|
|
1419
|
+
* limit: 100
|
|
1420
|
+
* });
|
|
1421
|
+
* console.log(response.items); // Array of connection events
|
|
1422
|
+
* console.log(response.total); // Total number of events
|
|
1423
|
+
* console.log(response.more); // true if there are more pages
|
|
1424
|
+
* console.log(response.cursor); // cursor for the next page
|
|
1425
|
+
*
|
|
1426
|
+
* // Iterate through all pages
|
|
1427
|
+
* for await (const page of client.getGeneralClientConnectionAnalytics.paginate({
|
|
1428
|
+
* org_id: 'org-123',
|
|
1429
|
+
* app_id: 'app-456',
|
|
1430
|
+
* id: 'instance-789',
|
|
1431
|
+
* date_range: {
|
|
1432
|
+
* start: '2024-01-01T00:00:00Z',
|
|
1433
|
+
* end: '2024-01-31T23:59:59Z'
|
|
1434
|
+
* },
|
|
1435
|
+
* limit: 100
|
|
1436
|
+
* })) {
|
|
1437
|
+
* console.log(page.items); // Process each page
|
|
1438
|
+
* }
|
|
1439
|
+
* ```
|
|
1440
|
+
* @deprecated Use `getClientSessions` instead.
|
|
1441
|
+
*/
|
|
1442
|
+
getGeneralClientConnectionAnalytics: ((params: {
|
|
1443
|
+
id?: string | undefined;
|
|
1444
|
+
org_id?: string | undefined;
|
|
1445
|
+
app_id?: string | undefined;
|
|
1446
|
+
user_id?: string | undefined;
|
|
1447
|
+
client_id?: string | undefined;
|
|
1448
|
+
date_range?: {
|
|
1449
|
+
start: string;
|
|
1450
|
+
end: string;
|
|
1451
|
+
} | undefined;
|
|
1452
|
+
} & {
|
|
1453
|
+
cursor?: string | undefined;
|
|
1454
|
+
limit?: number | undefined;
|
|
1455
|
+
} & {
|
|
1456
|
+
org_id: string;
|
|
1457
|
+
app_id: string;
|
|
1458
|
+
id: string;
|
|
1459
|
+
}) => Promise<{
|
|
1460
|
+
total: number;
|
|
1461
|
+
count: number;
|
|
1462
|
+
more: boolean;
|
|
1463
|
+
items: {
|
|
1464
|
+
user_id: string;
|
|
1465
|
+
sdk: string;
|
|
1466
|
+
client_id: string;
|
|
1467
|
+
connected_at: string;
|
|
1468
|
+
user_agent: string;
|
|
1469
|
+
disconnected_at?: string | undefined;
|
|
1470
|
+
jwt_exp?: string | undefined;
|
|
1471
|
+
}[];
|
|
1472
|
+
cursor?: string | undefined;
|
|
1473
|
+
}>) & {
|
|
1474
|
+
paginate: (params: {
|
|
1475
|
+
id?: string | undefined;
|
|
1476
|
+
org_id?: string | undefined;
|
|
1477
|
+
app_id?: string | undefined;
|
|
1478
|
+
user_id?: string | undefined;
|
|
1479
|
+
client_id?: string | undefined;
|
|
1480
|
+
date_range?: {
|
|
1481
|
+
start: string;
|
|
1482
|
+
end: string;
|
|
1483
|
+
} | undefined;
|
|
1484
|
+
} & {
|
|
1485
|
+
cursor?: string | undefined;
|
|
1486
|
+
limit?: number | undefined;
|
|
1487
|
+
} & {
|
|
1488
|
+
org_id: string;
|
|
1489
|
+
app_id: string;
|
|
1490
|
+
id: string;
|
|
1303
1491
|
}) => AsyncGenerator<{
|
|
1304
1492
|
total: number;
|
|
1305
1493
|
count: number;
|
package/dist/index.js
CHANGED
|
@@ -423,5 +423,85 @@ export class PowerSyncManagementClient extends sdk.SDKClient {
|
|
|
423
423
|
getClientSessions = sdk.createPaginatedEndpoint(this.createEndpoint({
|
|
424
424
|
path: report.GET_CLIENT_SESSIONS
|
|
425
425
|
}));
|
|
426
|
+
/**
|
|
427
|
+
* Gets client connection reports for a PowerSync instance within a date range.
|
|
428
|
+
*
|
|
429
|
+
* @returns Promise resolving to connection report data including user counts and SDK breakdowns
|
|
430
|
+
* @example
|
|
431
|
+
* ```typescript
|
|
432
|
+
* const response = await client.getClientConnectionReports({
|
|
433
|
+
* org_id: 'org-123',
|
|
434
|
+
* app_id: 'app-456',
|
|
435
|
+
* id: 'instance-789',
|
|
436
|
+
* start: '2024-01-01T00:00:00Z',
|
|
437
|
+
* end: '2024-01-31T23:59:59Z'
|
|
438
|
+
* });
|
|
439
|
+
* console.log(response.users); // Total number of users
|
|
440
|
+
* console.log(response.sdks); // Array of SDK connection reports
|
|
441
|
+
* ```
|
|
442
|
+
* @deprecated Use `getConnectionsSummary` instead.
|
|
443
|
+
*/
|
|
444
|
+
getClientConnectionReports = this.createEndpoint({
|
|
445
|
+
path: report.DEPRECATED_GET_CLIENT_CONNECTION_DATA
|
|
446
|
+
});
|
|
447
|
+
/**
|
|
448
|
+
* Gets currently connected clients for a PowerSync instance.
|
|
449
|
+
*
|
|
450
|
+
* @returns Promise resolving to current connection data including user counts and SDK breakdowns
|
|
451
|
+
* @example
|
|
452
|
+
* ```typescript
|
|
453
|
+
* const response = await client.getConnectedClients({
|
|
454
|
+
* org_id: 'org-123',
|
|
455
|
+
* app_id: 'app-456',
|
|
456
|
+
* id: 'instance-789'
|
|
457
|
+
* });
|
|
458
|
+
* console.log(response.users); // Number of currently connected users
|
|
459
|
+
* console.log(response.sdks); // Array of current SDK connections
|
|
460
|
+
* ```
|
|
461
|
+
* @deprecated Use `getCurrentConnections` instead.
|
|
462
|
+
*/
|
|
463
|
+
getConnectedClients = this.createEndpoint({ path: report.DEPRECATED_GET_CONNECTED_CLIENTS });
|
|
464
|
+
/**
|
|
465
|
+
* Gets paginated general client connection analytics for a PowerSync instance.
|
|
466
|
+
* Returns connection events including connect/disconnect times, user agents, and SDK information.
|
|
467
|
+
*
|
|
468
|
+
* @returns Promise resolving to paginated connection analytics events. Also includes a `paginate` method for iterating through all pages.
|
|
469
|
+
* @example
|
|
470
|
+
* ```typescript
|
|
471
|
+
* // Single page request
|
|
472
|
+
* const response = await client.getGeneralClientConnectionAnalytics({
|
|
473
|
+
* org_id: 'org-123',
|
|
474
|
+
* app_id: 'app-456',
|
|
475
|
+
* id: 'instance-789',
|
|
476
|
+
* date_range: {
|
|
477
|
+
* start: '2024-01-01T00:00:00Z',
|
|
478
|
+
* end: '2024-01-31T23:59:59Z'
|
|
479
|
+
* },
|
|
480
|
+
* limit: 100
|
|
481
|
+
* });
|
|
482
|
+
* console.log(response.items); // Array of connection events
|
|
483
|
+
* console.log(response.total); // Total number of events
|
|
484
|
+
* console.log(response.more); // true if there are more pages
|
|
485
|
+
* console.log(response.cursor); // cursor for the next page
|
|
486
|
+
*
|
|
487
|
+
* // Iterate through all pages
|
|
488
|
+
* for await (const page of client.getGeneralClientConnectionAnalytics.paginate({
|
|
489
|
+
* org_id: 'org-123',
|
|
490
|
+
* app_id: 'app-456',
|
|
491
|
+
* id: 'instance-789',
|
|
492
|
+
* date_range: {
|
|
493
|
+
* start: '2024-01-01T00:00:00Z',
|
|
494
|
+
* end: '2024-01-31T23:59:59Z'
|
|
495
|
+
* },
|
|
496
|
+
* limit: 100
|
|
497
|
+
* })) {
|
|
498
|
+
* console.log(page.items); // Process each page
|
|
499
|
+
* }
|
|
500
|
+
* ```
|
|
501
|
+
* @deprecated Use `getClientSessions` instead.
|
|
502
|
+
*/
|
|
503
|
+
getGeneralClientConnectionAnalytics = sdk.createPaginatedEndpoint(this.createEndpoint({
|
|
504
|
+
path: report.DEPRECATED_GET_GENERAL_CLIENT_ANALYTICS
|
|
505
|
+
}));
|
|
426
506
|
}
|
|
427
507
|
//# 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":"AAAA,OAAO,KAAK,GAAG,MAAM,8BAA8B,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAC;AAErD,MAAM,GAAG,GAAG,MAAM,CAAC,UAAU,CAAC;AAC9B,MAAM,MAAM,GAAG,MAAM,CAAC,aAAa,CAAC;AACpC,MAAM,OAAO,GAAG,MAAM,CAAC,cAAc,CAAC;AACtC,MAAM,MAAM,GAAG,MAAM,CAAC,aAAa,CAAC;AACpC,MAAM,SAAS,GAAG,MAAM,CAAC,qBAAqB,
|
|
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.6f42cb4c",
|
|
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": "0.0.0-dev.
|
|
24
|
+
"@powersync/management-types": "0.0.0-dev.6f42cb4c"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/json-schema": "^7.0.15"
|