@seamapi/types 1.490.0 → 1.492.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 +80 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6643 -245
- package/dist/index.cjs +80 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +10888 -2376
- package/lib/seam/connect/models/batch.js +5 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- 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 +76 -0
- package/lib/seam/connect/openapi.js +65 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2201 -161
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +5 -0
- package/src/lib/seam/connect/models/instant-keys/instant-key.ts +25 -0
- package/src/lib/seam/connect/openapi.ts +68 -0
- package/src/lib/seam/connect/route-types.ts +3345 -1067
package/dist/index.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
|
|
@@ -5326,7 +5334,9 @@ zod.z.object({
|
|
|
5326
5334
|
access_methods: access_method.array().optional(),
|
|
5327
5335
|
access_grants: access_grant.array().optional(),
|
|
5328
5336
|
events: seam_event.array().optional(),
|
|
5329
|
-
instant_keys: instant_key.array().optional()
|
|
5337
|
+
instant_keys: instant_key.array().optional(),
|
|
5338
|
+
access_codes: access_code.array().optional(),
|
|
5339
|
+
unmanaged_access_codes: unmanaged_access_code.array().optional()
|
|
5330
5340
|
}).describe("A batch of workspace resources.");
|
|
5331
5341
|
var batch = zod.z.object({
|
|
5332
5342
|
batch_type: zod.z.enum([
|
|
@@ -5355,7 +5365,9 @@ var batch = zod.z.object({
|
|
|
5355
5365
|
access_methods: access_method.array().optional(),
|
|
5356
5366
|
access_grants: access_grant.array().optional(),
|
|
5357
5367
|
events: seam_event.array().optional(),
|
|
5358
|
-
instant_keys: instant_key.array().optional()
|
|
5368
|
+
instant_keys: instant_key.array().optional(),
|
|
5369
|
+
access_codes: access_code.array().optional(),
|
|
5370
|
+
unmanaged_access_codes: unmanaged_access_code.array().optional()
|
|
5359
5371
|
}).describe("A batch of workspace resources.");
|
|
5360
5372
|
var bridge = zod.z.object({
|
|
5361
5373
|
bridge_id: zod.z.string().uuid().describe("ID of Seam Bridge."),
|
|
@@ -22667,6 +22679,30 @@ var openapi_default = {
|
|
|
22667
22679
|
format: "date-time",
|
|
22668
22680
|
type: "string"
|
|
22669
22681
|
},
|
|
22682
|
+
customization_profile: {
|
|
22683
|
+
description: "Customization profile associated with the Instant Key.",
|
|
22684
|
+
properties: {
|
|
22685
|
+
logo_url: {
|
|
22686
|
+
description: "URL of the logo associated with the customization profile.",
|
|
22687
|
+
format: "uri",
|
|
22688
|
+
type: "string"
|
|
22689
|
+
},
|
|
22690
|
+
primary_color: {
|
|
22691
|
+
description: "Primary color of the customization profile.",
|
|
22692
|
+
type: "string"
|
|
22693
|
+
},
|
|
22694
|
+
secondary_color: {
|
|
22695
|
+
description: "Secondary color of the customization profile.",
|
|
22696
|
+
type: "string"
|
|
22697
|
+
}
|
|
22698
|
+
},
|
|
22699
|
+
type: "object"
|
|
22700
|
+
},
|
|
22701
|
+
customization_profile_id: {
|
|
22702
|
+
description: "ID of the customization profile associated with the Instant Key.",
|
|
22703
|
+
format: "uuid",
|
|
22704
|
+
type: "string"
|
|
22705
|
+
},
|
|
22670
22706
|
expires_at: {
|
|
22671
22707
|
description: "Date and time at which the Instant Key expires.",
|
|
22672
22708
|
format: "date-time",
|
|
@@ -31808,6 +31844,10 @@ var openapi_default = {
|
|
|
31808
31844
|
batch: {
|
|
31809
31845
|
description: "A batch of workspace resources.",
|
|
31810
31846
|
properties: {
|
|
31847
|
+
access_codes: {
|
|
31848
|
+
items: { $ref: "#/components/schemas/access_code" },
|
|
31849
|
+
type: "array"
|
|
31850
|
+
},
|
|
31811
31851
|
access_grants: {
|
|
31812
31852
|
items: { $ref: "#/components/schemas/access_grant" },
|
|
31813
31853
|
type: "array"
|
|
@@ -31887,6 +31927,12 @@ var openapi_default = {
|
|
|
31887
31927
|
items: { $ref: "#/components/schemas/space" },
|
|
31888
31928
|
type: "array"
|
|
31889
31929
|
},
|
|
31930
|
+
unmanaged_access_codes: {
|
|
31931
|
+
items: {
|
|
31932
|
+
$ref: "#/components/schemas/unmanaged_access_code"
|
|
31933
|
+
},
|
|
31934
|
+
type: "array"
|
|
31935
|
+
},
|
|
31890
31936
|
unmanaged_acs_access_groups: {
|
|
31891
31937
|
items: {
|
|
31892
31938
|
$ref: "#/components/schemas/unmanaged_acs_access_group"
|
|
@@ -31993,6 +32039,10 @@ var openapi_default = {
|
|
|
31993
32039
|
batch: {
|
|
31994
32040
|
description: "A batch of workspace resources.",
|
|
31995
32041
|
properties: {
|
|
32042
|
+
access_codes: {
|
|
32043
|
+
items: { $ref: "#/components/schemas/access_code" },
|
|
32044
|
+
type: "array"
|
|
32045
|
+
},
|
|
31996
32046
|
access_grants: {
|
|
31997
32047
|
items: { $ref: "#/components/schemas/access_grant" },
|
|
31998
32048
|
type: "array"
|
|
@@ -32072,6 +32122,12 @@ var openapi_default = {
|
|
|
32072
32122
|
items: { $ref: "#/components/schemas/space" },
|
|
32073
32123
|
type: "array"
|
|
32074
32124
|
},
|
|
32125
|
+
unmanaged_access_codes: {
|
|
32126
|
+
items: {
|
|
32127
|
+
$ref: "#/components/schemas/unmanaged_access_code"
|
|
32128
|
+
},
|
|
32129
|
+
type: "array"
|
|
32130
|
+
},
|
|
32075
32131
|
unmanaged_acs_access_groups: {
|
|
32076
32132
|
items: {
|
|
32077
32133
|
$ref: "#/components/schemas/unmanaged_acs_access_group"
|
|
@@ -55773,6 +55829,7 @@ var openapi_default = {
|
|
|
55773
55829
|
"application/json": {
|
|
55774
55830
|
schema: {
|
|
55775
55831
|
properties: {
|
|
55832
|
+
customization_profile_id: { format: "uuid", type: "string" },
|
|
55776
55833
|
max_use_count: {
|
|
55777
55834
|
default: 1,
|
|
55778
55835
|
description: "Maximum number of times the instant key can be used. Default: 1.",
|
|
@@ -57908,6 +57965,10 @@ var openapi_default = {
|
|
|
57908
57965
|
batch: {
|
|
57909
57966
|
description: "A batch of workspace resources.",
|
|
57910
57967
|
properties: {
|
|
57968
|
+
access_codes: {
|
|
57969
|
+
items: { $ref: "#/components/schemas/access_code" },
|
|
57970
|
+
type: "array"
|
|
57971
|
+
},
|
|
57911
57972
|
access_grants: {
|
|
57912
57973
|
items: { $ref: "#/components/schemas/access_grant" },
|
|
57913
57974
|
type: "array"
|
|
@@ -57987,6 +58048,12 @@ var openapi_default = {
|
|
|
57987
58048
|
items: { $ref: "#/components/schemas/space" },
|
|
57988
58049
|
type: "array"
|
|
57989
58050
|
},
|
|
58051
|
+
unmanaged_access_codes: {
|
|
58052
|
+
items: {
|
|
58053
|
+
$ref: "#/components/schemas/unmanaged_access_code"
|
|
58054
|
+
},
|
|
58055
|
+
type: "array"
|
|
58056
|
+
},
|
|
57990
58057
|
unmanaged_acs_access_groups: {
|
|
57991
58058
|
items: {
|
|
57992
58059
|
$ref: "#/components/schemas/unmanaged_acs_access_group"
|
|
@@ -58070,6 +58137,10 @@ var openapi_default = {
|
|
|
58070
58137
|
batch: {
|
|
58071
58138
|
description: "A batch of workspace resources.",
|
|
58072
58139
|
properties: {
|
|
58140
|
+
access_codes: {
|
|
58141
|
+
items: { $ref: "#/components/schemas/access_code" },
|
|
58142
|
+
type: "array"
|
|
58143
|
+
},
|
|
58073
58144
|
access_grants: {
|
|
58074
58145
|
items: { $ref: "#/components/schemas/access_grant" },
|
|
58075
58146
|
type: "array"
|
|
@@ -58149,6 +58220,12 @@ var openapi_default = {
|
|
|
58149
58220
|
items: { $ref: "#/components/schemas/space" },
|
|
58150
58221
|
type: "array"
|
|
58151
58222
|
},
|
|
58223
|
+
unmanaged_access_codes: {
|
|
58224
|
+
items: {
|
|
58225
|
+
$ref: "#/components/schemas/unmanaged_access_code"
|
|
58226
|
+
},
|
|
58227
|
+
type: "array"
|
|
58228
|
+
},
|
|
58152
58229
|
unmanaged_acs_access_groups: {
|
|
58153
58230
|
items: {
|
|
58154
58231
|
$ref: "#/components/schemas/unmanaged_acs_access_group"
|