@alwaysmeticulous/api 2.295.0 → 2.297.0
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.ts +1 -0
- package/dist/sdk-bundle-api/sdk-to-bundle/deployment-download-response.d.ts +19 -0
- package/dist/sdk-bundle-api/sdk-to-bundle/deployment-download-response.js +6 -0
- package/dist/sdk-bundle-api/sdk-to-bundle/deployment-download-response.js.map +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -22,3 +22,4 @@ export { S3Location } from "./s3.types";
|
|
|
22
22
|
export { CompanionAssetsInfo } from "./sdk-bundle-api/sdk-to-bundle/companion-assets";
|
|
23
23
|
export { DeploymentArchiveType } from "./sdk-bundle-api/sdk-to-bundle/deployment-archive-type";
|
|
24
24
|
export { Snapshot, CustomCheckInput, CustomCheckVerdict, CustomCheckOutput, CustomCheckReport, MarkdownReport, CustomCheck, CustomCheckPluginManifest, PluginManifest, NetworkRequestSnapshotData, NETWORK_REQUESTS_SNAPSHOT_TYPE, CUSTOM_CHECK_SUMMARY_MAX_LENGTH, CUSTOM_CHECK_RESULTS_STATUSES, CustomCheckResultsStatus, ReportedCustomCheckResult, ReportCustomCheckResultsRequest, } from "./custom-checks.types";
|
|
25
|
+
export { SingleArchiveDownloadResponse, ChunkedDownloadResponse, DownloadDeploymentResponse, } from "./sdk-bundle-api/sdk-to-bundle/deployment-download-response";
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { AssetUploadMetadata } from "./asset-upload-metadata";
|
|
2
|
+
import { DeploymentArchiveType } from "./deployment-archive-type";
|
|
3
|
+
export interface SingleArchiveDownloadResponse {
|
|
4
|
+
kind: "singleArchive";
|
|
5
|
+
assetsUrl: string;
|
|
6
|
+
metadataUrl: string;
|
|
7
|
+
archiveType: DeploymentArchiveType;
|
|
8
|
+
}
|
|
9
|
+
export interface ChunkedDownloadResponse {
|
|
10
|
+
kind: "chunked";
|
|
11
|
+
/**
|
|
12
|
+
* Presigned tarball download URLs, one per chunk, in manifest order.
|
|
13
|
+
* Order is significant: later chunks override earlier ones on path
|
|
14
|
+
* collision (last-wins), so consumers must preserve it.
|
|
15
|
+
*/
|
|
16
|
+
assetChunkTarballUrls: string[];
|
|
17
|
+
metadata: AssetUploadMetadata;
|
|
18
|
+
}
|
|
19
|
+
export type DownloadDeploymentResponse = SingleArchiveDownloadResponse | ChunkedDownloadResponse;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="c7fe7ef5-1883-5e18-8660-ef84b9d36008")}catch(e){}}();
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
//# sourceMappingURL=deployment-download-response.js.map
|
|
6
|
+
//# debugId=c7fe7ef5-1883-5e18-8660-ef84b9d36008
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deployment-download-response.js","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/deployment-download-response.ts"],"sourceRoot":"","names":[],"mappings":"","debugId":"c7fe7ef5-1883-5e18-8660-ef84b9d36008"}
|