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