@seamapi/types 1.523.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.
- package/dist/connect.cjs +13 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -1
- package/dist/index.cjs +13 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +2 -0
- package/lib/seam/connect/openapi.js +10 -2
- 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/models/devices/device-provider.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +10 -2
- package/src/lib/seam/connect/route-types.ts +1 -1
|
@@ -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
|
@@ -47787,7 +47787,11 @@ export default {
|
|
|
47787
47787
|
automation_runs: {
|
|
47788
47788
|
items: {
|
|
47789
47789
|
properties: {
|
|
47790
|
-
automation_id: {
|
|
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: {
|
|
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
|
| {
|