@seamapi/types 1.508.0 → 1.510.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 +96 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +161 -89
- package/dist/index.cjs +96 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +145 -89
- package/lib/seam/connect/openapi.js +96 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +16 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +106 -0
- package/src/lib/seam/connect/route-types.ts +16 -0
|
@@ -25207,6 +25207,8 @@ export type Routes = {
|
|
|
25207
25207
|
queryParams: {};
|
|
25208
25208
|
jsonBody: {};
|
|
25209
25209
|
commonParams: {
|
|
25210
|
+
/** Customer key for which you want to list entrances. */
|
|
25211
|
+
customer_key?: string | undefined;
|
|
25210
25212
|
/** ID of the access system for which you want to retrieve all entrances. */
|
|
25211
25213
|
acs_system_id?: string | undefined;
|
|
25212
25214
|
/** ID of the credential for which you want to retrieve all entrances. */
|
|
@@ -25640,6 +25642,8 @@ export type Routes = {
|
|
|
25640
25642
|
queryParams: {};
|
|
25641
25643
|
jsonBody: {};
|
|
25642
25644
|
commonParams: {
|
|
25645
|
+
/** Customer key for which you want to list access systems. */
|
|
25646
|
+
customer_key?: string | undefined;
|
|
25643
25647
|
/** ID of the connected account by which you want to filter the list of access systems. */
|
|
25644
25648
|
connected_account_id?: string | undefined;
|
|
25645
25649
|
};
|
|
@@ -30357,6 +30361,8 @@ export type Routes = {
|
|
|
30357
30361
|
queryParams: {};
|
|
30358
30362
|
jsonBody: {};
|
|
30359
30363
|
commonParams: {
|
|
30364
|
+
/** Customer key for which you want to list connect webviews. */
|
|
30365
|
+
customer_key?: string | undefined;
|
|
30360
30366
|
/** Your user ID for the user by which you want to filter Connect Webviews. */
|
|
30361
30367
|
user_identifier_key?: string | undefined;
|
|
30362
30368
|
/** Custom metadata pairs by which you want to [filter Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). Returns Connect Webviews with `custom_metadata` that contains all of the provided key:value pairs. */
|
|
@@ -32696,6 +32702,8 @@ export type Routes = {
|
|
|
32696
32702
|
jsonBody: {};
|
|
32697
32703
|
commonParams: {
|
|
32698
32704
|
customer_ids?: string[] | undefined;
|
|
32705
|
+
/** Customer key for which you want to list devices. */
|
|
32706
|
+
customer_key?: string | undefined;
|
|
32699
32707
|
/** ID of the connected account for which you want to list devices. */
|
|
32700
32708
|
connected_account_id?: string | undefined;
|
|
32701
32709
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -34421,6 +34429,8 @@ export type Routes = {
|
|
|
34421
34429
|
jsonBody: {};
|
|
34422
34430
|
commonParams: {
|
|
34423
34431
|
customer_ids?: string[] | undefined;
|
|
34432
|
+
/** Customer key for which you want to list devices. */
|
|
34433
|
+
customer_key?: string | undefined;
|
|
34424
34434
|
/** ID of the connected account for which you want to list devices. */
|
|
34425
34435
|
connected_account_id?: string | undefined;
|
|
34426
34436
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -41070,6 +41080,8 @@ export type Routes = {
|
|
|
41070
41080
|
jsonBody: {};
|
|
41071
41081
|
commonParams: {
|
|
41072
41082
|
customer_ids?: string[] | undefined;
|
|
41083
|
+
/** Customer key for which you want to list devices. */
|
|
41084
|
+
customer_key?: string | undefined;
|
|
41073
41085
|
/** ID of the connected account for which you want to list devices. */
|
|
41074
41086
|
connected_account_id?: string | undefined;
|
|
41075
41087
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -48497,6 +48509,8 @@ export type Routes = {
|
|
|
48497
48509
|
jsonBody: {};
|
|
48498
48510
|
commonParams: {
|
|
48499
48511
|
customer_ids?: string[] | undefined;
|
|
48512
|
+
/** Customer key for which you want to list devices. */
|
|
48513
|
+
customer_key?: string | undefined;
|
|
48500
48514
|
/** ID of the connected account for which you want to list devices. */
|
|
48501
48515
|
connected_account_id?: string | undefined;
|
|
48502
48516
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -67333,6 +67347,8 @@ export type Routes = {
|
|
|
67333
67347
|
jsonBody: {};
|
|
67334
67348
|
commonParams: {
|
|
67335
67349
|
customer_ids?: string[] | undefined;
|
|
67350
|
+
/** Customer key for which you want to list devices. */
|
|
67351
|
+
customer_key?: string | undefined;
|
|
67336
67352
|
/** ID of the connected account for which you want to list devices. */
|
|
67337
67353
|
connected_account_id?: string | undefined;
|
|
67338
67354
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
package/package.json
CHANGED
|
@@ -33188,6 +33188,14 @@ export default {
|
|
|
33188
33188
|
'Returns a list of all [access system entrances](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
33189
33189
|
operationId: 'acsEntrancesListGet',
|
|
33190
33190
|
parameters: [
|
|
33191
|
+
{
|
|
33192
|
+
in: 'query',
|
|
33193
|
+
name: 'customer_key',
|
|
33194
|
+
schema: {
|
|
33195
|
+
description: 'Customer key for which you want to list entrances.',
|
|
33196
|
+
type: 'string',
|
|
33197
|
+
},
|
|
33198
|
+
},
|
|
33191
33199
|
{
|
|
33192
33200
|
in: 'query',
|
|
33193
33201
|
name: 'acs_system_id',
|
|
@@ -33384,6 +33392,11 @@ export default {
|
|
|
33384
33392
|
format: 'uuid',
|
|
33385
33393
|
type: 'string',
|
|
33386
33394
|
},
|
|
33395
|
+
customer_key: {
|
|
33396
|
+
description:
|
|
33397
|
+
'Customer key for which you want to list entrances.',
|
|
33398
|
+
type: 'string',
|
|
33399
|
+
},
|
|
33387
33400
|
limit: {
|
|
33388
33401
|
default: 900,
|
|
33389
33402
|
description:
|
|
@@ -33705,6 +33718,15 @@ export default {
|
|
|
33705
33718
|
'Returns a list of all [access systems](https://docs.seam.co/latest/capability-guides/access-systems).\n\nTo filter the list of returned access systems by a specific connected account ID, include the `connected_account_id` in the request body. If you omit the `connected_account_id` parameter, the response includes all access systems connected to your workspace.',
|
|
33706
33719
|
operationId: 'acsSystemsListGet',
|
|
33707
33720
|
parameters: [
|
|
33721
|
+
{
|
|
33722
|
+
in: 'query',
|
|
33723
|
+
name: 'customer_key',
|
|
33724
|
+
schema: {
|
|
33725
|
+
description:
|
|
33726
|
+
'Customer key for which you want to list access systems.',
|
|
33727
|
+
type: 'string',
|
|
33728
|
+
},
|
|
33729
|
+
},
|
|
33708
33730
|
{
|
|
33709
33731
|
in: 'query',
|
|
33710
33732
|
name: 'connected_account_id',
|
|
@@ -33767,6 +33789,11 @@ export default {
|
|
|
33767
33789
|
format: 'uuid',
|
|
33768
33790
|
type: 'string',
|
|
33769
33791
|
},
|
|
33792
|
+
customer_key: {
|
|
33793
|
+
description:
|
|
33794
|
+
'Customer key for which you want to list access systems.',
|
|
33795
|
+
type: 'string',
|
|
33796
|
+
},
|
|
33770
33797
|
},
|
|
33771
33798
|
type: 'object',
|
|
33772
33799
|
},
|
|
@@ -37421,6 +37448,15 @@ export default {
|
|
|
37421
37448
|
'Returns a list of all [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews).',
|
|
37422
37449
|
operationId: 'connectWebviewsListGet',
|
|
37423
37450
|
parameters: [
|
|
37451
|
+
{
|
|
37452
|
+
in: 'query',
|
|
37453
|
+
name: 'customer_key',
|
|
37454
|
+
schema: {
|
|
37455
|
+
description:
|
|
37456
|
+
'Customer key for which you want to list connect webviews.',
|
|
37457
|
+
type: 'string',
|
|
37458
|
+
},
|
|
37459
|
+
},
|
|
37424
37460
|
{
|
|
37425
37461
|
in: 'query',
|
|
37426
37462
|
name: 'user_identifier_key',
|
|
@@ -37518,6 +37554,11 @@ export default {
|
|
|
37518
37554
|
'Custom metadata pairs by which you want to [filter Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). Returns Connect Webviews with `custom_metadata` that contains all of the provided key:value pairs.',
|
|
37519
37555
|
type: 'object',
|
|
37520
37556
|
},
|
|
37557
|
+
customer_key: {
|
|
37558
|
+
description:
|
|
37559
|
+
'Customer key for which you want to list connect webviews.',
|
|
37560
|
+
type: 'string',
|
|
37561
|
+
},
|
|
37521
37562
|
limit: {
|
|
37522
37563
|
default: 500,
|
|
37523
37564
|
description:
|
|
@@ -40187,6 +40228,14 @@ export default {
|
|
|
40187
40228
|
type: 'array',
|
|
40188
40229
|
},
|
|
40189
40230
|
},
|
|
40231
|
+
{
|
|
40232
|
+
in: 'query',
|
|
40233
|
+
name: 'customer_key',
|
|
40234
|
+
schema: {
|
|
40235
|
+
description: 'Customer key for which you want to list devices.',
|
|
40236
|
+
type: 'string',
|
|
40237
|
+
},
|
|
40238
|
+
},
|
|
40190
40239
|
{
|
|
40191
40240
|
in: 'query',
|
|
40192
40241
|
name: 'connected_account_id',
|
|
@@ -40648,6 +40697,11 @@ export default {
|
|
|
40648
40697
|
items: { format: 'uuid', type: 'string' },
|
|
40649
40698
|
type: 'array',
|
|
40650
40699
|
},
|
|
40700
|
+
customer_key: {
|
|
40701
|
+
description:
|
|
40702
|
+
'Customer key for which you want to list devices.',
|
|
40703
|
+
type: 'string',
|
|
40704
|
+
},
|
|
40651
40705
|
device_ids: {
|
|
40652
40706
|
description:
|
|
40653
40707
|
'Array of device IDs for which you want to list devices.',
|
|
@@ -41478,6 +41532,14 @@ export default {
|
|
|
41478
41532
|
type: 'array',
|
|
41479
41533
|
},
|
|
41480
41534
|
},
|
|
41535
|
+
{
|
|
41536
|
+
in: 'query',
|
|
41537
|
+
name: 'customer_key',
|
|
41538
|
+
schema: {
|
|
41539
|
+
description: 'Customer key for which you want to list devices.',
|
|
41540
|
+
type: 'string',
|
|
41541
|
+
},
|
|
41542
|
+
},
|
|
41481
41543
|
{
|
|
41482
41544
|
in: 'query',
|
|
41483
41545
|
name: 'connected_account_id',
|
|
@@ -41936,6 +41998,11 @@ export default {
|
|
|
41936
41998
|
items: { format: 'uuid', type: 'string' },
|
|
41937
41999
|
type: 'array',
|
|
41938
42000
|
},
|
|
42001
|
+
customer_key: {
|
|
42002
|
+
description:
|
|
42003
|
+
'Customer key for which you want to list devices.',
|
|
42004
|
+
type: 'string',
|
|
42005
|
+
},
|
|
41939
42006
|
device_ids: {
|
|
41940
42007
|
description:
|
|
41941
42008
|
'Array of device IDs for which you want to list devices.',
|
|
@@ -43835,6 +43902,14 @@ export default {
|
|
|
43835
43902
|
type: 'array',
|
|
43836
43903
|
},
|
|
43837
43904
|
},
|
|
43905
|
+
{
|
|
43906
|
+
in: 'query',
|
|
43907
|
+
name: 'customer_key',
|
|
43908
|
+
schema: {
|
|
43909
|
+
description: 'Customer key for which you want to list devices.',
|
|
43910
|
+
type: 'string',
|
|
43911
|
+
},
|
|
43912
|
+
},
|
|
43838
43913
|
{
|
|
43839
43914
|
in: 'query',
|
|
43840
43915
|
name: 'connected_account_id',
|
|
@@ -44232,6 +44307,11 @@ export default {
|
|
|
44232
44307
|
items: { format: 'uuid', type: 'string' },
|
|
44233
44308
|
type: 'array',
|
|
44234
44309
|
},
|
|
44310
|
+
customer_key: {
|
|
44311
|
+
description:
|
|
44312
|
+
'Customer key for which you want to list devices.',
|
|
44313
|
+
type: 'string',
|
|
44314
|
+
},
|
|
44235
44315
|
device_ids: {
|
|
44236
44316
|
description:
|
|
44237
44317
|
'Array of device IDs for which you want to list devices.',
|
|
@@ -44744,6 +44824,14 @@ export default {
|
|
|
44744
44824
|
type: 'array',
|
|
44745
44825
|
},
|
|
44746
44826
|
},
|
|
44827
|
+
{
|
|
44828
|
+
in: 'query',
|
|
44829
|
+
name: 'customer_key',
|
|
44830
|
+
schema: {
|
|
44831
|
+
description: 'Customer key for which you want to list devices.',
|
|
44832
|
+
type: 'string',
|
|
44833
|
+
},
|
|
44834
|
+
},
|
|
44747
44835
|
{
|
|
44748
44836
|
in: 'query',
|
|
44749
44837
|
name: 'connected_account_id',
|
|
@@ -45059,6 +45147,11 @@ export default {
|
|
|
45059
45147
|
items: { format: 'uuid', type: 'string' },
|
|
45060
45148
|
type: 'array',
|
|
45061
45149
|
},
|
|
45150
|
+
customer_key: {
|
|
45151
|
+
description:
|
|
45152
|
+
'Customer key for which you want to list devices.',
|
|
45153
|
+
type: 'string',
|
|
45154
|
+
},
|
|
45062
45155
|
device_ids: {
|
|
45063
45156
|
description:
|
|
45064
45157
|
'Array of device IDs for which you want to list devices.',
|
|
@@ -51521,6 +51614,14 @@ export default {
|
|
|
51521
51614
|
type: 'array',
|
|
51522
51615
|
},
|
|
51523
51616
|
},
|
|
51617
|
+
{
|
|
51618
|
+
in: 'query',
|
|
51619
|
+
name: 'customer_key',
|
|
51620
|
+
schema: {
|
|
51621
|
+
description: 'Customer key for which you want to list devices.',
|
|
51622
|
+
type: 'string',
|
|
51623
|
+
},
|
|
51624
|
+
},
|
|
51524
51625
|
{
|
|
51525
51626
|
in: 'query',
|
|
51526
51627
|
name: 'connected_account_id',
|
|
@@ -51857,6 +51958,11 @@ export default {
|
|
|
51857
51958
|
items: { format: 'uuid', type: 'string' },
|
|
51858
51959
|
type: 'array',
|
|
51859
51960
|
},
|
|
51961
|
+
customer_key: {
|
|
51962
|
+
description:
|
|
51963
|
+
'Customer key for which you want to list devices.',
|
|
51964
|
+
type: 'string',
|
|
51965
|
+
},
|
|
51860
51966
|
device_ids: {
|
|
51861
51967
|
description:
|
|
51862
51968
|
'Array of device IDs for which you want to list devices.',
|
|
@@ -29220,6 +29220,8 @@ export type Routes = {
|
|
|
29220
29220
|
queryParams: {}
|
|
29221
29221
|
jsonBody: {}
|
|
29222
29222
|
commonParams: {
|
|
29223
|
+
/** Customer key for which you want to list entrances. */
|
|
29224
|
+
customer_key?: string | undefined
|
|
29223
29225
|
/** ID of the access system for which you want to retrieve all entrances. */
|
|
29224
29226
|
acs_system_id?: string | undefined
|
|
29225
29227
|
/** ID of the credential for which you want to retrieve all entrances. */
|
|
@@ -29751,6 +29753,8 @@ export type Routes = {
|
|
|
29751
29753
|
queryParams: {}
|
|
29752
29754
|
jsonBody: {}
|
|
29753
29755
|
commonParams: {
|
|
29756
|
+
/** Customer key for which you want to list access systems. */
|
|
29757
|
+
customer_key?: string | undefined
|
|
29754
29758
|
/** ID of the connected account by which you want to filter the list of access systems. */
|
|
29755
29759
|
connected_account_id?: string | undefined
|
|
29756
29760
|
}
|
|
@@ -35196,6 +35200,8 @@ export type Routes = {
|
|
|
35196
35200
|
queryParams: {}
|
|
35197
35201
|
jsonBody: {}
|
|
35198
35202
|
commonParams: {
|
|
35203
|
+
/** Customer key for which you want to list connect webviews. */
|
|
35204
|
+
customer_key?: string | undefined
|
|
35199
35205
|
/** Your user ID for the user by which you want to filter Connect Webviews. */
|
|
35200
35206
|
user_identifier_key?: string | undefined
|
|
35201
35207
|
/** Custom metadata pairs by which you want to [filter Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). Returns Connect Webviews with `custom_metadata` that contains all of the provided key:value pairs. */
|
|
@@ -37971,6 +37977,8 @@ export type Routes = {
|
|
|
37971
37977
|
jsonBody: {}
|
|
37972
37978
|
commonParams: {
|
|
37973
37979
|
customer_ids?: string[] | undefined
|
|
37980
|
+
/** Customer key for which you want to list devices. */
|
|
37981
|
+
customer_key?: string | undefined
|
|
37974
37982
|
/** ID of the connected account for which you want to list devices. */
|
|
37975
37983
|
connected_account_id?: string | undefined
|
|
37976
37984
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -40313,6 +40321,8 @@ export type Routes = {
|
|
|
40313
40321
|
jsonBody: {}
|
|
40314
40322
|
commonParams: {
|
|
40315
40323
|
customer_ids?: string[] | undefined
|
|
40324
|
+
/** Customer key for which you want to list devices. */
|
|
40325
|
+
customer_key?: string | undefined
|
|
40316
40326
|
/** ID of the connected account for which you want to list devices. */
|
|
40317
40327
|
connected_account_id?: string | undefined
|
|
40318
40328
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -48675,6 +48685,8 @@ export type Routes = {
|
|
|
48675
48685
|
jsonBody: {}
|
|
48676
48686
|
commonParams: {
|
|
48677
48687
|
customer_ids?: string[] | undefined
|
|
48688
|
+
/** Customer key for which you want to list devices. */
|
|
48689
|
+
customer_key?: string | undefined
|
|
48678
48690
|
/** ID of the connected account for which you want to list devices. */
|
|
48679
48691
|
connected_account_id?: string | undefined
|
|
48680
48692
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -57561,6 +57573,8 @@ export type Routes = {
|
|
|
57561
57573
|
jsonBody: {}
|
|
57562
57574
|
commonParams: {
|
|
57563
57575
|
customer_ids?: string[] | undefined
|
|
57576
|
+
/** Customer key for which you want to list devices. */
|
|
57577
|
+
customer_key?: string | undefined
|
|
57564
57578
|
/** ID of the connected account for which you want to list devices. */
|
|
57565
57579
|
connected_account_id?: string | undefined
|
|
57566
57580
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -79925,6 +79939,8 @@ export type Routes = {
|
|
|
79925
79939
|
jsonBody: {}
|
|
79926
79940
|
commonParams: {
|
|
79927
79941
|
customer_ids?: string[] | undefined
|
|
79942
|
+
/** Customer key for which you want to list devices. */
|
|
79943
|
+
customer_key?: string | undefined
|
|
79928
79944
|
/** ID of the connected account for which you want to list devices. */
|
|
79929
79945
|
connected_account_id?: string | undefined
|
|
79930
79946
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|