@seamapi/types 1.776.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 CHANGED
@@ -62710,6 +62710,88 @@ var openapi_default = {
62710
62710
  "x-undocumented": "Internal endpoint for Console"
62711
62711
  }
62712
62712
  },
62713
+ "/seam/console/v1/workspace/feature_flags/list": {
62714
+ get: {
62715
+ description: "Lists workspace feature flags.",
62716
+ operationId: "seamConsoleV1WorkspaceFeatureFlagsListGet",
62717
+ responses: {
62718
+ 200: {
62719
+ content: {
62720
+ "application/json": {
62721
+ schema: {
62722
+ properties: {
62723
+ feature_flags: {
62724
+ additionalProperties: { type: "boolean" },
62725
+ type: "object"
62726
+ },
62727
+ ok: { type: "boolean" }
62728
+ },
62729
+ required: ["feature_flags", "ok"],
62730
+ type: "object"
62731
+ }
62732
+ }
62733
+ },
62734
+ description: "OK"
62735
+ },
62736
+ 400: { description: "Bad Request" },
62737
+ 401: { description: "Unauthorized" }
62738
+ },
62739
+ security: [{ console_session_with_workspace: [] }],
62740
+ summary: "/seam/console/v1/workspace/feature_flags/list",
62741
+ tags: [],
62742
+ "x-fern-sdk-group-name": [
62743
+ "seam",
62744
+ "console",
62745
+ "v1",
62746
+ "workspace",
62747
+ "feature_flags"
62748
+ ],
62749
+ "x-fern-sdk-method-name": "list",
62750
+ "x-fern-sdk-return-value": "feature_flags",
62751
+ "x-response-key": "feature_flags",
62752
+ "x-undocumented": "Internal endpoint for Console"
62753
+ },
62754
+ post: {
62755
+ description: "Lists workspace feature flags.",
62756
+ operationId: "seamConsoleV1WorkspaceFeatureFlagsListPost",
62757
+ responses: {
62758
+ 200: {
62759
+ content: {
62760
+ "application/json": {
62761
+ schema: {
62762
+ properties: {
62763
+ feature_flags: {
62764
+ additionalProperties: { type: "boolean" },
62765
+ type: "object"
62766
+ },
62767
+ ok: { type: "boolean" }
62768
+ },
62769
+ required: ["feature_flags", "ok"],
62770
+ type: "object"
62771
+ }
62772
+ }
62773
+ },
62774
+ description: "OK"
62775
+ },
62776
+ 400: { description: "Bad Request" },
62777
+ 401: { description: "Unauthorized" }
62778
+ },
62779
+ security: [{ console_session_with_workspace: [] }],
62780
+ summary: "/seam/console/v1/workspace/feature_flags/list",
62781
+ tags: [],
62782
+ "x-fern-sdk-group-name": [
62783
+ "seam",
62784
+ "console",
62785
+ "v1",
62786
+ "workspace",
62787
+ "feature_flags"
62788
+ ],
62789
+ "x-fern-sdk-method-name": "list",
62790
+ "x-fern-sdk-return-value": "feature_flags",
62791
+ "x-response-key": "feature_flags",
62792
+ "x-undocumented": "Internal endpoint for Console"
62793
+ }
62794
+ },
62713
62795
  "/seam/customer/v1/access_grants/list": {
62714
62796
  get: {
62715
62797
  description: "Gets an Access Grant.",
@@ -79111,6 +79193,115 @@ var openapi_default = {
79111
79193
  "x-title": "List Accessible Devices for a User Identity"
79112
79194
  }
79113
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
+ },
79114
79305
  "/user_identities/list_acs_systems": {
79115
79306
  get: {
79116
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).",