@seamapi/types 1.1065.0 → 1.1067.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.
|
@@ -89104,25 +89104,6 @@ export type Routes = {
|
|
|
89104
89104
|
jsonResponse: {};
|
|
89105
89105
|
maxDuration: undefined;
|
|
89106
89106
|
};
|
|
89107
|
-
'/seam/wizard/v1/events': {
|
|
89108
|
-
route: '/seam/wizard/v1/events';
|
|
89109
|
-
method: 'POST';
|
|
89110
|
-
queryParams: {};
|
|
89111
|
-
jsonBody: {
|
|
89112
|
-
events: {
|
|
89113
|
-
event: string;
|
|
89114
|
-
distinct_id: string;
|
|
89115
|
-
timestamp: string;
|
|
89116
|
-
properties?: {
|
|
89117
|
-
[x: string]: any;
|
|
89118
|
-
};
|
|
89119
|
-
}[];
|
|
89120
|
-
};
|
|
89121
|
-
commonParams: {};
|
|
89122
|
-
formData: {};
|
|
89123
|
-
jsonResponse: {};
|
|
89124
|
-
maxDuration: undefined;
|
|
89125
|
-
};
|
|
89126
89107
|
'/seam/wizard/v1/session': {
|
|
89127
89108
|
route: '/seam/wizard/v1/session';
|
|
89128
89109
|
method: 'POST';
|
package/package.json
CHANGED
|
@@ -54104,6 +54104,7 @@ const openapi: OpenAPISpec = {
|
|
|
54104
54104
|
'401': { description: 'Unauthorized' },
|
|
54105
54105
|
},
|
|
54106
54106
|
security: [
|
|
54107
|
+
{ client_session: [] },
|
|
54107
54108
|
{ api_key: [] },
|
|
54108
54109
|
{ pat_with_workspace: [] },
|
|
54109
54110
|
{ console_session_with_workspace: [] },
|
|
@@ -65030,70 +65031,6 @@ const openapi: OpenAPISpec = {
|
|
|
65030
65031
|
'x-undocumented': 'Internal endpoint for inbound provider webhooks',
|
|
65031
65032
|
},
|
|
65032
65033
|
},
|
|
65033
|
-
'/seam/wizard/v1/events': {
|
|
65034
|
-
post: {
|
|
65035
|
-
description:
|
|
65036
|
-
"Records a batch of usage analytics events from the Seam Wizard CLI, which\nreports the screens a run reached and the choices made along the way, and\nforwards them to PostHog.\n\nUnauthenticated: the run's earliest events happen before the developer has\nconnected a Seam API key at all, so requiring a credential would blind the\ndrop-off this measures. Send a wizard session token as the bearer to have the\nworkspace attribution verified.",
|
|
65037
|
-
operationId: 'seamWizardV1EventsPost',
|
|
65038
|
-
requestBody: {
|
|
65039
|
-
content: {
|
|
65040
|
-
'application/json': {
|
|
65041
|
-
schema: {
|
|
65042
|
-
properties: {
|
|
65043
|
-
events: {
|
|
65044
|
-
items: {
|
|
65045
|
-
properties: {
|
|
65046
|
-
distinct_id: { format: 'uuid', type: 'string' },
|
|
65047
|
-
event: {
|
|
65048
|
-
pattern: '^wizard_[a-z0-9_]{1,60}$',
|
|
65049
|
-
type: 'string',
|
|
65050
|
-
},
|
|
65051
|
-
properties: {
|
|
65052
|
-
additionalProperties: {},
|
|
65053
|
-
default: {},
|
|
65054
|
-
type: 'object',
|
|
65055
|
-
},
|
|
65056
|
-
timestamp: { format: 'date-time', type: 'string' },
|
|
65057
|
-
},
|
|
65058
|
-
required: ['event', 'distinct_id', 'timestamp'],
|
|
65059
|
-
type: 'object',
|
|
65060
|
-
},
|
|
65061
|
-
maxItems: 200,
|
|
65062
|
-
minItems: 1,
|
|
65063
|
-
type: 'array',
|
|
65064
|
-
},
|
|
65065
|
-
},
|
|
65066
|
-
required: ['events'],
|
|
65067
|
-
type: 'object',
|
|
65068
|
-
},
|
|
65069
|
-
},
|
|
65070
|
-
},
|
|
65071
|
-
},
|
|
65072
|
-
responses: {
|
|
65073
|
-
'200': {
|
|
65074
|
-
content: {
|
|
65075
|
-
'application/json': {
|
|
65076
|
-
schema: {
|
|
65077
|
-
properties: { ok: { type: 'boolean' } },
|
|
65078
|
-
required: ['ok'],
|
|
65079
|
-
type: 'object',
|
|
65080
|
-
},
|
|
65081
|
-
},
|
|
65082
|
-
},
|
|
65083
|
-
description: 'OK',
|
|
65084
|
-
},
|
|
65085
|
-
'400': { description: 'Bad Request' },
|
|
65086
|
-
'401': { description: 'Unauthorized' },
|
|
65087
|
-
},
|
|
65088
|
-
summary: '/seam/wizard/v1/events',
|
|
65089
|
-
tags: ['/events'],
|
|
65090
|
-
'x-fern-sdk-group-name': ['seam', 'wizard', 'v1'],
|
|
65091
|
-
'x-fern-sdk-method-name': 'events',
|
|
65092
|
-
'x-response-key': null,
|
|
65093
|
-
'x-title': 'Record Wizard Events',
|
|
65094
|
-
'x-undocumented': 'Seam Wizard CLI only.',
|
|
65095
|
-
},
|
|
65096
|
-
},
|
|
65097
65034
|
'/seam/wizard/v1/session': {
|
|
65098
65035
|
post: {
|
|
65099
65036
|
description:
|
|
@@ -106848,25 +106848,6 @@ export type Routes = {
|
|
|
106848
106848
|
jsonResponse: {}
|
|
106849
106849
|
maxDuration: undefined
|
|
106850
106850
|
}
|
|
106851
|
-
'/seam/wizard/v1/events': {
|
|
106852
|
-
route: '/seam/wizard/v1/events'
|
|
106853
|
-
method: 'POST'
|
|
106854
|
-
queryParams: {}
|
|
106855
|
-
jsonBody: {
|
|
106856
|
-
events: {
|
|
106857
|
-
event: string
|
|
106858
|
-
distinct_id: string
|
|
106859
|
-
timestamp: string
|
|
106860
|
-
properties?: {
|
|
106861
|
-
[x: string]: any
|
|
106862
|
-
}
|
|
106863
|
-
}[]
|
|
106864
|
-
}
|
|
106865
|
-
commonParams: {}
|
|
106866
|
-
formData: {}
|
|
106867
|
-
jsonResponse: {}
|
|
106868
|
-
maxDuration: undefined
|
|
106869
|
-
}
|
|
106870
106851
|
'/seam/wizard/v1/session': {
|
|
106871
106852
|
route: '/seam/wizard/v1/session'
|
|
106872
106853
|
method: 'POST'
|