@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
package/dist/connect.d.cts
CHANGED
|
@@ -5012,45 +5012,45 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5012
5012
|
}, {
|
|
5013
5013
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
5014
5014
|
from: z.ZodObject<{
|
|
5015
|
-
starts_at: z.ZodString
|
|
5015
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
5016
5016
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
5017
5017
|
}, "strip", z.ZodTypeAny, {
|
|
5018
|
-
starts_at: string;
|
|
5018
|
+
starts_at: string | null;
|
|
5019
5019
|
ends_at: string | null;
|
|
5020
5020
|
}, {
|
|
5021
|
-
starts_at: string;
|
|
5021
|
+
starts_at: string | null;
|
|
5022
5022
|
ends_at: string | null;
|
|
5023
5023
|
}>;
|
|
5024
5024
|
to: z.ZodObject<{
|
|
5025
|
-
starts_at: z.ZodString
|
|
5025
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
5026
5026
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
5027
5027
|
}, "strip", z.ZodTypeAny, {
|
|
5028
|
-
starts_at: string;
|
|
5028
|
+
starts_at: string | null;
|
|
5029
5029
|
ends_at: string | null;
|
|
5030
5030
|
}, {
|
|
5031
|
-
starts_at: string;
|
|
5031
|
+
starts_at: string | null;
|
|
5032
5032
|
ends_at: string | null;
|
|
5033
5033
|
}>;
|
|
5034
5034
|
}>, "strip", z.ZodTypeAny, {
|
|
5035
5035
|
created_at: string;
|
|
5036
5036
|
mutation_code: "updating_access_schedule";
|
|
5037
5037
|
from: {
|
|
5038
|
-
starts_at: string;
|
|
5038
|
+
starts_at: string | null;
|
|
5039
5039
|
ends_at: string | null;
|
|
5040
5040
|
};
|
|
5041
5041
|
to: {
|
|
5042
|
-
starts_at: string;
|
|
5042
|
+
starts_at: string | null;
|
|
5043
5043
|
ends_at: string | null;
|
|
5044
5044
|
};
|
|
5045
5045
|
}, {
|
|
5046
5046
|
created_at: string;
|
|
5047
5047
|
mutation_code: "updating_access_schedule";
|
|
5048
5048
|
from: {
|
|
5049
|
-
starts_at: string;
|
|
5049
|
+
starts_at: string | null;
|
|
5050
5050
|
ends_at: string | null;
|
|
5051
5051
|
};
|
|
5052
5052
|
to: {
|
|
5053
|
-
starts_at: string;
|
|
5053
|
+
starts_at: string | null;
|
|
5054
5054
|
ends_at: string | null;
|
|
5055
5055
|
};
|
|
5056
5056
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -5215,11 +5215,11 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5215
5215
|
created_at: string;
|
|
5216
5216
|
mutation_code: "updating_access_schedule";
|
|
5217
5217
|
from: {
|
|
5218
|
-
starts_at: string;
|
|
5218
|
+
starts_at: string | null;
|
|
5219
5219
|
ends_at: string | null;
|
|
5220
5220
|
};
|
|
5221
5221
|
to: {
|
|
5222
|
-
starts_at: string;
|
|
5222
|
+
starts_at: string | null;
|
|
5223
5223
|
ends_at: string | null;
|
|
5224
5224
|
};
|
|
5225
5225
|
} | {
|
|
@@ -5323,11 +5323,11 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5323
5323
|
created_at: string;
|
|
5324
5324
|
mutation_code: "updating_access_schedule";
|
|
5325
5325
|
from: {
|
|
5326
|
-
starts_at: string;
|
|
5326
|
+
starts_at: string | null;
|
|
5327
5327
|
ends_at: string | null;
|
|
5328
5328
|
};
|
|
5329
5329
|
to: {
|
|
5330
|
-
starts_at: string;
|
|
5330
|
+
starts_at: string | null;
|
|
5331
5331
|
ends_at: string | null;
|
|
5332
5332
|
};
|
|
5333
5333
|
} | {
|
|
@@ -5563,45 +5563,45 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5563
5563
|
}, {
|
|
5564
5564
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
5565
5565
|
from: z.ZodObject<{
|
|
5566
|
-
starts_at: z.ZodString
|
|
5566
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
5567
5567
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
5568
5568
|
}, "strip", z.ZodTypeAny, {
|
|
5569
|
-
starts_at: string;
|
|
5569
|
+
starts_at: string | null;
|
|
5570
5570
|
ends_at: string | null;
|
|
5571
5571
|
}, {
|
|
5572
|
-
starts_at: string;
|
|
5572
|
+
starts_at: string | null;
|
|
5573
5573
|
ends_at: string | null;
|
|
5574
5574
|
}>;
|
|
5575
5575
|
to: z.ZodObject<{
|
|
5576
|
-
starts_at: z.ZodString
|
|
5576
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
5577
5577
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
5578
5578
|
}, "strip", z.ZodTypeAny, {
|
|
5579
|
-
starts_at: string;
|
|
5579
|
+
starts_at: string | null;
|
|
5580
5580
|
ends_at: string | null;
|
|
5581
5581
|
}, {
|
|
5582
|
-
starts_at: string;
|
|
5582
|
+
starts_at: string | null;
|
|
5583
5583
|
ends_at: string | null;
|
|
5584
5584
|
}>;
|
|
5585
5585
|
}>, "strip", z.ZodTypeAny, {
|
|
5586
5586
|
created_at: string;
|
|
5587
5587
|
mutation_code: "updating_access_schedule";
|
|
5588
5588
|
from: {
|
|
5589
|
-
starts_at: string;
|
|
5589
|
+
starts_at: string | null;
|
|
5590
5590
|
ends_at: string | null;
|
|
5591
5591
|
};
|
|
5592
5592
|
to: {
|
|
5593
|
-
starts_at: string;
|
|
5593
|
+
starts_at: string | null;
|
|
5594
5594
|
ends_at: string | null;
|
|
5595
5595
|
};
|
|
5596
5596
|
}, {
|
|
5597
5597
|
created_at: string;
|
|
5598
5598
|
mutation_code: "updating_access_schedule";
|
|
5599
5599
|
from: {
|
|
5600
|
-
starts_at: string;
|
|
5600
|
+
starts_at: string | null;
|
|
5601
5601
|
ends_at: string | null;
|
|
5602
5602
|
};
|
|
5603
5603
|
to: {
|
|
5604
|
-
starts_at: string;
|
|
5604
|
+
starts_at: string | null;
|
|
5605
5605
|
ends_at: string | null;
|
|
5606
5606
|
};
|
|
5607
5607
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -5766,11 +5766,11 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5766
5766
|
created_at: string;
|
|
5767
5767
|
mutation_code: "updating_access_schedule";
|
|
5768
5768
|
from: {
|
|
5769
|
-
starts_at: string;
|
|
5769
|
+
starts_at: string | null;
|
|
5770
5770
|
ends_at: string | null;
|
|
5771
5771
|
};
|
|
5772
5772
|
to: {
|
|
5773
|
-
starts_at: string;
|
|
5773
|
+
starts_at: string | null;
|
|
5774
5774
|
ends_at: string | null;
|
|
5775
5775
|
};
|
|
5776
5776
|
} | {
|
|
@@ -5874,11 +5874,11 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5874
5874
|
created_at: string;
|
|
5875
5875
|
mutation_code: "updating_access_schedule";
|
|
5876
5876
|
from: {
|
|
5877
|
-
starts_at: string;
|
|
5877
|
+
starts_at: string | null;
|
|
5878
5878
|
ends_at: string | null;
|
|
5879
5879
|
};
|
|
5880
5880
|
to: {
|
|
5881
|
-
starts_at: string;
|
|
5881
|
+
starts_at: string | null;
|
|
5882
5882
|
ends_at: string | null;
|
|
5883
5883
|
};
|
|
5884
5884
|
} | {
|
|
@@ -9513,29 +9513,29 @@ declare const bridge_client_session: z.ZodObject<{
|
|
|
9513
9513
|
created_at: z.ZodString;
|
|
9514
9514
|
}, {
|
|
9515
9515
|
error_code: z.ZodLiteral<"bridge_lan_unreachable">;
|
|
9516
|
-
is_tailscale_proxy_reachable: z.ZodBoolean
|
|
9517
|
-
is_tailscale_proxy_socks_server_healthy: z.ZodBoolean
|
|
9518
|
-
can_tailscale_proxy_reach_tailscale_network: z.ZodBoolean
|
|
9519
|
-
can_tailscale_proxy_reach_bridge: z.ZodBoolean
|
|
9520
|
-
is_bridge_socks_server_healthy: z.ZodBoolean
|
|
9516
|
+
is_tailscale_proxy_reachable: z.ZodNullable<z.ZodBoolean>;
|
|
9517
|
+
is_tailscale_proxy_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
9518
|
+
can_tailscale_proxy_reach_tailscale_network: z.ZodNullable<z.ZodBoolean>;
|
|
9519
|
+
can_tailscale_proxy_reach_bridge: z.ZodNullable<z.ZodBoolean>;
|
|
9520
|
+
is_bridge_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
9521
9521
|
}>, "strip", z.ZodTypeAny, {
|
|
9522
9522
|
message: string;
|
|
9523
9523
|
created_at: string;
|
|
9524
9524
|
error_code: "bridge_lan_unreachable";
|
|
9525
|
-
is_tailscale_proxy_reachable: boolean;
|
|
9526
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
9527
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
9528
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
9529
|
-
is_bridge_socks_server_healthy: boolean;
|
|
9525
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
9526
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
9527
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
9528
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
9529
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
9530
9530
|
}, {
|
|
9531
9531
|
message: string;
|
|
9532
9532
|
created_at: string;
|
|
9533
9533
|
error_code: "bridge_lan_unreachable";
|
|
9534
|
-
is_tailscale_proxy_reachable: boolean;
|
|
9535
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
9536
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
9537
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
9538
|
-
is_bridge_socks_server_healthy: boolean;
|
|
9534
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
9535
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
9536
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
9537
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
9538
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
9539
9539
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9540
9540
|
message: z.ZodString;
|
|
9541
9541
|
created_at: z.ZodString;
|
|
@@ -9556,11 +9556,11 @@ declare const bridge_client_session: z.ZodObject<{
|
|
|
9556
9556
|
message: string;
|
|
9557
9557
|
created_at: string;
|
|
9558
9558
|
error_code: "bridge_lan_unreachable";
|
|
9559
|
-
is_tailscale_proxy_reachable: boolean;
|
|
9560
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
9561
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
9562
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
9563
|
-
is_bridge_socks_server_healthy: boolean;
|
|
9559
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
9560
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
9561
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
9562
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
9563
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
9564
9564
|
} | {
|
|
9565
9565
|
message: string;
|
|
9566
9566
|
created_at: string;
|
|
@@ -9581,11 +9581,11 @@ declare const bridge_client_session: z.ZodObject<{
|
|
|
9581
9581
|
message: string;
|
|
9582
9582
|
created_at: string;
|
|
9583
9583
|
error_code: "bridge_lan_unreachable";
|
|
9584
|
-
is_tailscale_proxy_reachable: boolean;
|
|
9585
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
9586
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
9587
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
9588
|
-
is_bridge_socks_server_healthy: boolean;
|
|
9584
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
9585
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
9586
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
9587
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
9588
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
9589
9589
|
} | {
|
|
9590
9590
|
message: string;
|
|
9591
9591
|
created_at: string;
|
|
@@ -21072,14 +21072,13 @@ declare const _default: {
|
|
|
21072
21072
|
from: {
|
|
21073
21073
|
properties: {
|
|
21074
21074
|
ends_at: {
|
|
21075
|
-
description: string;
|
|
21076
21075
|
format: string;
|
|
21077
21076
|
nullable: boolean;
|
|
21078
21077
|
type: string;
|
|
21079
21078
|
};
|
|
21080
21079
|
starts_at: {
|
|
21081
|
-
description: string;
|
|
21082
21080
|
format: string;
|
|
21081
|
+
nullable: boolean;
|
|
21083
21082
|
type: string;
|
|
21084
21083
|
};
|
|
21085
21084
|
email_address?: never;
|
|
@@ -21098,14 +21097,13 @@ declare const _default: {
|
|
|
21098
21097
|
to: {
|
|
21099
21098
|
properties: {
|
|
21100
21099
|
ends_at: {
|
|
21101
|
-
description: string;
|
|
21102
21100
|
format: string;
|
|
21103
21101
|
nullable: boolean;
|
|
21104
21102
|
type: string;
|
|
21105
21103
|
};
|
|
21106
21104
|
starts_at: {
|
|
21107
|
-
description: string;
|
|
21108
21105
|
format: string;
|
|
21106
|
+
nullable: boolean;
|
|
21109
21107
|
type: string;
|
|
21110
21108
|
};
|
|
21111
21109
|
email_address?: never;
|
|
@@ -28370,14 +28368,13 @@ declare const _default: {
|
|
|
28370
28368
|
from: {
|
|
28371
28369
|
properties: {
|
|
28372
28370
|
ends_at: {
|
|
28373
|
-
description: string;
|
|
28374
28371
|
format: string;
|
|
28375
28372
|
nullable: boolean;
|
|
28376
28373
|
type: string;
|
|
28377
28374
|
};
|
|
28378
28375
|
starts_at: {
|
|
28379
|
-
description: string;
|
|
28380
28376
|
format: string;
|
|
28377
|
+
nullable: boolean;
|
|
28381
28378
|
type: string;
|
|
28382
28379
|
};
|
|
28383
28380
|
email_address?: never;
|
|
@@ -28396,14 +28393,13 @@ declare const _default: {
|
|
|
28396
28393
|
to: {
|
|
28397
28394
|
properties: {
|
|
28398
28395
|
ends_at: {
|
|
28399
|
-
description: string;
|
|
28400
28396
|
format: string;
|
|
28401
28397
|
nullable: boolean;
|
|
28402
28398
|
type: string;
|
|
28403
28399
|
};
|
|
28404
28400
|
starts_at: {
|
|
28405
|
-
description: string;
|
|
28406
28401
|
format: string;
|
|
28402
|
+
nullable: boolean;
|
|
28407
28403
|
type: string;
|
|
28408
28404
|
};
|
|
28409
28405
|
email_address?: never;
|
|
@@ -33439,6 +33435,76 @@ declare const _default: {
|
|
|
33439
33435
|
'x-title': string;
|
|
33440
33436
|
};
|
|
33441
33437
|
};
|
|
33438
|
+
'/acs/encoders/get': {
|
|
33439
|
+
post: {
|
|
33440
|
+
description: string;
|
|
33441
|
+
operationId: string;
|
|
33442
|
+
requestBody: {
|
|
33443
|
+
content: {
|
|
33444
|
+
'application/json': {
|
|
33445
|
+
schema: {
|
|
33446
|
+
properties: {
|
|
33447
|
+
acs_encoder_id: {
|
|
33448
|
+
description: string;
|
|
33449
|
+
format: string;
|
|
33450
|
+
type: string;
|
|
33451
|
+
};
|
|
33452
|
+
};
|
|
33453
|
+
required: string[];
|
|
33454
|
+
type: string;
|
|
33455
|
+
};
|
|
33456
|
+
};
|
|
33457
|
+
};
|
|
33458
|
+
};
|
|
33459
|
+
responses: {
|
|
33460
|
+
200: {
|
|
33461
|
+
content: {
|
|
33462
|
+
'application/json': {
|
|
33463
|
+
schema: {
|
|
33464
|
+
properties: {
|
|
33465
|
+
acs_encoder: {
|
|
33466
|
+
$ref: string;
|
|
33467
|
+
};
|
|
33468
|
+
ok: {
|
|
33469
|
+
type: string;
|
|
33470
|
+
};
|
|
33471
|
+
};
|
|
33472
|
+
required: string[];
|
|
33473
|
+
type: string;
|
|
33474
|
+
};
|
|
33475
|
+
};
|
|
33476
|
+
};
|
|
33477
|
+
description: string;
|
|
33478
|
+
};
|
|
33479
|
+
400: {
|
|
33480
|
+
description: string;
|
|
33481
|
+
};
|
|
33482
|
+
401: {
|
|
33483
|
+
description: string;
|
|
33484
|
+
};
|
|
33485
|
+
};
|
|
33486
|
+
security: ({
|
|
33487
|
+
pat_with_workspace: never[];
|
|
33488
|
+
console_session_with_workspace?: never;
|
|
33489
|
+
api_key?: never;
|
|
33490
|
+
} | {
|
|
33491
|
+
console_session_with_workspace: never[];
|
|
33492
|
+
pat_with_workspace?: never;
|
|
33493
|
+
api_key?: never;
|
|
33494
|
+
} | {
|
|
33495
|
+
api_key: never[];
|
|
33496
|
+
pat_with_workspace?: never;
|
|
33497
|
+
console_session_with_workspace?: never;
|
|
33498
|
+
})[];
|
|
33499
|
+
summary: string;
|
|
33500
|
+
tags: string[];
|
|
33501
|
+
'x-fern-sdk-group-name': string[];
|
|
33502
|
+
'x-fern-sdk-method-name': string;
|
|
33503
|
+
'x-fern-sdk-return-value': string;
|
|
33504
|
+
'x-response-key': string;
|
|
33505
|
+
'x-title': string;
|
|
33506
|
+
};
|
|
33507
|
+
};
|
|
33442
33508
|
'/acs/encoders/list': {
|
|
33443
33509
|
post: {
|
|
33444
33510
|
description: string;
|
|
@@ -40799,10 +40865,12 @@ declare const _default: {
|
|
|
40799
40865
|
properties: {
|
|
40800
40866
|
can_tailscale_proxy_reach_bridge: {
|
|
40801
40867
|
description: string;
|
|
40868
|
+
nullable: boolean;
|
|
40802
40869
|
type: string;
|
|
40803
40870
|
};
|
|
40804
40871
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
40805
40872
|
description: string;
|
|
40873
|
+
nullable: boolean;
|
|
40806
40874
|
type: string;
|
|
40807
40875
|
};
|
|
40808
40876
|
created_at: {
|
|
@@ -40816,14 +40884,17 @@ declare const _default: {
|
|
|
40816
40884
|
};
|
|
40817
40885
|
is_bridge_socks_server_healthy: {
|
|
40818
40886
|
description: string;
|
|
40887
|
+
nullable: boolean;
|
|
40819
40888
|
type: string;
|
|
40820
40889
|
};
|
|
40821
40890
|
is_tailscale_proxy_reachable: {
|
|
40822
40891
|
description: string;
|
|
40892
|
+
nullable: boolean;
|
|
40823
40893
|
type: string;
|
|
40824
40894
|
};
|
|
40825
40895
|
is_tailscale_proxy_socks_server_healthy: {
|
|
40826
40896
|
description: string;
|
|
40897
|
+
nullable: boolean;
|
|
40827
40898
|
type: string;
|
|
40828
40899
|
};
|
|
40829
40900
|
message: {
|
|
@@ -40955,10 +41026,12 @@ declare const _default: {
|
|
|
40955
41026
|
properties: {
|
|
40956
41027
|
can_tailscale_proxy_reach_bridge: {
|
|
40957
41028
|
description: string;
|
|
41029
|
+
nullable: boolean;
|
|
40958
41030
|
type: string;
|
|
40959
41031
|
};
|
|
40960
41032
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
40961
41033
|
description: string;
|
|
41034
|
+
nullable: boolean;
|
|
40962
41035
|
type: string;
|
|
40963
41036
|
};
|
|
40964
41037
|
created_at: {
|
|
@@ -40972,14 +41045,17 @@ declare const _default: {
|
|
|
40972
41045
|
};
|
|
40973
41046
|
is_bridge_socks_server_healthy: {
|
|
40974
41047
|
description: string;
|
|
41048
|
+
nullable: boolean;
|
|
40975
41049
|
type: string;
|
|
40976
41050
|
};
|
|
40977
41051
|
is_tailscale_proxy_reachable: {
|
|
40978
41052
|
description: string;
|
|
41053
|
+
nullable: boolean;
|
|
40979
41054
|
type: string;
|
|
40980
41055
|
};
|
|
40981
41056
|
is_tailscale_proxy_socks_server_healthy: {
|
|
40982
41057
|
description: string;
|
|
41058
|
+
nullable: boolean;
|
|
40983
41059
|
type: string;
|
|
40984
41060
|
};
|
|
40985
41061
|
message: {
|
|
@@ -41107,10 +41183,12 @@ declare const _default: {
|
|
|
41107
41183
|
properties: {
|
|
41108
41184
|
can_tailscale_proxy_reach_bridge: {
|
|
41109
41185
|
description: string;
|
|
41186
|
+
nullable: boolean;
|
|
41110
41187
|
type: string;
|
|
41111
41188
|
};
|
|
41112
41189
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
41113
41190
|
description: string;
|
|
41191
|
+
nullable: boolean;
|
|
41114
41192
|
type: string;
|
|
41115
41193
|
};
|
|
41116
41194
|
created_at: {
|
|
@@ -41124,14 +41202,17 @@ declare const _default: {
|
|
|
41124
41202
|
};
|
|
41125
41203
|
is_bridge_socks_server_healthy: {
|
|
41126
41204
|
description: string;
|
|
41205
|
+
nullable: boolean;
|
|
41127
41206
|
type: string;
|
|
41128
41207
|
};
|
|
41129
41208
|
is_tailscale_proxy_reachable: {
|
|
41130
41209
|
description: string;
|
|
41210
|
+
nullable: boolean;
|
|
41131
41211
|
type: string;
|
|
41132
41212
|
};
|
|
41133
41213
|
is_tailscale_proxy_socks_server_healthy: {
|
|
41134
41214
|
description: string;
|
|
41215
|
+
nullable: boolean;
|
|
41135
41216
|
type: string;
|
|
41136
41217
|
};
|
|
41137
41218
|
message: {
|
|
@@ -41263,10 +41344,12 @@ declare const _default: {
|
|
|
41263
41344
|
properties: {
|
|
41264
41345
|
can_tailscale_proxy_reach_bridge: {
|
|
41265
41346
|
description: string;
|
|
41347
|
+
nullable: boolean;
|
|
41266
41348
|
type: string;
|
|
41267
41349
|
};
|
|
41268
41350
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
41269
41351
|
description: string;
|
|
41352
|
+
nullable: boolean;
|
|
41270
41353
|
type: string;
|
|
41271
41354
|
};
|
|
41272
41355
|
created_at: {
|
|
@@ -41280,14 +41363,17 @@ declare const _default: {
|
|
|
41280
41363
|
};
|
|
41281
41364
|
is_bridge_socks_server_healthy: {
|
|
41282
41365
|
description: string;
|
|
41366
|
+
nullable: boolean;
|
|
41283
41367
|
type: string;
|
|
41284
41368
|
};
|
|
41285
41369
|
is_tailscale_proxy_reachable: {
|
|
41286
41370
|
description: string;
|
|
41371
|
+
nullable: boolean;
|
|
41287
41372
|
type: string;
|
|
41288
41373
|
};
|
|
41289
41374
|
is_tailscale_proxy_socks_server_healthy: {
|
|
41290
41375
|
description: string;
|
|
41376
|
+
nullable: boolean;
|
|
41291
41377
|
type: string;
|
|
41292
41378
|
};
|
|
41293
41379
|
message: {
|
|
@@ -55965,15 +56051,11 @@ interface Routes {
|
|
|
55965
56051
|
created_at: string;
|
|
55966
56052
|
mutation_code: 'updating_access_schedule';
|
|
55967
56053
|
from: {
|
|
55968
|
-
|
|
55969
|
-
starts_at: string;
|
|
55970
|
-
/** 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. */
|
|
56054
|
+
starts_at: string | null;
|
|
55971
56055
|
ends_at: string | null;
|
|
55972
56056
|
};
|
|
55973
56057
|
to: {
|
|
55974
|
-
|
|
55975
|
-
starts_at: string;
|
|
55976
|
-
/** 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. */
|
|
56058
|
+
starts_at: string | null;
|
|
55977
56059
|
ends_at: string | null;
|
|
55978
56060
|
};
|
|
55979
56061
|
} | {
|
|
@@ -58454,6 +58536,54 @@ interface Routes {
|
|
|
58454
58536
|
};
|
|
58455
58537
|
};
|
|
58456
58538
|
};
|
|
58539
|
+
'/acs/encoders/get': {
|
|
58540
|
+
route: '/acs/encoders/get';
|
|
58541
|
+
method: 'GET' | 'POST';
|
|
58542
|
+
queryParams: {};
|
|
58543
|
+
jsonBody: {};
|
|
58544
|
+
commonParams: {
|
|
58545
|
+
/** ID of the desired encoder. */
|
|
58546
|
+
acs_encoder_id: string;
|
|
58547
|
+
};
|
|
58548
|
+
formData: {};
|
|
58549
|
+
jsonResponse: {
|
|
58550
|
+
/** Represents a hardware device that encodes [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) data onto physical cards within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).
|
|
58551
|
+
|
|
58552
|
+
Some access control systems require credentials to be encoded onto plastic key cards using a card encoder. This process involves the following two key steps:
|
|
58553
|
+
|
|
58554
|
+
1. Credential creation
|
|
58555
|
+
Configure the access parameters for the credential.
|
|
58556
|
+
2. Card encoding
|
|
58557
|
+
Write the credential data onto the card using a compatible card encoder.
|
|
58558
|
+
|
|
58559
|
+
Separately, the Seam API also supports card scanning, which enables you to scan and read the encoded data on a card. You can use this action to confirm consistency with access control system records or diagnose discrepancies if needed.
|
|
58560
|
+
|
|
58561
|
+
See [Working with Card Encoders and Scanners](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).
|
|
58562
|
+
|
|
58563
|
+
To verify if your access control system requires a card encoder, see the corresponding [system integration guide](https://docs.seam.co/latest/device-and-system-integration-guides/overview#access-control-systems). */
|
|
58564
|
+
acs_encoder: {
|
|
58565
|
+
/** ID of the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners. */
|
|
58566
|
+
acs_encoder_id: string;
|
|
58567
|
+
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
58568
|
+
acs_system_id: string;
|
|
58569
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
58570
|
+
workspace_id: string;
|
|
58571
|
+
/** Errors associated with the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
58572
|
+
errors: Array<{
|
|
58573
|
+
/** Date and time at which Seam created the error. */
|
|
58574
|
+
created_at: string;
|
|
58575
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58576
|
+
message: string;
|
|
58577
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58578
|
+
error_code: 'acs_encoder_removed';
|
|
58579
|
+
}>;
|
|
58580
|
+
/** Date and time at which the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was created. */
|
|
58581
|
+
created_at: string;
|
|
58582
|
+
/** Display name for the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
58583
|
+
display_name: string;
|
|
58584
|
+
};
|
|
58585
|
+
};
|
|
58586
|
+
};
|
|
58457
58587
|
'/acs/encoders/list': {
|
|
58458
58588
|
route: '/acs/encoders/list';
|
|
58459
58589
|
method: 'GET' | 'POST';
|
|
@@ -60414,15 +60544,11 @@ interface Routes {
|
|
|
60414
60544
|
created_at: string;
|
|
60415
60545
|
mutation_code: 'updating_access_schedule';
|
|
60416
60546
|
from: {
|
|
60417
|
-
|
|
60418
|
-
starts_at: string;
|
|
60419
|
-
/** 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. */
|
|
60547
|
+
starts_at: string | null;
|
|
60420
60548
|
ends_at: string | null;
|
|
60421
60549
|
};
|
|
60422
60550
|
to: {
|
|
60423
|
-
|
|
60424
|
-
starts_at: string;
|
|
60425
|
-
/** 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. */
|
|
60551
|
+
starts_at: string | null;
|
|
60426
60552
|
ends_at: string | null;
|
|
60427
60553
|
};
|
|
60428
60554
|
} | {
|
|
@@ -60598,15 +60724,11 @@ interface Routes {
|
|
|
60598
60724
|
created_at: string;
|
|
60599
60725
|
mutation_code: 'updating_access_schedule';
|
|
60600
60726
|
from: {
|
|
60601
|
-
|
|
60602
|
-
starts_at: string;
|
|
60603
|
-
/** 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. */
|
|
60727
|
+
starts_at: string | null;
|
|
60604
60728
|
ends_at: string | null;
|
|
60605
60729
|
};
|
|
60606
60730
|
to: {
|
|
60607
|
-
|
|
60608
|
-
starts_at: string;
|
|
60609
|
-
/** 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. */
|
|
60731
|
+
starts_at: string | null;
|
|
60610
60732
|
ends_at: string | null;
|
|
60611
60733
|
};
|
|
60612
60734
|
} | {
|
|
@@ -60778,15 +60900,11 @@ interface Routes {
|
|
|
60778
60900
|
created_at: string;
|
|
60779
60901
|
mutation_code: 'updating_access_schedule';
|
|
60780
60902
|
from: {
|
|
60781
|
-
|
|
60782
|
-
starts_at: string;
|
|
60783
|
-
/** 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. */
|
|
60903
|
+
starts_at: string | null;
|
|
60784
60904
|
ends_at: string | null;
|
|
60785
60905
|
};
|
|
60786
60906
|
to: {
|
|
60787
|
-
|
|
60788
|
-
starts_at: string;
|
|
60789
|
-
/** 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. */
|
|
60907
|
+
starts_at: string | null;
|
|
60790
60908
|
ends_at: string | null;
|
|
60791
60909
|
};
|
|
60792
60910
|
} | {
|
|
@@ -61067,15 +61185,11 @@ interface Routes {
|
|
|
61067
61185
|
created_at: string;
|
|
61068
61186
|
mutation_code: 'updating_access_schedule';
|
|
61069
61187
|
from: {
|
|
61070
|
-
|
|
61071
|
-
starts_at: string;
|
|
61072
|
-
/** 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. */
|
|
61188
|
+
starts_at: string | null;
|
|
61073
61189
|
ends_at: string | null;
|
|
61074
61190
|
};
|
|
61075
61191
|
to: {
|
|
61076
|
-
|
|
61077
|
-
starts_at: string;
|
|
61078
|
-
/** 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. */
|
|
61192
|
+
starts_at: string | null;
|
|
61079
61193
|
ends_at: string | null;
|
|
61080
61194
|
};
|
|
61081
61195
|
} | {
|
|
@@ -61237,15 +61351,11 @@ interface Routes {
|
|
|
61237
61351
|
created_at: string;
|
|
61238
61352
|
mutation_code: 'updating_access_schedule';
|
|
61239
61353
|
from: {
|
|
61240
|
-
|
|
61241
|
-
starts_at: string;
|
|
61242
|
-
/** 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. */
|
|
61354
|
+
starts_at: string | null;
|
|
61243
61355
|
ends_at: string | null;
|
|
61244
61356
|
};
|
|
61245
61357
|
to: {
|
|
61246
|
-
|
|
61247
|
-
starts_at: string;
|
|
61248
|
-
/** 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. */
|
|
61358
|
+
starts_at: string | null;
|
|
61249
61359
|
ends_at: string | null;
|
|
61250
61360
|
};
|
|
61251
61361
|
} | {
|
|
@@ -78079,15 +78189,15 @@ interface Routes {
|
|
|
78079
78189
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78080
78190
|
error_code: 'bridge_lan_unreachable';
|
|
78081
78191
|
/** Seam cannot reach the tailscale proxy */
|
|
78082
|
-
is_tailscale_proxy_reachable: boolean;
|
|
78192
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
78083
78193
|
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
78084
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
78194
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
78085
78195
|
/** Tailscale proxy cannot reach the Tailscale network */
|
|
78086
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
78196
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
78087
78197
|
/** Tailscale proxy cannot reach the bridge */
|
|
78088
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
78198
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
78089
78199
|
/** Bridge's SOCKS server is unhealthy */
|
|
78090
|
-
is_bridge_socks_server_healthy: boolean;
|
|
78200
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
78091
78201
|
} | {
|
|
78092
78202
|
message: string;
|
|
78093
78203
|
created_at: string;
|
|
@@ -78123,15 +78233,15 @@ interface Routes {
|
|
|
78123
78233
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78124
78234
|
error_code: 'bridge_lan_unreachable';
|
|
78125
78235
|
/** Seam cannot reach the tailscale proxy */
|
|
78126
|
-
is_tailscale_proxy_reachable: boolean;
|
|
78236
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
78127
78237
|
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
78128
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
78238
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
78129
78239
|
/** Tailscale proxy cannot reach the Tailscale network */
|
|
78130
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
78240
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
78131
78241
|
/** Tailscale proxy cannot reach the bridge */
|
|
78132
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
78242
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
78133
78243
|
/** Bridge's SOCKS server is unhealthy */
|
|
78134
|
-
is_bridge_socks_server_healthy: boolean;
|
|
78244
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
78135
78245
|
} | {
|
|
78136
78246
|
message: string;
|
|
78137
78247
|
created_at: string;
|
|
@@ -78167,15 +78277,15 @@ interface Routes {
|
|
|
78167
78277
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78168
78278
|
error_code: 'bridge_lan_unreachable';
|
|
78169
78279
|
/** Seam cannot reach the tailscale proxy */
|
|
78170
|
-
is_tailscale_proxy_reachable: boolean;
|
|
78280
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
78171
78281
|
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
78172
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
78282
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
78173
78283
|
/** Tailscale proxy cannot reach the Tailscale network */
|
|
78174
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
78284
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
78175
78285
|
/** Tailscale proxy cannot reach the bridge */
|
|
78176
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
78286
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
78177
78287
|
/** Bridge's SOCKS server is unhealthy */
|
|
78178
|
-
is_bridge_socks_server_healthy: boolean;
|
|
78288
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
78179
78289
|
} | {
|
|
78180
78290
|
message: string;
|
|
78181
78291
|
created_at: string;
|
|
@@ -89662,15 +89772,11 @@ interface Routes {
|
|
|
89662
89772
|
created_at: string;
|
|
89663
89773
|
mutation_code: 'updating_access_schedule';
|
|
89664
89774
|
from: {
|
|
89665
|
-
|
|
89666
|
-
starts_at: string;
|
|
89667
|
-
/** 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. */
|
|
89775
|
+
starts_at: string | null;
|
|
89668
89776
|
ends_at: string | null;
|
|
89669
89777
|
};
|
|
89670
89778
|
to: {
|
|
89671
|
-
|
|
89672
|
-
starts_at: string;
|
|
89673
|
-
/** 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. */
|
|
89779
|
+
starts_at: string | null;
|
|
89674
89780
|
ends_at: string | null;
|
|
89675
89781
|
};
|
|
89676
89782
|
} | {
|