@datadog/mobile-react-native-session-replay 2.3.2-alpha.0 → 2.3.3-alpha.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.
- package/DatadogSDKReactNativeSessionReplay.podspec +1 -0
- package/lib/commonjs/index.js +0 -6
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/index.js +2 -2
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/index.d.ts +4 -2
- package/lib/typescript/nativeModulesTypes.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +5 -6
package/lib/commonjs/index.js
CHANGED
|
@@ -9,12 +9,6 @@ Object.defineProperty(exports, "SessionReplay", {
|
|
|
9
9
|
return _SessionReplay.SessionReplay;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
|
-
Object.defineProperty(exports, "SessionReplayConfiguration", {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function () {
|
|
15
|
-
return _SessionReplay.SessionReplayConfiguration;
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
12
|
Object.defineProperty(exports, "SessionReplayPrivacy", {
|
|
19
13
|
enumerable: true,
|
|
20
14
|
get: function () {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAOA","sourcesContent":["/*\n * Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.\n * This product includes software developed at Datadog (https://www.datadoghq.com/).\n * Copyright 2016-Present Datadog, Inc.\n */\n\nimport type { SessionReplayConfiguration } from './SessionReplay';\nimport { SessionReplay, SessionReplayPrivacy } from './SessionReplay';\n\nexport { SessionReplay, SessionReplayPrivacy };\n\nexport type { SessionReplayConfiguration };\n"]}
|
package/lib/module/index.js
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
4
4
|
* Copyright 2016-Present Datadog, Inc.
|
|
5
5
|
*/
|
|
6
|
-
import { SessionReplay,
|
|
7
|
-
export { SessionReplay,
|
|
6
|
+
import { SessionReplay, SessionReplayPrivacy } from './SessionReplay';
|
|
7
|
+
export { SessionReplay, SessionReplayPrivacy };
|
|
8
8
|
//# sourceMappingURL=index.js.map
|
package/lib/module/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"names":["SessionReplay","
|
|
1
|
+
{"version":3,"sources":["index.ts"],"names":["SessionReplay","SessionReplayPrivacy"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AAGA,SAASA,aAAT,EAAwBC,oBAAxB,QAAoD,iBAApD;AAEA,SAASD,aAAT,EAAwBC,oBAAxB","sourcesContent":["/*\n * Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.\n * This product includes software developed at Datadog (https://www.datadoghq.com/).\n * Copyright 2016-Present Datadog, Inc.\n */\n\nimport type { SessionReplayConfiguration } from './SessionReplay';\nimport { SessionReplay, SessionReplayPrivacy } from './SessionReplay';\n\nexport { SessionReplay, SessionReplayPrivacy };\n\nexport type { SessionReplayConfiguration };\n"]}
|
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import type { SessionReplayConfiguration } from './SessionReplay';
|
|
2
|
+
import { SessionReplay, SessionReplayPrivacy } from './SessionReplay';
|
|
3
|
+
export { SessionReplay, SessionReplayPrivacy };
|
|
4
|
+
export type { SessionReplayConfiguration };
|
|
@@ -3,7 +3,7 @@ import type { Spec as NativeDdSessionReplay } from './specs/NativeDdSessionRepla
|
|
|
3
3
|
* In this file, native modules types extend the specs for TurboModules.
|
|
4
4
|
* As we cannot use enums or classes in the specs, we override methods using them here.
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
type PrivacyLevel = 'MASK' | 'MASK_USER_INPUT' | 'ALLOW';
|
|
7
7
|
/**
|
|
8
8
|
* The entry point to use Datadog's Session Replay feature.
|
|
9
9
|
*/
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -4,10 +4,9 @@
|
|
|
4
4
|
* Copyright 2016-Present Datadog, Inc.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
SessionReplayConfiguration,
|
|
10
|
-
SessionReplayPrivacy
|
|
11
|
-
} from './SessionReplay';
|
|
7
|
+
import type { SessionReplayConfiguration } from './SessionReplay';
|
|
8
|
+
import { SessionReplay, SessionReplayPrivacy } from './SessionReplay';
|
|
12
9
|
|
|
13
|
-
export { SessionReplay,
|
|
10
|
+
export { SessionReplay, SessionReplayPrivacy };
|
|
11
|
+
|
|
12
|
+
export type { SessionReplayConfiguration };
|