@seamapi/types 1.541.0 → 1.542.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 +36 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -2
- package/dist/index.cjs +36 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +36 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +36 -4
- package/src/lib/seam/connect/route-types.ts +22 -2
|
@@ -13193,8 +13193,8 @@ export type Routes = {
|
|
|
13193
13193
|
commonParams: {
|
|
13194
13194
|
/** IDs of the access methods that you want to get along with their related resources. */
|
|
13195
13195
|
access_method_ids: string[];
|
|
13196
|
-
include?: ('spaces' | 'devices' | 'acs_entrances')[] | undefined;
|
|
13197
|
-
exclude?: ('spaces' | 'devices' | 'acs_entrances')[] | undefined;
|
|
13196
|
+
include?: ('spaces' | 'devices' | 'acs_entrances' | 'access_grants' | 'access_methods' | 'instant_keys' | 'client_sessions')[] | undefined;
|
|
13197
|
+
exclude?: ('spaces' | 'devices' | 'acs_entrances' | 'access_grants' | 'access_methods' | 'instant_keys' | 'client_sessions')[] | undefined;
|
|
13198
13198
|
};
|
|
13199
13199
|
formData: {};
|
|
13200
13200
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -29280,7 +29280,15 @@ export default {
|
|
|
29280
29280
|
required: false,
|
|
29281
29281
|
schema: {
|
|
29282
29282
|
items: {
|
|
29283
|
-
enum: [
|
|
29283
|
+
enum: [
|
|
29284
|
+
'spaces',
|
|
29285
|
+
'devices',
|
|
29286
|
+
'acs_entrances',
|
|
29287
|
+
'access_grants',
|
|
29288
|
+
'access_methods',
|
|
29289
|
+
'instant_keys',
|
|
29290
|
+
'client_sessions',
|
|
29291
|
+
],
|
|
29284
29292
|
type: 'string',
|
|
29285
29293
|
},
|
|
29286
29294
|
type: 'array',
|
|
@@ -29292,7 +29300,15 @@ export default {
|
|
|
29292
29300
|
required: false,
|
|
29293
29301
|
schema: {
|
|
29294
29302
|
items: {
|
|
29295
|
-
enum: [
|
|
29303
|
+
enum: [
|
|
29304
|
+
'spaces',
|
|
29305
|
+
'devices',
|
|
29306
|
+
'acs_entrances',
|
|
29307
|
+
'access_grants',
|
|
29308
|
+
'access_methods',
|
|
29309
|
+
'instant_keys',
|
|
29310
|
+
'client_sessions',
|
|
29311
|
+
],
|
|
29296
29312
|
type: 'string',
|
|
29297
29313
|
},
|
|
29298
29314
|
type: 'array',
|
|
@@ -29501,14 +29517,30 @@ export default {
|
|
|
29501
29517
|
},
|
|
29502
29518
|
exclude: {
|
|
29503
29519
|
items: {
|
|
29504
|
-
enum: [
|
|
29520
|
+
enum: [
|
|
29521
|
+
'spaces',
|
|
29522
|
+
'devices',
|
|
29523
|
+
'acs_entrances',
|
|
29524
|
+
'access_grants',
|
|
29525
|
+
'access_methods',
|
|
29526
|
+
'instant_keys',
|
|
29527
|
+
'client_sessions',
|
|
29528
|
+
],
|
|
29505
29529
|
type: 'string',
|
|
29506
29530
|
},
|
|
29507
29531
|
type: 'array',
|
|
29508
29532
|
},
|
|
29509
29533
|
include: {
|
|
29510
29534
|
items: {
|
|
29511
|
-
enum: [
|
|
29535
|
+
enum: [
|
|
29536
|
+
'spaces',
|
|
29537
|
+
'devices',
|
|
29538
|
+
'acs_entrances',
|
|
29539
|
+
'access_grants',
|
|
29540
|
+
'access_methods',
|
|
29541
|
+
'instant_keys',
|
|
29542
|
+
'client_sessions',
|
|
29543
|
+
],
|
|
29512
29544
|
type: 'string',
|
|
29513
29545
|
},
|
|
29514
29546
|
type: 'array',
|
|
@@ -15085,8 +15085,28 @@ export type Routes = {
|
|
|
15085
15085
|
commonParams: {
|
|
15086
15086
|
/** IDs of the access methods that you want to get along with their related resources. */
|
|
15087
15087
|
access_method_ids: string[]
|
|
15088
|
-
include?:
|
|
15089
|
-
|
|
15088
|
+
include?:
|
|
15089
|
+
| (
|
|
15090
|
+
| 'spaces'
|
|
15091
|
+
| 'devices'
|
|
15092
|
+
| 'acs_entrances'
|
|
15093
|
+
| 'access_grants'
|
|
15094
|
+
| 'access_methods'
|
|
15095
|
+
| 'instant_keys'
|
|
15096
|
+
| 'client_sessions'
|
|
15097
|
+
)[]
|
|
15098
|
+
| undefined
|
|
15099
|
+
exclude?:
|
|
15100
|
+
| (
|
|
15101
|
+
| 'spaces'
|
|
15102
|
+
| 'devices'
|
|
15103
|
+
| 'acs_entrances'
|
|
15104
|
+
| 'access_grants'
|
|
15105
|
+
| 'access_methods'
|
|
15106
|
+
| 'instant_keys'
|
|
15107
|
+
| 'client_sessions'
|
|
15108
|
+
)[]
|
|
15109
|
+
| undefined
|
|
15090
15110
|
}
|
|
15091
15111
|
formData: {}
|
|
15092
15112
|
jsonResponse: {
|