@seamapi/types 1.159.0 → 1.160.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.
@@ -3369,6 +3369,7 @@ export interface Routes {
3369
3369
  event?: {
3370
3370
  event_id: string;
3371
3371
  device_id?: string | undefined;
3372
+ action_attempt_id?: string | undefined;
3372
3373
  event_type: string;
3373
3374
  workspace_id: string;
3374
3375
  created_at: string;
@@ -3399,6 +3400,7 @@ export interface Routes {
3399
3400
  events: Array<{
3400
3401
  event_id: string;
3401
3402
  device_id?: string | undefined;
3403
+ action_attempt_id?: string | undefined;
3402
3404
  event_type: string;
3403
3405
  workspace_id: string;
3404
3406
  created_at: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.159.0",
3
+ "version": "1.160.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -2079,6 +2079,7 @@ export default {
2079
2079
  },
2080
2080
  event: {
2081
2081
  properties: {
2082
+ action_attempt_id: { format: 'uuid', type: 'string' },
2082
2083
  created_at: { format: 'date-time', type: 'string' },
2083
2084
  device_id: { format: 'uuid', type: 'string' },
2084
2085
  event_id: { format: 'uuid', type: 'string' },
@@ -4493,6 +4493,7 @@ export interface Routes {
4493
4493
  | {
4494
4494
  event_id: string
4495
4495
  device_id?: string | undefined
4496
+ action_attempt_id?: string | undefined
4496
4497
  event_type: string
4497
4498
  workspace_id: string
4498
4499
  created_at: string
@@ -4632,6 +4633,7 @@ export interface Routes {
4632
4633
  events: Array<{
4633
4634
  event_id: string
4634
4635
  device_id?: string | undefined
4636
+ action_attempt_id?: string | undefined
4635
4637
  event_type: string
4636
4638
  workspace_id: string
4637
4639
  created_at: string