@ampsec/platform-client 46.4.0 → 46.5.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.
@@ -9,7 +9,9 @@ export type JobExecutionPagination = {
9
9
  };
10
10
  export type PlatformJobExecutionStateUpsertDto = BaseUpsertDto & {
11
11
  /** `JobSpecification` ID */
12
- specId: string;
12
+ specId?: string;
13
+ /** `Connector` ID */
14
+ cid?: string;
13
15
  /** Latest execution status */
14
16
  status: JobExecutionStatus;
15
17
  /** Date the job execution started */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampsec/platform-client",
3
- "version": "46.4.0",
3
+ "version": "46.5.0",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "runkitExampleFilename": "example/main.js",
@@ -11,7 +11,9 @@ export type JobExecutionPagination = {
11
11
 
12
12
  export type PlatformJobExecutionStateUpsertDto = BaseUpsertDto & {
13
13
  /** `JobSpecification` ID */
14
- specId: string;
14
+ specId?: string;
15
+ /** `Connector` ID */
16
+ cid?: string;
15
17
  /** Latest execution status */
16
18
  status: JobExecutionStatus;
17
19
  /** Date the job execution started */