asteroid-odyssey 1.6.774 → 1.6.775
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/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1455,6 +1455,10 @@ type AgentsFilesSharedFile = {
|
|
|
1455
1455
|
isFrozen: boolean;
|
|
1456
1456
|
lastModifiedByExecutionId?: CommonUuid;
|
|
1457
1457
|
downloadUrl: string;
|
|
1458
|
+
/**
|
|
1459
|
+
* Hex-encoded SHA-256 of the file contents. Used for change and rename detection when diffing versions. Absent when the checksum is unknown.
|
|
1460
|
+
*/
|
|
1461
|
+
checksum?: string;
|
|
1458
1462
|
};
|
|
1459
1463
|
/**
|
|
1460
1464
|
* Response after uploading shared files
|
package/dist/index.d.ts
CHANGED
|
@@ -1455,6 +1455,10 @@ type AgentsFilesSharedFile = {
|
|
|
1455
1455
|
isFrozen: boolean;
|
|
1456
1456
|
lastModifiedByExecutionId?: CommonUuid;
|
|
1457
1457
|
downloadUrl: string;
|
|
1458
|
+
/**
|
|
1459
|
+
* Hex-encoded SHA-256 of the file contents. Used for change and rename detection when diffing versions. Absent when the checksum is unknown.
|
|
1460
|
+
*/
|
|
1461
|
+
checksum?: string;
|
|
1458
1462
|
};
|
|
1459
1463
|
/**
|
|
1460
1464
|
* Response after uploading shared files
|