@seamapi/types 1.745.0 → 1.747.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 +36 -34
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +315 -50
- package/dist/index.cjs +36 -34
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +20 -0
- package/lib/seam/connect/models/events/devices.d.ts +24 -0
- package/lib/seam/connect/models/events/devices.js +20 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +12 -0
- package/lib/seam/connect/openapi.d.ts +251 -48
- package/lib/seam/connect/openapi.js +26 -32
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +32 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/devices.ts +24 -0
- package/src/lib/seam/connect/openapi.ts +30 -32
- package/src/lib/seam/connect/route-types.ts +32 -2
|
@@ -20824,6 +20824,11 @@ export default {
|
|
|
20824
20824
|
type: 'string',
|
|
20825
20825
|
},
|
|
20826
20826
|
event_type: { enum: ['camera.activated'], type: 'string' },
|
|
20827
|
+
image_url: {
|
|
20828
|
+
description: 'URL to a thumbnail image captured at the time of activation.',
|
|
20829
|
+
format: 'uri',
|
|
20830
|
+
type: 'string',
|
|
20831
|
+
},
|
|
20827
20832
|
motion_sub_type: {
|
|
20828
20833
|
description: 'Sub-type of motion detected, if available.',
|
|
20829
20834
|
enum: ['human', 'vehicle', 'package', 'other'],
|
|
@@ -20834,6 +20839,11 @@ export default {
|
|
|
20834
20839
|
format: 'date-time',
|
|
20835
20840
|
type: 'string',
|
|
20836
20841
|
},
|
|
20842
|
+
video_url: {
|
|
20843
|
+
description: 'URL to a short video clip captured at the time of activation.',
|
|
20844
|
+
format: 'uri',
|
|
20845
|
+
type: 'string',
|
|
20846
|
+
},
|
|
20837
20847
|
workspace_id: {
|
|
20838
20848
|
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event.',
|
|
20839
20849
|
format: 'uuid',
|
|
@@ -20895,11 +20905,21 @@ export default {
|
|
|
20895
20905
|
type: 'string',
|
|
20896
20906
|
},
|
|
20897
20907
|
event_type: { enum: ['device.doorbell_rang'], type: 'string' },
|
|
20908
|
+
image_url: {
|
|
20909
|
+
description: 'URL to a thumbnail image captured at the time the doorbell was pressed.',
|
|
20910
|
+
format: 'uri',
|
|
20911
|
+
type: 'string',
|
|
20912
|
+
},
|
|
20898
20913
|
occurred_at: {
|
|
20899
20914
|
description: 'Date and time at which the event occurred.',
|
|
20900
20915
|
format: 'date-time',
|
|
20901
20916
|
type: 'string',
|
|
20902
20917
|
},
|
|
20918
|
+
video_url: {
|
|
20919
|
+
description: 'URL to a short video clip captured at the time the doorbell was pressed.',
|
|
20920
|
+
format: 'uri',
|
|
20921
|
+
type: 'string',
|
|
20922
|
+
},
|
|
20903
20923
|
workspace_id: {
|
|
20904
20924
|
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event.',
|
|
20905
20925
|
format: 'uuid',
|
|
@@ -56516,7 +56536,7 @@ export default {
|
|
|
56516
56536
|
},
|
|
56517
56537
|
'/seam/customer/v1/automations/update': {
|
|
56518
56538
|
patch: {
|
|
56519
|
-
description: 'Updates the automation configuration for a customer portal workspace
|
|
56539
|
+
description: 'Updates the automation configuration for a customer portal workspace.',
|
|
56520
56540
|
operationId: 'seamCustomerV1AutomationsUpdatePatch',
|
|
56521
56541
|
requestBody: {
|
|
56522
56542
|
content: {
|
|
@@ -56785,11 +56805,7 @@ export default {
|
|
|
56785
56805
|
400: { description: 'Bad Request' },
|
|
56786
56806
|
401: { description: 'Unauthorized' },
|
|
56787
56807
|
},
|
|
56788
|
-
security: [
|
|
56789
|
-
{ console_session_with_workspace: [] },
|
|
56790
|
-
{ api_key: [] },
|
|
56791
|
-
{ client_session_with_customer: [] },
|
|
56792
|
-
],
|
|
56808
|
+
security: [{ console_session_with_workspace: [] }, { api_key: [] }],
|
|
56793
56809
|
summary: '/seam/customer/v1/automations/update',
|
|
56794
56810
|
tags: [],
|
|
56795
56811
|
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'automations'],
|
|
@@ -56799,7 +56815,7 @@ export default {
|
|
|
56799
56815
|
'x-undocumented': 'Internal endpoint for customer portals.',
|
|
56800
56816
|
},
|
|
56801
56817
|
post: {
|
|
56802
|
-
description: 'Updates the automation configuration for a customer portal workspace
|
|
56818
|
+
description: 'Updates the automation configuration for a customer portal workspace.',
|
|
56803
56819
|
operationId: 'seamCustomerV1AutomationsUpdatePost',
|
|
56804
56820
|
requestBody: {
|
|
56805
56821
|
content: {
|
|
@@ -57068,11 +57084,7 @@ export default {
|
|
|
57068
57084
|
400: { description: 'Bad Request' },
|
|
57069
57085
|
401: { description: 'Unauthorized' },
|
|
57070
57086
|
},
|
|
57071
|
-
security: [
|
|
57072
|
-
{ console_session_with_workspace: [] },
|
|
57073
|
-
{ api_key: [] },
|
|
57074
|
-
{ client_session_with_customer: [] },
|
|
57075
|
-
],
|
|
57087
|
+
security: [{ console_session_with_workspace: [] }, { api_key: [] }],
|
|
57076
57088
|
summary: '/seam/customer/v1/automations/update',
|
|
57077
57089
|
tags: [],
|
|
57078
57090
|
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'automations'],
|
|
@@ -58912,12 +58924,7 @@ export default {
|
|
|
58912
58924
|
},
|
|
58913
58925
|
type: 'object',
|
|
58914
58926
|
},
|
|
58915
|
-
customer_key: {
|
|
58916
|
-
description: 'Key of the customer.',
|
|
58917
|
-
type: 'string',
|
|
58918
|
-
},
|
|
58919
58927
|
},
|
|
58920
|
-
required: ['customer_key'],
|
|
58921
58928
|
type: 'object',
|
|
58922
58929
|
},
|
|
58923
58930
|
},
|
|
@@ -58939,11 +58946,7 @@ export default {
|
|
|
58939
58946
|
400: { description: 'Bad Request' },
|
|
58940
58947
|
401: { description: 'Unauthorized' },
|
|
58941
58948
|
},
|
|
58942
|
-
security: [
|
|
58943
|
-
{ pat_with_workspace: [] },
|
|
58944
|
-
{ console_session_with_workspace: [] },
|
|
58945
|
-
{ api_key: [] },
|
|
58946
|
-
],
|
|
58949
|
+
security: [{ client_session_with_customer: [] }],
|
|
58947
58950
|
summary: '/seam/customer/v1/customers/automations/update',
|
|
58948
58951
|
tags: [],
|
|
58949
58952
|
'x-fern-sdk-group-name': [
|
|
@@ -59205,12 +59208,7 @@ export default {
|
|
|
59205
59208
|
},
|
|
59206
59209
|
type: 'object',
|
|
59207
59210
|
},
|
|
59208
|
-
customer_key: {
|
|
59209
|
-
description: 'Key of the customer.',
|
|
59210
|
-
type: 'string',
|
|
59211
|
-
},
|
|
59212
59211
|
},
|
|
59213
|
-
required: ['customer_key'],
|
|
59214
59212
|
type: 'object',
|
|
59215
59213
|
},
|
|
59216
59214
|
},
|
|
@@ -59232,11 +59230,7 @@ export default {
|
|
|
59232
59230
|
400: { description: 'Bad Request' },
|
|
59233
59231
|
401: { description: 'Unauthorized' },
|
|
59234
59232
|
},
|
|
59235
|
-
security: [
|
|
59236
|
-
{ pat_with_workspace: [] },
|
|
59237
|
-
{ console_session_with_workspace: [] },
|
|
59238
|
-
{ api_key: [] },
|
|
59239
|
-
],
|
|
59233
|
+
security: [{ client_session_with_customer: [] }],
|
|
59240
59234
|
summary: '/seam/customer/v1/customers/automations/update',
|
|
59241
59235
|
tags: [],
|
|
59242
59236
|
'x-fern-sdk-group-name': [
|