@alwaysmeticulous/api 2.251.0 → 2.254.1

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 CHANGED
@@ -18,3 +18,4 @@ export { ConsoleErrorDivergenceIndicator, Divergence, DivergenceConsoleError, Di
18
18
  export { AssetUploadMetadata } from "./sdk-bundle-api/sdk-to-bundle/asset-upload-metadata";
19
19
  export { S3Location } from "./s3.types";
20
20
  export { CompanionAssetsInfo } from "./sdk-bundle-api/sdk-to-bundle/companion-assets";
21
+ export { DeploymentArchiveType } from "./sdk-bundle-api/sdk-to-bundle/deployment-archive-type";
@@ -1,3 +1,4 @@
1
+ import { DeploymentArchiveType } from "./deployment-archive-type";
1
2
  /**
2
3
  * Information about companion assets to serve _together_ with a deployment. Note this
3
4
  * is distinct from a static assets deployment, which is _just_ static assets.
@@ -11,4 +12,8 @@ export interface CompanionAssetsInfo {
11
12
  * A regex to match to determine if a path should be served from the companion assets.
12
13
  */
13
14
  regex: string;
15
+ /**
16
+ * File format of the companion asset bundle
17
+ */
18
+ archiveType: DeploymentArchiveType;
14
19
  }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Type of asset bundle used for static and companion asset deployments.
3
+ *
4
+ * zip: regular zip file.
5
+ *
6
+ * tar.d: tarball, further compressed using the (raw) deflate algorithm.
7
+ * this nonstandard format was chosen because it achieved the best
8
+ * benchmark results for round-robbin compression -> upload ->
9
+ * download -> decompression.
10
+ */
11
+ export type DeploymentArchiveType = "zip" | "tar.d";
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=deployment-archive-type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deployment-archive-type.js","sourceRoot":"","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/deployment-archive-type.ts"],"names":[],"mappings":""}
@@ -4,6 +4,10 @@ export interface EventSourceConnectionData {
4
4
  url: string;
5
5
  withCredentials: boolean;
6
6
  events: EventSourceConnectionEvent[];
7
+ /**
8
+ * Only present on recordings since ~Feb 2026.
9
+ */
10
+ frameId?: string;
7
11
  }
8
12
  export type EventSourceConnectionEvent = EventSourceConnectionCreatedEvent | EventSourceConnectionOpenedEvent | EventSourceConnectionMessageEvent | EventSourceConnectionErrorEvent | EventSourceConnectionClosedEvent;
9
13
  export interface EventSourceConnectionGenericEvent {
@@ -2,6 +2,10 @@ export interface WebSocketConnectionData {
2
2
  id: SequenceNumber;
3
3
  url: string;
4
4
  events: WebSocketConnectionEvent[];
5
+ /**
6
+ * Only present on recordings since ~Feb 2026.
7
+ */
8
+ frameId?: string;
5
9
  }
6
10
  export type SequenceNumber = number;
7
11
  export type WebSocketConnectionEvent = WebSocketConnectionCreatedEvent | WebSocketConnectionOpenedEvent | WebSocketConnectionMessageEvent | WebSocketConnectionErrorEvent | WebSocketConnectionClosedEvent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/api",
3
- "version": "2.251.0",
3
+ "version": "2.254.1",
4
4
  "description": "Meticulous API types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -35,5 +35,5 @@
35
35
  "bugs": {
36
36
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
37
37
  },
38
- "gitHead": "08849e85eb0955f0bb05851dac5faec322704eda"
38
+ "gitHead": "1cd60270be8c9e8b2c751e94921baca8e58e0b5d"
39
39
  }