@fluidframework/runtime-definitions
Advanced tools
@@ -312,21 +312,3 @@ ## Alpha API Report File for "@fluidframework/runtime-definitions" | ||
| export interface IRuntimeStorageService { | ||
| // @deprecated (undocumented) | ||
| createBlob(file: ArrayBufferLike): Promise<ICreateBlobResponse>; | ||
| // @deprecated | ||
| dispose?(error?: Error): void; | ||
| // @deprecated | ||
| readonly disposed?: boolean; | ||
| // @deprecated (undocumented) | ||
| downloadSummary(handle: ISummaryHandle): Promise<ISummaryTree>; | ||
| // @deprecated (undocumented) | ||
| getSnapshot?(snapshotFetchOptions?: ISnapshotFetchOptions): Promise<ISnapshot>; | ||
| // @deprecated (undocumented) | ||
| getSnapshotTree(version?: IVersion, scenarioName?: string): Promise<ISnapshotTree | null>; | ||
| // @deprecated (undocumented) | ||
| getVersions(versionId: string | null, count: number, scenarioName?: string, fetchSource?: FetchSource): Promise<IVersion[]>; | ||
| // @deprecated (undocumented) | ||
| readonly policies?: IDocumentStorageServicePolicies | undefined; | ||
| readBlob(id: string): Promise<ArrayBufferLike>; | ||
| // @deprecated (undocumented) | ||
| uploadSummaryWithContext(summary: ISummaryTree, context: ISummaryContext): Promise<string>; | ||
| } | ||
@@ -333,0 +315,0 @@ |
@@ -303,21 +303,3 @@ ## Beta API Report File for "@fluidframework/runtime-definitions" | ||
| export interface IRuntimeStorageService { | ||
| // @deprecated (undocumented) | ||
| createBlob(file: ArrayBufferLike): Promise<ICreateBlobResponse>; | ||
| // @deprecated | ||
| dispose?(error?: Error): void; | ||
| // @deprecated | ||
| readonly disposed?: boolean; | ||
| // @deprecated (undocumented) | ||
| downloadSummary(handle: ISummaryHandle): Promise<ISummaryTree>; | ||
| // @deprecated (undocumented) | ||
| getSnapshot?(snapshotFetchOptions?: ISnapshotFetchOptions): Promise<ISnapshot>; | ||
| // @deprecated (undocumented) | ||
| getSnapshotTree(version?: IVersion, scenarioName?: string): Promise<ISnapshotTree | null>; | ||
| // @deprecated (undocumented) | ||
| getVersions(versionId: string | null, count: number, scenarioName?: string, fetchSource?: FetchSource): Promise<IVersion[]>; | ||
| // @deprecated (undocumented) | ||
| readonly policies?: IDocumentStorageServicePolicies | undefined; | ||
| readBlob(id: string): Promise<ArrayBufferLike>; | ||
| // @deprecated (undocumented) | ||
| uploadSummaryWithContext(summary: ISummaryTree, context: ISummaryContext): Promise<string>; | ||
| } | ||
@@ -324,0 +306,0 @@ |
+1
-53
@@ -6,3 +6,3 @@ /*! | ||
| import type { TypedMessage } from "@fluidframework/core-interfaces/internal"; | ||
| import type { ITree, ISignalMessage, ISequencedDocumentMessage, IDocumentStorageServicePolicies, IVersion, ISnapshotTree, ISnapshotFetchOptions, ISnapshot, FetchSource, ICreateBlobResponse, ISummaryTree, ISummaryHandle, ISummaryContext } from "@fluidframework/driver-definitions/internal"; | ||
| import type { ITree, ISignalMessage, ISequencedDocumentMessage } from "@fluidframework/driver-definitions/internal"; | ||
| /** | ||
@@ -114,55 +114,3 @@ * An envelope wraps the contents with the intended target | ||
| readBlob(id: string): Promise<ArrayBufferLike>; | ||
| /** | ||
| * Whether or not the object has been disposed. | ||
| * If true, the object should be considered invalid, and its other state should be disregarded. | ||
| * | ||
| * @deprecated This API is deprecated and will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| readonly disposed?: boolean; | ||
| /** | ||
| * Dispose of the object and its resources. | ||
| * @param error - Optional error indicating the reason for the disposal, if the object was | ||
| * disposed as the result of an error. | ||
| * | ||
| * @deprecated This API is deprecated and will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| dispose?(error?: Error): void; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| readonly policies?: IDocumentStorageServicePolicies | undefined; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| getSnapshotTree(version?: IVersion, scenarioName?: string): Promise<ISnapshotTree | null>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| getSnapshot?(snapshotFetchOptions?: ISnapshotFetchOptions): Promise<ISnapshot>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| getVersions(versionId: string | null, count: number, scenarioName?: string, fetchSource?: FetchSource): Promise<IVersion[]>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| createBlob(file: ArrayBufferLike): Promise<ICreateBlobResponse>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| uploadSummaryWithContext(summary: ISummaryTree, context: ISummaryContext): Promise<string>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| downloadSummary(handle: ISummaryHandle): Promise<ISummaryTree>; | ||
| } | ||
| //# sourceMappingURL=protocol.d.ts.map |
+1
-53
@@ -6,3 +6,3 @@ /*! | ||
| import type { TypedMessage } from "@fluidframework/core-interfaces/internal"; | ||
| import type { ITree, ISignalMessage, ISequencedDocumentMessage, IDocumentStorageServicePolicies, IVersion, ISnapshotTree, ISnapshotFetchOptions, ISnapshot, FetchSource, ICreateBlobResponse, ISummaryTree, ISummaryHandle, ISummaryContext } from "@fluidframework/driver-definitions/internal"; | ||
| import type { ITree, ISignalMessage, ISequencedDocumentMessage } from "@fluidframework/driver-definitions/internal"; | ||
| /** | ||
@@ -114,55 +114,3 @@ * An envelope wraps the contents with the intended target | ||
| readBlob(id: string): Promise<ArrayBufferLike>; | ||
| /** | ||
| * Whether or not the object has been disposed. | ||
| * If true, the object should be considered invalid, and its other state should be disregarded. | ||
| * | ||
| * @deprecated This API is deprecated and will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| readonly disposed?: boolean; | ||
| /** | ||
| * Dispose of the object and its resources. | ||
| * @param error - Optional error indicating the reason for the disposal, if the object was | ||
| * disposed as the result of an error. | ||
| * | ||
| * @deprecated This API is deprecated and will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| dispose?(error?: Error): void; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| readonly policies?: IDocumentStorageServicePolicies | undefined; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| getSnapshotTree(version?: IVersion, scenarioName?: string): Promise<ISnapshotTree | null>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| getSnapshot?(snapshotFetchOptions?: ISnapshotFetchOptions): Promise<ISnapshot>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| getVersions(versionId: string | null, count: number, scenarioName?: string, fetchSource?: FetchSource): Promise<IVersion[]>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| createBlob(file: ArrayBufferLike): Promise<ICreateBlobResponse>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| uploadSummaryWithContext(summary: ISummaryTree, context: ISummaryContext): Promise<string>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| downloadSummary(handle: ISummaryHandle): Promise<ISummaryTree>; | ||
| } | ||
| //# sourceMappingURL=protocol.d.ts.map |
+20
-7
| { | ||
| "name": "@fluidframework/runtime-definitions", | ||
| "version": "2.70.0-361248", | ||
| "version": "2.70.0-361788", | ||
| "description": "Fluid Runtime definitions", | ||
@@ -60,7 +60,7 @@ "homepage": "https://fluidframework.com", | ||
| "dependencies": { | ||
| "@fluidframework/container-definitions": "2.70.0-361248", | ||
| "@fluidframework/core-interfaces": "2.70.0-361248", | ||
| "@fluidframework/driver-definitions": "2.70.0-361248", | ||
| "@fluidframework/id-compressor": "2.70.0-361248", | ||
| "@fluidframework/telemetry-utils": "2.70.0-361248" | ||
| "@fluidframework/container-definitions": "2.70.0-361788", | ||
| "@fluidframework/core-interfaces": "2.70.0-361788", | ||
| "@fluidframework/driver-definitions": "2.70.0-361788", | ||
| "@fluidframework/id-compressor": "2.70.0-361788", | ||
| "@fluidframework/telemetry-utils": "2.70.0-361788" | ||
| }, | ||
@@ -83,3 +83,16 @@ "devDependencies": { | ||
| "typeValidation": { | ||
| "broken": {}, | ||
| "broken": { | ||
| "Interface_IFluidDataStoreContext": { | ||
| "backCompat": false | ||
| }, | ||
| "Interface_IFluidDataStoreContextDetached": { | ||
| "backCompat": false | ||
| }, | ||
| "Interface_IFluidParentContext": { | ||
| "backCompat": false | ||
| }, | ||
| "Interface_IRuntimeStorageService": { | ||
| "backCompat": false | ||
| } | ||
| }, | ||
| "entrypoint": "legacy" | ||
@@ -86,0 +99,0 @@ }, |
+0
-79
@@ -11,12 +11,2 @@ /*! | ||
| ISequencedDocumentMessage, | ||
| IDocumentStorageServicePolicies, | ||
| IVersion, | ||
| ISnapshotTree, | ||
| ISnapshotFetchOptions, | ||
| ISnapshot, | ||
| FetchSource, | ||
| ICreateBlobResponse, | ||
| ISummaryTree, | ||
| ISummaryHandle, | ||
| ISummaryContext, | ||
| } from "@fluidframework/driver-definitions/internal"; | ||
@@ -146,71 +136,2 @@ | ||
| readBlob(id: string): Promise<ArrayBufferLike>; | ||
| /** | ||
| * Whether or not the object has been disposed. | ||
| * If true, the object should be considered invalid, and its other state should be disregarded. | ||
| * | ||
| * @deprecated This API is deprecated and will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| readonly disposed?: boolean; | ||
| /** | ||
| * Dispose of the object and its resources. | ||
| * @param error - Optional error indicating the reason for the disposal, if the object was | ||
| * disposed as the result of an error. | ||
| * | ||
| * @deprecated This API is deprecated and will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| dispose?(error?: Error): void; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| readonly policies?: IDocumentStorageServicePolicies | undefined; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| // eslint-disable-next-line @rushstack/no-new-null | ||
| getSnapshotTree(version?: IVersion, scenarioName?: string): Promise<ISnapshotTree | null>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| getSnapshot?(snapshotFetchOptions?: ISnapshotFetchOptions): Promise<ISnapshot>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| getVersions( | ||
| // TODO: use `undefined` instead. | ||
| // eslint-disable-next-line @rushstack/no-new-null | ||
| versionId: string | null, | ||
| count: number, | ||
| scenarioName?: string, | ||
| fetchSource?: FetchSource, | ||
| ): Promise<IVersion[]>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| createBlob(file: ArrayBufferLike): Promise<ICreateBlobResponse>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| uploadSummaryWithContext(summary: ISummaryTree, context: ISummaryContext): Promise<string>; | ||
| /** | ||
| * @deprecated This will be removed in a future release. No replacement is planned as | ||
| * it is unused in the DataStore layer. | ||
| */ | ||
| downloadSummary(handle: ISummaryHandle): Promise<ISummaryTree>; | ||
| } |
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 not supported yet
Sorry, the diff of this file is not supported yet
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
496356
-3.26%5401
-3.16%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed