@seamapi/types 1.460.0 → 1.461.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 +441 -120
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1135 -352
- package/dist/index.cjs +441 -120
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +2338 -276
- package/lib/seam/connect/models/batch.js +7 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/customer/access-grant-resources.d.ts +18 -18
- package/lib/seam/connect/models/customer/access-grant-resources.js +2 -1
- package/lib/seam/connect/models/customer/access-grant-resources.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-data.d.ts +15 -15
- package/lib/seam/connect/models/phones/phone-session.d.ts +167 -0
- package/lib/seam/connect/models/phones/phone-session.js +3 -0
- package/lib/seam/connect/models/phones/phone-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +341 -33
- package/lib/seam/connect/openapi.js +429 -113
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +650 -175
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/batch.ts +7 -0
- package/src/lib/seam/connect/models/customer/access-grant-resources.ts +2 -1
- package/src/lib/seam/connect/models/phones/phone-session.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +456 -113
- package/src/lib/seam/connect/route-types.ts +820 -189
|
@@ -11187,6 +11187,138 @@ declare const _default: {
|
|
|
11187
11187
|
};
|
|
11188
11188
|
type: string;
|
|
11189
11189
|
};
|
|
11190
|
+
user_identity: {
|
|
11191
|
+
description: string;
|
|
11192
|
+
properties: {
|
|
11193
|
+
acs_user_ids: {
|
|
11194
|
+
description: string;
|
|
11195
|
+
items: {
|
|
11196
|
+
format: string;
|
|
11197
|
+
type: string;
|
|
11198
|
+
};
|
|
11199
|
+
type: string;
|
|
11200
|
+
};
|
|
11201
|
+
created_at: {
|
|
11202
|
+
description: string;
|
|
11203
|
+
format: string;
|
|
11204
|
+
type: string;
|
|
11205
|
+
};
|
|
11206
|
+
display_name: {
|
|
11207
|
+
minLength: number;
|
|
11208
|
+
type: string;
|
|
11209
|
+
};
|
|
11210
|
+
email_address: {
|
|
11211
|
+
description: string;
|
|
11212
|
+
format: string;
|
|
11213
|
+
nullable: boolean;
|
|
11214
|
+
type: string;
|
|
11215
|
+
};
|
|
11216
|
+
errors: {
|
|
11217
|
+
description: string;
|
|
11218
|
+
items: {
|
|
11219
|
+
description: string;
|
|
11220
|
+
discriminator: {
|
|
11221
|
+
propertyName: string;
|
|
11222
|
+
};
|
|
11223
|
+
oneOf: {
|
|
11224
|
+
description: string;
|
|
11225
|
+
properties: {
|
|
11226
|
+
acs_system_id: {
|
|
11227
|
+
description: string;
|
|
11228
|
+
format: string;
|
|
11229
|
+
type: string;
|
|
11230
|
+
};
|
|
11231
|
+
acs_user_id: {
|
|
11232
|
+
description: string;
|
|
11233
|
+
format: string;
|
|
11234
|
+
type: string;
|
|
11235
|
+
};
|
|
11236
|
+
created_at: {
|
|
11237
|
+
description: string;
|
|
11238
|
+
format: string;
|
|
11239
|
+
type: string;
|
|
11240
|
+
};
|
|
11241
|
+
error_code: {
|
|
11242
|
+
description: string;
|
|
11243
|
+
enum: string[];
|
|
11244
|
+
type: string;
|
|
11245
|
+
};
|
|
11246
|
+
message: {
|
|
11247
|
+
description: string;
|
|
11248
|
+
type: string;
|
|
11249
|
+
};
|
|
11250
|
+
};
|
|
11251
|
+
required: string[];
|
|
11252
|
+
type: string;
|
|
11253
|
+
}[];
|
|
11254
|
+
};
|
|
11255
|
+
type: string;
|
|
11256
|
+
};
|
|
11257
|
+
full_name: {
|
|
11258
|
+
minLength: number;
|
|
11259
|
+
nullable: boolean;
|
|
11260
|
+
type: string;
|
|
11261
|
+
};
|
|
11262
|
+
phone_number: {
|
|
11263
|
+
description: string;
|
|
11264
|
+
nullable: boolean;
|
|
11265
|
+
type: string;
|
|
11266
|
+
};
|
|
11267
|
+
user_identity_id: {
|
|
11268
|
+
description: string;
|
|
11269
|
+
format: string;
|
|
11270
|
+
type: string;
|
|
11271
|
+
};
|
|
11272
|
+
user_identity_key: {
|
|
11273
|
+
description: string;
|
|
11274
|
+
minLength: number;
|
|
11275
|
+
nullable: boolean;
|
|
11276
|
+
type: string;
|
|
11277
|
+
};
|
|
11278
|
+
warnings: {
|
|
11279
|
+
description: string;
|
|
11280
|
+
items: {
|
|
11281
|
+
description: string;
|
|
11282
|
+
discriminator: {
|
|
11283
|
+
propertyName: string;
|
|
11284
|
+
};
|
|
11285
|
+
oneOf: {
|
|
11286
|
+
description: string;
|
|
11287
|
+
properties: {
|
|
11288
|
+
created_at: {
|
|
11289
|
+
description: string;
|
|
11290
|
+
format: string;
|
|
11291
|
+
type: string;
|
|
11292
|
+
};
|
|
11293
|
+
message: {
|
|
11294
|
+
description: string;
|
|
11295
|
+
type: string;
|
|
11296
|
+
};
|
|
11297
|
+
warning_code: {
|
|
11298
|
+
description: string;
|
|
11299
|
+
enum: string[];
|
|
11300
|
+
type: string;
|
|
11301
|
+
};
|
|
11302
|
+
};
|
|
11303
|
+
required: string[];
|
|
11304
|
+
type: string;
|
|
11305
|
+
}[];
|
|
11306
|
+
};
|
|
11307
|
+
type: string;
|
|
11308
|
+
};
|
|
11309
|
+
workspace_id: {
|
|
11310
|
+
description: string;
|
|
11311
|
+
format: string;
|
|
11312
|
+
type: string;
|
|
11313
|
+
};
|
|
11314
|
+
};
|
|
11315
|
+
required: string[];
|
|
11316
|
+
type: string;
|
|
11317
|
+
};
|
|
11318
|
+
workspace_id: {
|
|
11319
|
+
description: string;
|
|
11320
|
+
type: string;
|
|
11321
|
+
};
|
|
11190
11322
|
};
|
|
11191
11323
|
required: string[];
|
|
11192
11324
|
type: string;
|
|
@@ -16589,6 +16721,13 @@ declare const _default: {
|
|
|
16589
16721
|
};
|
|
16590
16722
|
type: string;
|
|
16591
16723
|
};
|
|
16724
|
+
space_keys: {
|
|
16725
|
+
description: string;
|
|
16726
|
+
items: {
|
|
16727
|
+
type: string;
|
|
16728
|
+
};
|
|
16729
|
+
type: string;
|
|
16730
|
+
};
|
|
16592
16731
|
starts_at: {
|
|
16593
16732
|
description: string;
|
|
16594
16733
|
type: string;
|
|
@@ -16991,7 +17130,6 @@ declare const _default: {
|
|
|
16991
17130
|
schema: {
|
|
16992
17131
|
properties: {
|
|
16993
17132
|
batch: {
|
|
16994
|
-
description: string;
|
|
16995
17133
|
properties: {
|
|
16996
17134
|
acs_entrances: {
|
|
16997
17135
|
items: {
|
|
@@ -16999,29 +17137,35 @@ declare const _default: {
|
|
|
16999
17137
|
};
|
|
17000
17138
|
type: string;
|
|
17001
17139
|
};
|
|
17140
|
+
acs_systems: {
|
|
17141
|
+
items: {
|
|
17142
|
+
$ref: string;
|
|
17143
|
+
};
|
|
17144
|
+
type: string;
|
|
17145
|
+
};
|
|
17002
17146
|
batch_type: {
|
|
17003
17147
|
enum: string[];
|
|
17004
17148
|
type: string;
|
|
17005
17149
|
};
|
|
17006
|
-
|
|
17150
|
+
connected_accounts: {
|
|
17007
17151
|
items: {
|
|
17008
17152
|
$ref: string;
|
|
17009
17153
|
};
|
|
17010
17154
|
type: string;
|
|
17011
17155
|
};
|
|
17012
|
-
|
|
17156
|
+
devices: {
|
|
17013
17157
|
items: {
|
|
17014
17158
|
$ref: string;
|
|
17015
17159
|
};
|
|
17016
17160
|
type: string;
|
|
17017
17161
|
};
|
|
17018
|
-
|
|
17162
|
+
spaces: {
|
|
17019
17163
|
items: {
|
|
17020
17164
|
$ref: string;
|
|
17021
17165
|
};
|
|
17022
17166
|
type: string;
|
|
17023
17167
|
};
|
|
17024
|
-
|
|
17168
|
+
user_identities: {
|
|
17025
17169
|
items: {
|
|
17026
17170
|
$ref: string;
|
|
17027
17171
|
};
|
|
@@ -17030,7 +17174,6 @@ declare const _default: {
|
|
|
17030
17174
|
};
|
|
17031
17175
|
required: string[];
|
|
17032
17176
|
type: string;
|
|
17033
|
-
'x-route-path': string;
|
|
17034
17177
|
};
|
|
17035
17178
|
ok: {
|
|
17036
17179
|
type: string;
|
|
@@ -17117,7 +17260,6 @@ declare const _default: {
|
|
|
17117
17260
|
schema: {
|
|
17118
17261
|
properties: {
|
|
17119
17262
|
batch: {
|
|
17120
|
-
description: string;
|
|
17121
17263
|
properties: {
|
|
17122
17264
|
acs_entrances: {
|
|
17123
17265
|
items: {
|
|
@@ -17125,29 +17267,35 @@ declare const _default: {
|
|
|
17125
17267
|
};
|
|
17126
17268
|
type: string;
|
|
17127
17269
|
};
|
|
17270
|
+
acs_systems: {
|
|
17271
|
+
items: {
|
|
17272
|
+
$ref: string;
|
|
17273
|
+
};
|
|
17274
|
+
type: string;
|
|
17275
|
+
};
|
|
17128
17276
|
batch_type: {
|
|
17129
17277
|
enum: string[];
|
|
17130
17278
|
type: string;
|
|
17131
17279
|
};
|
|
17132
|
-
|
|
17280
|
+
connected_accounts: {
|
|
17133
17281
|
items: {
|
|
17134
17282
|
$ref: string;
|
|
17135
17283
|
};
|
|
17136
17284
|
type: string;
|
|
17137
17285
|
};
|
|
17138
|
-
|
|
17286
|
+
devices: {
|
|
17139
17287
|
items: {
|
|
17140
17288
|
$ref: string;
|
|
17141
17289
|
};
|
|
17142
17290
|
type: string;
|
|
17143
17291
|
};
|
|
17144
|
-
|
|
17292
|
+
spaces: {
|
|
17145
17293
|
items: {
|
|
17146
17294
|
$ref: string;
|
|
17147
17295
|
};
|
|
17148
17296
|
type: string;
|
|
17149
17297
|
};
|
|
17150
|
-
|
|
17298
|
+
user_identities: {
|
|
17151
17299
|
items: {
|
|
17152
17300
|
$ref: string;
|
|
17153
17301
|
};
|
|
@@ -17156,7 +17304,6 @@ declare const _default: {
|
|
|
17156
17304
|
};
|
|
17157
17305
|
required: string[];
|
|
17158
17306
|
type: string;
|
|
17159
|
-
'x-route-path': string;
|
|
17160
17307
|
};
|
|
17161
17308
|
ok: {
|
|
17162
17309
|
type: string;
|
|
@@ -32545,6 +32692,141 @@ declare const _default: {
|
|
|
32545
32692
|
'x-title': string;
|
|
32546
32693
|
};
|
|
32547
32694
|
};
|
|
32695
|
+
'/instant_keys/list': {
|
|
32696
|
+
get: {
|
|
32697
|
+
description: string;
|
|
32698
|
+
operationId: string;
|
|
32699
|
+
parameters: {
|
|
32700
|
+
in: string;
|
|
32701
|
+
name: string;
|
|
32702
|
+
schema: {
|
|
32703
|
+
description: string;
|
|
32704
|
+
format: string;
|
|
32705
|
+
type: string;
|
|
32706
|
+
};
|
|
32707
|
+
}[];
|
|
32708
|
+
responses: {
|
|
32709
|
+
200: {
|
|
32710
|
+
content: {
|
|
32711
|
+
'application/json': {
|
|
32712
|
+
schema: {
|
|
32713
|
+
properties: {
|
|
32714
|
+
instant_keys: {
|
|
32715
|
+
items: {
|
|
32716
|
+
$ref: string;
|
|
32717
|
+
};
|
|
32718
|
+
type: string;
|
|
32719
|
+
};
|
|
32720
|
+
ok: {
|
|
32721
|
+
type: string;
|
|
32722
|
+
};
|
|
32723
|
+
};
|
|
32724
|
+
required: string[];
|
|
32725
|
+
type: string;
|
|
32726
|
+
};
|
|
32727
|
+
};
|
|
32728
|
+
};
|
|
32729
|
+
description: string;
|
|
32730
|
+
};
|
|
32731
|
+
400: {
|
|
32732
|
+
description: string;
|
|
32733
|
+
};
|
|
32734
|
+
401: {
|
|
32735
|
+
description: string;
|
|
32736
|
+
};
|
|
32737
|
+
};
|
|
32738
|
+
security: ({
|
|
32739
|
+
api_key: never[];
|
|
32740
|
+
pat_with_workspace?: never;
|
|
32741
|
+
console_session_with_workspace?: never;
|
|
32742
|
+
} | {
|
|
32743
|
+
pat_with_workspace: never[];
|
|
32744
|
+
api_key?: never;
|
|
32745
|
+
console_session_with_workspace?: never;
|
|
32746
|
+
} | {
|
|
32747
|
+
console_session_with_workspace: never[];
|
|
32748
|
+
api_key?: never;
|
|
32749
|
+
pat_with_workspace?: never;
|
|
32750
|
+
})[];
|
|
32751
|
+
summary: string;
|
|
32752
|
+
tags: never[];
|
|
32753
|
+
'x-fern-sdk-group-name': string[];
|
|
32754
|
+
'x-fern-sdk-method-name': string;
|
|
32755
|
+
'x-fern-sdk-return-value': string;
|
|
32756
|
+
'x-response-key': string;
|
|
32757
|
+
'x-title': string;
|
|
32758
|
+
};
|
|
32759
|
+
post: {
|
|
32760
|
+
description: string;
|
|
32761
|
+
operationId: string;
|
|
32762
|
+
requestBody: {
|
|
32763
|
+
content: {
|
|
32764
|
+
'application/json': {
|
|
32765
|
+
schema: {
|
|
32766
|
+
properties: {
|
|
32767
|
+
user_identity_id: {
|
|
32768
|
+
description: string;
|
|
32769
|
+
format: string;
|
|
32770
|
+
type: string;
|
|
32771
|
+
};
|
|
32772
|
+
};
|
|
32773
|
+
type: string;
|
|
32774
|
+
};
|
|
32775
|
+
};
|
|
32776
|
+
};
|
|
32777
|
+
};
|
|
32778
|
+
responses: {
|
|
32779
|
+
200: {
|
|
32780
|
+
content: {
|
|
32781
|
+
'application/json': {
|
|
32782
|
+
schema: {
|
|
32783
|
+
properties: {
|
|
32784
|
+
instant_keys: {
|
|
32785
|
+
items: {
|
|
32786
|
+
$ref: string;
|
|
32787
|
+
};
|
|
32788
|
+
type: string;
|
|
32789
|
+
};
|
|
32790
|
+
ok: {
|
|
32791
|
+
type: string;
|
|
32792
|
+
};
|
|
32793
|
+
};
|
|
32794
|
+
required: string[];
|
|
32795
|
+
type: string;
|
|
32796
|
+
};
|
|
32797
|
+
};
|
|
32798
|
+
};
|
|
32799
|
+
description: string;
|
|
32800
|
+
};
|
|
32801
|
+
400: {
|
|
32802
|
+
description: string;
|
|
32803
|
+
};
|
|
32804
|
+
401: {
|
|
32805
|
+
description: string;
|
|
32806
|
+
};
|
|
32807
|
+
};
|
|
32808
|
+
security: ({
|
|
32809
|
+
api_key: never[];
|
|
32810
|
+
pat_with_workspace?: never;
|
|
32811
|
+
console_session_with_workspace?: never;
|
|
32812
|
+
} | {
|
|
32813
|
+
pat_with_workspace: never[];
|
|
32814
|
+
api_key?: never;
|
|
32815
|
+
console_session_with_workspace?: never;
|
|
32816
|
+
} | {
|
|
32817
|
+
console_session_with_workspace: never[];
|
|
32818
|
+
api_key?: never;
|
|
32819
|
+
pat_with_workspace?: never;
|
|
32820
|
+
})[];
|
|
32821
|
+
summary: string;
|
|
32822
|
+
tags: never[];
|
|
32823
|
+
'x-fern-sdk-group-name': string[];
|
|
32824
|
+
'x-fern-sdk-method-name': string;
|
|
32825
|
+
'x-fern-sdk-return-value': string;
|
|
32826
|
+
'x-response-key': string;
|
|
32827
|
+
'x-title': string;
|
|
32828
|
+
};
|
|
32829
|
+
};
|
|
32548
32830
|
'/locks/get': {
|
|
32549
32831
|
get: {
|
|
32550
32832
|
description: string;
|
|
@@ -35916,7 +36198,7 @@ declare const _default: {
|
|
|
35916
36198
|
'x-undocumented': string;
|
|
35917
36199
|
};
|
|
35918
36200
|
};
|
|
35919
|
-
'/seam/console/v1/
|
|
36201
|
+
'/seam/console/v1/get_resource_locator': {
|
|
35920
36202
|
get: {
|
|
35921
36203
|
description: string;
|
|
35922
36204
|
operationId: string;
|
|
@@ -35938,7 +36220,21 @@ declare const _default: {
|
|
|
35938
36220
|
ok: {
|
|
35939
36221
|
type: string;
|
|
35940
36222
|
};
|
|
35941
|
-
|
|
36223
|
+
resource_locator: {
|
|
36224
|
+
properties: {
|
|
36225
|
+
acs_system_id: {
|
|
36226
|
+
format: string;
|
|
36227
|
+
type: string;
|
|
36228
|
+
};
|
|
36229
|
+
device_id: {
|
|
36230
|
+
format: string;
|
|
36231
|
+
type: string;
|
|
36232
|
+
};
|
|
36233
|
+
resource_type: {
|
|
36234
|
+
type: string;
|
|
36235
|
+
};
|
|
36236
|
+
};
|
|
36237
|
+
required: string[];
|
|
35942
36238
|
type: string;
|
|
35943
36239
|
};
|
|
35944
36240
|
};
|
|
@@ -36007,7 +36303,21 @@ declare const _default: {
|
|
|
36007
36303
|
ok: {
|
|
36008
36304
|
type: string;
|
|
36009
36305
|
};
|
|
36010
|
-
|
|
36306
|
+
resource_locator: {
|
|
36307
|
+
properties: {
|
|
36308
|
+
acs_system_id: {
|
|
36309
|
+
format: string;
|
|
36310
|
+
type: string;
|
|
36311
|
+
};
|
|
36312
|
+
device_id: {
|
|
36313
|
+
format: string;
|
|
36314
|
+
type: string;
|
|
36315
|
+
};
|
|
36316
|
+
resource_type: {
|
|
36317
|
+
type: string;
|
|
36318
|
+
};
|
|
36319
|
+
};
|
|
36320
|
+
required: string[];
|
|
36011
36321
|
type: string;
|
|
36012
36322
|
};
|
|
36013
36323
|
};
|
|
@@ -38504,29 +38814,29 @@ declare const _default: {
|
|
|
38504
38814
|
};
|
|
38505
38815
|
type: string;
|
|
38506
38816
|
};
|
|
38507
|
-
|
|
38508
|
-
enum: string[];
|
|
38509
|
-
type: string;
|
|
38510
|
-
};
|
|
38511
|
-
devices: {
|
|
38817
|
+
acs_systems: {
|
|
38512
38818
|
items: {
|
|
38513
38819
|
$ref: string;
|
|
38514
38820
|
};
|
|
38515
38821
|
type: string;
|
|
38516
38822
|
};
|
|
38517
|
-
|
|
38823
|
+
batch_type: {
|
|
38824
|
+
enum: string[];
|
|
38825
|
+
type: string;
|
|
38826
|
+
};
|
|
38827
|
+
connected_accounts: {
|
|
38518
38828
|
items: {
|
|
38519
38829
|
$ref: string;
|
|
38520
38830
|
};
|
|
38521
38831
|
type: string;
|
|
38522
38832
|
};
|
|
38523
|
-
|
|
38833
|
+
devices: {
|
|
38524
38834
|
items: {
|
|
38525
38835
|
$ref: string;
|
|
38526
38836
|
};
|
|
38527
38837
|
type: string;
|
|
38528
38838
|
};
|
|
38529
|
-
|
|
38839
|
+
spaces: {
|
|
38530
38840
|
items: {
|
|
38531
38841
|
$ref: string;
|
|
38532
38842
|
};
|
|
@@ -38535,7 +38845,6 @@ declare const _default: {
|
|
|
38535
38845
|
};
|
|
38536
38846
|
required: string[];
|
|
38537
38847
|
type: string;
|
|
38538
|
-
'x-route-path': string;
|
|
38539
38848
|
};
|
|
38540
38849
|
ok: {
|
|
38541
38850
|
type: string;
|
|
@@ -38630,29 +38939,29 @@ declare const _default: {
|
|
|
38630
38939
|
};
|
|
38631
38940
|
type: string;
|
|
38632
38941
|
};
|
|
38633
|
-
|
|
38634
|
-
enum: string[];
|
|
38635
|
-
type: string;
|
|
38636
|
-
};
|
|
38637
|
-
devices: {
|
|
38942
|
+
acs_systems: {
|
|
38638
38943
|
items: {
|
|
38639
38944
|
$ref: string;
|
|
38640
38945
|
};
|
|
38641
38946
|
type: string;
|
|
38642
38947
|
};
|
|
38643
|
-
|
|
38948
|
+
batch_type: {
|
|
38949
|
+
enum: string[];
|
|
38950
|
+
type: string;
|
|
38951
|
+
};
|
|
38952
|
+
connected_accounts: {
|
|
38644
38953
|
items: {
|
|
38645
38954
|
$ref: string;
|
|
38646
38955
|
};
|
|
38647
38956
|
type: string;
|
|
38648
38957
|
};
|
|
38649
|
-
|
|
38958
|
+
devices: {
|
|
38650
38959
|
items: {
|
|
38651
38960
|
$ref: string;
|
|
38652
38961
|
};
|
|
38653
38962
|
type: string;
|
|
38654
38963
|
};
|
|
38655
|
-
|
|
38964
|
+
spaces: {
|
|
38656
38965
|
items: {
|
|
38657
38966
|
$ref: string;
|
|
38658
38967
|
};
|
|
@@ -38661,7 +38970,6 @@ declare const _default: {
|
|
|
38661
38970
|
};
|
|
38662
38971
|
required: string[];
|
|
38663
38972
|
type: string;
|
|
38664
|
-
'x-route-path': string;
|
|
38665
38973
|
};
|
|
38666
38974
|
ok: {
|
|
38667
38975
|
type: string;
|