@fluidframework/container-loader 2.70.0-361092 → 2.70.0-361248

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 (48) hide show
  1. package/dist/attachment.d.ts +1 -1
  2. package/dist/attachment.js +1 -1
  3. package/dist/attachment.js.map +1 -1
  4. package/dist/connectionStateHandler.d.ts +1 -1
  5. package/dist/connectionStateHandler.js +1 -1
  6. package/dist/connectionStateHandler.js.map +1 -1
  7. package/dist/container.d.ts.map +1 -1
  8. package/dist/container.js.map +1 -1
  9. package/dist/containerContext.d.ts +1 -1
  10. package/dist/containerContext.js +1 -1
  11. package/dist/containerContext.js.map +1 -1
  12. package/dist/containerStorageAdapter.d.ts +1 -1
  13. package/dist/containerStorageAdapter.js +1 -1
  14. package/dist/containerStorageAdapter.js.map +1 -1
  15. package/dist/packageVersion.d.ts +1 -1
  16. package/dist/packageVersion.js +1 -1
  17. package/dist/packageVersion.js.map +1 -1
  18. package/dist/serializedStateManager.d.ts +2 -2
  19. package/dist/serializedStateManager.js +3 -3
  20. package/dist/serializedStateManager.js.map +1 -1
  21. package/lib/attachment.d.ts +1 -1
  22. package/lib/attachment.js +1 -1
  23. package/lib/attachment.js.map +1 -1
  24. package/lib/connectionStateHandler.d.ts +1 -1
  25. package/lib/connectionStateHandler.js +1 -1
  26. package/lib/connectionStateHandler.js.map +1 -1
  27. package/lib/container.d.ts.map +1 -1
  28. package/lib/container.js.map +1 -1
  29. package/lib/containerContext.d.ts +1 -1
  30. package/lib/containerContext.js +1 -1
  31. package/lib/containerContext.js.map +1 -1
  32. package/lib/containerStorageAdapter.d.ts +1 -1
  33. package/lib/containerStorageAdapter.js +1 -1
  34. package/lib/containerStorageAdapter.js.map +1 -1
  35. package/lib/packageVersion.d.ts +1 -1
  36. package/lib/packageVersion.js +1 -1
  37. package/lib/packageVersion.js.map +1 -1
  38. package/lib/serializedStateManager.d.ts +2 -2
  39. package/lib/serializedStateManager.js +3 -3
  40. package/lib/serializedStateManager.js.map +1 -1
  41. package/package.json +11 -11
  42. package/src/attachment.ts +1 -1
  43. package/src/connectionStateHandler.ts +1 -1
  44. package/src/container.ts +2 -2
  45. package/src/containerContext.ts +1 -1
  46. package/src/containerStorageAdapter.ts +1 -1
  47. package/src/packageVersion.ts +1 -1
  48. package/src/serializedStateManager.ts +3 -3
@@ -598,7 +598,7 @@ export async function getLatestSnapshotInfo(
598
598
  * @param storageAdapter - The storage adapter providing methods to retrieve the snapshot.
599
599
  * @param supportGetSnapshotApi - a boolean indicating whether to use the fetchISnapshot or fetchISnapshotTree.
600
600
  * @param specifiedVersion - An optional version string specifying the version of the snapshot tree to fetch.
601
- * @returns - An ISnapshotTree and its version.
601
+ * @returns An ISnapshotTree and its version.
602
602
  */
603
603
  async function getSnapshot(
604
604
  mc: MonitoringContext,
@@ -622,7 +622,7 @@ async function getSnapshot(
622
622
  * @param mc - The monitoring context.
623
623
  * @param storageAdapter - The storage adapter providing a getSnapshot method to retrieve the ISnapshot and version.
624
624
  * @param specifiedVersion - An optional version string specifying the version of the snapshot tree to fetch.
625
- * @returns - The fetched snapshot tree and its version.
625
+ * @returns The fetched snapshot tree and its version.
626
626
  */
627
627
  export async function fetchISnapshot(
628
628
  mc: MonitoringContext,
@@ -658,7 +658,7 @@ export async function fetchISnapshot(
658
658
  * @param mc - The monitoring context.
659
659
  * @param storageAdapter - The storage adapter providing methods to retrieve the ISnapshotTree and version.
660
660
  * @param specifiedVersion - An optional version string specifying the version of the snapshot tree to fetch.
661
- * @returns - The fetched snapshot tree and its version.
661
+ * @returns The fetched snapshot tree and its version.
662
662
  */
663
663
  export async function fetchISnapshotTree(
664
664
  mc: MonitoringContext,