@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
package/dist/connect.d.cts
CHANGED
|
@@ -2581,6 +2581,10 @@ declare const _default: {
|
|
|
2581
2581
|
};
|
|
2582
2582
|
event: {
|
|
2583
2583
|
properties: {
|
|
2584
|
+
action_attempt_id: {
|
|
2585
|
+
format: string;
|
|
2586
|
+
type: string;
|
|
2587
|
+
};
|
|
2584
2588
|
created_at: {
|
|
2585
2589
|
format: string;
|
|
2586
2590
|
type: string;
|
|
@@ -19118,6 +19122,7 @@ interface Routes {
|
|
|
19118
19122
|
event?: {
|
|
19119
19123
|
event_id: string;
|
|
19120
19124
|
device_id?: string | undefined;
|
|
19125
|
+
action_attempt_id?: string | undefined;
|
|
19121
19126
|
event_type: string;
|
|
19122
19127
|
workspace_id: string;
|
|
19123
19128
|
created_at: string;
|
|
@@ -19148,6 +19153,7 @@ interface Routes {
|
|
|
19148
19153
|
events: Array<{
|
|
19149
19154
|
event_id: string;
|
|
19150
19155
|
device_id?: string | undefined;
|
|
19156
|
+
action_attempt_id?: string | undefined;
|
|
19151
19157
|
event_type: string;
|
|
19152
19158
|
workspace_id: string;
|
|
19153
19159
|
created_at: string;
|
|
@@ -2023,6 +2023,7 @@ export default {
|
|
|
2023
2023
|
},
|
|
2024
2024
|
event: {
|
|
2025
2025
|
properties: {
|
|
2026
|
+
action_attempt_id: { format: 'uuid', type: 'string' },
|
|
2026
2027
|
created_at: { format: 'date-time', type: 'string' },
|
|
2027
2028
|
device_id: { format: 'uuid', type: 'string' },
|
|
2028
2029
|
event_id: { format: 'uuid', type: 'string' },
|