@fluidframework/odsp-driver-definitions 2.0.0-dev.7.4.0.217212 → 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.
- package/CHANGELOG.md +4 -0
- package/api-extractor.json +0 -3
- package/api-report/odsp-driver-definitions.api.md +24 -24
- package/dist/factory.cjs.map +1 -1
- package/dist/factory.d.ts +4 -4
- package/dist/odsp-driver-definitions-alpha.d.ts +440 -41
- package/dist/odsp-driver-definitions-beta.d.ts +4 -0
- package/dist/odsp-driver-definitions-public.d.ts +4 -0
- package/dist/odsp-driver-definitions-untrimmed.d.ts +24 -24
- package/dist/odspCache.cjs.map +1 -1
- package/dist/odspCache.d.ts +5 -5
- package/dist/resolvedUrl.cjs +3 -3
- package/dist/resolvedUrl.cjs.map +1 -1
- package/dist/resolvedUrl.d.ts +8 -8
- package/dist/sessionProvider.cjs.map +1 -1
- package/dist/sessionProvider.d.ts +3 -3
- package/dist/tokenFetch.cjs.map +1 -1
- package/dist/tokenFetch.d.ts +4 -4
- package/lib/errors.d.ts +0 -4
- package/lib/errors.d.ts.map +1 -1
- package/lib/factory.d.ts +4 -4
- package/lib/factory.mjs.map +1 -1
- package/lib/index.d.ts +6 -6
- package/lib/index.d.ts.map +1 -1
- package/lib/odsp-driver-definitions-alpha.d.ts +440 -41
- package/lib/odsp-driver-definitions-beta.d.ts +4 -0
- package/lib/odsp-driver-definitions-public.d.ts +4 -0
- package/lib/odsp-driver-definitions-untrimmed.d.ts +24 -24
- package/lib/odspCache.d.ts +5 -5
- package/lib/odspCache.d.ts.map +1 -1
- package/lib/odspCache.mjs.map +1 -1
- package/lib/resolvedUrl.d.ts +8 -8
- package/lib/resolvedUrl.d.ts.map +1 -1
- package/lib/resolvedUrl.mjs +3 -3
- package/lib/resolvedUrl.mjs.map +1 -1
- package/lib/sessionProvider.d.ts +3 -3
- package/lib/sessionProvider.d.ts.map +1 -1
- package/lib/sessionProvider.mjs.map +1 -1
- package/lib/tokenFetch.d.ts +4 -4
- package/lib/tokenFetch.mjs.map +1 -1
- package/package.json +4 -2
- package/src/factory.ts +4 -4
- package/src/odspCache.ts +5 -5
- package/src/resolvedUrl.ts +8 -8
- package/src/sessionProvider.ts +3 -3
- package/src/tokenFetch.ts +4 -4
|
@@ -3,7 +3,7 @@ import { IDriverErrorBase } from '@fluidframework/driver-definitions';
|
|
|
3
3
|
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
|
-
* @
|
|
6
|
+
* @alpha
|
|
7
7
|
*/
|
|
8
8
|
export declare type CacheContentType = "snapshot" | "ops";
|
|
9
9
|
|
|
@@ -16,7 +16,7 @@ export declare type CacheContentType = "snapshot" | "ops";
|
|
|
16
16
|
export declare function getKeyForCacheEntry(entry: ICacheEntry): string;
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
* @
|
|
19
|
+
* @alpha
|
|
20
20
|
*/
|
|
21
21
|
export declare interface HostStoragePolicy {
|
|
22
22
|
snapshotOptions?: ISnapshotOptions;
|
|
@@ -88,7 +88,7 @@ export declare interface HostStoragePolicy {
|
|
|
88
88
|
|
|
89
89
|
/**
|
|
90
90
|
* Cache entry. Identifies file that this entry belongs to, and type of content stored in it.
|
|
91
|
-
* @
|
|
91
|
+
* @alpha
|
|
92
92
|
*/
|
|
93
93
|
export declare interface ICacheEntry extends IEntry {
|
|
94
94
|
/**
|
|
@@ -98,7 +98,7 @@ export declare interface ICacheEntry extends IEntry {
|
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
/**
|
|
101
|
-
* @
|
|
101
|
+
* @alpha
|
|
102
102
|
*/
|
|
103
103
|
export declare interface ICollabSessionOptions {
|
|
104
104
|
/**
|
|
@@ -129,7 +129,7 @@ export declare type IdentityType = "Consumer" | "Enterprise";
|
|
|
129
129
|
|
|
130
130
|
/**
|
|
131
131
|
* Cache entry. Identifies file that this entry belongs to, and type of content stored in it.
|
|
132
|
-
* @
|
|
132
|
+
* @alpha
|
|
133
133
|
*/
|
|
134
134
|
export declare interface IEntry {
|
|
135
135
|
/**
|
|
@@ -150,7 +150,7 @@ export declare interface IEntry {
|
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
/**
|
|
153
|
-
* @
|
|
153
|
+
* @alpha
|
|
154
154
|
*/
|
|
155
155
|
export declare interface IFileEntry {
|
|
156
156
|
/**
|
|
@@ -202,7 +202,7 @@ export declare interface IOdspErrorAugmentations {
|
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
/**
|
|
205
|
-
* @
|
|
205
|
+
* @alpha
|
|
206
206
|
*/
|
|
207
207
|
export declare interface IOdspResolvedUrl extends IResolvedUrl, IOdspUrlParts {
|
|
208
208
|
type: "fluid";
|
|
@@ -233,7 +233,7 @@ export declare interface IOdspResolvedUrl extends IResolvedUrl, IOdspUrlParts {
|
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
/**
|
|
236
|
-
* @
|
|
236
|
+
* @alpha
|
|
237
237
|
*/
|
|
238
238
|
export declare interface IOdspUrlParts {
|
|
239
239
|
siteUrl: string;
|
|
@@ -242,7 +242,7 @@ export declare interface IOdspUrlParts {
|
|
|
242
242
|
}
|
|
243
243
|
|
|
244
244
|
/**
|
|
245
|
-
* @
|
|
245
|
+
* @alpha
|
|
246
246
|
*/
|
|
247
247
|
export declare interface IOpsCachingPolicy {
|
|
248
248
|
/**
|
|
@@ -276,7 +276,7 @@ export declare interface IOpsCachingPolicy {
|
|
|
276
276
|
* cache implementation that does not survive across sessions. Snapshot entires stored in the
|
|
277
277
|
* IPersistedCache will be considered stale and removed after 2 days. Read the README for more
|
|
278
278
|
* information.
|
|
279
|
-
* @
|
|
279
|
+
* @alpha
|
|
280
280
|
*/
|
|
281
281
|
export declare interface IPersistedCache {
|
|
282
282
|
/**
|
|
@@ -302,7 +302,7 @@ export declare interface IPersistedCache {
|
|
|
302
302
|
/**
|
|
303
303
|
* An interface that allows a concrete instance of a driver factory to interrogate itself
|
|
304
304
|
* to find out if it is session aware.
|
|
305
|
-
* @
|
|
305
|
+
* @alpha
|
|
306
306
|
*/
|
|
307
307
|
export declare interface IProvideSessionAwareDriverFactory {
|
|
308
308
|
readonly IRelaySessionAwareDriverFactory: IRelaySessionAwareDriverFactory;
|
|
@@ -311,7 +311,7 @@ export declare interface IProvideSessionAwareDriverFactory {
|
|
|
311
311
|
/**
|
|
312
312
|
* An interface that allows a concrete instance of a driver factory to call the `getRelayServiceSessionInfo`
|
|
313
313
|
* function if it session aware.
|
|
314
|
-
* @
|
|
314
|
+
* @alpha
|
|
315
315
|
*/
|
|
316
316
|
export declare interface IRelaySessionAwareDriverFactory extends IProvideSessionAwareDriverFactory {
|
|
317
317
|
getRelayServiceSessionInfo(resolvedUrl: IResolvedUrl): Promise<ISocketStorageDiscovery | undefined>;
|
|
@@ -319,7 +319,7 @@ export declare interface IRelaySessionAwareDriverFactory extends IProvideSession
|
|
|
319
319
|
|
|
320
320
|
/**
|
|
321
321
|
* Sharing link data received from the /snapshot api response.
|
|
322
|
-
* @
|
|
322
|
+
* @alpha
|
|
323
323
|
*/
|
|
324
324
|
export declare interface ISharingLink extends ISharingLinkKind {
|
|
325
325
|
webUrl: string;
|
|
@@ -328,7 +328,7 @@ export declare interface ISharingLink extends ISharingLinkKind {
|
|
|
328
328
|
/**
|
|
329
329
|
* Defines the permissions scope for a share link requested to be created during the creation the file in ODSP.
|
|
330
330
|
* Providing these properties to the /snapshot api will also create and return the requested kind of sharing link.
|
|
331
|
-
* @
|
|
331
|
+
* @alpha
|
|
332
332
|
*/
|
|
333
333
|
export declare interface ISharingLinkKind {
|
|
334
334
|
scope: SharingLinkScope;
|
|
@@ -336,7 +336,7 @@ export declare interface ISharingLinkKind {
|
|
|
336
336
|
}
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
* @
|
|
339
|
+
* @alpha
|
|
340
340
|
*/
|
|
341
341
|
export declare interface ISnapshotOptions {
|
|
342
342
|
blobs?: number;
|
|
@@ -348,7 +348,7 @@ export declare interface ISnapshotOptions {
|
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
350
|
* Socket storage discovery api response
|
|
351
|
-
* @
|
|
351
|
+
* @alpha
|
|
352
352
|
*/
|
|
353
353
|
export declare interface ISocketStorageDiscovery {
|
|
354
354
|
id: string;
|
|
@@ -512,7 +512,7 @@ export declare type OdspErrorTypes = (typeof OdspErrorTypes)[keyof typeof OdspEr
|
|
|
512
512
|
|
|
513
513
|
/**
|
|
514
514
|
* Represents access token fetch options for ODSP resource
|
|
515
|
-
* @
|
|
515
|
+
* @alpha
|
|
516
516
|
*/
|
|
517
517
|
export declare interface OdspResourceTokenFetchOptions extends TokenFetchOptions {
|
|
518
518
|
/** Site url representing ODSP resource location */
|
|
@@ -527,7 +527,7 @@ export declare interface OdspResourceTokenFetchOptions extends TokenFetchOptions
|
|
|
527
527
|
* Sharing link data created for the ODSP item.
|
|
528
528
|
* Contains information about either sharing link created while creating a new file or
|
|
529
529
|
* a redeemable share link created when loading an existing file
|
|
530
|
-
* @
|
|
530
|
+
* @alpha
|
|
531
531
|
*/
|
|
532
532
|
export declare interface ShareLinkInfoType {
|
|
533
533
|
/**
|
|
@@ -565,7 +565,7 @@ export declare interface ShareLinkInfoType {
|
|
|
565
565
|
/**
|
|
566
566
|
* @deprecated Use ISharingLinkKind type instead.
|
|
567
567
|
* Type of shareLink requested/created when creating the file for the first time.
|
|
568
|
-
* @
|
|
568
|
+
* @alpha
|
|
569
569
|
*/
|
|
570
570
|
export declare enum ShareLinkTypes {
|
|
571
571
|
csl = "csl"
|
|
@@ -573,7 +573,7 @@ export declare enum ShareLinkTypes {
|
|
|
573
573
|
|
|
574
574
|
/**
|
|
575
575
|
* View/edit permission role for a sharing link.
|
|
576
|
-
* @
|
|
576
|
+
* @alpha
|
|
577
577
|
*/
|
|
578
578
|
export declare enum SharingLinkRole {
|
|
579
579
|
view = "view",
|
|
@@ -582,7 +582,7 @@ export declare enum SharingLinkRole {
|
|
|
582
582
|
|
|
583
583
|
/**
|
|
584
584
|
* Sharing scope of the share links created for a file.
|
|
585
|
-
* @
|
|
585
|
+
* @alpha
|
|
586
586
|
*/
|
|
587
587
|
export declare enum SharingLinkScope {
|
|
588
588
|
organization = "organization",
|
|
@@ -603,13 +603,13 @@ export declare const snapshotKey = "snapshot";
|
|
|
603
603
|
* @returns If successful, TokenResponse object representing token value along with flag indicating
|
|
604
604
|
* whether token came from cache. Legacy implementation may return a string for token value;
|
|
605
605
|
* in this case it should be assumes that fromCache signal is undefined. Null is returned in case of failure.
|
|
606
|
-
* @
|
|
606
|
+
* @alpha
|
|
607
607
|
*/
|
|
608
608
|
export declare type TokenFetcher<T> = (options: T) => Promise<string | TokenResponse | null>;
|
|
609
609
|
|
|
610
610
|
/**
|
|
611
611
|
* Represents access token fetch options
|
|
612
|
-
* @
|
|
612
|
+
* @alpha
|
|
613
613
|
*/
|
|
614
614
|
export declare interface TokenFetchOptions {
|
|
615
615
|
/**
|
|
@@ -640,7 +640,7 @@ export declare const tokenFromResponse: (tokenResponse: string | TokenResponse |
|
|
|
640
640
|
|
|
641
641
|
/**
|
|
642
642
|
* Represents token response
|
|
643
|
-
* @
|
|
643
|
+
* @alpha
|
|
644
644
|
*/
|
|
645
645
|
export declare interface TokenResponse {
|
|
646
646
|
/** Token value */
|
package/dist/odspCache.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"odspCache.cjs","sourceRoot":"","sources":["../src/odspCache.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAIH;;;GAGG;AACU,QAAA,WAAW,GAAG,UAAU,CAAC;AA8FtC;;;;;GAKG;AACH,SAAgB,mBAAmB,CAAC,KAAkB;IACrD,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,IAAI,IAAI,KAAK,CAAC,GAAG,EAAE,CAAC;AACzD,CAAC;AAFD,kDAEC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IResolvedUrl } from \"@fluidframework/driver-definitions\";\n\n/**\n * Describes what kind of content is stored in cache entry.\n * @internal\n */\nexport const snapshotKey = \"snapshot\";\n/**\n * @
|
|
1
|
+
{"version":3,"file":"odspCache.cjs","sourceRoot":"","sources":["../src/odspCache.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAIH;;;GAGG;AACU,QAAA,WAAW,GAAG,UAAU,CAAC;AA8FtC;;;;;GAKG;AACH,SAAgB,mBAAmB,CAAC,KAAkB;IACrD,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,IAAI,IAAI,KAAK,CAAC,GAAG,EAAE,CAAC;AACzD,CAAC;AAFD,kDAEC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IResolvedUrl } from \"@fluidframework/driver-definitions\";\n\n/**\n * Describes what kind of content is stored in cache entry.\n * @internal\n */\nexport const snapshotKey = \"snapshot\";\n/**\n * @alpha\n */\nexport type CacheContentType = \"snapshot\" | \"ops\";\n\n/*\n * File / container identifier.\n * There is overlapping information here - host can use all of it or parts\n * to implement storage / identify files.\n */\n/**\n * @alpha\n */\nexport interface IFileEntry {\n\t/**\n\t * Unique and stable ID of the document.\n\t * Driver guarantees that docId is stable ID uniquely identifying document.\n\t */\n\tdocId: string;\n\t/**\n\t * Resolved URI is provided for additional versatility - host can use it to\n\t * identify file in storage, and (as example) delete all cached entries for\n\t * a file if user requests so.\n\t * This is IOdspResolvedUrl in case of ODSP driver.\n\t */\n\tresolvedUrl: IResolvedUrl;\n}\n\n/**\n * Cache entry. Identifies file that this entry belongs to, and type of content stored in it.\n * @alpha\n */\nexport interface IEntry {\n\t/**\n\t * Identifies type of entry for a given file.\n\t * Each file can have multiple types of entries associated with it.\n\t * For example, it can be snapshot, blob, ops, etc.\n\t */\n\ttype: CacheContentType;\n\n\t/**\n\t * Identifies individual entry for a given file and type.\n\t * Each file can have multiple cache entries associated with it.\n\t * This property identifies a particular instance of entry.\n\t * For example, for blobs it will be unique ID of the blob in a file.\n\t * For batch of ops, it can be starting op sequence number.\n\t * For types that have only one entry (like snapshots), it will be empty string.\n\t */\n\tkey: string;\n}\n\n/**\n * Cache entry. Identifies file that this entry belongs to, and type of content stored in it.\n * @alpha\n */\nexport interface ICacheEntry extends IEntry {\n\t/**\n\t * Identifies file in storage this cached entry is for\n\t */\n\tfile: IFileEntry;\n}\n\n/**\n * Persistent cache. This interface can be implemented by the host to provide durable caching\n * across sessions. If not provided at driver factory construction, factory will use in-memory\n * cache implementation that does not survive across sessions. Snapshot entires stored in the\n * IPersistedCache will be considered stale and removed after 2 days. Read the README for more\n * information.\n * @alpha\n */\nexport interface IPersistedCache {\n\t/**\n\t * Get the cache value of the key\n\t * @param entry - cache entry, identifies file and particular key for this file.\n\t * @returns Cached value. undefined if nothing is cached.\n\t */\n\tget(entry: ICacheEntry): Promise<any>;\n\n\t/**\n\t * Put the value into cache.\n\t * Important - only serializable content is allowed since this cache may be persisted between sessions\n\t * @param entry - cache entry.\n\t * @param value - JSON-serializable content.\n\t */\n\tput(entry: ICacheEntry, value: any): Promise<void>;\n\n\t/**\n\t * Removes the entries from the cache for given parametres.\n\t * @param file - file entry to be deleted.\n\t */\n\tremoveEntries(file: IFileEntry): Promise<void>;\n}\n\n/**\n * Api to generate a cache key from cache entry.\n * @param entry - cache entry from which a cache key is generated\n * @returns The key for cache.\n * @internal\n */\nexport function getKeyForCacheEntry(entry: ICacheEntry): string {\n\treturn `${entry.file.docId}_${entry.type}_${entry.key}`;\n}\n"]}
|
package/dist/odspCache.d.ts
CHANGED
|
@@ -9,11 +9,11 @@ import { IResolvedUrl } from "@fluidframework/driver-definitions";
|
|
|
9
9
|
*/
|
|
10
10
|
export declare const snapshotKey = "snapshot";
|
|
11
11
|
/**
|
|
12
|
-
* @
|
|
12
|
+
* @alpha
|
|
13
13
|
*/
|
|
14
14
|
export type CacheContentType = "snapshot" | "ops";
|
|
15
15
|
/**
|
|
16
|
-
* @
|
|
16
|
+
* @alpha
|
|
17
17
|
*/
|
|
18
18
|
export interface IFileEntry {
|
|
19
19
|
/**
|
|
@@ -31,7 +31,7 @@ export interface IFileEntry {
|
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* Cache entry. Identifies file that this entry belongs to, and type of content stored in it.
|
|
34
|
-
* @
|
|
34
|
+
* @alpha
|
|
35
35
|
*/
|
|
36
36
|
export interface IEntry {
|
|
37
37
|
/**
|
|
@@ -52,7 +52,7 @@ export interface IEntry {
|
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
54
|
* Cache entry. Identifies file that this entry belongs to, and type of content stored in it.
|
|
55
|
-
* @
|
|
55
|
+
* @alpha
|
|
56
56
|
*/
|
|
57
57
|
export interface ICacheEntry extends IEntry {
|
|
58
58
|
/**
|
|
@@ -66,7 +66,7 @@ export interface ICacheEntry extends IEntry {
|
|
|
66
66
|
* cache implementation that does not survive across sessions. Snapshot entires stored in the
|
|
67
67
|
* IPersistedCache will be considered stale and removed after 2 days. Read the README for more
|
|
68
68
|
* information.
|
|
69
|
-
* @
|
|
69
|
+
* @alpha
|
|
70
70
|
*/
|
|
71
71
|
export interface IPersistedCache {
|
|
72
72
|
/**
|
package/dist/resolvedUrl.cjs
CHANGED
|
@@ -8,7 +8,7 @@ exports.SharingLinkRole = exports.SharingLinkScope = exports.ShareLinkTypes = vo
|
|
|
8
8
|
/**
|
|
9
9
|
* @deprecated Use ISharingLinkKind type instead.
|
|
10
10
|
* Type of shareLink requested/created when creating the file for the first time.
|
|
11
|
-
* @
|
|
11
|
+
* @alpha
|
|
12
12
|
*/
|
|
13
13
|
var ShareLinkTypes;
|
|
14
14
|
(function (ShareLinkTypes) {
|
|
@@ -16,7 +16,7 @@ var ShareLinkTypes;
|
|
|
16
16
|
})(ShareLinkTypes || (exports.ShareLinkTypes = ShareLinkTypes = {}));
|
|
17
17
|
/**
|
|
18
18
|
* Sharing scope of the share links created for a file.
|
|
19
|
-
* @
|
|
19
|
+
* @alpha
|
|
20
20
|
*/
|
|
21
21
|
var SharingLinkScope;
|
|
22
22
|
(function (SharingLinkScope) {
|
|
@@ -27,7 +27,7 @@ var SharingLinkScope;
|
|
|
27
27
|
})(SharingLinkScope || (exports.SharingLinkScope = SharingLinkScope = {}));
|
|
28
28
|
/**
|
|
29
29
|
* View/edit permission role for a sharing link.
|
|
30
|
-
* @
|
|
30
|
+
* @alpha
|
|
31
31
|
*/
|
|
32
32
|
var SharingLinkRole;
|
|
33
33
|
(function (SharingLinkRole) {
|
package/dist/resolvedUrl.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolvedUrl.cjs","sourceRoot":"","sources":["../src/resolvedUrl.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAaH;;;;GAIG;AACH,IAAY,cAEX;AAFD,WAAY,cAAc;IACzB,6BAAW,CAAA;AACZ,CAAC,EAFW,cAAc,8BAAd,cAAc,QAEzB;AAED;;;GAGG;AACH,IAAY,gBAKX;AALD,WAAY,gBAAgB;IAC3B,iDAA6B,CAAA;IAC7B,mCAAe,CAAA;IACf,2CAAuB,CAAA;IACvB,uCAAmB,CAAA;AACpB,CAAC,EALW,gBAAgB,gCAAhB,gBAAgB,QAK3B;AAED;;;GAGG;AACH,IAAY,eAGX;AAHD,WAAY,eAAe;IAC1B,gCAAa,CAAA;IACb,gCAAa,CAAA;AACd,CAAC,EAHW,eAAe,+BAAf,eAAe,QAG1B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IResolvedUrl } from \"@fluidframework/driver-definitions\";\n\n/**\n * @
|
|
1
|
+
{"version":3,"file":"resolvedUrl.cjs","sourceRoot":"","sources":["../src/resolvedUrl.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAaH;;;;GAIG;AACH,IAAY,cAEX;AAFD,WAAY,cAAc;IACzB,6BAAW,CAAA;AACZ,CAAC,EAFW,cAAc,8BAAd,cAAc,QAEzB;AAED;;;GAGG;AACH,IAAY,gBAKX;AALD,WAAY,gBAAgB;IAC3B,iDAA6B,CAAA;IAC7B,mCAAe,CAAA;IACf,2CAAuB,CAAA;IACvB,uCAAmB,CAAA;AACpB,CAAC,EALW,gBAAgB,gCAAhB,gBAAgB,QAK3B;AAED;;;GAGG;AACH,IAAY,eAGX;AAHD,WAAY,eAAe;IAC1B,gCAAa,CAAA;IACb,gCAAa,CAAA;AACd,CAAC,EAHW,eAAe,+BAAf,eAAe,QAG1B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IResolvedUrl } from \"@fluidframework/driver-definitions\";\n\n/**\n * @alpha\n */\nexport interface IOdspUrlParts {\n\tsiteUrl: string;\n\tdriveId: string;\n\titemId: string;\n}\n\n/**\n * @deprecated Use ISharingLinkKind type instead.\n * Type of shareLink requested/created when creating the file for the first time.\n * @alpha\n */\nexport enum ShareLinkTypes {\n\tcsl = \"csl\",\n}\n\n/**\n * Sharing scope of the share links created for a file.\n * @alpha\n */\nexport enum SharingLinkScope {\n\torganization = \"organization\",\n\tusers = \"users\",\n\tanonymous = \"anonymous\",\n\tdefault = \"default\",\n}\n\n/**\n * View/edit permission role for a sharing link.\n * @alpha\n */\nexport enum SharingLinkRole {\n\tview = \"view\",\n\tedit = \"edit\",\n}\n\n/**\n * Defines the permissions scope for a share link requested to be created during the creation the file in ODSP.\n * Providing these properties to the /snapshot api will also create and return the requested kind of sharing link.\n * @alpha\n */\nexport interface ISharingLinkKind {\n\tscope: SharingLinkScope;\n\t/*\n\t * If this parameter is not provided, the API will default to \"edit\" links (provided\n\t * a valid createLinkScope setting is given).\n\t */\n\trole?: SharingLinkRole;\n}\n\n/**\n * Sharing link data received from the /snapshot api response.\n * @alpha\n */\nexport interface ISharingLink extends ISharingLinkKind {\n\twebUrl: string;\n}\n\n/**\n * Sharing link data created for the ODSP item.\n * Contains information about either sharing link created while creating a new file or\n * a redeemable share link created when loading an existing file\n * @alpha\n */\nexport interface ShareLinkInfoType {\n\t/**\n\t * We create a new file in ODSP with the /snapshot api call. Applications then need to make a separate apis call to\n\t * create a sharing link for that file. To reduce the number of network calls, ODSP now provides a feature\n\t * where we can create a share link along with creating a file by passing a query parameter called\n\t * createShareLink (deprecated) or createLinkScope and createLinkRole. createLink object below saves the information\n\t * from the /snapshot api response.\n\t */\n\tcreateLink?: {\n\t\t/**\n\t\t * @deprecated\n\t\t * Type of shareLink requested/created when creating the file for the first time. The 'type' property here\n\t\t * represents the type of sharing link requested.\n\t\t * Will be deprecated soon. Type of sharing link will be present in the link:ISharingLink property below.\n\t\t */\n\t\ttype?: ShareLinkTypes | ISharingLinkKind;\n\n\t\t/**\n\t\t * Share link created when the file is created for the first time with /snapshot api call.\n\t\t */\n\t\tlink?: string | ISharingLink;\n\n\t\t/**\n\t\t * Error message if creation of sharing link fails with /snapshot api call\n\t\t */\n\t\terror?: any;\n\n\t\tshareId?: string;\n\t};\n\n\t/**\n\t * This is used to save the network calls while doing trees/latest call as if the client does not have\n\t * permission then this link can be redeemed for the permissions in the same network call.\n\t */\n\tsharingLinkToRedeem?: string;\n}\n/**\n * @alpha\n */\nexport interface IOdspResolvedUrl extends IResolvedUrl, IOdspUrlParts {\n\ttype: \"fluid\";\n\todspResolvedUrl: true;\n\n\t// URL to send to fluid, contains the documentId and the path\n\turl: string;\n\n\t// A hashed identifier that is unique to this document\n\thashedDocumentId: string;\n\n\tendpoints: {\n\t\tsnapshotStorageUrl: string;\n\t\tattachmentPOSTStorageUrl: string;\n\t\tattachmentGETStorageUrl: string;\n\t\tdeltaStorageUrl: string;\n\t};\n\n\t// Tokens are not obtained by the ODSP driver using the resolve flow, the app must provide them.\n\t// eslint-disable-next-line @typescript-eslint/ban-types\n\ttokens: {};\n\n\tfileName: string;\n\n\tsummarizer: boolean;\n\n\tcodeHint?: {\n\t\t// containerPackageName is used for adding the package name to the request headers.\n\t\t// This may be used for preloading the container package when loading Fluid content.\n\t\tcontainerPackageName?: string;\n\t};\n\n\tfileVersion: string | undefined;\n\n\tdataStorePath?: string;\n\n\t/**\n\t * Sharing link data created for the ODSP item.\n\t * Contains information about either sharing link created while creating a new file or\n\t * a redeemable share link created when loading an existing file\n\t */\n\tshareLinkInfo?: ShareLinkInfoType;\n\n\tisClpCompliantApp?: boolean;\n}\n"]}
|
package/dist/resolvedUrl.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { IResolvedUrl } from "@fluidframework/driver-definitions";
|
|
6
6
|
/**
|
|
7
|
-
* @
|
|
7
|
+
* @alpha
|
|
8
8
|
*/
|
|
9
9
|
export interface IOdspUrlParts {
|
|
10
10
|
siteUrl: string;
|
|
@@ -14,14 +14,14 @@ export interface IOdspUrlParts {
|
|
|
14
14
|
/**
|
|
15
15
|
* @deprecated Use ISharingLinkKind type instead.
|
|
16
16
|
* Type of shareLink requested/created when creating the file for the first time.
|
|
17
|
-
* @
|
|
17
|
+
* @alpha
|
|
18
18
|
*/
|
|
19
19
|
export declare enum ShareLinkTypes {
|
|
20
20
|
csl = "csl"
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
23
|
* Sharing scope of the share links created for a file.
|
|
24
|
-
* @
|
|
24
|
+
* @alpha
|
|
25
25
|
*/
|
|
26
26
|
export declare enum SharingLinkScope {
|
|
27
27
|
organization = "organization",
|
|
@@ -31,7 +31,7 @@ export declare enum SharingLinkScope {
|
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* View/edit permission role for a sharing link.
|
|
34
|
-
* @
|
|
34
|
+
* @alpha
|
|
35
35
|
*/
|
|
36
36
|
export declare enum SharingLinkRole {
|
|
37
37
|
view = "view",
|
|
@@ -40,7 +40,7 @@ export declare enum SharingLinkRole {
|
|
|
40
40
|
/**
|
|
41
41
|
* Defines the permissions scope for a share link requested to be created during the creation the file in ODSP.
|
|
42
42
|
* Providing these properties to the /snapshot api will also create and return the requested kind of sharing link.
|
|
43
|
-
* @
|
|
43
|
+
* @alpha
|
|
44
44
|
*/
|
|
45
45
|
export interface ISharingLinkKind {
|
|
46
46
|
scope: SharingLinkScope;
|
|
@@ -48,7 +48,7 @@ export interface ISharingLinkKind {
|
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
50
|
* Sharing link data received from the /snapshot api response.
|
|
51
|
-
* @
|
|
51
|
+
* @alpha
|
|
52
52
|
*/
|
|
53
53
|
export interface ISharingLink extends ISharingLinkKind {
|
|
54
54
|
webUrl: string;
|
|
@@ -57,7 +57,7 @@ export interface ISharingLink extends ISharingLinkKind {
|
|
|
57
57
|
* Sharing link data created for the ODSP item.
|
|
58
58
|
* Contains information about either sharing link created while creating a new file or
|
|
59
59
|
* a redeemable share link created when loading an existing file
|
|
60
|
-
* @
|
|
60
|
+
* @alpha
|
|
61
61
|
*/
|
|
62
62
|
export interface ShareLinkInfoType {
|
|
63
63
|
/**
|
|
@@ -92,7 +92,7 @@ export interface ShareLinkInfoType {
|
|
|
92
92
|
sharingLinkToRedeem?: string;
|
|
93
93
|
}
|
|
94
94
|
/**
|
|
95
|
-
* @
|
|
95
|
+
* @alpha
|
|
96
96
|
*/
|
|
97
97
|
export interface IOdspResolvedUrl extends IResolvedUrl, IOdspUrlParts {
|
|
98
98
|
type: "fluid";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sessionProvider.cjs","sourceRoot":"","sources":["../src/sessionProvider.ts"],"names":[],"mappings":";AAAA;;;GAGG","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IResolvedUrl } from \"@fluidframework/driver-definitions\";\n\n/**\n * Socket storage discovery api response\n * @
|
|
1
|
+
{"version":3,"file":"sessionProvider.cjs","sourceRoot":"","sources":["../src/sessionProvider.ts"],"names":[],"mappings":";AAAA;;;GAGG","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IResolvedUrl } from \"@fluidframework/driver-definitions\";\n\n/**\n * Socket storage discovery api response\n * @alpha\n */\nexport interface ISocketStorageDiscovery {\n\t// The id of the web socket\n\tid: string;\n\n\t// SPO gives us runtimeTenantId, we remap it to tenantId\n\t// See getSocketStorageDiscovery\n\truntimeTenantId?: string;\n\ttenantId: string;\n\n\tsnapshotStorageUrl: string;\n\tdeltaStorageUrl: string;\n\n\t/**\n\t * PUSH URL\n\t */\n\tdeltaStreamSocketUrl: string;\n\n\t/**\n\t * The access token for PushChannel. Optionally returned, depending on implementation.\n\t * OneDrive for Consumer implementation returns it and OneDrive for Business implementation\n\t * does not return it and instead expects token to be returned via `getWebsocketToken` callback\n\t * passed as a parameter to `OdspDocumentService.create()` factory.\n\t */\n\tsocketToken?: string;\n\n\t/**\n\t * This is the time within which client has to refresh the session on (ODSP) relay service.\n\t */\n\trefreshSessionDurationSeconds?: number;\n}\n\n/**\n * An interface that allows a concrete instance of a driver factory to interrogate itself\n * to find out if it is session aware.\n * @alpha\n */\nexport interface IProvideSessionAwareDriverFactory {\n\treadonly IRelaySessionAwareDriverFactory: IRelaySessionAwareDriverFactory;\n}\n\n/**\n * An interface that allows a concrete instance of a driver factory to call the `getRelayServiceSessionInfo`\n * function if it session aware.\n * @alpha\n */\nexport interface IRelaySessionAwareDriverFactory extends IProvideSessionAwareDriverFactory {\n\tgetRelayServiceSessionInfo(\n\t\tresolvedUrl: IResolvedUrl,\n\t): Promise<ISocketStorageDiscovery | undefined>;\n}\n"]}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { IResolvedUrl } from "@fluidframework/driver-definitions";
|
|
6
6
|
/**
|
|
7
7
|
* Socket storage discovery api response
|
|
8
|
-
* @
|
|
8
|
+
* @alpha
|
|
9
9
|
*/
|
|
10
10
|
export interface ISocketStorageDiscovery {
|
|
11
11
|
id: string;
|
|
@@ -32,7 +32,7 @@ export interface ISocketStorageDiscovery {
|
|
|
32
32
|
/**
|
|
33
33
|
* An interface that allows a concrete instance of a driver factory to interrogate itself
|
|
34
34
|
* to find out if it is session aware.
|
|
35
|
-
* @
|
|
35
|
+
* @alpha
|
|
36
36
|
*/
|
|
37
37
|
export interface IProvideSessionAwareDriverFactory {
|
|
38
38
|
readonly IRelaySessionAwareDriverFactory: IRelaySessionAwareDriverFactory;
|
|
@@ -40,7 +40,7 @@ export interface IProvideSessionAwareDriverFactory {
|
|
|
40
40
|
/**
|
|
41
41
|
* An interface that allows a concrete instance of a driver factory to call the `getRelayServiceSessionInfo`
|
|
42
42
|
* function if it session aware.
|
|
43
|
-
* @
|
|
43
|
+
* @alpha
|
|
44
44
|
*/
|
|
45
45
|
export interface IRelaySessionAwareDriverFactory extends IProvideSessionAwareDriverFactory {
|
|
46
46
|
getRelayServiceSessionInfo(resolvedUrl: IResolvedUrl): Promise<ISocketStorageDiscovery | undefined>;
|
package/dist/tokenFetch.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tokenFetch.cjs","sourceRoot":"","sources":["../src/tokenFetch.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAgEH;;;;;GAKG;AACI,MAAM,iBAAiB,GAAG,CAChC,aAAwD,EACxC,EAAE,CAClB,aAAa,KAAK,IAAI,IAAI,OAAO,aAAa,KAAK,QAAQ;IAC1D,CAAC,CAAC,aAAa;IACf,CAAC,CAAC,aAAa,KAAK,SAAS;QAC7B,CAAC,CAAC,IAAI;QACN,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC;AAPX,QAAA,iBAAiB,qBAON;AAExB;;;;;;GAMG;AACI,MAAM,gBAAgB,GAAG,CAC/B,aAA4C,EACtB,EAAE,CACxB,aAAa,KAAK,IAAI,IAAI,OAAO,aAAa,KAAK,QAAQ;IAC1D,CAAC,CAAC,SAAS;IACX,CAAC,CAAC,aAAa,CAAC,SAAS,CAAC;AALf,QAAA,gBAAgB,oBAKD","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * Represents token response\n * @
|
|
1
|
+
{"version":3,"file":"tokenFetch.cjs","sourceRoot":"","sources":["../src/tokenFetch.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAgEH;;;;;GAKG;AACI,MAAM,iBAAiB,GAAG,CAChC,aAAwD,EACxC,EAAE,CAClB,aAAa,KAAK,IAAI,IAAI,OAAO,aAAa,KAAK,QAAQ;IAC1D,CAAC,CAAC,aAAa;IACf,CAAC,CAAC,aAAa,KAAK,SAAS;QAC7B,CAAC,CAAC,IAAI;QACN,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC;AAPX,QAAA,iBAAiB,qBAON;AAExB;;;;;;GAMG;AACI,MAAM,gBAAgB,GAAG,CAC/B,aAA4C,EACtB,EAAE,CACxB,aAAa,KAAK,IAAI,IAAI,OAAO,aAAa,KAAK,QAAQ;IAC1D,CAAC,CAAC,SAAS;IACX,CAAC,CAAC,aAAa,CAAC,SAAS,CAAC;AALf,QAAA,gBAAgB,oBAKD","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * Represents token response\n * @alpha\n */\nexport interface TokenResponse {\n\t/** Token value */\n\ttoken: string;\n\n\t/** Flag indicating whether token was obtained from local cache */\n\tfromCache?: boolean;\n}\n\n/**\n * Represents access token fetch options\n * @alpha\n */\nexport interface TokenFetchOptions {\n\t/**\n\t * Value indicating whether fresh token has to be returned.\n\t * If false then it is okay to return cached unexpired token if available.\n\t */\n\trefresh: boolean;\n\n\t/**\n\t * Claims that have to be passed with token fetch request.\n\t * These can be used to specify additional information that must be passed to token authority.\n\t */\n\tclaims?: string;\n\n\t/**\n\t * Tenant id of authority that must be handling token fetch.\n\t * If it is not specified then it is up to token fetching logic to determine which tenant authority\n\t * to use to issue access token.\n\t */\n\ttenantId?: string;\n}\n\n/**\n * Represents access token fetch options for ODSP resource\n * @alpha\n */\nexport interface OdspResourceTokenFetchOptions extends TokenFetchOptions {\n\t/** Site url representing ODSP resource location */\n\tsiteUrl: string;\n\n\t/** ODSP drive id where resource resides. Optional, used only when fetching token to access ODSP file */\n\tdriveId?: string;\n\n\t/** ODSP item id representing resource. Optional, used only when fetching token to access ODSP file */\n\titemId?: string;\n}\n\n/**\n * Method signature for callback method used to fetch access token\n * @param options - token fetch options\n * @returns If successful, TokenResponse object representing token value along with flag indicating\n * whether token came from cache. Legacy implementation may return a string for token value;\n * in this case it should be assumes that fromCache signal is undefined. Null is returned in case of failure.\n * @alpha\n */\nexport type TokenFetcher<T> = (options: T) => Promise<string | TokenResponse | null>;\n\n/**\n * Helper method which transforms return value for TokenFetcher method to token string\n * @param tokenResponse - return value for TokenFetcher method\n * @returns Token value\n * @internal\n */\nexport const tokenFromResponse = (\n\ttokenResponse: string | TokenResponse | null | undefined,\n): string | null =>\n\ttokenResponse === null || typeof tokenResponse === \"string\"\n\t\t? tokenResponse\n\t\t: tokenResponse === undefined\n\t\t? null\n\t\t: tokenResponse.token;\n\n/**\n * Helper method which returns flag indicating whether token response comes from local cache\n * @param tokenResponse - return value for TokenFetcher method\n * @returns Value indicating whether response came from cache.\n * Undefined is returned when we could not determine the source of token.\n * @internal\n */\nexport const isTokenFromCache = (\n\ttokenResponse: string | TokenResponse | null,\n): boolean | undefined =>\n\ttokenResponse === null || typeof tokenResponse === \"string\"\n\t\t? undefined\n\t\t: tokenResponse.fromCache;\n\n/**\n * Identity types supported by ODSP driver.\n * `Consumer` represents user authenticated with Microsoft Account (MSA).\n * `Enterprise` represents user authenticated with M365 tenant account.\n * @internal\n */\nexport type IdentityType = \"Consumer\" | \"Enterprise\";\n\n/**\n * @internal\n */\nexport type InstrumentedStorageTokenFetcher = (\n\toptions: TokenFetchOptions,\n\tname: string,\n\talwaysRecordTokenFetchTelemetry?: boolean,\n) => Promise<string | null>;\n"]}
|
package/dist/tokenFetch.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* Represents token response
|
|
7
|
-
* @
|
|
7
|
+
* @alpha
|
|
8
8
|
*/
|
|
9
9
|
export interface TokenResponse {
|
|
10
10
|
/** Token value */
|
|
@@ -14,7 +14,7 @@ export interface TokenResponse {
|
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* Represents access token fetch options
|
|
17
|
-
* @
|
|
17
|
+
* @alpha
|
|
18
18
|
*/
|
|
19
19
|
export interface TokenFetchOptions {
|
|
20
20
|
/**
|
|
@@ -36,7 +36,7 @@ export interface TokenFetchOptions {
|
|
|
36
36
|
}
|
|
37
37
|
/**
|
|
38
38
|
* Represents access token fetch options for ODSP resource
|
|
39
|
-
* @
|
|
39
|
+
* @alpha
|
|
40
40
|
*/
|
|
41
41
|
export interface OdspResourceTokenFetchOptions extends TokenFetchOptions {
|
|
42
42
|
/** Site url representing ODSP resource location */
|
|
@@ -52,7 +52,7 @@ export interface OdspResourceTokenFetchOptions extends TokenFetchOptions {
|
|
|
52
52
|
* @returns If successful, TokenResponse object representing token value along with flag indicating
|
|
53
53
|
* whether token came from cache. Legacy implementation may return a string for token value;
|
|
54
54
|
* in this case it should be assumes that fromCache signal is undefined. Null is returned in case of failure.
|
|
55
|
-
* @
|
|
55
|
+
* @alpha
|
|
56
56
|
*/
|
|
57
57
|
export type TokenFetcher<T> = (options: T) => Promise<string | TokenResponse | null>;
|
|
58
58
|
/**
|
package/lib/errors.d.ts
CHANGED
package/lib/errors.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../src/errors.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../src/errors.ts"],"names":[],"mappings":"OAIO,EACN,WAAW,EACX,gBAAgB,EAEhB,MAAM,oCAAoC;AAE3C;;;;GAIG;AACH,eAAO,MAAM,cAAc;IAI1B;;OAEG;;IAGH;;;;OAIG;;IAGH;;;;OAIG;;IAGH;;OAEG;;IAGH;;;;;;OAMG;;IAGH;;;OAGG;;IAGH;;OAEG;;;;;;;;;;;;;;;;;;;;CAEM,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC;AAElF;;;;;;GAMG;AACH,oBAAY,aAAa;IACxB;;OAEG;IACH,iBAAiB,sBAAsB;IAEvC;;OAEG;IACH,oBAAoB,yBAAyB;IAE7C;;;;OAIG;IACH,cAAc,mBAAmB;IAEjC;;;;OAIG;IACH,YAAY,iBAAiB;IAE7B;;OAEG;IACH,eAAe,oBAAoB;IAEnC;;OAEG;IACH,eAAe,oBAAoB;IAEnC;;;;;;OAMG;IACH,aAAa,kBAAkB;IAE/B;;;OAGG;IACH,eAAe,oBAAoB;IAEnC;;OAEG;IACH,gBAAgB,qBAAqB;CACrC;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACvC;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;CACtB;AAED;;;;GAIG;AACH,MAAM,WAAW,UAAW,SAAQ,IAAI,CAAC,gBAAgB,EAAE,WAAW,CAAC,EAAE,uBAAuB;IAC/F,QAAQ,CAAC,SAAS,EAAE,aAAa,CAAC;CAClC;AAED;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,UAAU,GAAG,CAAC,WAAW,GAAG,uBAAuB,CAAC,CAAC"}
|
package/lib/factory.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
|
-
* @
|
|
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
|
-
* @
|
|
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
|
-
* @
|
|
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
|
-
* @
|
|
65
|
+
* @alpha
|
|
66
66
|
*/
|
|
67
67
|
export interface HostStoragePolicy {
|
|
68
68
|
snapshotOptions?: ISnapshotOptions;
|
package/lib/factory.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"factory.mjs","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 * @
|
|
1
|
+
{"version":3,"file":"factory.mjs","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/lib/index.d.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
|
-
export { IOdspError, IOdspErrorAugmentations, OdspError, OdspErrorType, OdspErrorTypes, } from "./errors";
|
|
6
|
-
export { HostStoragePolicy, ICollabSessionOptions, IOpsCachingPolicy, ISnapshotOptions, } from "./factory";
|
|
7
|
-
export { CacheContentType, getKeyForCacheEntry, ICacheEntry, IEntry, IFileEntry, IPersistedCache, snapshotKey, } from "./odspCache";
|
|
8
|
-
export { IOdspResolvedUrl, IOdspUrlParts, ISharingLink, ISharingLinkKind, ShareLinkInfoType, ShareLinkTypes, SharingLinkRole, SharingLinkScope, } from "./resolvedUrl";
|
|
9
|
-
export { IdentityType, InstrumentedStorageTokenFetcher, isTokenFromCache, OdspResourceTokenFetchOptions, TokenFetcher, TokenFetchOptions, tokenFromResponse, TokenResponse, } from "./tokenFetch";
|
|
10
|
-
export { IProvideSessionAwareDriverFactory, IRelaySessionAwareDriverFactory, ISocketStorageDiscovery, } from "./sessionProvider";
|
|
5
|
+
export { IOdspError, IOdspErrorAugmentations, OdspError, OdspErrorType, OdspErrorTypes, } from "./errors.mjs";
|
|
6
|
+
export { HostStoragePolicy, ICollabSessionOptions, IOpsCachingPolicy, ISnapshotOptions, } from "./factory.mjs";
|
|
7
|
+
export { CacheContentType, getKeyForCacheEntry, ICacheEntry, IEntry, IFileEntry, IPersistedCache, snapshotKey, } from "./odspCache.mjs";
|
|
8
|
+
export { IOdspResolvedUrl, IOdspUrlParts, ISharingLink, ISharingLinkKind, ShareLinkInfoType, ShareLinkTypes, SharingLinkRole, SharingLinkScope, } from "./resolvedUrl.mjs";
|
|
9
|
+
export { IdentityType, InstrumentedStorageTokenFetcher, isTokenFromCache, OdspResourceTokenFetchOptions, TokenFetcher, TokenFetchOptions, tokenFromResponse, TokenResponse, } from "./tokenFetch.mjs";
|
|
10
|
+
export { IProvideSessionAwareDriverFactory, IRelaySessionAwareDriverFactory, ISocketStorageDiscovery, } from "./sessionProvider.mjs";
|
|
11
11
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EACN,UAAU,EACV,uBAAuB,EACvB,SAAS,EACT,aAAa,EACb,cAAc,GACd;OACM,EACN,iBAAiB,EACjB,qBAAqB,EACrB,iBAAiB,EACjB,gBAAgB,GAChB;OACM,EACN,gBAAgB,EAChB,mBAAmB,EACnB,WAAW,EACX,MAAM,EACN,UAAU,EACV,eAAe,EACf,WAAW,GACX;OACM,EACN,gBAAgB,EAChB,aAAa,EACb,YAAY,EACZ,gBAAgB,EAChB,iBAAiB,EACjB,cAAc,EACd,eAAe,EACf,gBAAgB,GAChB;OACM,EACN,YAAY,EACZ,+BAA+B,EAC/B,gBAAgB,EAChB,6BAA6B,EAC7B,YAAY,EACZ,iBAAiB,EACjB,iBAAiB,EACjB,aAAa,GACb;OACM,EACN,iCAAiC,EACjC,+BAA+B,EAC/B,uBAAuB,GACvB"}
|