@fluidframework/map 2.0.0-internal.7.2.2 → 2.0.0-internal.7.4.0
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.
- package/CHANGELOG.md +8 -0
- package/api-extractor-lint.json +13 -0
- package/api-extractor.json +9 -1
- package/api-report/map.api.md +42 -44
- package/dist/{directory.js → directory.cjs} +228 -41
- package/dist/directory.cjs.map +1 -0
- package/dist/directory.d.ts +499 -38
- package/dist/directory.d.ts.map +1 -1
- package/dist/{index.js → index.cjs} +4 -4
- package/dist/index.cjs.map +1 -0
- package/dist/{interfaces.js → interfaces.cjs} +1 -1
- package/dist/interfaces.cjs.map +1 -0
- package/dist/interfaces.d.ts +10 -20
- package/dist/interfaces.d.ts.map +1 -1
- package/dist/{internalInterfaces.js → internalInterfaces.cjs} +1 -1
- package/dist/internalInterfaces.cjs.map +1 -0
- package/dist/{localValues.js → localValues.cjs} +2 -3
- package/dist/localValues.cjs.map +1 -0
- package/dist/localValues.d.ts +2 -4
- package/dist/localValues.d.ts.map +1 -1
- package/dist/map-alpha.d.ts +979 -0
- package/dist/map-beta.d.ts +119 -0
- package/dist/map-public.d.ts +119 -0
- package/dist/map-untrimmed.d.ts +993 -0
- package/dist/{map.js → map.cjs} +5 -13
- package/dist/map.cjs.map +1 -0
- package/dist/map.d.ts +2 -10
- package/dist/map.d.ts.map +1 -1
- package/dist/{mapKernel.js → mapKernel.cjs} +2 -2
- package/dist/mapKernel.cjs.map +1 -0
- package/dist/{packageVersion.js → packageVersion.cjs} +2 -2
- package/dist/packageVersion.cjs.map +1 -0
- package/dist/packageVersion.d.ts +1 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/lib/directory.d.ts +499 -38
- package/lib/directory.d.ts.map +1 -1
- package/lib/{directory.js → directory.mjs} +228 -41
- package/lib/directory.mjs.map +1 -0
- package/lib/index.d.ts +4 -15
- package/lib/index.d.ts.map +1 -1
- package/lib/index.mjs +8 -0
- package/lib/index.mjs.map +1 -0
- package/lib/interfaces.d.ts +10 -20
- package/lib/interfaces.d.ts.map +1 -1
- package/lib/{interfaces.js → interfaces.mjs} +1 -1
- package/lib/interfaces.mjs.map +1 -0
- package/lib/internalInterfaces.d.ts +2 -2
- package/lib/internalInterfaces.d.ts.map +1 -1
- package/lib/{internalInterfaces.js → internalInterfaces.mjs} +1 -1
- package/{dist/internalInterfaces.js.map → lib/internalInterfaces.mjs.map} +1 -1
- package/lib/localValues.d.ts +3 -5
- package/lib/localValues.d.ts.map +1 -1
- package/lib/{localValues.js → localValues.mjs} +2 -3
- package/lib/localValues.mjs.map +1 -0
- package/lib/map-alpha.d.ts +979 -0
- package/lib/map-beta.d.ts +119 -0
- package/lib/map-public.d.ts +119 -0
- package/lib/map-untrimmed.d.ts +993 -0
- package/lib/map.d.ts +3 -11
- package/lib/map.d.ts.map +1 -1
- package/lib/{map.js → map.mjs} +5 -13
- package/lib/map.mjs.map +1 -0
- package/lib/mapKernel.d.ts +2 -2
- package/lib/mapKernel.d.ts.map +1 -1
- package/lib/{mapKernel.js → mapKernel.mjs} +2 -2
- package/lib/mapKernel.mjs.map +1 -0
- package/lib/packageVersion.d.ts +1 -1
- package/lib/{packageVersion.js → packageVersion.mjs} +2 -2
- package/lib/packageVersion.mjs.map +1 -0
- package/map.test-files.tar +0 -0
- package/package.json +54 -33
- package/src/directory.ts +280 -62
- package/src/interfaces.ts +10 -20
- package/src/localValues.ts +2 -4
- package/src/map.ts +2 -10
- package/src/packageVersion.ts +1 -1
- package/tsc-multi.test.json +4 -0
- package/tsconfig.json +6 -5
- package/dist/directory.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/interfaces.js.map +0 -1
- package/dist/localValues.js.map +0 -1
- package/dist/map.js.map +0 -1
- package/dist/mapKernel.js.map +0 -1
- package/dist/packageVersion.js.map +0 -1
- package/lib/directory.js.map +0 -1
- package/lib/index.js +0 -19
- package/lib/index.js.map +0 -1
- package/lib/interfaces.js.map +0 -1
- package/lib/internalInterfaces.js.map +0 -1
- package/lib/localValues.js.map +0 -1
- package/lib/map.js.map +0 -1
- package/lib/mapKernel.js.map +0 -1
- package/lib/packageVersion.js.map +0 -1
- package/tsconfig.esnext.json +0 -7
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The `map` library provides interfaces and implementing classes for map-like distributed data structures.
|
|
3
|
+
*
|
|
4
|
+
* @remarks The following distributed data structures are defined in this library:
|
|
5
|
+
*
|
|
6
|
+
* - {@link SharedMap}
|
|
7
|
+
*
|
|
8
|
+
* - {@link SharedDirectory}
|
|
9
|
+
*
|
|
10
|
+
* @packageDocumentation
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import { IChannelAttributes } from '@fluidframework/datastore-definitions';
|
|
14
|
+
import { IChannelFactory } from '@fluidframework/datastore-definitions';
|
|
15
|
+
import { IChannelServices } from '@fluidframework/datastore-definitions';
|
|
16
|
+
import { IChannelStorageService } from '@fluidframework/datastore-definitions';
|
|
17
|
+
import { IDisposable } from '@fluidframework/core-interfaces';
|
|
18
|
+
import { IEvent } from '@fluidframework/core-interfaces';
|
|
19
|
+
import { IEventProvider } from '@fluidframework/core-interfaces';
|
|
20
|
+
import { IEventThisPlaceHolder } from '@fluidframework/core-interfaces';
|
|
21
|
+
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
|
|
22
|
+
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
23
|
+
import { IFluidSerializer } from '@fluidframework/shared-object-base';
|
|
24
|
+
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
25
|
+
import { ISharedObject } from '@fluidframework/shared-object-base';
|
|
26
|
+
import { ISharedObjectEvents } from '@fluidframework/shared-object-base';
|
|
27
|
+
import { ISummaryTreeWithStats } from '@fluidframework/runtime-definitions';
|
|
28
|
+
import { ITelemetryContext } from '@fluidframework/runtime-definitions';
|
|
29
|
+
import { SharedObject } from '@fluidframework/shared-object-base';
|
|
30
|
+
|
|
31
|
+
/* Excluded from this release type: DirectoryFactory */
|
|
32
|
+
|
|
33
|
+
/* Excluded from this release type: IChannelAttributes */
|
|
34
|
+
|
|
35
|
+
/* Excluded from this release type: IChannelFactory */
|
|
36
|
+
|
|
37
|
+
/* Excluded from this release type: IChannelServices */
|
|
38
|
+
|
|
39
|
+
/* Excluded from this release type: IChannelStorageService */
|
|
40
|
+
|
|
41
|
+
/* Excluded from this release type: ICreateInfo */
|
|
42
|
+
|
|
43
|
+
/* Excluded from this release type: IDirectory */
|
|
44
|
+
|
|
45
|
+
/* Excluded from this release type: IDirectoryClearOperation */
|
|
46
|
+
|
|
47
|
+
/* Excluded from this release type: IDirectoryCreateSubDirectoryOperation */
|
|
48
|
+
|
|
49
|
+
/* Excluded from this release type: IDirectoryDataObject */
|
|
50
|
+
|
|
51
|
+
/* Excluded from this release type: IDirectoryDeleteOperation */
|
|
52
|
+
|
|
53
|
+
/* Excluded from this release type: IDirectoryDeleteSubDirectoryOperation */
|
|
54
|
+
|
|
55
|
+
/* Excluded from this release type: IDirectoryEvents */
|
|
56
|
+
|
|
57
|
+
/* Excluded from this release type: IDirectoryKeyOperation */
|
|
58
|
+
|
|
59
|
+
/* Excluded from this release type: IDirectoryNewStorageFormat */
|
|
60
|
+
|
|
61
|
+
/* Excluded from this release type: IDirectoryOperation */
|
|
62
|
+
|
|
63
|
+
/* Excluded from this release type: IDirectorySetOperation */
|
|
64
|
+
|
|
65
|
+
/* Excluded from this release type: IDirectoryStorageOperation */
|
|
66
|
+
|
|
67
|
+
/* Excluded from this release type: IDirectorySubDirectoryOperation */
|
|
68
|
+
|
|
69
|
+
/* Excluded from this release type: IDirectoryValueChanged */
|
|
70
|
+
|
|
71
|
+
/* Excluded from this release type: IDisposable */
|
|
72
|
+
|
|
73
|
+
/* Excluded from this release type: IEvent */
|
|
74
|
+
|
|
75
|
+
/* Excluded from this release type: IEventProvider */
|
|
76
|
+
|
|
77
|
+
/* Excluded from this release type: IEventThisPlaceHolder */
|
|
78
|
+
|
|
79
|
+
/* Excluded from this release type: IFluidDataStoreRuntime */
|
|
80
|
+
|
|
81
|
+
/* Excluded from this release type: IFluidHandle */
|
|
82
|
+
|
|
83
|
+
/* Excluded from this release type: IFluidSerializer */
|
|
84
|
+
|
|
85
|
+
/* Excluded from this release type: ILocalValue */
|
|
86
|
+
|
|
87
|
+
/* Excluded from this release type: ISerializableValue */
|
|
88
|
+
|
|
89
|
+
/* Excluded from this release type: ISerializedValue */
|
|
90
|
+
|
|
91
|
+
/* Excluded from this release type: ISharedDirectory */
|
|
92
|
+
|
|
93
|
+
/* Excluded from this release type: ISharedDirectoryEvents */
|
|
94
|
+
|
|
95
|
+
/* Excluded from this release type: ISharedMap */
|
|
96
|
+
|
|
97
|
+
/* Excluded from this release type: ISharedMapEvents */
|
|
98
|
+
|
|
99
|
+
/* Excluded from this release type: ISharedObject */
|
|
100
|
+
|
|
101
|
+
/* Excluded from this release type: ISharedObjectEvents */
|
|
102
|
+
|
|
103
|
+
/* Excluded from this release type: ISummaryTreeWithStats */
|
|
104
|
+
|
|
105
|
+
/* Excluded from this release type: ITelemetryContext */
|
|
106
|
+
|
|
107
|
+
/* Excluded from this release type: IValueChanged */
|
|
108
|
+
|
|
109
|
+
/* Excluded from this release type: LocalValueMaker */
|
|
110
|
+
|
|
111
|
+
/* Excluded from this release type: MapFactory */
|
|
112
|
+
|
|
113
|
+
/* Excluded from this release type: SharedDirectory */
|
|
114
|
+
|
|
115
|
+
/* Excluded from this release type: SharedMap */
|
|
116
|
+
|
|
117
|
+
/* Excluded from this release type: SharedObject */
|
|
118
|
+
|
|
119
|
+
export { }
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The `map` library provides interfaces and implementing classes for map-like distributed data structures.
|
|
3
|
+
*
|
|
4
|
+
* @remarks The following distributed data structures are defined in this library:
|
|
5
|
+
*
|
|
6
|
+
* - {@link SharedMap}
|
|
7
|
+
*
|
|
8
|
+
* - {@link SharedDirectory}
|
|
9
|
+
*
|
|
10
|
+
* @packageDocumentation
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import { IChannelAttributes } from '@fluidframework/datastore-definitions';
|
|
14
|
+
import { IChannelFactory } from '@fluidframework/datastore-definitions';
|
|
15
|
+
import { IChannelServices } from '@fluidframework/datastore-definitions';
|
|
16
|
+
import { IChannelStorageService } from '@fluidframework/datastore-definitions';
|
|
17
|
+
import { IDisposable } from '@fluidframework/core-interfaces';
|
|
18
|
+
import { IEvent } from '@fluidframework/core-interfaces';
|
|
19
|
+
import { IEventProvider } from '@fluidframework/core-interfaces';
|
|
20
|
+
import { IEventThisPlaceHolder } from '@fluidframework/core-interfaces';
|
|
21
|
+
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
|
|
22
|
+
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
23
|
+
import { IFluidSerializer } from '@fluidframework/shared-object-base';
|
|
24
|
+
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
25
|
+
import { ISharedObject } from '@fluidframework/shared-object-base';
|
|
26
|
+
import { ISharedObjectEvents } from '@fluidframework/shared-object-base';
|
|
27
|
+
import { ISummaryTreeWithStats } from '@fluidframework/runtime-definitions';
|
|
28
|
+
import { ITelemetryContext } from '@fluidframework/runtime-definitions';
|
|
29
|
+
import { SharedObject } from '@fluidframework/shared-object-base';
|
|
30
|
+
|
|
31
|
+
/* Excluded from this release type: DirectoryFactory */
|
|
32
|
+
|
|
33
|
+
/* Excluded from this release type: IChannelAttributes */
|
|
34
|
+
|
|
35
|
+
/* Excluded from this release type: IChannelFactory */
|
|
36
|
+
|
|
37
|
+
/* Excluded from this release type: IChannelServices */
|
|
38
|
+
|
|
39
|
+
/* Excluded from this release type: IChannelStorageService */
|
|
40
|
+
|
|
41
|
+
/* Excluded from this release type: ICreateInfo */
|
|
42
|
+
|
|
43
|
+
/* Excluded from this release type: IDirectory */
|
|
44
|
+
|
|
45
|
+
/* Excluded from this release type: IDirectoryClearOperation */
|
|
46
|
+
|
|
47
|
+
/* Excluded from this release type: IDirectoryCreateSubDirectoryOperation */
|
|
48
|
+
|
|
49
|
+
/* Excluded from this release type: IDirectoryDataObject */
|
|
50
|
+
|
|
51
|
+
/* Excluded from this release type: IDirectoryDeleteOperation */
|
|
52
|
+
|
|
53
|
+
/* Excluded from this release type: IDirectoryDeleteSubDirectoryOperation */
|
|
54
|
+
|
|
55
|
+
/* Excluded from this release type: IDirectoryEvents */
|
|
56
|
+
|
|
57
|
+
/* Excluded from this release type: IDirectoryKeyOperation */
|
|
58
|
+
|
|
59
|
+
/* Excluded from this release type: IDirectoryNewStorageFormat */
|
|
60
|
+
|
|
61
|
+
/* Excluded from this release type: IDirectoryOperation */
|
|
62
|
+
|
|
63
|
+
/* Excluded from this release type: IDirectorySetOperation */
|
|
64
|
+
|
|
65
|
+
/* Excluded from this release type: IDirectoryStorageOperation */
|
|
66
|
+
|
|
67
|
+
/* Excluded from this release type: IDirectorySubDirectoryOperation */
|
|
68
|
+
|
|
69
|
+
/* Excluded from this release type: IDirectoryValueChanged */
|
|
70
|
+
|
|
71
|
+
/* Excluded from this release type: IDisposable */
|
|
72
|
+
|
|
73
|
+
/* Excluded from this release type: IEvent */
|
|
74
|
+
|
|
75
|
+
/* Excluded from this release type: IEventProvider */
|
|
76
|
+
|
|
77
|
+
/* Excluded from this release type: IEventThisPlaceHolder */
|
|
78
|
+
|
|
79
|
+
/* Excluded from this release type: IFluidDataStoreRuntime */
|
|
80
|
+
|
|
81
|
+
/* Excluded from this release type: IFluidHandle */
|
|
82
|
+
|
|
83
|
+
/* Excluded from this release type: IFluidSerializer */
|
|
84
|
+
|
|
85
|
+
/* Excluded from this release type: ILocalValue */
|
|
86
|
+
|
|
87
|
+
/* Excluded from this release type: ISerializableValue */
|
|
88
|
+
|
|
89
|
+
/* Excluded from this release type: ISerializedValue */
|
|
90
|
+
|
|
91
|
+
/* Excluded from this release type: ISharedDirectory */
|
|
92
|
+
|
|
93
|
+
/* Excluded from this release type: ISharedDirectoryEvents */
|
|
94
|
+
|
|
95
|
+
/* Excluded from this release type: ISharedMap */
|
|
96
|
+
|
|
97
|
+
/* Excluded from this release type: ISharedMapEvents */
|
|
98
|
+
|
|
99
|
+
/* Excluded from this release type: ISharedObject */
|
|
100
|
+
|
|
101
|
+
/* Excluded from this release type: ISharedObjectEvents */
|
|
102
|
+
|
|
103
|
+
/* Excluded from this release type: ISummaryTreeWithStats */
|
|
104
|
+
|
|
105
|
+
/* Excluded from this release type: ITelemetryContext */
|
|
106
|
+
|
|
107
|
+
/* Excluded from this release type: IValueChanged */
|
|
108
|
+
|
|
109
|
+
/* Excluded from this release type: LocalValueMaker */
|
|
110
|
+
|
|
111
|
+
/* Excluded from this release type: MapFactory */
|
|
112
|
+
|
|
113
|
+
/* Excluded from this release type: SharedDirectory */
|
|
114
|
+
|
|
115
|
+
/* Excluded from this release type: SharedMap */
|
|
116
|
+
|
|
117
|
+
/* Excluded from this release type: SharedObject */
|
|
118
|
+
|
|
119
|
+
export { }
|