@arms/rum-core 0.0.32 → 0.0.33
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/lib/types/client.d.ts
CHANGED
package/lib/types/rum-event.d.ts
CHANGED
|
@@ -116,8 +116,8 @@ export type RumEvent = RumViewEvent | RumResourceEvent | RumExceptionEvent | Rum
|
|
|
116
116
|
export declare enum AppType {
|
|
117
117
|
browser = "browser",
|
|
118
118
|
miniapp = "miniapp",
|
|
119
|
-
|
|
120
|
-
|
|
119
|
+
minigame = "minigame",
|
|
120
|
+
uniapp = "uniapp"
|
|
121
121
|
}
|
|
122
122
|
export interface RumEventBundle {
|
|
123
123
|
app: {
|
package/lib/types/rum-event.js
CHANGED
|
@@ -24,7 +24,7 @@ var ResourceStatus = exports.ResourceStatus = /*#__PURE__*/function (ResourceSta
|
|
|
24
24
|
var AppType = exports.AppType = /*#__PURE__*/function (AppType) {
|
|
25
25
|
AppType["browser"] = "browser";
|
|
26
26
|
AppType["miniapp"] = "miniapp";
|
|
27
|
-
AppType["uniapp"] = "uniapp";
|
|
28
27
|
AppType["minigame"] = "minigame";
|
|
28
|
+
AppType["uniapp"] = "uniapp";
|
|
29
29
|
return AppType;
|
|
30
30
|
}({});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arms/rum-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.33",
|
|
4
4
|
"description": "arms rum javascript sdk core",
|
|
5
5
|
"author": "guangli.fj <guangli.fj@alibaba-inc.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -24,8 +24,10 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"events": "^3.3.0"
|
|
26
26
|
},
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"@babel/runtime": "^7.24.5"
|
|
29
|
+
},
|
|
27
30
|
"devDependencies": {
|
|
28
|
-
"@babel/runtime": "^7.24.5",
|
|
29
31
|
"typescript": "^4.9.4"
|
|
30
32
|
}
|
|
31
33
|
}
|