@seamapi/types 1.472.0 → 1.473.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 +0 -993
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +197 -1725
- package/dist/index.cjs +0 -993
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/index.d.ts +0 -1
- package/lib/seam/connect/models/index.js +0 -1
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +0 -1312
- package/lib/seam/connect/openapi.js +0 -993
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +0 -216
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +0 -2
- package/src/lib/seam/connect/models/index.ts +0 -1
- package/src/lib/seam/connect/openapi.ts +0 -1015
- package/src/lib/seam/connect/route-types.ts +0 -228
- package/lib/seam/connect/models/locations/index.d.ts +0 -1
- package/lib/seam/connect/models/locations/index.js +0 -2
- package/lib/seam/connect/models/locations/index.js.map +0 -1
- package/lib/seam/connect/models/locations/location.d.ts +0 -52
- package/lib/seam/connect/models/locations/location.js +0 -31
- package/lib/seam/connect/models/locations/location.js.map +0 -1
- package/src/lib/seam/connect/models/locations/index.ts +0 -1
- package/src/lib/seam/connect/models/locations/location.ts +0 -36
|
@@ -72185,222 +72185,6 @@ export type Routes = {
|
|
|
72185
72185
|
};
|
|
72186
72186
|
};
|
|
72187
72187
|
};
|
|
72188
|
-
'/unstable_locations/add_acs_entrances': {
|
|
72189
|
-
route: '/unstable_locations/add_acs_entrances';
|
|
72190
|
-
method: 'POST' | 'PUT';
|
|
72191
|
-
queryParams: {};
|
|
72192
|
-
jsonBody: {
|
|
72193
|
-
/** ID of the location to which you want to add entrances. */
|
|
72194
|
-
location_id: string;
|
|
72195
|
-
/** IDs of the entrances that you want to add to the location. */
|
|
72196
|
-
acs_entrance_ids: string[];
|
|
72197
|
-
};
|
|
72198
|
-
commonParams: {};
|
|
72199
|
-
formData: {};
|
|
72200
|
-
jsonResponse: {};
|
|
72201
|
-
};
|
|
72202
|
-
'/unstable_locations/add_devices': {
|
|
72203
|
-
route: '/unstable_locations/add_devices';
|
|
72204
|
-
method: 'POST' | 'PUT';
|
|
72205
|
-
queryParams: {};
|
|
72206
|
-
jsonBody: {
|
|
72207
|
-
/** ID of the location to which you want to add devices. */
|
|
72208
|
-
location_id: string;
|
|
72209
|
-
/** IDs of the devices that you want to add to the location. */
|
|
72210
|
-
device_ids: string[];
|
|
72211
|
-
};
|
|
72212
|
-
commonParams: {};
|
|
72213
|
-
formData: {};
|
|
72214
|
-
jsonResponse: {};
|
|
72215
|
-
};
|
|
72216
|
-
'/unstable_locations/create': {
|
|
72217
|
-
route: '/unstable_locations/create';
|
|
72218
|
-
method: 'POST';
|
|
72219
|
-
queryParams: {};
|
|
72220
|
-
jsonBody: {
|
|
72221
|
-
/** Name of the new location. */
|
|
72222
|
-
name: string;
|
|
72223
|
-
/** Geolocation of the new location. */
|
|
72224
|
-
geolocation?: {
|
|
72225
|
-
latitude: number;
|
|
72226
|
-
longitude: number;
|
|
72227
|
-
} | undefined;
|
|
72228
|
-
/** Time zone of the new location. */
|
|
72229
|
-
time_zone?: string | undefined;
|
|
72230
|
-
/** IDs of the devices that you want to add to the new location. */
|
|
72231
|
-
device_ids?: string[] | undefined;
|
|
72232
|
-
/** IDs of the entrances that you want to add to the new location. */
|
|
72233
|
-
acs_entrance_ids?: string[] | undefined;
|
|
72234
|
-
};
|
|
72235
|
-
commonParams: {};
|
|
72236
|
-
formData: {};
|
|
72237
|
-
jsonResponse: {
|
|
72238
|
-
/** */
|
|
72239
|
-
location: {
|
|
72240
|
-
/** Unique identifier for the location. */
|
|
72241
|
-
location_id: string;
|
|
72242
|
-
/** Unique identifier for the Seam workspace associated with the location. */
|
|
72243
|
-
workspace_id: string;
|
|
72244
|
-
/** Name of the location. */
|
|
72245
|
-
name: string;
|
|
72246
|
-
/** Display name of the location. */
|
|
72247
|
-
display_name: string;
|
|
72248
|
-
/** Geographical location of the location. */
|
|
72249
|
-
geolocation?: {
|
|
72250
|
-
latitude: number;
|
|
72251
|
-
longitude: number;
|
|
72252
|
-
} | undefined;
|
|
72253
|
-
/** Time zone of the location. */
|
|
72254
|
-
time_zone?: string | undefined;
|
|
72255
|
-
/** Date and time at which the location object was created. */
|
|
72256
|
-
created_at: string;
|
|
72257
|
-
};
|
|
72258
|
-
};
|
|
72259
|
-
};
|
|
72260
|
-
'/unstable_locations/delete': {
|
|
72261
|
-
route: '/unstable_locations/delete';
|
|
72262
|
-
method: 'DELETE' | 'POST';
|
|
72263
|
-
queryParams: {};
|
|
72264
|
-
jsonBody: {
|
|
72265
|
-
/** ID of the location that you want to delete. */
|
|
72266
|
-
location_id: string;
|
|
72267
|
-
};
|
|
72268
|
-
commonParams: {};
|
|
72269
|
-
formData: {};
|
|
72270
|
-
jsonResponse: {};
|
|
72271
|
-
};
|
|
72272
|
-
'/unstable_locations/get': {
|
|
72273
|
-
route: '/unstable_locations/get';
|
|
72274
|
-
method: 'GET' | 'POST';
|
|
72275
|
-
queryParams: {};
|
|
72276
|
-
jsonBody: {};
|
|
72277
|
-
commonParams: {
|
|
72278
|
-
/** ID of the location that you want to get. */
|
|
72279
|
-
location_id: string;
|
|
72280
|
-
};
|
|
72281
|
-
formData: {};
|
|
72282
|
-
jsonResponse: {
|
|
72283
|
-
/** */
|
|
72284
|
-
location: {
|
|
72285
|
-
/** Unique identifier for the location. */
|
|
72286
|
-
location_id: string;
|
|
72287
|
-
/** Unique identifier for the Seam workspace associated with the location. */
|
|
72288
|
-
workspace_id: string;
|
|
72289
|
-
/** Name of the location. */
|
|
72290
|
-
name: string;
|
|
72291
|
-
/** Display name of the location. */
|
|
72292
|
-
display_name: string;
|
|
72293
|
-
/** Geographical location of the location. */
|
|
72294
|
-
geolocation?: {
|
|
72295
|
-
latitude: number;
|
|
72296
|
-
longitude: number;
|
|
72297
|
-
} | undefined;
|
|
72298
|
-
/** Time zone of the location. */
|
|
72299
|
-
time_zone?: string | undefined;
|
|
72300
|
-
/** Date and time at which the location object was created. */
|
|
72301
|
-
created_at: string;
|
|
72302
|
-
};
|
|
72303
|
-
};
|
|
72304
|
-
};
|
|
72305
|
-
'/unstable_locations/list': {
|
|
72306
|
-
route: '/unstable_locations/list';
|
|
72307
|
-
method: 'GET' | 'POST';
|
|
72308
|
-
queryParams: {};
|
|
72309
|
-
jsonBody: {};
|
|
72310
|
-
commonParams: {};
|
|
72311
|
-
formData: {};
|
|
72312
|
-
jsonResponse: {
|
|
72313
|
-
locations: {
|
|
72314
|
-
/** Unique identifier for the location. */
|
|
72315
|
-
location_id: string;
|
|
72316
|
-
/** Unique identifier for the Seam workspace associated with the location. */
|
|
72317
|
-
workspace_id: string;
|
|
72318
|
-
/** Name of the location. */
|
|
72319
|
-
name: string;
|
|
72320
|
-
/** Display name of the location. */
|
|
72321
|
-
display_name: string;
|
|
72322
|
-
/** Geographical location of the location. */
|
|
72323
|
-
geolocation?: {
|
|
72324
|
-
latitude: number;
|
|
72325
|
-
longitude: number;
|
|
72326
|
-
} | undefined;
|
|
72327
|
-
/** Time zone of the location. */
|
|
72328
|
-
time_zone?: string | undefined;
|
|
72329
|
-
/** Date and time at which the location object was created. */
|
|
72330
|
-
created_at: string;
|
|
72331
|
-
}[];
|
|
72332
|
-
};
|
|
72333
|
-
};
|
|
72334
|
-
'/unstable_locations/remove_acs_entrances': {
|
|
72335
|
-
route: '/unstable_locations/remove_acs_entrances';
|
|
72336
|
-
method: 'POST' | 'DELETE';
|
|
72337
|
-
queryParams: {};
|
|
72338
|
-
jsonBody: {};
|
|
72339
|
-
commonParams: {
|
|
72340
|
-
/** ID of the location from which you want to remove entrances. */
|
|
72341
|
-
location_id: string;
|
|
72342
|
-
/** IDs of the entrances that you want to remove from the location. */
|
|
72343
|
-
acs_entrance_ids: string[];
|
|
72344
|
-
};
|
|
72345
|
-
formData: {};
|
|
72346
|
-
jsonResponse: {};
|
|
72347
|
-
};
|
|
72348
|
-
'/unstable_locations/remove_devices': {
|
|
72349
|
-
route: '/unstable_locations/remove_devices';
|
|
72350
|
-
method: 'POST' | 'DELETE';
|
|
72351
|
-
queryParams: {};
|
|
72352
|
-
jsonBody: {};
|
|
72353
|
-
commonParams: {
|
|
72354
|
-
/** ID of the location from which you want to remove devices. */
|
|
72355
|
-
location_id: string;
|
|
72356
|
-
/** IDs of the devices that you want to remove from the location. */
|
|
72357
|
-
device_ids: string[];
|
|
72358
|
-
};
|
|
72359
|
-
formData: {};
|
|
72360
|
-
jsonResponse: {};
|
|
72361
|
-
};
|
|
72362
|
-
'/unstable_locations/update': {
|
|
72363
|
-
route: '/unstable_locations/update';
|
|
72364
|
-
method: 'POST' | 'PATCH';
|
|
72365
|
-
queryParams: {};
|
|
72366
|
-
jsonBody: {
|
|
72367
|
-
/** ID of the location that you want to update. */
|
|
72368
|
-
location_id: string;
|
|
72369
|
-
/** Name of the location. */
|
|
72370
|
-
name?: string | undefined;
|
|
72371
|
-
/** Geolocation of the location. */
|
|
72372
|
-
geolocation?: {
|
|
72373
|
-
latitude: number;
|
|
72374
|
-
longitude: number;
|
|
72375
|
-
} | undefined;
|
|
72376
|
-
/** Time zone of the the location. */
|
|
72377
|
-
time_zone?: string | undefined;
|
|
72378
|
-
};
|
|
72379
|
-
commonParams: {};
|
|
72380
|
-
formData: {};
|
|
72381
|
-
jsonResponse: {
|
|
72382
|
-
/** */
|
|
72383
|
-
location: {
|
|
72384
|
-
/** Unique identifier for the location. */
|
|
72385
|
-
location_id: string;
|
|
72386
|
-
/** Unique identifier for the Seam workspace associated with the location. */
|
|
72387
|
-
workspace_id: string;
|
|
72388
|
-
/** Name of the location. */
|
|
72389
|
-
name: string;
|
|
72390
|
-
/** Display name of the location. */
|
|
72391
|
-
display_name: string;
|
|
72392
|
-
/** Geographical location of the location. */
|
|
72393
|
-
geolocation?: {
|
|
72394
|
-
latitude: number;
|
|
72395
|
-
longitude: number;
|
|
72396
|
-
} | undefined;
|
|
72397
|
-
/** Time zone of the location. */
|
|
72398
|
-
time_zone?: string | undefined;
|
|
72399
|
-
/** Date and time at which the location object was created. */
|
|
72400
|
-
created_at: string;
|
|
72401
|
-
};
|
|
72402
|
-
};
|
|
72403
|
-
};
|
|
72404
72188
|
'/unstable_partner/building_blocks/connect_accounts': {
|
|
72405
72189
|
route: '/unstable_partner/building_blocks/connect_accounts';
|
|
72406
72190
|
method: 'POST';
|
package/package.json
CHANGED
|
@@ -16,7 +16,6 @@ export * from './customer/user-identity-resources.js'
|
|
|
16
16
|
export * from './devices/index.js'
|
|
17
17
|
export * from './events/index.js'
|
|
18
18
|
export * from './instant-keys/index.js'
|
|
19
|
-
export * from './locations/index.js'
|
|
20
19
|
export * from './noise-sensors/index.js'
|
|
21
20
|
export * from './pagination.js'
|
|
22
21
|
export * from './partner/index.js'
|