@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.
|
@@ -49114,6 +49114,7 @@ const openapi = {
|
|
|
49114
49114
|
'401': { description: 'Unauthorized' },
|
|
49115
49115
|
},
|
|
49116
49116
|
security: [
|
|
49117
|
+
{ client_session: [] },
|
|
49117
49118
|
{ api_key: [] },
|
|
49118
49119
|
{ pat_with_workspace: [] },
|
|
49119
49120
|
{ console_session_with_workspace: [] },
|
|
@@ -59695,69 +59696,6 @@ const openapi = {
|
|
|
59695
59696
|
'x-undocumented': 'Internal endpoint for inbound provider webhooks',
|
|
59696
59697
|
},
|
|
59697
59698
|
},
|
|
59698
|
-
'/seam/wizard/v1/events': {
|
|
59699
|
-
post: {
|
|
59700
|
-
description: "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.",
|
|
59701
|
-
operationId: 'seamWizardV1EventsPost',
|
|
59702
|
-
requestBody: {
|
|
59703
|
-
content: {
|
|
59704
|
-
'application/json': {
|
|
59705
|
-
schema: {
|
|
59706
|
-
properties: {
|
|
59707
|
-
events: {
|
|
59708
|
-
items: {
|
|
59709
|
-
properties: {
|
|
59710
|
-
distinct_id: { format: 'uuid', type: 'string' },
|
|
59711
|
-
event: {
|
|
59712
|
-
pattern: '^wizard_[a-z0-9_]{1,60}$',
|
|
59713
|
-
type: 'string',
|
|
59714
|
-
},
|
|
59715
|
-
properties: {
|
|
59716
|
-
additionalProperties: {},
|
|
59717
|
-
default: {},
|
|
59718
|
-
type: 'object',
|
|
59719
|
-
},
|
|
59720
|
-
timestamp: { format: 'date-time', type: 'string' },
|
|
59721
|
-
},
|
|
59722
|
-
required: ['event', 'distinct_id', 'timestamp'],
|
|
59723
|
-
type: 'object',
|
|
59724
|
-
},
|
|
59725
|
-
maxItems: 200,
|
|
59726
|
-
minItems: 1,
|
|
59727
|
-
type: 'array',
|
|
59728
|
-
},
|
|
59729
|
-
},
|
|
59730
|
-
required: ['events'],
|
|
59731
|
-
type: 'object',
|
|
59732
|
-
},
|
|
59733
|
-
},
|
|
59734
|
-
},
|
|
59735
|
-
},
|
|
59736
|
-
responses: {
|
|
59737
|
-
'200': {
|
|
59738
|
-
content: {
|
|
59739
|
-
'application/json': {
|
|
59740
|
-
schema: {
|
|
59741
|
-
properties: { ok: { type: 'boolean' } },
|
|
59742
|
-
required: ['ok'],
|
|
59743
|
-
type: 'object',
|
|
59744
|
-
},
|
|
59745
|
-
},
|
|
59746
|
-
},
|
|
59747
|
-
description: 'OK',
|
|
59748
|
-
},
|
|
59749
|
-
'400': { description: 'Bad Request' },
|
|
59750
|
-
'401': { description: 'Unauthorized' },
|
|
59751
|
-
},
|
|
59752
|
-
summary: '/seam/wizard/v1/events',
|
|
59753
|
-
tags: ['/events'],
|
|
59754
|
-
'x-fern-sdk-group-name': ['seam', 'wizard', 'v1'],
|
|
59755
|
-
'x-fern-sdk-method-name': 'events',
|
|
59756
|
-
'x-response-key': null,
|
|
59757
|
-
'x-title': 'Record Wizard Events',
|
|
59758
|
-
'x-undocumented': 'Seam Wizard CLI only.',
|
|
59759
|
-
},
|
|
59760
|
-
},
|
|
59761
59699
|
'/seam/wizard/v1/session': {
|
|
59762
59700
|
post: {
|
|
59763
59701
|
description: "Exchanges a Seam API key for a short-lived wizard inference token. The Seam\nWizard CLI calls this once, then sends the returned token as the bearer to the\ninference proxy. The session also carries the workspace org's Console-collected\nonboarding answers (or null) so the CLI can pre-fill its integration plan.",
|