@seamapi/types 1.508.0 → 1.509.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 +24 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +38 -2
- package/dist/index.cjs +24 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +34 -2
- package/lib/seam/connect/openapi.js +24 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +27 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
package/dist/connect.cjs
CHANGED
|
@@ -35662,6 +35662,14 @@ var openapi_default = {
|
|
|
35662
35662
|
description: "Returns a list of all [access system entrances](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
35663
35663
|
operationId: "acsEntrancesListGet",
|
|
35664
35664
|
parameters: [
|
|
35665
|
+
{
|
|
35666
|
+
in: "query",
|
|
35667
|
+
name: "customer_key",
|
|
35668
|
+
schema: {
|
|
35669
|
+
description: "Customer key for which you want to list entrances.",
|
|
35670
|
+
type: "string"
|
|
35671
|
+
}
|
|
35672
|
+
},
|
|
35665
35673
|
{
|
|
35666
35674
|
in: "query",
|
|
35667
35675
|
name: "acs_system_id",
|
|
@@ -35842,6 +35850,10 @@ var openapi_default = {
|
|
|
35842
35850
|
format: "uuid",
|
|
35843
35851
|
type: "string"
|
|
35844
35852
|
},
|
|
35853
|
+
customer_key: {
|
|
35854
|
+
description: "Customer key for which you want to list entrances.",
|
|
35855
|
+
type: "string"
|
|
35856
|
+
},
|
|
35845
35857
|
limit: {
|
|
35846
35858
|
default: 900,
|
|
35847
35859
|
description: "Maximum number of records to return per page.",
|
|
@@ -36149,6 +36161,14 @@ var openapi_default = {
|
|
|
36149
36161
|
description: "Returns a list of all [access systems](https://docs.seam.co/latest/capability-guides/access-systems).\n\nTo filter the list of returned access systems by a specific connected account ID, include the `connected_account_id` in the request body. If you omit the `connected_account_id` parameter, the response includes all access systems connected to your workspace.",
|
|
36150
36162
|
operationId: "acsSystemsListGet",
|
|
36151
36163
|
parameters: [
|
|
36164
|
+
{
|
|
36165
|
+
in: "query",
|
|
36166
|
+
name: "customer_key",
|
|
36167
|
+
schema: {
|
|
36168
|
+
description: "Customer key for which you want to list access systems.",
|
|
36169
|
+
type: "string"
|
|
36170
|
+
}
|
|
36171
|
+
},
|
|
36152
36172
|
{
|
|
36153
36173
|
in: "query",
|
|
36154
36174
|
name: "connected_account_id",
|
|
@@ -36207,6 +36227,10 @@ var openapi_default = {
|
|
|
36207
36227
|
description: "ID of the connected account by which you want to filter the list of access systems.",
|
|
36208
36228
|
format: "uuid",
|
|
36209
36229
|
type: "string"
|
|
36230
|
+
},
|
|
36231
|
+
customer_key: {
|
|
36232
|
+
description: "Customer key for which you want to list access systems.",
|
|
36233
|
+
type: "string"
|
|
36210
36234
|
}
|
|
36211
36235
|
},
|
|
36212
36236
|
type: "object"
|