@seamapi/types 1.967.0 → 1.969.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 +77 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +167 -0
- package/dist/index.cjs +77 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +119 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +11 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/salto.d.ts +8 -0
- package/lib/seam/connect/models/acs/metadata/salto.js +9 -0
- package/lib/seam/connect/models/acs/metadata/salto.js.map +1 -1
- package/lib/seam/connect/openapi.js +60 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +99 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +16 -0
- package/src/lib/seam/connect/models/acs/metadata/salto.ts +16 -0
- package/src/lib/seam/connect/openapi.ts +70 -0
- package/src/lib/seam/connect/route-types.ts +126 -0
|
@@ -27668,6 +27668,13 @@ export type Routes = {
|
|
|
27668
27668
|
message: string
|
|
27669
27669
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
27670
27670
|
}
|
|
27671
|
+
| {
|
|
27672
|
+
/** Date and time at which Seam created the warning. */
|
|
27673
|
+
created_at: string
|
|
27674
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27675
|
+
message: string
|
|
27676
|
+
warning_code: 'acs_user_inactive'
|
|
27677
|
+
}
|
|
27671
27678
|
| {
|
|
27672
27679
|
/** Date and time at which Seam created the warning. */
|
|
27673
27680
|
created_at: string
|
|
@@ -27886,6 +27893,13 @@ export type Routes = {
|
|
|
27886
27893
|
audit_openings?: (boolean | undefined) | undefined
|
|
27887
27894
|
}
|
|
27888
27895
|
| undefined
|
|
27896
|
+
/** Salto KS-specific metadata associated with the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
27897
|
+
salto_ks_metadata?:
|
|
27898
|
+
| {
|
|
27899
|
+
/** Indicates whether the user holds an active subscription slot on the Salto KS site. Only subscribed users can unlock doors and count against the site's user-subscription limit. A user may not be subscribed because their access schedule has not started or has ended, the site has reached its subscription limit, or they were manually unsubscribed. This is distinct from `is_suspended`, which reflects whether the user has been explicitly blocked. */
|
|
27900
|
+
is_subscribed?: (boolean | undefined) | undefined
|
|
27901
|
+
}
|
|
27902
|
+
| undefined
|
|
27889
27903
|
/** Full name of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
27890
27904
|
full_name?: string | undefined
|
|
27891
27905
|
/**
|
|
@@ -40364,6 +40378,13 @@ export type Routes = {
|
|
|
40364
40378
|
message: string
|
|
40365
40379
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
40366
40380
|
}
|
|
40381
|
+
| {
|
|
40382
|
+
/** Date and time at which Seam created the warning. */
|
|
40383
|
+
created_at: string
|
|
40384
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40385
|
+
message: string
|
|
40386
|
+
warning_code: 'acs_user_inactive'
|
|
40387
|
+
}
|
|
40367
40388
|
| {
|
|
40368
40389
|
/** Date and time at which Seam created the warning. */
|
|
40369
40390
|
created_at: string
|
|
@@ -40582,6 +40603,13 @@ export type Routes = {
|
|
|
40582
40603
|
audit_openings?: (boolean | undefined) | undefined
|
|
40583
40604
|
}
|
|
40584
40605
|
| undefined
|
|
40606
|
+
/** Salto KS-specific metadata associated with the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
40607
|
+
salto_ks_metadata?:
|
|
40608
|
+
| {
|
|
40609
|
+
/** Indicates whether the user holds an active subscription slot on the Salto KS site. Only subscribed users can unlock doors and count against the site's user-subscription limit. A user may not be subscribed because their access schedule has not started or has ended, the site has reached its subscription limit, or they were manually unsubscribed. This is distinct from `is_suspended`, which reflects whether the user has been explicitly blocked. */
|
|
40610
|
+
is_subscribed?: (boolean | undefined) | undefined
|
|
40611
|
+
}
|
|
40612
|
+
| undefined
|
|
40585
40613
|
/** Full name of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
40586
40614
|
full_name?: string | undefined
|
|
40587
40615
|
/**
|
|
@@ -40698,6 +40726,13 @@ export type Routes = {
|
|
|
40698
40726
|
message: string
|
|
40699
40727
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
40700
40728
|
}
|
|
40729
|
+
| {
|
|
40730
|
+
/** Date and time at which Seam created the warning. */
|
|
40731
|
+
created_at: string
|
|
40732
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40733
|
+
message: string
|
|
40734
|
+
warning_code: 'acs_user_inactive'
|
|
40735
|
+
}
|
|
40701
40736
|
| {
|
|
40702
40737
|
/** Date and time at which Seam created the warning. */
|
|
40703
40738
|
created_at: string
|
|
@@ -40916,6 +40951,13 @@ export type Routes = {
|
|
|
40916
40951
|
audit_openings?: (boolean | undefined) | undefined
|
|
40917
40952
|
}
|
|
40918
40953
|
| undefined
|
|
40954
|
+
/** Salto KS-specific metadata associated with the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
40955
|
+
salto_ks_metadata?:
|
|
40956
|
+
| {
|
|
40957
|
+
/** Indicates whether the user holds an active subscription slot on the Salto KS site. Only subscribed users can unlock doors and count against the site's user-subscription limit. A user may not be subscribed because their access schedule has not started or has ended, the site has reached its subscription limit, or they were manually unsubscribed. This is distinct from `is_suspended`, which reflects whether the user has been explicitly blocked. */
|
|
40958
|
+
is_subscribed?: (boolean | undefined) | undefined
|
|
40959
|
+
}
|
|
40960
|
+
| undefined
|
|
40919
40961
|
/** Full name of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
40920
40962
|
full_name?: string | undefined
|
|
40921
40963
|
/**
|
|
@@ -41020,6 +41062,13 @@ export type Routes = {
|
|
|
41020
41062
|
message: string
|
|
41021
41063
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
41022
41064
|
}
|
|
41065
|
+
| {
|
|
41066
|
+
/** Date and time at which Seam created the warning. */
|
|
41067
|
+
created_at: string
|
|
41068
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41069
|
+
message: string
|
|
41070
|
+
warning_code: 'acs_user_inactive'
|
|
41071
|
+
}
|
|
41023
41072
|
| {
|
|
41024
41073
|
/** Date and time at which Seam created the warning. */
|
|
41025
41074
|
created_at: string
|
|
@@ -41238,6 +41287,13 @@ export type Routes = {
|
|
|
41238
41287
|
audit_openings?: (boolean | undefined) | undefined
|
|
41239
41288
|
}
|
|
41240
41289
|
| undefined
|
|
41290
|
+
/** Salto KS-specific metadata associated with the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
41291
|
+
salto_ks_metadata?:
|
|
41292
|
+
| {
|
|
41293
|
+
/** Indicates whether the user holds an active subscription slot on the Salto KS site. Only subscribed users can unlock doors and count against the site's user-subscription limit. A user may not be subscribed because their access schedule has not started or has ended, the site has reached its subscription limit, or they were manually unsubscribed. This is distinct from `is_suspended`, which reflects whether the user has been explicitly blocked. */
|
|
41294
|
+
is_subscribed?: (boolean | undefined) | undefined
|
|
41295
|
+
}
|
|
41296
|
+
| undefined
|
|
41241
41297
|
/** Full name of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
41242
41298
|
full_name?: string | undefined
|
|
41243
41299
|
/**
|
|
@@ -41647,6 +41703,13 @@ export type Routes = {
|
|
|
41647
41703
|
message: string
|
|
41648
41704
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
41649
41705
|
}
|
|
41706
|
+
| {
|
|
41707
|
+
/** Date and time at which Seam created the warning. */
|
|
41708
|
+
created_at: string
|
|
41709
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41710
|
+
message: string
|
|
41711
|
+
warning_code: 'acs_user_inactive'
|
|
41712
|
+
}
|
|
41650
41713
|
| {
|
|
41651
41714
|
/** Date and time at which Seam created the warning. */
|
|
41652
41715
|
created_at: string
|
|
@@ -41865,6 +41928,13 @@ export type Routes = {
|
|
|
41865
41928
|
audit_openings?: (boolean | undefined) | undefined
|
|
41866
41929
|
}
|
|
41867
41930
|
| undefined
|
|
41931
|
+
/** Salto KS-specific metadata associated with the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
41932
|
+
salto_ks_metadata?:
|
|
41933
|
+
| {
|
|
41934
|
+
/** Indicates whether the user holds an active subscription slot on the Salto KS site. Only subscribed users can unlock doors and count against the site's user-subscription limit. A user may not be subscribed because their access schedule has not started or has ended, the site has reached its subscription limit, or they were manually unsubscribed. This is distinct from `is_suspended`, which reflects whether the user has been explicitly blocked. */
|
|
41935
|
+
is_subscribed?: (boolean | undefined) | undefined
|
|
41936
|
+
}
|
|
41937
|
+
| undefined
|
|
41868
41938
|
/** Full name of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
41869
41939
|
full_name?: string | undefined
|
|
41870
41940
|
/**
|
|
@@ -41964,6 +42034,13 @@ export type Routes = {
|
|
|
41964
42034
|
message: string
|
|
41965
42035
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
41966
42036
|
}
|
|
42037
|
+
| {
|
|
42038
|
+
/** Date and time at which Seam created the warning. */
|
|
42039
|
+
created_at: string
|
|
42040
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42041
|
+
message: string
|
|
42042
|
+
warning_code: 'acs_user_inactive'
|
|
42043
|
+
}
|
|
41967
42044
|
| {
|
|
41968
42045
|
/** Date and time at which Seam created the warning. */
|
|
41969
42046
|
created_at: string
|
|
@@ -42182,6 +42259,13 @@ export type Routes = {
|
|
|
42182
42259
|
audit_openings?: (boolean | undefined) | undefined
|
|
42183
42260
|
}
|
|
42184
42261
|
| undefined
|
|
42262
|
+
/** Salto KS-specific metadata associated with the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
42263
|
+
salto_ks_metadata?:
|
|
42264
|
+
| {
|
|
42265
|
+
/** Indicates whether the user holds an active subscription slot on the Salto KS site. Only subscribed users can unlock doors and count against the site's user-subscription limit. A user may not be subscribed because their access schedule has not started or has ended, the site has reached its subscription limit, or they were manually unsubscribed. This is distinct from `is_suspended`, which reflects whether the user has been explicitly blocked. */
|
|
42266
|
+
is_subscribed?: (boolean | undefined) | undefined
|
|
42267
|
+
}
|
|
42268
|
+
| undefined
|
|
42185
42269
|
/** Full name of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
42186
42270
|
full_name?: string | undefined
|
|
42187
42271
|
/**
|
|
@@ -135135,6 +135219,13 @@ export type Routes = {
|
|
|
135135
135219
|
message: string
|
|
135136
135220
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
135137
135221
|
}
|
|
135222
|
+
| {
|
|
135223
|
+
/** Date and time at which Seam created the warning. */
|
|
135224
|
+
created_at: string
|
|
135225
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
135226
|
+
message: string
|
|
135227
|
+
warning_code: 'acs_user_inactive'
|
|
135228
|
+
}
|
|
135138
135229
|
| {
|
|
135139
135230
|
/** Date and time at which Seam created the warning. */
|
|
135140
135231
|
created_at: string
|
|
@@ -135353,6 +135444,13 @@ export type Routes = {
|
|
|
135353
135444
|
audit_openings?: (boolean | undefined) | undefined
|
|
135354
135445
|
}
|
|
135355
135446
|
| undefined
|
|
135447
|
+
/** Salto KS-specific metadata associated with the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
135448
|
+
salto_ks_metadata?:
|
|
135449
|
+
| {
|
|
135450
|
+
/** Indicates whether the user holds an active subscription slot on the Salto KS site. Only subscribed users can unlock doors and count against the site's user-subscription limit. A user may not be subscribed because their access schedule has not started or has ended, the site has reached its subscription limit, or they were manually unsubscribed. This is distinct from `is_suspended`, which reflects whether the user has been explicitly blocked. */
|
|
135451
|
+
is_subscribed?: (boolean | undefined) | undefined
|
|
135452
|
+
}
|
|
135453
|
+
| undefined
|
|
135356
135454
|
/** Full name of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
135357
135455
|
full_name?: string | undefined
|
|
135358
135456
|
/**
|
|
@@ -138480,6 +138578,13 @@ export type Routes = {
|
|
|
138480
138578
|
message: string
|
|
138481
138579
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
138482
138580
|
}
|
|
138581
|
+
| {
|
|
138582
|
+
/** Date and time at which Seam created the warning. */
|
|
138583
|
+
created_at: string
|
|
138584
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
138585
|
+
message: string
|
|
138586
|
+
warning_code: 'acs_user_inactive'
|
|
138587
|
+
}
|
|
138483
138588
|
| {
|
|
138484
138589
|
/** Date and time at which Seam created the warning. */
|
|
138485
138590
|
created_at: string
|
|
@@ -138702,6 +138807,13 @@ export type Routes = {
|
|
|
138702
138807
|
audit_openings?: (boolean | undefined) | undefined
|
|
138703
138808
|
}
|
|
138704
138809
|
| undefined
|
|
138810
|
+
/** Salto KS-specific metadata associated with the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
138811
|
+
salto_ks_metadata?:
|
|
138812
|
+
| {
|
|
138813
|
+
/** Indicates whether the user holds an active subscription slot on the Salto KS site. Only subscribed users can unlock doors and count against the site's user-subscription limit. A user may not be subscribed because their access schedule has not started or has ended, the site has reached its subscription limit, or they were manually unsubscribed. This is distinct from `is_suspended`, which reflects whether the user has been explicitly blocked. */
|
|
138814
|
+
is_subscribed?: (boolean | undefined) | undefined
|
|
138815
|
+
}
|
|
138816
|
+
| undefined
|
|
138705
138817
|
/** Full name of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
138706
138818
|
full_name?: string | undefined
|
|
138707
138819
|
/**
|
|
@@ -141094,6 +141206,13 @@ export type Routes = {
|
|
|
141094
141206
|
message: string
|
|
141095
141207
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
141096
141208
|
}
|
|
141209
|
+
| {
|
|
141210
|
+
/** Date and time at which Seam created the warning. */
|
|
141211
|
+
created_at: string
|
|
141212
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
141213
|
+
message: string
|
|
141214
|
+
warning_code: 'acs_user_inactive'
|
|
141215
|
+
}
|
|
141097
141216
|
| {
|
|
141098
141217
|
/** Date and time at which Seam created the warning. */
|
|
141099
141218
|
created_at: string
|
|
@@ -141316,6 +141435,13 @@ export type Routes = {
|
|
|
141316
141435
|
audit_openings?: (boolean | undefined) | undefined
|
|
141317
141436
|
}
|
|
141318
141437
|
| undefined
|
|
141438
|
+
/** Salto KS-specific metadata associated with the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
141439
|
+
salto_ks_metadata?:
|
|
141440
|
+
| {
|
|
141441
|
+
/** Indicates whether the user holds an active subscription slot on the Salto KS site. Only subscribed users can unlock doors and count against the site's user-subscription limit. A user may not be subscribed because their access schedule has not started or has ended, the site has reached its subscription limit, or they were manually unsubscribed. This is distinct from `is_suspended`, which reflects whether the user has been explicitly blocked. */
|
|
141442
|
+
is_subscribed?: (boolean | undefined) | undefined
|
|
141443
|
+
}
|
|
141444
|
+
| undefined
|
|
141319
141445
|
/** Full name of the [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management). */
|
|
141320
141446
|
full_name?: string | undefined
|
|
141321
141447
|
/**
|