@datadog/mobile-react-native-session-replay 2.3.1-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.
@@ -25,6 +25,7 @@ Pod::Spec.new do |s|
25
25
  s.test_spec 'Tests' do |test_spec|
26
26
  test_spec.dependency "React-RCTText"
27
27
  test_spec.source_files = 'ios/Tests/*.swift'
28
+ test_spec.platforms = { :ios => "13.4", :tvos => "13.4" }
28
29
  end
29
30
 
30
31
 
@@ -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":";;;;;;;;;;;;;;;;;;;;;;;;AAMA","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 {\n SessionReplay,\n SessionReplayConfiguration,\n SessionReplayPrivacy\n} from './SessionReplay';\n\nexport { SessionReplay, SessionReplayConfiguration, SessionReplayPrivacy };\n"]}
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"]}
@@ -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, SessionReplayConfiguration, SessionReplayPrivacy } from './SessionReplay';
7
- export { SessionReplay, SessionReplayConfiguration, SessionReplayPrivacy };
6
+ import { SessionReplay, SessionReplayPrivacy } from './SessionReplay';
7
+ export { SessionReplay, SessionReplayPrivacy };
8
8
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts"],"names":["SessionReplay","SessionReplayConfiguration","SessionReplayPrivacy"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AAEA,SACIA,aADJ,EAEIC,0BAFJ,EAGIC,oBAHJ,QAIO,iBAJP;AAMA,SAASF,aAAT,EAAwBC,0BAAxB,EAAoDC,oBAApD","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 {\n SessionReplay,\n SessionReplayConfiguration,\n SessionReplayPrivacy\n} from './SessionReplay';\n\nexport { SessionReplay, SessionReplayConfiguration, SessionReplayPrivacy };\n"]}
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 { SessionReplay, SessionReplayConfiguration, SessionReplayPrivacy } from './SessionReplay';
2
- export { SessionReplay, SessionReplayConfiguration, SessionReplayPrivacy };
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
- declare type PrivacyLevel = 'MASK' | 'MASK_USER_INPUT' | 'ALLOW';
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datadog/mobile-react-native-session-replay",
3
- "version": "2.3.1-alpha.0",
3
+ "version": "2.3.3-alpha.0",
4
4
  "description": "A client-side React Native module to enable session replay with Datadog",
5
5
  "keywords": [
6
6
  "datadog",
package/src/index.ts CHANGED
@@ -4,10 +4,9 @@
4
4
  * Copyright 2016-Present Datadog, Inc.
5
5
  */
6
6
 
7
- import {
8
- SessionReplay,
9
- SessionReplayConfiguration,
10
- SessionReplayPrivacy
11
- } from './SessionReplay';
7
+ import type { SessionReplayConfiguration } from './SessionReplay';
8
+ import { SessionReplay, SessionReplayPrivacy } from './SessionReplay';
12
9
 
13
- export { SessionReplay, SessionReplayConfiguration, SessionReplayPrivacy };
10
+ export { SessionReplay, SessionReplayPrivacy };
11
+
12
+ export type { SessionReplayConfiguration };