fluid-framework 2.0.0-internal.7.3.0 → 2.0.0-internal.8.0.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 +32 -0
- package/api-extractor-lint.json +13 -0
- package/api-extractor.json +1 -1
- package/api-report/fluid-framework.api.md +0 -9
- package/dist/fluid-framework-alpha.d.ts +236 -0
- package/dist/fluid-framework-beta.d.ts +247 -0
- package/dist/fluid-framework-public.d.ts +247 -0
- package/dist/fluid-framework-untrimmed.d.ts +247 -0
- package/dist/index.cjs +1 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/lib/fluid-framework-alpha.d.ts +236 -0
- package/lib/fluid-framework-beta.d.ts +247 -0
- package/lib/fluid-framework-public.d.ts +247 -0
- package/lib/fluid-framework-untrimmed.d.ts +247 -0
- package/lib/index.d.ts +0 -8
- package/lib/index.d.ts.map +1 -1
- package/lib/index.mjs +0 -1
- package/lib/index.mjs.map +1 -1
- package/package.json +27 -24
- package/src/index.ts +0 -5
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use
|
|
3
|
+
* when paired with a corresponding service client library (for example,
|
|
4
|
+
* `\@fluidframework/azure-client` or `\@fluidframework/tinylicious-client`).
|
|
5
|
+
*
|
|
6
|
+
* @packageDocumentation
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import { AttachState } from '@fluidframework/container-definitions';
|
|
10
|
+
import { ConnectionState } from '@fluidframework/container-loader';
|
|
11
|
+
import { ContainerErrorType } from '@fluidframework/container-definitions';
|
|
12
|
+
import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
13
|
+
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
|
+
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
|
+
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
+
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
17
|
+
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
18
|
+
import { IConnection } from '@fluidframework/fluid-static';
|
|
19
|
+
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
20
|
+
import { IDirectory } from '@fluidframework/map';
|
|
21
|
+
import { IDirectoryClearOperation } from '@fluidframework/map';
|
|
22
|
+
import { IDirectoryCreateSubDirectoryOperation } from '@fluidframework/map';
|
|
23
|
+
import { IDirectoryDataObject } from '@fluidframework/map';
|
|
24
|
+
import { IDirectoryDeleteOperation } from '@fluidframework/map';
|
|
25
|
+
import { IDirectoryDeleteSubDirectoryOperation } from '@fluidframework/map';
|
|
26
|
+
import { IDirectoryEvents } from '@fluidframework/map';
|
|
27
|
+
import { IDirectoryKeyOperation } from '@fluidframework/map';
|
|
28
|
+
import { IDirectoryNewStorageFormat } from '@fluidframework/map';
|
|
29
|
+
import { IDirectoryOperation } from '@fluidframework/map';
|
|
30
|
+
import { IDirectorySetOperation } from '@fluidframework/map';
|
|
31
|
+
import { IDirectoryStorageOperation } from '@fluidframework/map';
|
|
32
|
+
import { IDirectorySubDirectoryOperation } from '@fluidframework/map';
|
|
33
|
+
import { IDirectoryValueChanged } from '@fluidframework/map';
|
|
34
|
+
import { IFluidContainer } from '@fluidframework/fluid-static';
|
|
35
|
+
import { IFluidContainerEvents } from '@fluidframework/fluid-static';
|
|
36
|
+
import { IInterval } from '@fluidframework/sequence';
|
|
37
|
+
import { IIntervalCollection } from '@fluidframework/sequence';
|
|
38
|
+
import { IIntervalCollectionEvent } from '@fluidframework/sequence';
|
|
39
|
+
import { IIntervalHelpers } from '@fluidframework/sequence';
|
|
40
|
+
import { IJSONRunSegment } from '@fluidframework/sequence';
|
|
41
|
+
import { ILocalValue } from '@fluidframework/map';
|
|
42
|
+
import { IMapMessageLocalMetadata } from '@fluidframework/sequence';
|
|
43
|
+
import { IMember } from '@fluidframework/fluid-static';
|
|
44
|
+
import { Interval } from '@fluidframework/sequence';
|
|
45
|
+
import { IntervalLocator } from '@fluidframework/sequence';
|
|
46
|
+
import { intervalLocatorFromEndpoint } from '@fluidframework/sequence';
|
|
47
|
+
import { IntervalType } from '@fluidframework/sequence';
|
|
48
|
+
import { IRootDataObject } from '@fluidframework/fluid-static';
|
|
49
|
+
import { ISequenceDeltaRange } from '@fluidframework/sequence';
|
|
50
|
+
import { ISerializableInterval } from '@fluidframework/sequence';
|
|
51
|
+
import { ISerializableValue } from '@fluidframework/map';
|
|
52
|
+
import { ISerializedInterval } from '@fluidframework/sequence';
|
|
53
|
+
import { ISerializedValue } from '@fluidframework/map';
|
|
54
|
+
import { IServiceAudience } from '@fluidframework/fluid-static';
|
|
55
|
+
import { IServiceAudienceEvents } from '@fluidframework/fluid-static';
|
|
56
|
+
import { ISharedDirectory } from '@fluidframework/map';
|
|
57
|
+
import { ISharedDirectoryEvents } from '@fluidframework/map';
|
|
58
|
+
import { ISharedIntervalCollection } from '@fluidframework/sequence';
|
|
59
|
+
import { ISharedMap } from '@fluidframework/map';
|
|
60
|
+
import { ISharedMapEvents } from '@fluidframework/map';
|
|
61
|
+
import { ISharedSegmentSequenceEvents } from '@fluidframework/sequence';
|
|
62
|
+
import { ISharedString } from '@fluidframework/sequence';
|
|
63
|
+
import { IValueChanged } from '@fluidframework/map';
|
|
64
|
+
import { IValueOpEmitter } from '@fluidframework/sequence';
|
|
65
|
+
import { LoadableObjectClass } from '@fluidframework/fluid-static';
|
|
66
|
+
import { LoadableObjectClassRecord } from '@fluidframework/fluid-static';
|
|
67
|
+
import { LoadableObjectCtor } from '@fluidframework/fluid-static';
|
|
68
|
+
import { LoadableObjectRecord } from '@fluidframework/fluid-static';
|
|
69
|
+
import { LocalValueMaker } from '@fluidframework/map';
|
|
70
|
+
import { MapFactory } from '@fluidframework/map';
|
|
71
|
+
import { MemberChangedListener } from '@fluidframework/fluid-static';
|
|
72
|
+
import { SequenceDeltaEvent } from '@fluidframework/sequence';
|
|
73
|
+
import { SequenceEvent } from '@fluidframework/sequence';
|
|
74
|
+
import { SequenceInterval } from '@fluidframework/sequence';
|
|
75
|
+
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
76
|
+
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
77
|
+
import { SharedDirectory } from '@fluidframework/map';
|
|
78
|
+
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
79
|
+
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
80
|
+
import { SharedMap } from '@fluidframework/map';
|
|
81
|
+
import { SharedObjectClass } from '@fluidframework/fluid-static';
|
|
82
|
+
import { SharedSegmentSequence } from '@fluidframework/sequence';
|
|
83
|
+
import { SharedSequence } from '@fluidframework/sequence';
|
|
84
|
+
import { SharedString } from '@fluidframework/sequence';
|
|
85
|
+
import { SharedStringFactory } from '@fluidframework/sequence';
|
|
86
|
+
import { SharedStringSegment } from '@fluidframework/sequence';
|
|
87
|
+
import { SubSequence } from '@fluidframework/sequence';
|
|
88
|
+
|
|
89
|
+
/* Excluded from this release type: AttachState */
|
|
90
|
+
|
|
91
|
+
/* Excluded from this release type: ConnectionState */
|
|
92
|
+
|
|
93
|
+
/* Excluded from this release type: ContainerErrorType */
|
|
94
|
+
|
|
95
|
+
/* Excluded from this release type: ContainerSchema */
|
|
96
|
+
|
|
97
|
+
/* Excluded from this release type: DataObjectClass */
|
|
98
|
+
|
|
99
|
+
/* Excluded from this release type: DeserializeCallback */
|
|
100
|
+
|
|
101
|
+
/* Excluded from this release type: DirectoryFactory */
|
|
102
|
+
|
|
103
|
+
/* Excluded from this release type: DriverErrorType */
|
|
104
|
+
|
|
105
|
+
/* Excluded from this release type: getTextAndMarkers */
|
|
106
|
+
|
|
107
|
+
/* Excluded from this release type: IConnection */
|
|
108
|
+
|
|
109
|
+
/* Excluded from this release type: ICriticalContainerError */
|
|
110
|
+
|
|
111
|
+
/* Excluded from this release type: IDirectory */
|
|
112
|
+
|
|
113
|
+
/* Excluded from this release type: IDirectoryClearOperation */
|
|
114
|
+
|
|
115
|
+
/* Excluded from this release type: IDirectoryCreateSubDirectoryOperation */
|
|
116
|
+
|
|
117
|
+
/* Excluded from this release type: IDirectoryDataObject */
|
|
118
|
+
|
|
119
|
+
/* Excluded from this release type: IDirectoryDeleteOperation */
|
|
120
|
+
|
|
121
|
+
/* Excluded from this release type: IDirectoryDeleteSubDirectoryOperation */
|
|
122
|
+
|
|
123
|
+
/* Excluded from this release type: IDirectoryEvents */
|
|
124
|
+
|
|
125
|
+
/* Excluded from this release type: IDirectoryKeyOperation */
|
|
126
|
+
|
|
127
|
+
/* Excluded from this release type: IDirectoryNewStorageFormat */
|
|
128
|
+
|
|
129
|
+
/* Excluded from this release type: IDirectoryOperation */
|
|
130
|
+
|
|
131
|
+
/* Excluded from this release type: IDirectorySetOperation */
|
|
132
|
+
|
|
133
|
+
/* Excluded from this release type: IDirectoryStorageOperation */
|
|
134
|
+
|
|
135
|
+
/* Excluded from this release type: IDirectorySubDirectoryOperation */
|
|
136
|
+
|
|
137
|
+
/* Excluded from this release type: IDirectoryValueChanged */
|
|
138
|
+
|
|
139
|
+
/* Excluded from this release type: IFluidContainer */
|
|
140
|
+
|
|
141
|
+
/* Excluded from this release type: IFluidContainerEvents */
|
|
142
|
+
|
|
143
|
+
/* Excluded from this release type: IInterval */
|
|
144
|
+
|
|
145
|
+
/* Excluded from this release type: IIntervalCollection */
|
|
146
|
+
|
|
147
|
+
/* Excluded from this release type: IIntervalCollectionEvent */
|
|
148
|
+
|
|
149
|
+
/* Excluded from this release type: IIntervalHelpers */
|
|
150
|
+
|
|
151
|
+
/* Excluded from this release type: IJSONRunSegment */
|
|
152
|
+
|
|
153
|
+
/* Excluded from this release type: ILocalValue */
|
|
154
|
+
|
|
155
|
+
/* Excluded from this release type: IMapMessageLocalMetadata */
|
|
156
|
+
|
|
157
|
+
/* Excluded from this release type: IMember */
|
|
158
|
+
|
|
159
|
+
/* Excluded from this release type: Interval */
|
|
160
|
+
|
|
161
|
+
/* Excluded from this release type: IntervalLocator */
|
|
162
|
+
|
|
163
|
+
/* Excluded from this release type: intervalLocatorFromEndpoint */
|
|
164
|
+
|
|
165
|
+
/* Excluded from this release type: IntervalType */
|
|
166
|
+
|
|
167
|
+
/* Excluded from this release type: IRootDataObject */
|
|
168
|
+
|
|
169
|
+
/* Excluded from this release type: ISequenceDeltaRange */
|
|
170
|
+
|
|
171
|
+
/* Excluded from this release type: ISerializableInterval */
|
|
172
|
+
|
|
173
|
+
/* Excluded from this release type: ISerializableValue */
|
|
174
|
+
|
|
175
|
+
/* Excluded from this release type: ISerializedInterval */
|
|
176
|
+
|
|
177
|
+
/* Excluded from this release type: ISerializedValue */
|
|
178
|
+
|
|
179
|
+
/* Excluded from this release type: IServiceAudience */
|
|
180
|
+
|
|
181
|
+
/* Excluded from this release type: IServiceAudienceEvents */
|
|
182
|
+
|
|
183
|
+
/* Excluded from this release type: ISharedDirectory */
|
|
184
|
+
|
|
185
|
+
/* Excluded from this release type: ISharedDirectoryEvents */
|
|
186
|
+
|
|
187
|
+
/* Excluded from this release type: ISharedIntervalCollection */
|
|
188
|
+
|
|
189
|
+
/* Excluded from this release type: ISharedMap */
|
|
190
|
+
|
|
191
|
+
/* Excluded from this release type: ISharedMapEvents */
|
|
192
|
+
|
|
193
|
+
/* Excluded from this release type: ISharedSegmentSequenceEvents */
|
|
194
|
+
|
|
195
|
+
/* Excluded from this release type: ISharedString */
|
|
196
|
+
|
|
197
|
+
/* Excluded from this release type: IValueChanged */
|
|
198
|
+
|
|
199
|
+
/* Excluded from this release type: IValueOpEmitter */
|
|
200
|
+
|
|
201
|
+
/* Excluded from this release type: LoadableObjectClass */
|
|
202
|
+
|
|
203
|
+
/* Excluded from this release type: LoadableObjectClassRecord */
|
|
204
|
+
|
|
205
|
+
/* Excluded from this release type: LoadableObjectCtor */
|
|
206
|
+
|
|
207
|
+
/* Excluded from this release type: LoadableObjectRecord */
|
|
208
|
+
|
|
209
|
+
/* Excluded from this release type: LocalValueMaker */
|
|
210
|
+
|
|
211
|
+
/* Excluded from this release type: MapFactory */
|
|
212
|
+
|
|
213
|
+
/* Excluded from this release type: MemberChangedListener */
|
|
214
|
+
|
|
215
|
+
/* Excluded from this release type: SequenceDeltaEvent */
|
|
216
|
+
|
|
217
|
+
/* Excluded from this release type: SequenceEvent */
|
|
218
|
+
|
|
219
|
+
/* Excluded from this release type: SequenceInterval */
|
|
220
|
+
|
|
221
|
+
/* Excluded from this release type: SequenceMaintenanceEvent */
|
|
222
|
+
|
|
223
|
+
/* Excluded from this release type: SerializedIntervalDelta */
|
|
224
|
+
|
|
225
|
+
/* Excluded from this release type: SharedDirectory */
|
|
226
|
+
|
|
227
|
+
/* Excluded from this release type: SharedIntervalCollection */
|
|
228
|
+
|
|
229
|
+
/* Excluded from this release type: SharedIntervalCollectionFactory */
|
|
230
|
+
|
|
231
|
+
/* Excluded from this release type: SharedMap */
|
|
232
|
+
|
|
233
|
+
/* Excluded from this release type: SharedObjectClass */
|
|
234
|
+
|
|
235
|
+
/* Excluded from this release type: SharedSegmentSequence */
|
|
236
|
+
|
|
237
|
+
/* Excluded from this release type: SharedSequence */
|
|
238
|
+
|
|
239
|
+
/* Excluded from this release type: SharedString */
|
|
240
|
+
|
|
241
|
+
/* Excluded from this release type: SharedStringFactory */
|
|
242
|
+
|
|
243
|
+
/* Excluded from this release type: SharedStringSegment */
|
|
244
|
+
|
|
245
|
+
/* Excluded from this release type: SubSequence */
|
|
246
|
+
|
|
247
|
+
export { }
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use
|
|
3
|
+
* when paired with a corresponding service client library (for example,
|
|
4
|
+
* `\@fluidframework/azure-client` or `\@fluidframework/tinylicious-client`).
|
|
5
|
+
*
|
|
6
|
+
* @packageDocumentation
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import { AttachState } from '@fluidframework/container-definitions';
|
|
10
|
+
import { ConnectionState } from '@fluidframework/container-loader';
|
|
11
|
+
import { ContainerErrorType } from '@fluidframework/container-definitions';
|
|
12
|
+
import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
13
|
+
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
|
+
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
|
+
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
+
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
17
|
+
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
18
|
+
import { IConnection } from '@fluidframework/fluid-static';
|
|
19
|
+
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
20
|
+
import { IDirectory } from '@fluidframework/map';
|
|
21
|
+
import { IDirectoryClearOperation } from '@fluidframework/map';
|
|
22
|
+
import { IDirectoryCreateSubDirectoryOperation } from '@fluidframework/map';
|
|
23
|
+
import { IDirectoryDataObject } from '@fluidframework/map';
|
|
24
|
+
import { IDirectoryDeleteOperation } from '@fluidframework/map';
|
|
25
|
+
import { IDirectoryDeleteSubDirectoryOperation } from '@fluidframework/map';
|
|
26
|
+
import { IDirectoryEvents } from '@fluidframework/map';
|
|
27
|
+
import { IDirectoryKeyOperation } from '@fluidframework/map';
|
|
28
|
+
import { IDirectoryNewStorageFormat } from '@fluidframework/map';
|
|
29
|
+
import { IDirectoryOperation } from '@fluidframework/map';
|
|
30
|
+
import { IDirectorySetOperation } from '@fluidframework/map';
|
|
31
|
+
import { IDirectoryStorageOperation } from '@fluidframework/map';
|
|
32
|
+
import { IDirectorySubDirectoryOperation } from '@fluidframework/map';
|
|
33
|
+
import { IDirectoryValueChanged } from '@fluidframework/map';
|
|
34
|
+
import { IFluidContainer } from '@fluidframework/fluid-static';
|
|
35
|
+
import { IFluidContainerEvents } from '@fluidframework/fluid-static';
|
|
36
|
+
import { IInterval } from '@fluidframework/sequence';
|
|
37
|
+
import { IIntervalCollection } from '@fluidframework/sequence';
|
|
38
|
+
import { IIntervalCollectionEvent } from '@fluidframework/sequence';
|
|
39
|
+
import { IIntervalHelpers } from '@fluidframework/sequence';
|
|
40
|
+
import { IJSONRunSegment } from '@fluidframework/sequence';
|
|
41
|
+
import { ILocalValue } from '@fluidframework/map';
|
|
42
|
+
import { IMapMessageLocalMetadata } from '@fluidframework/sequence';
|
|
43
|
+
import { IMember } from '@fluidframework/fluid-static';
|
|
44
|
+
import { Interval } from '@fluidframework/sequence';
|
|
45
|
+
import { IntervalLocator } from '@fluidframework/sequence';
|
|
46
|
+
import { intervalLocatorFromEndpoint } from '@fluidframework/sequence';
|
|
47
|
+
import { IntervalType } from '@fluidframework/sequence';
|
|
48
|
+
import { IRootDataObject } from '@fluidframework/fluid-static';
|
|
49
|
+
import { ISequenceDeltaRange } from '@fluidframework/sequence';
|
|
50
|
+
import { ISerializableInterval } from '@fluidframework/sequence';
|
|
51
|
+
import { ISerializableValue } from '@fluidframework/map';
|
|
52
|
+
import { ISerializedInterval } from '@fluidframework/sequence';
|
|
53
|
+
import { ISerializedValue } from '@fluidframework/map';
|
|
54
|
+
import { IServiceAudience } from '@fluidframework/fluid-static';
|
|
55
|
+
import { IServiceAudienceEvents } from '@fluidframework/fluid-static';
|
|
56
|
+
import { ISharedDirectory } from '@fluidframework/map';
|
|
57
|
+
import { ISharedDirectoryEvents } from '@fluidframework/map';
|
|
58
|
+
import { ISharedIntervalCollection } from '@fluidframework/sequence';
|
|
59
|
+
import { ISharedMap } from '@fluidframework/map';
|
|
60
|
+
import { ISharedMapEvents } from '@fluidframework/map';
|
|
61
|
+
import { ISharedSegmentSequenceEvents } from '@fluidframework/sequence';
|
|
62
|
+
import { ISharedString } from '@fluidframework/sequence';
|
|
63
|
+
import { IValueChanged } from '@fluidframework/map';
|
|
64
|
+
import { IValueOpEmitter } from '@fluidframework/sequence';
|
|
65
|
+
import { LoadableObjectClass } from '@fluidframework/fluid-static';
|
|
66
|
+
import { LoadableObjectClassRecord } from '@fluidframework/fluid-static';
|
|
67
|
+
import { LoadableObjectCtor } from '@fluidframework/fluid-static';
|
|
68
|
+
import { LoadableObjectRecord } from '@fluidframework/fluid-static';
|
|
69
|
+
import { LocalValueMaker } from '@fluidframework/map';
|
|
70
|
+
import { MapFactory } from '@fluidframework/map';
|
|
71
|
+
import { MemberChangedListener } from '@fluidframework/fluid-static';
|
|
72
|
+
import { SequenceDeltaEvent } from '@fluidframework/sequence';
|
|
73
|
+
import { SequenceEvent } from '@fluidframework/sequence';
|
|
74
|
+
import { SequenceInterval } from '@fluidframework/sequence';
|
|
75
|
+
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
76
|
+
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
77
|
+
import { SharedDirectory } from '@fluidframework/map';
|
|
78
|
+
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
79
|
+
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
80
|
+
import { SharedMap } from '@fluidframework/map';
|
|
81
|
+
import { SharedObjectClass } from '@fluidframework/fluid-static';
|
|
82
|
+
import { SharedSegmentSequence } from '@fluidframework/sequence';
|
|
83
|
+
import { SharedSequence } from '@fluidframework/sequence';
|
|
84
|
+
import { SharedString } from '@fluidframework/sequence';
|
|
85
|
+
import { SharedStringFactory } from '@fluidframework/sequence';
|
|
86
|
+
import { SharedStringSegment } from '@fluidframework/sequence';
|
|
87
|
+
import { SubSequence } from '@fluidframework/sequence';
|
|
88
|
+
|
|
89
|
+
export { AttachState }
|
|
90
|
+
|
|
91
|
+
export { ConnectionState }
|
|
92
|
+
|
|
93
|
+
export { ContainerErrorType }
|
|
94
|
+
|
|
95
|
+
export { ContainerSchema }
|
|
96
|
+
|
|
97
|
+
export { DataObjectClass }
|
|
98
|
+
|
|
99
|
+
export { DeserializeCallback }
|
|
100
|
+
|
|
101
|
+
export { DirectoryFactory }
|
|
102
|
+
|
|
103
|
+
export { DriverErrorType }
|
|
104
|
+
|
|
105
|
+
export { getTextAndMarkers }
|
|
106
|
+
|
|
107
|
+
export { IConnection }
|
|
108
|
+
|
|
109
|
+
export { ICriticalContainerError }
|
|
110
|
+
|
|
111
|
+
export { IDirectory }
|
|
112
|
+
|
|
113
|
+
export { IDirectoryClearOperation }
|
|
114
|
+
|
|
115
|
+
export { IDirectoryCreateSubDirectoryOperation }
|
|
116
|
+
|
|
117
|
+
export { IDirectoryDataObject }
|
|
118
|
+
|
|
119
|
+
export { IDirectoryDeleteOperation }
|
|
120
|
+
|
|
121
|
+
export { IDirectoryDeleteSubDirectoryOperation }
|
|
122
|
+
|
|
123
|
+
export { IDirectoryEvents }
|
|
124
|
+
|
|
125
|
+
export { IDirectoryKeyOperation }
|
|
126
|
+
|
|
127
|
+
export { IDirectoryNewStorageFormat }
|
|
128
|
+
|
|
129
|
+
export { IDirectoryOperation }
|
|
130
|
+
|
|
131
|
+
export { IDirectorySetOperation }
|
|
132
|
+
|
|
133
|
+
export { IDirectoryStorageOperation }
|
|
134
|
+
|
|
135
|
+
export { IDirectorySubDirectoryOperation }
|
|
136
|
+
|
|
137
|
+
export { IDirectoryValueChanged }
|
|
138
|
+
|
|
139
|
+
export { IFluidContainer }
|
|
140
|
+
|
|
141
|
+
export { IFluidContainerEvents }
|
|
142
|
+
|
|
143
|
+
export { IInterval }
|
|
144
|
+
|
|
145
|
+
export { IIntervalCollection }
|
|
146
|
+
|
|
147
|
+
export { IIntervalCollectionEvent }
|
|
148
|
+
|
|
149
|
+
export { IIntervalHelpers }
|
|
150
|
+
|
|
151
|
+
export { IJSONRunSegment }
|
|
152
|
+
|
|
153
|
+
export { ILocalValue }
|
|
154
|
+
|
|
155
|
+
export { IMapMessageLocalMetadata }
|
|
156
|
+
|
|
157
|
+
export { IMember }
|
|
158
|
+
|
|
159
|
+
export { Interval }
|
|
160
|
+
|
|
161
|
+
export { IntervalLocator }
|
|
162
|
+
|
|
163
|
+
export { intervalLocatorFromEndpoint }
|
|
164
|
+
|
|
165
|
+
export { IntervalType }
|
|
166
|
+
|
|
167
|
+
export { IRootDataObject }
|
|
168
|
+
|
|
169
|
+
export { ISequenceDeltaRange }
|
|
170
|
+
|
|
171
|
+
export { ISerializableInterval }
|
|
172
|
+
|
|
173
|
+
export { ISerializableValue }
|
|
174
|
+
|
|
175
|
+
export { ISerializedInterval }
|
|
176
|
+
|
|
177
|
+
export { ISerializedValue }
|
|
178
|
+
|
|
179
|
+
export { IServiceAudience }
|
|
180
|
+
|
|
181
|
+
export { IServiceAudienceEvents }
|
|
182
|
+
|
|
183
|
+
export { ISharedDirectory }
|
|
184
|
+
|
|
185
|
+
export { ISharedDirectoryEvents }
|
|
186
|
+
|
|
187
|
+
export { ISharedIntervalCollection }
|
|
188
|
+
|
|
189
|
+
export { ISharedMap }
|
|
190
|
+
|
|
191
|
+
export { ISharedMapEvents }
|
|
192
|
+
|
|
193
|
+
export { ISharedSegmentSequenceEvents }
|
|
194
|
+
|
|
195
|
+
export { ISharedString }
|
|
196
|
+
|
|
197
|
+
export { IValueChanged }
|
|
198
|
+
|
|
199
|
+
export { IValueOpEmitter }
|
|
200
|
+
|
|
201
|
+
export { LoadableObjectClass }
|
|
202
|
+
|
|
203
|
+
export { LoadableObjectClassRecord }
|
|
204
|
+
|
|
205
|
+
export { LoadableObjectCtor }
|
|
206
|
+
|
|
207
|
+
export { LoadableObjectRecord }
|
|
208
|
+
|
|
209
|
+
export { LocalValueMaker }
|
|
210
|
+
|
|
211
|
+
export { MapFactory }
|
|
212
|
+
|
|
213
|
+
export { MemberChangedListener }
|
|
214
|
+
|
|
215
|
+
export { SequenceDeltaEvent }
|
|
216
|
+
|
|
217
|
+
export { SequenceEvent }
|
|
218
|
+
|
|
219
|
+
export { SequenceInterval }
|
|
220
|
+
|
|
221
|
+
export { SequenceMaintenanceEvent }
|
|
222
|
+
|
|
223
|
+
export { SerializedIntervalDelta }
|
|
224
|
+
|
|
225
|
+
export { SharedDirectory }
|
|
226
|
+
|
|
227
|
+
export { SharedIntervalCollection }
|
|
228
|
+
|
|
229
|
+
export { SharedIntervalCollectionFactory }
|
|
230
|
+
|
|
231
|
+
export { SharedMap }
|
|
232
|
+
|
|
233
|
+
export { SharedObjectClass }
|
|
234
|
+
|
|
235
|
+
export { SharedSegmentSequence }
|
|
236
|
+
|
|
237
|
+
export { SharedSequence }
|
|
238
|
+
|
|
239
|
+
export { SharedString }
|
|
240
|
+
|
|
241
|
+
export { SharedStringFactory }
|
|
242
|
+
|
|
243
|
+
export { SharedStringSegment }
|
|
244
|
+
|
|
245
|
+
export { SubSequence }
|
|
246
|
+
|
|
247
|
+
export { }
|
package/dist/index.cjs
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Licensed under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.SubSequence = exports.SharedStringFactory = exports.SharedString = exports.SharedSequence = exports.SharedSegmentSequence = exports.SharedIntervalCollectionFactory = exports.SharedIntervalCollection = exports.SequenceMaintenanceEvent = exports.SequenceInterval = exports.SequenceEvent = exports.SequenceDeltaEvent = exports.IntervalType = exports.intervalLocatorFromEndpoint = exports.Interval = exports.getTextAndMarkers = exports.SharedMap = exports.SharedDirectory = exports.MapFactory = exports.LocalValueMaker = exports.DirectoryFactory = exports.
|
|
7
|
+
exports.SubSequence = exports.SharedStringFactory = exports.SharedString = exports.SharedSequence = exports.SharedSegmentSequence = exports.SharedIntervalCollectionFactory = exports.SharedIntervalCollection = exports.SequenceMaintenanceEvent = exports.SequenceInterval = exports.SequenceEvent = exports.SequenceDeltaEvent = exports.IntervalType = exports.intervalLocatorFromEndpoint = exports.Interval = exports.getTextAndMarkers = exports.SharedMap = exports.SharedDirectory = exports.MapFactory = exports.LocalValueMaker = exports.DirectoryFactory = exports.ConnectionState = exports.DriverErrorType = exports.ContainerErrorType = exports.AttachState = void 0;
|
|
8
8
|
var container_definitions_1 = require("@fluidframework/container-definitions");
|
|
9
9
|
Object.defineProperty(exports, "AttachState", { enumerable: true, get: function () { return container_definitions_1.AttachState; } });
|
|
10
10
|
Object.defineProperty(exports, "ContainerErrorType", { enumerable: true, get: function () { return container_definitions_1.ContainerErrorType; } });
|
|
@@ -12,10 +12,6 @@ var driver_definitions_1 = require("@fluidframework/driver-definitions");
|
|
|
12
12
|
Object.defineProperty(exports, "DriverErrorType", { enumerable: true, get: function () { return driver_definitions_1.DriverErrorType; } });
|
|
13
13
|
var container_loader_1 = require("@fluidframework/container-loader");
|
|
14
14
|
Object.defineProperty(exports, "ConnectionState", { enumerable: true, get: function () { return container_loader_1.ConnectionState; } });
|
|
15
|
-
var fluid_static_1 = require("@fluidframework/fluid-static");
|
|
16
|
-
Object.defineProperty(exports, "DOProviderContainerRuntimeFactory", { enumerable: true, get: function () { return fluid_static_1.DOProviderContainerRuntimeFactory; } });
|
|
17
|
-
Object.defineProperty(exports, "FluidContainer", { enumerable: true, get: function () { return fluid_static_1.FluidContainer; } });
|
|
18
|
-
Object.defineProperty(exports, "ServiceAudience", { enumerable: true, get: function () { return fluid_static_1.ServiceAudience; } });
|
|
19
15
|
var map_1 = require("@fluidframework/map");
|
|
20
16
|
Object.defineProperty(exports, "DirectoryFactory", { enumerable: true, get: function () { return map_1.DirectoryFactory; } });
|
|
21
17
|
Object.defineProperty(exports, "LocalValueMaker", { enumerable: true, get: function () { return map_1.LocalValueMaker; } });
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAWH,+EAAwF;AAA/E,oHAAA,WAAW,OAAA;AAAE,2HAAA,kBAAkB,OAAA;AACxC,yEAAqE;AAA5D,qHAAA,eAAe,OAAA;AACxB,qEAAmE;AAA1D,mHAAA,eAAe,OAAA;
|
|
1
|
+
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAWH,+EAAwF;AAA/E,oHAAA,WAAW,OAAA;AAAE,2HAAA,kBAAkB,OAAA;AACxC,yEAAqE;AAA5D,qHAAA,eAAe,OAAA;AACxB,qEAAmE;AAA1D,mHAAA,eAAe,OAAA;AA0CxB,2CAM6B;AAL5B,uGAAA,gBAAgB,OAAA;AAChB,sGAAA,eAAe,OAAA;AACf,iGAAA,UAAU,OAAA;AACV,sGAAA,eAAe,OAAA;AACf,gGAAA,SAAS,OAAA;AAqBV,qDAgBkC;AAfjC,6GAAA,iBAAiB,OAAA;AACjB,oGAAA,QAAQ,OAAA;AACR,uHAAA,2BAA2B,OAAA;AAC3B,wGAAA,YAAY,OAAA;AACZ,8GAAA,kBAAkB,OAAA;AAClB,yGAAA,aAAa,OAAA;AACb,4GAAA,gBAAgB,OAAA;AAChB,oHAAA,wBAAwB,OAAA;AACxB,oHAAA,wBAAwB,OAAA;AACxB,2HAAA,+BAA+B,OAAA;AAC/B,iHAAA,qBAAqB,OAAA;AACrB,0GAAA,cAAc,OAAA;AACd,wGAAA,YAAY,OAAA;AACZ,+GAAA,mBAAmB,OAAA;AACnB,uGAAA,WAAW,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use\n * when paired with a corresponding service client library (for example,\n * `\\@fluidframework/azure-client` or `\\@fluidframework/tinylicious-client`).\n *\n * @packageDocumentation\n */\n\nexport type { ICriticalContainerError } from \"@fluidframework/container-definitions\";\nexport { AttachState, ContainerErrorType } from \"@fluidframework/container-definitions\";\nexport { DriverErrorType } from \"@fluidframework/driver-definitions\";\nexport { ConnectionState } from \"@fluidframework/container-loader\";\nexport type {\n\tContainerSchema,\n\tDataObjectClass,\n\tIConnection,\n\tIFluidContainer,\n\tIFluidContainerEvents,\n\tIMember,\n\tIRootDataObject,\n\tIServiceAudience,\n\tIServiceAudienceEvents,\n\tLoadableObjectClass,\n\tLoadableObjectClassRecord,\n\tLoadableObjectCtor,\n\tLoadableObjectRecord,\n\tMemberChangedListener,\n\tSharedObjectClass,\n} from \"@fluidframework/fluid-static\";\nexport type {\n\tIDirectory,\n\tIDirectoryClearOperation,\n\tIDirectoryCreateSubDirectoryOperation,\n\tIDirectoryDataObject,\n\tIDirectoryDeleteOperation,\n\tIDirectoryDeleteSubDirectoryOperation,\n\tIDirectoryEvents,\n\tIDirectoryKeyOperation,\n\tIDirectoryNewStorageFormat,\n\tIDirectoryOperation,\n\tIDirectorySetOperation,\n\tIDirectoryStorageOperation,\n\tIDirectorySubDirectoryOperation,\n\tIDirectoryValueChanged,\n\tILocalValue,\n\tISerializableValue,\n\tISerializedValue,\n\tISharedDirectory,\n\tISharedDirectoryEvents,\n\tISharedMap,\n\tISharedMapEvents,\n\tIValueChanged,\n} from \"@fluidframework/map\";\nexport {\n\tDirectoryFactory,\n\tLocalValueMaker,\n\tMapFactory,\n\tSharedDirectory,\n\tSharedMap,\n} from \"@fluidframework/map\";\nexport type {\n\tDeserializeCallback,\n\tIInterval,\n\tIIntervalCollectionEvent,\n\tIIntervalHelpers,\n\tIJSONRunSegment,\n\tIMapMessageLocalMetadata,\n\tIIntervalCollection,\n\tIntervalLocator,\n\tISequenceDeltaRange,\n\tISerializableInterval,\n\tISerializedInterval,\n\tISharedIntervalCollection,\n\tISharedSegmentSequenceEvents,\n\tISharedString,\n\tIValueOpEmitter,\n\tSerializedIntervalDelta,\n\tSharedStringSegment,\n} from \"@fluidframework/sequence\";\nexport {\n\tgetTextAndMarkers,\n\tInterval,\n\tintervalLocatorFromEndpoint,\n\tIntervalType,\n\tSequenceDeltaEvent,\n\tSequenceEvent,\n\tSequenceInterval,\n\tSequenceMaintenanceEvent,\n\tSharedIntervalCollection,\n\tSharedIntervalCollectionFactory,\n\tSharedSegmentSequence,\n\tSharedSequence,\n\tSharedString,\n\tSharedStringFactory,\n\tSubSequence,\n} from \"@fluidframework/sequence\";\n"]}
|
package/dist/index.d.ts
CHANGED
|
@@ -14,7 +14,6 @@ export { AttachState, ContainerErrorType } from "@fluidframework/container-defin
|
|
|
14
14
|
export { DriverErrorType } from "@fluidframework/driver-definitions";
|
|
15
15
|
export { ConnectionState } from "@fluidframework/container-loader";
|
|
16
16
|
export type { ContainerSchema, DataObjectClass, IConnection, IFluidContainer, IFluidContainerEvents, IMember, IRootDataObject, IServiceAudience, IServiceAudienceEvents, LoadableObjectClass, LoadableObjectClassRecord, LoadableObjectCtor, LoadableObjectRecord, MemberChangedListener, SharedObjectClass, } from "@fluidframework/fluid-static";
|
|
17
|
-
export { DOProviderContainerRuntimeFactory, FluidContainer, ServiceAudience, } from "@fluidframework/fluid-static";
|
|
18
17
|
export type { IDirectory, IDirectoryClearOperation, IDirectoryCreateSubDirectoryOperation, IDirectoryDataObject, IDirectoryDeleteOperation, IDirectoryDeleteSubDirectoryOperation, IDirectoryEvents, IDirectoryKeyOperation, IDirectoryNewStorageFormat, IDirectoryOperation, IDirectorySetOperation, IDirectoryStorageOperation, IDirectorySubDirectoryOperation, IDirectoryValueChanged, ILocalValue, ISerializableValue, ISerializedValue, ISharedDirectory, ISharedDirectoryEvents, ISharedMap, ISharedMapEvents, IValueChanged, } from "@fluidframework/map";
|
|
19
18
|
export { DirectoryFactory, LocalValueMaker, MapFactory, SharedDirectory, SharedMap, } from "@fluidframework/map";
|
|
20
19
|
export type { DeserializeCallback, IInterval, IIntervalCollectionEvent, IIntervalHelpers, IJSONRunSegment, IMapMessageLocalMetadata, IIntervalCollection, IntervalLocator, ISequenceDeltaRange, ISerializableInterval, ISerializedInterval, ISharedIntervalCollection, ISharedSegmentSequenceEvents, ISharedString, IValueOpEmitter, SerializedIntervalDelta, SharedStringSegment, } from "@fluidframework/sequence";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,YAAY,EAAE,uBAAuB,EAAE,MAAM,uCAAuC,CAAC;AACrF,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AACxF,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,YAAY,EACX,eAAe,EACf,eAAe,EACf,WAAW,EACX,eAAe,EACf,qBAAqB,EACrB,OAAO,EACP,eAAe,EACf,gBAAgB,EAChB,sBAAsB,EACtB,mBAAmB,EACnB,yBAAyB,EACzB,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACrB,iBAAiB,GACjB,MAAM,8BAA8B,CAAC;AACtC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,YAAY,EAAE,uBAAuB,EAAE,MAAM,uCAAuC,CAAC;AACrF,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AACxF,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,YAAY,EACX,eAAe,EACf,eAAe,EACf,WAAW,EACX,eAAe,EACf,qBAAqB,EACrB,OAAO,EACP,eAAe,EACf,gBAAgB,EAChB,sBAAsB,EACtB,mBAAmB,EACnB,yBAAyB,EACzB,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACrB,iBAAiB,GACjB,MAAM,8BAA8B,CAAC;AACtC,YAAY,EACX,UAAU,EACV,wBAAwB,EACxB,qCAAqC,EACrC,oBAAoB,EACpB,yBAAyB,EACzB,qCAAqC,EACrC,gBAAgB,EAChB,sBAAsB,EACtB,0BAA0B,EAC1B,mBAAmB,EACnB,sBAAsB,EACtB,0BAA0B,EAC1B,+BAA+B,EAC/B,sBAAsB,EACtB,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,gBAAgB,EAChB,sBAAsB,EACtB,UAAU,EACV,gBAAgB,EAChB,aAAa,GACb,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACN,gBAAgB,EAChB,eAAe,EACf,UAAU,EACV,eAAe,EACf,SAAS,GACT,MAAM,qBAAqB,CAAC;AAC7B,YAAY,EACX,mBAAmB,EACnB,SAAS,EACT,wBAAwB,EACxB,gBAAgB,EAChB,eAAe,EACf,wBAAwB,EACxB,mBAAmB,EACnB,eAAe,EACf,mBAAmB,EACnB,qBAAqB,EACrB,mBAAmB,EACnB,yBAAyB,EACzB,4BAA4B,EAC5B,aAAa,EACb,eAAe,EACf,uBAAuB,EACvB,mBAAmB,GACnB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACN,iBAAiB,EACjB,QAAQ,EACR,2BAA2B,EAC3B,YAAY,EACZ,kBAAkB,EAClB,aAAa,EACb,gBAAgB,EAChB,wBAAwB,EACxB,wBAAwB,EACxB,+BAA+B,EAC/B,qBAAqB,EACrB,cAAc,EACd,YAAY,EACZ,mBAAmB,EACnB,WAAW,GACX,MAAM,0BAA0B,CAAC"}
|