@seamapi/types 1.1038.0 → 1.1040.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.
@@ -34944,6 +34944,11 @@ const openapi = {
34944
34944
  'access_code.deleted',
34945
34945
  'access_code.modified_external_to_seam',
34946
34946
  'access_code.deleted_external_to_seam',
34947
+ 'access_code.issued',
34948
+ 'access_code.delay_in_issuing',
34949
+ 'access_code.failed_to_issue',
34950
+ 'access_code.failed_to_update',
34951
+ 'access_code.failed_to_expire',
34947
34952
  'access_code.scheduled_on_device',
34948
34953
  'access_code.set_on_device',
34949
34954
  'access_code.removed_from_device',
@@ -35033,6 +35038,11 @@ const openapi = {
35033
35038
  'access_code.deleted',
35034
35039
  'access_code.modified_external_to_seam',
35035
35040
  'access_code.deleted_external_to_seam',
35041
+ 'access_code.issued',
35042
+ 'access_code.delay_in_issuing',
35043
+ 'access_code.failed_to_issue',
35044
+ 'access_code.failed_to_update',
35045
+ 'access_code.failed_to_expire',
35036
35046
  'access_code.scheduled_on_device',
35037
35047
  'access_code.set_on_device',
35038
35048
  'access_code.removed_from_device',
@@ -35154,6 +35164,11 @@ const openapi = {
35154
35164
  'access_code.deleted',
35155
35165
  'access_code.modified_external_to_seam',
35156
35166
  'access_code.deleted_external_to_seam',
35167
+ 'access_code.issued',
35168
+ 'access_code.delay_in_issuing',
35169
+ 'access_code.failed_to_issue',
35170
+ 'access_code.failed_to_update',
35171
+ 'access_code.failed_to_expire',
35157
35172
  'access_code.scheduled_on_device',
35158
35173
  'access_code.set_on_device',
35159
35174
  'access_code.removed_from_device',
@@ -35256,6 +35271,11 @@ const openapi = {
35256
35271
  'access_code.deleted',
35257
35272
  'access_code.modified_external_to_seam',
35258
35273
  'access_code.deleted_external_to_seam',
35274
+ 'access_code.issued',
35275
+ 'access_code.delay_in_issuing',
35276
+ 'access_code.failed_to_issue',
35277
+ 'access_code.failed_to_update',
35278
+ 'access_code.failed_to_expire',
35259
35279
  'access_code.scheduled_on_device',
35260
35280
  'access_code.set_on_device',
35261
35281
  'access_code.removed_from_device',
@@ -63305,6 +63325,7 @@ const openapi = {
63305
63325
  'LYNX_MIGRATION_ENABLED',
63306
63326
  'AURORA_CUSTOMER_FILTER_ENABLED',
63307
63327
  'ACCESS_METHOD_DEADLINE_ERRORS',
63328
+ 'ACCESS_CODE_DEADLINE_LIFECYCLE',
63308
63329
  'GUARD_MATERIALIZATION_ON_UNREACHABLE_DEVICE',
63309
63330
  'TARGETED_ACCESS_GRANT_ISSUANCE',
63310
63331
  ],
@@ -63339,6 +63360,7 @@ const openapi = {
63339
63360
  'LYNX_MIGRATION_ENABLED',
63340
63361
  'AURORA_CUSTOMER_FILTER_ENABLED',
63341
63362
  'ACCESS_METHOD_DEADLINE_ERRORS',
63363
+ 'ACCESS_CODE_DEADLINE_LIFECYCLE',
63342
63364
  'GUARD_MATERIALIZATION_ON_UNREACHABLE_DEVICE',
63343
63365
  'TARGETED_ACCESS_GRANT_ISSUANCE',
63344
63366
  ],
@@ -74363,6 +74385,79 @@ const openapi = {
74363
74385
  'x-undocumented': 'Internal endpoint for inbound provider webhooks',
74364
74386
  },
74365
74387
  },
74388
+ '/seam/wizard/v1/session': {
74389
+ post: {
74390
+ 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.",
74391
+ operationId: 'seamWizardV1SessionPost',
74392
+ requestBody: {
74393
+ content: {
74394
+ 'application/json': { schema: { properties: {}, type: 'object' } },
74395
+ },
74396
+ },
74397
+ responses: {
74398
+ '200': {
74399
+ content: {
74400
+ 'application/json': {
74401
+ schema: {
74402
+ properties: {
74403
+ ok: { type: 'boolean' },
74404
+ wizard_session: {
74405
+ properties: {
74406
+ expires_at: { type: 'string' },
74407
+ onboarding: {
74408
+ nullable: true,
74409
+ properties: {
74410
+ build_target: { nullable: true, type: 'string' },
74411
+ device_categories: {
74412
+ items: { type: 'string' },
74413
+ nullable: true,
74414
+ type: 'array',
74415
+ },
74416
+ embed_customer_portal: {
74417
+ nullable: true,
74418
+ type: 'boolean',
74419
+ },
74420
+ org_type: { nullable: true, type: 'string' },
74421
+ primary_goal: { nullable: true, type: 'string' },
74422
+ use_case: { nullable: true, type: 'string' },
74423
+ },
74424
+ required: [
74425
+ 'org_type',
74426
+ 'primary_goal',
74427
+ 'use_case',
74428
+ 'build_target',
74429
+ 'embed_customer_portal',
74430
+ 'device_categories',
74431
+ ],
74432
+ type: 'object',
74433
+ },
74434
+ token: { type: 'string' },
74435
+ },
74436
+ required: ['token', 'expires_at', 'onboarding'],
74437
+ type: 'object',
74438
+ },
74439
+ },
74440
+ required: ['wizard_session', 'ok'],
74441
+ type: 'object',
74442
+ },
74443
+ },
74444
+ },
74445
+ description: 'OK',
74446
+ },
74447
+ '400': { description: 'Bad Request' },
74448
+ '401': { description: 'Unauthorized' },
74449
+ },
74450
+ security: [{ api_key: [] }, { pat_with_workspace: [] }],
74451
+ summary: '/seam/wizard/v1/session',
74452
+ tags: [],
74453
+ 'x-fern-sdk-group-name': ['seam', 'wizard', 'v1'],
74454
+ 'x-fern-sdk-method-name': 'session',
74455
+ 'x-fern-sdk-return-value': 'wizard_session',
74456
+ 'x-response-key': 'wizard_session',
74457
+ 'x-title': 'Create a Wizard Session',
74458
+ 'x-undocumented': 'Seam Wizard CLI only.',
74459
+ },
74460
+ },
74366
74461
  '/spaces/add_acs_entrances': {
74367
74462
  post: {
74368
74463
  description: 'Adds [entrances](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) to a specific space.',