@seamapi/types 1.489.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 +41 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +153 -5
- package/dist/index.cjs +41 -8
- 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 +29 -1
- package/lib/seam/connect/openapi.js +32 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +58 -2
- 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 +35 -7
- package/src/lib/seam/connect/route-types.ts +68 -2
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.",
|
|
@@ -57887,10 +57920,10 @@ var openapi_default = {
|
|
|
57887
57920
|
"x-undocumented": "Internal form-data endpoint for Console and Customer Portal."
|
|
57888
57921
|
}
|
|
57889
57922
|
},
|
|
57890
|
-
"/workspaces/
|
|
57923
|
+
"/workspaces/find_anything": {
|
|
57891
57924
|
get: {
|
|
57892
57925
|
description: "Search for resources inside a workspace.",
|
|
57893
|
-
operationId: "
|
|
57926
|
+
operationId: "workspacesFindAnythingGet",
|
|
57894
57927
|
parameters: [
|
|
57895
57928
|
{
|
|
57896
57929
|
in: "query",
|
|
@@ -58040,11 +58073,11 @@ var openapi_default = {
|
|
|
58040
58073
|
{ console_session_with_workspace: [] },
|
|
58041
58074
|
{ api_key: [] }
|
|
58042
58075
|
],
|
|
58043
|
-
summary: "/workspaces/
|
|
58076
|
+
summary: "/workspaces/find_anything",
|
|
58044
58077
|
tags: ["/workspaces"],
|
|
58045
58078
|
"x-batch-type": "workspaces",
|
|
58046
58079
|
"x-fern-sdk-group-name": ["workspaces"],
|
|
58047
|
-
"x-fern-sdk-method-name": "
|
|
58080
|
+
"x-fern-sdk-method-name": "find_anything",
|
|
58048
58081
|
"x-fern-sdk-return-value": "batch",
|
|
58049
58082
|
"x-response-key": "batch",
|
|
58050
58083
|
"x-title": "Find Resources",
|
|
@@ -58052,7 +58085,7 @@ var openapi_default = {
|
|
|
58052
58085
|
},
|
|
58053
58086
|
post: {
|
|
58054
58087
|
description: "Search for resources inside a workspace.",
|
|
58055
|
-
operationId: "
|
|
58088
|
+
operationId: "workspacesFindAnythingPost",
|
|
58056
58089
|
parameters: [
|
|
58057
58090
|
{
|
|
58058
58091
|
in: "query",
|
|
@@ -58202,11 +58235,11 @@ var openapi_default = {
|
|
|
58202
58235
|
{ console_session_with_workspace: [] },
|
|
58203
58236
|
{ api_key: [] }
|
|
58204
58237
|
],
|
|
58205
|
-
summary: "/workspaces/
|
|
58238
|
+
summary: "/workspaces/find_anything",
|
|
58206
58239
|
tags: ["/workspaces"],
|
|
58207
58240
|
"x-batch-type": "workspaces",
|
|
58208
58241
|
"x-fern-sdk-group-name": ["workspaces"],
|
|
58209
|
-
"x-fern-sdk-method-name": "
|
|
58242
|
+
"x-fern-sdk-method-name": "find_anything",
|
|
58210
58243
|
"x-fern-sdk-return-value": "batch",
|
|
58211
58244
|
"x-response-key": "batch",
|
|
58212
58245
|
"x-title": "Find Resources",
|