@dynatrace/react-native-plugin 2.225.0 → 2.231.0

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 (91) hide show
  1. package/README.md +31 -6
  2. package/android/build.gradle +1 -1
  3. package/android/src/main/java/com/dynatrace/android/agent/DynatraceRNBridge.java +10 -0
  4. package/files/plugin.gradle +1 -1
  5. package/ios/DynatraceRNBridge.m +11 -0
  6. package/ios/lib/Dynatrace.xcframework/Info.plist +69 -0
  7. package/ios/lib/Dynatrace.xcframework/ios-arm64_armv7/Dynatrace.framework/Dynatrace +0 -0
  8. package/ios/lib/Dynatrace.xcframework/ios-arm64_armv7/Dynatrace.framework/Headers/Dynatrace.h +952 -0
  9. package/ios/lib/Dynatrace.xcframework/ios-arm64_armv7/Dynatrace.framework/Headers/Framework.h +18 -0
  10. package/ios/lib/Dynatrace.xcframework/ios-arm64_armv7/Dynatrace.framework/Info.plist +0 -0
  11. package/ios/lib/Dynatrace.xcframework/ios-arm64_armv7/Dynatrace.framework/Modules/module.modulemap +6 -0
  12. package/ios/lib/Dynatrace.xcframework/ios-arm64_i386_x86_64-simulator/Dynatrace.framework/Dynatrace +0 -0
  13. package/ios/lib/Dynatrace.xcframework/ios-arm64_i386_x86_64-simulator/Dynatrace.framework/Headers/Dynatrace.h +952 -0
  14. package/ios/lib/Dynatrace.xcframework/ios-arm64_i386_x86_64-simulator/Dynatrace.framework/Headers/Framework.h +18 -0
  15. package/ios/lib/Dynatrace.xcframework/ios-arm64_i386_x86_64-simulator/Dynatrace.framework/Info.plist +0 -0
  16. package/ios/lib/Dynatrace.xcframework/ios-arm64_i386_x86_64-simulator/Dynatrace.framework/Modules/module.modulemap +6 -0
  17. package/ios/lib/Dynatrace.xcframework/ios-arm64_i386_x86_64-simulator/Dynatrace.framework/_CodeSignature/CodeResources +147 -0
  18. package/ios/lib/Dynatrace.xcframework/tvos-arm64/Dynatrace.framework/Dynatrace +0 -0
  19. package/ios/lib/Dynatrace.xcframework/tvos-arm64/Dynatrace.framework/Headers/Dynatrace.h +952 -0
  20. package/ios/lib/Dynatrace.xcframework/tvos-arm64/Dynatrace.framework/Headers/Framework.h +18 -0
  21. package/ios/lib/Dynatrace.xcframework/tvos-arm64/Dynatrace.framework/Info.plist +0 -0
  22. package/ios/lib/Dynatrace.xcframework/tvos-arm64/Dynatrace.framework/Modules/module.modulemap +6 -0
  23. package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Dynatrace +0 -0
  24. package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Headers/Dynatrace.h +952 -0
  25. package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Headers/Framework.h +18 -0
  26. package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Info.plist +0 -0
  27. package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/Modules/module.modulemap +6 -0
  28. package/ios/lib/Dynatrace.xcframework/tvos-arm64_x86_64-simulator/Dynatrace.framework/_CodeSignature/CodeResources +135 -0
  29. package/lib/community/Picker.js +33 -0
  30. package/lib/dynatrace-reporter.js +30 -0
  31. package/lib/dynatrace-transformer.js +50 -0
  32. package/lib/instrumentor/base/Application.js +17 -0
  33. package/lib/instrumentor/base/Dynatrace.js +275 -0
  34. package/lib/instrumentor/base/DynatraceAction.js +66 -0
  35. package/lib/instrumentor/base/DynatraceBridge.js +5 -0
  36. package/lib/instrumentor/base/ElementHelper.js +58 -0
  37. package/lib/instrumentor/base/ErrorHandler.js +52 -0
  38. package/lib/instrumentor/base/Logger.js +15 -0
  39. package/lib/instrumentor/base/NullAction.js +27 -0
  40. package/lib/instrumentor/base/Picker.js +32 -0
  41. package/lib/instrumentor/base/RefreshControl.js +35 -0
  42. package/lib/instrumentor/base/Touchable.js +103 -0
  43. package/lib/instrumentor/base/UserPrivacyOptions.js +22 -0
  44. package/lib/instrumentor/base/configuration/AutoStartupConfiguration.js +17 -0
  45. package/lib/instrumentor/base/configuration/Configuration.js +26 -0
  46. package/lib/instrumentor/base/configuration/ConfigurationDefaults.js +13 -0
  47. package/lib/instrumentor/base/configuration/ManualStartupConfiguration.js +34 -0
  48. package/lib/instrumentor/base/interface/IAutoConfiguration.js +2 -0
  49. package/lib/instrumentor/base/interface/IDynatrace.js +2 -0
  50. package/lib/instrumentor/base/interface/IDynatraceAction.js +2 -0
  51. package/lib/instrumentor/base/interface/IDynatraceBridge.js +2 -0
  52. package/lib/instrumentor/base/interface/IDynatraceProperties.js +2 -0
  53. package/lib/instrumentor/base/interface/ILogger.js +2 -0
  54. package/lib/instrumentor/base/model/DataCollectionLevel.js +11 -0
  55. package/lib/instrumentor/base/model/LogLevel.js +8 -0
  56. package/lib/instrumentor/base/model/Platform.js +9 -0
  57. package/lib/instrumentor/base/util/StringUtils.js +8 -0
  58. package/lib/instrumentor/dynatrace-instrumentation.js +1 -0
  59. package/lib/instrumentor/model/reference.js +2 -0
  60. package/lib/instrumentor/model/types.js +16 -0
  61. package/lib/instrumentor/parser/babel.js +63 -0
  62. package/lib/jsx-runtime.js +41 -0
  63. package/lib/metro/getSourceMapInfo.js +22 -0
  64. package/lib/react/Component.js +68 -0
  65. package/lib/react-native/RefreshControl.js +14 -0
  66. package/lib/react-native/Touchables.js +63 -0
  67. package/lib/react-native/index.js +12 -0
  68. package/lib/react-native.js +25 -0
  69. package/package.json +155 -1
  70. package/scripts/android.js +123 -0
  71. package/scripts/api/CustomArguments.js +2 -0
  72. package/scripts/api/CustomArgumentsBuilder.js +2 -0
  73. package/scripts/api/model/Platform.js +8 -0
  74. package/scripts/config.js +73 -0
  75. package/scripts/core/CustomArgumentsBuilderImpl.js +22 -0
  76. package/scripts/core/CustomArgumentsImpl.js +33 -0
  77. package/scripts/core/InstrumentCall.js +89 -0
  78. package/scripts/fileOperationHelper.js +184 -0
  79. package/scripts/install.js +47 -0
  80. package/scripts/instrument.js +7 -0
  81. package/scripts/ios.js +179 -0
  82. package/scripts/logger.js +79 -0
  83. package/scripts/pathsConstants.js +60 -0
  84. package/scripts/start.js +6 -0
  85. package/scripts/uninstall.js +80 -0
  86. package/scripts/util/CustomArgumentUtil.js +57 -0
  87. package/scripts/util/SourceMapUtil.js +30 -0
  88. package/scripts/util/StartUtil.js +9 -0
  89. package/scripts/util/instrumentUtil.js +28 -0
  90. package/typings/react-native-dynatrace.d.ts +6 -0
  91. package/util/constants.js +0 -4
@@ -0,0 +1,18 @@
1
+ //
2
+ // Dynatrace-Framework.h
3
+ // Dynatrace-Framework
4
+ //
5
+ // Created by Neal T. Leverenz on 11/25/15.
6
+ // Copyright © 2015-2016 Dynatrace LLC. All rights reserved.
7
+ //
8
+
9
+ #import <UIKit/UIKit.h>
10
+
11
+ //! Project version number for Dynatrace-Framework.
12
+ FOUNDATION_EXPORT double Dynatrace_FrameworkVersionNumber;
13
+
14
+ //! Project version string for Dynatrace-Framework.
15
+ FOUNDATION_EXPORT const unsigned char Dynatrace_FrameworkVersionString[];
16
+
17
+ // In this header, you should import all the public headers of your framework
18
+ #import "Dynatrace.h"
@@ -0,0 +1,6 @@
1
+ framework module Dynatrace {
2
+ umbrella header "Framework.h"
3
+
4
+ export *
5
+ module * { export * }
6
+ }
@@ -0,0 +1,147 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>files</key>
6
+ <dict>
7
+ <key>Headers/Dynatrace.h</key>
8
+ <data>
9
+ 08B/rXRJ/U7Nz9k76LvdO4tEMgE=
10
+ </data>
11
+ <key>Headers/Framework.h</key>
12
+ <data>
13
+ hbWCbhq55d3gxKmT0rNr7XvJlfI=
14
+ </data>
15
+ <key>Info.plist</key>
16
+ <data>
17
+ pe1j1hbnZd9/MrnPfYwy4kLMl4w=
18
+ </data>
19
+ <key>Modules/module.modulemap</key>
20
+ <data>
21
+ Ik60+GvaArJubZRBguy5mMrX2dY=
22
+ </data>
23
+ </dict>
24
+ <key>files2</key>
25
+ <dict>
26
+ <key>Headers/Dynatrace.h</key>
27
+ <dict>
28
+ <key>hash</key>
29
+ <data>
30
+ 08B/rXRJ/U7Nz9k76LvdO4tEMgE=
31
+ </data>
32
+ <key>hash2</key>
33
+ <data>
34
+ Axt48ZGCuQQp2dck/PrlAbOh2Fl5ah2qHwbet4Hb/yI=
35
+ </data>
36
+ </dict>
37
+ <key>Headers/Framework.h</key>
38
+ <dict>
39
+ <key>hash</key>
40
+ <data>
41
+ hbWCbhq55d3gxKmT0rNr7XvJlfI=
42
+ </data>
43
+ <key>hash2</key>
44
+ <data>
45
+ uATfbZu3lX8Rq+Sam+OyoFPIP1k1BAXnvNSvl18wybQ=
46
+ </data>
47
+ </dict>
48
+ <key>Modules/module.modulemap</key>
49
+ <dict>
50
+ <key>hash</key>
51
+ <data>
52
+ Ik60+GvaArJubZRBguy5mMrX2dY=
53
+ </data>
54
+ <key>hash2</key>
55
+ <data>
56
+ 7kYM2zFqtPBdolrK9KpAEZBYhWR+YhdxgOSGi/u+rTQ=
57
+ </data>
58
+ </dict>
59
+ </dict>
60
+ <key>rules</key>
61
+ <dict>
62
+ <key>^.*</key>
63
+ <true/>
64
+ <key>^.*\.lproj/</key>
65
+ <dict>
66
+ <key>optional</key>
67
+ <true/>
68
+ <key>weight</key>
69
+ <real>1000</real>
70
+ </dict>
71
+ <key>^.*\.lproj/locversion.plist$</key>
72
+ <dict>
73
+ <key>omit</key>
74
+ <true/>
75
+ <key>weight</key>
76
+ <real>1100</real>
77
+ </dict>
78
+ <key>^Base\.lproj/</key>
79
+ <dict>
80
+ <key>weight</key>
81
+ <real>1010</real>
82
+ </dict>
83
+ <key>^version.plist$</key>
84
+ <true/>
85
+ </dict>
86
+ <key>rules2</key>
87
+ <dict>
88
+ <key>.*\.dSYM($|/)</key>
89
+ <dict>
90
+ <key>weight</key>
91
+ <real>11</real>
92
+ </dict>
93
+ <key>^(.*/)?\.DS_Store$</key>
94
+ <dict>
95
+ <key>omit</key>
96
+ <true/>
97
+ <key>weight</key>
98
+ <real>2000</real>
99
+ </dict>
100
+ <key>^.*</key>
101
+ <true/>
102
+ <key>^.*\.lproj/</key>
103
+ <dict>
104
+ <key>optional</key>
105
+ <true/>
106
+ <key>weight</key>
107
+ <real>1000</real>
108
+ </dict>
109
+ <key>^.*\.lproj/locversion.plist$</key>
110
+ <dict>
111
+ <key>omit</key>
112
+ <true/>
113
+ <key>weight</key>
114
+ <real>1100</real>
115
+ </dict>
116
+ <key>^Base\.lproj/</key>
117
+ <dict>
118
+ <key>weight</key>
119
+ <real>1010</real>
120
+ </dict>
121
+ <key>^Info\.plist$</key>
122
+ <dict>
123
+ <key>omit</key>
124
+ <true/>
125
+ <key>weight</key>
126
+ <real>20</real>
127
+ </dict>
128
+ <key>^PkgInfo$</key>
129
+ <dict>
130
+ <key>omit</key>
131
+ <true/>
132
+ <key>weight</key>
133
+ <real>20</real>
134
+ </dict>
135
+ <key>^embedded\.provisionprofile$</key>
136
+ <dict>
137
+ <key>weight</key>
138
+ <real>20</real>
139
+ </dict>
140
+ <key>^version\.plist$</key>
141
+ <dict>
142
+ <key>weight</key>
143
+ <real>20</real>
144
+ </dict>
145
+ </dict>
146
+ </dict>
147
+ </plist>