@seamapi/types 1.38.2 → 1.39.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 +63 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +98 -0
- package/lib/seam/connect/openapi.d.ts +85 -0
- package/lib/seam/connect/openapi.js +63 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +63 -0
- package/src/lib/seam/connect/route-types.ts +13 -0
package/dist/connect.cjs
CHANGED
|
@@ -4051,6 +4051,11 @@ var openapi_default = {
|
|
|
4051
4051
|
items: { type: "string" },
|
|
4052
4052
|
type: "array"
|
|
4053
4053
|
},
|
|
4054
|
+
expires_at: {
|
|
4055
|
+
format: "date-time",
|
|
4056
|
+
nullable: true,
|
|
4057
|
+
type: "string"
|
|
4058
|
+
},
|
|
4054
4059
|
user_identifier_key: { minLength: 1, type: "string" }
|
|
4055
4060
|
},
|
|
4056
4061
|
type: "object"
|
|
@@ -4100,6 +4105,11 @@ var openapi_default = {
|
|
|
4100
4105
|
items: { type: "string" },
|
|
4101
4106
|
type: "array"
|
|
4102
4107
|
},
|
|
4108
|
+
expires_at: {
|
|
4109
|
+
format: "date-time",
|
|
4110
|
+
nullable: true,
|
|
4111
|
+
type: "string"
|
|
4112
|
+
},
|
|
4103
4113
|
user_identifier_key: { minLength: 1, type: "string" }
|
|
4104
4114
|
},
|
|
4105
4115
|
type: "object"
|
|
@@ -4241,6 +4251,11 @@ var openapi_default = {
|
|
|
4241
4251
|
items: { type: "string" },
|
|
4242
4252
|
type: "array"
|
|
4243
4253
|
},
|
|
4254
|
+
expires_at: {
|
|
4255
|
+
format: "date-time",
|
|
4256
|
+
nullable: true,
|
|
4257
|
+
type: "string"
|
|
4258
|
+
},
|
|
4244
4259
|
user_identifier_key: { minLength: 1, type: "string" }
|
|
4245
4260
|
},
|
|
4246
4261
|
type: "object"
|
|
@@ -4290,6 +4305,11 @@ var openapi_default = {
|
|
|
4290
4305
|
items: { type: "string" },
|
|
4291
4306
|
type: "array"
|
|
4292
4307
|
},
|
|
4308
|
+
expires_at: {
|
|
4309
|
+
format: "date-time",
|
|
4310
|
+
nullable: true,
|
|
4311
|
+
type: "string"
|
|
4312
|
+
},
|
|
4293
4313
|
user_identifier_key: { minLength: 1, type: "string" }
|
|
4294
4314
|
},
|
|
4295
4315
|
type: "object"
|
|
@@ -4484,6 +4504,49 @@ var openapi_default = {
|
|
|
4484
4504
|
"x-fern-sdk-return-value": "client_sessions"
|
|
4485
4505
|
}
|
|
4486
4506
|
},
|
|
4507
|
+
"/client_sessions/revoke": {
|
|
4508
|
+
post: {
|
|
4509
|
+
operationId: "clientSessionsRevokePost",
|
|
4510
|
+
requestBody: {
|
|
4511
|
+
content: {
|
|
4512
|
+
"application/json": {
|
|
4513
|
+
schema: {
|
|
4514
|
+
properties: {
|
|
4515
|
+
client_session_id: { format: "uuid", type: "string" }
|
|
4516
|
+
},
|
|
4517
|
+
required: ["client_session_id"],
|
|
4518
|
+
type: "object"
|
|
4519
|
+
}
|
|
4520
|
+
}
|
|
4521
|
+
}
|
|
4522
|
+
},
|
|
4523
|
+
responses: {
|
|
4524
|
+
200: {
|
|
4525
|
+
content: {
|
|
4526
|
+
"application/json": {
|
|
4527
|
+
schema: {
|
|
4528
|
+
properties: { ok: { type: "boolean" } },
|
|
4529
|
+
required: ["ok"],
|
|
4530
|
+
type: "object"
|
|
4531
|
+
}
|
|
4532
|
+
}
|
|
4533
|
+
},
|
|
4534
|
+
description: "OK"
|
|
4535
|
+
},
|
|
4536
|
+
400: { description: "Bad Request" },
|
|
4537
|
+
401: { description: "Unauthorized" }
|
|
4538
|
+
},
|
|
4539
|
+
security: [
|
|
4540
|
+
{ access_token: [], seam_workspace: [] },
|
|
4541
|
+
{ seam_client_session_token: [] },
|
|
4542
|
+
{ client_session_token: [] }
|
|
4543
|
+
],
|
|
4544
|
+
summary: "/client_sessions/revoke",
|
|
4545
|
+
tags: ["/client_sessions"],
|
|
4546
|
+
"x-fern-sdk-group-name": ["client_sessions"],
|
|
4547
|
+
"x-fern-sdk-method-name": "revoke"
|
|
4548
|
+
}
|
|
4549
|
+
},
|
|
4487
4550
|
"/connect_webviews/create": {
|
|
4488
4551
|
post: {
|
|
4489
4552
|
operationId: "connectWebviewsCreatePost",
|