@react-native-windows/telemetry 0.71.0 → 0.71.1
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.
|
@@ -50,7 +50,7 @@ export declare const CodedErrors: {
|
|
|
50
50
|
NeedCodegen: number;
|
|
51
51
|
InvalidCodegenConfig: number;
|
|
52
52
|
};
|
|
53
|
-
export
|
|
53
|
+
export type CodedErrorType = keyof typeof CodedErrors;
|
|
54
54
|
/**
|
|
55
55
|
* Represents an error whose message might contain user-originating content,
|
|
56
56
|
* therefore when transmitting telemetry, only the type should be sent.
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
* @format
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
7
|
-
export
|
|
6
|
+
export type OptionSanitizer = (key: string, value: any) => any;
|
|
7
|
+
export type YargsOptionsType = Record<string, any>;
|
|
8
8
|
export interface CommanderOptionsType extends Record<string, any> {
|
|
9
9
|
logging?: boolean;
|
|
10
10
|
telemetry?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-windows/telemetry",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "lib-commonjs/index.js",
|
|
6
6
|
"typings": "lib-commonjs/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"watch": "rnw-scripts watch"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@react-native-windows/fs": "0.71.
|
|
21
|
+
"@react-native-windows/fs": "0.71.1",
|
|
22
22
|
"@typescript-eslint/eslint-plugin": "^5.30.5",
|
|
23
23
|
"@typescript-eslint/parser": "^5.30.5",
|
|
24
24
|
"@xmldom/xmldom": "^0.7.7",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"lookpath": "^1.2.1",
|
|
45
45
|
"prettier": "^2.4.1",
|
|
46
46
|
"semver": "^7.3.5",
|
|
47
|
-
"typescript": "^4.
|
|
47
|
+
"typescript": "^4.9.5"
|
|
48
48
|
},
|
|
49
49
|
"files": [
|
|
50
50
|
"lib-commonjs"
|