@seamapi/types 1.517.0 → 1.518.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 +60 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +60 -26
- package/dist/index.cjs +60 -13
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +50 -23
- package/lib/seam/connect/openapi.js +60 -13
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +65 -14
- package/src/lib/seam/connect/route-types.ts +10 -3
package/dist/connect.cjs
CHANGED
|
@@ -31207,6 +31207,14 @@ var openapi_default = {
|
|
|
31207
31207
|
description: "Gets an Access Grant.",
|
|
31208
31208
|
operationId: "accessGrantsListGet",
|
|
31209
31209
|
parameters: [
|
|
31210
|
+
{
|
|
31211
|
+
in: "query",
|
|
31212
|
+
name: "customer_key",
|
|
31213
|
+
schema: {
|
|
31214
|
+
description: "Customer key for which you want to list access grants.",
|
|
31215
|
+
type: "string"
|
|
31216
|
+
}
|
|
31217
|
+
},
|
|
31210
31218
|
{
|
|
31211
31219
|
in: "query",
|
|
31212
31220
|
name: "user_identity_id",
|
|
@@ -31321,6 +31329,10 @@ var openapi_default = {
|
|
|
31321
31329
|
format: "uuid",
|
|
31322
31330
|
type: "string"
|
|
31323
31331
|
},
|
|
31332
|
+
customer_key: {
|
|
31333
|
+
description: "Customer key for which you want to list access grants.",
|
|
31334
|
+
type: "string"
|
|
31335
|
+
},
|
|
31324
31336
|
location_id: {
|
|
31325
31337
|
deprecated: true,
|
|
31326
31338
|
format: "uuid",
|
|
@@ -44638,6 +44650,14 @@ var openapi_default = {
|
|
|
44638
44650
|
description: "Returns a list of all events. This endpoint returns the same events that would be sent to a [webhook](https://docs.seam.co/latest/developer-tools/webhooks), but it enables you to filter or see events that already took place.",
|
|
44639
44651
|
operationId: "eventsListGet",
|
|
44640
44652
|
parameters: [
|
|
44653
|
+
{
|
|
44654
|
+
in: "query",
|
|
44655
|
+
name: "customer_key",
|
|
44656
|
+
schema: {
|
|
44657
|
+
description: "Customer key for which you want to list events.",
|
|
44658
|
+
type: "string"
|
|
44659
|
+
}
|
|
44660
|
+
},
|
|
44641
44661
|
{
|
|
44642
44662
|
in: "query",
|
|
44643
44663
|
name: "unstable_offset",
|
|
@@ -44964,15 +44984,6 @@ var openapi_default = {
|
|
|
44964
44984
|
items: { format: "uuid", type: "string" },
|
|
44965
44985
|
type: "array"
|
|
44966
44986
|
}
|
|
44967
|
-
},
|
|
44968
|
-
{
|
|
44969
|
-
in: "query",
|
|
44970
|
-
name: "customer_ids",
|
|
44971
|
-
schema: {
|
|
44972
|
-
description: "IDs of the customers for which you want to list events.",
|
|
44973
|
-
items: { format: "uuid", type: "string" },
|
|
44974
|
-
type: "array"
|
|
44975
|
-
}
|
|
44976
44987
|
}
|
|
44977
44988
|
],
|
|
44978
44989
|
responses: {
|
|
@@ -45062,10 +45073,9 @@ var openapi_default = {
|
|
|
45062
45073
|
format: "uuid",
|
|
45063
45074
|
type: "string"
|
|
45064
45075
|
},
|
|
45065
|
-
|
|
45066
|
-
description: "
|
|
45067
|
-
|
|
45068
|
-
type: "array"
|
|
45076
|
+
customer_key: {
|
|
45077
|
+
description: "Customer key for which you want to list events.",
|
|
45078
|
+
type: "string"
|
|
45069
45079
|
},
|
|
45070
45080
|
device_id: {
|
|
45071
45081
|
description: "ID of the device for which you want to list events.",
|
|
@@ -52145,6 +52155,14 @@ var openapi_default = {
|
|
|
52145
52155
|
description: "Returns a list of all spaces.",
|
|
52146
52156
|
operationId: "spacesListGet",
|
|
52147
52157
|
parameters: [
|
|
52158
|
+
{
|
|
52159
|
+
in: "query",
|
|
52160
|
+
name: "customer_key",
|
|
52161
|
+
schema: {
|
|
52162
|
+
description: "Customer key for which you want to list spaces.",
|
|
52163
|
+
type: "string"
|
|
52164
|
+
}
|
|
52165
|
+
},
|
|
52148
52166
|
{
|
|
52149
52167
|
in: "query",
|
|
52150
52168
|
name: "search",
|
|
@@ -52226,6 +52244,10 @@ var openapi_default = {
|
|
|
52226
52244
|
"x-draft": "Needs review.",
|
|
52227
52245
|
"x-undocumented": "Only used internally."
|
|
52228
52246
|
},
|
|
52247
|
+
customer_key: {
|
|
52248
|
+
description: "Customer key for which you want to list spaces.",
|
|
52249
|
+
type: "string"
|
|
52250
|
+
},
|
|
52229
52251
|
search: {
|
|
52230
52252
|
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
|
|
52231
52253
|
minLength: 1,
|
|
@@ -58578,6 +58600,16 @@ var openapi_default = {
|
|
|
58578
58600
|
get: {
|
|
58579
58601
|
description: "Retrieves the customization profile for the workspace.",
|
|
58580
58602
|
operationId: "workspacesCustomizationProfilesListGet",
|
|
58603
|
+
parameters: [
|
|
58604
|
+
{
|
|
58605
|
+
in: "query",
|
|
58606
|
+
name: "customer_key",
|
|
58607
|
+
schema: {
|
|
58608
|
+
description: "Customer key for which you want to list customization profiles.",
|
|
58609
|
+
type: "string"
|
|
58610
|
+
}
|
|
58611
|
+
}
|
|
58612
|
+
],
|
|
58581
58613
|
responses: {
|
|
58582
58614
|
200: {
|
|
58583
58615
|
content: {
|
|
@@ -58620,6 +58652,21 @@ var openapi_default = {
|
|
|
58620
58652
|
post: {
|
|
58621
58653
|
description: "Retrieves the customization profile for the workspace.",
|
|
58622
58654
|
operationId: "workspacesCustomizationProfilesListPost",
|
|
58655
|
+
requestBody: {
|
|
58656
|
+
content: {
|
|
58657
|
+
"application/json": {
|
|
58658
|
+
schema: {
|
|
58659
|
+
properties: {
|
|
58660
|
+
customer_key: {
|
|
58661
|
+
description: "Customer key for which you want to list customization profiles.",
|
|
58662
|
+
type: "string"
|
|
58663
|
+
}
|
|
58664
|
+
},
|
|
58665
|
+
type: "object"
|
|
58666
|
+
}
|
|
58667
|
+
}
|
|
58668
|
+
}
|
|
58669
|
+
},
|
|
58623
58670
|
responses: {
|
|
58624
58671
|
200: {
|
|
58625
58672
|
content: {
|