@travetto/model
Advanced tools
Comparing version 5.0.0-rc.14 to 5.0.0-rc.15
{ | ||
"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 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
157827
347