@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.
- package/dist/connect.cjs +2 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -1
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +2 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +1 -1
|
@@ -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
|
@@ -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
|