@fluidframework/map 1.2.0-77818 → 1.2.0-78837
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-extractor.json +1 -1
- package/dist/directory.d.ts +9 -10
- package/dist/directory.d.ts.map +1 -1
- package/dist/directory.js +10 -10
- package/dist/directory.js.map +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/directory.d.ts +9 -10
- package/lib/directory.d.ts.map +1 -1
- package/lib/directory.js +10 -10
- package/lib/directory.js.map +1 -1
- package/lib/index.d.ts +5 -5
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +4 -4
- package/lib/index.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +11 -11
- package/src/directory.ts +19 -18
- package/src/index.ts +5 -5
- package/src/packageVersion.ts +1 -1
package/lib/directory.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { LocalValueMaker } from "./localValues";
|
|
|
11
11
|
/**
|
|
12
12
|
* Operation indicating a value should be set for a key.
|
|
13
13
|
*/
|
|
14
|
-
interface IDirectorySetOperation {
|
|
14
|
+
export interface IDirectorySetOperation {
|
|
15
15
|
/**
|
|
16
16
|
* String identifier of the operation type.
|
|
17
17
|
*/
|
|
@@ -32,7 +32,7 @@ interface IDirectorySetOperation {
|
|
|
32
32
|
/**
|
|
33
33
|
* Operation indicating a key should be deleted from the directory.
|
|
34
34
|
*/
|
|
35
|
-
interface IDirectoryDeleteOperation {
|
|
35
|
+
export interface IDirectoryDeleteOperation {
|
|
36
36
|
/**
|
|
37
37
|
* String identifier of the operation type.
|
|
38
38
|
*/
|
|
@@ -49,11 +49,11 @@ interface IDirectoryDeleteOperation {
|
|
|
49
49
|
/**
|
|
50
50
|
* An operation on a specific key within a directory
|
|
51
51
|
*/
|
|
52
|
-
declare type IDirectoryKeyOperation = IDirectorySetOperation | IDirectoryDeleteOperation;
|
|
52
|
+
export declare type IDirectoryKeyOperation = IDirectorySetOperation | IDirectoryDeleteOperation;
|
|
53
53
|
/**
|
|
54
54
|
* Operation indicating the directory should be cleared.
|
|
55
55
|
*/
|
|
56
|
-
interface IDirectoryClearOperation {
|
|
56
|
+
export interface IDirectoryClearOperation {
|
|
57
57
|
/**
|
|
58
58
|
* String identifier of the operation type.
|
|
59
59
|
*/
|
|
@@ -66,11 +66,11 @@ interface IDirectoryClearOperation {
|
|
|
66
66
|
/**
|
|
67
67
|
* An operation on one or more of the keys within a directory
|
|
68
68
|
*/
|
|
69
|
-
declare type IDirectoryStorageOperation = IDirectoryKeyOperation | IDirectoryClearOperation;
|
|
69
|
+
export declare type IDirectoryStorageOperation = IDirectoryKeyOperation | IDirectoryClearOperation;
|
|
70
70
|
/**
|
|
71
71
|
* Operation indicating a subdirectory should be created.
|
|
72
72
|
*/
|
|
73
|
-
interface IDirectoryCreateSubDirectoryOperation {
|
|
73
|
+
export interface IDirectoryCreateSubDirectoryOperation {
|
|
74
74
|
/**
|
|
75
75
|
* String identifier of the operation type.
|
|
76
76
|
*/
|
|
@@ -87,7 +87,7 @@ interface IDirectoryCreateSubDirectoryOperation {
|
|
|
87
87
|
/**
|
|
88
88
|
* Operation indicating a subdirectory should be deleted.
|
|
89
89
|
*/
|
|
90
|
-
interface IDirectoryDeleteSubDirectoryOperation {
|
|
90
|
+
export interface IDirectoryDeleteSubDirectoryOperation {
|
|
91
91
|
/**
|
|
92
92
|
* String identifier of the operation type.
|
|
93
93
|
*/
|
|
@@ -104,7 +104,7 @@ interface IDirectoryDeleteSubDirectoryOperation {
|
|
|
104
104
|
/**
|
|
105
105
|
* An operation on the subdirectories within a directory
|
|
106
106
|
*/
|
|
107
|
-
declare type IDirectorySubDirectoryOperation = IDirectoryCreateSubDirectoryOperation | IDirectoryDeleteSubDirectoryOperation;
|
|
107
|
+
export declare type IDirectorySubDirectoryOperation = IDirectoryCreateSubDirectoryOperation | IDirectoryDeleteSubDirectoryOperation;
|
|
108
108
|
/**
|
|
109
109
|
* Any operation on a directory
|
|
110
110
|
*/
|
|
@@ -162,7 +162,7 @@ export declare class DirectoryFactory {
|
|
|
162
162
|
* SubDirectories can be retrieved for use as working directories.
|
|
163
163
|
*
|
|
164
164
|
* @example
|
|
165
|
-
* ```
|
|
165
|
+
* ```typescript
|
|
166
166
|
* mySharedDirectory.createSubDirectory("a").createSubDirectory("b").createSubDirectory("c").set("foo", val1);
|
|
167
167
|
* const mySubDir = mySharedDirectory.getWorkingDirectory("/a/b/c");
|
|
168
168
|
* mySubDir.get("foo"); // returns val1
|
|
@@ -366,5 +366,4 @@ export declare class SharedDirectory extends SharedObject<ISharedDirectoryEvents
|
|
|
366
366
|
protected applyStashedOp(): void;
|
|
367
367
|
private serializeDirectory;
|
|
368
368
|
}
|
|
369
|
-
export {};
|
|
370
369
|
//# sourceMappingURL=directory.d.ts.map
|
package/lib/directory.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"directory.d.ts","sourceRoot":"","sources":["../src/directory.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,OAAO,EACH,yBAAyB,EAE5B,MAAM,sCAAsC,CAAC;AAC9C,OAAO,EACH,kBAAkB,EAClB,sBAAsB,EACtB,sBAAsB,EACtB,gBAAgB,EAChB,eAAe,EAClB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,qBAAqB,EAAE,iBAAiB,EAAE,MAAM,qCAAqC,CAAC;AAC/F,OAAO,EAAE,gBAAgB,EAAE,YAAY,EAAa,MAAM,oCAAoC,CAAC;AAG/F,OAAO,EACH,UAAU,EAGV,kBAAkB,EAElB,gBAAgB,EAChB,sBAAsB,EAEzB,MAAM,cAAc,CAAC;AACtB,OAAO,EAEH,eAAe,EAElB,MAAM,eAAe,CAAC;AAkCvB;;GAEG;AACH,
|
|
1
|
+
{"version":3,"file":"directory.d.ts","sourceRoot":"","sources":["../src/directory.ts"],"names":[],"mappings":"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"}
|
package/lib/directory.js
CHANGED
|
@@ -68,7 +68,7 @@ DirectoryFactory.Attributes = {
|
|
|
68
68
|
* SubDirectories can be retrieved for use as working directories.
|
|
69
69
|
*
|
|
70
70
|
* @example
|
|
71
|
-
* ```
|
|
71
|
+
* ```typescript
|
|
72
72
|
* mySharedDirectory.createSubDirectory("a").createSubDirectory("b").createSubDirectory("c").set("foo", val1);
|
|
73
73
|
* const mySubDir = mySharedDirectory.getWorkingDirectory("/a/b/c");
|
|
74
74
|
* mySubDir.get("foo"); // returns val1
|
|
@@ -883,7 +883,7 @@ class SubDirectory extends TypedEventEmitter {
|
|
|
883
883
|
if (local) {
|
|
884
884
|
assert(isClearLocalOpMetadata(localOpMetadata), 0x00f /* `pendingMessageId is missing from the local client's ${op.type} operation` */);
|
|
885
885
|
const pendingClearMessageId = this.pendingClearMessageIds.shift();
|
|
886
|
-
assert(pendingClearMessageId === localOpMetadata.pendingMessageId,
|
|
886
|
+
assert(pendingClearMessageId === localOpMetadata.pendingMessageId, 0x32a /* pendingMessageId does not match */);
|
|
887
887
|
return;
|
|
888
888
|
}
|
|
889
889
|
this.clearExceptPendingKeys();
|
|
@@ -976,10 +976,10 @@ class SubDirectory extends TypedEventEmitter {
|
|
|
976
976
|
* @internal
|
|
977
977
|
*/
|
|
978
978
|
resubmitClearMessage(op, localOpMetadata) {
|
|
979
|
-
assert(isClearLocalOpMetadata(localOpMetadata),
|
|
979
|
+
assert(isClearLocalOpMetadata(localOpMetadata), 0x32b /* Invalid localOpMetadata for clear */);
|
|
980
980
|
// We don't reuse the metadata pendingMessageId but send a new one on each submit.
|
|
981
981
|
const pendingClearMessageId = this.pendingClearMessageIds.shift();
|
|
982
|
-
assert(pendingClearMessageId === localOpMetadata.pendingMessageId,
|
|
982
|
+
assert(pendingClearMessageId === localOpMetadata.pendingMessageId, 0x32c /* pendingMessageId does not match */);
|
|
983
983
|
this.submitClearMessage(op, localOpMetadata.previousStorage);
|
|
984
984
|
}
|
|
985
985
|
/**
|
|
@@ -1015,10 +1015,10 @@ class SubDirectory extends TypedEventEmitter {
|
|
|
1015
1015
|
* @internal
|
|
1016
1016
|
*/
|
|
1017
1017
|
resubmitKeyMessage(op, localOpMetadata) {
|
|
1018
|
-
assert(isKeyEditLocalOpMetadata(localOpMetadata),
|
|
1018
|
+
assert(isKeyEditLocalOpMetadata(localOpMetadata), 0x32d /* Invalid localOpMetadata in submit */);
|
|
1019
1019
|
// clear the old pending message id
|
|
1020
1020
|
const pendingMessageIds = this.pendingKeys.get(op.key);
|
|
1021
|
-
assert(pendingMessageIds !== undefined && pendingMessageIds[0] === localOpMetadata.pendingMessageId,
|
|
1021
|
+
assert(pendingMessageIds !== undefined && pendingMessageIds[0] === localOpMetadata.pendingMessageId, 0x32e /* Unexpected pending message received */);
|
|
1022
1022
|
pendingMessageIds.shift();
|
|
1023
1023
|
if (pendingMessageIds.length === 0) {
|
|
1024
1024
|
this.pendingKeys.delete(op.key);
|
|
@@ -1077,10 +1077,10 @@ class SubDirectory extends TypedEventEmitter {
|
|
|
1077
1077
|
* @internal
|
|
1078
1078
|
*/
|
|
1079
1079
|
resubmitSubDirectoryMessage(op, localOpMetadata) {
|
|
1080
|
-
assert(isSubDirLocalOpMetadata(localOpMetadata),
|
|
1080
|
+
assert(isSubDirLocalOpMetadata(localOpMetadata), 0x32f /* Invalid localOpMetadata for sub directory op */);
|
|
1081
1081
|
// clear the old pending message id
|
|
1082
1082
|
const pendingMessageIds = this.pendingSubDirectories.get(op.subdirName);
|
|
1083
|
-
assert(pendingMessageIds !== undefined && pendingMessageIds[0] === localOpMetadata.pendingMessageId,
|
|
1083
|
+
assert(pendingMessageIds !== undefined && pendingMessageIds[0] === localOpMetadata.pendingMessageId, 0x330 /* Unexpected pending message received */);
|
|
1084
1084
|
pendingMessageIds.shift();
|
|
1085
1085
|
if (pendingMessageIds.length === 0) {
|
|
1086
1086
|
this.pendingSubDirectories.delete(op.subdirName);
|
|
@@ -1231,7 +1231,7 @@ class SubDirectory extends TypedEventEmitter {
|
|
|
1231
1231
|
if (local) {
|
|
1232
1232
|
assert(localOpMetadata !== undefined && isKeyEditLocalOpMetadata(localOpMetadata), 0x011 /* pendingMessageId is missing from the local client's operation */);
|
|
1233
1233
|
const pendingMessageIds = this.pendingKeys.get(op.key);
|
|
1234
|
-
assert(pendingMessageIds !== undefined && pendingMessageIds[0] === localOpMetadata.pendingMessageId,
|
|
1234
|
+
assert(pendingMessageIds !== undefined && pendingMessageIds[0] === localOpMetadata.pendingMessageId, 0x331 /* Unexpected pending message received */);
|
|
1235
1235
|
pendingMessageIds.shift();
|
|
1236
1236
|
if (pendingMessageIds.length === 0) {
|
|
1237
1237
|
this.pendingKeys.delete(op.key);
|
|
@@ -1258,7 +1258,7 @@ class SubDirectory extends TypedEventEmitter {
|
|
|
1258
1258
|
if (local) {
|
|
1259
1259
|
assert(isSubDirLocalOpMetadata(localOpMetadata), 0x012 /* pendingMessageId is missing from the local client's operation */);
|
|
1260
1260
|
const pendingMessageIds = this.pendingSubDirectories.get(op.subdirName);
|
|
1261
|
-
assert(pendingMessageIds !== undefined && pendingMessageIds[0] === localOpMetadata.pendingMessageId,
|
|
1261
|
+
assert(pendingMessageIds !== undefined && pendingMessageIds[0] === localOpMetadata.pendingMessageId, 0x332 /* Unexpected pending message received */);
|
|
1262
1262
|
pendingMessageIds.shift();
|
|
1263
1263
|
if (pendingMessageIds.length === 0) {
|
|
1264
1264
|
this.pendingSubDirectories.delete(op.subdirName);
|