@vizzly/api-client 0.0.57 → 0.0.59
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.
|
@@ -170,7 +170,7 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
170
170
|
primaryDateFieldId?: string | undefined;
|
|
171
171
|
}>): Promise<import("../types").Response<DataOptimiser.StatusResponse<{
|
|
172
172
|
create_snapshot: DataOptimiser.ActionStatus<{
|
|
173
|
-
|
|
173
|
+
snapshotDataSourceFields: DataOptimiser.DataSourceFields;
|
|
174
174
|
}>;
|
|
175
175
|
}>>>;
|
|
176
176
|
/** Send request to create a snapshot */
|
|
@@ -8,6 +8,11 @@ export type DashboardFromAPI = {
|
|
|
8
8
|
parent_dashboard_id: string | null;
|
|
9
9
|
updated_at: string;
|
|
10
10
|
webhook_id: string | null;
|
|
11
|
+
latest_dashboard_snapshot_id: null | string;
|
|
12
|
+
recent_snapshots: null | Array<{
|
|
13
|
+
id: string;
|
|
14
|
+
inserted_at: string;
|
|
15
|
+
}>;
|
|
11
16
|
};
|
|
12
17
|
export type Dashboard = DashboardFromAPI & {
|
|
13
18
|
/**
|
package/dist/types.d.ts
CHANGED
|
@@ -473,6 +473,7 @@ export declare namespace DataOptimiser {
|
|
|
473
473
|
id: string;
|
|
474
474
|
address: string[];
|
|
475
475
|
data_type: string;
|
|
476
|
+
normalized_data_type: string;
|
|
476
477
|
}>;
|
|
477
478
|
type EphemeralDataSourceFields = Array<Omit<DataSourceFields[number], 'id'>>;
|
|
478
479
|
type DimensionFieldsMapping = Array<{
|
|
@@ -518,6 +519,7 @@ export declare namespace DataOptimiser {
|
|
|
518
519
|
plannedOutcome: any;
|
|
519
520
|
};
|
|
520
521
|
}> = {
|
|
522
|
+
consolidatedStatus: ActionResultStatus;
|
|
521
523
|
dataConnections: {
|
|
522
524
|
dataTeamSnowflake: boolean | null;
|
|
523
525
|
gtiCommonSnowflake: boolean | null;
|