@seamapi/types 1.170.0 → 1.172.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 +58 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +121 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +1 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/managed-device.d.ts +9 -0
- package/lib/seam/connect/openapi.d.ts +72 -0
- package/lib/seam/connect/openapi.js +58 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +49 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +59 -7
- package/src/lib/seam/connect/route-types.ts +71 -0
package/dist/connect.cjs
CHANGED
|
@@ -1944,10 +1944,11 @@ var openapi_default = {
|
|
|
1944
1944
|
},
|
|
1945
1945
|
ttlock_metadata: {
|
|
1946
1946
|
properties: {
|
|
1947
|
+
feature_value: { type: "string" },
|
|
1947
1948
|
lock_alias: { type: "string" },
|
|
1948
1949
|
lock_id: { type: "number" }
|
|
1949
1950
|
},
|
|
1950
|
-
required: ["lock_id", "lock_alias"],
|
|
1951
|
+
required: ["lock_id", "lock_alias", "feature_value"],
|
|
1951
1952
|
type: "object"
|
|
1952
1953
|
},
|
|
1953
1954
|
two_n_metadata: {
|
|
@@ -3206,7 +3207,7 @@ var openapi_default = {
|
|
|
3206
3207
|
type: "boolean"
|
|
3207
3208
|
},
|
|
3208
3209
|
code: {
|
|
3209
|
-
maxLength:
|
|
3210
|
+
maxLength: 9,
|
|
3210
3211
|
minLength: 4,
|
|
3211
3212
|
pattern: "^\\d+$",
|
|
3212
3213
|
type: "string"
|
|
@@ -3289,7 +3290,7 @@ var openapi_default = {
|
|
|
3289
3290
|
type: "string"
|
|
3290
3291
|
},
|
|
3291
3292
|
code: {
|
|
3292
|
-
maxLength:
|
|
3293
|
+
maxLength: 9,
|
|
3293
3294
|
minLength: 4,
|
|
3294
3295
|
pattern: "^\\d+$",
|
|
3295
3296
|
type: "string"
|
|
@@ -3372,7 +3373,7 @@ var openapi_default = {
|
|
|
3372
3373
|
type: "string"
|
|
3373
3374
|
},
|
|
3374
3375
|
code: {
|
|
3375
|
-
maxLength:
|
|
3376
|
+
maxLength: 9,
|
|
3376
3377
|
minLength: 4,
|
|
3377
3378
|
pattern: "^\\d+$",
|
|
3378
3379
|
type: "string"
|
|
@@ -4102,7 +4103,7 @@ var openapi_default = {
|
|
|
4102
4103
|
type: "boolean"
|
|
4103
4104
|
},
|
|
4104
4105
|
code: {
|
|
4105
|
-
maxLength:
|
|
4106
|
+
maxLength: 9,
|
|
4106
4107
|
minLength: 4,
|
|
4107
4108
|
pattern: "^\\d+$",
|
|
4108
4109
|
type: "string"
|
|
@@ -4177,7 +4178,7 @@ var openapi_default = {
|
|
|
4177
4178
|
type: "boolean"
|
|
4178
4179
|
},
|
|
4179
4180
|
code: {
|
|
4180
|
-
maxLength:
|
|
4181
|
+
maxLength: 9,
|
|
4181
4182
|
minLength: 4,
|
|
4182
4183
|
pattern: "^\\d+$",
|
|
4183
4184
|
type: "string"
|
|
@@ -4253,7 +4254,7 @@ var openapi_default = {
|
|
|
4253
4254
|
type: "boolean"
|
|
4254
4255
|
},
|
|
4255
4256
|
code: {
|
|
4256
|
-
maxLength:
|
|
4257
|
+
maxLength: 9,
|
|
4257
4258
|
minLength: 4,
|
|
4258
4259
|
pattern: "^\\d+$",
|
|
4259
4260
|
type: "string"
|
|
@@ -5572,6 +5573,56 @@ var openapi_default = {
|
|
|
5572
5573
|
"x-fern-sdk-return-value": "acs_systems"
|
|
5573
5574
|
}
|
|
5574
5575
|
},
|
|
5576
|
+
"/acs/systems/list_compatible_credential_manager_acs_systems": {
|
|
5577
|
+
post: {
|
|
5578
|
+
operationId: "acsSystemsListCompatibleCredentialManagerAcsSystemsPost",
|
|
5579
|
+
requestBody: {
|
|
5580
|
+
content: {
|
|
5581
|
+
"application/json": {
|
|
5582
|
+
schema: {
|
|
5583
|
+
properties: {
|
|
5584
|
+
acs_system_id: { format: "uuid", type: "string" }
|
|
5585
|
+
},
|
|
5586
|
+
required: ["acs_system_id"],
|
|
5587
|
+
type: "object"
|
|
5588
|
+
}
|
|
5589
|
+
}
|
|
5590
|
+
}
|
|
5591
|
+
},
|
|
5592
|
+
responses: {
|
|
5593
|
+
200: {
|
|
5594
|
+
content: {
|
|
5595
|
+
"application/json": {
|
|
5596
|
+
schema: {
|
|
5597
|
+
properties: {
|
|
5598
|
+
acs_systems: {
|
|
5599
|
+
items: { $ref: "#/components/schemas/acs_system" },
|
|
5600
|
+
type: "array"
|
|
5601
|
+
},
|
|
5602
|
+
ok: { type: "boolean" }
|
|
5603
|
+
},
|
|
5604
|
+
required: ["acs_systems", "ok"],
|
|
5605
|
+
type: "object"
|
|
5606
|
+
}
|
|
5607
|
+
}
|
|
5608
|
+
},
|
|
5609
|
+
description: "OK"
|
|
5610
|
+
},
|
|
5611
|
+
400: { description: "Bad Request" },
|
|
5612
|
+
401: { description: "Unauthorized" }
|
|
5613
|
+
},
|
|
5614
|
+
security: [
|
|
5615
|
+
{ pat_with_workspace: [] },
|
|
5616
|
+
{ console_session: [] },
|
|
5617
|
+
{ api_key: [] }
|
|
5618
|
+
],
|
|
5619
|
+
summary: "/acs/systems/list_compatible_credential_manager_acs_systems",
|
|
5620
|
+
tags: ["/acs"],
|
|
5621
|
+
"x-fern-sdk-group-name": ["acs", "systems"],
|
|
5622
|
+
"x-fern-sdk-method-name": "list_compatible_credential_manager_acs_systems",
|
|
5623
|
+
"x-fern-sdk-return-value": "acs_systems"
|
|
5624
|
+
}
|
|
5625
|
+
},
|
|
5575
5626
|
"/acs/users/add_to_access_group": {
|
|
5576
5627
|
post: {
|
|
5577
5628
|
operationId: "acsUsersAddToAccessGroupPost",
|