fluid-framework 2.4.0 → 2.5.0-302463
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/api-report/fluid-framework.alpha.api.md +148 -51
- package/api-report/fluid-framework.beta.api.md +83 -38
- package/api-report/fluid-framework.legacy.alpha.api.md +83 -38
- package/api-report/fluid-framework.legacy.public.api.md +83 -38
- package/api-report/fluid-framework.public.api.md +83 -38
- package/dist/alpha.d.ts +17 -2
- package/dist/beta.d.ts +6 -0
- package/dist/legacy.d.ts +6 -0
- package/dist/public.d.ts +6 -0
- package/lib/alpha.d.ts +17 -2
- package/lib/beta.d.ts +6 -0
- package/lib/legacy.d.ts +6 -0
- package/lib/public.d.ts +6 -0
- package/package.json +14 -14
package/dist/alpha.d.ts
CHANGED
|
@@ -61,9 +61,12 @@ export {
|
|
|
61
61
|
ImplicitAllowedTypes,
|
|
62
62
|
ImplicitFieldSchema,
|
|
63
63
|
InitialObjects,
|
|
64
|
+
Input,
|
|
64
65
|
InsertableObjectFromSchemaRecordUnsafe,
|
|
65
66
|
InsertableTreeFieldFromImplicitField,
|
|
66
67
|
InsertableTreeFieldFromImplicitFieldUnsafe,
|
|
68
|
+
InsertableTreeNodeFromAllowedTypes,
|
|
69
|
+
InsertableTreeNodeFromAllowedTypesUnsafe,
|
|
67
70
|
InsertableTreeNodeFromImplicitAllowedTypes,
|
|
68
71
|
InsertableTreeNodeFromImplicitAllowedTypesUnsafe,
|
|
69
72
|
InsertableTypedNode,
|
|
@@ -81,6 +84,7 @@ export {
|
|
|
81
84
|
NodeInDocumentConstraint,
|
|
82
85
|
NodeKind,
|
|
83
86
|
Off,
|
|
87
|
+
ReadonlyArrayNode,
|
|
84
88
|
ReplaceIEventThisPlaceHolder,
|
|
85
89
|
RestrictiveReadonlyRecord,
|
|
86
90
|
RestrictiveStringRecord,
|
|
@@ -109,6 +113,7 @@ export {
|
|
|
109
113
|
TreeNodeFromImplicitAllowedTypes,
|
|
110
114
|
TreeNodeSchema,
|
|
111
115
|
TreeNodeSchemaClass,
|
|
116
|
+
TreeNodeSchemaClassUnsafe,
|
|
112
117
|
TreeNodeSchemaCore,
|
|
113
118
|
TreeNodeSchemaNonClass,
|
|
114
119
|
TreeObjectNode,
|
|
@@ -119,6 +124,7 @@ export {
|
|
|
119
124
|
TreeViewEvents,
|
|
120
125
|
Unenforced,
|
|
121
126
|
Unhydrated,
|
|
127
|
+
UnionToIntersection,
|
|
122
128
|
ValidateRecursiveSchema,
|
|
123
129
|
ViewableTree,
|
|
124
130
|
WithType,
|
|
@@ -132,10 +138,16 @@ export {
|
|
|
132
138
|
TreeChangeEventsBeta,
|
|
133
139
|
|
|
134
140
|
// @alpha APIs
|
|
141
|
+
FactoryContent,
|
|
142
|
+
FactoryContentObject,
|
|
135
143
|
FixRecursiveArraySchema,
|
|
136
144
|
ForestOptions,
|
|
137
145
|
ForestType,
|
|
138
146
|
ICodecOptions,
|
|
147
|
+
Insertable,
|
|
148
|
+
InsertableContent,
|
|
149
|
+
InsertableField,
|
|
150
|
+
IsUnion,
|
|
139
151
|
JsonArrayNodeSchema,
|
|
140
152
|
JsonCompatible,
|
|
141
153
|
JsonCompatibleObject,
|
|
@@ -152,6 +164,7 @@ export {
|
|
|
152
164
|
JsonSchemaType,
|
|
153
165
|
JsonTreeSchema,
|
|
154
166
|
JsonValidator,
|
|
167
|
+
PopUnion,
|
|
155
168
|
SchemaValidationFunction,
|
|
156
169
|
SharedTreeFormatOptions,
|
|
157
170
|
SharedTreeFormatVersion,
|
|
@@ -159,6 +172,9 @@ export {
|
|
|
159
172
|
TreeBranch,
|
|
160
173
|
TreeBranchFork,
|
|
161
174
|
TreeCompressionStrategy,
|
|
175
|
+
TreeViewAlpha,
|
|
176
|
+
UnionToTuple,
|
|
177
|
+
UnsafeUnknownSchema,
|
|
162
178
|
adaptEnum,
|
|
163
179
|
comparePersistedSchema,
|
|
164
180
|
configuredSharedTree,
|
|
@@ -168,6 +184,5 @@ export {
|
|
|
168
184
|
getJsonSchema,
|
|
169
185
|
noopValidator,
|
|
170
186
|
singletonSchema,
|
|
171
|
-
typeboxValidator
|
|
172
|
-
typedObjectValues
|
|
187
|
+
typeboxValidator
|
|
173
188
|
} from "./index.js";
|
package/dist/beta.d.ts
CHANGED
|
@@ -61,9 +61,12 @@ export {
|
|
|
61
61
|
ImplicitAllowedTypes,
|
|
62
62
|
ImplicitFieldSchema,
|
|
63
63
|
InitialObjects,
|
|
64
|
+
Input,
|
|
64
65
|
InsertableObjectFromSchemaRecordUnsafe,
|
|
65
66
|
InsertableTreeFieldFromImplicitField,
|
|
66
67
|
InsertableTreeFieldFromImplicitFieldUnsafe,
|
|
68
|
+
InsertableTreeNodeFromAllowedTypes,
|
|
69
|
+
InsertableTreeNodeFromAllowedTypesUnsafe,
|
|
67
70
|
InsertableTreeNodeFromImplicitAllowedTypes,
|
|
68
71
|
InsertableTreeNodeFromImplicitAllowedTypesUnsafe,
|
|
69
72
|
InsertableTypedNode,
|
|
@@ -81,6 +84,7 @@ export {
|
|
|
81
84
|
NodeInDocumentConstraint,
|
|
82
85
|
NodeKind,
|
|
83
86
|
Off,
|
|
87
|
+
ReadonlyArrayNode,
|
|
84
88
|
ReplaceIEventThisPlaceHolder,
|
|
85
89
|
RestrictiveReadonlyRecord,
|
|
86
90
|
RestrictiveStringRecord,
|
|
@@ -109,6 +113,7 @@ export {
|
|
|
109
113
|
TreeNodeFromImplicitAllowedTypes,
|
|
110
114
|
TreeNodeSchema,
|
|
111
115
|
TreeNodeSchemaClass,
|
|
116
|
+
TreeNodeSchemaClassUnsafe,
|
|
112
117
|
TreeNodeSchemaCore,
|
|
113
118
|
TreeNodeSchemaNonClass,
|
|
114
119
|
TreeObjectNode,
|
|
@@ -119,6 +124,7 @@ export {
|
|
|
119
124
|
TreeViewEvents,
|
|
120
125
|
Unenforced,
|
|
121
126
|
Unhydrated,
|
|
127
|
+
UnionToIntersection,
|
|
122
128
|
ValidateRecursiveSchema,
|
|
123
129
|
ViewableTree,
|
|
124
130
|
WithType,
|
package/dist/legacy.d.ts
CHANGED
|
@@ -61,9 +61,12 @@ export {
|
|
|
61
61
|
ImplicitAllowedTypes,
|
|
62
62
|
ImplicitFieldSchema,
|
|
63
63
|
InitialObjects,
|
|
64
|
+
Input,
|
|
64
65
|
InsertableObjectFromSchemaRecordUnsafe,
|
|
65
66
|
InsertableTreeFieldFromImplicitField,
|
|
66
67
|
InsertableTreeFieldFromImplicitFieldUnsafe,
|
|
68
|
+
InsertableTreeNodeFromAllowedTypes,
|
|
69
|
+
InsertableTreeNodeFromAllowedTypesUnsafe,
|
|
67
70
|
InsertableTreeNodeFromImplicitAllowedTypes,
|
|
68
71
|
InsertableTreeNodeFromImplicitAllowedTypesUnsafe,
|
|
69
72
|
InsertableTypedNode,
|
|
@@ -81,6 +84,7 @@ export {
|
|
|
81
84
|
NodeInDocumentConstraint,
|
|
82
85
|
NodeKind,
|
|
83
86
|
Off,
|
|
87
|
+
ReadonlyArrayNode,
|
|
84
88
|
ReplaceIEventThisPlaceHolder,
|
|
85
89
|
RestrictiveReadonlyRecord,
|
|
86
90
|
RestrictiveStringRecord,
|
|
@@ -109,6 +113,7 @@ export {
|
|
|
109
113
|
TreeNodeFromImplicitAllowedTypes,
|
|
110
114
|
TreeNodeSchema,
|
|
111
115
|
TreeNodeSchemaClass,
|
|
116
|
+
TreeNodeSchemaClassUnsafe,
|
|
112
117
|
TreeNodeSchemaCore,
|
|
113
118
|
TreeNodeSchemaNonClass,
|
|
114
119
|
TreeObjectNode,
|
|
@@ -119,6 +124,7 @@ export {
|
|
|
119
124
|
TreeViewEvents,
|
|
120
125
|
Unenforced,
|
|
121
126
|
Unhydrated,
|
|
127
|
+
UnionToIntersection,
|
|
122
128
|
ValidateRecursiveSchema,
|
|
123
129
|
ViewableTree,
|
|
124
130
|
WithType,
|
package/dist/public.d.ts
CHANGED
|
@@ -61,9 +61,12 @@ export {
|
|
|
61
61
|
ImplicitAllowedTypes,
|
|
62
62
|
ImplicitFieldSchema,
|
|
63
63
|
InitialObjects,
|
|
64
|
+
Input,
|
|
64
65
|
InsertableObjectFromSchemaRecordUnsafe,
|
|
65
66
|
InsertableTreeFieldFromImplicitField,
|
|
66
67
|
InsertableTreeFieldFromImplicitFieldUnsafe,
|
|
68
|
+
InsertableTreeNodeFromAllowedTypes,
|
|
69
|
+
InsertableTreeNodeFromAllowedTypesUnsafe,
|
|
67
70
|
InsertableTreeNodeFromImplicitAllowedTypes,
|
|
68
71
|
InsertableTreeNodeFromImplicitAllowedTypesUnsafe,
|
|
69
72
|
InsertableTypedNode,
|
|
@@ -81,6 +84,7 @@ export {
|
|
|
81
84
|
NodeInDocumentConstraint,
|
|
82
85
|
NodeKind,
|
|
83
86
|
Off,
|
|
87
|
+
ReadonlyArrayNode,
|
|
84
88
|
ReplaceIEventThisPlaceHolder,
|
|
85
89
|
RestrictiveReadonlyRecord,
|
|
86
90
|
RestrictiveStringRecord,
|
|
@@ -109,6 +113,7 @@ export {
|
|
|
109
113
|
TreeNodeFromImplicitAllowedTypes,
|
|
110
114
|
TreeNodeSchema,
|
|
111
115
|
TreeNodeSchemaClass,
|
|
116
|
+
TreeNodeSchemaClassUnsafe,
|
|
112
117
|
TreeNodeSchemaCore,
|
|
113
118
|
TreeNodeSchemaNonClass,
|
|
114
119
|
TreeObjectNode,
|
|
@@ -119,6 +124,7 @@ export {
|
|
|
119
124
|
TreeViewEvents,
|
|
120
125
|
Unenforced,
|
|
121
126
|
Unhydrated,
|
|
127
|
+
UnionToIntersection,
|
|
122
128
|
ValidateRecursiveSchema,
|
|
123
129
|
ViewableTree,
|
|
124
130
|
WithType,
|
package/lib/alpha.d.ts
CHANGED
|
@@ -61,9 +61,12 @@ export {
|
|
|
61
61
|
ImplicitAllowedTypes,
|
|
62
62
|
ImplicitFieldSchema,
|
|
63
63
|
InitialObjects,
|
|
64
|
+
Input,
|
|
64
65
|
InsertableObjectFromSchemaRecordUnsafe,
|
|
65
66
|
InsertableTreeFieldFromImplicitField,
|
|
66
67
|
InsertableTreeFieldFromImplicitFieldUnsafe,
|
|
68
|
+
InsertableTreeNodeFromAllowedTypes,
|
|
69
|
+
InsertableTreeNodeFromAllowedTypesUnsafe,
|
|
67
70
|
InsertableTreeNodeFromImplicitAllowedTypes,
|
|
68
71
|
InsertableTreeNodeFromImplicitAllowedTypesUnsafe,
|
|
69
72
|
InsertableTypedNode,
|
|
@@ -81,6 +84,7 @@ export {
|
|
|
81
84
|
NodeInDocumentConstraint,
|
|
82
85
|
NodeKind,
|
|
83
86
|
Off,
|
|
87
|
+
ReadonlyArrayNode,
|
|
84
88
|
ReplaceIEventThisPlaceHolder,
|
|
85
89
|
RestrictiveReadonlyRecord,
|
|
86
90
|
RestrictiveStringRecord,
|
|
@@ -109,6 +113,7 @@ export {
|
|
|
109
113
|
TreeNodeFromImplicitAllowedTypes,
|
|
110
114
|
TreeNodeSchema,
|
|
111
115
|
TreeNodeSchemaClass,
|
|
116
|
+
TreeNodeSchemaClassUnsafe,
|
|
112
117
|
TreeNodeSchemaCore,
|
|
113
118
|
TreeNodeSchemaNonClass,
|
|
114
119
|
TreeObjectNode,
|
|
@@ -119,6 +124,7 @@ export {
|
|
|
119
124
|
TreeViewEvents,
|
|
120
125
|
Unenforced,
|
|
121
126
|
Unhydrated,
|
|
127
|
+
UnionToIntersection,
|
|
122
128
|
ValidateRecursiveSchema,
|
|
123
129
|
ViewableTree,
|
|
124
130
|
WithType,
|
|
@@ -132,10 +138,16 @@ export {
|
|
|
132
138
|
TreeChangeEventsBeta,
|
|
133
139
|
|
|
134
140
|
// @alpha APIs
|
|
141
|
+
FactoryContent,
|
|
142
|
+
FactoryContentObject,
|
|
135
143
|
FixRecursiveArraySchema,
|
|
136
144
|
ForestOptions,
|
|
137
145
|
ForestType,
|
|
138
146
|
ICodecOptions,
|
|
147
|
+
Insertable,
|
|
148
|
+
InsertableContent,
|
|
149
|
+
InsertableField,
|
|
150
|
+
IsUnion,
|
|
139
151
|
JsonArrayNodeSchema,
|
|
140
152
|
JsonCompatible,
|
|
141
153
|
JsonCompatibleObject,
|
|
@@ -152,6 +164,7 @@ export {
|
|
|
152
164
|
JsonSchemaType,
|
|
153
165
|
JsonTreeSchema,
|
|
154
166
|
JsonValidator,
|
|
167
|
+
PopUnion,
|
|
155
168
|
SchemaValidationFunction,
|
|
156
169
|
SharedTreeFormatOptions,
|
|
157
170
|
SharedTreeFormatVersion,
|
|
@@ -159,6 +172,9 @@ export {
|
|
|
159
172
|
TreeBranch,
|
|
160
173
|
TreeBranchFork,
|
|
161
174
|
TreeCompressionStrategy,
|
|
175
|
+
TreeViewAlpha,
|
|
176
|
+
UnionToTuple,
|
|
177
|
+
UnsafeUnknownSchema,
|
|
162
178
|
adaptEnum,
|
|
163
179
|
comparePersistedSchema,
|
|
164
180
|
configuredSharedTree,
|
|
@@ -168,6 +184,5 @@ export {
|
|
|
168
184
|
getJsonSchema,
|
|
169
185
|
noopValidator,
|
|
170
186
|
singletonSchema,
|
|
171
|
-
typeboxValidator
|
|
172
|
-
typedObjectValues
|
|
187
|
+
typeboxValidator
|
|
173
188
|
} from "./index.js";
|
package/lib/beta.d.ts
CHANGED
|
@@ -61,9 +61,12 @@ export {
|
|
|
61
61
|
ImplicitAllowedTypes,
|
|
62
62
|
ImplicitFieldSchema,
|
|
63
63
|
InitialObjects,
|
|
64
|
+
Input,
|
|
64
65
|
InsertableObjectFromSchemaRecordUnsafe,
|
|
65
66
|
InsertableTreeFieldFromImplicitField,
|
|
66
67
|
InsertableTreeFieldFromImplicitFieldUnsafe,
|
|
68
|
+
InsertableTreeNodeFromAllowedTypes,
|
|
69
|
+
InsertableTreeNodeFromAllowedTypesUnsafe,
|
|
67
70
|
InsertableTreeNodeFromImplicitAllowedTypes,
|
|
68
71
|
InsertableTreeNodeFromImplicitAllowedTypesUnsafe,
|
|
69
72
|
InsertableTypedNode,
|
|
@@ -81,6 +84,7 @@ export {
|
|
|
81
84
|
NodeInDocumentConstraint,
|
|
82
85
|
NodeKind,
|
|
83
86
|
Off,
|
|
87
|
+
ReadonlyArrayNode,
|
|
84
88
|
ReplaceIEventThisPlaceHolder,
|
|
85
89
|
RestrictiveReadonlyRecord,
|
|
86
90
|
RestrictiveStringRecord,
|
|
@@ -109,6 +113,7 @@ export {
|
|
|
109
113
|
TreeNodeFromImplicitAllowedTypes,
|
|
110
114
|
TreeNodeSchema,
|
|
111
115
|
TreeNodeSchemaClass,
|
|
116
|
+
TreeNodeSchemaClassUnsafe,
|
|
112
117
|
TreeNodeSchemaCore,
|
|
113
118
|
TreeNodeSchemaNonClass,
|
|
114
119
|
TreeObjectNode,
|
|
@@ -119,6 +124,7 @@ export {
|
|
|
119
124
|
TreeViewEvents,
|
|
120
125
|
Unenforced,
|
|
121
126
|
Unhydrated,
|
|
127
|
+
UnionToIntersection,
|
|
122
128
|
ValidateRecursiveSchema,
|
|
123
129
|
ViewableTree,
|
|
124
130
|
WithType,
|
package/lib/legacy.d.ts
CHANGED
|
@@ -61,9 +61,12 @@ export {
|
|
|
61
61
|
ImplicitAllowedTypes,
|
|
62
62
|
ImplicitFieldSchema,
|
|
63
63
|
InitialObjects,
|
|
64
|
+
Input,
|
|
64
65
|
InsertableObjectFromSchemaRecordUnsafe,
|
|
65
66
|
InsertableTreeFieldFromImplicitField,
|
|
66
67
|
InsertableTreeFieldFromImplicitFieldUnsafe,
|
|
68
|
+
InsertableTreeNodeFromAllowedTypes,
|
|
69
|
+
InsertableTreeNodeFromAllowedTypesUnsafe,
|
|
67
70
|
InsertableTreeNodeFromImplicitAllowedTypes,
|
|
68
71
|
InsertableTreeNodeFromImplicitAllowedTypesUnsafe,
|
|
69
72
|
InsertableTypedNode,
|
|
@@ -81,6 +84,7 @@ export {
|
|
|
81
84
|
NodeInDocumentConstraint,
|
|
82
85
|
NodeKind,
|
|
83
86
|
Off,
|
|
87
|
+
ReadonlyArrayNode,
|
|
84
88
|
ReplaceIEventThisPlaceHolder,
|
|
85
89
|
RestrictiveReadonlyRecord,
|
|
86
90
|
RestrictiveStringRecord,
|
|
@@ -109,6 +113,7 @@ export {
|
|
|
109
113
|
TreeNodeFromImplicitAllowedTypes,
|
|
110
114
|
TreeNodeSchema,
|
|
111
115
|
TreeNodeSchemaClass,
|
|
116
|
+
TreeNodeSchemaClassUnsafe,
|
|
112
117
|
TreeNodeSchemaCore,
|
|
113
118
|
TreeNodeSchemaNonClass,
|
|
114
119
|
TreeObjectNode,
|
|
@@ -119,6 +124,7 @@ export {
|
|
|
119
124
|
TreeViewEvents,
|
|
120
125
|
Unenforced,
|
|
121
126
|
Unhydrated,
|
|
127
|
+
UnionToIntersection,
|
|
122
128
|
ValidateRecursiveSchema,
|
|
123
129
|
ViewableTree,
|
|
124
130
|
WithType,
|
package/lib/public.d.ts
CHANGED
|
@@ -61,9 +61,12 @@ export {
|
|
|
61
61
|
ImplicitAllowedTypes,
|
|
62
62
|
ImplicitFieldSchema,
|
|
63
63
|
InitialObjects,
|
|
64
|
+
Input,
|
|
64
65
|
InsertableObjectFromSchemaRecordUnsafe,
|
|
65
66
|
InsertableTreeFieldFromImplicitField,
|
|
66
67
|
InsertableTreeFieldFromImplicitFieldUnsafe,
|
|
68
|
+
InsertableTreeNodeFromAllowedTypes,
|
|
69
|
+
InsertableTreeNodeFromAllowedTypesUnsafe,
|
|
67
70
|
InsertableTreeNodeFromImplicitAllowedTypes,
|
|
68
71
|
InsertableTreeNodeFromImplicitAllowedTypesUnsafe,
|
|
69
72
|
InsertableTypedNode,
|
|
@@ -81,6 +84,7 @@ export {
|
|
|
81
84
|
NodeInDocumentConstraint,
|
|
82
85
|
NodeKind,
|
|
83
86
|
Off,
|
|
87
|
+
ReadonlyArrayNode,
|
|
84
88
|
ReplaceIEventThisPlaceHolder,
|
|
85
89
|
RestrictiveReadonlyRecord,
|
|
86
90
|
RestrictiveStringRecord,
|
|
@@ -109,6 +113,7 @@ export {
|
|
|
109
113
|
TreeNodeFromImplicitAllowedTypes,
|
|
110
114
|
TreeNodeSchema,
|
|
111
115
|
TreeNodeSchemaClass,
|
|
116
|
+
TreeNodeSchemaClassUnsafe,
|
|
112
117
|
TreeNodeSchemaCore,
|
|
113
118
|
TreeNodeSchemaNonClass,
|
|
114
119
|
TreeObjectNode,
|
|
@@ -119,6 +124,7 @@ export {
|
|
|
119
124
|
TreeViewEvents,
|
|
120
125
|
Unenforced,
|
|
121
126
|
Unhydrated,
|
|
127
|
+
UnionToIntersection,
|
|
122
128
|
ValidateRecursiveSchema,
|
|
123
129
|
ViewableTree,
|
|
124
130
|
WithType,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluid-framework",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0-302463",
|
|
4
4
|
"description": "The main entry point into Fluid Framework public packages",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -57,23 +57,23 @@
|
|
|
57
57
|
"main": "lib/index.js",
|
|
58
58
|
"types": "lib/public.d.ts",
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@fluidframework/container-definitions": "
|
|
61
|
-
"@fluidframework/container-loader": "
|
|
62
|
-
"@fluidframework/core-interfaces": "
|
|
63
|
-
"@fluidframework/driver-definitions": "
|
|
64
|
-
"@fluidframework/fluid-static": "
|
|
65
|
-
"@fluidframework/map": "
|
|
66
|
-
"@fluidframework/runtime-utils": "
|
|
67
|
-
"@fluidframework/sequence": "
|
|
68
|
-
"@fluidframework/shared-object-base": "
|
|
69
|
-
"@fluidframework/tree": "
|
|
60
|
+
"@fluidframework/container-definitions": "2.5.0-302463",
|
|
61
|
+
"@fluidframework/container-loader": "2.5.0-302463",
|
|
62
|
+
"@fluidframework/core-interfaces": "2.5.0-302463",
|
|
63
|
+
"@fluidframework/driver-definitions": "2.5.0-302463",
|
|
64
|
+
"@fluidframework/fluid-static": "2.5.0-302463",
|
|
65
|
+
"@fluidframework/map": "2.5.0-302463",
|
|
66
|
+
"@fluidframework/runtime-utils": "2.5.0-302463",
|
|
67
|
+
"@fluidframework/sequence": "2.5.0-302463",
|
|
68
|
+
"@fluidframework/shared-object-base": "2.5.0-302463",
|
|
69
|
+
"@fluidframework/tree": "2.5.0-302463"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@arethetypeswrong/cli": "^0.16.4",
|
|
73
|
-
"@biomejs/biome": "~1.
|
|
74
|
-
"@fluid-tools/build-cli": "^0.
|
|
73
|
+
"@biomejs/biome": "~1.9.3",
|
|
74
|
+
"@fluid-tools/build-cli": "^0.49.0",
|
|
75
75
|
"@fluidframework/build-common": "^2.0.3",
|
|
76
|
-
"@fluidframework/build-tools": "^0.
|
|
76
|
+
"@fluidframework/build-tools": "^0.49.0",
|
|
77
77
|
"@fluidframework/eslint-config-fluid": "^5.4.0",
|
|
78
78
|
"@microsoft/api-extractor": "7.47.8",
|
|
79
79
|
"@types/node": "^18.19.0",
|