@seamapi/types 1.46.0 → 1.48.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 +316 -35
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +445 -34
- package/lib/seam/connect/openapi.d.ts +371 -20
- package/lib/seam/connect/openapi.js +316 -35
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +74 -14
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +4 -4
- package/lib/seam/connect/unstable/models/acs/credential.js +1 -0
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/entrance.d.ts +18 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js +8 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js.map +1 -0
- package/lib/seam/connect/unstable/models/acs/index.d.ts +1 -0
- package/lib/seam/connect/unstable/models/acs/index.js +1 -0
- package/lib/seam/connect/unstable/models/acs/index.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/system.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/system.js +1 -0
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/user.d.ts +4 -4
- package/lib/seam/connect/unstable/models/acs/user.js +5 -1
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/schemas.d.ts +1 -1
- package/lib/seam/connect/unstable/schemas.js +1 -1
- package/lib/seam/connect/unstable/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +316 -35
- package/src/lib/seam/connect/route-types.ts +94 -14
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +1 -0
- package/src/lib/seam/connect/unstable/models/acs/entrance.ts +10 -0
- package/src/lib/seam/connect/unstable/models/acs/index.ts +1 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -0
- package/src/lib/seam/connect/unstable/models/acs/user.ts +5 -1
- package/src/lib/seam/connect/unstable/schemas.ts +1 -0
|
@@ -1916,6 +1916,28 @@ declare const _default: {
|
|
|
1916
1916
|
required: string[];
|
|
1917
1917
|
type: string;
|
|
1918
1918
|
};
|
|
1919
|
+
device_provider: {
|
|
1920
|
+
properties: {
|
|
1921
|
+
device_provider_name: {
|
|
1922
|
+
type: string;
|
|
1923
|
+
};
|
|
1924
|
+
display_name: {
|
|
1925
|
+
type: string;
|
|
1926
|
+
};
|
|
1927
|
+
image_url: {
|
|
1928
|
+
type: string;
|
|
1929
|
+
};
|
|
1930
|
+
provider_categories: {
|
|
1931
|
+
items: {
|
|
1932
|
+
enum: string[];
|
|
1933
|
+
type: string;
|
|
1934
|
+
};
|
|
1935
|
+
type: string;
|
|
1936
|
+
};
|
|
1937
|
+
};
|
|
1938
|
+
required: string[];
|
|
1939
|
+
type: string;
|
|
1940
|
+
};
|
|
1919
1941
|
event: {
|
|
1920
1942
|
properties: {
|
|
1921
1943
|
created_at: {
|
|
@@ -4402,6 +4424,47 @@ declare const _default: {
|
|
|
4402
4424
|
'application/json': {
|
|
4403
4425
|
schema: {
|
|
4404
4426
|
properties: {
|
|
4427
|
+
acs_credential: {
|
|
4428
|
+
properties: {
|
|
4429
|
+
acs_credential_id: {
|
|
4430
|
+
format: string;
|
|
4431
|
+
type: string;
|
|
4432
|
+
};
|
|
4433
|
+
acs_system_id: {
|
|
4434
|
+
format: string;
|
|
4435
|
+
type: string;
|
|
4436
|
+
};
|
|
4437
|
+
acs_user_id: {
|
|
4438
|
+
format: string;
|
|
4439
|
+
type: string;
|
|
4440
|
+
};
|
|
4441
|
+
code: {
|
|
4442
|
+
nullable: boolean;
|
|
4443
|
+
type: string;
|
|
4444
|
+
};
|
|
4445
|
+
created_at: {
|
|
4446
|
+
format: string;
|
|
4447
|
+
type: string;
|
|
4448
|
+
};
|
|
4449
|
+
display_name: {
|
|
4450
|
+
minLength: number;
|
|
4451
|
+
type: string;
|
|
4452
|
+
};
|
|
4453
|
+
external_type: {
|
|
4454
|
+
enum: string[];
|
|
4455
|
+
type: string;
|
|
4456
|
+
};
|
|
4457
|
+
external_type_display_name: {
|
|
4458
|
+
type: string;
|
|
4459
|
+
};
|
|
4460
|
+
workspace_id: {
|
|
4461
|
+
format: string;
|
|
4462
|
+
type: string;
|
|
4463
|
+
};
|
|
4464
|
+
};
|
|
4465
|
+
required: string[];
|
|
4466
|
+
type: string;
|
|
4467
|
+
};
|
|
4405
4468
|
ok: {
|
|
4406
4469
|
type: string;
|
|
4407
4470
|
};
|
|
@@ -4468,6 +4531,47 @@ declare const _default: {
|
|
|
4468
4531
|
'application/json': {
|
|
4469
4532
|
schema: {
|
|
4470
4533
|
properties: {
|
|
4534
|
+
acs_credential: {
|
|
4535
|
+
properties: {
|
|
4536
|
+
acs_credential_id: {
|
|
4537
|
+
format: string;
|
|
4538
|
+
type: string;
|
|
4539
|
+
};
|
|
4540
|
+
acs_system_id: {
|
|
4541
|
+
format: string;
|
|
4542
|
+
type: string;
|
|
4543
|
+
};
|
|
4544
|
+
acs_user_id: {
|
|
4545
|
+
format: string;
|
|
4546
|
+
type: string;
|
|
4547
|
+
};
|
|
4548
|
+
code: {
|
|
4549
|
+
nullable: boolean;
|
|
4550
|
+
type: string;
|
|
4551
|
+
};
|
|
4552
|
+
created_at: {
|
|
4553
|
+
format: string;
|
|
4554
|
+
type: string;
|
|
4555
|
+
};
|
|
4556
|
+
display_name: {
|
|
4557
|
+
minLength: number;
|
|
4558
|
+
type: string;
|
|
4559
|
+
};
|
|
4560
|
+
external_type: {
|
|
4561
|
+
enum: string[];
|
|
4562
|
+
type: string;
|
|
4563
|
+
};
|
|
4564
|
+
external_type_display_name: {
|
|
4565
|
+
type: string;
|
|
4566
|
+
};
|
|
4567
|
+
workspace_id: {
|
|
4568
|
+
format: string;
|
|
4569
|
+
type: string;
|
|
4570
|
+
};
|
|
4571
|
+
};
|
|
4572
|
+
required: string[];
|
|
4573
|
+
type: string;
|
|
4574
|
+
};
|
|
4471
4575
|
ok: {
|
|
4472
4576
|
type: string;
|
|
4473
4577
|
};
|
|
@@ -4953,6 +5057,47 @@ declare const _default: {
|
|
|
4953
5057
|
'application/json': {
|
|
4954
5058
|
schema: {
|
|
4955
5059
|
properties: {
|
|
5060
|
+
acs_credential: {
|
|
5061
|
+
properties: {
|
|
5062
|
+
acs_credential_id: {
|
|
5063
|
+
format: string;
|
|
5064
|
+
type: string;
|
|
5065
|
+
};
|
|
5066
|
+
acs_system_id: {
|
|
5067
|
+
format: string;
|
|
5068
|
+
type: string;
|
|
5069
|
+
};
|
|
5070
|
+
acs_user_id: {
|
|
5071
|
+
format: string;
|
|
5072
|
+
type: string;
|
|
5073
|
+
};
|
|
5074
|
+
code: {
|
|
5075
|
+
nullable: boolean;
|
|
5076
|
+
type: string;
|
|
5077
|
+
};
|
|
5078
|
+
created_at: {
|
|
5079
|
+
format: string;
|
|
5080
|
+
type: string;
|
|
5081
|
+
};
|
|
5082
|
+
display_name: {
|
|
5083
|
+
minLength: number;
|
|
5084
|
+
type: string;
|
|
5085
|
+
};
|
|
5086
|
+
external_type: {
|
|
5087
|
+
enum: string[];
|
|
5088
|
+
type: string;
|
|
5089
|
+
};
|
|
5090
|
+
external_type_display_name: {
|
|
5091
|
+
type: string;
|
|
5092
|
+
};
|
|
5093
|
+
workspace_id: {
|
|
5094
|
+
format: string;
|
|
5095
|
+
type: string;
|
|
5096
|
+
};
|
|
5097
|
+
};
|
|
5098
|
+
required: string[];
|
|
5099
|
+
type: string;
|
|
5100
|
+
};
|
|
4956
5101
|
ok: {
|
|
4957
5102
|
type: string;
|
|
4958
5103
|
};
|
|
@@ -5019,6 +5164,47 @@ declare const _default: {
|
|
|
5019
5164
|
'application/json': {
|
|
5020
5165
|
schema: {
|
|
5021
5166
|
properties: {
|
|
5167
|
+
acs_credential: {
|
|
5168
|
+
properties: {
|
|
5169
|
+
acs_credential_id: {
|
|
5170
|
+
format: string;
|
|
5171
|
+
type: string;
|
|
5172
|
+
};
|
|
5173
|
+
acs_system_id: {
|
|
5174
|
+
format: string;
|
|
5175
|
+
type: string;
|
|
5176
|
+
};
|
|
5177
|
+
acs_user_id: {
|
|
5178
|
+
format: string;
|
|
5179
|
+
type: string;
|
|
5180
|
+
};
|
|
5181
|
+
code: {
|
|
5182
|
+
nullable: boolean;
|
|
5183
|
+
type: string;
|
|
5184
|
+
};
|
|
5185
|
+
created_at: {
|
|
5186
|
+
format: string;
|
|
5187
|
+
type: string;
|
|
5188
|
+
};
|
|
5189
|
+
display_name: {
|
|
5190
|
+
minLength: number;
|
|
5191
|
+
type: string;
|
|
5192
|
+
};
|
|
5193
|
+
external_type: {
|
|
5194
|
+
enum: string[];
|
|
5195
|
+
type: string;
|
|
5196
|
+
};
|
|
5197
|
+
external_type_display_name: {
|
|
5198
|
+
type: string;
|
|
5199
|
+
};
|
|
5200
|
+
workspace_id: {
|
|
5201
|
+
format: string;
|
|
5202
|
+
type: string;
|
|
5203
|
+
};
|
|
5204
|
+
};
|
|
5205
|
+
required: string[];
|
|
5206
|
+
type: string;
|
|
5207
|
+
};
|
|
5022
5208
|
ok: {
|
|
5023
5209
|
type: string;
|
|
5024
5210
|
};
|
|
@@ -5059,6 +5245,190 @@ declare const _default: {
|
|
|
5059
5245
|
'x-fern-sdk-method-name': string;
|
|
5060
5246
|
};
|
|
5061
5247
|
};
|
|
5248
|
+
'/acs/entrances/get': {
|
|
5249
|
+
post: {
|
|
5250
|
+
operationId: string;
|
|
5251
|
+
requestBody: {
|
|
5252
|
+
content: {
|
|
5253
|
+
'application/json': {
|
|
5254
|
+
schema: {
|
|
5255
|
+
properties: {
|
|
5256
|
+
acs_entrance_id: {
|
|
5257
|
+
format: string;
|
|
5258
|
+
type: string;
|
|
5259
|
+
};
|
|
5260
|
+
};
|
|
5261
|
+
required: string[];
|
|
5262
|
+
type: string;
|
|
5263
|
+
};
|
|
5264
|
+
};
|
|
5265
|
+
};
|
|
5266
|
+
};
|
|
5267
|
+
responses: {
|
|
5268
|
+
200: {
|
|
5269
|
+
content: {
|
|
5270
|
+
'application/json': {
|
|
5271
|
+
schema: {
|
|
5272
|
+
properties: {
|
|
5273
|
+
acs_entrance: {
|
|
5274
|
+
properties: {
|
|
5275
|
+
acs_entrance_id: {
|
|
5276
|
+
format: string;
|
|
5277
|
+
type: string;
|
|
5278
|
+
};
|
|
5279
|
+
acs_system_id: {
|
|
5280
|
+
format: string;
|
|
5281
|
+
type: string;
|
|
5282
|
+
};
|
|
5283
|
+
created_at: {
|
|
5284
|
+
format: string;
|
|
5285
|
+
type: string;
|
|
5286
|
+
};
|
|
5287
|
+
display_name: {
|
|
5288
|
+
type: string;
|
|
5289
|
+
};
|
|
5290
|
+
};
|
|
5291
|
+
required: string[];
|
|
5292
|
+
type: string;
|
|
5293
|
+
};
|
|
5294
|
+
ok: {
|
|
5295
|
+
type: string;
|
|
5296
|
+
};
|
|
5297
|
+
};
|
|
5298
|
+
required: string[];
|
|
5299
|
+
type: string;
|
|
5300
|
+
};
|
|
5301
|
+
};
|
|
5302
|
+
};
|
|
5303
|
+
description: string;
|
|
5304
|
+
};
|
|
5305
|
+
400: {
|
|
5306
|
+
description: string;
|
|
5307
|
+
};
|
|
5308
|
+
401: {
|
|
5309
|
+
description: string;
|
|
5310
|
+
};
|
|
5311
|
+
};
|
|
5312
|
+
security: ({
|
|
5313
|
+
api_key: never[];
|
|
5314
|
+
access_token?: never;
|
|
5315
|
+
user_session?: never;
|
|
5316
|
+
client_session?: never;
|
|
5317
|
+
} | {
|
|
5318
|
+
access_token: never[];
|
|
5319
|
+
api_key?: never;
|
|
5320
|
+
user_session?: never;
|
|
5321
|
+
client_session?: never;
|
|
5322
|
+
} | {
|
|
5323
|
+
user_session: never[];
|
|
5324
|
+
api_key?: never;
|
|
5325
|
+
access_token?: never;
|
|
5326
|
+
client_session?: never;
|
|
5327
|
+
} | {
|
|
5328
|
+
client_session: never[];
|
|
5329
|
+
api_key?: never;
|
|
5330
|
+
access_token?: never;
|
|
5331
|
+
user_session?: never;
|
|
5332
|
+
})[];
|
|
5333
|
+
summary: string;
|
|
5334
|
+
tags: never[];
|
|
5335
|
+
'x-fern-sdk-group-name': string[];
|
|
5336
|
+
'x-fern-sdk-method-name': string;
|
|
5337
|
+
};
|
|
5338
|
+
};
|
|
5339
|
+
'/acs/entrances/list': {
|
|
5340
|
+
post: {
|
|
5341
|
+
operationId: string;
|
|
5342
|
+
requestBody: {
|
|
5343
|
+
content: {
|
|
5344
|
+
'application/json': {
|
|
5345
|
+
schema: {
|
|
5346
|
+
properties: {
|
|
5347
|
+
acs_system_id: {
|
|
5348
|
+
format: string;
|
|
5349
|
+
type: string;
|
|
5350
|
+
};
|
|
5351
|
+
};
|
|
5352
|
+
type: string;
|
|
5353
|
+
};
|
|
5354
|
+
};
|
|
5355
|
+
};
|
|
5356
|
+
};
|
|
5357
|
+
responses: {
|
|
5358
|
+
200: {
|
|
5359
|
+
content: {
|
|
5360
|
+
'application/json': {
|
|
5361
|
+
schema: {
|
|
5362
|
+
properties: {
|
|
5363
|
+
acs_entrances: {
|
|
5364
|
+
items: {
|
|
5365
|
+
properties: {
|
|
5366
|
+
acs_entrance_id: {
|
|
5367
|
+
format: string;
|
|
5368
|
+
type: string;
|
|
5369
|
+
};
|
|
5370
|
+
acs_system_id: {
|
|
5371
|
+
format: string;
|
|
5372
|
+
type: string;
|
|
5373
|
+
};
|
|
5374
|
+
created_at: {
|
|
5375
|
+
format: string;
|
|
5376
|
+
type: string;
|
|
5377
|
+
};
|
|
5378
|
+
display_name: {
|
|
5379
|
+
type: string;
|
|
5380
|
+
};
|
|
5381
|
+
};
|
|
5382
|
+
required: string[];
|
|
5383
|
+
type: string;
|
|
5384
|
+
};
|
|
5385
|
+
type: string;
|
|
5386
|
+
};
|
|
5387
|
+
ok: {
|
|
5388
|
+
type: string;
|
|
5389
|
+
};
|
|
5390
|
+
};
|
|
5391
|
+
required: string[];
|
|
5392
|
+
type: string;
|
|
5393
|
+
};
|
|
5394
|
+
};
|
|
5395
|
+
};
|
|
5396
|
+
description: string;
|
|
5397
|
+
};
|
|
5398
|
+
400: {
|
|
5399
|
+
description: string;
|
|
5400
|
+
};
|
|
5401
|
+
401: {
|
|
5402
|
+
description: string;
|
|
5403
|
+
};
|
|
5404
|
+
};
|
|
5405
|
+
security: ({
|
|
5406
|
+
api_key: never[];
|
|
5407
|
+
access_token?: never;
|
|
5408
|
+
user_session?: never;
|
|
5409
|
+
client_session?: never;
|
|
5410
|
+
} | {
|
|
5411
|
+
access_token: never[];
|
|
5412
|
+
api_key?: never;
|
|
5413
|
+
user_session?: never;
|
|
5414
|
+
client_session?: never;
|
|
5415
|
+
} | {
|
|
5416
|
+
user_session: never[];
|
|
5417
|
+
api_key?: never;
|
|
5418
|
+
access_token?: never;
|
|
5419
|
+
client_session?: never;
|
|
5420
|
+
} | {
|
|
5421
|
+
client_session: never[];
|
|
5422
|
+
api_key?: never;
|
|
5423
|
+
access_token?: never;
|
|
5424
|
+
user_session?: never;
|
|
5425
|
+
})[];
|
|
5426
|
+
summary: string;
|
|
5427
|
+
tags: never[];
|
|
5428
|
+
'x-fern-sdk-group-name': string[];
|
|
5429
|
+
'x-fern-sdk-method-name': string;
|
|
5430
|
+
};
|
|
5431
|
+
};
|
|
5062
5432
|
'/acs/systems/get': {
|
|
5063
5433
|
post: {
|
|
5064
5434
|
operationId: string;
|
|
@@ -7730,26 +8100,7 @@ declare const _default: {
|
|
|
7730
8100
|
properties: {
|
|
7731
8101
|
device_providers: {
|
|
7732
8102
|
items: {
|
|
7733
|
-
|
|
7734
|
-
device_provider_name: {
|
|
7735
|
-
type: string;
|
|
7736
|
-
};
|
|
7737
|
-
display_name: {
|
|
7738
|
-
type: string;
|
|
7739
|
-
};
|
|
7740
|
-
image_url: {
|
|
7741
|
-
type: string;
|
|
7742
|
-
};
|
|
7743
|
-
provider_categories: {
|
|
7744
|
-
items: {
|
|
7745
|
-
enum: string[];
|
|
7746
|
-
type: string;
|
|
7747
|
-
};
|
|
7748
|
-
type: string;
|
|
7749
|
-
};
|
|
7750
|
-
};
|
|
7751
|
-
required: string[];
|
|
7752
|
-
type: string;
|
|
8103
|
+
$ref: string;
|
|
7753
8104
|
};
|
|
7754
8105
|
type: string;
|
|
7755
8106
|
};
|