You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@arextest/web-record-sdk

Package Overview
Dependencies
Maintainers
0
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arextest/web-record-sdk - npm Package Compare versions

Comparing version
0.0.6
to
0.0.7
+5
-5
dist/types/sdk.d.ts

@@ -8,6 +8,6 @@ import { recordOptions } from 'rrweb/typings/types';

};
export interface ArexManualRecordSdkOptions extends recordOptions<any> {
export interface WebManualRecordSdkOptions extends recordOptions<any> {
tags?: Tags;
}
export interface ArexRecordSdkOptions extends ArexManualRecordSdkOptions {
export interface WebRecordSdkOptions extends WebManualRecordSdkOptions {
appId: string;

@@ -19,3 +19,3 @@ tenantCode: string;

}
export default class ArexRecordSdk {
export default class WebRecordSdk {
private events;

@@ -29,4 +29,4 @@ private readonly appId;

private tags;
constructor(options: ArexRecordSdkOptions);
record(recordOptions?: ArexManualRecordSdkOptions): {
constructor(options: WebRecordSdkOptions);
record(recordOptions?: WebManualRecordSdkOptions): {
stop: () => void;

@@ -33,0 +33,0 @@ };

{
"name": "@arextest/web-record-sdk",
"version": "0.0.6",
"version": "0.0.7",
"type": "module",

@@ -5,0 +5,0 @@ "main": "dist/web-record-sdk.umd.js",

@@ -21,3 +21,3 @@ ### AREX RECORD SDK

s.onload = function () {
new w.AREX_RECORD_SDK({
new w.AREX_WEB_RECORD_SDK({
appId: '<appId>',

@@ -35,5 +35,5 @@ tenantCode: '<tenantCode>',

```javascript
import ArexRecordSdk from '@arextest/web-record-sdk';
import WebRecordSdk from '@arextest/web-record-sdk';
new ArexRecordSdk({
new WebRecordSdk({
appId: '<appId>',

@@ -47,5 +47,5 @@ tenantCode: '<tenantCode>'

```javascript
import ArexRecordSdk from '@arextest/web-record-sdk';
import WebRecordSdk from '@arextest/web-record-sdk';
const skd = new ArexRecordSdk({
const skd = new WebRecordSdk({
appId: '<appId>',

@@ -52,0 +52,0 @@ tenantCode: '<tenantCode>',

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display