@pushwoosh/rpc-gateway-statistics-api 1.3.689
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/commonTypes.d.ts +18 -0
- package/commonTypes.js +3 -0
- package/data.d.ts +2 -0
- package/data.js +4192 -0
- package/index.d.ts +13 -0
- package/index.js +3 -0
- package/package.json +19 -0
- package/pushwoosh_statistics_statistics_v1.d.ts +796 -0
- package/pushwoosh_statistics_statistics_v1.js +3 -0
- package/pushwoosh_statistics_statistics_v2.d.ts +189 -0
- package/pushwoosh_statistics_statistics_v2.js +3 -0
- package/pushwoosh_statistics_statistics_v2_dashboards.d.ts +143 -0
- package/pushwoosh_statistics_statistics_v2_dashboards.js +3 -0
- package/pushwoosh_statistics_statistics_v2_overview.d.ts +59 -0
- package/pushwoosh_statistics_statistics_v2_overview.js +3 -0
- package/pushwoosh_statistics_statistics_v2_statistics.d.ts +706 -0
- package/pushwoosh_statistics_statistics_v2_statistics.js +3 -0
- package/pushwoosh_statistics_types.d.ts +23 -0
- package/pushwoosh_statistics_types.js +3 -0
- package/types.d.ts +59 -0
- package/types.js +3 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { StatisticsService as pushwoosh_statistics_statistics_v1_StatisticsService } from './pushwoosh_statistics_statistics_v1';
|
|
2
|
+
import { DashboardsService as pushwoosh_statistics_statistics_v2_dashboards_DashboardsService } from './pushwoosh_statistics_statistics_v2_dashboards';
|
|
3
|
+
import { MessagesService as pushwoosh_statistics_statistics_v2_MessagesService } from './pushwoosh_statistics_statistics_v2';
|
|
4
|
+
import { OverviewService as pushwoosh_statistics_statistics_v2_overview_OverviewService } from './pushwoosh_statistics_statistics_v2_overview';
|
|
5
|
+
import { StatisticsService as pushwoosh_statistics_statistics_v2_statistics_StatisticsService } from './pushwoosh_statistics_statistics_v2_statistics';
|
|
6
|
+
export type API = {
|
|
7
|
+
statisticsV1: pushwoosh_statistics_statistics_v1_StatisticsService;
|
|
8
|
+
dashboards: pushwoosh_statistics_statistics_v2_dashboards_DashboardsService;
|
|
9
|
+
messages: pushwoosh_statistics_statistics_v2_MessagesService;
|
|
10
|
+
overview: pushwoosh_statistics_statistics_v2_overview_OverviewService;
|
|
11
|
+
statisticsV2: pushwoosh_statistics_statistics_v2_statistics_StatisticsService;
|
|
12
|
+
};
|
|
13
|
+
export { data } from './data';
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pushwoosh/rpc-gateway-statistics-api",
|
|
3
|
+
"version": "1.3.689",
|
|
4
|
+
"description": "Statistics API gateway HTTP API Types and Data",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"module": "index.js",
|
|
7
|
+
"types": "index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://gitlab.corp.pushwoosh.com/statistics/statistics-api"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"RPC",
|
|
15
|
+
"Pushwoosh",
|
|
16
|
+
"API"
|
|
17
|
+
],
|
|
18
|
+
"author": "Pushwoosh"
|
|
19
|
+
}
|