@seamapi/types 1.38.2 → 1.40.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
@@ -160,7 +160,12 @@ var openapi_default = {
160
160
  acs_user_id: { format: "uuid", type: "string" },
161
161
  created_at: { format: "date-time", type: "string" },
162
162
  display_name: { type: "string" },
163
- email: { format: "email", type: "string" },
163
+ email: {
164
+ description: "Deprecated: use email_address.",
165
+ format: "email",
166
+ type: "string"
167
+ },
168
+ email_address: { format: "email", type: "string" },
164
169
  external_type: { enum: ["pti_user"], type: "string" },
165
170
  external_type_display_name: { type: "string" },
166
171
  full_name: { type: "string" },
@@ -3555,7 +3560,11 @@ var openapi_default = {
3555
3560
  type: "array"
3556
3561
  },
3557
3562
  acs_system_id: { format: "uuid", type: "string" },
3558
- email: { format: "email", type: "string" },
3563
+ email: {
3564
+ description: "Deprecated: use email_address.",
3565
+ format: "email",
3566
+ type: "string"
3567
+ },
3559
3568
  full_name: { type: "string" },
3560
3569
  phone_number: { nullable: true, type: "string" }
3561
3570
  },
@@ -3853,7 +3862,11 @@ var openapi_default = {
3853
3862
  schema: {
3854
3863
  properties: {
3855
3864
  acs_user_id: { format: "uuid", type: "string" },
3856
- email: { format: "email", type: "string" },
3865
+ email: {
3866
+ description: "Deprecated: use email_address.",
3867
+ format: "email",
3868
+ type: "string"
3869
+ },
3857
3870
  full_name: { type: "string" },
3858
3871
  phone_number: { nullable: true, type: "string" }
3859
3872
  },
@@ -3896,7 +3909,11 @@ var openapi_default = {
3896
3909
  schema: {
3897
3910
  properties: {
3898
3911
  acs_user_id: { format: "uuid", type: "string" },
3899
- email: { format: "email", type: "string" },
3912
+ email: {
3913
+ description: "Deprecated: use email_address.",
3914
+ format: "email",
3915
+ type: "string"
3916
+ },
3900
3917
  full_name: { type: "string" },
3901
3918
  phone_number: { nullable: true, type: "string" }
3902
3919
  },
@@ -4051,6 +4068,11 @@ var openapi_default = {
4051
4068
  items: { type: "string" },
4052
4069
  type: "array"
4053
4070
  },
4071
+ expires_at: {
4072
+ format: "date-time",
4073
+ nullable: true,
4074
+ type: "string"
4075
+ },
4054
4076
  user_identifier_key: { minLength: 1, type: "string" }
4055
4077
  },
4056
4078
  type: "object"
@@ -4100,6 +4122,11 @@ var openapi_default = {
4100
4122
  items: { type: "string" },
4101
4123
  type: "array"
4102
4124
  },
4125
+ expires_at: {
4126
+ format: "date-time",
4127
+ nullable: true,
4128
+ type: "string"
4129
+ },
4103
4130
  user_identifier_key: { minLength: 1, type: "string" }
4104
4131
  },
4105
4132
  type: "object"
@@ -4241,6 +4268,11 @@ var openapi_default = {
4241
4268
  items: { type: "string" },
4242
4269
  type: "array"
4243
4270
  },
4271
+ expires_at: {
4272
+ format: "date-time",
4273
+ nullable: true,
4274
+ type: "string"
4275
+ },
4244
4276
  user_identifier_key: { minLength: 1, type: "string" }
4245
4277
  },
4246
4278
  type: "object"
@@ -4290,6 +4322,11 @@ var openapi_default = {
4290
4322
  items: { type: "string" },
4291
4323
  type: "array"
4292
4324
  },
4325
+ expires_at: {
4326
+ format: "date-time",
4327
+ nullable: true,
4328
+ type: "string"
4329
+ },
4293
4330
  user_identifier_key: { minLength: 1, type: "string" }
4294
4331
  },
4295
4332
  type: "object"
@@ -4484,6 +4521,49 @@ var openapi_default = {
4484
4521
  "x-fern-sdk-return-value": "client_sessions"
4485
4522
  }
4486
4523
  },
4524
+ "/client_sessions/revoke": {
4525
+ post: {
4526
+ operationId: "clientSessionsRevokePost",
4527
+ requestBody: {
4528
+ content: {
4529
+ "application/json": {
4530
+ schema: {
4531
+ properties: {
4532
+ client_session_id: { format: "uuid", type: "string" }
4533
+ },
4534
+ required: ["client_session_id"],
4535
+ type: "object"
4536
+ }
4537
+ }
4538
+ }
4539
+ },
4540
+ responses: {
4541
+ 200: {
4542
+ content: {
4543
+ "application/json": {
4544
+ schema: {
4545
+ properties: { ok: { type: "boolean" } },
4546
+ required: ["ok"],
4547
+ type: "object"
4548
+ }
4549
+ }
4550
+ },
4551
+ description: "OK"
4552
+ },
4553
+ 400: { description: "Bad Request" },
4554
+ 401: { description: "Unauthorized" }
4555
+ },
4556
+ security: [
4557
+ { access_token: [], seam_workspace: [] },
4558
+ { seam_client_session_token: [] },
4559
+ { client_session_token: [] }
4560
+ ],
4561
+ summary: "/client_sessions/revoke",
4562
+ tags: ["/client_sessions"],
4563
+ "x-fern-sdk-group-name": ["client_sessions"],
4564
+ "x-fern-sdk-method-name": "revoke"
4565
+ }
4566
+ },
4487
4567
  "/connect_webviews/create": {
4488
4568
  post: {
4489
4569
  operationId: "connectWebviewsCreatePost",