@gallop.software/studio 2.3.62 → 2.3.63
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/server/index.js +4 -0
- package/dist/server/index.js.map +1 -1
- package/package.json +1 -1
package/dist/server/index.js
CHANGED
|
@@ -544,6 +544,7 @@ async function handleList(request) {
|
|
|
544
544
|
isProtected: true,
|
|
545
545
|
cdnPushed: isPushedToCloud,
|
|
546
546
|
cdnBaseUrl,
|
|
547
|
+
isCloud: isPushedToCloud && !isRemote,
|
|
547
548
|
isRemote,
|
|
548
549
|
dimensions
|
|
549
550
|
});
|
|
@@ -598,6 +599,7 @@ async function handleList(request) {
|
|
|
598
599
|
isProtected: true,
|
|
599
600
|
cdnPushed: isPushedToCloud,
|
|
600
601
|
cdnBaseUrl,
|
|
602
|
+
isCloud: isPushedToCloud && !isRemote,
|
|
601
603
|
isRemote,
|
|
602
604
|
dimensions
|
|
603
605
|
});
|
|
@@ -826,6 +828,7 @@ async function handleList(request) {
|
|
|
826
828
|
hasFull: !!entry.f,
|
|
827
829
|
cdnPushed: isPushedToCloud,
|
|
828
830
|
cdnBaseUrl: fileCdnUrl,
|
|
831
|
+
isCloud: isPushedToCloud && !isRemote,
|
|
829
832
|
isRemote,
|
|
830
833
|
isProtected: isInsideImagesFolder,
|
|
831
834
|
dimensions: entry.o ? { width: entry.o.w, height: entry.o.h } : void 0,
|
|
@@ -904,6 +907,7 @@ async function handleSearch(request) {
|
|
|
904
907
|
hasFull: !!entry.f,
|
|
905
908
|
cdnPushed: isPushedToCloud,
|
|
906
909
|
cdnBaseUrl: fileCdnUrl,
|
|
910
|
+
isCloud: isPushedToCloud && !isRemote,
|
|
907
911
|
isRemote,
|
|
908
912
|
dimensions: entry.o ? { width: entry.o.w, height: entry.o.h } : void 0,
|
|
909
913
|
hasUpdate: entry.u === 1
|