@seamapi/types 1.116.0 → 1.118.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
@@ -6842,6 +6842,7 @@ var openapi_default = {
6842
6842
  client_session_id: { type: "string" },
6843
6843
  connect_webview_id: { type: "string" },
6844
6844
  user_identifier_key: { type: "string" },
6845
+ user_identity_id: { type: "string" },
6845
6846
  without_user_identifier_key: { type: "boolean" }
6846
6847
  },
6847
6848
  type: "object"
@@ -11514,76 +11515,23 @@ var openapi_default = {
11514
11515
  }
11515
11516
  },
11516
11517
  "/user_identities/list": {
11517
- get: {
11518
- operationId: "userIdentitiesListGet",
11519
- responses: {
11520
- 200: {
11521
- content: {
11522
- "application/json": {
11523
- schema: {
11524
- properties: {
11525
- ok: { type: "boolean" },
11526
- user_identities: {
11527
- items: {
11528
- properties: {
11529
- created_at: { format: "date-time", type: "string" },
11530
- display_name: { minLength: 1, type: "string" },
11531
- email_address: {
11532
- format: "email",
11533
- nullable: true,
11534
- type: "string"
11535
- },
11536
- full_name: {
11537
- minLength: 1,
11538
- nullable: true,
11539
- type: "string"
11540
- },
11541
- phone_number: { nullable: true, type: "string" },
11542
- user_identity_id: { format: "uuid", type: "string" },
11543
- user_identity_key: {
11544
- minLength: 1,
11545
- nullable: true,
11546
- type: "string"
11547
- },
11548
- workspace_id: { format: "uuid", type: "string" }
11549
- },
11550
- required: [
11551
- "user_identity_id",
11552
- "user_identity_key",
11553
- "email_address",
11554
- "phone_number",
11555
- "display_name",
11556
- "full_name",
11557
- "created_at",
11558
- "workspace_id"
11559
- ],
11560
- type: "object"
11561
- },
11562
- type: "array"
11563
- }
11564
- },
11565
- required: ["user_identities", "ok"],
11566
- type: "object"
11567
- }
11568
- }
11569
- },
11570
- description: "OK"
11571
- },
11572
- 400: { description: "Bad Request" },
11573
- 401: { description: "Unauthorized" }
11574
- },
11575
- security: [
11576
- { api_key: [] },
11577
- { client_session: [] },
11578
- { pat_with_workspace: [] },
11579
- { console_session: [] }
11580
- ],
11581
- summary: "/user_identities/list",
11582
- tags: ["/user_identities"],
11583
- "x-fern-ignore": true
11584
- },
11585
11518
  post: {
11586
11519
  operationId: "userIdentitiesListPost",
11520
+ requestBody: {
11521
+ content: {
11522
+ "application/json": {
11523
+ schema: {
11524
+ properties: {
11525
+ credential_manager_acs_system_id: {
11526
+ format: "uuid",
11527
+ type: "string"
11528
+ }
11529
+ },
11530
+ type: "object"
11531
+ }
11532
+ }
11533
+ }
11534
+ },
11587
11535
  responses: {
11588
11536
  200: {
11589
11537
  content: {