@seamapi/types 1.60.1 → 1.61.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.
- package/dist/connect.cjs +100 -35
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +296 -137
- package/lib/seam/connect/openapi.d.ts +259 -132
- package/lib/seam/connect/openapi.js +100 -35
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +37 -5
- package/lib/seam/connect/unstable/models/acs/user.d.ts +4 -4
- package/lib/seam/connect/unstable/models/acs/user.js +1 -0
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +100 -35
- package/src/lib/seam/connect/route-types.ts +61 -5
- package/src/lib/seam/connect/unstable/models/acs/user.ts +1 -0
|
@@ -229,7 +229,7 @@ export default {
|
|
|
229
229
|
},
|
|
230
230
|
email_address: { format: 'email', type: 'string' },
|
|
231
231
|
external_type: {
|
|
232
|
-
enum: ['pti_user', 'brivo_user', 'hid_cm_user'],
|
|
232
|
+
enum: ['pti_user', 'brivo_user', 'hid_cm_user', 'salto_site_user'],
|
|
233
233
|
type: 'string',
|
|
234
234
|
},
|
|
235
235
|
external_type_display_name: { type: 'string' },
|
|
@@ -451,6 +451,7 @@ export default {
|
|
|
451
451
|
properties: {
|
|
452
452
|
account_type: { type: 'string' },
|
|
453
453
|
account_type_display_name: { type: 'string' },
|
|
454
|
+
automatically_manage_new_devices: { type: 'boolean' },
|
|
454
455
|
connected_account_id: { format: 'uuid', type: 'string' },
|
|
455
456
|
created_at: { format: 'date-time', type: 'string' },
|
|
456
457
|
custom_metadata: {
|
|
@@ -478,7 +479,10 @@ export default {
|
|
|
478
479
|
},
|
|
479
480
|
warnings: { nullable: true },
|
|
480
481
|
},
|
|
481
|
-
required: [
|
|
482
|
+
required: [
|
|
483
|
+
'account_type_display_name',
|
|
484
|
+
'automatically_manage_new_devices',
|
|
485
|
+
],
|
|
482
486
|
type: 'object',
|
|
483
487
|
},
|
|
484
488
|
device: {
|
|
@@ -2516,9 +2520,10 @@ export default {
|
|
|
2516
2520
|
401: { description: 'Unauthorized' },
|
|
2517
2521
|
},
|
|
2518
2522
|
security: [
|
|
2519
|
-
{
|
|
2520
|
-
{
|
|
2521
|
-
{
|
|
2523
|
+
{ client_session: [] },
|
|
2524
|
+
{ pat_with_workspace: [] },
|
|
2525
|
+
{ console_session: [] },
|
|
2526
|
+
{ api_key: [] },
|
|
2522
2527
|
],
|
|
2523
2528
|
summary: '/access_codes/unmanaged/convert_to_managed',
|
|
2524
2529
|
tags: ['/access_codes'],
|
|
@@ -2560,9 +2565,10 @@ export default {
|
|
|
2560
2565
|
401: { description: 'Unauthorized' },
|
|
2561
2566
|
},
|
|
2562
2567
|
security: [
|
|
2563
|
-
{
|
|
2564
|
-
{
|
|
2565
|
-
{
|
|
2568
|
+
{ client_session: [] },
|
|
2569
|
+
{ pat_with_workspace: [] },
|
|
2570
|
+
{ console_session: [] },
|
|
2571
|
+
{ api_key: [] },
|
|
2566
2572
|
],
|
|
2567
2573
|
summary: '/access_codes/unmanaged/convert_to_managed',
|
|
2568
2574
|
tags: ['/access_codes'],
|
|
@@ -2609,9 +2615,10 @@ export default {
|
|
|
2609
2615
|
401: { description: 'Unauthorized' },
|
|
2610
2616
|
},
|
|
2611
2617
|
security: [
|
|
2612
|
-
{
|
|
2613
|
-
{
|
|
2614
|
-
{
|
|
2618
|
+
{ client_session: [] },
|
|
2619
|
+
{ pat_with_workspace: [] },
|
|
2620
|
+
{ console_session: [] },
|
|
2621
|
+
{ api_key: [] },
|
|
2615
2622
|
],
|
|
2616
2623
|
summary: '/access_codes/unmanaged/delete',
|
|
2617
2624
|
tags: ['/access_codes'],
|
|
@@ -2659,9 +2666,10 @@ export default {
|
|
|
2659
2666
|
401: { description: 'Unauthorized' },
|
|
2660
2667
|
},
|
|
2661
2668
|
security: [
|
|
2662
|
-
{
|
|
2663
|
-
{
|
|
2664
|
-
{
|
|
2669
|
+
{ client_session: [] },
|
|
2670
|
+
{ pat_with_workspace: [] },
|
|
2671
|
+
{ console_session: [] },
|
|
2672
|
+
{ api_key: [] },
|
|
2665
2673
|
],
|
|
2666
2674
|
summary: '/access_codes/unmanaged/get',
|
|
2667
2675
|
tags: ['/access_codes'],
|
|
@@ -2712,9 +2720,10 @@ export default {
|
|
|
2712
2720
|
401: { description: 'Unauthorized' },
|
|
2713
2721
|
},
|
|
2714
2722
|
security: [
|
|
2715
|
-
{
|
|
2716
|
-
{
|
|
2717
|
-
{
|
|
2723
|
+
{ client_session: [] },
|
|
2724
|
+
{ pat_with_workspace: [] },
|
|
2725
|
+
{ console_session: [] },
|
|
2726
|
+
{ api_key: [] },
|
|
2718
2727
|
],
|
|
2719
2728
|
summary: '/access_codes/unmanaged/list',
|
|
2720
2729
|
tags: ['/access_codes'],
|
|
@@ -2760,9 +2769,10 @@ export default {
|
|
|
2760
2769
|
401: { description: 'Unauthorized' },
|
|
2761
2770
|
},
|
|
2762
2771
|
security: [
|
|
2763
|
-
{
|
|
2764
|
-
{
|
|
2765
|
-
{
|
|
2772
|
+
{ client_session: [] },
|
|
2773
|
+
{ pat_with_workspace: [] },
|
|
2774
|
+
{ console_session: [] },
|
|
2775
|
+
{ api_key: [] },
|
|
2766
2776
|
],
|
|
2767
2777
|
summary: '/access_codes/unmanaged/update',
|
|
2768
2778
|
tags: ['/access_codes'],
|
|
@@ -2804,9 +2814,10 @@ export default {
|
|
|
2804
2814
|
401: { description: 'Unauthorized' },
|
|
2805
2815
|
},
|
|
2806
2816
|
security: [
|
|
2807
|
-
{
|
|
2808
|
-
{
|
|
2809
|
-
{
|
|
2817
|
+
{ client_session: [] },
|
|
2818
|
+
{ pat_with_workspace: [] },
|
|
2819
|
+
{ console_session: [] },
|
|
2820
|
+
{ api_key: [] },
|
|
2810
2821
|
],
|
|
2811
2822
|
summary: '/access_codes/unmanaged/update',
|
|
2812
2823
|
tags: ['/access_codes'],
|
|
@@ -3074,9 +3085,10 @@ export default {
|
|
|
3074
3085
|
401: { description: 'Unauthorized' },
|
|
3075
3086
|
},
|
|
3076
3087
|
security: [
|
|
3077
|
-
{
|
|
3078
|
-
{
|
|
3079
|
-
{
|
|
3088
|
+
{ client_session: [] },
|
|
3089
|
+
{ pat_with_workspace: [] },
|
|
3090
|
+
{ console_session: [] },
|
|
3091
|
+
{ api_key: [] },
|
|
3080
3092
|
],
|
|
3081
3093
|
summary: '/acs/access_groups/add_user',
|
|
3082
3094
|
tags: [],
|
|
@@ -3116,9 +3128,10 @@ export default {
|
|
|
3116
3128
|
401: { description: 'Unauthorized' },
|
|
3117
3129
|
},
|
|
3118
3130
|
security: [
|
|
3119
|
-
{
|
|
3120
|
-
{
|
|
3121
|
-
{
|
|
3131
|
+
{ client_session: [] },
|
|
3132
|
+
{ pat_with_workspace: [] },
|
|
3133
|
+
{ console_session: [] },
|
|
3134
|
+
{ api_key: [] },
|
|
3122
3135
|
],
|
|
3123
3136
|
summary: '/acs/access_groups/add_user',
|
|
3124
3137
|
tags: [],
|
|
@@ -3163,9 +3176,10 @@ export default {
|
|
|
3163
3176
|
401: { description: 'Unauthorized' },
|
|
3164
3177
|
},
|
|
3165
3178
|
security: [
|
|
3166
|
-
{
|
|
3167
|
-
{
|
|
3168
|
-
{
|
|
3179
|
+
{ client_session: [] },
|
|
3180
|
+
{ pat_with_workspace: [] },
|
|
3181
|
+
{ console_session: [] },
|
|
3182
|
+
{ api_key: [] },
|
|
3169
3183
|
],
|
|
3170
3184
|
summary: '/acs/access_groups/get',
|
|
3171
3185
|
tags: [],
|
|
@@ -3261,9 +3275,10 @@ export default {
|
|
|
3261
3275
|
401: { description: 'Unauthorized' },
|
|
3262
3276
|
},
|
|
3263
3277
|
security: [
|
|
3264
|
-
{
|
|
3265
|
-
{
|
|
3266
|
-
{
|
|
3278
|
+
{ client_session: [] },
|
|
3279
|
+
{ pat_with_workspace: [] },
|
|
3280
|
+
{ console_session: [] },
|
|
3281
|
+
{ api_key: [] },
|
|
3267
3282
|
],
|
|
3268
3283
|
summary: '/acs/access_groups/list_users',
|
|
3269
3284
|
tags: [],
|
|
@@ -6077,6 +6092,56 @@ export default {
|
|
|
6077
6092
|
'x-fern-sdk-return-value': 'connected_accounts',
|
|
6078
6093
|
},
|
|
6079
6094
|
},
|
|
6095
|
+
'/connected_accounts/update': {
|
|
6096
|
+
post: {
|
|
6097
|
+
operationId: 'connectedAccountsUpdatePost',
|
|
6098
|
+
requestBody: {
|
|
6099
|
+
content: {
|
|
6100
|
+
'application/json': {
|
|
6101
|
+
schema: {
|
|
6102
|
+
properties: {
|
|
6103
|
+
automatically_manage_new_devices: { type: 'boolean' },
|
|
6104
|
+
connected_account_id: { format: 'uuid', type: 'string' },
|
|
6105
|
+
},
|
|
6106
|
+
required: ['connected_account_id'],
|
|
6107
|
+
type: 'object',
|
|
6108
|
+
},
|
|
6109
|
+
},
|
|
6110
|
+
},
|
|
6111
|
+
},
|
|
6112
|
+
responses: {
|
|
6113
|
+
200: {
|
|
6114
|
+
content: {
|
|
6115
|
+
'application/json': {
|
|
6116
|
+
schema: {
|
|
6117
|
+
properties: {
|
|
6118
|
+
connected_account: {
|
|
6119
|
+
$ref: '#/components/schemas/connected_account',
|
|
6120
|
+
},
|
|
6121
|
+
ok: { type: 'boolean' },
|
|
6122
|
+
},
|
|
6123
|
+
required: ['connected_account', 'ok'],
|
|
6124
|
+
type: 'object',
|
|
6125
|
+
},
|
|
6126
|
+
},
|
|
6127
|
+
},
|
|
6128
|
+
description: 'OK',
|
|
6129
|
+
},
|
|
6130
|
+
400: { description: 'Bad Request' },
|
|
6131
|
+
401: { description: 'Unauthorized' },
|
|
6132
|
+
},
|
|
6133
|
+
security: [
|
|
6134
|
+
{ pat_with_workspace: [] },
|
|
6135
|
+
{ console_session: [] },
|
|
6136
|
+
{ api_key: [] },
|
|
6137
|
+
],
|
|
6138
|
+
summary: '/connected_accounts/update',
|
|
6139
|
+
tags: ['/connected_accounts'],
|
|
6140
|
+
'x-fern-sdk-group-name': ['connected_accounts'],
|
|
6141
|
+
'x-fern-sdk-method-name': 'update',
|
|
6142
|
+
'x-fern-sdk-return-value': 'connected_account',
|
|
6143
|
+
},
|
|
6144
|
+
},
|
|
6080
6145
|
'/devices/delete': {
|
|
6081
6146
|
post: {
|
|
6082
6147
|
operationId: 'devicesDeletePost',
|