@seamapi/types 1.518.0 → 1.519.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.
@@ -55496,7 +55496,7 @@ export type Routes = {
55496
55496
  automation_run_id: string;
55497
55497
  workspace_id: string;
55498
55498
  automation_id: string;
55499
- partner_resource_id: string;
55499
+ partner_resource_id: string | null;
55500
55500
  automation_result?: {
55501
55501
  success: boolean;
55502
55502
  rule: 'reservation_created' | 'reservation_time_updated' | 'reservation_deleted';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.518.0",
3
+ "version": "1.519.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -47724,6 +47724,7 @@ export default {
47724
47724
  created_at: { type: 'string' },
47725
47725
  partner_resource_id: {
47726
47726
  format: 'uuid',
47727
+ nullable: true,
47727
47728
  type: 'string',
47728
47729
  },
47729
47730
  workspace_id: { format: 'uuid', type: 'string' },
@@ -47879,6 +47880,7 @@ export default {
47879
47880
  created_at: { type: 'string' },
47880
47881
  partner_resource_id: {
47881
47882
  format: 'uuid',
47883
+ nullable: true,
47882
47884
  type: 'string',
47883
47885
  },
47884
47886
  workspace_id: { format: 'uuid', type: 'string' },
@@ -65868,7 +65868,7 @@ export type Routes = {
65868
65868
  automation_run_id: string
65869
65869
  workspace_id: string
65870
65870
  automation_id: string
65871
- partner_resource_id: string
65871
+ partner_resource_id: string | null
65872
65872
  automation_result?:
65873
65873
  | {
65874
65874
  success: boolean