@seamapi/types 1.308.0 → 1.309.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 +3 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -0
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +3 -0
- package/lib/seam/connect/models/client-sessions/client-session.js +1 -0
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +5 -0
package/dist/connect.cjs
CHANGED
|
@@ -2149,6 +2149,7 @@ var client_session = zod.z.object({
|
|
|
2149
2149
|
client_session_id: zod.z.string().uuid(),
|
|
2150
2150
|
workspace_id: zod.z.string().uuid(),
|
|
2151
2151
|
created_at: zod.z.string().datetime(),
|
|
2152
|
+
expires_at: zod.z.string().datetime(),
|
|
2152
2153
|
token: zod.z.string(),
|
|
2153
2154
|
user_identifier_key: zod.z.string().nullable(),
|
|
2154
2155
|
device_count: zod.z.number(),
|
|
@@ -6810,6 +6811,7 @@ var openapi_default = {
|
|
|
6810
6811
|
},
|
|
6811
6812
|
created_at: { format: "date-time", type: "string" },
|
|
6812
6813
|
device_count: { format: "float", type: "number" },
|
|
6814
|
+
expires_at: { format: "date-time", type: "string" },
|
|
6813
6815
|
token: { type: "string" },
|
|
6814
6816
|
user_identifier_key: { nullable: true, type: "string" },
|
|
6815
6817
|
user_identity_ids: {
|
|
@@ -6822,6 +6824,7 @@ var openapi_default = {
|
|
|
6822
6824
|
"client_session_id",
|
|
6823
6825
|
"workspace_id",
|
|
6824
6826
|
"created_at",
|
|
6827
|
+
"expires_at",
|
|
6825
6828
|
"token",
|
|
6826
6829
|
"user_identifier_key",
|
|
6827
6830
|
"device_count",
|