@seamapi/types 1.524.0 → 1.525.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.
@@ -55577,7 +55577,7 @@ export type Routes = {
55577
55577
  automation_runs: {
55578
55578
  automation_run_id: string;
55579
55579
  workspace_id: string;
55580
- automation_id: string;
55580
+ automation_id: string | null;
55581
55581
  partner_resource_id: string | null;
55582
55582
  automation_result?: {
55583
55583
  success: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.524.0",
3
+ "version": "1.525.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -47787,7 +47787,11 @@ export default {
47787
47787
  automation_runs: {
47788
47788
  items: {
47789
47789
  properties: {
47790
- automation_id: { format: 'uuid', type: 'string' },
47790
+ automation_id: {
47791
+ format: 'uuid',
47792
+ nullable: true,
47793
+ type: 'string',
47794
+ },
47791
47795
  automation_result: {
47792
47796
  properties: {
47793
47797
  actions: {
@@ -47943,7 +47947,11 @@ export default {
47943
47947
  automation_runs: {
47944
47948
  items: {
47945
47949
  properties: {
47946
- automation_id: { format: 'uuid', type: 'string' },
47950
+ automation_id: {
47951
+ format: 'uuid',
47952
+ nullable: true,
47953
+ type: 'string',
47954
+ },
47947
47955
  automation_result: {
47948
47956
  properties: {
47949
47957
  actions: {
@@ -65950,7 +65950,7 @@ export type Routes = {
65950
65950
  automation_runs: {
65951
65951
  automation_run_id: string
65952
65952
  workspace_id: string
65953
- automation_id: string
65953
+ automation_id: string | null
65954
65954
  partner_resource_id: string | null
65955
65955
  automation_result?:
65956
65956
  | {