@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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +5 -10
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -10,5 +10,5 @@ Files were exported from https://github.com/ffflorian/schemastore-updater/tree/m
10
10
 
11
11
  ## Additional Details
12
12
 
13
- * Last updated: Sun, Mar 15, 2026, 21:46:51 GMT
13
+ * Last updated: Fri, Mar 27, 2026, 22:02:55 GMT
14
14
  * Dependencies: none
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?: ColumnSelectors1;
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?: ColumnSelectors2;
255
- metrics: Metrics1;
256
- tag_id?: TagId1;
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: Metrics2;
268
+ metrics: Metrics;
274
269
  [k: string]: unknown | undefined;
275
270
  }
package/package.json CHANGED
@@ -6,5 +6,5 @@
6
6
  "private": false,
7
7
  "repository": "https://github.com/ffflorian/schemastore-updater",
8
8
  "types": "index.d.ts",
9
- "version": "1.0.1"
9
+ "version": "1.0.2"
10
10
  }