@seamapi/types 1.377.0 → 1.378.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 +92 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +224 -118
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +28 -28
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +195 -10
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +16 -3
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/bridges/bridge-client-session.d.ts +80 -80
- package/lib/seam/connect/models/bridges/bridge-client-session.js +5 -0
- package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +94 -8
- package/lib/seam/connect/openapi.js +78 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +77 -57
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +17 -3
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +79 -16
- package/src/lib/seam/connect/route-types.ts +77 -57
|
@@ -2640,14 +2640,13 @@ export default {
|
|
|
2640
2640
|
from: {
|
|
2641
2641
|
properties: {
|
|
2642
2642
|
ends_at: {
|
|
2643
|
-
description: "Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
2644
2643
|
format: 'date-time',
|
|
2645
2644
|
nullable: true,
|
|
2646
2645
|
type: 'string',
|
|
2647
2646
|
},
|
|
2648
2647
|
starts_at: {
|
|
2649
|
-
description: "Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
2650
2648
|
format: 'date-time',
|
|
2649
|
+
nullable: true,
|
|
2651
2650
|
type: 'string',
|
|
2652
2651
|
},
|
|
2653
2652
|
},
|
|
@@ -2661,14 +2660,13 @@ export default {
|
|
|
2661
2660
|
to: {
|
|
2662
2661
|
properties: {
|
|
2663
2662
|
ends_at: {
|
|
2664
|
-
description: "Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
2665
2663
|
format: 'date-time',
|
|
2666
2664
|
nullable: true,
|
|
2667
2665
|
type: 'string',
|
|
2668
2666
|
},
|
|
2669
2667
|
starts_at: {
|
|
2670
|
-
description: "Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
2671
2668
|
format: 'date-time',
|
|
2669
|
+
nullable: true,
|
|
2672
2670
|
type: 'string',
|
|
2673
2671
|
},
|
|
2674
2672
|
},
|
|
@@ -14643,14 +14641,13 @@ export default {
|
|
|
14643
14641
|
from: {
|
|
14644
14642
|
properties: {
|
|
14645
14643
|
ends_at: {
|
|
14646
|
-
description: "Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
14647
14644
|
format: 'date-time',
|
|
14648
14645
|
nullable: true,
|
|
14649
14646
|
type: 'string',
|
|
14650
14647
|
},
|
|
14651
14648
|
starts_at: {
|
|
14652
|
-
description: "Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
14653
14649
|
format: 'date-time',
|
|
14650
|
+
nullable: true,
|
|
14654
14651
|
type: 'string',
|
|
14655
14652
|
},
|
|
14656
14653
|
},
|
|
@@ -14664,14 +14661,13 @@ export default {
|
|
|
14664
14661
|
to: {
|
|
14665
14662
|
properties: {
|
|
14666
14663
|
ends_at: {
|
|
14667
|
-
description: "Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
14668
14664
|
format: 'date-time',
|
|
14669
14665
|
nullable: true,
|
|
14670
14666
|
type: 'string',
|
|
14671
14667
|
},
|
|
14672
14668
|
starts_at: {
|
|
14673
|
-
description: "Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
14674
14669
|
format: 'date-time',
|
|
14670
|
+
nullable: true,
|
|
14675
14671
|
type: 'string',
|
|
14676
14672
|
},
|
|
14677
14673
|
},
|
|
@@ -19246,6 +19242,60 @@ export default {
|
|
|
19246
19242
|
'x-title': 'Encode a Credential',
|
|
19247
19243
|
},
|
|
19248
19244
|
},
|
|
19245
|
+
'/acs/encoders/get': {
|
|
19246
|
+
post: {
|
|
19247
|
+
description: 'Returns a specified [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).',
|
|
19248
|
+
operationId: 'acsEncodersGetPost',
|
|
19249
|
+
requestBody: {
|
|
19250
|
+
content: {
|
|
19251
|
+
'application/json': {
|
|
19252
|
+
schema: {
|
|
19253
|
+
properties: {
|
|
19254
|
+
acs_encoder_id: {
|
|
19255
|
+
description: 'ID of the desired encoder.',
|
|
19256
|
+
format: 'uuid',
|
|
19257
|
+
type: 'string',
|
|
19258
|
+
},
|
|
19259
|
+
},
|
|
19260
|
+
required: ['acs_encoder_id'],
|
|
19261
|
+
type: 'object',
|
|
19262
|
+
},
|
|
19263
|
+
},
|
|
19264
|
+
},
|
|
19265
|
+
},
|
|
19266
|
+
responses: {
|
|
19267
|
+
200: {
|
|
19268
|
+
content: {
|
|
19269
|
+
'application/json': {
|
|
19270
|
+
schema: {
|
|
19271
|
+
properties: {
|
|
19272
|
+
acs_encoder: { $ref: '#/components/schemas/acs_encoder' },
|
|
19273
|
+
ok: { type: 'boolean' },
|
|
19274
|
+
},
|
|
19275
|
+
required: ['acs_encoder', 'ok'],
|
|
19276
|
+
type: 'object',
|
|
19277
|
+
},
|
|
19278
|
+
},
|
|
19279
|
+
},
|
|
19280
|
+
description: 'OK',
|
|
19281
|
+
},
|
|
19282
|
+
400: { description: 'Bad Request' },
|
|
19283
|
+
401: { description: 'Unauthorized' },
|
|
19284
|
+
},
|
|
19285
|
+
security: [
|
|
19286
|
+
{ pat_with_workspace: [] },
|
|
19287
|
+
{ console_session_with_workspace: [] },
|
|
19288
|
+
{ api_key: [] },
|
|
19289
|
+
],
|
|
19290
|
+
summary: '/acs/encoders/get',
|
|
19291
|
+
tags: ['/acs'],
|
|
19292
|
+
'x-fern-sdk-group-name': ['acs', 'encoders'],
|
|
19293
|
+
'x-fern-sdk-method-name': 'get',
|
|
19294
|
+
'x-fern-sdk-return-value': 'acs_encoder',
|
|
19295
|
+
'x-response-key': 'acs_encoder',
|
|
19296
|
+
'x-title': 'Get an Encoder',
|
|
19297
|
+
},
|
|
19298
|
+
},
|
|
19249
19299
|
'/acs/encoders/list': {
|
|
19250
19300
|
post: {
|
|
19251
19301
|
description: 'Returns a list of all [encoders](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).',
|
|
@@ -25214,10 +25264,12 @@ export default {
|
|
|
25214
25264
|
properties: {
|
|
25215
25265
|
can_tailscale_proxy_reach_bridge: {
|
|
25216
25266
|
description: 'Tailscale proxy cannot reach the bridge',
|
|
25267
|
+
nullable: true,
|
|
25217
25268
|
type: 'boolean',
|
|
25218
25269
|
},
|
|
25219
25270
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
25220
25271
|
description: 'Tailscale proxy cannot reach the Tailscale network',
|
|
25272
|
+
nullable: true,
|
|
25221
25273
|
type: 'boolean',
|
|
25222
25274
|
},
|
|
25223
25275
|
created_at: {
|
|
@@ -25231,14 +25283,17 @@ export default {
|
|
|
25231
25283
|
},
|
|
25232
25284
|
is_bridge_socks_server_healthy: {
|
|
25233
25285
|
description: "Bridge's SOCKS server is unhealthy",
|
|
25286
|
+
nullable: true,
|
|
25234
25287
|
type: 'boolean',
|
|
25235
25288
|
},
|
|
25236
25289
|
is_tailscale_proxy_reachable: {
|
|
25237
25290
|
description: 'Seam cannot reach the tailscale proxy',
|
|
25291
|
+
nullable: true,
|
|
25238
25292
|
type: 'boolean',
|
|
25239
25293
|
},
|
|
25240
25294
|
is_tailscale_proxy_socks_server_healthy: {
|
|
25241
25295
|
description: "Tailscale proxy's SOCKS server is unhealthy",
|
|
25296
|
+
nullable: true,
|
|
25242
25297
|
type: 'boolean',
|
|
25243
25298
|
},
|
|
25244
25299
|
message: { type: 'string' },
|
|
@@ -25370,10 +25425,12 @@ export default {
|
|
|
25370
25425
|
properties: {
|
|
25371
25426
|
can_tailscale_proxy_reach_bridge: {
|
|
25372
25427
|
description: 'Tailscale proxy cannot reach the bridge',
|
|
25428
|
+
nullable: true,
|
|
25373
25429
|
type: 'boolean',
|
|
25374
25430
|
},
|
|
25375
25431
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
25376
25432
|
description: 'Tailscale proxy cannot reach the Tailscale network',
|
|
25433
|
+
nullable: true,
|
|
25377
25434
|
type: 'boolean',
|
|
25378
25435
|
},
|
|
25379
25436
|
created_at: {
|
|
@@ -25387,14 +25444,17 @@ export default {
|
|
|
25387
25444
|
},
|
|
25388
25445
|
is_bridge_socks_server_healthy: {
|
|
25389
25446
|
description: "Bridge's SOCKS server is unhealthy",
|
|
25447
|
+
nullable: true,
|
|
25390
25448
|
type: 'boolean',
|
|
25391
25449
|
},
|
|
25392
25450
|
is_tailscale_proxy_reachable: {
|
|
25393
25451
|
description: 'Seam cannot reach the tailscale proxy',
|
|
25452
|
+
nullable: true,
|
|
25394
25453
|
type: 'boolean',
|
|
25395
25454
|
},
|
|
25396
25455
|
is_tailscale_proxy_socks_server_healthy: {
|
|
25397
25456
|
description: "Tailscale proxy's SOCKS server is unhealthy",
|
|
25457
|
+
nullable: true,
|
|
25398
25458
|
type: 'boolean',
|
|
25399
25459
|
},
|
|
25400
25460
|
message: { type: 'string' },
|
|
@@ -25517,10 +25577,12 @@ export default {
|
|
|
25517
25577
|
properties: {
|
|
25518
25578
|
can_tailscale_proxy_reach_bridge: {
|
|
25519
25579
|
description: 'Tailscale proxy cannot reach the bridge',
|
|
25580
|
+
nullable: true,
|
|
25520
25581
|
type: 'boolean',
|
|
25521
25582
|
},
|
|
25522
25583
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
25523
25584
|
description: 'Tailscale proxy cannot reach the Tailscale network',
|
|
25585
|
+
nullable: true,
|
|
25524
25586
|
type: 'boolean',
|
|
25525
25587
|
},
|
|
25526
25588
|
created_at: {
|
|
@@ -25534,14 +25596,17 @@ export default {
|
|
|
25534
25596
|
},
|
|
25535
25597
|
is_bridge_socks_server_healthy: {
|
|
25536
25598
|
description: "Bridge's SOCKS server is unhealthy",
|
|
25599
|
+
nullable: true,
|
|
25537
25600
|
type: 'boolean',
|
|
25538
25601
|
},
|
|
25539
25602
|
is_tailscale_proxy_reachable: {
|
|
25540
25603
|
description: 'Seam cannot reach the tailscale proxy',
|
|
25604
|
+
nullable: true,
|
|
25541
25605
|
type: 'boolean',
|
|
25542
25606
|
},
|
|
25543
25607
|
is_tailscale_proxy_socks_server_healthy: {
|
|
25544
25608
|
description: "Tailscale proxy's SOCKS server is unhealthy",
|
|
25609
|
+
nullable: true,
|
|
25545
25610
|
type: 'boolean',
|
|
25546
25611
|
},
|
|
25547
25612
|
message: { type: 'string' },
|
|
@@ -25673,10 +25738,12 @@ export default {
|
|
|
25673
25738
|
properties: {
|
|
25674
25739
|
can_tailscale_proxy_reach_bridge: {
|
|
25675
25740
|
description: 'Tailscale proxy cannot reach the bridge',
|
|
25741
|
+
nullable: true,
|
|
25676
25742
|
type: 'boolean',
|
|
25677
25743
|
},
|
|
25678
25744
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
25679
25745
|
description: 'Tailscale proxy cannot reach the Tailscale network',
|
|
25746
|
+
nullable: true,
|
|
25680
25747
|
type: 'boolean',
|
|
25681
25748
|
},
|
|
25682
25749
|
created_at: {
|
|
@@ -25690,14 +25757,17 @@ export default {
|
|
|
25690
25757
|
},
|
|
25691
25758
|
is_bridge_socks_server_healthy: {
|
|
25692
25759
|
description: "Bridge's SOCKS server is unhealthy",
|
|
25760
|
+
nullable: true,
|
|
25693
25761
|
type: 'boolean',
|
|
25694
25762
|
},
|
|
25695
25763
|
is_tailscale_proxy_reachable: {
|
|
25696
25764
|
description: 'Seam cannot reach the tailscale proxy',
|
|
25765
|
+
nullable: true,
|
|
25697
25766
|
type: 'boolean',
|
|
25698
25767
|
},
|
|
25699
25768
|
is_tailscale_proxy_socks_server_healthy: {
|
|
25700
25769
|
description: "Tailscale proxy's SOCKS server is unhealthy",
|
|
25770
|
+
nullable: true,
|
|
25701
25771
|
type: 'boolean',
|
|
25702
25772
|
},
|
|
25703
25773
|
message: { type: 'string' },
|