Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@firebolt-js/sdk

Package Overview
Dependencies
Maintainers
0
Versions
241
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@firebolt-js/sdk - npm Package Compare versions

Comparing version 1.3.1-feature-and-fixes-1-3-1.1 to 1.3.1-next.1

2

dist/docs/Accessibility/index.md

@@ -9,3 +9,3 @@ ---

Version Accessibility 1.3.1-feature-and-fixes-1-3-1.1
Version Accessibility 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version Account 1.3.1-feature-and-fixes-1-3-1.1
Version Account 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version Advertising 1.3.1-feature-and-fixes-1-3-1.1
Version Advertising 1.3.1-next.1

@@ -91,3 +91,3 @@ ## Table of Contents

"ifa": "01234567-89AB-CDEF-GH01-23456789ABCD",
"ifa_type": "idfa",
"ifa_type": "sspid",
"lmt": "0"

@@ -118,3 +118,3 @@ }

"ifa": "01234567-89AB-CDEF-GH01-23456789ABCD",
"ifa_type": "idfa",
"ifa_type": "sspid",
"lmt": "0"

@@ -145,3 +145,3 @@ }

"ifa": "01234567-89AB-CDEF-GH01-23456789ABCD",
"ifa_type": "idfa",
"ifa_type": "sspid",
"lmt": "0"

@@ -179,3 +179,3 @@ }

"ifa": "01234567-89AB-CDEF-GH01-23456789ABCD",
"ifa_type": "idfa",
"ifa_type": "sspid",
"lmt": "0"

@@ -206,3 +206,3 @@ }

"ifa": "01234567-89AB-CDEF-GH01-23456789ABCD",
"ifa_type": "idfa",
"ifa_type": "sspid",
"lmt": "0"

@@ -209,0 +209,0 @@ }

@@ -9,3 +9,3 @@ ---

Version Authentication 1.3.1-feature-and-fixes-1-3-1.1
Version Authentication 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version Capabilities 1.3.1-feature-and-fixes-1-3-1.1
Version Capabilities 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version Device 1.3.1-feature-and-fixes-1-3-1.1
Version Device 1.3.1-next.1

@@ -48,3 +48,3 @@ ## Table of Contents

- [NetworkType](#networktype)
- [HDRFormat](#hdrformat)
- [HDRFormatMap](#hdrformatmap)
- [AudioProfiles](#audioprofiles)

@@ -54,3 +54,3 @@ - [Resolution](#resolution)

- [DeviceVersion](#deviceversion)
- [HDCPVersion](#hdcpversion)
- [HDCPVersionMap](#hdcpversionmap)

@@ -294,3 +294,3 @@ ## Usage

```typescript
function hdcp(): Promise<HDCPVersion>
function hdcp(): Promise<HDCPVersionMap>
```

@@ -300,3 +300,3 @@

[HDCPVersion](#hdcpversion)
[HDCPVersionMap](#hdcpversionmap)

@@ -311,3 +311,3 @@ Capabilities:

Getting the supported HDCP profiles
Getting the supported HDCP versions

@@ -319,7 +319,7 @@ JavaScript:

let supportedHdcpProfiles = await Device.hdcp()
console.log(supportedHdcpProfiles)
let supportedHdcpVersions = await Device.hdcp()
console.log(supportedHdcpVersions)
```
Value of `supportedHdcpProfiles`:
Value of `supportedHdcpVersions`:

@@ -366,3 +366,3 @@ ```javascript

```typescript
function hdcp(callback: (value) => HDCPVersion): Promise<number>
function hdcp(callback: (value) => HDCPVersionMap): Promise<number>
```

@@ -378,3 +378,3 @@

Getting the supported HDCP profiles
Getting the supported HDCP versions

@@ -392,3 +392,3 @@ JavaScript:

Value of `supportedHdcpProfiles`:
Value of `supportedHdcpVersions`:

@@ -441,3 +441,3 @@ ```javascript

```typescript
function hdr(): Promise<HDRFormat>
function hdr(): Promise<HDRFormatMap>
```

@@ -447,3 +447,3 @@

[HDRFormat](#hdrformat)
[HDRFormatMap](#hdrformatmap)

@@ -458,3 +458,3 @@ Capabilities:

Getting the supported HDR profiles
Getting the supported HDR formats

@@ -466,7 +466,7 @@ JavaScript:

let supportedHdrProfiles = await Device.hdr()
console.log(supportedHdrProfiles)
let supportedHdrFormats = await Device.hdr()
console.log(supportedHdrFormats)
```
Value of `supportedHdrProfiles`:
Value of `supportedHdrFormats`:

@@ -517,3 +517,3 @@ ```javascript

```typescript
function hdr(callback: (value) => HDRFormat): Promise<number>
function hdr(callback: (value) => HDRFormatMap): Promise<number>
```

@@ -529,3 +529,3 @@

Getting the supported HDR profiles
Getting the supported HDR formats

@@ -543,3 +543,3 @@ JavaScript:

Value of `supportedHdrProfiles`:
Value of `supportedHdrFormats`:

@@ -1311,3 +1311,3 @@ ```javascript

Get the maximum supported screen resolution for the graphical surface of the app.
Get the resolution for the graphical surface of the app.

@@ -1324,3 +1324,3 @@ The pairs returned will be of a [width, height] format and will correspond to the following values:

4K Ultra High Definition (UHD): [1920, 1080]
4K Ultra High Definition (UHD): [3840, 2160]

@@ -1775,3 +1775,3 @@ To get the value of `screenResolution` call the method like this:

4K Ultra High Definition (UHD): [1920, 1080]
4K Ultra High Definition (UHD): [3840, 2160]

@@ -2028,8 +2028,8 @@ To get the value of `videoResolution` call the method like this:

### HDRFormat
### HDRFormatMap
The type of HDR that is supported
The type of HDR format that is supported
```typescript
type HDRFormat = {
type HDRFormatMap = {
hdr10: boolean

@@ -2120,8 +2120,8 @@ hdr10Plus: boolean

### HDCPVersion
### HDCPVersionMap
The type of HDCP that is supported
The type of HDCP versions that is supported
```typescript
type HDCPVersion = {
type HDCPVersionMap = {
hdcp1.4: boolean

@@ -2128,0 +2128,0 @@ hdcp2.2: boolean

@@ -9,3 +9,3 @@ ---

Version Internal 1.3.1-feature-and-fixes-1-3-1.1
Version Internal 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version Keyboard 1.3.1-feature-and-fixes-1-3-1.1
Version Keyboard 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version Lifecycle 1.3.1-feature-and-fixes-1-3-1.1
Version Lifecycle 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version Localization 1.3.1-feature-and-fixes-1-3-1.1
Version Localization 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version Metrics 1.3.1-feature-and-fixes-1-3-1.1
Version Metrics 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version Parameters 1.3.1-feature-and-fixes-1-3-1.1
Version Parameters 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version Profile 1.3.1-feature-and-fixes-1-3-1.1
Version Profile 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version SecondScreen 1.3.1-feature-and-fixes-1-3-1.1
Version SecondScreen 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

@@ -9,3 +9,3 @@ ---

Version SecureStorage 1.3.1-feature-and-fixes-1-3-1.1
Version SecureStorage 1.3.1-next.1

@@ -12,0 +12,0 @@ ## Table of Contents

{
"name": "@firebolt-js/sdk",
"version": "1.3.1-feature-and-fixes-1-3-1.1",
"version": "1.3.1-next.1",
"description": "The Firebolt JS SDK",

@@ -5,0 +5,0 @@ "main": "./dist/lib/firebolt.mjs",

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

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc