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

@livepeer/core

Package Overview
Dependencies
Maintainers
6
Versions
126
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@livepeer/core - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

dist/client-7e4fd284.cjs.dev.js

6

actions/dist/livepeer-core-actions.cjs.dev.js

@@ -5,5 +5,5 @@ 'use strict';

var updateStream = require('../../dist/updateStream-0a4cb08d.cjs.dev.js');
var getStream = require('../../dist/getStream-f5bdb462.cjs.dev.js');
require('../../dist/client-28312401.cjs.dev.js');
var updateStream = require('../../dist/updateStream-89b7ce4b.cjs.dev.js');
var getStream = require('../../dist/getStream-a1e88460.cjs.dev.js');
require('../../dist/client-7e4fd284.cjs.dev.js');
require('zustand/middleware');

@@ -10,0 +10,0 @@ require('zustand/vanilla');

@@ -5,5 +5,5 @@ 'use strict';

var updateStream = require('../../dist/updateStream-bfea13b5.cjs.prod.js');
var getStream = require('../../dist/getStream-b9c873ac.cjs.prod.js');
require('../../dist/client-e497bc28.cjs.prod.js');
var updateStream = require('../../dist/updateStream-79a13d59.cjs.prod.js');
var getStream = require('../../dist/getStream-03a26cdc.cjs.prod.js');
require('../../dist/client-b49d615d.cjs.prod.js');
require('zustand/middleware');

@@ -10,0 +10,0 @@ require('zustand/vanilla');

@@ -1,6 +0,6 @@

export { c as createAsset, a as createStream, g as getAsset, b as getAssetMetrics, d as getPlaybackInfo, e as getStreamSession, f as getStreamSessions, u as updateAsset, h as updateStream, w as watchLivepeerProvider } from '../../dist/updateStream-7b90089b.esm.js';
export { g as getLivepeerProvider, a as getStream } from '../../dist/getStream-bc7c16e3.esm.js';
import '../../dist/client-80f2db6f.esm.js';
export { c as createAsset, a as createStream, g as getAsset, b as getAssetMetrics, d as getPlaybackInfo, e as getStreamSession, f as getStreamSessions, u as updateAsset, h as updateStream, w as watchLivepeerProvider } from '../../dist/updateStream-f96541d6.esm.js';
export { g as getLivepeerProvider, a as getStream } from '../../dist/getStream-fd5ec1b5.esm.js';
import '../../dist/client-8a4dc167.esm.js';
import 'zustand/middleware';
import 'zustand/vanilla';
import '../../dist/provider-3254bb2f.esm.js';

@@ -5,3 +5,3 @@ 'use strict';

var client = require('../../dist/client-28312401.cjs.dev.js');
var client = require('../../dist/client-7e4fd284.cjs.dev.js');
require('zustand/middleware');

@@ -8,0 +8,0 @@ require('zustand/vanilla');

@@ -5,3 +5,3 @@ 'use strict';

var client = require('../../dist/client-e497bc28.cjs.prod.js');
var client = require('../../dist/client-b49d615d.cjs.prod.js');
require('zustand/middleware');

@@ -8,0 +8,0 @@ require('zustand/vanilla');

@@ -1,3 +0,3 @@

export { C as Client, c as clearClient, a as createClient, g as getClient } from '../../dist/client-80f2db6f.esm.js';
export { C as Client, c as clearClient, a as createClient, g as getClient } from '../../dist/client-8a4dc167.esm.js';
import 'zustand/middleware';
import 'zustand/vanilla';

@@ -7,4 +7,4 @@ 'use strict';

var string = require('../../dist/string-0759efb1.cjs.dev.js');
var client = require('../../dist/client-28312401.cjs.dev.js');
var getStream = require('../../dist/getStream-f5bdb462.cjs.dev.js');
var client = require('../../dist/client-7e4fd284.cjs.dev.js');
var getStream = require('../../dist/getStream-a1e88460.cjs.dev.js');
require('zustand/middleware');

@@ -11,0 +11,0 @@ require('zustand/vanilla');

@@ -7,4 +7,4 @@ 'use strict';

var string = require('../../dist/string-7bb3bb00.cjs.prod.js');
var client = require('../../dist/client-e497bc28.cjs.prod.js');
var getStream = require('../../dist/getStream-b9c873ac.cjs.prod.js');
var client = require('../../dist/client-b49d615d.cjs.prod.js');
var getStream = require('../../dist/getStream-03a26cdc.cjs.prod.js');
require('zustand/middleware');

@@ -11,0 +11,0 @@ require('zustand/vanilla');

import ms from 'ms';
import { c as b64UrlDecode, b as b64Decode, d as b64UrlEncode } from '../../dist/string-9a973b0a.esm.js';
import { a as createClient } from '../../dist/client-80f2db6f.esm.js';
import { a as getStream } from '../../dist/getStream-bc7c16e3.esm.js';
import { a as createClient } from '../../dist/client-8a4dc167.esm.js';
import { a as getStream } from '../../dist/getStream-fd5ec1b5.esm.js';
import 'zustand/middleware';

@@ -6,0 +6,0 @@ import 'zustand/vanilla';

@@ -25,11 +25,11 @@ import { Address } from '../types';

export type TestnetLivepeerChain = keyof typeof testnetChainId;
export type TestnetLivepeerChainId = (typeof testnetChainId)[TestnetLivepeerChain];
export type TestnetLivepeerChainId = typeof testnetChainId[TestnetLivepeerChain];
export type MainnetLivepeerChain = keyof typeof mainnetChainId;
export type MainnetLivepeerChainId = (typeof mainnetChainId)[MainnetLivepeerChain];
export type MainnetLivepeerChainId = typeof mainnetChainId[MainnetLivepeerChain];
export type L1LivepeerChain = keyof typeof l1ChainId;
export type L1LivepeerChainId = (typeof l1ChainId)[L1LivepeerChain];
export type L1LivepeerChainId = typeof l1ChainId[L1LivepeerChain];
export type L2LivepeerChain = keyof typeof l2ChainId;
export type L2LivepeerChainId = (typeof l2ChainId)[L2LivepeerChain];
export type L2LivepeerChainId = typeof l2ChainId[L2LivepeerChain];
export type LivepeerChain = keyof typeof allChainId;
export type LivepeerChainId = (typeof allChainId)[LivepeerChain];
export type LivepeerChainId = typeof allChainId[LivepeerChain];
export type LivepeerAddressMetadata = {

@@ -36,0 +36,0 @@ chainId: LivepeerChainId;

export type MimeType = keyof typeof mime;
export type MimeValue = (typeof mime)[MimeType][number];
export type MimeValue = typeof mime[MimeType][number];
export declare const getMimeType: (ending: string) => MimeType | null;

@@ -4,0 +4,0 @@ declare const mime: {

@@ -22,3 +22,3 @@ export declare const aspectRatios: readonly [{

}];
export type AspectRatio = (typeof aspectRatios)[number]['key'];
export type AspectRatio = typeof aspectRatios[number]['key'];
export type FontWeights = 'normal' | 'bold' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900';

@@ -25,0 +25,0 @@ export type ThemeConfig = Partial<{

@@ -1,3 +0,3 @@

export declare const core = "@livepeer/core@1.1.1";
export declare const react = "@livepeer/react@2.1.1";
export declare const reactNative = "@livepeer/react-native@1.1.1";
export declare const core = "@livepeer/core@1.1.2";
export declare const react = "@livepeer/react@2.1.2";
export declare const reactNative = "@livepeer/react-native@1.1.2";

@@ -6,7 +6,7 @@ 'use strict';

var errors_dist_livepeerCoreErrors = require('../errors/dist/livepeer-core-errors.cjs.dev.js');
var client = require('./client-28312401.cjs.dev.js');
var updateStream = require('./updateStream-0a4cb08d.cjs.dev.js');
var getStream = require('./getStream-f5bdb462.cjs.dev.js');
var client = require('./client-7e4fd284.cjs.dev.js');
var updateStream = require('./updateStream-89b7ce4b.cjs.dev.js');
var getStream = require('./getStream-a1e88460.cjs.dev.js');
var provider = require('./provider-838e9dd9.cjs.dev.js');
var src = require('./src-1170f76f.cjs.dev.js');
var src = require('./src-063c6e72.cjs.dev.js');
var string = require('./string-0759efb1.cjs.dev.js');

@@ -13,0 +13,0 @@ var omick = require('./omick-69c95136.cjs.dev.js');

@@ -6,7 +6,7 @@ 'use strict';

var errors_dist_livepeerCoreErrors = require('../errors/dist/livepeer-core-errors.cjs.prod.js');
var client = require('./client-e497bc28.cjs.prod.js');
var updateStream = require('./updateStream-bfea13b5.cjs.prod.js');
var getStream = require('./getStream-b9c873ac.cjs.prod.js');
var client = require('./client-b49d615d.cjs.prod.js');
var updateStream = require('./updateStream-79a13d59.cjs.prod.js');
var getStream = require('./getStream-03a26cdc.cjs.prod.js');
var provider = require('./provider-f763db3e.cjs.prod.js');
var src = require('./src-8e373758.cjs.prod.js');
var src = require('./src-5503daaa.cjs.prod.js');
var string = require('./string-7bb3bb00.cjs.prod.js');

@@ -13,0 +13,0 @@ var omick = require('./omick-088c0789.cjs.prod.js');

export { HttpError } from '../errors/dist/livepeer-core-errors.esm.js';
export { C as Client, c as clearClient, a as createClient, b as createStorage, n as noopStorage } from './client-80f2db6f.esm.js';
export { c as createAsset, a as createStream, g as getAsset, b as getAssetMetrics, d as getPlaybackInfo, e as getStreamSession, f as getStreamSessions, u as updateAsset, h as updateStream, w as watchLivepeerProvider } from './updateStream-7b90089b.esm.js';
export { g as getLivepeerProvider, a as getStream } from './getStream-bc7c16e3.esm.js';
export { C as Client, c as clearClient, a as createClient, b as createStorage, n as noopStorage } from './client-8a4dc167.esm.js';
export { c as createAsset, a as createStream, g as getAsset, b as getAssetMetrics, d as getPlaybackInfo, e as getStreamSession, f as getStreamSessions, u as updateAsset, h as updateStream, w as watchLivepeerProvider } from './updateStream-f96541d6.esm.js';
export { g as getLivepeerProvider, a as getStream } from './getStream-fd5ec1b5.esm.js';
export { d as defaultStudioConfig, a as defaultTranscodingProfiles } from './provider-3254bb2f.esm.js';
export { c as createControllerStore, g as getMediaSourceType } from './src-bc599af4.esm.js';
export { c as createControllerStore, g as getMediaSourceType } from './src-71f93002.esm.js';
export { b as b64Decode, a as b64Encode, c as b64UrlDecode, d as b64UrlEncode } from './string-9a973b0a.esm.js';

@@ -8,0 +8,0 @@ export { d as deepMerge, o as omit, p as pick } from './omick-f3e60faa.esm.js';

@@ -5,3 +5,3 @@ 'use strict';

var src = require('../../dist/src-1170f76f.cjs.dev.js');
var src = require('../../dist/src-063c6e72.cjs.dev.js');
var fetch = require('cross-fetch');

@@ -8,0 +8,0 @@ require('zustand/middleware');

@@ -5,3 +5,3 @@ 'use strict';

var src = require('../../dist/src-8e373758.cjs.prod.js');
var src = require('../../dist/src-5503daaa.cjs.prod.js');
var fetch = require('cross-fetch');

@@ -8,0 +8,0 @@ require('zustand/middleware');

@@ -1,2 +0,2 @@

export { D as DEFAULT_AUTOHIDE_TIME, a as DEFAULT_VOLUME_LEVEL, c as createControllerStore, g as getMediaSourceType } from '../../dist/src-bc599af4.esm.js';
export { D as DEFAULT_AUTOHIDE_TIME, a as DEFAULT_VOLUME_LEVEL, c as createControllerStore, g as getMediaSourceType } from '../../dist/src-71f93002.esm.js';
import fetch from 'cross-fetch';

@@ -3,0 +3,0 @@ import 'zustand/middleware';

@@ -5,3 +5,3 @@ {

"license": "MIT",
"version": "1.1.1",
"version": "1.1.2",
"repository": {

@@ -105,7 +105,7 @@ "type": "git",

"tus-js-client": "^3.0.1",
"zustand": "^4.1.5"
"zustand": "^4.3.2"
},
"devDependencies": {
"@types/ms": "^0.7.31",
"jose": "^4.11.1"
"jose": "^4.11.2"
},

@@ -112,0 +112,0 @@ "keywords": [

@@ -33,5 +33,5 @@ 'use strict';

const core = `@livepeer/core@1.1.1`;
const react = `@livepeer/react@2.1.1`;
const reactNative = `@livepeer/react-native@1.1.1`;
const core = `@livepeer/core@1.1.2`;
const react = `@livepeer/react@2.1.2`;
const reactNative = `@livepeer/react-native@1.1.2`;

@@ -38,0 +38,0 @@ class BaseLivepeerProvider {

@@ -33,5 +33,5 @@ 'use strict';

const core = `@livepeer/core@1.1.1`;
const react = `@livepeer/react@2.1.1`;
const reactNative = `@livepeer/react-native@1.1.1`;
const core = `@livepeer/core@1.1.2`;
const react = `@livepeer/react@2.1.2`;
const reactNative = `@livepeer/react-native@1.1.2`;

@@ -38,0 +38,0 @@ class BaseLivepeerProvider {

@@ -6,5 +6,5 @@ import * as tus from 'tus-js-client';

const core = `@livepeer/core@1.1.1`;
const react = `@livepeer/react@2.1.1`;
const reactNative = `@livepeer/react-native@1.1.1`;
const core = `@livepeer/core@1.1.2`;
const react = `@livepeer/react@2.1.2`;
const reactNative = `@livepeer/react-native@1.1.2`;

@@ -11,0 +11,0 @@ class BaseLivepeerProvider {

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