@microsoft/applicationinsights-react-native 2.5.0-beta.2203-09 → 2.5.0-beta.2203-10

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.
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Microsoft Application Insights react native plugin, 2.5.0-beta.2203-09
2
+ * Microsoft Application Insights react native plugin, 2.5.0-beta.2203-10
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - React Native Plugin, 2.5.0-beta.2203-09
2
+ * Application Insights JavaScript SDK - React Native Plugin, 2.5.0-beta.2203-10
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
  export {};
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - React Native Plugin, 2.5.0-beta.2203-09
2
+ * Application Insights JavaScript SDK - React Native Plugin, 2.5.0-beta.2203-10
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
  export {};
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - React Native Plugin, 2.5.0-beta.2203-09
2
+ * Application Insights JavaScript SDK - React Native Plugin, 2.5.0-beta.2203-10
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
  export {};
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - React Native Plugin, 2.5.0-beta.2203-09
2
+ * Application Insights JavaScript SDK - React Native Plugin, 2.5.0-beta.2203-10
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
  /**
package/dist-esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Application Insights JavaScript SDK - React Native Plugin, 2.5.0-beta.2203-09
2
+ * Application Insights JavaScript SDK - React Native Plugin, 2.5.0-beta.2203-10
3
3
  * Copyright (c) Microsoft and contributors. All rights reserved.
4
4
  */
5
5
  import { ReactNativePlugin } from "./ReactNativePlugin";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/applicationinsights-react-native",
3
- "version": "2.5.0-beta.2203-09",
3
+ "version": "2.5.0-beta.2203-10",
4
4
  "description": "Microsoft Application Insights React Native Plugin",
5
5
  "main": "dist-esm/index.js",
6
6
  "types": "types/index.d.ts",
@@ -53,8 +53,8 @@
53
53
  "uglify-js": "^3.11.0"
54
54
  },
55
55
  "dependencies": {
56
- "@microsoft/applicationinsights-common": "2.8.0-beta.2203-09",
57
- "@microsoft/applicationinsights-core-js": "2.8.0-beta.2203-09",
56
+ "@microsoft/applicationinsights-common": "2.8.0-beta.2203-10",
57
+ "@microsoft/applicationinsights-core-js": "2.8.0-beta.2203-10",
58
58
  "@microsoft/applicationinsights-shims": "2.0.1",
59
59
  "@microsoft/dynamicproto-js": "^1.1.4"
60
60
  },
@@ -34,7 +34,7 @@ declare var global: Window;
34
34
  * @param target The target object to find and process the keys
35
35
  * @param callbackfn The function to call with the details
36
36
  */
37
- export function objForEachKey(target: any, callbackfn: (name: string, value: any) => void) {
37
+ export function objForEachKey(target: any, callbackfn: (name: string, value: any) => void) {
38
38
  if (target && isObject(target)) {
39
39
  for (let prop in target) {
40
40
  if (hasOwnProperty(target, prop)) {