@schemastore/codecov 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 +1 -37
  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:47:03 GMT
13
+ * Last updated: Fri, Mar 27, 2026, 22:03:08 GMT
14
14
  * Dependencies: none
package/index.d.ts CHANGED
@@ -82,42 +82,6 @@ export type Default1 =
82
82
  | undefined
83
83
  )
84
84
  | undefined;
85
- export type Default3 = {
86
- target?: string | number;
87
- threshold?: string;
88
- /**
89
- * @deprecated
90
- */
91
- base?: string;
92
- flags?: unknown[];
93
- paths?: unknown[] | string;
94
- branches?: unknown[];
95
- if_not_found?: 'failure' | 'success';
96
- informational?: boolean;
97
- only_pulls?: boolean;
98
- if_ci_failed?: 'error' | 'success';
99
- flag_coverage_not_uploaded_behavior?: 'include' | 'exclude' | 'pass';
100
- [k: string]: unknown | undefined;
101
- } & (
102
- | {
103
- target?: string | number;
104
- threshold?: string;
105
- /**
106
- * @deprecated
107
- */
108
- base?: string;
109
- flags?: unknown[];
110
- paths?: unknown[] | string;
111
- branches?: unknown[];
112
- if_not_found?: 'failure' | 'success';
113
- informational?: boolean;
114
- only_pulls?: boolean;
115
- if_ci_failed?: 'error' | 'success';
116
- flag_coverage_not_uploaded_behavior?: 'include' | 'exclude' | 'pass';
117
- [k: string]: unknown | undefined;
118
- }
119
- | boolean
120
- );
121
85
 
122
86
  /**
123
87
  * Schema for codecov.yml files.
@@ -276,7 +240,7 @@ export interface JSONSchemaForCodecovConfigurationFiles {
276
240
  [k: string]: Default1 | undefined;
277
241
  };
278
242
  patch?: Default2 | 'off' | boolean;
279
- changes?: Default3;
243
+ changes?: Default;
280
244
  };
281
245
  [k: string]: unknown | undefined;
282
246
  };
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
  }