@seamapi/types 1.81.0 → 1.82.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 +75 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +150 -37
- package/lib/seam/connect/openapi.d.ts +117 -26
- package/lib/seam/connect/openapi.js +74 -18
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +29 -7
- package/lib/seam/connect/stable/models/connect-webview.d.ts +3 -3
- package/lib/seam/connect/stable/models/custom-metadata.d.ts +1 -1
- package/lib/seam/connect/stable/models/custom-metadata.js +1 -1
- package/lib/seam/connect/stable/models/custom-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/user.js +1 -9
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/models/phone-number.d.ts +2 -0
- package/lib/seam/connect/unstable/models/phone-number.js +11 -0
- package/lib/seam/connect/unstable/models/phone-number.js.map +1 -0
- package/lib/seam/connect/unstable/models/user-identity.d.ts +3 -0
- package/lib/seam/connect/unstable/models/user-identity.js +2 -0
- package/lib/seam/connect/unstable/models/user-identity.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +74 -18
- package/src/lib/seam/connect/route-types.ts +29 -15
- package/src/lib/seam/connect/stable/models/custom-metadata.ts +1 -4
- package/src/lib/seam/connect/unstable/models/acs/user.ts +1 -13
- package/src/lib/seam/connect/unstable/models/phone-number.ts +14 -0
- package/src/lib/seam/connect/unstable/models/user-identity.ts +3 -0
|
@@ -405,13 +405,7 @@ export default {
|
|
|
405
405
|
created_at: { format: 'date-time', type: 'string' },
|
|
406
406
|
custom_metadata: {
|
|
407
407
|
additionalProperties: {
|
|
408
|
-
|
|
409
|
-
oneOf: [
|
|
410
|
-
{ maxLength: 500, type: 'string' },
|
|
411
|
-
{ type: 'number' },
|
|
412
|
-
{ format: 'null', nullable: true, type: 'string' },
|
|
413
|
-
{ type: 'boolean' },
|
|
414
|
-
],
|
|
408
|
+
oneOf: [{ maxLength: 500, type: 'string' }, { type: 'boolean' }],
|
|
415
409
|
},
|
|
416
410
|
type: 'object',
|
|
417
411
|
},
|
|
@@ -467,13 +461,7 @@ export default {
|
|
|
467
461
|
created_at: { format: 'date-time', type: 'string' },
|
|
468
462
|
custom_metadata: {
|
|
469
463
|
additionalProperties: {
|
|
470
|
-
|
|
471
|
-
oneOf: [
|
|
472
|
-
{ type: 'string' },
|
|
473
|
-
{ type: 'number' },
|
|
474
|
-
{ type: 'boolean' },
|
|
475
|
-
{ format: 'null', nullable: true, type: 'string' },
|
|
476
|
-
],
|
|
464
|
+
oneOf: [{ maxLength: 500, type: 'string' }, { type: 'boolean' }],
|
|
477
465
|
},
|
|
478
466
|
type: 'object',
|
|
479
467
|
},
|
|
@@ -6297,6 +6285,68 @@ export default {
|
|
|
6297
6285
|
'x-fern-sdk-method-name': 'list',
|
|
6298
6286
|
},
|
|
6299
6287
|
},
|
|
6288
|
+
'/acs/users/list_accessible_entrances': {
|
|
6289
|
+
post: {
|
|
6290
|
+
operationId: 'acsUsersListAccessibleEntrancesPost',
|
|
6291
|
+
requestBody: {
|
|
6292
|
+
content: {
|
|
6293
|
+
'application/json': {
|
|
6294
|
+
schema: {
|
|
6295
|
+
properties: { acs_user_id: { format: 'uuid', type: 'string' } },
|
|
6296
|
+
required: ['acs_user_id'],
|
|
6297
|
+
type: 'object',
|
|
6298
|
+
},
|
|
6299
|
+
},
|
|
6300
|
+
},
|
|
6301
|
+
},
|
|
6302
|
+
responses: {
|
|
6303
|
+
200: {
|
|
6304
|
+
content: {
|
|
6305
|
+
'application/json': {
|
|
6306
|
+
schema: {
|
|
6307
|
+
properties: {
|
|
6308
|
+
acs_entrances: {
|
|
6309
|
+
items: {
|
|
6310
|
+
properties: {
|
|
6311
|
+
acs_entrance_id: { format: 'uuid', type: 'string' },
|
|
6312
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6313
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
6314
|
+
display_name: { type: 'string' },
|
|
6315
|
+
},
|
|
6316
|
+
required: [
|
|
6317
|
+
'acs_entrance_id',
|
|
6318
|
+
'display_name',
|
|
6319
|
+
'acs_system_id',
|
|
6320
|
+
'created_at',
|
|
6321
|
+
],
|
|
6322
|
+
type: 'object',
|
|
6323
|
+
},
|
|
6324
|
+
type: 'array',
|
|
6325
|
+
},
|
|
6326
|
+
ok: { type: 'boolean' },
|
|
6327
|
+
},
|
|
6328
|
+
required: ['acs_entrances', 'ok'],
|
|
6329
|
+
type: 'object',
|
|
6330
|
+
},
|
|
6331
|
+
},
|
|
6332
|
+
},
|
|
6333
|
+
description: 'OK',
|
|
6334
|
+
},
|
|
6335
|
+
400: { description: 'Bad Request' },
|
|
6336
|
+
401: { description: 'Unauthorized' },
|
|
6337
|
+
},
|
|
6338
|
+
security: [
|
|
6339
|
+
{ client_session: [] },
|
|
6340
|
+
{ pat_with_workspace: [] },
|
|
6341
|
+
{ console_session: [] },
|
|
6342
|
+
{ api_key: [] },
|
|
6343
|
+
],
|
|
6344
|
+
summary: '/acs/users/list_accessible_entrances',
|
|
6345
|
+
tags: ['/acs'],
|
|
6346
|
+
'x-fern-sdk-group-name': ['acs', 'users'],
|
|
6347
|
+
'x-fern-sdk-method-name': 'list_accessible_entrances',
|
|
6348
|
+
},
|
|
6349
|
+
},
|
|
6300
6350
|
'/acs/users/remove_from_access_group': {
|
|
6301
6351
|
post: {
|
|
6302
6352
|
operationId: 'acsUsersRemoveFromAccessGroupPost',
|
|
@@ -7223,11 +7273,8 @@ export default {
|
|
|
7223
7273
|
automatically_manage_new_devices: { type: 'boolean' },
|
|
7224
7274
|
custom_metadata: {
|
|
7225
7275
|
additionalProperties: {
|
|
7226
|
-
nullable: true,
|
|
7227
7276
|
oneOf: [
|
|
7228
7277
|
{ maxLength: 500, type: 'string' },
|
|
7229
|
-
{ type: 'number' },
|
|
7230
|
-
{ format: 'null', nullable: true, type: 'string' },
|
|
7231
7278
|
{ type: 'boolean' },
|
|
7232
7279
|
],
|
|
7233
7280
|
},
|
|
@@ -10989,6 +11036,7 @@ export default {
|
|
|
10989
11036
|
type: 'string',
|
|
10990
11037
|
},
|
|
10991
11038
|
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
11039
|
+
phone_number: { nullable: true, type: 'string' },
|
|
10992
11040
|
user_identity_key: {
|
|
10993
11041
|
minLength: 1,
|
|
10994
11042
|
nullable: true,
|
|
@@ -11021,6 +11069,7 @@ export default {
|
|
|
11021
11069
|
nullable: true,
|
|
11022
11070
|
type: 'string',
|
|
11023
11071
|
},
|
|
11072
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11024
11073
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11025
11074
|
user_identity_key: {
|
|
11026
11075
|
minLength: 1,
|
|
@@ -11033,6 +11082,7 @@ export default {
|
|
|
11033
11082
|
'user_identity_id',
|
|
11034
11083
|
'user_identity_key',
|
|
11035
11084
|
'email_address',
|
|
11085
|
+
'phone_number',
|
|
11036
11086
|
'display_name',
|
|
11037
11087
|
'full_name',
|
|
11038
11088
|
'created_at',
|
|
@@ -11295,6 +11345,7 @@ export default {
|
|
|
11295
11345
|
nullable: true,
|
|
11296
11346
|
type: 'string',
|
|
11297
11347
|
},
|
|
11348
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11298
11349
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11299
11350
|
user_identity_key: {
|
|
11300
11351
|
minLength: 1,
|
|
@@ -11307,6 +11358,7 @@ export default {
|
|
|
11307
11358
|
'user_identity_id',
|
|
11308
11359
|
'user_identity_key',
|
|
11309
11360
|
'email_address',
|
|
11361
|
+
'phone_number',
|
|
11310
11362
|
'display_name',
|
|
11311
11363
|
'full_name',
|
|
11312
11364
|
'created_at',
|
|
@@ -11446,6 +11498,7 @@ export default {
|
|
|
11446
11498
|
nullable: true,
|
|
11447
11499
|
type: 'string',
|
|
11448
11500
|
},
|
|
11501
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11449
11502
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11450
11503
|
user_identity_key: {
|
|
11451
11504
|
minLength: 1,
|
|
@@ -11458,6 +11511,7 @@ export default {
|
|
|
11458
11511
|
'user_identity_id',
|
|
11459
11512
|
'user_identity_key',
|
|
11460
11513
|
'email_address',
|
|
11514
|
+
'phone_number',
|
|
11461
11515
|
'display_name',
|
|
11462
11516
|
'full_name',
|
|
11463
11517
|
'created_at',
|
|
@@ -11512,6 +11566,7 @@ export default {
|
|
|
11512
11566
|
nullable: true,
|
|
11513
11567
|
type: 'string',
|
|
11514
11568
|
},
|
|
11569
|
+
phone_number: { nullable: true, type: 'string' },
|
|
11515
11570
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
11516
11571
|
user_identity_key: {
|
|
11517
11572
|
minLength: 1,
|
|
@@ -11524,6 +11579,7 @@ export default {
|
|
|
11524
11579
|
'user_identity_id',
|
|
11525
11580
|
'user_identity_key',
|
|
11526
11581
|
'email_address',
|
|
11582
|
+
'phone_number',
|
|
11527
11583
|
'display_name',
|
|
11528
11584
|
'full_name',
|
|
11529
11585
|
'created_at',
|
|
@@ -11651,7 +11707,7 @@ export default {
|
|
|
11651
11707
|
{ api_key: [] },
|
|
11652
11708
|
],
|
|
11653
11709
|
summary: '/user_identities/list_acs_systems',
|
|
11654
|
-
tags: [],
|
|
11710
|
+
tags: ['/user_identities'],
|
|
11655
11711
|
'x-fern-sdk-group-name': ['user_identities'],
|
|
11656
11712
|
'x-fern-sdk-method-name': 'list_acs_systems',
|
|
11657
11713
|
},
|