@seamapi/types 1.377.0 → 1.379.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 +166 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +356 -118
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +88 -28
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +256 -10
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +17 -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 +124 -8
- package/lib/seam/connect/openapi.js +150 -20
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +119 -57
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +18 -3
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +151 -28
- package/src/lib/seam/connect/route-types.ts +119 -57
package/dist/connect.d.cts
CHANGED
|
@@ -4933,26 +4933,33 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
4933
4933
|
}>]>, "many">;
|
|
4934
4934
|
pending_mutations: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
4935
4935
|
created_at: z.ZodString;
|
|
4936
|
+
message: z.ZodString;
|
|
4936
4937
|
}, {
|
|
4937
4938
|
mutation_code: z.ZodLiteral<"creating">;
|
|
4938
4939
|
}>, "strip", z.ZodTypeAny, {
|
|
4940
|
+
message: string;
|
|
4939
4941
|
created_at: string;
|
|
4940
4942
|
mutation_code: "creating";
|
|
4941
4943
|
}, {
|
|
4944
|
+
message: string;
|
|
4942
4945
|
created_at: string;
|
|
4943
4946
|
mutation_code: "creating";
|
|
4944
4947
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4945
4948
|
created_at: z.ZodString;
|
|
4949
|
+
message: z.ZodString;
|
|
4946
4950
|
}, {
|
|
4947
4951
|
mutation_code: z.ZodLiteral<"deleting">;
|
|
4948
4952
|
}>, "strip", z.ZodTypeAny, {
|
|
4953
|
+
message: string;
|
|
4949
4954
|
created_at: string;
|
|
4950
4955
|
mutation_code: "deleting";
|
|
4951
4956
|
}, {
|
|
4957
|
+
message: string;
|
|
4952
4958
|
created_at: string;
|
|
4953
4959
|
mutation_code: "deleting";
|
|
4954
4960
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4955
4961
|
created_at: z.ZodString;
|
|
4962
|
+
message: z.ZodString;
|
|
4956
4963
|
}, {
|
|
4957
4964
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
4958
4965
|
from: z.ZodObject<{
|
|
@@ -4982,6 +4989,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
4982
4989
|
phone_number?: string | null | undefined;
|
|
4983
4990
|
}>;
|
|
4984
4991
|
}>, "strip", z.ZodTypeAny, {
|
|
4992
|
+
message: string;
|
|
4985
4993
|
created_at: string;
|
|
4986
4994
|
mutation_code: "updating_user_information";
|
|
4987
4995
|
from: {
|
|
@@ -4995,6 +5003,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
4995
5003
|
phone_number?: string | null | undefined;
|
|
4996
5004
|
};
|
|
4997
5005
|
}, {
|
|
5006
|
+
message: string;
|
|
4998
5007
|
created_at: string;
|
|
4999
5008
|
mutation_code: "updating_user_information";
|
|
5000
5009
|
from: {
|
|
@@ -5009,52 +5018,56 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5009
5018
|
};
|
|
5010
5019
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5011
5020
|
created_at: z.ZodString;
|
|
5021
|
+
message: z.ZodString;
|
|
5012
5022
|
}, {
|
|
5013
5023
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
5014
5024
|
from: z.ZodObject<{
|
|
5015
|
-
starts_at: z.ZodString
|
|
5025
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
5016
5026
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
5017
5027
|
}, "strip", z.ZodTypeAny, {
|
|
5018
|
-
starts_at: string;
|
|
5028
|
+
starts_at: string | null;
|
|
5019
5029
|
ends_at: string | null;
|
|
5020
5030
|
}, {
|
|
5021
|
-
starts_at: string;
|
|
5031
|
+
starts_at: string | null;
|
|
5022
5032
|
ends_at: string | null;
|
|
5023
5033
|
}>;
|
|
5024
5034
|
to: z.ZodObject<{
|
|
5025
|
-
starts_at: z.ZodString
|
|
5035
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
5026
5036
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
5027
5037
|
}, "strip", z.ZodTypeAny, {
|
|
5028
|
-
starts_at: string;
|
|
5038
|
+
starts_at: string | null;
|
|
5029
5039
|
ends_at: string | null;
|
|
5030
5040
|
}, {
|
|
5031
|
-
starts_at: string;
|
|
5041
|
+
starts_at: string | null;
|
|
5032
5042
|
ends_at: string | null;
|
|
5033
5043
|
}>;
|
|
5034
5044
|
}>, "strip", z.ZodTypeAny, {
|
|
5045
|
+
message: string;
|
|
5035
5046
|
created_at: string;
|
|
5036
5047
|
mutation_code: "updating_access_schedule";
|
|
5037
5048
|
from: {
|
|
5038
|
-
starts_at: string;
|
|
5049
|
+
starts_at: string | null;
|
|
5039
5050
|
ends_at: string | null;
|
|
5040
5051
|
};
|
|
5041
5052
|
to: {
|
|
5042
|
-
starts_at: string;
|
|
5053
|
+
starts_at: string | null;
|
|
5043
5054
|
ends_at: string | null;
|
|
5044
5055
|
};
|
|
5045
5056
|
}, {
|
|
5057
|
+
message: string;
|
|
5046
5058
|
created_at: string;
|
|
5047
5059
|
mutation_code: "updating_access_schedule";
|
|
5048
5060
|
from: {
|
|
5049
|
-
starts_at: string;
|
|
5061
|
+
starts_at: string | null;
|
|
5050
5062
|
ends_at: string | null;
|
|
5051
5063
|
};
|
|
5052
5064
|
to: {
|
|
5053
|
-
starts_at: string;
|
|
5065
|
+
starts_at: string | null;
|
|
5054
5066
|
ends_at: string | null;
|
|
5055
5067
|
};
|
|
5056
5068
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5057
5069
|
created_at: z.ZodString;
|
|
5070
|
+
message: z.ZodString;
|
|
5058
5071
|
}, {
|
|
5059
5072
|
mutation_code: z.ZodLiteral<"updating_suspension_state">;
|
|
5060
5073
|
from: z.ZodObject<{
|
|
@@ -5072,6 +5085,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5072
5085
|
is_suspended: boolean;
|
|
5073
5086
|
}>;
|
|
5074
5087
|
}>, "strip", z.ZodTypeAny, {
|
|
5088
|
+
message: string;
|
|
5075
5089
|
created_at: string;
|
|
5076
5090
|
mutation_code: "updating_suspension_state";
|
|
5077
5091
|
from: {
|
|
@@ -5081,6 +5095,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5081
5095
|
is_suspended: boolean;
|
|
5082
5096
|
};
|
|
5083
5097
|
}, {
|
|
5098
|
+
message: string;
|
|
5084
5099
|
created_at: string;
|
|
5085
5100
|
mutation_code: "updating_suspension_state";
|
|
5086
5101
|
from: {
|
|
@@ -5091,6 +5106,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5091
5106
|
};
|
|
5092
5107
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5093
5108
|
created_at: z.ZodString;
|
|
5109
|
+
message: z.ZodString;
|
|
5094
5110
|
}, {
|
|
5095
5111
|
mutation_code: z.ZodLiteral<"updating_group_membership">;
|
|
5096
5112
|
from: z.ZodObject<{
|
|
@@ -5108,6 +5124,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5108
5124
|
acs_access_group_id: string | null;
|
|
5109
5125
|
}>;
|
|
5110
5126
|
}>, "strip", z.ZodTypeAny, {
|
|
5127
|
+
message: string;
|
|
5111
5128
|
created_at: string;
|
|
5112
5129
|
mutation_code: "updating_group_membership";
|
|
5113
5130
|
from: {
|
|
@@ -5117,6 +5134,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5117
5134
|
acs_access_group_id: string | null;
|
|
5118
5135
|
};
|
|
5119
5136
|
}, {
|
|
5137
|
+
message: string;
|
|
5120
5138
|
created_at: string;
|
|
5121
5139
|
mutation_code: "updating_group_membership";
|
|
5122
5140
|
from: {
|
|
@@ -5193,12 +5211,15 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5193
5211
|
user_identity_email_address?: string | null | undefined;
|
|
5194
5212
|
user_identity_phone_number?: string | null | undefined;
|
|
5195
5213
|
pending_mutations?: ({
|
|
5214
|
+
message: string;
|
|
5196
5215
|
created_at: string;
|
|
5197
5216
|
mutation_code: "creating";
|
|
5198
5217
|
} | {
|
|
5218
|
+
message: string;
|
|
5199
5219
|
created_at: string;
|
|
5200
5220
|
mutation_code: "deleting";
|
|
5201
5221
|
} | {
|
|
5222
|
+
message: string;
|
|
5202
5223
|
created_at: string;
|
|
5203
5224
|
mutation_code: "updating_user_information";
|
|
5204
5225
|
from: {
|
|
@@ -5212,17 +5233,19 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5212
5233
|
phone_number?: string | null | undefined;
|
|
5213
5234
|
};
|
|
5214
5235
|
} | {
|
|
5236
|
+
message: string;
|
|
5215
5237
|
created_at: string;
|
|
5216
5238
|
mutation_code: "updating_access_schedule";
|
|
5217
5239
|
from: {
|
|
5218
|
-
starts_at: string;
|
|
5240
|
+
starts_at: string | null;
|
|
5219
5241
|
ends_at: string | null;
|
|
5220
5242
|
};
|
|
5221
5243
|
to: {
|
|
5222
|
-
starts_at: string;
|
|
5244
|
+
starts_at: string | null;
|
|
5223
5245
|
ends_at: string | null;
|
|
5224
5246
|
};
|
|
5225
5247
|
} | {
|
|
5248
|
+
message: string;
|
|
5226
5249
|
created_at: string;
|
|
5227
5250
|
mutation_code: "updating_suspension_state";
|
|
5228
5251
|
from: {
|
|
@@ -5232,6 +5255,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5232
5255
|
is_suspended: boolean;
|
|
5233
5256
|
};
|
|
5234
5257
|
} | {
|
|
5258
|
+
message: string;
|
|
5235
5259
|
created_at: string;
|
|
5236
5260
|
mutation_code: "updating_group_membership";
|
|
5237
5261
|
from: {
|
|
@@ -5301,12 +5325,15 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5301
5325
|
user_identity_email_address?: string | null | undefined;
|
|
5302
5326
|
user_identity_phone_number?: string | null | undefined;
|
|
5303
5327
|
pending_mutations?: ({
|
|
5328
|
+
message: string;
|
|
5304
5329
|
created_at: string;
|
|
5305
5330
|
mutation_code: "creating";
|
|
5306
5331
|
} | {
|
|
5332
|
+
message: string;
|
|
5307
5333
|
created_at: string;
|
|
5308
5334
|
mutation_code: "deleting";
|
|
5309
5335
|
} | {
|
|
5336
|
+
message: string;
|
|
5310
5337
|
created_at: string;
|
|
5311
5338
|
mutation_code: "updating_user_information";
|
|
5312
5339
|
from: {
|
|
@@ -5320,17 +5347,19 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5320
5347
|
phone_number?: string | null | undefined;
|
|
5321
5348
|
};
|
|
5322
5349
|
} | {
|
|
5350
|
+
message: string;
|
|
5323
5351
|
created_at: string;
|
|
5324
5352
|
mutation_code: "updating_access_schedule";
|
|
5325
5353
|
from: {
|
|
5326
|
-
starts_at: string;
|
|
5354
|
+
starts_at: string | null;
|
|
5327
5355
|
ends_at: string | null;
|
|
5328
5356
|
};
|
|
5329
5357
|
to: {
|
|
5330
|
-
starts_at: string;
|
|
5358
|
+
starts_at: string | null;
|
|
5331
5359
|
ends_at: string | null;
|
|
5332
5360
|
};
|
|
5333
5361
|
} | {
|
|
5362
|
+
message: string;
|
|
5334
5363
|
created_at: string;
|
|
5335
5364
|
mutation_code: "updating_suspension_state";
|
|
5336
5365
|
from: {
|
|
@@ -5340,6 +5369,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
5340
5369
|
is_suspended: boolean;
|
|
5341
5370
|
};
|
|
5342
5371
|
} | {
|
|
5372
|
+
message: string;
|
|
5343
5373
|
created_at: string;
|
|
5344
5374
|
mutation_code: "updating_group_membership";
|
|
5345
5375
|
from: {
|
|
@@ -5484,26 +5514,33 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5484
5514
|
}>]>, "many">;
|
|
5485
5515
|
pending_mutations: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
5486
5516
|
created_at: z.ZodString;
|
|
5517
|
+
message: z.ZodString;
|
|
5487
5518
|
}, {
|
|
5488
5519
|
mutation_code: z.ZodLiteral<"creating">;
|
|
5489
5520
|
}>, "strip", z.ZodTypeAny, {
|
|
5521
|
+
message: string;
|
|
5490
5522
|
created_at: string;
|
|
5491
5523
|
mutation_code: "creating";
|
|
5492
5524
|
}, {
|
|
5525
|
+
message: string;
|
|
5493
5526
|
created_at: string;
|
|
5494
5527
|
mutation_code: "creating";
|
|
5495
5528
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5496
5529
|
created_at: z.ZodString;
|
|
5530
|
+
message: z.ZodString;
|
|
5497
5531
|
}, {
|
|
5498
5532
|
mutation_code: z.ZodLiteral<"deleting">;
|
|
5499
5533
|
}>, "strip", z.ZodTypeAny, {
|
|
5534
|
+
message: string;
|
|
5500
5535
|
created_at: string;
|
|
5501
5536
|
mutation_code: "deleting";
|
|
5502
5537
|
}, {
|
|
5538
|
+
message: string;
|
|
5503
5539
|
created_at: string;
|
|
5504
5540
|
mutation_code: "deleting";
|
|
5505
5541
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5506
5542
|
created_at: z.ZodString;
|
|
5543
|
+
message: z.ZodString;
|
|
5507
5544
|
}, {
|
|
5508
5545
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
5509
5546
|
from: z.ZodObject<{
|
|
@@ -5533,6 +5570,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5533
5570
|
phone_number?: string | null | undefined;
|
|
5534
5571
|
}>;
|
|
5535
5572
|
}>, "strip", z.ZodTypeAny, {
|
|
5573
|
+
message: string;
|
|
5536
5574
|
created_at: string;
|
|
5537
5575
|
mutation_code: "updating_user_information";
|
|
5538
5576
|
from: {
|
|
@@ -5546,6 +5584,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5546
5584
|
phone_number?: string | null | undefined;
|
|
5547
5585
|
};
|
|
5548
5586
|
}, {
|
|
5587
|
+
message: string;
|
|
5549
5588
|
created_at: string;
|
|
5550
5589
|
mutation_code: "updating_user_information";
|
|
5551
5590
|
from: {
|
|
@@ -5560,52 +5599,56 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5560
5599
|
};
|
|
5561
5600
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5562
5601
|
created_at: z.ZodString;
|
|
5602
|
+
message: z.ZodString;
|
|
5563
5603
|
}, {
|
|
5564
5604
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
5565
5605
|
from: z.ZodObject<{
|
|
5566
|
-
starts_at: z.ZodString
|
|
5606
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
5567
5607
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
5568
5608
|
}, "strip", z.ZodTypeAny, {
|
|
5569
|
-
starts_at: string;
|
|
5609
|
+
starts_at: string | null;
|
|
5570
5610
|
ends_at: string | null;
|
|
5571
5611
|
}, {
|
|
5572
|
-
starts_at: string;
|
|
5612
|
+
starts_at: string | null;
|
|
5573
5613
|
ends_at: string | null;
|
|
5574
5614
|
}>;
|
|
5575
5615
|
to: z.ZodObject<{
|
|
5576
|
-
starts_at: z.ZodString
|
|
5616
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
5577
5617
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
5578
5618
|
}, "strip", z.ZodTypeAny, {
|
|
5579
|
-
starts_at: string;
|
|
5619
|
+
starts_at: string | null;
|
|
5580
5620
|
ends_at: string | null;
|
|
5581
5621
|
}, {
|
|
5582
|
-
starts_at: string;
|
|
5622
|
+
starts_at: string | null;
|
|
5583
5623
|
ends_at: string | null;
|
|
5584
5624
|
}>;
|
|
5585
5625
|
}>, "strip", z.ZodTypeAny, {
|
|
5626
|
+
message: string;
|
|
5586
5627
|
created_at: string;
|
|
5587
5628
|
mutation_code: "updating_access_schedule";
|
|
5588
5629
|
from: {
|
|
5589
|
-
starts_at: string;
|
|
5630
|
+
starts_at: string | null;
|
|
5590
5631
|
ends_at: string | null;
|
|
5591
5632
|
};
|
|
5592
5633
|
to: {
|
|
5593
|
-
starts_at: string;
|
|
5634
|
+
starts_at: string | null;
|
|
5594
5635
|
ends_at: string | null;
|
|
5595
5636
|
};
|
|
5596
5637
|
}, {
|
|
5638
|
+
message: string;
|
|
5597
5639
|
created_at: string;
|
|
5598
5640
|
mutation_code: "updating_access_schedule";
|
|
5599
5641
|
from: {
|
|
5600
|
-
starts_at: string;
|
|
5642
|
+
starts_at: string | null;
|
|
5601
5643
|
ends_at: string | null;
|
|
5602
5644
|
};
|
|
5603
5645
|
to: {
|
|
5604
|
-
starts_at: string;
|
|
5646
|
+
starts_at: string | null;
|
|
5605
5647
|
ends_at: string | null;
|
|
5606
5648
|
};
|
|
5607
5649
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5608
5650
|
created_at: z.ZodString;
|
|
5651
|
+
message: z.ZodString;
|
|
5609
5652
|
}, {
|
|
5610
5653
|
mutation_code: z.ZodLiteral<"updating_suspension_state">;
|
|
5611
5654
|
from: z.ZodObject<{
|
|
@@ -5623,6 +5666,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5623
5666
|
is_suspended: boolean;
|
|
5624
5667
|
}>;
|
|
5625
5668
|
}>, "strip", z.ZodTypeAny, {
|
|
5669
|
+
message: string;
|
|
5626
5670
|
created_at: string;
|
|
5627
5671
|
mutation_code: "updating_suspension_state";
|
|
5628
5672
|
from: {
|
|
@@ -5632,6 +5676,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5632
5676
|
is_suspended: boolean;
|
|
5633
5677
|
};
|
|
5634
5678
|
}, {
|
|
5679
|
+
message: string;
|
|
5635
5680
|
created_at: string;
|
|
5636
5681
|
mutation_code: "updating_suspension_state";
|
|
5637
5682
|
from: {
|
|
@@ -5642,6 +5687,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5642
5687
|
};
|
|
5643
5688
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5644
5689
|
created_at: z.ZodString;
|
|
5690
|
+
message: z.ZodString;
|
|
5645
5691
|
}, {
|
|
5646
5692
|
mutation_code: z.ZodLiteral<"updating_group_membership">;
|
|
5647
5693
|
from: z.ZodObject<{
|
|
@@ -5659,6 +5705,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5659
5705
|
acs_access_group_id: string | null;
|
|
5660
5706
|
}>;
|
|
5661
5707
|
}>, "strip", z.ZodTypeAny, {
|
|
5708
|
+
message: string;
|
|
5662
5709
|
created_at: string;
|
|
5663
5710
|
mutation_code: "updating_group_membership";
|
|
5664
5711
|
from: {
|
|
@@ -5668,6 +5715,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5668
5715
|
acs_access_group_id: string | null;
|
|
5669
5716
|
};
|
|
5670
5717
|
}, {
|
|
5718
|
+
message: string;
|
|
5671
5719
|
created_at: string;
|
|
5672
5720
|
mutation_code: "updating_group_membership";
|
|
5673
5721
|
from: {
|
|
@@ -5744,12 +5792,15 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5744
5792
|
user_identity_email_address?: string | null | undefined;
|
|
5745
5793
|
user_identity_phone_number?: string | null | undefined;
|
|
5746
5794
|
pending_mutations?: ({
|
|
5795
|
+
message: string;
|
|
5747
5796
|
created_at: string;
|
|
5748
5797
|
mutation_code: "creating";
|
|
5749
5798
|
} | {
|
|
5799
|
+
message: string;
|
|
5750
5800
|
created_at: string;
|
|
5751
5801
|
mutation_code: "deleting";
|
|
5752
5802
|
} | {
|
|
5803
|
+
message: string;
|
|
5753
5804
|
created_at: string;
|
|
5754
5805
|
mutation_code: "updating_user_information";
|
|
5755
5806
|
from: {
|
|
@@ -5763,17 +5814,19 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5763
5814
|
phone_number?: string | null | undefined;
|
|
5764
5815
|
};
|
|
5765
5816
|
} | {
|
|
5817
|
+
message: string;
|
|
5766
5818
|
created_at: string;
|
|
5767
5819
|
mutation_code: "updating_access_schedule";
|
|
5768
5820
|
from: {
|
|
5769
|
-
starts_at: string;
|
|
5821
|
+
starts_at: string | null;
|
|
5770
5822
|
ends_at: string | null;
|
|
5771
5823
|
};
|
|
5772
5824
|
to: {
|
|
5773
|
-
starts_at: string;
|
|
5825
|
+
starts_at: string | null;
|
|
5774
5826
|
ends_at: string | null;
|
|
5775
5827
|
};
|
|
5776
5828
|
} | {
|
|
5829
|
+
message: string;
|
|
5777
5830
|
created_at: string;
|
|
5778
5831
|
mutation_code: "updating_suspension_state";
|
|
5779
5832
|
from: {
|
|
@@ -5783,6 +5836,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5783
5836
|
is_suspended: boolean;
|
|
5784
5837
|
};
|
|
5785
5838
|
} | {
|
|
5839
|
+
message: string;
|
|
5786
5840
|
created_at: string;
|
|
5787
5841
|
mutation_code: "updating_group_membership";
|
|
5788
5842
|
from: {
|
|
@@ -5852,12 +5906,15 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5852
5906
|
user_identity_email_address?: string | null | undefined;
|
|
5853
5907
|
user_identity_phone_number?: string | null | undefined;
|
|
5854
5908
|
pending_mutations?: ({
|
|
5909
|
+
message: string;
|
|
5855
5910
|
created_at: string;
|
|
5856
5911
|
mutation_code: "creating";
|
|
5857
5912
|
} | {
|
|
5913
|
+
message: string;
|
|
5858
5914
|
created_at: string;
|
|
5859
5915
|
mutation_code: "deleting";
|
|
5860
5916
|
} | {
|
|
5917
|
+
message: string;
|
|
5861
5918
|
created_at: string;
|
|
5862
5919
|
mutation_code: "updating_user_information";
|
|
5863
5920
|
from: {
|
|
@@ -5871,17 +5928,19 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5871
5928
|
phone_number?: string | null | undefined;
|
|
5872
5929
|
};
|
|
5873
5930
|
} | {
|
|
5931
|
+
message: string;
|
|
5874
5932
|
created_at: string;
|
|
5875
5933
|
mutation_code: "updating_access_schedule";
|
|
5876
5934
|
from: {
|
|
5877
|
-
starts_at: string;
|
|
5935
|
+
starts_at: string | null;
|
|
5878
5936
|
ends_at: string | null;
|
|
5879
5937
|
};
|
|
5880
5938
|
to: {
|
|
5881
|
-
starts_at: string;
|
|
5939
|
+
starts_at: string | null;
|
|
5882
5940
|
ends_at: string | null;
|
|
5883
5941
|
};
|
|
5884
5942
|
} | {
|
|
5943
|
+
message: string;
|
|
5885
5944
|
created_at: string;
|
|
5886
5945
|
mutation_code: "updating_suspension_state";
|
|
5887
5946
|
from: {
|
|
@@ -5891,6 +5950,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
5891
5950
|
is_suspended: boolean;
|
|
5892
5951
|
};
|
|
5893
5952
|
} | {
|
|
5953
|
+
message: string;
|
|
5894
5954
|
created_at: string;
|
|
5895
5955
|
mutation_code: "updating_group_membership";
|
|
5896
5956
|
from: {
|
|
@@ -9513,29 +9573,29 @@ declare const bridge_client_session: z.ZodObject<{
|
|
|
9513
9573
|
created_at: z.ZodString;
|
|
9514
9574
|
}, {
|
|
9515
9575
|
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
|
|
9576
|
+
is_tailscale_proxy_reachable: z.ZodNullable<z.ZodBoolean>;
|
|
9577
|
+
is_tailscale_proxy_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
9578
|
+
can_tailscale_proxy_reach_tailscale_network: z.ZodNullable<z.ZodBoolean>;
|
|
9579
|
+
can_tailscale_proxy_reach_bridge: z.ZodNullable<z.ZodBoolean>;
|
|
9580
|
+
is_bridge_socks_server_healthy: z.ZodNullable<z.ZodBoolean>;
|
|
9521
9581
|
}>, "strip", z.ZodTypeAny, {
|
|
9522
9582
|
message: string;
|
|
9523
9583
|
created_at: string;
|
|
9524
9584
|
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;
|
|
9585
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
9586
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
9587
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
9588
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
9589
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
9530
9590
|
}, {
|
|
9531
9591
|
message: string;
|
|
9532
9592
|
created_at: string;
|
|
9533
9593
|
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;
|
|
9594
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
9595
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
9596
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
9597
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
9598
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
9539
9599
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9540
9600
|
message: z.ZodString;
|
|
9541
9601
|
created_at: z.ZodString;
|
|
@@ -9556,11 +9616,11 @@ declare const bridge_client_session: z.ZodObject<{
|
|
|
9556
9616
|
message: string;
|
|
9557
9617
|
created_at: string;
|
|
9558
9618
|
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;
|
|
9619
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
9620
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
9621
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
9622
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
9623
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
9564
9624
|
} | {
|
|
9565
9625
|
message: string;
|
|
9566
9626
|
created_at: string;
|
|
@@ -9581,11 +9641,11 @@ declare const bridge_client_session: z.ZodObject<{
|
|
|
9581
9641
|
message: string;
|
|
9582
9642
|
created_at: string;
|
|
9583
9643
|
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;
|
|
9644
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
9645
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
9646
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
9647
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
9648
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
9589
9649
|
} | {
|
|
9590
9650
|
message: string;
|
|
9591
9651
|
created_at: string;
|
|
@@ -20995,6 +21055,9 @@ declare const _default: {
|
|
|
20995
21055
|
format: string;
|
|
20996
21056
|
type: string;
|
|
20997
21057
|
};
|
|
21058
|
+
message: {
|
|
21059
|
+
type: string;
|
|
21060
|
+
};
|
|
20998
21061
|
mutation_code: {
|
|
20999
21062
|
enum: string[];
|
|
21000
21063
|
type: string;
|
|
@@ -21033,6 +21096,9 @@ declare const _default: {
|
|
|
21033
21096
|
type: string;
|
|
21034
21097
|
required?: never;
|
|
21035
21098
|
};
|
|
21099
|
+
message: {
|
|
21100
|
+
type: string;
|
|
21101
|
+
};
|
|
21036
21102
|
mutation_code: {
|
|
21037
21103
|
enum: string[];
|
|
21038
21104
|
type: string;
|
|
@@ -21072,14 +21138,13 @@ declare const _default: {
|
|
|
21072
21138
|
from: {
|
|
21073
21139
|
properties: {
|
|
21074
21140
|
ends_at: {
|
|
21075
|
-
description: string;
|
|
21076
21141
|
format: string;
|
|
21077
21142
|
nullable: boolean;
|
|
21078
21143
|
type: string;
|
|
21079
21144
|
};
|
|
21080
21145
|
starts_at: {
|
|
21081
|
-
description: string;
|
|
21082
21146
|
format: string;
|
|
21147
|
+
nullable: boolean;
|
|
21083
21148
|
type: string;
|
|
21084
21149
|
};
|
|
21085
21150
|
email_address?: never;
|
|
@@ -21091,6 +21156,9 @@ declare const _default: {
|
|
|
21091
21156
|
required: string[];
|
|
21092
21157
|
type: string;
|
|
21093
21158
|
};
|
|
21159
|
+
message: {
|
|
21160
|
+
type: string;
|
|
21161
|
+
};
|
|
21094
21162
|
mutation_code: {
|
|
21095
21163
|
enum: string[];
|
|
21096
21164
|
type: string;
|
|
@@ -21098,14 +21166,13 @@ declare const _default: {
|
|
|
21098
21166
|
to: {
|
|
21099
21167
|
properties: {
|
|
21100
21168
|
ends_at: {
|
|
21101
|
-
description: string;
|
|
21102
21169
|
format: string;
|
|
21103
21170
|
nullable: boolean;
|
|
21104
21171
|
type: string;
|
|
21105
21172
|
};
|
|
21106
21173
|
starts_at: {
|
|
21107
|
-
description: string;
|
|
21108
21174
|
format: string;
|
|
21175
|
+
nullable: boolean;
|
|
21109
21176
|
type: string;
|
|
21110
21177
|
};
|
|
21111
21178
|
email_address?: never;
|
|
@@ -21141,6 +21208,9 @@ declare const _default: {
|
|
|
21141
21208
|
required: string[];
|
|
21142
21209
|
type: string;
|
|
21143
21210
|
};
|
|
21211
|
+
message: {
|
|
21212
|
+
type: string;
|
|
21213
|
+
};
|
|
21144
21214
|
mutation_code: {
|
|
21145
21215
|
enum: string[];
|
|
21146
21216
|
type: string;
|
|
@@ -21186,6 +21256,9 @@ declare const _default: {
|
|
|
21186
21256
|
required: string[];
|
|
21187
21257
|
type: string;
|
|
21188
21258
|
};
|
|
21259
|
+
message: {
|
|
21260
|
+
type: string;
|
|
21261
|
+
};
|
|
21189
21262
|
mutation_code: {
|
|
21190
21263
|
enum: string[];
|
|
21191
21264
|
type: string;
|
|
@@ -28293,6 +28366,9 @@ declare const _default: {
|
|
|
28293
28366
|
format: string;
|
|
28294
28367
|
type: string;
|
|
28295
28368
|
};
|
|
28369
|
+
message: {
|
|
28370
|
+
type: string;
|
|
28371
|
+
};
|
|
28296
28372
|
mutation_code: {
|
|
28297
28373
|
enum: string[];
|
|
28298
28374
|
type: string;
|
|
@@ -28331,6 +28407,9 @@ declare const _default: {
|
|
|
28331
28407
|
type: string;
|
|
28332
28408
|
required?: never;
|
|
28333
28409
|
};
|
|
28410
|
+
message: {
|
|
28411
|
+
type: string;
|
|
28412
|
+
};
|
|
28334
28413
|
mutation_code: {
|
|
28335
28414
|
enum: string[];
|
|
28336
28415
|
type: string;
|
|
@@ -28370,14 +28449,13 @@ declare const _default: {
|
|
|
28370
28449
|
from: {
|
|
28371
28450
|
properties: {
|
|
28372
28451
|
ends_at: {
|
|
28373
|
-
description: string;
|
|
28374
28452
|
format: string;
|
|
28375
28453
|
nullable: boolean;
|
|
28376
28454
|
type: string;
|
|
28377
28455
|
};
|
|
28378
28456
|
starts_at: {
|
|
28379
|
-
description: string;
|
|
28380
28457
|
format: string;
|
|
28458
|
+
nullable: boolean;
|
|
28381
28459
|
type: string;
|
|
28382
28460
|
};
|
|
28383
28461
|
email_address?: never;
|
|
@@ -28389,6 +28467,9 @@ declare const _default: {
|
|
|
28389
28467
|
required: string[];
|
|
28390
28468
|
type: string;
|
|
28391
28469
|
};
|
|
28470
|
+
message: {
|
|
28471
|
+
type: string;
|
|
28472
|
+
};
|
|
28392
28473
|
mutation_code: {
|
|
28393
28474
|
enum: string[];
|
|
28394
28475
|
type: string;
|
|
@@ -28396,14 +28477,13 @@ declare const _default: {
|
|
|
28396
28477
|
to: {
|
|
28397
28478
|
properties: {
|
|
28398
28479
|
ends_at: {
|
|
28399
|
-
description: string;
|
|
28400
28480
|
format: string;
|
|
28401
28481
|
nullable: boolean;
|
|
28402
28482
|
type: string;
|
|
28403
28483
|
};
|
|
28404
28484
|
starts_at: {
|
|
28405
|
-
description: string;
|
|
28406
28485
|
format: string;
|
|
28486
|
+
nullable: boolean;
|
|
28407
28487
|
type: string;
|
|
28408
28488
|
};
|
|
28409
28489
|
email_address?: never;
|
|
@@ -28439,6 +28519,9 @@ declare const _default: {
|
|
|
28439
28519
|
required: string[];
|
|
28440
28520
|
type: string;
|
|
28441
28521
|
};
|
|
28522
|
+
message: {
|
|
28523
|
+
type: string;
|
|
28524
|
+
};
|
|
28442
28525
|
mutation_code: {
|
|
28443
28526
|
enum: string[];
|
|
28444
28527
|
type: string;
|
|
@@ -28484,6 +28567,9 @@ declare const _default: {
|
|
|
28484
28567
|
required: string[];
|
|
28485
28568
|
type: string;
|
|
28486
28569
|
};
|
|
28570
|
+
message: {
|
|
28571
|
+
type: string;
|
|
28572
|
+
};
|
|
28487
28573
|
mutation_code: {
|
|
28488
28574
|
enum: string[];
|
|
28489
28575
|
type: string;
|
|
@@ -33439,6 +33525,76 @@ declare const _default: {
|
|
|
33439
33525
|
'x-title': string;
|
|
33440
33526
|
};
|
|
33441
33527
|
};
|
|
33528
|
+
'/acs/encoders/get': {
|
|
33529
|
+
post: {
|
|
33530
|
+
description: string;
|
|
33531
|
+
operationId: string;
|
|
33532
|
+
requestBody: {
|
|
33533
|
+
content: {
|
|
33534
|
+
'application/json': {
|
|
33535
|
+
schema: {
|
|
33536
|
+
properties: {
|
|
33537
|
+
acs_encoder_id: {
|
|
33538
|
+
description: string;
|
|
33539
|
+
format: string;
|
|
33540
|
+
type: string;
|
|
33541
|
+
};
|
|
33542
|
+
};
|
|
33543
|
+
required: string[];
|
|
33544
|
+
type: string;
|
|
33545
|
+
};
|
|
33546
|
+
};
|
|
33547
|
+
};
|
|
33548
|
+
};
|
|
33549
|
+
responses: {
|
|
33550
|
+
200: {
|
|
33551
|
+
content: {
|
|
33552
|
+
'application/json': {
|
|
33553
|
+
schema: {
|
|
33554
|
+
properties: {
|
|
33555
|
+
acs_encoder: {
|
|
33556
|
+
$ref: string;
|
|
33557
|
+
};
|
|
33558
|
+
ok: {
|
|
33559
|
+
type: string;
|
|
33560
|
+
};
|
|
33561
|
+
};
|
|
33562
|
+
required: string[];
|
|
33563
|
+
type: string;
|
|
33564
|
+
};
|
|
33565
|
+
};
|
|
33566
|
+
};
|
|
33567
|
+
description: string;
|
|
33568
|
+
};
|
|
33569
|
+
400: {
|
|
33570
|
+
description: string;
|
|
33571
|
+
};
|
|
33572
|
+
401: {
|
|
33573
|
+
description: string;
|
|
33574
|
+
};
|
|
33575
|
+
};
|
|
33576
|
+
security: ({
|
|
33577
|
+
pat_with_workspace: never[];
|
|
33578
|
+
console_session_with_workspace?: never;
|
|
33579
|
+
api_key?: never;
|
|
33580
|
+
} | {
|
|
33581
|
+
console_session_with_workspace: never[];
|
|
33582
|
+
pat_with_workspace?: never;
|
|
33583
|
+
api_key?: never;
|
|
33584
|
+
} | {
|
|
33585
|
+
api_key: never[];
|
|
33586
|
+
pat_with_workspace?: never;
|
|
33587
|
+
console_session_with_workspace?: never;
|
|
33588
|
+
})[];
|
|
33589
|
+
summary: string;
|
|
33590
|
+
tags: string[];
|
|
33591
|
+
'x-fern-sdk-group-name': string[];
|
|
33592
|
+
'x-fern-sdk-method-name': string;
|
|
33593
|
+
'x-fern-sdk-return-value': string;
|
|
33594
|
+
'x-response-key': string;
|
|
33595
|
+
'x-title': string;
|
|
33596
|
+
};
|
|
33597
|
+
};
|
|
33442
33598
|
'/acs/encoders/list': {
|
|
33443
33599
|
post: {
|
|
33444
33600
|
description: string;
|
|
@@ -40799,10 +40955,12 @@ declare const _default: {
|
|
|
40799
40955
|
properties: {
|
|
40800
40956
|
can_tailscale_proxy_reach_bridge: {
|
|
40801
40957
|
description: string;
|
|
40958
|
+
nullable: boolean;
|
|
40802
40959
|
type: string;
|
|
40803
40960
|
};
|
|
40804
40961
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
40805
40962
|
description: string;
|
|
40963
|
+
nullable: boolean;
|
|
40806
40964
|
type: string;
|
|
40807
40965
|
};
|
|
40808
40966
|
created_at: {
|
|
@@ -40816,14 +40974,17 @@ declare const _default: {
|
|
|
40816
40974
|
};
|
|
40817
40975
|
is_bridge_socks_server_healthy: {
|
|
40818
40976
|
description: string;
|
|
40977
|
+
nullable: boolean;
|
|
40819
40978
|
type: string;
|
|
40820
40979
|
};
|
|
40821
40980
|
is_tailscale_proxy_reachable: {
|
|
40822
40981
|
description: string;
|
|
40982
|
+
nullable: boolean;
|
|
40823
40983
|
type: string;
|
|
40824
40984
|
};
|
|
40825
40985
|
is_tailscale_proxy_socks_server_healthy: {
|
|
40826
40986
|
description: string;
|
|
40987
|
+
nullable: boolean;
|
|
40827
40988
|
type: string;
|
|
40828
40989
|
};
|
|
40829
40990
|
message: {
|
|
@@ -40955,10 +41116,12 @@ declare const _default: {
|
|
|
40955
41116
|
properties: {
|
|
40956
41117
|
can_tailscale_proxy_reach_bridge: {
|
|
40957
41118
|
description: string;
|
|
41119
|
+
nullable: boolean;
|
|
40958
41120
|
type: string;
|
|
40959
41121
|
};
|
|
40960
41122
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
40961
41123
|
description: string;
|
|
41124
|
+
nullable: boolean;
|
|
40962
41125
|
type: string;
|
|
40963
41126
|
};
|
|
40964
41127
|
created_at: {
|
|
@@ -40972,14 +41135,17 @@ declare const _default: {
|
|
|
40972
41135
|
};
|
|
40973
41136
|
is_bridge_socks_server_healthy: {
|
|
40974
41137
|
description: string;
|
|
41138
|
+
nullable: boolean;
|
|
40975
41139
|
type: string;
|
|
40976
41140
|
};
|
|
40977
41141
|
is_tailscale_proxy_reachable: {
|
|
40978
41142
|
description: string;
|
|
41143
|
+
nullable: boolean;
|
|
40979
41144
|
type: string;
|
|
40980
41145
|
};
|
|
40981
41146
|
is_tailscale_proxy_socks_server_healthy: {
|
|
40982
41147
|
description: string;
|
|
41148
|
+
nullable: boolean;
|
|
40983
41149
|
type: string;
|
|
40984
41150
|
};
|
|
40985
41151
|
message: {
|
|
@@ -41107,10 +41273,12 @@ declare const _default: {
|
|
|
41107
41273
|
properties: {
|
|
41108
41274
|
can_tailscale_proxy_reach_bridge: {
|
|
41109
41275
|
description: string;
|
|
41276
|
+
nullable: boolean;
|
|
41110
41277
|
type: string;
|
|
41111
41278
|
};
|
|
41112
41279
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
41113
41280
|
description: string;
|
|
41281
|
+
nullable: boolean;
|
|
41114
41282
|
type: string;
|
|
41115
41283
|
};
|
|
41116
41284
|
created_at: {
|
|
@@ -41124,14 +41292,17 @@ declare const _default: {
|
|
|
41124
41292
|
};
|
|
41125
41293
|
is_bridge_socks_server_healthy: {
|
|
41126
41294
|
description: string;
|
|
41295
|
+
nullable: boolean;
|
|
41127
41296
|
type: string;
|
|
41128
41297
|
};
|
|
41129
41298
|
is_tailscale_proxy_reachable: {
|
|
41130
41299
|
description: string;
|
|
41300
|
+
nullable: boolean;
|
|
41131
41301
|
type: string;
|
|
41132
41302
|
};
|
|
41133
41303
|
is_tailscale_proxy_socks_server_healthy: {
|
|
41134
41304
|
description: string;
|
|
41305
|
+
nullable: boolean;
|
|
41135
41306
|
type: string;
|
|
41136
41307
|
};
|
|
41137
41308
|
message: {
|
|
@@ -41263,10 +41434,12 @@ declare const _default: {
|
|
|
41263
41434
|
properties: {
|
|
41264
41435
|
can_tailscale_proxy_reach_bridge: {
|
|
41265
41436
|
description: string;
|
|
41437
|
+
nullable: boolean;
|
|
41266
41438
|
type: string;
|
|
41267
41439
|
};
|
|
41268
41440
|
can_tailscale_proxy_reach_tailscale_network: {
|
|
41269
41441
|
description: string;
|
|
41442
|
+
nullable: boolean;
|
|
41270
41443
|
type: string;
|
|
41271
41444
|
};
|
|
41272
41445
|
created_at: {
|
|
@@ -41280,14 +41453,17 @@ declare const _default: {
|
|
|
41280
41453
|
};
|
|
41281
41454
|
is_bridge_socks_server_healthy: {
|
|
41282
41455
|
description: string;
|
|
41456
|
+
nullable: boolean;
|
|
41283
41457
|
type: string;
|
|
41284
41458
|
};
|
|
41285
41459
|
is_tailscale_proxy_reachable: {
|
|
41286
41460
|
description: string;
|
|
41461
|
+
nullable: boolean;
|
|
41287
41462
|
type: string;
|
|
41288
41463
|
};
|
|
41289
41464
|
is_tailscale_proxy_socks_server_healthy: {
|
|
41290
41465
|
description: string;
|
|
41466
|
+
nullable: boolean;
|
|
41291
41467
|
type: string;
|
|
41292
41468
|
};
|
|
41293
41469
|
message: {
|
|
@@ -55944,12 +56120,15 @@ interface Routes {
|
|
|
55944
56120
|
/** */
|
|
55945
56121
|
pending_mutations?: Array<{
|
|
55946
56122
|
created_at: string;
|
|
56123
|
+
message: string;
|
|
55947
56124
|
mutation_code: 'creating';
|
|
55948
56125
|
} | {
|
|
55949
56126
|
created_at: string;
|
|
56127
|
+
message: string;
|
|
55950
56128
|
mutation_code: 'deleting';
|
|
55951
56129
|
} | {
|
|
55952
56130
|
created_at: string;
|
|
56131
|
+
message: string;
|
|
55953
56132
|
mutation_code: 'updating_user_information';
|
|
55954
56133
|
from: {
|
|
55955
56134
|
email_address?: (string | null) | undefined;
|
|
@@ -55963,21 +56142,19 @@ interface Routes {
|
|
|
55963
56142
|
};
|
|
55964
56143
|
} | {
|
|
55965
56144
|
created_at: string;
|
|
56145
|
+
message: string;
|
|
55966
56146
|
mutation_code: 'updating_access_schedule';
|
|
55967
56147
|
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. */
|
|
56148
|
+
starts_at: string | null;
|
|
55971
56149
|
ends_at: string | null;
|
|
55972
56150
|
};
|
|
55973
56151
|
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. */
|
|
56152
|
+
starts_at: string | null;
|
|
55977
56153
|
ends_at: string | null;
|
|
55978
56154
|
};
|
|
55979
56155
|
} | {
|
|
55980
56156
|
created_at: string;
|
|
56157
|
+
message: string;
|
|
55981
56158
|
mutation_code: 'updating_suspension_state';
|
|
55982
56159
|
from: {
|
|
55983
56160
|
is_suspended: boolean;
|
|
@@ -55987,6 +56164,7 @@ interface Routes {
|
|
|
55987
56164
|
};
|
|
55988
56165
|
} | {
|
|
55989
56166
|
created_at: string;
|
|
56167
|
+
message: string;
|
|
55990
56168
|
mutation_code: 'updating_group_membership';
|
|
55991
56169
|
from: {
|
|
55992
56170
|
acs_access_group_id: string | null;
|
|
@@ -58454,6 +58632,54 @@ interface Routes {
|
|
|
58454
58632
|
};
|
|
58455
58633
|
};
|
|
58456
58634
|
};
|
|
58635
|
+
'/acs/encoders/get': {
|
|
58636
|
+
route: '/acs/encoders/get';
|
|
58637
|
+
method: 'GET' | 'POST';
|
|
58638
|
+
queryParams: {};
|
|
58639
|
+
jsonBody: {};
|
|
58640
|
+
commonParams: {
|
|
58641
|
+
/** ID of the desired encoder. */
|
|
58642
|
+
acs_encoder_id: string;
|
|
58643
|
+
};
|
|
58644
|
+
formData: {};
|
|
58645
|
+
jsonResponse: {
|
|
58646
|
+
/** 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).
|
|
58647
|
+
|
|
58648
|
+
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:
|
|
58649
|
+
|
|
58650
|
+
1. Credential creation
|
|
58651
|
+
Configure the access parameters for the credential.
|
|
58652
|
+
2. Card encoding
|
|
58653
|
+
Write the credential data onto the card using a compatible card encoder.
|
|
58654
|
+
|
|
58655
|
+
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.
|
|
58656
|
+
|
|
58657
|
+
See [Working with Card Encoders and Scanners](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).
|
|
58658
|
+
|
|
58659
|
+
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). */
|
|
58660
|
+
acs_encoder: {
|
|
58661
|
+
/** ID of the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners. */
|
|
58662
|
+
acs_encoder_id: string;
|
|
58663
|
+
/** 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). */
|
|
58664
|
+
acs_system_id: string;
|
|
58665
|
+
/** 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). */
|
|
58666
|
+
workspace_id: string;
|
|
58667
|
+
/** Errors associated with the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
58668
|
+
errors: Array<{
|
|
58669
|
+
/** Date and time at which Seam created the error. */
|
|
58670
|
+
created_at: string;
|
|
58671
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58672
|
+
message: string;
|
|
58673
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58674
|
+
error_code: 'acs_encoder_removed';
|
|
58675
|
+
}>;
|
|
58676
|
+
/** Date and time at which the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was created. */
|
|
58677
|
+
created_at: string;
|
|
58678
|
+
/** Display name for the [encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
|
|
58679
|
+
display_name: string;
|
|
58680
|
+
};
|
|
58681
|
+
};
|
|
58682
|
+
};
|
|
58457
58683
|
'/acs/encoders/list': {
|
|
58458
58684
|
route: '/acs/encoders/list';
|
|
58459
58685
|
method: 'GET' | 'POST';
|
|
@@ -60393,12 +60619,15 @@ interface Routes {
|
|
|
60393
60619
|
/** */
|
|
60394
60620
|
pending_mutations?: Array<{
|
|
60395
60621
|
created_at: string;
|
|
60622
|
+
message: string;
|
|
60396
60623
|
mutation_code: 'creating';
|
|
60397
60624
|
} | {
|
|
60398
60625
|
created_at: string;
|
|
60626
|
+
message: string;
|
|
60399
60627
|
mutation_code: 'deleting';
|
|
60400
60628
|
} | {
|
|
60401
60629
|
created_at: string;
|
|
60630
|
+
message: string;
|
|
60402
60631
|
mutation_code: 'updating_user_information';
|
|
60403
60632
|
from: {
|
|
60404
60633
|
email_address?: (string | null) | undefined;
|
|
@@ -60412,21 +60641,19 @@ interface Routes {
|
|
|
60412
60641
|
};
|
|
60413
60642
|
} | {
|
|
60414
60643
|
created_at: string;
|
|
60644
|
+
message: string;
|
|
60415
60645
|
mutation_code: 'updating_access_schedule';
|
|
60416
60646
|
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. */
|
|
60647
|
+
starts_at: string | null;
|
|
60420
60648
|
ends_at: string | null;
|
|
60421
60649
|
};
|
|
60422
60650
|
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. */
|
|
60651
|
+
starts_at: string | null;
|
|
60426
60652
|
ends_at: string | null;
|
|
60427
60653
|
};
|
|
60428
60654
|
} | {
|
|
60429
60655
|
created_at: string;
|
|
60656
|
+
message: string;
|
|
60430
60657
|
mutation_code: 'updating_suspension_state';
|
|
60431
60658
|
from: {
|
|
60432
60659
|
is_suspended: boolean;
|
|
@@ -60436,6 +60663,7 @@ interface Routes {
|
|
|
60436
60663
|
};
|
|
60437
60664
|
} | {
|
|
60438
60665
|
created_at: string;
|
|
60666
|
+
message: string;
|
|
60439
60667
|
mutation_code: 'updating_group_membership';
|
|
60440
60668
|
from: {
|
|
60441
60669
|
acs_access_group_id: string | null;
|
|
@@ -60577,12 +60805,15 @@ interface Routes {
|
|
|
60577
60805
|
/** */
|
|
60578
60806
|
pending_mutations?: Array<{
|
|
60579
60807
|
created_at: string;
|
|
60808
|
+
message: string;
|
|
60580
60809
|
mutation_code: 'creating';
|
|
60581
60810
|
} | {
|
|
60582
60811
|
created_at: string;
|
|
60812
|
+
message: string;
|
|
60583
60813
|
mutation_code: 'deleting';
|
|
60584
60814
|
} | {
|
|
60585
60815
|
created_at: string;
|
|
60816
|
+
message: string;
|
|
60586
60817
|
mutation_code: 'updating_user_information';
|
|
60587
60818
|
from: {
|
|
60588
60819
|
email_address?: (string | null) | undefined;
|
|
@@ -60596,21 +60827,19 @@ interface Routes {
|
|
|
60596
60827
|
};
|
|
60597
60828
|
} | {
|
|
60598
60829
|
created_at: string;
|
|
60830
|
+
message: string;
|
|
60599
60831
|
mutation_code: 'updating_access_schedule';
|
|
60600
60832
|
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. */
|
|
60833
|
+
starts_at: string | null;
|
|
60604
60834
|
ends_at: string | null;
|
|
60605
60835
|
};
|
|
60606
60836
|
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. */
|
|
60837
|
+
starts_at: string | null;
|
|
60610
60838
|
ends_at: string | null;
|
|
60611
60839
|
};
|
|
60612
60840
|
} | {
|
|
60613
60841
|
created_at: string;
|
|
60842
|
+
message: string;
|
|
60614
60843
|
mutation_code: 'updating_suspension_state';
|
|
60615
60844
|
from: {
|
|
60616
60845
|
is_suspended: boolean;
|
|
@@ -60620,6 +60849,7 @@ interface Routes {
|
|
|
60620
60849
|
};
|
|
60621
60850
|
} | {
|
|
60622
60851
|
created_at: string;
|
|
60852
|
+
message: string;
|
|
60623
60853
|
mutation_code: 'updating_group_membership';
|
|
60624
60854
|
from: {
|
|
60625
60855
|
acs_access_group_id: string | null;
|
|
@@ -60757,12 +60987,15 @@ interface Routes {
|
|
|
60757
60987
|
/** */
|
|
60758
60988
|
pending_mutations?: Array<{
|
|
60759
60989
|
created_at: string;
|
|
60990
|
+
message: string;
|
|
60760
60991
|
mutation_code: 'creating';
|
|
60761
60992
|
} | {
|
|
60762
60993
|
created_at: string;
|
|
60994
|
+
message: string;
|
|
60763
60995
|
mutation_code: 'deleting';
|
|
60764
60996
|
} | {
|
|
60765
60997
|
created_at: string;
|
|
60998
|
+
message: string;
|
|
60766
60999
|
mutation_code: 'updating_user_information';
|
|
60767
61000
|
from: {
|
|
60768
61001
|
email_address?: (string | null) | undefined;
|
|
@@ -60776,21 +61009,19 @@ interface Routes {
|
|
|
60776
61009
|
};
|
|
60777
61010
|
} | {
|
|
60778
61011
|
created_at: string;
|
|
61012
|
+
message: string;
|
|
60779
61013
|
mutation_code: 'updating_access_schedule';
|
|
60780
61014
|
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. */
|
|
61015
|
+
starts_at: string | null;
|
|
60784
61016
|
ends_at: string | null;
|
|
60785
61017
|
};
|
|
60786
61018
|
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. */
|
|
61019
|
+
starts_at: string | null;
|
|
60790
61020
|
ends_at: string | null;
|
|
60791
61021
|
};
|
|
60792
61022
|
} | {
|
|
60793
61023
|
created_at: string;
|
|
61024
|
+
message: string;
|
|
60794
61025
|
mutation_code: 'updating_suspension_state';
|
|
60795
61026
|
from: {
|
|
60796
61027
|
is_suspended: boolean;
|
|
@@ -60800,6 +61031,7 @@ interface Routes {
|
|
|
60800
61031
|
};
|
|
60801
61032
|
} | {
|
|
60802
61033
|
created_at: string;
|
|
61034
|
+
message: string;
|
|
60803
61035
|
mutation_code: 'updating_group_membership';
|
|
60804
61036
|
from: {
|
|
60805
61037
|
acs_access_group_id: string | null;
|
|
@@ -61046,12 +61278,15 @@ interface Routes {
|
|
|
61046
61278
|
/** */
|
|
61047
61279
|
pending_mutations?: Array<{
|
|
61048
61280
|
created_at: string;
|
|
61281
|
+
message: string;
|
|
61049
61282
|
mutation_code: 'creating';
|
|
61050
61283
|
} | {
|
|
61051
61284
|
created_at: string;
|
|
61285
|
+
message: string;
|
|
61052
61286
|
mutation_code: 'deleting';
|
|
61053
61287
|
} | {
|
|
61054
61288
|
created_at: string;
|
|
61289
|
+
message: string;
|
|
61055
61290
|
mutation_code: 'updating_user_information';
|
|
61056
61291
|
from: {
|
|
61057
61292
|
email_address?: (string | null) | undefined;
|
|
@@ -61065,21 +61300,19 @@ interface Routes {
|
|
|
61065
61300
|
};
|
|
61066
61301
|
} | {
|
|
61067
61302
|
created_at: string;
|
|
61303
|
+
message: string;
|
|
61068
61304
|
mutation_code: 'updating_access_schedule';
|
|
61069
61305
|
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. */
|
|
61306
|
+
starts_at: string | null;
|
|
61073
61307
|
ends_at: string | null;
|
|
61074
61308
|
};
|
|
61075
61309
|
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. */
|
|
61310
|
+
starts_at: string | null;
|
|
61079
61311
|
ends_at: string | null;
|
|
61080
61312
|
};
|
|
61081
61313
|
} | {
|
|
61082
61314
|
created_at: string;
|
|
61315
|
+
message: string;
|
|
61083
61316
|
mutation_code: 'updating_suspension_state';
|
|
61084
61317
|
from: {
|
|
61085
61318
|
is_suspended: boolean;
|
|
@@ -61089,6 +61322,7 @@ interface Routes {
|
|
|
61089
61322
|
};
|
|
61090
61323
|
} | {
|
|
61091
61324
|
created_at: string;
|
|
61325
|
+
message: string;
|
|
61092
61326
|
mutation_code: 'updating_group_membership';
|
|
61093
61327
|
from: {
|
|
61094
61328
|
acs_access_group_id: string | null;
|
|
@@ -61216,12 +61450,15 @@ interface Routes {
|
|
|
61216
61450
|
/** */
|
|
61217
61451
|
pending_mutations?: Array<{
|
|
61218
61452
|
created_at: string;
|
|
61453
|
+
message: string;
|
|
61219
61454
|
mutation_code: 'creating';
|
|
61220
61455
|
} | {
|
|
61221
61456
|
created_at: string;
|
|
61457
|
+
message: string;
|
|
61222
61458
|
mutation_code: 'deleting';
|
|
61223
61459
|
} | {
|
|
61224
61460
|
created_at: string;
|
|
61461
|
+
message: string;
|
|
61225
61462
|
mutation_code: 'updating_user_information';
|
|
61226
61463
|
from: {
|
|
61227
61464
|
email_address?: (string | null) | undefined;
|
|
@@ -61235,21 +61472,19 @@ interface Routes {
|
|
|
61235
61472
|
};
|
|
61236
61473
|
} | {
|
|
61237
61474
|
created_at: string;
|
|
61475
|
+
message: string;
|
|
61238
61476
|
mutation_code: 'updating_access_schedule';
|
|
61239
61477
|
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. */
|
|
61478
|
+
starts_at: string | null;
|
|
61243
61479
|
ends_at: string | null;
|
|
61244
61480
|
};
|
|
61245
61481
|
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. */
|
|
61482
|
+
starts_at: string | null;
|
|
61249
61483
|
ends_at: string | null;
|
|
61250
61484
|
};
|
|
61251
61485
|
} | {
|
|
61252
61486
|
created_at: string;
|
|
61487
|
+
message: string;
|
|
61253
61488
|
mutation_code: 'updating_suspension_state';
|
|
61254
61489
|
from: {
|
|
61255
61490
|
is_suspended: boolean;
|
|
@@ -61259,6 +61494,7 @@ interface Routes {
|
|
|
61259
61494
|
};
|
|
61260
61495
|
} | {
|
|
61261
61496
|
created_at: string;
|
|
61497
|
+
message: string;
|
|
61262
61498
|
mutation_code: 'updating_group_membership';
|
|
61263
61499
|
from: {
|
|
61264
61500
|
acs_access_group_id: string | null;
|
|
@@ -78079,15 +78315,15 @@ interface Routes {
|
|
|
78079
78315
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78080
78316
|
error_code: 'bridge_lan_unreachable';
|
|
78081
78317
|
/** Seam cannot reach the tailscale proxy */
|
|
78082
|
-
is_tailscale_proxy_reachable: boolean;
|
|
78318
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
78083
78319
|
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
78084
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
78320
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
78085
78321
|
/** Tailscale proxy cannot reach the Tailscale network */
|
|
78086
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
78322
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
78087
78323
|
/** Tailscale proxy cannot reach the bridge */
|
|
78088
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
78324
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
78089
78325
|
/** Bridge's SOCKS server is unhealthy */
|
|
78090
|
-
is_bridge_socks_server_healthy: boolean;
|
|
78326
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
78091
78327
|
} | {
|
|
78092
78328
|
message: string;
|
|
78093
78329
|
created_at: string;
|
|
@@ -78123,15 +78359,15 @@ interface Routes {
|
|
|
78123
78359
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78124
78360
|
error_code: 'bridge_lan_unreachable';
|
|
78125
78361
|
/** Seam cannot reach the tailscale proxy */
|
|
78126
|
-
is_tailscale_proxy_reachable: boolean;
|
|
78362
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
78127
78363
|
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
78128
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
78364
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
78129
78365
|
/** Tailscale proxy cannot reach the Tailscale network */
|
|
78130
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
78366
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
78131
78367
|
/** Tailscale proxy cannot reach the bridge */
|
|
78132
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
78368
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
78133
78369
|
/** Bridge's SOCKS server is unhealthy */
|
|
78134
|
-
is_bridge_socks_server_healthy: boolean;
|
|
78370
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
78135
78371
|
} | {
|
|
78136
78372
|
message: string;
|
|
78137
78373
|
created_at: string;
|
|
@@ -78167,15 +78403,15 @@ interface Routes {
|
|
|
78167
78403
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78168
78404
|
error_code: 'bridge_lan_unreachable';
|
|
78169
78405
|
/** Seam cannot reach the tailscale proxy */
|
|
78170
|
-
is_tailscale_proxy_reachable: boolean;
|
|
78406
|
+
is_tailscale_proxy_reachable: boolean | null;
|
|
78171
78407
|
/** Tailscale proxy's SOCKS server is unhealthy */
|
|
78172
|
-
is_tailscale_proxy_socks_server_healthy: boolean;
|
|
78408
|
+
is_tailscale_proxy_socks_server_healthy: boolean | null;
|
|
78173
78409
|
/** Tailscale proxy cannot reach the Tailscale network */
|
|
78174
|
-
can_tailscale_proxy_reach_tailscale_network: boolean;
|
|
78410
|
+
can_tailscale_proxy_reach_tailscale_network: boolean | null;
|
|
78175
78411
|
/** Tailscale proxy cannot reach the bridge */
|
|
78176
|
-
can_tailscale_proxy_reach_bridge: boolean;
|
|
78412
|
+
can_tailscale_proxy_reach_bridge: boolean | null;
|
|
78177
78413
|
/** Bridge's SOCKS server is unhealthy */
|
|
78178
|
-
is_bridge_socks_server_healthy: boolean;
|
|
78414
|
+
is_bridge_socks_server_healthy: boolean | null;
|
|
78179
78415
|
} | {
|
|
78180
78416
|
message: string;
|
|
78181
78417
|
created_at: string;
|
|
@@ -89641,12 +89877,15 @@ interface Routes {
|
|
|
89641
89877
|
/** */
|
|
89642
89878
|
pending_mutations?: Array<{
|
|
89643
89879
|
created_at: string;
|
|
89880
|
+
message: string;
|
|
89644
89881
|
mutation_code: 'creating';
|
|
89645
89882
|
} | {
|
|
89646
89883
|
created_at: string;
|
|
89884
|
+
message: string;
|
|
89647
89885
|
mutation_code: 'deleting';
|
|
89648
89886
|
} | {
|
|
89649
89887
|
created_at: string;
|
|
89888
|
+
message: string;
|
|
89650
89889
|
mutation_code: 'updating_user_information';
|
|
89651
89890
|
from: {
|
|
89652
89891
|
email_address?: (string | null) | undefined;
|
|
@@ -89660,21 +89899,19 @@ interface Routes {
|
|
|
89660
89899
|
};
|
|
89661
89900
|
} | {
|
|
89662
89901
|
created_at: string;
|
|
89902
|
+
message: string;
|
|
89663
89903
|
mutation_code: 'updating_access_schedule';
|
|
89664
89904
|
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. */
|
|
89905
|
+
starts_at: string | null;
|
|
89668
89906
|
ends_at: string | null;
|
|
89669
89907
|
};
|
|
89670
89908
|
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. */
|
|
89909
|
+
starts_at: string | null;
|
|
89674
89910
|
ends_at: string | null;
|
|
89675
89911
|
};
|
|
89676
89912
|
} | {
|
|
89677
89913
|
created_at: string;
|
|
89914
|
+
message: string;
|
|
89678
89915
|
mutation_code: 'updating_suspension_state';
|
|
89679
89916
|
from: {
|
|
89680
89917
|
is_suspended: boolean;
|
|
@@ -89684,6 +89921,7 @@ interface Routes {
|
|
|
89684
89921
|
};
|
|
89685
89922
|
} | {
|
|
89686
89923
|
created_at: string;
|
|
89924
|
+
message: string;
|
|
89687
89925
|
mutation_code: 'updating_group_membership';
|
|
89688
89926
|
from: {
|
|
89689
89927
|
acs_access_group_id: string | null;
|