@seamapi/types 1.48.0 → 1.50.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.
Files changed (39) hide show
  1. package/dist/connect.cjs +333 -38
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +477 -17
  4. package/lib/seam/connect/openapi.d.ts +269 -3
  5. package/lib/seam/connect/openapi.js +332 -37
  6. package/lib/seam/connect/openapi.js.map +1 -1
  7. package/lib/seam/connect/route-types.d.ts +208 -14
  8. package/lib/seam/connect/unstable/model-types.d.ts +1 -1
  9. package/lib/seam/connect/unstable/models/access-codes/managed-access-code.js +81 -21
  10. package/lib/seam/connect/unstable/models/access-codes/managed-access-code.js.map +1 -1
  11. package/lib/seam/connect/unstable/models/acs/credential.d.ts +7 -4
  12. package/lib/seam/connect/unstable/models/acs/credential.js +2 -1
  13. package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
  14. package/lib/seam/connect/unstable/models/acs/credential_pool.d.ts +29 -0
  15. package/lib/seam/connect/unstable/models/acs/credential_pool.js +12 -0
  16. package/lib/seam/connect/unstable/models/acs/credential_pool.js.map +1 -0
  17. package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.d.ts +21 -0
  18. package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.js +9 -0
  19. package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.js.map +1 -0
  20. package/lib/seam/connect/unstable/models/acs/index.d.ts +2 -0
  21. package/lib/seam/connect/unstable/models/acs/index.js +2 -0
  22. package/lib/seam/connect/unstable/models/acs/index.js.map +1 -1
  23. package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +14 -14
  24. package/lib/seam/connect/unstable/models/devices/managed-device.js +1 -1
  25. package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
  26. package/lib/seam/connect/unstable/schemas.d.ts +1 -1
  27. package/lib/seam/connect/unstable/schemas.js +1 -1
  28. package/lib/seam/connect/unstable/schemas.js.map +1 -1
  29. package/package.json +1 -1
  30. package/src/lib/seam/connect/openapi.ts +357 -37
  31. package/src/lib/seam/connect/route-types.ts +208 -14
  32. package/src/lib/seam/connect/unstable/model-types.ts +2 -0
  33. package/src/lib/seam/connect/unstable/models/access-codes/managed-access-code.ts +113 -21
  34. package/src/lib/seam/connect/unstable/models/acs/credential.ts +2 -1
  35. package/src/lib/seam/connect/unstable/models/acs/credential_pool.ts +19 -0
  36. package/src/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.ts +13 -0
  37. package/src/lib/seam/connect/unstable/models/acs/index.ts +2 -0
  38. package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +1 -1
  39. package/src/lib/seam/connect/unstable/schemas.ts +3 -0
@@ -4,81 +4,102 @@ declare const _default: {
4
4
  access_code: {
5
5
  properties: {
6
6
  access_code_id: {
7
+ description: string;
7
8
  format: string;
8
9
  type: string;
9
10
  };
10
11
  code: {
12
+ description: string;
11
13
  nullable: boolean;
12
14
  type: string;
13
15
  };
14
16
  common_code_key: {
17
+ description: string;
15
18
  nullable: boolean;
16
19
  type: string;
17
20
  };
18
21
  created_at: {
22
+ description: string;
19
23
  format: string;
20
24
  type: string;
21
25
  };
22
26
  device_id: {
27
+ description: string;
23
28
  format: string;
24
29
  type: string;
25
30
  };
26
31
  ends_at: {
32
+ description: string;
27
33
  format: string;
28
34
  nullable: boolean;
29
35
  type: string;
30
36
  };
31
37
  errors: {
38
+ description: string;
32
39
  nullable: boolean;
33
40
  };
34
41
  is_backup: {
42
+ description: string;
35
43
  type: string;
36
44
  };
37
45
  is_backup_access_code_available: {
46
+ description: string;
38
47
  type: string;
39
48
  };
40
49
  is_external_modification_allowed: {
50
+ description: string;
41
51
  type: string;
42
52
  };
43
53
  is_managed: {
54
+ description: string;
44
55
  enum: boolean[];
45
56
  type: string;
46
57
  };
47
58
  is_offline_access_code: {
59
+ description: string;
48
60
  type: string;
49
61
  };
50
62
  is_one_time_use: {
63
+ description: string;
51
64
  type: string;
52
65
  };
53
66
  is_scheduled_on_device: {
67
+ description: string;
54
68
  type: string;
55
69
  };
56
70
  is_waiting_for_code_assignment: {
71
+ description: string;
57
72
  type: string;
58
73
  };
59
74
  name: {
75
+ description: string;
60
76
  nullable: boolean;
61
77
  type: string;
62
78
  };
63
79
  pulled_backup_access_code_id: {
80
+ description: string;
64
81
  format: string;
65
82
  nullable: boolean;
66
83
  type: string;
67
84
  };
68
85
  starts_at: {
86
+ description: string;
69
87
  format: string;
70
88
  nullable: boolean;
71
89
  type: string;
72
90
  };
73
91
  status: {
92
+ description: string;
74
93
  enum: string[];
75
94
  type: string;
76
95
  };
77
96
  type: {
97
+ description: string;
78
98
  enum: string[];
79
99
  type: string;
80
100
  };
81
101
  warnings: {
102
+ description: string;
82
103
  nullable: boolean;
83
104
  };
84
105
  };
@@ -677,9 +698,6 @@ declare const _default: {
677
698
  };
678
699
  model: {
679
700
  properties: {
680
- access_codes_supported: {
681
- type: string;
682
- };
683
701
  accessory_keypad_supported: {
684
702
  type: string;
685
703
  };
@@ -692,6 +710,9 @@ declare const _default: {
692
710
  offline_access_codes_supported: {
693
711
  type: string;
694
712
  };
713
+ online_access_codes_supported: {
714
+ type: string;
715
+ };
695
716
  };
696
717
  required: string[];
697
718
  type: string;
@@ -2015,27 +2036,33 @@ declare const _default: {
2015
2036
  unmanaged_access_code: {
2016
2037
  properties: {
2017
2038
  access_code_id: {
2039
+ description: string;
2018
2040
  format: string;
2019
2041
  type: string;
2020
2042
  };
2021
2043
  code: {
2044
+ description: string;
2022
2045
  nullable: boolean;
2023
2046
  type: string;
2024
2047
  };
2025
2048
  created_at: {
2049
+ description: string;
2026
2050
  format: string;
2027
2051
  type: string;
2028
2052
  };
2029
2053
  device_id: {
2054
+ description: string;
2030
2055
  format: string;
2031
2056
  type: string;
2032
2057
  };
2033
2058
  ends_at: {
2059
+ description: string;
2034
2060
  format: string;
2035
2061
  nullable: boolean;
2036
2062
  type: string;
2037
2063
  };
2038
2064
  errors: {
2065
+ description: string;
2039
2066
  nullable: boolean;
2040
2067
  };
2041
2068
  is_managed: {
@@ -2043,10 +2070,12 @@ declare const _default: {
2043
2070
  type: string;
2044
2071
  };
2045
2072
  name: {
2073
+ description: string;
2046
2074
  nullable: boolean;
2047
2075
  type: string;
2048
2076
  };
2049
2077
  starts_at: {
2078
+ description: string;
2050
2079
  format: string;
2051
2080
  nullable: boolean;
2052
2081
  type: string;
@@ -2056,10 +2085,12 @@ declare const _default: {
2056
2085
  type: string;
2057
2086
  };
2058
2087
  type: {
2088
+ description: string;
2059
2089
  enum: string[];
2060
2090
  type: string;
2061
2091
  };
2062
2092
  warnings: {
2093
+ description: string;
2063
2094
  nullable: boolean;
2064
2095
  };
2065
2096
  };
@@ -4395,6 +4426,213 @@ declare const _default: {
4395
4426
  'x-fern-sdk-method-name': string;
4396
4427
  };
4397
4428
  };
4429
+ '/acs/credential_pools/list': {
4430
+ post: {
4431
+ operationId: string;
4432
+ requestBody: {
4433
+ content: {
4434
+ 'application/json': {
4435
+ schema: {
4436
+ properties: {
4437
+ acs_system_id: {
4438
+ format: string;
4439
+ type: string;
4440
+ };
4441
+ };
4442
+ required: string[];
4443
+ type: string;
4444
+ };
4445
+ };
4446
+ };
4447
+ };
4448
+ responses: {
4449
+ 200: {
4450
+ content: {
4451
+ 'application/json': {
4452
+ schema: {
4453
+ properties: {
4454
+ acs_credential_pools: {
4455
+ items: {
4456
+ properties: {
4457
+ acs_credential_pool_id: {
4458
+ format: string;
4459
+ type: string;
4460
+ };
4461
+ acs_system_id: {
4462
+ format: string;
4463
+ type: string;
4464
+ };
4465
+ created_at: {
4466
+ format: string;
4467
+ type: string;
4468
+ };
4469
+ display_name: {
4470
+ minLength: number;
4471
+ type: string;
4472
+ };
4473
+ external_type: {
4474
+ enum: string[];
4475
+ type: string;
4476
+ };
4477
+ external_type_display_name: {
4478
+ type: string;
4479
+ };
4480
+ workspace_id: {
4481
+ format: string;
4482
+ type: string;
4483
+ };
4484
+ };
4485
+ required: string[];
4486
+ type: string;
4487
+ };
4488
+ type: string;
4489
+ };
4490
+ ok: {
4491
+ type: string;
4492
+ };
4493
+ };
4494
+ required: string[];
4495
+ type: string;
4496
+ };
4497
+ };
4498
+ };
4499
+ description: string;
4500
+ };
4501
+ 400: {
4502
+ description: string;
4503
+ };
4504
+ 401: {
4505
+ description: string;
4506
+ };
4507
+ };
4508
+ security: ({
4509
+ access_token: never[];
4510
+ seam_workspace: never[];
4511
+ seam_client_session_token?: never;
4512
+ client_session_token?: never;
4513
+ } | {
4514
+ seam_client_session_token: never[];
4515
+ access_token?: never;
4516
+ seam_workspace?: never;
4517
+ client_session_token?: never;
4518
+ } | {
4519
+ client_session_token: never[];
4520
+ access_token?: never;
4521
+ seam_workspace?: never;
4522
+ seam_client_session_token?: never;
4523
+ })[];
4524
+ summary: string;
4525
+ tags: never[];
4526
+ 'x-fern-sdk-group-name': string[];
4527
+ 'x-fern-sdk-method-name': string;
4528
+ };
4529
+ };
4530
+ '/acs/credential_provisioning_automations/launch': {
4531
+ post: {
4532
+ operationId: string;
4533
+ requestBody: {
4534
+ content: {
4535
+ 'application/json': {
4536
+ schema: {
4537
+ properties: {
4538
+ acs_credential_pool_id: {
4539
+ format: string;
4540
+ type: string;
4541
+ };
4542
+ create_credential_manager_user: {
4543
+ type: string;
4544
+ };
4545
+ credential_manager_acs_system_id: {
4546
+ format: string;
4547
+ type: string;
4548
+ };
4549
+ credential_manager_acs_user_id: {
4550
+ format: string;
4551
+ type: string;
4552
+ };
4553
+ user_identity_id: {
4554
+ format: string;
4555
+ type: string;
4556
+ };
4557
+ };
4558
+ required: string[];
4559
+ type: string;
4560
+ };
4561
+ };
4562
+ };
4563
+ };
4564
+ responses: {
4565
+ 200: {
4566
+ content: {
4567
+ 'application/json': {
4568
+ schema: {
4569
+ properties: {
4570
+ acs_credential_provisioning_automation: {
4571
+ properties: {
4572
+ acs_credential_provisioning_automation_id: {
4573
+ format: string;
4574
+ type: string;
4575
+ };
4576
+ created_at: {
4577
+ format: string;
4578
+ type: string;
4579
+ };
4580
+ credential_manager_acs_system_id: {
4581
+ format: string;
4582
+ type: string;
4583
+ };
4584
+ user_identity_id: {
4585
+ format: string;
4586
+ type: string;
4587
+ };
4588
+ workspace_id: {
4589
+ format: string;
4590
+ type: string;
4591
+ };
4592
+ };
4593
+ required: string[];
4594
+ type: string;
4595
+ };
4596
+ ok: {
4597
+ type: string;
4598
+ };
4599
+ };
4600
+ required: string[];
4601
+ type: string;
4602
+ };
4603
+ };
4604
+ };
4605
+ description: string;
4606
+ };
4607
+ 400: {
4608
+ description: string;
4609
+ };
4610
+ 401: {
4611
+ description: string;
4612
+ };
4613
+ };
4614
+ security: ({
4615
+ access_token: never[];
4616
+ seam_workspace: never[];
4617
+ seam_client_session_token?: never;
4618
+ client_session_token?: never;
4619
+ } | {
4620
+ seam_client_session_token: never[];
4621
+ access_token?: never;
4622
+ seam_workspace?: never;
4623
+ client_session_token?: never;
4624
+ } | {
4625
+ client_session_token: never[];
4626
+ access_token?: never;
4627
+ seam_workspace?: never;
4628
+ seam_client_session_token?: never;
4629
+ })[];
4630
+ summary: string;
4631
+ tags: never[];
4632
+ 'x-fern-sdk-group-name': string[];
4633
+ 'x-fern-sdk-method-name': string;
4634
+ };
4635
+ };
4398
4636
  '/acs/credentials/assign': {
4399
4637
  patch: {
4400
4638
  operationId: string;
@@ -4430,6 +4668,10 @@ declare const _default: {
4430
4668
  format: string;
4431
4669
  type: string;
4432
4670
  };
4671
+ acs_credential_pool_id: {
4672
+ format: string;
4673
+ type: string;
4674
+ };
4433
4675
  acs_system_id: {
4434
4676
  format: string;
4435
4677
  type: string;
@@ -4537,6 +4779,10 @@ declare const _default: {
4537
4779
  format: string;
4538
4780
  type: string;
4539
4781
  };
4782
+ acs_credential_pool_id: {
4783
+ format: string;
4784
+ type: string;
4785
+ };
4540
4786
  acs_system_id: {
4541
4787
  format: string;
4542
4788
  type: string;
@@ -4647,6 +4893,10 @@ declare const _default: {
4647
4893
  format: string;
4648
4894
  type: string;
4649
4895
  };
4896
+ acs_credential_pool_id: {
4897
+ format: string;
4898
+ type: string;
4899
+ };
4650
4900
  acs_system_id: {
4651
4901
  format: string;
4652
4902
  type: string;
@@ -4818,6 +5068,10 @@ declare const _default: {
4818
5068
  format: string;
4819
5069
  type: string;
4820
5070
  };
5071
+ acs_credential_pool_id: {
5072
+ format: string;
5073
+ type: string;
5074
+ };
4821
5075
  acs_system_id: {
4822
5076
  format: string;
4823
5077
  type: string;
@@ -4951,6 +5205,10 @@ declare const _default: {
4951
5205
  format: string;
4952
5206
  type: string;
4953
5207
  };
5208
+ acs_credential_pool_id: {
5209
+ format: string;
5210
+ type: string;
5211
+ };
4954
5212
  acs_system_id: {
4955
5213
  format: string;
4956
5214
  type: string;
@@ -5063,6 +5321,10 @@ declare const _default: {
5063
5321
  format: string;
5064
5322
  type: string;
5065
5323
  };
5324
+ acs_credential_pool_id: {
5325
+ format: string;
5326
+ type: string;
5327
+ };
5066
5328
  acs_system_id: {
5067
5329
  format: string;
5068
5330
  type: string;
@@ -5170,6 +5432,10 @@ declare const _default: {
5170
5432
  format: string;
5171
5433
  type: string;
5172
5434
  };
5435
+ acs_credential_pool_id: {
5436
+ format: string;
5437
+ type: string;
5438
+ };
5173
5439
  acs_system_id: {
5174
5440
  format: string;
5175
5441
  type: string;