@lightdash/common 0.1419.1 → 0.1420.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/types/coder.d.ts +4 -0
- package/package.json +1 -1
package/dist/types/coder.d.ts
CHANGED
@@ -10,6 +10,8 @@ export type ApiChartAsCodeListResponse = {
|
|
10
10
|
results: {
|
11
11
|
charts: ChartAsCode[];
|
12
12
|
missingIds: string[];
|
13
|
+
total: number;
|
14
|
+
offset: number;
|
13
15
|
};
|
14
16
|
};
|
15
17
|
export type ApiChartAsCodeUpsertResponse = {
|
@@ -31,6 +33,8 @@ export type ApiDashboardAsCodeListResponse = {
|
|
31
33
|
results: {
|
32
34
|
dashboards: DashboardAsCode[];
|
33
35
|
missingIds: string[];
|
36
|
+
total: number;
|
37
|
+
offset: number;
|
34
38
|
};
|
35
39
|
};
|
36
40
|
export type ApiDashboardAsCodeUpsertResponse = {
|