@seamapi/types 1.234.0 → 1.235.1

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.
@@ -200,6 +200,7 @@ export default {
200
200
  type: 'string',
201
201
  },
202
202
  external_type_display_name: { type: 'string' },
203
+ is_managed: { enum: [true], type: 'boolean' },
203
204
  name: { type: 'string' },
204
205
  workspace_id: { format: 'uuid', type: 'string' },
205
206
  },
@@ -214,6 +215,7 @@ export default {
214
215
  'external_type',
215
216
  'external_type_display_name',
216
217
  'created_at',
218
+ 'is_managed',
217
219
  ],
218
220
  type: 'object',
219
221
  },
@@ -5377,6 +5379,206 @@ export default {
5377
5379
  'x-fern-sdk-method-name': 'remove_user',
5378
5380
  },
5379
5381
  },
5382
+ '/acs/access_groups/unmanaged/get': {
5383
+ post: {
5384
+ operationId: 'acsAccessGroupsUnmanagedGetPost',
5385
+ requestBody: {
5386
+ content: {
5387
+ 'application/json': {
5388
+ schema: {
5389
+ properties: {
5390
+ acs_access_group_id: { format: 'uuid', type: 'string' },
5391
+ },
5392
+ required: ['acs_access_group_id'],
5393
+ type: 'object',
5394
+ },
5395
+ },
5396
+ },
5397
+ },
5398
+ responses: {
5399
+ 200: {
5400
+ content: {
5401
+ 'application/json': {
5402
+ schema: {
5403
+ properties: {
5404
+ acs_access_group: {
5405
+ properties: {
5406
+ access_group_type: {
5407
+ deprecated: true,
5408
+ enum: [
5409
+ 'pti_unit',
5410
+ 'pti_access_level',
5411
+ 'salto_access_group',
5412
+ 'brivo_group',
5413
+ ],
5414
+ type: 'string',
5415
+ 'x-deprecated': 'use external_type',
5416
+ },
5417
+ access_group_type_display_name: {
5418
+ deprecated: true,
5419
+ type: 'string',
5420
+ 'x-deprecated': 'use external_type_display_name',
5421
+ },
5422
+ acs_access_group_id: { format: 'uuid', type: 'string' },
5423
+ acs_system_id: { format: 'uuid', type: 'string' },
5424
+ created_at: { format: 'date-time', type: 'string' },
5425
+ display_name: { type: 'string' },
5426
+ external_type: {
5427
+ enum: [
5428
+ 'pti_unit',
5429
+ 'pti_access_level',
5430
+ 'salto_access_group',
5431
+ 'brivo_group',
5432
+ ],
5433
+ type: 'string',
5434
+ },
5435
+ external_type_display_name: { type: 'string' },
5436
+ is_managed: { enum: [false], type: 'boolean' },
5437
+ name: { type: 'string' },
5438
+ workspace_id: { format: 'uuid', type: 'string' },
5439
+ },
5440
+ required: [
5441
+ 'acs_access_group_id',
5442
+ 'acs_system_id',
5443
+ 'workspace_id',
5444
+ 'name',
5445
+ 'access_group_type',
5446
+ 'access_group_type_display_name',
5447
+ 'display_name',
5448
+ 'external_type',
5449
+ 'external_type_display_name',
5450
+ 'created_at',
5451
+ 'is_managed',
5452
+ ],
5453
+ type: 'object',
5454
+ },
5455
+ ok: { type: 'boolean' },
5456
+ },
5457
+ required: ['acs_access_group', 'ok'],
5458
+ type: 'object',
5459
+ },
5460
+ },
5461
+ },
5462
+ description: 'OK',
5463
+ },
5464
+ 400: { description: 'Bad Request' },
5465
+ 401: { description: 'Unauthorized' },
5466
+ },
5467
+ security: [
5468
+ { pat_with_workspace: [] },
5469
+ { console_session: [] },
5470
+ { api_key: [] },
5471
+ ],
5472
+ summary: '/acs/access_groups/unmanaged/get',
5473
+ tags: ['/acs'],
5474
+ 'x-fern-sdk-group-name': ['acs', 'access_groups', 'unmanaged'],
5475
+ 'x-fern-sdk-method-name': 'get',
5476
+ 'x-fern-sdk-return-value': 'acs_access_group',
5477
+ },
5478
+ },
5479
+ '/acs/access_groups/unmanaged/list': {
5480
+ post: {
5481
+ operationId: 'acsAccessGroupsUnmanagedListPost',
5482
+ requestBody: {
5483
+ content: {
5484
+ 'application/json': {
5485
+ schema: {
5486
+ properties: {
5487
+ acs_system_id: { format: 'uuid', type: 'string' },
5488
+ acs_user_id: { format: 'uuid', type: 'string' },
5489
+ },
5490
+ type: 'object',
5491
+ },
5492
+ },
5493
+ },
5494
+ },
5495
+ responses: {
5496
+ 200: {
5497
+ content: {
5498
+ 'application/json': {
5499
+ schema: {
5500
+ properties: {
5501
+ acs_access_groups: {
5502
+ items: {
5503
+ properties: {
5504
+ access_group_type: {
5505
+ deprecated: true,
5506
+ enum: [
5507
+ 'pti_unit',
5508
+ 'pti_access_level',
5509
+ 'salto_access_group',
5510
+ 'brivo_group',
5511
+ ],
5512
+ type: 'string',
5513
+ 'x-deprecated': 'use external_type',
5514
+ },
5515
+ access_group_type_display_name: {
5516
+ deprecated: true,
5517
+ type: 'string',
5518
+ 'x-deprecated': 'use external_type_display_name',
5519
+ },
5520
+ acs_access_group_id: {
5521
+ format: 'uuid',
5522
+ type: 'string',
5523
+ },
5524
+ acs_system_id: { format: 'uuid', type: 'string' },
5525
+ created_at: { format: 'date-time', type: 'string' },
5526
+ display_name: { type: 'string' },
5527
+ external_type: {
5528
+ enum: [
5529
+ 'pti_unit',
5530
+ 'pti_access_level',
5531
+ 'salto_access_group',
5532
+ 'brivo_group',
5533
+ ],
5534
+ type: 'string',
5535
+ },
5536
+ external_type_display_name: { type: 'string' },
5537
+ is_managed: { enum: [false], type: 'boolean' },
5538
+ name: { type: 'string' },
5539
+ workspace_id: { format: 'uuid', type: 'string' },
5540
+ },
5541
+ required: [
5542
+ 'acs_access_group_id',
5543
+ 'acs_system_id',
5544
+ 'workspace_id',
5545
+ 'name',
5546
+ 'access_group_type',
5547
+ 'access_group_type_display_name',
5548
+ 'display_name',
5549
+ 'external_type',
5550
+ 'external_type_display_name',
5551
+ 'created_at',
5552
+ 'is_managed',
5553
+ ],
5554
+ type: 'object',
5555
+ },
5556
+ type: 'array',
5557
+ },
5558
+ ok: { type: 'boolean' },
5559
+ },
5560
+ required: ['acs_access_groups', 'ok'],
5561
+ type: 'object',
5562
+ },
5563
+ },
5564
+ },
5565
+ description: 'OK',
5566
+ },
5567
+ 400: { description: 'Bad Request' },
5568
+ 401: { description: 'Unauthorized' },
5569
+ },
5570
+ security: [
5571
+ { pat_with_workspace: [] },
5572
+ { console_session: [] },
5573
+ { api_key: [] },
5574
+ ],
5575
+ summary: '/acs/access_groups/unmanaged/list',
5576
+ tags: ['/acs'],
5577
+ 'x-fern-sdk-group-name': ['acs', 'access_groups', 'unmanaged'],
5578
+ 'x-fern-sdk-method-name': 'list',
5579
+ 'x-fern-sdk-return-value': 'acs_access_groups',
5580
+ },
5581
+ },
5380
5582
  '/acs/credential_pools/list': {
5381
5583
  post: {
5382
5584
  operationId: 'acsCredentialPoolsListPost',
@@ -7295,7 +7497,95 @@ export default {
7295
7497
  'application/json': {
7296
7498
  schema: {
7297
7499
  properties: {
7298
- acs_user: { $ref: '#/components/schemas/acs_user' },
7500
+ acs_user: {
7501
+ properties: {
7502
+ access_schedule: {
7503
+ properties: {
7504
+ ends_at: { format: 'date-time', type: 'string' },
7505
+ starts_at: { format: 'date-time', type: 'string' },
7506
+ },
7507
+ required: ['starts_at', 'ends_at'],
7508
+ type: 'object',
7509
+ },
7510
+ acs_system_id: { format: 'uuid', type: 'string' },
7511
+ acs_user_id: { format: 'uuid', type: 'string' },
7512
+ created_at: { format: 'date-time', type: 'string' },
7513
+ display_name: { type: 'string' },
7514
+ email: {
7515
+ deprecated: true,
7516
+ format: 'email',
7517
+ type: 'string',
7518
+ 'x-deprecated': 'use email_address.',
7519
+ },
7520
+ email_address: { format: 'email', type: 'string' },
7521
+ external_type: {
7522
+ enum: [
7523
+ 'pti_user',
7524
+ 'brivo_user',
7525
+ 'hid_credential_manager_user',
7526
+ 'salto_site_user',
7527
+ 'latch_user',
7528
+ ],
7529
+ type: 'string',
7530
+ },
7531
+ external_type_display_name: { type: 'string' },
7532
+ full_name: { type: 'string' },
7533
+ hid_acs_system_id: { format: 'uuid', type: 'string' },
7534
+ is_latest_desired_state_synced_with_provider: {
7535
+ type: 'boolean',
7536
+ },
7537
+ is_managed: { enum: [false], type: 'boolean' },
7538
+ is_suspended: { type: 'boolean' },
7539
+ latest_desired_state_synced_with_provider_at: {
7540
+ format: 'date-time',
7541
+ type: 'string',
7542
+ },
7543
+ phone_number: { type: 'string' },
7544
+ user_identity_email_address: {
7545
+ nullable: true,
7546
+ type: 'string',
7547
+ },
7548
+ user_identity_full_name: {
7549
+ nullable: true,
7550
+ type: 'string',
7551
+ },
7552
+ user_identity_id: { type: 'string' },
7553
+ user_identity_phone_number: {
7554
+ nullable: true,
7555
+ type: 'string',
7556
+ },
7557
+ warnings: {
7558
+ items: {
7559
+ properties: {
7560
+ created_at: {
7561
+ format: 'date-time',
7562
+ type: 'string',
7563
+ },
7564
+ message: { type: 'string' },
7565
+ warning_code: {
7566
+ enum: ['being_deleted'],
7567
+ type: 'string',
7568
+ },
7569
+ },
7570
+ required: ['created_at', 'message', 'warning_code'],
7571
+ type: 'object',
7572
+ },
7573
+ type: 'array',
7574
+ },
7575
+ workspace_id: { format: 'uuid', type: 'string' },
7576
+ },
7577
+ required: [
7578
+ 'acs_user_id',
7579
+ 'acs_system_id',
7580
+ 'workspace_id',
7581
+ 'created_at',
7582
+ 'display_name',
7583
+ 'is_suspended',
7584
+ 'warnings',
7585
+ 'is_managed',
7586
+ ],
7587
+ type: 'object',
7588
+ },
7299
7589
  ok: { type: 'boolean' },
7300
7590
  },
7301
7591
  required: ['acs_user', 'ok'],