@seamapi/types 1.490.0 → 1.491.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 +34 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +150 -2
- package/dist/index.cjs +34 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +76 -0
- package/lib/seam/connect/models/customization_profiles/customization_profile.d.ts +2 -2
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +26 -0
- package/lib/seam/connect/models/instant-keys/instant-key.js +23 -0
- package/lib/seam/connect/models/instant-keys/instant-key.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +25 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +56 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/instant-keys/instant-key.ts +25 -0
- package/src/lib/seam/connect/openapi.ts +28 -0
- package/src/lib/seam/connect/route-types.ts +66 -0
package/dist/connect.cjs
CHANGED
|
@@ -5119,7 +5119,15 @@ var instant_key = zod.z.object({
|
|
|
5119
5119
|
"ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens) associated with the Instant Key."
|
|
5120
5120
|
),
|
|
5121
5121
|
user_identity_id: zod.z.string().uuid().describe("ID of the user identity associated with the Instant Key."),
|
|
5122
|
-
expires_at: zod.z.string().datetime().describe("Date and time at which the Instant Key expires.")
|
|
5122
|
+
expires_at: zod.z.string().datetime().describe("Date and time at which the Instant Key expires."),
|
|
5123
|
+
customization_profile_id: zod.z.string().uuid().optional().describe(
|
|
5124
|
+
"ID of the customization profile associated with the Instant Key."
|
|
5125
|
+
),
|
|
5126
|
+
customization_profile: zod.z.object({
|
|
5127
|
+
primary_color: zod.z.string().optional().describe("Primary color of the customization profile."),
|
|
5128
|
+
secondary_color: zod.z.string().optional().describe("Secondary color of the customization profile."),
|
|
5129
|
+
logo_url: zod.z.string().url().optional().describe("URL of the logo associated with the customization profile.")
|
|
5130
|
+
}).optional().describe("Customization profile associated with the Instant Key.")
|
|
5123
5131
|
}).describe(`
|
|
5124
5132
|
---
|
|
5125
5133
|
route_path: /instant_keys
|
|
@@ -22667,6 +22675,30 @@ var openapi_default = {
|
|
|
22667
22675
|
format: "date-time",
|
|
22668
22676
|
type: "string"
|
|
22669
22677
|
},
|
|
22678
|
+
customization_profile: {
|
|
22679
|
+
description: "Customization profile associated with the Instant Key.",
|
|
22680
|
+
properties: {
|
|
22681
|
+
logo_url: {
|
|
22682
|
+
description: "URL of the logo associated with the customization profile.",
|
|
22683
|
+
format: "uri",
|
|
22684
|
+
type: "string"
|
|
22685
|
+
},
|
|
22686
|
+
primary_color: {
|
|
22687
|
+
description: "Primary color of the customization profile.",
|
|
22688
|
+
type: "string"
|
|
22689
|
+
},
|
|
22690
|
+
secondary_color: {
|
|
22691
|
+
description: "Secondary color of the customization profile.",
|
|
22692
|
+
type: "string"
|
|
22693
|
+
}
|
|
22694
|
+
},
|
|
22695
|
+
type: "object"
|
|
22696
|
+
},
|
|
22697
|
+
customization_profile_id: {
|
|
22698
|
+
description: "ID of the customization profile associated with the Instant Key.",
|
|
22699
|
+
format: "uuid",
|
|
22700
|
+
type: "string"
|
|
22701
|
+
},
|
|
22670
22702
|
expires_at: {
|
|
22671
22703
|
description: "Date and time at which the Instant Key expires.",
|
|
22672
22704
|
format: "date-time",
|
|
@@ -55773,6 +55805,7 @@ var openapi_default = {
|
|
|
55773
55805
|
"application/json": {
|
|
55774
55806
|
schema: {
|
|
55775
55807
|
properties: {
|
|
55808
|
+
customization_profile_id: { format: "uuid", type: "string" },
|
|
55776
55809
|
max_use_count: {
|
|
55777
55810
|
default: 1,
|
|
55778
55811
|
description: "Maximum number of times the instant key can be used. Default: 1.",
|