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

@travetto/model

Package Overview
Dependencies
Maintainers
0
Versions
371
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/model - npm Package Compare versions

Comparing version 5.0.0-rc.14 to 5.0.0-rc.15

14

package.json
{
"name": "@travetto/model",
"version": "5.0.0-rc.14",
"version": "5.0.0-rc.15",
"description": "Datastore abstraction for core operations.",

@@ -29,10 +29,10 @@ "keywords": [

"dependencies": {
"@travetto/config": "^5.0.0-rc.13",
"@travetto/di": "^5.0.0-rc.12",
"@travetto/registry": "^5.0.0-rc.12",
"@travetto/schema": "^5.0.0-rc.13"
"@travetto/config": "^5.0.0-rc.14",
"@travetto/di": "^5.0.0-rc.13",
"@travetto/registry": "^5.0.0-rc.13",
"@travetto/schema": "^5.0.0-rc.14"
},
"peerDependencies": {
"@travetto/cli": "^5.0.0-rc.13",
"@travetto/test": "^5.0.0-rc.12"
"@travetto/cli": "^5.0.0-rc.14",
"@travetto/test": "^5.0.0-rc.13"
},

@@ -39,0 +39,0 @@ "peerDependenciesMeta": {

@@ -164,14 +164,9 @@ <!-- This file was generated by @travetto/doc and should not be modified directly -->

/**
* Insert blob to storage
* @param location The location of the blob
* @param input The actual blob to write
*/
insertBlob(location: string, input: BinaryInput, meta?: BlobMeta, errorIfExisting?: boolean): Promise<void>;
/**
* Upsert blob to storage
* @param location The location of the blob
* @param input The actual blob to write
* @param meta Additional metadata to store with the blob
* @param overwrite Should we replace content if already found, defaults to true
*/
upsertBlob(location: string, input: BinaryInput, meta?: BlobMeta): Promise<void>;
upsertBlob(location: string, input: BinaryInput, meta?: BlobMeta, overwrite?: boolean): Promise<void>;

@@ -178,0 +173,0 @@ /**

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

import { Readable } from 'node:stream';
import { Class, AppError, BinaryInput, BinaryUtil, BlobMeta, ByteRange } from '@travetto/runtime';

@@ -7,5 +8,2 @@ import { ModelType } from '../../types/model';

import { Readable } from 'node:stream';
/**

@@ -12,0 +10,0 @@ * Utilities for processing assets

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