@sentio/api 1.0.5-rc.1 → 1.0.5-rc.3
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/src/types.gen.d.ts +3 -9
- package/package.json +1 -1
- package/src/types.gen.ts +3 -9
package/dist/src/types.gen.d.ts
CHANGED
|
@@ -1520,6 +1520,7 @@ export declare namespace common {
|
|
|
1520
1520
|
type?: SegmentationQueryResourceType;
|
|
1521
1521
|
cohortsId?: string;
|
|
1522
1522
|
cohortsQuery?: CohortsQuery;
|
|
1523
|
+
multipleNames?: Array<string>;
|
|
1523
1524
|
};
|
|
1524
1525
|
type SegmentationQueryResourceType = 'EVENTS' | 'COHORTS';
|
|
1525
1526
|
type SegmentationQuerySelectorExpr = {
|
|
@@ -3356,9 +3357,7 @@ export declare namespace web_service {
|
|
|
3356
3357
|
timeRange?: common.TimeRange;
|
|
3357
3358
|
};
|
|
3358
3359
|
type ExportDashboardResponse = {
|
|
3359
|
-
dashboardJson?:
|
|
3360
|
-
[key: string]: unknown;
|
|
3361
|
-
};
|
|
3360
|
+
dashboardJson?: Dashboard;
|
|
3362
3361
|
};
|
|
3363
3362
|
type GetDashboardHistoryResponse = {
|
|
3364
3363
|
histories?: Array<DashboardHistory>;
|
|
@@ -3373,12 +3372,7 @@ export declare namespace web_service {
|
|
|
3373
3372
|
* The id of the target dashboard to import into.
|
|
3374
3373
|
*/
|
|
3375
3374
|
dashboardId: string;
|
|
3376
|
-
|
|
3377
|
-
* The json data of a previously exported dashboard.
|
|
3378
|
-
*/
|
|
3379
|
-
dashboardJson: {
|
|
3380
|
-
[key: string]: unknown;
|
|
3381
|
-
};
|
|
3375
|
+
dashboardJson: Dashboard;
|
|
3382
3376
|
/**
|
|
3383
3377
|
* Override the layout of target dashboard.
|
|
3384
3378
|
*/
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -1525,6 +1525,7 @@ export namespace common {
|
|
|
1525
1525
|
type?: SegmentationQueryResourceType;
|
|
1526
1526
|
cohortsId?: string;
|
|
1527
1527
|
cohortsQuery?: CohortsQuery;
|
|
1528
|
+
multipleNames?: Array<string>;
|
|
1528
1529
|
};
|
|
1529
1530
|
export type SegmentationQueryResourceType = 'EVENTS' | 'COHORTS';
|
|
1530
1531
|
export type SegmentationQuerySelectorExpr = {
|
|
@@ -3370,9 +3371,7 @@ export namespace web_service {
|
|
|
3370
3371
|
timeRange?: common.TimeRange;
|
|
3371
3372
|
};
|
|
3372
3373
|
export type ExportDashboardResponse = {
|
|
3373
|
-
dashboardJson?:
|
|
3374
|
-
[key: string]: unknown;
|
|
3375
|
-
};
|
|
3374
|
+
dashboardJson?: Dashboard;
|
|
3376
3375
|
};
|
|
3377
3376
|
export type GetDashboardHistoryResponse = {
|
|
3378
3377
|
histories?: Array<DashboardHistory>;
|
|
@@ -3387,12 +3386,7 @@ export namespace web_service {
|
|
|
3387
3386
|
* The id of the target dashboard to import into.
|
|
3388
3387
|
*/
|
|
3389
3388
|
dashboardId: string;
|
|
3390
|
-
|
|
3391
|
-
* The json data of a previously exported dashboard.
|
|
3392
|
-
*/
|
|
3393
|
-
dashboardJson: {
|
|
3394
|
-
[key: string]: unknown;
|
|
3395
|
-
};
|
|
3389
|
+
dashboardJson: Dashboard;
|
|
3396
3390
|
/**
|
|
3397
3391
|
* Override the layout of target dashboard.
|
|
3398
3392
|
*/
|