@schemastore/bigconfig 1.0.1 → 1.0.2
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/README.md +1 -1
- package/index.d.ts +5 -10
- package/package.json +1 -1
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -23,7 +23,6 @@ export type ColumnSelectors = ColumnSelector[];
|
|
|
23
23
|
export type TagDefinitions = TagDefinition[];
|
|
24
24
|
export type RowCreationTimes = RowCreationTimes1;
|
|
25
25
|
export type TagIds = string[];
|
|
26
|
-
export type ColumnSelectors1 = ColumnSelector[];
|
|
27
26
|
export type SavedMetricId = string;
|
|
28
27
|
export type PredefinedMetric =
|
|
29
28
|
| 'PERCENT_NULL'
|
|
@@ -99,14 +98,10 @@ export type PredefinedMetric =
|
|
|
99
98
|
| 'FRESHNESS'
|
|
100
99
|
| 'VOLUME';
|
|
101
100
|
export type Metrics = SimpleMetricDefinition[];
|
|
102
|
-
export type ColumnSelectors2 = ColumnSelector[];
|
|
103
|
-
export type Metrics1 = SimpleMetricDefinition[];
|
|
104
|
-
export type TagId1 = string;
|
|
105
101
|
export type Deployments = TagDeployment[];
|
|
106
102
|
export type TagDeployments = TagDeploymentSuite[];
|
|
107
103
|
export type FqTableName = string;
|
|
108
104
|
export type ColumnName = string;
|
|
109
|
-
export type Metrics2 = SimpleMetricDefinition[];
|
|
110
105
|
export type Columns = ColumnMetricDeployment[];
|
|
111
106
|
export type TableMetrics = SimpleMetricDefinition[];
|
|
112
107
|
export type RowCreationTime = string;
|
|
@@ -140,7 +135,7 @@ export interface ColumnSelector {
|
|
|
140
135
|
}
|
|
141
136
|
export interface RowCreationTimes1 {
|
|
142
137
|
tag_ids?: TagIds;
|
|
143
|
-
column_selectors?:
|
|
138
|
+
column_selectors?: ColumnSelectors;
|
|
144
139
|
[k: string]: unknown | undefined;
|
|
145
140
|
}
|
|
146
141
|
export interface SavedMetricDefinitions {
|
|
@@ -251,9 +246,9 @@ export interface SimpleCollection {
|
|
|
251
246
|
[k: string]: unknown | undefined;
|
|
252
247
|
}
|
|
253
248
|
export interface TagDeployment {
|
|
254
|
-
column_selectors?:
|
|
255
|
-
metrics:
|
|
256
|
-
tag_id?:
|
|
249
|
+
column_selectors?: ColumnSelectors;
|
|
250
|
+
metrics: Metrics;
|
|
251
|
+
tag_id?: TagId;
|
|
257
252
|
[k: string]: unknown | undefined;
|
|
258
253
|
}
|
|
259
254
|
export interface TableDeploymentSuite {
|
|
@@ -270,6 +265,6 @@ export interface TableDeployment {
|
|
|
270
265
|
}
|
|
271
266
|
export interface ColumnMetricDeployment {
|
|
272
267
|
column_name: ColumnName;
|
|
273
|
-
metrics:
|
|
268
|
+
metrics: Metrics;
|
|
274
269
|
[k: string]: unknown | undefined;
|
|
275
270
|
}
|
package/package.json
CHANGED