@concord-consortium/cloud-file-manager 2.1.0-pre.12 → 2.1.0-pre.13
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/dist/cjs/app-options.d.ts +1 -0
- package/dist/cjs/client.js +1 -1
- package/dist/cjs/providers/provider-interface.js +1 -1
- package/dist/esm/app-options.d.ts +1 -0
- package/dist/esm/client.js +1 -1
- package/dist/esm/providers/provider-interface.js +1 -1
- package/dist/index.html +1 -1
- package/dist/js/app.js +1 -1
- package/dist/js/app.js.map +1 -1
- package/package.json +1 -1
- package/readme.md +4 -0
|
@@ -113,6 +113,7 @@ export interface CFMAppOptions {
|
|
|
113
113
|
wrapFileContent?: boolean;
|
|
114
114
|
isClientContent?: (content: unknown) => boolean;
|
|
115
115
|
mimeType?: string;
|
|
116
|
+
localFileMimeType?: string;
|
|
116
117
|
readableMimeTypes?: string[];
|
|
117
118
|
extension?: string;
|
|
118
119
|
readableExtensions?: string[];
|
package/dist/cjs/client.js
CHANGED
|
@@ -236,7 +236,7 @@ class CloudFileManagerClient {
|
|
|
236
236
|
}
|
|
237
237
|
// initialize the cloudContentFactory with all data we want in the envelope
|
|
238
238
|
provider_interface_1.cloudContentFactory.setEnvelopeMetadata({
|
|
239
|
-
cfmVersion: '2.1.0-pre.
|
|
239
|
+
cfmVersion: '2.1.0-pre.13', // replaced by version number at build time
|
|
240
240
|
appName: this.appOptions.appName || "",
|
|
241
241
|
appVersion: this.appOptions.appVersion || "",
|
|
242
242
|
appBuildNum: this.appOptions.appBuildNum || ""
|
|
@@ -113,6 +113,7 @@ export interface CFMAppOptions {
|
|
|
113
113
|
wrapFileContent?: boolean;
|
|
114
114
|
isClientContent?: (content: unknown) => boolean;
|
|
115
115
|
mimeType?: string;
|
|
116
|
+
localFileMimeType?: string;
|
|
116
117
|
readableMimeTypes?: string[];
|
|
117
118
|
extension?: string;
|
|
118
119
|
readableExtensions?: string[];
|
package/dist/esm/client.js
CHANGED
|
@@ -206,7 +206,7 @@ class CloudFileManagerClient {
|
|
|
206
206
|
}
|
|
207
207
|
// initialize the cloudContentFactory with all data we want in the envelope
|
|
208
208
|
cloudContentFactory.setEnvelopeMetadata({
|
|
209
|
-
cfmVersion: '2.1.0-pre.
|
|
209
|
+
cfmVersion: '2.1.0-pre.13', // replaced by version number at build time
|
|
210
210
|
appName: this.appOptions.appName || "",
|
|
211
211
|
appVersion: this.appOptions.appVersion || "",
|
|
212
212
|
appBuildNum: this.appOptions.appBuildNum || ""
|
package/dist/index.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<a href="https://github.com/concord-consortium/cloud-file-manager">Cloud File Manager Library</a>
|
|
16
16
|
</h1>
|
|
17
17
|
<p>
|
|
18
|
-
Version 2.1.0-pre.
|
|
18
|
+
Version 2.1.0-pre.13 using commit <a href="https://github.com/concord-consortium/cloud-file-manager/commit/3bb74939b7a728dceafe09c15ddbe71f0ad7d57e">3bb74939b7a728dceafe09c15ddbe71f0ad7d57e</a> deployed on Wed Oct 15 2025 09:46:25 GMT-0400 (Eastern Daylight Time).
|
|
19
19
|
</p>
|
|
20
20
|
</body>
|
|
21
21
|
</html>
|