@ampsec/platform-client 62.10.0 → 62.11.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.
@@ -24,5 +24,7 @@ export type PlatformJobExecutionStateUpsertDto = BaseUpsertDto & {
24
24
  error: string | null;
25
25
  /** Scratch space for job executors to maintain state incase of failure. */
26
26
  scratch: unknown;
27
+ /** Optional string used by ETL and Insights to coordinate data processing */
28
+ sessionId?: string;
27
29
  } & UpsertTenantBased;
28
30
  export type PlatformJobExecutionStateDto = BaseDto & PlatformJobExecutionStateUpsertDto & TenantBased;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampsec/platform-client",
3
- "version": "62.10.0",
3
+ "version": "62.11.0",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "runkitExampleFilename": "example/main.js",
@@ -26,6 +26,8 @@ export type PlatformJobExecutionStateUpsertDto = BaseUpsertDto & {
26
26
  error: string | null;
27
27
  /** Scratch space for job executors to maintain state incase of failure. */
28
28
  scratch: unknown;
29
+ /** Optional string used by ETL and Insights to coordinate data processing */
30
+ sessionId?: string;
29
31
  } & UpsertTenantBased;
30
32
 
31
33
  export type PlatformJobExecutionStateDto = BaseDto & PlatformJobExecutionStateUpsertDto & TenantBased;