@fluidframework/runtime-definitions 2.0.0-dev-rc.5.0.0.267932 → 2.0.0-dev-rc.5.0.0.268409

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- ## API Report File for "@fluidframework/runtime-definitions"
1
+ ## Alpha API Report File for "@fluidframework/runtime-definitions"
2
2
 
3
3
  > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
4
 
@@ -44,12 +44,6 @@ export interface AttributionInfo {
44
44
  // @alpha
45
45
  export type AttributionKey = OpAttributionKey | DetachedAttributionKey | LocalAttributionKey;
46
46
 
47
- // @internal (undocumented)
48
- export const blobCountPropertyName = "BlobCount";
49
-
50
- // @internal (undocumented)
51
- export const channelsTreeName = ".channels";
52
-
53
47
  // @alpha (undocumented)
54
48
  export type CreateChildSummarizerNodeFn = (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>,
55
49
  getBaseGCDetailsFn?: () => Promise<IGarbageCollectionDetailsBase>) => ISummarizerNodeWithGC;
@@ -92,26 +86,6 @@ export enum FlushMode {
92
86
  TurnBased = 1
93
87
  }
94
88
 
95
- // @internal (undocumented)
96
- export enum FlushModeExperimental {
97
- Async = 2
98
- }
99
-
100
- // @internal
101
- export const gcBlobPrefix = "__gc";
102
-
103
- // @internal
104
- export const gcDataBlobKey = ".gcdata";
105
-
106
- // @internal
107
- export const gcDeletedBlobKey = "__deletedNodes";
108
-
109
- // @internal
110
- export const gcTombstoneBlobKey = "__tombstones";
111
-
112
- // @internal
113
- export const gcTreeKey = "gc";
114
-
115
89
  // @alpha
116
90
  export interface IAttachMessage {
117
91
  id: string;
@@ -326,16 +300,6 @@ export interface IProvideFluidDataStoreRegistry {
326
300
  readonly IFluidDataStoreRegistry: IFluidDataStoreRegistry;
327
301
  }
328
302
 
329
- // @internal @deprecated (undocumented)
330
- export interface ISignalEnvelope {
331
- address?: string;
332
- clientSignalSequenceNumber: number;
333
- contents: {
334
- type: string;
335
- content: any;
336
- };
337
- }
338
-
339
303
  // @alpha
340
304
  export interface ISummarizeInternalResult extends ISummarizeResult {
341
305
  // (undocumented)
@@ -422,12 +386,6 @@ export interface ITelemetryContext {
422
386
  setMultiple(prefix: string, property: string, values: Record<string, TelemetryBaseEventPropertyType>): void;
423
387
  }
424
388
 
425
- // @internal
426
- export interface ITelemetryContextExt {
427
- set(prefix: string, property: string, value: TelemetryEventPropertyTypeExt): void;
428
- setMultiple(prefix: string, property: string, values: Record<string, TelemetryEventPropertyTypeExt>): void;
429
- }
430
-
431
389
  // @alpha
432
390
  export interface LocalAttributionKey {
433
391
  // (undocumented)
@@ -449,9 +407,6 @@ export interface OpAttributionKey {
449
407
  // @alpha (undocumented)
450
408
  export type SummarizeInternalFn = (fullTree: boolean, trackState: boolean, telemetryContext?: ITelemetryContext, incrementalSummaryContext?: IExperimentalIncrementalSummaryContext) => Promise<ISummarizeInternalResult>;
451
409
 
452
- // @internal (undocumented)
453
- export const totalBlobSizePropertyName = "TotalBlobSize";
454
-
455
410
  // @alpha
456
411
  export const VisibilityState: {
457
412
  NotVisible: string;
@@ -0,0 +1,37 @@
1
+ ## Beta API Report File for "@fluidframework/runtime-definitions"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import type { AttachState } from '@fluidframework/container-definitions';
8
+ import type { FluidObject } from '@fluidframework/core-interfaces';
9
+ import type { IAudience } from '@fluidframework/container-definitions';
10
+ import type { IClientDetails } from '@fluidframework/driver-definitions';
11
+ import type { IDeltaManager } from '@fluidframework/container-definitions/internal';
12
+ import type { IDisposable } from '@fluidframework/core-interfaces';
13
+ import type { IDocumentMessage } from '@fluidframework/driver-definitions/internal';
14
+ import type { IDocumentStorageService } from '@fluidframework/driver-definitions/internal';
15
+ import type { IEvent } from '@fluidframework/core-interfaces';
16
+ import type { IEventProvider } from '@fluidframework/core-interfaces';
17
+ import type { IFluidHandle } from '@fluidframework/core-interfaces';
18
+ import type { IFluidHandleInternal } from '@fluidframework/core-interfaces/internal';
19
+ import type { IIdCompressor } from '@fluidframework/id-compressor';
20
+ import type { IProvideFluidHandleContext } from '@fluidframework/core-interfaces/internal';
21
+ import type { IQuorumClients } from '@fluidframework/driver-definitions';
22
+ import type { IRequest } from '@fluidframework/core-interfaces';
23
+ import type { IResponse } from '@fluidframework/core-interfaces';
24
+ import type { ISequencedDocumentMessage } from '@fluidframework/driver-definitions';
25
+ import type { ISignalMessage } from '@fluidframework/driver-definitions';
26
+ import type { ISnapshotTree } from '@fluidframework/driver-definitions/internal';
27
+ import type { ISummaryTree } from '@fluidframework/driver-definitions';
28
+ import type { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
29
+ import type { ITree } from '@fluidframework/driver-definitions/internal';
30
+ import type { IUser } from '@fluidframework/driver-definitions';
31
+ import type { SummaryTree } from '@fluidframework/driver-definitions/internal';
32
+ import type { TelemetryBaseEventPropertyType } from '@fluidframework/core-interfaces';
33
+ import type { TelemetryEventPropertyTypeExt } from '@fluidframework/telemetry-utils/internal';
34
+
35
+ // (No @packageDocumentation comment for this package)
36
+
37
+ ```
@@ -0,0 +1,37 @@
1
+ ## Public API Report File for "@fluidframework/runtime-definitions"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import type { AttachState } from '@fluidframework/container-definitions';
8
+ import type { FluidObject } from '@fluidframework/core-interfaces';
9
+ import type { IAudience } from '@fluidframework/container-definitions';
10
+ import type { IClientDetails } from '@fluidframework/driver-definitions';
11
+ import type { IDeltaManager } from '@fluidframework/container-definitions/internal';
12
+ import type { IDisposable } from '@fluidframework/core-interfaces';
13
+ import type { IDocumentMessage } from '@fluidframework/driver-definitions/internal';
14
+ import type { IDocumentStorageService } from '@fluidframework/driver-definitions/internal';
15
+ import type { IEvent } from '@fluidframework/core-interfaces';
16
+ import type { IEventProvider } from '@fluidframework/core-interfaces';
17
+ import type { IFluidHandle } from '@fluidframework/core-interfaces';
18
+ import type { IFluidHandleInternal } from '@fluidframework/core-interfaces/internal';
19
+ import type { IIdCompressor } from '@fluidframework/id-compressor';
20
+ import type { IProvideFluidHandleContext } from '@fluidframework/core-interfaces/internal';
21
+ import type { IQuorumClients } from '@fluidframework/driver-definitions';
22
+ import type { IRequest } from '@fluidframework/core-interfaces';
23
+ import type { IResponse } from '@fluidframework/core-interfaces';
24
+ import type { ISequencedDocumentMessage } from '@fluidframework/driver-definitions';
25
+ import type { ISignalMessage } from '@fluidframework/driver-definitions';
26
+ import type { ISnapshotTree } from '@fluidframework/driver-definitions/internal';
27
+ import type { ISummaryTree } from '@fluidframework/driver-definitions';
28
+ import type { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
29
+ import type { ITree } from '@fluidframework/driver-definitions/internal';
30
+ import type { IUser } from '@fluidframework/driver-definitions';
31
+ import type { SummaryTree } from '@fluidframework/driver-definitions/internal';
32
+ import type { TelemetryBaseEventPropertyType } from '@fluidframework/core-interfaces';
33
+ import type { TelemetryEventPropertyTypeExt } from '@fluidframework/telemetry-utils/internal';
34
+
35
+ // (No @packageDocumentation comment for this package)
36
+
37
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/runtime-definitions",
3
- "version": "2.0.0-dev-rc.5.0.0.267932",
3
+ "version": "2.0.0-dev-rc.5.0.0.268409",
4
4
  "description": "Fluid Runtime definitions",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -47,19 +47,19 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/public.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/container-definitions": "2.0.0-dev-rc.5.0.0.267932",
51
- "@fluidframework/core-interfaces": "2.0.0-dev-rc.5.0.0.267932",
52
- "@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.267932",
53
- "@fluidframework/id-compressor": "2.0.0-dev-rc.5.0.0.267932",
54
- "@fluidframework/telemetry-utils": "2.0.0-dev-rc.5.0.0.267932"
50
+ "@fluidframework/container-definitions": "2.0.0-dev-rc.5.0.0.268409",
51
+ "@fluidframework/core-interfaces": "2.0.0-dev-rc.5.0.0.268409",
52
+ "@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.268409",
53
+ "@fluidframework/id-compressor": "2.0.0-dev-rc.5.0.0.268409",
54
+ "@fluidframework/telemetry-utils": "2.0.0-dev-rc.5.0.0.268409"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@arethetypeswrong/cli": "^0.15.2",
58
- "@biomejs/biome": "^1.6.2",
58
+ "@biomejs/biome": "^1.7.3",
59
59
  "@fluid-tools/build-cli": "^0.39.0-264124",
60
60
  "@fluidframework/build-common": "^2.0.3",
61
61
  "@fluidframework/build-tools": "^0.39.0-264124",
62
- "@fluidframework/eslint-config-fluid": "^5.1.0",
62
+ "@fluidframework/eslint-config-fluid": "^5.3.0",
63
63
  "@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@2.0.0-rc.4.0.0",
64
64
  "@microsoft/api-extractor": "^7.45.1",
65
65
  "copyfiles": "^2.4.1",