@fluidframework/cell 1.4.0-115997 → 2.0.0-dev-rc.1.0.0.224419

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.
Files changed (86) hide show
  1. package/.eslintrc.js +9 -7
  2. package/.mocharc.js +12 -0
  3. package/CHANGELOG.md +117 -0
  4. package/README.md +116 -1
  5. package/api-extractor-lint.json +4 -0
  6. package/api-extractor.json +2 -2
  7. package/api-report/cell.api.md +70 -0
  8. package/dist/cell-alpha.d.ts +30 -0
  9. package/dist/cell-beta.d.ts +34 -0
  10. package/dist/cell-public.d.ts +34 -0
  11. package/dist/cell-untrimmed.d.ts +263 -0
  12. package/dist/cell.cjs +283 -0
  13. package/dist/cell.cjs.map +1 -0
  14. package/dist/cell.d.ts +56 -71
  15. package/dist/cell.d.ts.map +1 -1
  16. package/dist/{cellFactory.js → cellFactory.cjs} +21 -4
  17. package/dist/cellFactory.cjs.map +1 -0
  18. package/dist/cellFactory.d.ts +20 -3
  19. package/dist/cellFactory.d.ts.map +1 -1
  20. package/dist/index.cjs +15 -0
  21. package/dist/index.cjs.map +1 -0
  22. package/dist/index.d.ts +7 -2
  23. package/dist/index.d.ts.map +1 -1
  24. package/dist/{interfaces.js → interfaces.cjs} +1 -1
  25. package/dist/interfaces.cjs.map +1 -0
  26. package/dist/interfaces.d.ts +100 -5
  27. package/dist/interfaces.d.ts.map +1 -1
  28. package/dist/{packageVersion.js → packageVersion.cjs} +2 -2
  29. package/dist/packageVersion.cjs.map +1 -0
  30. package/dist/packageVersion.d.ts +1 -1
  31. package/dist/packageVersion.d.ts.map +1 -1
  32. package/dist/tsdoc-metadata.json +11 -0
  33. package/lib/cell-alpha.d.mts +30 -0
  34. package/lib/cell-beta.d.mts +34 -0
  35. package/lib/cell-public.d.mts +34 -0
  36. package/lib/cell-untrimmed.d.mts +263 -0
  37. package/lib/cell.d.mts +136 -0
  38. package/lib/cell.d.mts.map +1 -0
  39. package/lib/cell.mjs +279 -0
  40. package/lib/cell.mjs.map +1 -0
  41. package/lib/cellFactory.d.mts +38 -0
  42. package/lib/cellFactory.d.mts.map +1 -0
  43. package/lib/{cellFactory.js → cellFactory.mjs} +21 -4
  44. package/lib/cellFactory.mjs.map +1 -0
  45. package/lib/index.d.mts +7 -0
  46. package/lib/index.d.mts.map +1 -0
  47. package/lib/{index.js → index.mjs} +2 -3
  48. package/lib/index.mjs.map +1 -0
  49. package/lib/interfaces.d.mts +133 -0
  50. package/lib/interfaces.d.mts.map +1 -0
  51. package/lib/{interfaces.js → interfaces.mjs} +1 -1
  52. package/lib/interfaces.mjs.map +1 -0
  53. package/lib/{packageVersion.d.ts → packageVersion.d.mts} +1 -1
  54. package/lib/{packageVersion.d.ts.map → packageVersion.d.mts.map} +1 -1
  55. package/lib/{packageVersion.js → packageVersion.mjs} +2 -2
  56. package/lib/packageVersion.mjs.map +1 -0
  57. package/package.json +96 -62
  58. package/{lib/index.d.ts → prettier.config.cjs} +4 -3
  59. package/src/cell.ts +361 -269
  60. package/src/cellFactory.ts +53 -35
  61. package/src/index.ts +13 -2
  62. package/src/interfaces.ts +135 -31
  63. package/src/packageVersion.ts +1 -1
  64. package/tsc-multi.test.json +4 -0
  65. package/tsconfig.json +11 -13
  66. package/dist/cell.js +0 -238
  67. package/dist/cell.js.map +0 -1
  68. package/dist/cellFactory.js.map +0 -1
  69. package/dist/index.js +0 -19
  70. package/dist/index.js.map +0 -1
  71. package/dist/interfaces.js.map +0 -1
  72. package/dist/packageVersion.js.map +0 -1
  73. package/lib/cell.d.ts +0 -151
  74. package/lib/cell.d.ts.map +0 -1
  75. package/lib/cell.js +0 -234
  76. package/lib/cell.js.map +0 -1
  77. package/lib/cellFactory.d.ts +0 -21
  78. package/lib/cellFactory.d.ts.map +0 -1
  79. package/lib/cellFactory.js.map +0 -1
  80. package/lib/index.d.ts.map +0 -1
  81. package/lib/index.js.map +0 -1
  82. package/lib/interfaces.d.ts +0 -38
  83. package/lib/interfaces.d.ts.map +0 -1
  84. package/lib/interfaces.js.map +0 -1
  85. package/lib/packageVersion.js.map +0 -1
  86. package/tsconfig.esnext.json +0 -7
package/.eslintrc.js CHANGED
@@ -4,10 +4,12 @@
4
4
  */
5
5
 
6
6
  module.exports = {
7
- "extends": [
8
- require.resolve("@fluidframework/eslint-config-fluid")
9
- ],
10
- "parserOptions": {
11
- "project": ["./tsconfig.json", "./src/test/tsconfig.json"]
12
- },
13
- }
7
+ extends: [require.resolve("@fluidframework/eslint-config-fluid/strict"), "prettier"],
8
+ parserOptions: {
9
+ project: ["./tsconfig.json", "./src/test/tsconfig.json"],
10
+ },
11
+ rules: {
12
+ // TODO: consider re-enabling once we have addressed how this rule conflicts with our error codes.
13
+ "unicorn/numeric-separators-style": "off",
14
+ },
15
+ };
package/.mocharc.js ADDED
@@ -0,0 +1,12 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+
6
+ "use strict";
7
+
8
+ const getFluidTestMochaConfig = require("@fluidframework/mocha-test-setup/mocharc-common");
9
+
10
+ const packageDir = __dirname;
11
+ const config = getFluidTestMochaConfig(packageDir);
12
+ module.exports = config;
package/CHANGELOG.md ADDED
@@ -0,0 +1,117 @@
1
+ # @fluidframework/cell
2
+
3
+ ## 2.0.0-internal.8.0.0
4
+
5
+ Dependency updates only.
6
+
7
+ ## 2.0.0-internal.7.4.0
8
+
9
+ Dependency updates only.
10
+
11
+ ## 2.0.0-internal.7.3.0
12
+
13
+ Dependency updates only.
14
+
15
+ ## 2.0.0-internal.7.2.0
16
+
17
+ Dependency updates only.
18
+
19
+ ## 2.0.0-internal.7.1.0
20
+
21
+ Dependency updates only.
22
+
23
+ ## 2.0.0-internal.7.0.0
24
+
25
+ ### Major Changes
26
+
27
+ - Dependencies on @fluidframework/protocol-definitions package updated to 3.0.0 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
28
+
29
+ This included the following changes from the protocol-definitions release:
30
+
31
+ - Updating signal interfaces for some planned improvements. The intention is split the interface between signals
32
+ submitted by clients to the server and the resulting signals sent from the server to clients.
33
+ - A new optional type member is available on the ISignalMessage interface and a new ISentSignalMessage interface has
34
+ been added, which will be the typing for signals sent from the client to the server. Both extend a new
35
+ ISignalMessageBase interface that contains common members.
36
+ - The @fluidframework/common-definitions package dependency has been updated to version 1.0.0.
37
+
38
+ - Server upgrade: dependencies on Fluid server packages updated to 2.0.1 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
39
+
40
+ Dependencies on the following Fluid server package have been updated to version 2.0.1:
41
+
42
+ - @fluidframework/gitresources: 2.0.1
43
+ - @fluidframework/server-kafka-orderer: 2.0.1
44
+ - @fluidframework/server-lambdas: 2.0.1
45
+ - @fluidframework/server-lambdas-driver: 2.0.1
46
+ - @fluidframework/server-local-server: 2.0.1
47
+ - @fluidframework/server-memory-orderer: 2.0.1
48
+ - @fluidframework/protocol-base: 2.0.1
49
+ - @fluidframework/server-routerlicious: 2.0.1
50
+ - @fluidframework/server-routerlicious-base: 2.0.1
51
+ - @fluidframework/server-services: 2.0.1
52
+ - @fluidframework/server-services-client: 2.0.1
53
+ - @fluidframework/server-services-core: 2.0.1
54
+ - @fluidframework/server-services-ordering-kafkanode: 2.0.1
55
+ - @fluidframework/server-services-ordering-rdkafka: 2.0.1
56
+ - @fluidframework/server-services-ordering-zookeeper: 2.0.1
57
+ - @fluidframework/server-services-shared: 2.0.1
58
+ - @fluidframework/server-services-telemetry: 2.0.1
59
+ - @fluidframework/server-services-utils: 2.0.1
60
+ - @fluidframework/server-test-utils: 2.0.1
61
+ - tinylicious: 2.0.1
62
+
63
+ - Minimum TypeScript version now 5.1.6 [871b3493dd](https://github.com/microsoft/FluidFramework/commits/871b3493dd0d7ea3a89be64998ceb6cb9021a04e)
64
+
65
+ The minimum supported TypeScript version for Fluid 2.0 clients is now 5.1.6.
66
+
67
+ ## 2.0.0-internal.6.4.0
68
+
69
+ Dependency updates only.
70
+
71
+ ## 2.0.0-internal.6.3.0
72
+
73
+ Dependency updates only.
74
+
75
+ ## 2.0.0-internal.6.2.0
76
+
77
+ Dependency updates only.
78
+
79
+ ## 2.0.0-internal.6.1.0
80
+
81
+ Dependency updates only.
82
+
83
+ ## 2.0.0-internal.6.0.0
84
+
85
+ ### Major Changes
86
+
87
+ - Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
88
+
89
+ Upgraded typescript transpilation target to ES2020. This is done in order to decrease the bundle sizes of Fluid Framework packages. This has provided size improvements across the board for ex. Loader, Driver, Runtime etc. Reduced bundle sizes helps to load lesser code in apps and hence also helps to improve the perf.If any app wants to target any older versions of browsers with which this target version is not compatible, then they can use packages like babel to transpile to a older target.
90
+
91
+ ## 2.0.0-internal.5.4.0
92
+
93
+ Dependency updates only.
94
+
95
+ ## 2.0.0-internal.5.3.0
96
+
97
+ Dependency updates only.
98
+
99
+ ## 2.0.0-internal.5.2.0
100
+
101
+ Dependency updates only.
102
+
103
+ ## 2.0.0-internal.5.1.0
104
+
105
+ Dependency updates only.
106
+
107
+ ## 2.0.0-internal.5.0.0
108
+
109
+ Dependency updates only.
110
+
111
+ ## 2.0.0-internal.4.4.0
112
+
113
+ Dependency updates only.
114
+
115
+ ## 2.0.0-internal.4.1.0
116
+
117
+ Dependency updates only.
package/README.md CHANGED
@@ -1,3 +1,118 @@
1
1
  # @fluidframework/cell
2
2
 
3
- Documentation available at https://fluidframework.com/docs/apis/cell/.
3
+ The `SharedCell` Distributed Data Structure (DDS) stores a single, shared value that can be edited or deleted.
4
+
5
+ <!-- AUTO-GENERATED-CONTENT:START (README_INSTALLATION_SECTION:includeHeading=TRUE) -->
6
+
7
+ <!-- prettier-ignore-start -->
8
+ <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
9
+
10
+ ## Installation
11
+
12
+ To get started, install the package by running the following command:
13
+
14
+ ```bash
15
+ npm i @fluidframework/cell
16
+ ```
17
+
18
+ <!-- prettier-ignore-end -->
19
+
20
+ <!-- AUTO-GENERATED-CONTENT:END -->
21
+
22
+ <!-- AUTO-GENERATED-CONTENT:START (README_DEPENDENCY_GUIDELINES_SECTION:includeHeading=TRUE) -->
23
+
24
+ <!-- prettier-ignore-start -->
25
+ <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
26
+
27
+ ## Using Fluid Framework libraries
28
+
29
+ When taking a dependency on a Fluid Framework library, we recommend using a `^` (caret) version range, such as `^1.3.4`.
30
+ While Fluid Framework libraries may use different ranges with interdependencies between other Fluid Framework libraries,
31
+ library consumers should always prefer `^`.
32
+
33
+ Note that when depending on a library version of the form `2.0.0-internal.x.y.z`, called the Fluid internal version scheme,
34
+ you must use a `>= <` dependency range (such as `>=2.0.0-internal.x.y.z <2.0.0-internal.w.0.0` where `w` is `x+1`).
35
+ Standard `^` and `~` ranges will not work as expected.
36
+ See the [@fluid-tools/version-tools](https://github.com/microsoft/FluidFramework/blob/main/build-tools/packages/version-tools/README.md)
37
+ package for more information including tools to convert between version schemes.
38
+
39
+ <!-- prettier-ignore-end -->
40
+
41
+ <!-- AUTO-GENERATED-CONTENT:END -->
42
+
43
+ <!-- AUTO-GENERATED-CONTENT:START (README_API_DOCS_SECTION:includeHeading=TRUE) -->
44
+
45
+ <!-- prettier-ignore-start -->
46
+
47
+ <!-- This section is automatically generated. To update it, make the appropriate changes to docs/md-magic.config.js or the embedded content, then run 'npm run build:md-magic' in the docs folder. -->
48
+
49
+ ## API Documentation
50
+
51
+ API documentation for **@fluidframework/cell** is available at <https://fluidframework.com/docs/apis/cell>.
52
+
53
+ <!-- prettier-ignore-end -->
54
+
55
+ <!-- AUTO-GENERATED-CONTENT:END -->
56
+
57
+ <!-- AUTO-GENERATED-CONTENT:START (README_CONTRIBUTION_GUIDELINES_SECTION:includeHeading=TRUE) -->
58
+
59
+ <!-- prettier-ignore-start -->
60
+ <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
61
+
62
+ ## Contribution Guidelines
63
+
64
+ There are many ways to [contribute](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md) to Fluid.
65
+
66
+ - Participate in Q&A in our [GitHub Discussions](https://github.com/microsoft/FluidFramework/discussions).
67
+ - [Submit bugs](https://github.com/microsoft/FluidFramework/issues) and help us verify fixes as they are checked in.
68
+ - Review the [source code changes](https://github.com/microsoft/FluidFramework/pulls).
69
+ - [Contribute bug fixes](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md).
70
+
71
+ Detailed instructions for working in the repo can be found in the [Wiki](https://github.com/microsoft/FluidFramework/wiki).
72
+
73
+ This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
74
+ For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
75
+
76
+ This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
77
+ Use of these trademarks or logos must follow Microsoft’s [Trademark & Brand Guidelines](https://www.microsoft.com/trademarks).
78
+ Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
79
+
80
+ <!-- prettier-ignore-end -->
81
+
82
+ <!-- AUTO-GENERATED-CONTENT:END -->
83
+
84
+ <!-- AUTO-GENERATED-CONTENT:START (README_HELP_SECTION:includeHeading=TRUE) -->
85
+
86
+ <!-- prettier-ignore-start -->
87
+ <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
88
+
89
+ ## Help
90
+
91
+ Not finding what you're looking for in this README? Check out our [GitHub
92
+ Wiki](https://github.com/microsoft/FluidFramework/wiki) or [fluidframework.com](https://fluidframework.com/docs/).
93
+
94
+ Still not finding what you're looking for? Please [file an
95
+ issue](https://github.com/microsoft/FluidFramework/wiki/Submitting-Bugs-and-Feature-Requests).
96
+
97
+ Thank you!
98
+
99
+ <!-- prettier-ignore-end -->
100
+
101
+ <!-- AUTO-GENERATED-CONTENT:END -->
102
+
103
+ <!-- AUTO-GENERATED-CONTENT:START (README_TRADEMARK_SECTION:includeHeading=TRUE) -->
104
+
105
+ <!-- prettier-ignore-start -->
106
+ <!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
107
+
108
+ ## Trademark
109
+
110
+ This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
111
+
112
+ Use of these trademarks or logos must follow Microsoft's [Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
113
+
114
+ Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
115
+
116
+ <!-- prettier-ignore-end -->
117
+
118
+ <!-- AUTO-GENERATED-CONTENT:END -->
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
+ "extends": "../../../common/build/build-common/api-extractor-lint.json"
4
+ }
@@ -1,4 +1,4 @@
1
1
  {
2
- "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
- "extends": "@fluidframework/build-common/api-extractor-common-report.json"
2
+ "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
+ "extends": "../../../common/build/build-common/api-extractor-base.json"
4
4
  }
@@ -0,0 +1,70 @@
1
+ ## API Report File for "@fluidframework/cell"
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 { AttributionKey } from '@fluidframework/runtime-definitions';
8
+ import { IChannelAttributes } from '@fluidframework/datastore-definitions';
9
+ import { IChannelFactory } from '@fluidframework/datastore-definitions';
10
+ import { IChannelStorageService } from '@fluidframework/datastore-definitions';
11
+ import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
12
+ import { IFluidSerializer } from '@fluidframework/shared-object-base';
13
+ import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
14
+ import { ISharedObject } from '@fluidframework/shared-object-base';
15
+ import { ISharedObjectEvents } from '@fluidframework/shared-object-base';
16
+ import { ISummaryTreeWithStats } from '@fluidframework/runtime-definitions';
17
+ import { Serializable } from '@fluidframework/datastore-definitions';
18
+ import { SharedObject } from '@fluidframework/shared-object-base';
19
+
20
+ // @internal
21
+ export interface ICellAttributionOptions {
22
+ // (undocumented)
23
+ track?: boolean;
24
+ }
25
+
26
+ // @internal
27
+ export interface ICellOptions {
28
+ // (undocumented)
29
+ attribution?: ICellAttributionOptions;
30
+ }
31
+
32
+ // @internal
33
+ export interface ISharedCell<T = any> extends ISharedObject<ISharedCellEvents<T>> {
34
+ delete(): void;
35
+ empty(): boolean;
36
+ get(): Serializable<T> | undefined;
37
+ // (undocumented)
38
+ getAttribution(): AttributionKey | undefined;
39
+ set(value: Serializable<T>): void;
40
+ }
41
+
42
+ // @internal
43
+ export interface ISharedCellEvents<T> extends ISharedObjectEvents {
44
+ (event: "valueChanged", listener: (value: Serializable<T>) => void): any;
45
+ (event: "delete", listener: () => void): any;
46
+ }
47
+
48
+ // @internal
49
+ export class SharedCell<T = any> extends SharedObject<ISharedCellEvents<T>> implements ISharedCell<T> {
50
+ constructor(id: string, runtime: IFluidDataStoreRuntime, attributes: IChannelAttributes);
51
+ // (undocumented)
52
+ protected applyStashedOp(content: unknown): unknown;
53
+ static create(runtime: IFluidDataStoreRuntime, id?: string): SharedCell;
54
+ delete(): void;
55
+ empty(): boolean;
56
+ get(): Serializable<T> | undefined;
57
+ // (undocumented)
58
+ getAttribution(): AttributionKey | undefined;
59
+ static getFactory(): IChannelFactory;
60
+ protected initializeLocalCore(): void;
61
+ // (undocumented)
62
+ protected loadCore(storage: IChannelStorageService): Promise<void>;
63
+ protected onDisconnect(): void;
64
+ protected processCore(message: ISequencedDocumentMessage, local: boolean, localOpMetadata: unknown): void;
65
+ protected rollback(content: any, localOpMetadata: unknown): void;
66
+ set(value: Serializable<T>): void;
67
+ protected summarizeCore(serializer: IFluidSerializer): ISummaryTreeWithStats;
68
+ }
69
+
70
+ ```
@@ -0,0 +1,30 @@
1
+ /**
2
+ * The `SharedCell` Distributed Data Structure (DDS) stores a single, shared value that can be edited or deleted.
3
+ *
4
+ * @packageDocumentation
5
+ */
6
+
7
+ import { AttributionKey } from '@fluidframework/runtime-definitions';
8
+ import { IChannelAttributes } from '@fluidframework/datastore-definitions';
9
+ import { IChannelFactory } from '@fluidframework/datastore-definitions';
10
+ import { IChannelStorageService } from '@fluidframework/datastore-definitions';
11
+ import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
12
+ import { IFluidSerializer } from '@fluidframework/shared-object-base';
13
+ import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
14
+ import { ISharedObject } from '@fluidframework/shared-object-base';
15
+ import { ISharedObjectEvents } from '@fluidframework/shared-object-base';
16
+ import { ISummaryTreeWithStats } from '@fluidframework/runtime-definitions';
17
+ import { Serializable } from '@fluidframework/datastore-definitions';
18
+ import { SharedObject } from '@fluidframework/shared-object-base';
19
+
20
+ /* Excluded from this release type: ICellAttributionOptions */
21
+
22
+ /* Excluded from this release type: ICellOptions */
23
+
24
+ /* Excluded from this release type: ISharedCell */
25
+
26
+ /* Excluded from this release type: ISharedCellEvents */
27
+
28
+ /* Excluded from this release type: SharedCell */
29
+
30
+ export { }
@@ -0,0 +1,34 @@
1
+ /**
2
+ * The `SharedCell` Distributed Data Structure (DDS) stores a single, shared value that can be edited or deleted.
3
+ *
4
+ * @packageDocumentation
5
+ */
6
+
7
+ import { AttributionKey } from '@fluidframework/runtime-definitions';
8
+ import { IChannelAttributes } from '@fluidframework/datastore-definitions';
9
+ import { IChannelFactory } from '@fluidframework/datastore-definitions';
10
+ import { IChannelStorageService } from '@fluidframework/datastore-definitions';
11
+ import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
12
+ import { IFluidSerializer } from '@fluidframework/shared-object-base';
13
+ import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
14
+ import { ISharedObject } from '@fluidframework/shared-object-base';
15
+ import { ISharedObjectEvents } from '@fluidframework/shared-object-base';
16
+ import { ISummaryTreeWithStats } from '@fluidframework/runtime-definitions';
17
+ import { Serializable } from '@fluidframework/datastore-definitions';
18
+ import { SharedObject } from '@fluidframework/shared-object-base';
19
+
20
+ /* Excluded from this release type: AttributionKey */
21
+
22
+ /* Excluded from this release type: ICellAttributionOptions */
23
+
24
+ /* Excluded from this release type: ICellOptions */
25
+
26
+ /* Excluded from this release type: ISharedCell */
27
+
28
+ /* Excluded from this release type: ISharedCellEvents */
29
+
30
+ /* Excluded from this release type: Serializable */
31
+
32
+ /* Excluded from this release type: SharedCell */
33
+
34
+ export { }
@@ -0,0 +1,34 @@
1
+ /**
2
+ * The `SharedCell` Distributed Data Structure (DDS) stores a single, shared value that can be edited or deleted.
3
+ *
4
+ * @packageDocumentation
5
+ */
6
+
7
+ import { AttributionKey } from '@fluidframework/runtime-definitions';
8
+ import { IChannelAttributes } from '@fluidframework/datastore-definitions';
9
+ import { IChannelFactory } from '@fluidframework/datastore-definitions';
10
+ import { IChannelStorageService } from '@fluidframework/datastore-definitions';
11
+ import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
12
+ import { IFluidSerializer } from '@fluidframework/shared-object-base';
13
+ import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
14
+ import { ISharedObject } from '@fluidframework/shared-object-base';
15
+ import { ISharedObjectEvents } from '@fluidframework/shared-object-base';
16
+ import { ISummaryTreeWithStats } from '@fluidframework/runtime-definitions';
17
+ import { Serializable } from '@fluidframework/datastore-definitions';
18
+ import { SharedObject } from '@fluidframework/shared-object-base';
19
+
20
+ /* Excluded from this release type: AttributionKey */
21
+
22
+ /* Excluded from this release type: ICellAttributionOptions */
23
+
24
+ /* Excluded from this release type: ICellOptions */
25
+
26
+ /* Excluded from this release type: ISharedCell */
27
+
28
+ /* Excluded from this release type: ISharedCellEvents */
29
+
30
+ /* Excluded from this release type: Serializable */
31
+
32
+ /* Excluded from this release type: SharedCell */
33
+
34
+ export { }