@seamapi/types 1.1038.0 → 1.1039.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.
|
@@ -74363,6 +74363,79 @@ const openapi = {
|
|
|
74363
74363
|
'x-undocumented': 'Internal endpoint for inbound provider webhooks',
|
|
74364
74364
|
},
|
|
74365
74365
|
},
|
|
74366
|
+
'/seam/wizard/v1/session': {
|
|
74367
|
+
post: {
|
|
74368
|
+
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.",
|
|
74369
|
+
operationId: 'seamWizardV1SessionPost',
|
|
74370
|
+
requestBody: {
|
|
74371
|
+
content: {
|
|
74372
|
+
'application/json': { schema: { properties: {}, type: 'object' } },
|
|
74373
|
+
},
|
|
74374
|
+
},
|
|
74375
|
+
responses: {
|
|
74376
|
+
'200': {
|
|
74377
|
+
content: {
|
|
74378
|
+
'application/json': {
|
|
74379
|
+
schema: {
|
|
74380
|
+
properties: {
|
|
74381
|
+
ok: { type: 'boolean' },
|
|
74382
|
+
wizard_session: {
|
|
74383
|
+
properties: {
|
|
74384
|
+
expires_at: { type: 'string' },
|
|
74385
|
+
onboarding: {
|
|
74386
|
+
nullable: true,
|
|
74387
|
+
properties: {
|
|
74388
|
+
build_target: { nullable: true, type: 'string' },
|
|
74389
|
+
device_categories: {
|
|
74390
|
+
items: { type: 'string' },
|
|
74391
|
+
nullable: true,
|
|
74392
|
+
type: 'array',
|
|
74393
|
+
},
|
|
74394
|
+
embed_customer_portal: {
|
|
74395
|
+
nullable: true,
|
|
74396
|
+
type: 'boolean',
|
|
74397
|
+
},
|
|
74398
|
+
org_type: { nullable: true, type: 'string' },
|
|
74399
|
+
primary_goal: { nullable: true, type: 'string' },
|
|
74400
|
+
use_case: { nullable: true, type: 'string' },
|
|
74401
|
+
},
|
|
74402
|
+
required: [
|
|
74403
|
+
'org_type',
|
|
74404
|
+
'primary_goal',
|
|
74405
|
+
'use_case',
|
|
74406
|
+
'build_target',
|
|
74407
|
+
'embed_customer_portal',
|
|
74408
|
+
'device_categories',
|
|
74409
|
+
],
|
|
74410
|
+
type: 'object',
|
|
74411
|
+
},
|
|
74412
|
+
token: { type: 'string' },
|
|
74413
|
+
},
|
|
74414
|
+
required: ['token', 'expires_at', 'onboarding'],
|
|
74415
|
+
type: 'object',
|
|
74416
|
+
},
|
|
74417
|
+
},
|
|
74418
|
+
required: ['wizard_session', 'ok'],
|
|
74419
|
+
type: 'object',
|
|
74420
|
+
},
|
|
74421
|
+
},
|
|
74422
|
+
},
|
|
74423
|
+
description: 'OK',
|
|
74424
|
+
},
|
|
74425
|
+
'400': { description: 'Bad Request' },
|
|
74426
|
+
'401': { description: 'Unauthorized' },
|
|
74427
|
+
},
|
|
74428
|
+
security: [{ api_key: [] }, { pat_with_workspace: [] }],
|
|
74429
|
+
summary: '/seam/wizard/v1/session',
|
|
74430
|
+
tags: [],
|
|
74431
|
+
'x-fern-sdk-group-name': ['seam', 'wizard', 'v1'],
|
|
74432
|
+
'x-fern-sdk-method-name': 'session',
|
|
74433
|
+
'x-fern-sdk-return-value': 'wizard_session',
|
|
74434
|
+
'x-response-key': 'wizard_session',
|
|
74435
|
+
'x-title': 'Create a Wizard Session',
|
|
74436
|
+
'x-undocumented': 'Seam Wizard CLI only.',
|
|
74437
|
+
},
|
|
74438
|
+
},
|
|
74366
74439
|
'/spaces/add_acs_entrances': {
|
|
74367
74440
|
post: {
|
|
74368
74441
|
description: 'Adds [entrances](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) to a specific space.',
|