@fluidframework/odsp-driver-definitions 2.0.0-dev.7.4.0.217884 → 2.0.0-dev.7.4.0.221926

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 (46) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/api-extractor.json +0 -3
  3. package/api-report/odsp-driver-definitions.api.md +24 -24
  4. package/dist/factory.cjs.map +1 -1
  5. package/dist/factory.d.ts +4 -4
  6. package/dist/odsp-driver-definitions-alpha.d.ts +440 -41
  7. package/dist/odsp-driver-definitions-beta.d.ts +4 -0
  8. package/dist/odsp-driver-definitions-public.d.ts +4 -0
  9. package/dist/odsp-driver-definitions-untrimmed.d.ts +24 -24
  10. package/dist/odspCache.cjs.map +1 -1
  11. package/dist/odspCache.d.ts +5 -5
  12. package/dist/resolvedUrl.cjs +3 -3
  13. package/dist/resolvedUrl.cjs.map +1 -1
  14. package/dist/resolvedUrl.d.ts +8 -8
  15. package/dist/sessionProvider.cjs.map +1 -1
  16. package/dist/sessionProvider.d.ts +3 -3
  17. package/dist/tokenFetch.cjs.map +1 -1
  18. package/dist/tokenFetch.d.ts +4 -4
  19. package/lib/errors.d.ts +0 -4
  20. package/lib/errors.d.ts.map +1 -1
  21. package/lib/factory.d.ts +4 -4
  22. package/lib/factory.mjs.map +1 -1
  23. package/lib/index.d.ts +6 -6
  24. package/lib/index.d.ts.map +1 -1
  25. package/lib/odsp-driver-definitions-alpha.d.ts +440 -41
  26. package/lib/odsp-driver-definitions-beta.d.ts +4 -0
  27. package/lib/odsp-driver-definitions-public.d.ts +4 -0
  28. package/lib/odsp-driver-definitions-untrimmed.d.ts +24 -24
  29. package/lib/odspCache.d.ts +5 -5
  30. package/lib/odspCache.d.ts.map +1 -1
  31. package/lib/odspCache.mjs.map +1 -1
  32. package/lib/resolvedUrl.d.ts +8 -8
  33. package/lib/resolvedUrl.d.ts.map +1 -1
  34. package/lib/resolvedUrl.mjs +3 -3
  35. package/lib/resolvedUrl.mjs.map +1 -1
  36. package/lib/sessionProvider.d.ts +3 -3
  37. package/lib/sessionProvider.d.ts.map +1 -1
  38. package/lib/sessionProvider.mjs.map +1 -1
  39. package/lib/tokenFetch.d.ts +4 -4
  40. package/lib/tokenFetch.mjs.map +1 -1
  41. package/package.json +4 -2
  42. package/src/factory.ts +4 -4
  43. package/src/odspCache.ts +5 -5
  44. package/src/resolvedUrl.ts +8 -8
  45. package/src/sessionProvider.ts +3 -3
  46. package/src/tokenFetch.ts +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/odsp-driver-definitions
2
2
 
3
+ ## 2.0.0-internal.7.4.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.0.0-internal.7.3.0
4
8
 
5
9
  Dependency updates only.
@@ -1,9 +1,6 @@
1
1
  {
2
2
  "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
3
  "extends": "../../../common/build/build-common/api-extractor-base.json",
4
- "dtsRollup": {
5
- "enabled": true
6
- },
7
4
  "messages": {
8
5
  "extractorMessageReporting": {
9
6
  // TODO: Add missing documentation and remove this rule override
@@ -8,13 +8,13 @@ import { DriverError } from '@fluidframework/driver-definitions';
8
8
  import { IDriverErrorBase } from '@fluidframework/driver-definitions';
9
9
  import { IResolvedUrl } from '@fluidframework/driver-definitions';
10
10
 
11
- // @internal (undocumented)
11
+ // @alpha (undocumented)
12
12
  export type CacheContentType = "snapshot" | "ops";
13
13
 
14
14
  // @internal
15
15
  export function getKeyForCacheEntry(entry: ICacheEntry): string;
16
16
 
17
- // @internal (undocumented)
17
+ // @alpha (undocumented)
18
18
  export interface HostStoragePolicy {
19
19
  avoidPrefetchSnapshotCache?: boolean;
20
20
  cacheCreateNewSummary?: boolean;
@@ -37,12 +37,12 @@ export interface HostStoragePolicy {
37
37
  snapshotOptions?: ISnapshotOptions;
38
38
  }
39
39
 
40
- // @internal
40
+ // @alpha
41
41
  export interface ICacheEntry extends IEntry {
42
42
  file: IFileEntry;
43
43
  }
44
44
 
45
- // @internal (undocumented)
45
+ // @alpha (undocumented)
46
46
  export interface ICollabSessionOptions {
47
47
  // @deprecated (undocumented)
48
48
  forceAccessTokenViaAuthorizationHeader?: boolean;
@@ -52,13 +52,13 @@ export interface ICollabSessionOptions {
52
52
  // @internal
53
53
  export type IdentityType = "Consumer" | "Enterprise";
54
54
 
55
- // @internal
55
+ // @alpha
56
56
  export interface IEntry {
57
57
  key: string;
58
58
  type: CacheContentType;
59
59
  }
60
60
 
61
- // @internal (undocumented)
61
+ // @alpha (undocumented)
62
62
  export interface IFileEntry {
63
63
  docId: string;
64
64
  resolvedUrl: IResolvedUrl;
@@ -80,7 +80,7 @@ export interface IOdspErrorAugmentations {
80
80
  serverEpoch?: string;
81
81
  }
82
82
 
83
- // @internal (undocumented)
83
+ // @alpha (undocumented)
84
84
  export interface IOdspResolvedUrl extends IResolvedUrl, IOdspUrlParts {
85
85
  // (undocumented)
86
86
  codeHint?: {
@@ -116,7 +116,7 @@ export interface IOdspResolvedUrl extends IResolvedUrl, IOdspUrlParts {
116
116
  url: string;
117
117
  }
118
118
 
119
- // @internal (undocumented)
119
+ // @alpha (undocumented)
120
120
  export interface IOdspUrlParts {
121
121
  // (undocumented)
122
122
  driveId: string;
@@ -126,39 +126,39 @@ export interface IOdspUrlParts {
126
126
  siteUrl: string;
127
127
  }
128
128
 
129
- // @internal (undocumented)
129
+ // @alpha (undocumented)
130
130
  export interface IOpsCachingPolicy {
131
131
  batchSize?: number;
132
132
  timerGranularity?: number;
133
133
  totalOpsToCache?: number;
134
134
  }
135
135
 
136
- // @internal
136
+ // @alpha
137
137
  export interface IPersistedCache {
138
138
  get(entry: ICacheEntry): Promise<any>;
139
139
  put(entry: ICacheEntry, value: any): Promise<void>;
140
140
  removeEntries(file: IFileEntry): Promise<void>;
141
141
  }
142
142
 
143
- // @internal
143
+ // @alpha
144
144
  export interface IProvideSessionAwareDriverFactory {
145
145
  // (undocumented)
146
146
  readonly IRelaySessionAwareDriverFactory: IRelaySessionAwareDriverFactory;
147
147
  }
148
148
 
149
- // @internal
149
+ // @alpha
150
150
  export interface IRelaySessionAwareDriverFactory extends IProvideSessionAwareDriverFactory {
151
151
  // (undocumented)
152
152
  getRelayServiceSessionInfo(resolvedUrl: IResolvedUrl): Promise<ISocketStorageDiscovery | undefined>;
153
153
  }
154
154
 
155
- // @internal
155
+ // @alpha
156
156
  export interface ISharingLink extends ISharingLinkKind {
157
157
  // (undocumented)
158
158
  webUrl: string;
159
159
  }
160
160
 
161
- // @internal
161
+ // @alpha
162
162
  export interface ISharingLinkKind {
163
163
  // (undocumented)
164
164
  role?: SharingLinkRole;
@@ -166,7 +166,7 @@ export interface ISharingLinkKind {
166
166
  scope: SharingLinkScope;
167
167
  }
168
168
 
169
- // @internal (undocumented)
169
+ // @alpha (undocumented)
170
170
  export interface ISnapshotOptions {
171
171
  // (undocumented)
172
172
  blobs?: number;
@@ -180,7 +180,7 @@ export interface ISnapshotOptions {
180
180
  timeout?: number;
181
181
  }
182
182
 
183
- // @internal
183
+ // @alpha
184
184
  export interface ISocketStorageDiscovery {
185
185
  // (undocumented)
186
186
  deltaStorageUrl: string;
@@ -249,14 +249,14 @@ export const OdspErrorTypes: {
249
249
  // @internal (undocumented)
250
250
  export type OdspErrorTypes = (typeof OdspErrorTypes)[keyof typeof OdspErrorTypes];
251
251
 
252
- // @internal
252
+ // @alpha
253
253
  export interface OdspResourceTokenFetchOptions extends TokenFetchOptions {
254
254
  driveId?: string;
255
255
  itemId?: string;
256
256
  siteUrl: string;
257
257
  }
258
258
 
259
- // @internal
259
+ // @alpha
260
260
  export interface ShareLinkInfoType {
261
261
  createLink?: {
262
262
  type?: ShareLinkTypes | ISharingLinkKind;
@@ -267,13 +267,13 @@ export interface ShareLinkInfoType {
267
267
  sharingLinkToRedeem?: string;
268
268
  }
269
269
 
270
- // @internal @deprecated (undocumented)
270
+ // @alpha @deprecated (undocumented)
271
271
  export enum ShareLinkTypes {
272
272
  // (undocumented)
273
273
  csl = "csl"
274
274
  }
275
275
 
276
- // @internal
276
+ // @alpha
277
277
  export enum SharingLinkRole {
278
278
  // (undocumented)
279
279
  edit = "edit",
@@ -281,7 +281,7 @@ export enum SharingLinkRole {
281
281
  view = "view"
282
282
  }
283
283
 
284
- // @internal
284
+ // @alpha
285
285
  export enum SharingLinkScope {
286
286
  // (undocumented)
287
287
  anonymous = "anonymous",
@@ -296,10 +296,10 @@ export enum SharingLinkScope {
296
296
  // @internal
297
297
  export const snapshotKey = "snapshot";
298
298
 
299
- // @internal
299
+ // @alpha
300
300
  export type TokenFetcher<T> = (options: T) => Promise<string | TokenResponse | null>;
301
301
 
302
- // @internal
302
+ // @alpha
303
303
  export interface TokenFetchOptions {
304
304
  claims?: string;
305
305
  refresh: boolean;
@@ -309,7 +309,7 @@ export interface TokenFetchOptions {
309
309
  // @internal
310
310
  export const tokenFromResponse: (tokenResponse: string | TokenResponse | null | undefined) => string | null;
311
311
 
312
- // @internal
312
+ // @alpha
313
313
  export interface TokenResponse {
314
314
  fromCache?: boolean;
315
315
  token: string;
@@ -1 +1 @@
1
- {"version":3,"file":"factory.cjs","sourceRoot":"","sources":["../src/factory.ts"],"names":[],"mappings":";AAAA;;;GAGG","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * @internal\n */\nexport interface ISnapshotOptions {\n\tblobs?: number;\n\tdeltas?: number;\n\tchannels?: number;\n\t/*\n\t * Maximum Data size (in bytes)\n\t * If specified, SPO will fail snapshot request with 413 error (see OdspErrorType.snapshotTooBig)\n\t * if snapshot is bigger in size than specified limit.\n\t */\n\tmds?: number;\n\n\t/*\n\t * Maximum time limit to fetch snapshot (in seconds)\n\t * If specified, client will timeout the fetch request if it exceeds the time limit and\n\t * will try to fetch the snapshot without blobs.\n\t */\n\ttimeout?: number;\n}\n\n/**\n * @internal\n */\nexport interface IOpsCachingPolicy {\n\t/**\n\t * Batch size. Controls how many ops are grouped together as single cache entry\n\t * The bigger the number, the more efficient it is (less reads & writes)\n\t * At the same time, big number means we wait for so many ops to accumulate, which\n\t * increases chances and number of trailing ops that would not be flushed to cache\n\t * when user closes tab\n\t * Use any number below 1 to disable caching\n\t * Default: 100\n\t */\n\tbatchSize?: number;\n\n\t/**\n\t * To reduce the problem of losing trailing ops when using big batch sizes, host\n\t * could specify how often driver should flush ops it has not flushed yet.\n\t * -1 means do not use timer.\n\t * Measured in ms.\n\t * Default: 5000\n\t */\n\ttimerGranularity?: number;\n\n\t/**\n\t * Total number of ops to cache. When we reach that number, ops caching stops\n\t * Default: 5000\n\t */\n\ttotalOpsToCache?: number;\n}\n\n/**\n * @internal\n */\nexport interface ICollabSessionOptions {\n\t/**\n\t * Value indicating the display name for session that admits unauthenticated user.\n\t * This name will be used in attribution associated with edits made by such user.\n\t */\n\tunauthenticatedUserDisplayName?: string;\n\t/**\n\t * @deprecated Due to security reasons we will be passing the token via Authorization header only.\n\t * Value indicating session preference to always pass access token via Authorization header.\n\t * Default behavior is to pass access token via query parameter unless overall href string\n\t * length exceeds 2048 characters. Using query param is performance optimization which results\n\t * in ODSP XHR request being treated as 'simple' request which do not require OPTIONS call to\n\t * validate CORS. However, not all ODSP implementations understand this optimization.\n\t * For instance, auth layer on Converged stack will fail request with access token passed via\n\t * query param.\n\t */\n\tforceAccessTokenViaAuthorizationHeader?: boolean;\n}\n\n/**\n * @internal\n */\nexport interface HostStoragePolicy {\n\tsnapshotOptions?: ISnapshotOptions;\n\n\t/**\n\t * If set to true, tells driver to concurrently fetch snapshot from storage (SPO) and cache\n\t * Container loads from whatever comes first in such case.\n\t * Snapshot fetched from storage is pushed to cache in either case.\n\t * If set to false, driver will first consult with cache. Only on cache miss (cache does not\n\t * return snapshot), driver will fetch snapshot from storage (and push it to cache), otherwise\n\t * it will load from cache and not reach out to storage.\n\t * Passing true results in faster loads and keeping cache more current, but it increases bandwidth consumption.\n\t */\n\tconcurrentSnapshotFetch?: boolean;\n\n\t// Options overwriting default ops fetching from storage.\n\topsBatchSize?: number;\n\tconcurrentOpsBatches?: number;\n\n\t/**\n\t * Policy controlling ops caching (leveraging IPersistedCache passed to driver factory)\n\t */\n\topsCaching?: IOpsCachingPolicy;\n\n\t/**\n\t * Policy controlling how collaboration session is established\n\t */\n\tsessionOptions?: ICollabSessionOptions;\n\n\t/**\n\t * @deprecated This field will be always set to true after removal.\n\t * True to have the sharing link redeem fallback in case the Trees Latest/Redeem 1RT call fails with redeem error.\n\t * During fallback it will first redeem the sharing link and then make the Trees latest call.\n\t */\n\tenableRedeemFallback?: boolean;\n\n\t/**\n\t * Policy controlling if we will cache initial summary when we create a document\n\t */\n\tcacheCreateNewSummary?: boolean;\n\n\t/**\n\t * @deprecated This will be replaced with feature gate snapshotFormatFetchType.\n\t * Policy controlling if we want to fetch binary format snapshot.\n\t */\n\tfetchBinarySnapshotFormat?: boolean;\n\n\t/**\n\t * If set to true, socket cache are per OdspDocumentService instead of shared across all instances\n\t */\n\tisolateSocketCache?: boolean;\n\n\t/**\n\t * @deprecated Switch to using the new feature gated by enableSingleRequestForShareLinkWithCreate\n\t * with 'createLinkScope' and 'createLinkRole' is requested to the odsp apis instead of 'createLinkType'.\n\t * It enables the creation of sharing link along with the creation of file by setting this value to true.\n\t * If the host provides a 'createLinkType' parameter in the request URL to the container.attach()\n\t * method, we will send the request to ODSP with the same (if the flag is enabled) so\n\t * that a share link can be created with the creation of file to save number for round trips made to ODSP.\n\t * (This flag works independently of enableSingleRequestForShareLinkWithCreate which is used for sharing link\n\t * requests where 'createLinkScope' is requested.)\n\t */\n\tenableShareLinkWithCreate?: boolean;\n\n\t/**\n\t * Enable creation of sharing link along with the creation of file by setting this value to true.\n\t * If the host provides a 'createLinkScope' parameter in the request URL to the container.attach()\n\t * method, we will send the request to ODSP with the same (if the flag is enabled) so\n\t * that a share link can be created with the creation of file to save number for round trips made to ODSP.\n\t * (This flag works independently of enableShareLinkWithCreate which was used for old sharing link requests\n\t * where 'createLinkType' was requested.)\n\t */\n\tenableSingleRequestForShareLinkWithCreate?: boolean;\n\n\t/**\n\t * True if host does not want the storage service to use the prefetch cache to get the snapshot. Undefined will be treated\n\t * as false. This is if the host wants to do some A/B testing.\n\t */\n\tavoidPrefetchSnapshotCache?: boolean;\n}\n"]}
1
+ {"version":3,"file":"factory.cjs","sourceRoot":"","sources":["../src/factory.ts"],"names":[],"mappings":";AAAA;;;GAGG","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * @alpha\n */\nexport interface ISnapshotOptions {\n\tblobs?: number;\n\tdeltas?: number;\n\tchannels?: number;\n\t/*\n\t * Maximum Data size (in bytes)\n\t * If specified, SPO will fail snapshot request with 413 error (see OdspErrorType.snapshotTooBig)\n\t * if snapshot is bigger in size than specified limit.\n\t */\n\tmds?: number;\n\n\t/*\n\t * Maximum time limit to fetch snapshot (in seconds)\n\t * If specified, client will timeout the fetch request if it exceeds the time limit and\n\t * will try to fetch the snapshot without blobs.\n\t */\n\ttimeout?: number;\n}\n\n/**\n * @alpha\n */\nexport interface IOpsCachingPolicy {\n\t/**\n\t * Batch size. Controls how many ops are grouped together as single cache entry\n\t * The bigger the number, the more efficient it is (less reads & writes)\n\t * At the same time, big number means we wait for so many ops to accumulate, which\n\t * increases chances and number of trailing ops that would not be flushed to cache\n\t * when user closes tab\n\t * Use any number below 1 to disable caching\n\t * Default: 100\n\t */\n\tbatchSize?: number;\n\n\t/**\n\t * To reduce the problem of losing trailing ops when using big batch sizes, host\n\t * could specify how often driver should flush ops it has not flushed yet.\n\t * -1 means do not use timer.\n\t * Measured in ms.\n\t * Default: 5000\n\t */\n\ttimerGranularity?: number;\n\n\t/**\n\t * Total number of ops to cache. When we reach that number, ops caching stops\n\t * Default: 5000\n\t */\n\ttotalOpsToCache?: number;\n}\n\n/**\n * @alpha\n */\nexport interface ICollabSessionOptions {\n\t/**\n\t * Value indicating the display name for session that admits unauthenticated user.\n\t * This name will be used in attribution associated with edits made by such user.\n\t */\n\tunauthenticatedUserDisplayName?: string;\n\t/**\n\t * @deprecated Due to security reasons we will be passing the token via Authorization header only.\n\t * Value indicating session preference to always pass access token via Authorization header.\n\t * Default behavior is to pass access token via query parameter unless overall href string\n\t * length exceeds 2048 characters. Using query param is performance optimization which results\n\t * in ODSP XHR request being treated as 'simple' request which do not require OPTIONS call to\n\t * validate CORS. However, not all ODSP implementations understand this optimization.\n\t * For instance, auth layer on Converged stack will fail request with access token passed via\n\t * query param.\n\t */\n\tforceAccessTokenViaAuthorizationHeader?: boolean;\n}\n\n/**\n * @alpha\n */\nexport interface HostStoragePolicy {\n\tsnapshotOptions?: ISnapshotOptions;\n\n\t/**\n\t * If set to true, tells driver to concurrently fetch snapshot from storage (SPO) and cache\n\t * Container loads from whatever comes first in such case.\n\t * Snapshot fetched from storage is pushed to cache in either case.\n\t * If set to false, driver will first consult with cache. Only on cache miss (cache does not\n\t * return snapshot), driver will fetch snapshot from storage (and push it to cache), otherwise\n\t * it will load from cache and not reach out to storage.\n\t * Passing true results in faster loads and keeping cache more current, but it increases bandwidth consumption.\n\t */\n\tconcurrentSnapshotFetch?: boolean;\n\n\t// Options overwriting default ops fetching from storage.\n\topsBatchSize?: number;\n\tconcurrentOpsBatches?: number;\n\n\t/**\n\t * Policy controlling ops caching (leveraging IPersistedCache passed to driver factory)\n\t */\n\topsCaching?: IOpsCachingPolicy;\n\n\t/**\n\t * Policy controlling how collaboration session is established\n\t */\n\tsessionOptions?: ICollabSessionOptions;\n\n\t/**\n\t * @deprecated This field will be always set to true after removal.\n\t * True to have the sharing link redeem fallback in case the Trees Latest/Redeem 1RT call fails with redeem error.\n\t * During fallback it will first redeem the sharing link and then make the Trees latest call.\n\t */\n\tenableRedeemFallback?: boolean;\n\n\t/**\n\t * Policy controlling if we will cache initial summary when we create a document\n\t */\n\tcacheCreateNewSummary?: boolean;\n\n\t/**\n\t * @deprecated This will be replaced with feature gate snapshotFormatFetchType.\n\t * Policy controlling if we want to fetch binary format snapshot.\n\t */\n\tfetchBinarySnapshotFormat?: boolean;\n\n\t/**\n\t * If set to true, socket cache are per OdspDocumentService instead of shared across all instances\n\t */\n\tisolateSocketCache?: boolean;\n\n\t/**\n\t * @deprecated Switch to using the new feature gated by enableSingleRequestForShareLinkWithCreate\n\t * with 'createLinkScope' and 'createLinkRole' is requested to the odsp apis instead of 'createLinkType'.\n\t * It enables the creation of sharing link along with the creation of file by setting this value to true.\n\t * If the host provides a 'createLinkType' parameter in the request URL to the container.attach()\n\t * method, we will send the request to ODSP with the same (if the flag is enabled) so\n\t * that a share link can be created with the creation of file to save number for round trips made to ODSP.\n\t * (This flag works independently of enableSingleRequestForShareLinkWithCreate which is used for sharing link\n\t * requests where 'createLinkScope' is requested.)\n\t */\n\tenableShareLinkWithCreate?: boolean;\n\n\t/**\n\t * Enable creation of sharing link along with the creation of file by setting this value to true.\n\t * If the host provides a 'createLinkScope' parameter in the request URL to the container.attach()\n\t * method, we will send the request to ODSP with the same (if the flag is enabled) so\n\t * that a share link can be created with the creation of file to save number for round trips made to ODSP.\n\t * (This flag works independently of enableShareLinkWithCreate which was used for old sharing link requests\n\t * where 'createLinkType' was requested.)\n\t */\n\tenableSingleRequestForShareLinkWithCreate?: boolean;\n\n\t/**\n\t * True if host does not want the storage service to use the prefetch cache to get the snapshot. Undefined will be treated\n\t * as false. This is if the host wants to do some A/B testing.\n\t */\n\tavoidPrefetchSnapshotCache?: boolean;\n}\n"]}
package/dist/factory.d.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Licensed under the MIT License.
4
4
  */
5
5
  /**
6
- * @internal
6
+ * @alpha
7
7
  */
8
8
  export interface ISnapshotOptions {
9
9
  blobs?: number;
@@ -13,7 +13,7 @@ export interface ISnapshotOptions {
13
13
  timeout?: number;
14
14
  }
15
15
  /**
16
- * @internal
16
+ * @alpha
17
17
  */
18
18
  export interface IOpsCachingPolicy {
19
19
  /**
@@ -41,7 +41,7 @@ export interface IOpsCachingPolicy {
41
41
  totalOpsToCache?: number;
42
42
  }
43
43
  /**
44
- * @internal
44
+ * @alpha
45
45
  */
46
46
  export interface ICollabSessionOptions {
47
47
  /**
@@ -62,7 +62,7 @@ export interface ICollabSessionOptions {
62
62
  forceAccessTokenViaAuthorizationHeader?: boolean;
63
63
  }
64
64
  /**
65
- * @internal
65
+ * @alpha
66
66
  */
67
67
  export interface HostStoragePolicy {
68
68
  snapshotOptions?: ISnapshotOptions;