@seamapi/types 1.542.0 → 1.543.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 +4 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +25 -26
- package/dist/index.cjs +4 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +10 -10
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +3 -3
- package/lib/seam/connect/models/client-sessions/client-session.js +2 -3
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +1 -2
- package/lib/seam/connect/openapi.js +2 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +16 -16
- package/package.json +1 -1
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +2 -3
- package/src/lib/seam/connect/openapi.ts +2 -3
- package/src/lib/seam/connect/route-types.ts +16 -16
package/dist/connect.cjs
CHANGED
|
@@ -3916,8 +3916,8 @@ var client_session = zod.z.object({
|
|
|
3916
3916
|
device_count: zod.z.number().describe(
|
|
3917
3917
|
"Number of devices associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens)."
|
|
3918
3918
|
),
|
|
3919
|
-
|
|
3920
|
-
"Customer
|
|
3919
|
+
customer_key: zod.z.string().optional().describe(
|
|
3920
|
+
"Customer key associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens)."
|
|
3921
3921
|
),
|
|
3922
3922
|
connected_account_ids: zod.z.array(zod.z.string().uuid()).describe(
|
|
3923
3923
|
"IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens)."
|
|
@@ -13168,9 +13168,8 @@ var openapi_default = {
|
|
|
13168
13168
|
format: "date-time",
|
|
13169
13169
|
type: "string"
|
|
13170
13170
|
},
|
|
13171
|
-
|
|
13172
|
-
description: "Customer
|
|
13173
|
-
format: "uuid",
|
|
13171
|
+
customer_key: {
|
|
13172
|
+
description: "Customer key associated with the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens).",
|
|
13174
13173
|
type: "string"
|
|
13175
13174
|
},
|
|
13176
13175
|
device_count: {
|