@seamapi/types 1.403.0 → 1.404.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 +11 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -3
- package/lib/seam/connect/openapi.d.ts +10 -1
- package/lib/seam/connect/openapi.js +11 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +13 -2
- package/src/lib/seam/connect/route-types.ts +6 -2
package/dist/connect.cjs
CHANGED
|
@@ -27436,13 +27436,22 @@ var openapi_default = {
|
|
|
27436
27436
|
"application/json": {
|
|
27437
27437
|
schema: {
|
|
27438
27438
|
properties: {
|
|
27439
|
+
acs_system_id: {
|
|
27440
|
+
description: "ID of the access system for which you want to list accessible entrances. You can only provide acs_system_id with user_identity_id.",
|
|
27441
|
+
format: "uuid",
|
|
27442
|
+
type: "string"
|
|
27443
|
+
},
|
|
27439
27444
|
acs_user_id: {
|
|
27440
|
-
description: "ID of the access system user for whom you want to list accessible entrances.",
|
|
27445
|
+
description: "ID of the access system user for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id.",
|
|
27446
|
+
format: "uuid",
|
|
27447
|
+
type: "string"
|
|
27448
|
+
},
|
|
27449
|
+
user_identity_id: {
|
|
27450
|
+
description: "ID of the user identity for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id.",
|
|
27441
27451
|
format: "uuid",
|
|
27442
27452
|
type: "string"
|
|
27443
27453
|
}
|
|
27444
27454
|
},
|
|
27445
|
-
required: ["acs_user_id"],
|
|
27446
27455
|
type: "object"
|
|
27447
27456
|
}
|
|
27448
27457
|
}
|