@schemastore/codecov 1.0.0 → 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 +1 -37
- package/package.json +2 -1
package/README.md
CHANGED
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?:
|
|
243
|
+
changes?: Default;
|
|
280
244
|
};
|
|
281
245
|
[k: string]: unknown | undefined;
|
|
282
246
|
};
|