@univerjs-pro/collaboration 0.6.0-nightly.202502111606 → 0.6.0-nightly.202502121606

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.
@@ -12,6 +12,5 @@ export { textDecoder, textEncoder } from './services/snapshot/snapshot-utils';
12
12
  export { type IMutationTransformAlgorithm, ITransformService, TransformService, } from './services/transform/transform.service';
13
13
  export { type IFailureTransformChangesetsResult, type IFailureTransformMutationResult, type IFailureTransformMutationsResult, type IFailureTransformMutationsWithChangesetResult, isTransformChangesetsFailure, isTransformChangesetsSuccess, isTransformMutationFailure, isTransformMutationsFailure, isTransformMutationsSuccess, isTransformMutationSuccess, isTransformMutationsWithChangesetFailure, isTransformMutationsWithChangesetSuccess, type ISuccessTransformChangesetsResult, type ISuccessTransformMutationResult, type ISuccessTransformMutationsResult, type ISuccessTransformMutationsWithChangesetResult, type ITransformChangesetsResult, type ITransformMutationResult, type ITransformMutationsResult, type ITransformMutationsWithChangesetResult, } from './services/transform/types';
14
14
  export { b64DecodeUnicode, b64EncodeUnicode, type ILogContext, mapDocumentTypeToUniverType } from './utils';
15
- export { IHistoryIoService } from './services/history/type';
16
15
  export { type IRevertRevisionMutationParams, RevertRevisionMutation } from './command/revert-revision.mutation';
17
16
  export { CreateUnitMutation, type ICreateUnitMutationParams } from './command/create-unit.mutation';
@@ -4,5 +4,15 @@ export declare function mapDocumentTypeToUniverType(documentType: UniverInstance
4
4
  export interface ILogContext {
5
5
  metadata?: Record<string, string>;
6
6
  }
7
+ /**
8
+ * Convert the string to a Uint8Array and then to a base64 string directly
9
+ * @param str
10
+ * @returns
11
+ */
7
12
  export declare function b64EncodeUnicode(str: string): string;
13
+ /**
14
+ * Covert the base64 string to a Uint8Array and then to a string directly
15
+ * @param str
16
+ * @returns
17
+ */
8
18
  export declare function b64DecodeUnicode(str: string): string;