@seamapi/types 1.777.0 → 1.778.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 +109 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +298 -0
- package/dist/index.cjs +109 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +153 -0
- package/lib/seam/connect/openapi.js +109 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +145 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +113 -0
- package/src/lib/seam/connect/route-types.ts +174 -0
package/dist/connect.cjs
CHANGED
|
@@ -79193,6 +79193,115 @@ var openapi_default = {
|
|
|
79193
79193
|
"x-title": "List Accessible Devices for a User Identity"
|
|
79194
79194
|
}
|
|
79195
79195
|
},
|
|
79196
|
+
"/user_identities/list_accessible_entrances": {
|
|
79197
|
+
get: {
|
|
79198
|
+
description: "Returns a list of all [ACS entrances](https://docs.seam.co/latest/api/acs/entrances) accessible to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). This includes entrances derived from the access grants assigned to the user identity and entrances accessible through ACS users linked to the user identity.",
|
|
79199
|
+
operationId: "userIdentitiesListAccessibleEntrancesGet",
|
|
79200
|
+
parameters: [
|
|
79201
|
+
{
|
|
79202
|
+
in: "query",
|
|
79203
|
+
name: "user_identity_id",
|
|
79204
|
+
required: true,
|
|
79205
|
+
schema: {
|
|
79206
|
+
description: "ID of the user identity for which you want to retrieve all accessible entrances.",
|
|
79207
|
+
format: "uuid",
|
|
79208
|
+
type: "string"
|
|
79209
|
+
}
|
|
79210
|
+
}
|
|
79211
|
+
],
|
|
79212
|
+
responses: {
|
|
79213
|
+
200: {
|
|
79214
|
+
content: {
|
|
79215
|
+
"application/json": {
|
|
79216
|
+
schema: {
|
|
79217
|
+
properties: {
|
|
79218
|
+
acs_entrances: {
|
|
79219
|
+
items: { $ref: "#/components/schemas/acs_entrance" },
|
|
79220
|
+
type: "array"
|
|
79221
|
+
},
|
|
79222
|
+
ok: { type: "boolean" }
|
|
79223
|
+
},
|
|
79224
|
+
required: ["acs_entrances", "ok"],
|
|
79225
|
+
type: "object"
|
|
79226
|
+
}
|
|
79227
|
+
}
|
|
79228
|
+
},
|
|
79229
|
+
description: "OK"
|
|
79230
|
+
},
|
|
79231
|
+
400: { description: "Bad Request" },
|
|
79232
|
+
401: { description: "Unauthorized" }
|
|
79233
|
+
},
|
|
79234
|
+
security: [
|
|
79235
|
+
{ client_session: [] },
|
|
79236
|
+
{ pat_with_workspace: [] },
|
|
79237
|
+
{ console_session_with_workspace: [] },
|
|
79238
|
+
{ api_key: [] }
|
|
79239
|
+
],
|
|
79240
|
+
summary: "/user_identities/list_accessible_entrances",
|
|
79241
|
+
tags: ["/user_identities"],
|
|
79242
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
79243
|
+
"x-fern-sdk-method-name": "list_accessible_entrances",
|
|
79244
|
+
"x-fern-sdk-return-value": "acs_entrances",
|
|
79245
|
+
"x-response-key": "acs_entrances",
|
|
79246
|
+
"x-title": "List Accessible Entrances for a User Identity"
|
|
79247
|
+
},
|
|
79248
|
+
post: {
|
|
79249
|
+
description: "Returns a list of all [ACS entrances](https://docs.seam.co/latest/api/acs/entrances) accessible to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). This includes entrances derived from the access grants assigned to the user identity and entrances accessible through ACS users linked to the user identity.",
|
|
79250
|
+
operationId: "userIdentitiesListAccessibleEntrancesPost",
|
|
79251
|
+
requestBody: {
|
|
79252
|
+
content: {
|
|
79253
|
+
"application/json": {
|
|
79254
|
+
schema: {
|
|
79255
|
+
properties: {
|
|
79256
|
+
user_identity_id: {
|
|
79257
|
+
description: "ID of the user identity for which you want to retrieve all accessible entrances.",
|
|
79258
|
+
format: "uuid",
|
|
79259
|
+
type: "string"
|
|
79260
|
+
}
|
|
79261
|
+
},
|
|
79262
|
+
required: ["user_identity_id"],
|
|
79263
|
+
type: "object"
|
|
79264
|
+
}
|
|
79265
|
+
}
|
|
79266
|
+
}
|
|
79267
|
+
},
|
|
79268
|
+
responses: {
|
|
79269
|
+
200: {
|
|
79270
|
+
content: {
|
|
79271
|
+
"application/json": {
|
|
79272
|
+
schema: {
|
|
79273
|
+
properties: {
|
|
79274
|
+
acs_entrances: {
|
|
79275
|
+
items: { $ref: "#/components/schemas/acs_entrance" },
|
|
79276
|
+
type: "array"
|
|
79277
|
+
},
|
|
79278
|
+
ok: { type: "boolean" }
|
|
79279
|
+
},
|
|
79280
|
+
required: ["acs_entrances", "ok"],
|
|
79281
|
+
type: "object"
|
|
79282
|
+
}
|
|
79283
|
+
}
|
|
79284
|
+
},
|
|
79285
|
+
description: "OK"
|
|
79286
|
+
},
|
|
79287
|
+
400: { description: "Bad Request" },
|
|
79288
|
+
401: { description: "Unauthorized" }
|
|
79289
|
+
},
|
|
79290
|
+
security: [
|
|
79291
|
+
{ client_session: [] },
|
|
79292
|
+
{ pat_with_workspace: [] },
|
|
79293
|
+
{ console_session_with_workspace: [] },
|
|
79294
|
+
{ api_key: [] }
|
|
79295
|
+
],
|
|
79296
|
+
summary: "/user_identities/list_accessible_entrances",
|
|
79297
|
+
tags: ["/user_identities"],
|
|
79298
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
79299
|
+
"x-fern-sdk-method-name": "list_accessible_entrances",
|
|
79300
|
+
"x-fern-sdk-return-value": "acs_entrances",
|
|
79301
|
+
"x-response-key": "acs_entrances",
|
|
79302
|
+
"x-title": "List Accessible Entrances for a User Identity"
|
|
79303
|
+
}
|
|
79304
|
+
},
|
|
79196
79305
|
"/user_identities/list_acs_systems": {
|
|
79197
79306
|
get: {
|
|
79198
79307
|
description: "Returns a list of all [access systems](https://docs.seam.co/latest/capability-guides/access-systems) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
|