@seamapi/types 1.777.0 → 1.779.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 CHANGED
@@ -52693,6 +52693,11 @@ var openapi_default = {
52693
52693
  description: "Your display name for this location resource.",
52694
52694
  type: "string"
52695
52695
  },
52696
+ parent_site_key: {
52697
+ description: "Your unique identifier for the site.",
52698
+ minLength: 1,
52699
+ type: "string"
52700
+ },
52696
52701
  space_key: {
52697
52702
  description: "Your unique identifier for the space.",
52698
52703
  minLength: 1,
@@ -53815,6 +53820,11 @@ var openapi_default = {
53815
53820
  description: "Your display name for this location resource.",
53816
53821
  type: "string"
53817
53822
  },
53823
+ parent_site_key: {
53824
+ description: "Your unique identifier for the site.",
53825
+ minLength: 1,
53826
+ type: "string"
53827
+ },
53818
53828
  space_key: {
53819
53829
  description: "Your unique identifier for the space.",
53820
53830
  minLength: 1,
@@ -77677,6 +77687,11 @@ var openapi_default = {
77677
77687
  description: "Your display name for this location resource.",
77678
77688
  type: "string"
77679
77689
  },
77690
+ parent_site_key: {
77691
+ description: "Your unique identifier for the site.",
77692
+ minLength: 1,
77693
+ type: "string"
77694
+ },
77680
77695
  space_key: {
77681
77696
  description: "Your unique identifier for the space.",
77682
77697
  minLength: 1,
@@ -77754,6 +77769,11 @@ var openapi_default = {
77754
77769
  description: "Your display name for this location resource.",
77755
77770
  type: "string"
77756
77771
  },
77772
+ parent_site_key: {
77773
+ description: "Your unique identifier for the site.",
77774
+ minLength: 1,
77775
+ type: "string"
77776
+ },
77757
77777
  space_key: {
77758
77778
  description: "Your unique identifier for the space.",
77759
77779
  minLength: 1,
@@ -77883,6 +77903,11 @@ var openapi_default = {
77883
77903
  description: "Your display name for this location resource.",
77884
77904
  type: "string"
77885
77905
  },
77906
+ parent_site_key: {
77907
+ description: "Your unique identifier for the site.",
77908
+ minLength: 1,
77909
+ type: "string"
77910
+ },
77886
77911
  space_key: {
77887
77912
  description: "Your unique identifier for the space.",
77888
77913
  minLength: 1,
@@ -79193,6 +79218,115 @@ var openapi_default = {
79193
79218
  "x-title": "List Accessible Devices for a User Identity"
79194
79219
  }
79195
79220
  },
79221
+ "/user_identities/list_accessible_entrances": {
79222
+ get: {
79223
+ 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.",
79224
+ operationId: "userIdentitiesListAccessibleEntrancesGet",
79225
+ parameters: [
79226
+ {
79227
+ in: "query",
79228
+ name: "user_identity_id",
79229
+ required: true,
79230
+ schema: {
79231
+ description: "ID of the user identity for which you want to retrieve all accessible entrances.",
79232
+ format: "uuid",
79233
+ type: "string"
79234
+ }
79235
+ }
79236
+ ],
79237
+ responses: {
79238
+ 200: {
79239
+ content: {
79240
+ "application/json": {
79241
+ schema: {
79242
+ properties: {
79243
+ acs_entrances: {
79244
+ items: { $ref: "#/components/schemas/acs_entrance" },
79245
+ type: "array"
79246
+ },
79247
+ ok: { type: "boolean" }
79248
+ },
79249
+ required: ["acs_entrances", "ok"],
79250
+ type: "object"
79251
+ }
79252
+ }
79253
+ },
79254
+ description: "OK"
79255
+ },
79256
+ 400: { description: "Bad Request" },
79257
+ 401: { description: "Unauthorized" }
79258
+ },
79259
+ security: [
79260
+ { client_session: [] },
79261
+ { pat_with_workspace: [] },
79262
+ { console_session_with_workspace: [] },
79263
+ { api_key: [] }
79264
+ ],
79265
+ summary: "/user_identities/list_accessible_entrances",
79266
+ tags: ["/user_identities"],
79267
+ "x-fern-sdk-group-name": ["user_identities"],
79268
+ "x-fern-sdk-method-name": "list_accessible_entrances",
79269
+ "x-fern-sdk-return-value": "acs_entrances",
79270
+ "x-response-key": "acs_entrances",
79271
+ "x-title": "List Accessible Entrances for a User Identity"
79272
+ },
79273
+ post: {
79274
+ 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.",
79275
+ operationId: "userIdentitiesListAccessibleEntrancesPost",
79276
+ requestBody: {
79277
+ content: {
79278
+ "application/json": {
79279
+ schema: {
79280
+ properties: {
79281
+ user_identity_id: {
79282
+ description: "ID of the user identity for which you want to retrieve all accessible entrances.",
79283
+ format: "uuid",
79284
+ type: "string"
79285
+ }
79286
+ },
79287
+ required: ["user_identity_id"],
79288
+ type: "object"
79289
+ }
79290
+ }
79291
+ }
79292
+ },
79293
+ responses: {
79294
+ 200: {
79295
+ content: {
79296
+ "application/json": {
79297
+ schema: {
79298
+ properties: {
79299
+ acs_entrances: {
79300
+ items: { $ref: "#/components/schemas/acs_entrance" },
79301
+ type: "array"
79302
+ },
79303
+ ok: { type: "boolean" }
79304
+ },
79305
+ required: ["acs_entrances", "ok"],
79306
+ type: "object"
79307
+ }
79308
+ }
79309
+ },
79310
+ description: "OK"
79311
+ },
79312
+ 400: { description: "Bad Request" },
79313
+ 401: { description: "Unauthorized" }
79314
+ },
79315
+ security: [
79316
+ { client_session: [] },
79317
+ { pat_with_workspace: [] },
79318
+ { console_session_with_workspace: [] },
79319
+ { api_key: [] }
79320
+ ],
79321
+ summary: "/user_identities/list_accessible_entrances",
79322
+ tags: ["/user_identities"],
79323
+ "x-fern-sdk-group-name": ["user_identities"],
79324
+ "x-fern-sdk-method-name": "list_accessible_entrances",
79325
+ "x-fern-sdk-return-value": "acs_entrances",
79326
+ "x-response-key": "acs_entrances",
79327
+ "x-title": "List Accessible Entrances for a User Identity"
79328
+ }
79329
+ },
79196
79330
  "/user_identities/list_acs_systems": {
79197
79331
  get: {
79198
79332
  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).",