@seamapi/types 1.576.0 → 1.578.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 +19 -17
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +45 -30
- package/dist/index.cjs +19 -17
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +34 -28
- package/lib/seam/connect/openapi.js +17 -15
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +18 -16
- package/src/lib/seam/connect/route-types.ts +11 -2
package/dist/connect.cjs
CHANGED
|
@@ -44484,16 +44484,6 @@ var openapi_default = {
|
|
|
44484
44484
|
type: "array"
|
|
44485
44485
|
}
|
|
44486
44486
|
},
|
|
44487
|
-
{
|
|
44488
|
-
in: "query",
|
|
44489
|
-
name: "limit",
|
|
44490
|
-
schema: {
|
|
44491
|
-
default: 500,
|
|
44492
|
-
description: "Numerical limit on the number of devices to return.",
|
|
44493
|
-
format: "float",
|
|
44494
|
-
type: "number"
|
|
44495
|
-
}
|
|
44496
|
-
},
|
|
44497
44487
|
{
|
|
44498
44488
|
in: "query",
|
|
44499
44489
|
name: "created_before",
|
|
@@ -44617,6 +44607,16 @@ var openapi_default = {
|
|
|
44617
44607
|
minLength: 1,
|
|
44618
44608
|
type: "string"
|
|
44619
44609
|
}
|
|
44610
|
+
},
|
|
44611
|
+
{
|
|
44612
|
+
in: "query",
|
|
44613
|
+
name: "limit",
|
|
44614
|
+
schema: {
|
|
44615
|
+
default: 22900,
|
|
44616
|
+
description: "Numerical limit on the number of devices to return.",
|
|
44617
|
+
format: "float",
|
|
44618
|
+
type: "number"
|
|
44619
|
+
}
|
|
44620
44620
|
}
|
|
44621
44621
|
],
|
|
44622
44622
|
responses: {
|
|
@@ -44629,9 +44629,10 @@ var openapi_default = {
|
|
|
44629
44629
|
items: { $ref: "#/components/schemas/unmanaged_device" },
|
|
44630
44630
|
type: "array"
|
|
44631
44631
|
},
|
|
44632
|
-
ok: { type: "boolean" }
|
|
44632
|
+
ok: { type: "boolean" },
|
|
44633
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
44633
44634
|
},
|
|
44634
|
-
required: ["devices", "ok"],
|
|
44635
|
+
required: ["devices", "pagination", "ok"],
|
|
44635
44636
|
type: "object"
|
|
44636
44637
|
}
|
|
44637
44638
|
}
|
|
@@ -44882,7 +44883,7 @@ var openapi_default = {
|
|
|
44882
44883
|
"x-undocumented": "Only used internally."
|
|
44883
44884
|
},
|
|
44884
44885
|
limit: {
|
|
44885
|
-
default:
|
|
44886
|
+
default: 22900,
|
|
44886
44887
|
description: "Numerical limit on the number of devices to return.",
|
|
44887
44888
|
format: "float",
|
|
44888
44889
|
type: "number"
|
|
@@ -44975,9 +44976,10 @@ var openapi_default = {
|
|
|
44975
44976
|
items: { $ref: "#/components/schemas/unmanaged_device" },
|
|
44976
44977
|
type: "array"
|
|
44977
44978
|
},
|
|
44978
|
-
ok: { type: "boolean" }
|
|
44979
|
+
ok: { type: "boolean" },
|
|
44980
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
44979
44981
|
},
|
|
44980
|
-
required: ["devices", "ok"],
|
|
44982
|
+
required: ["devices", "pagination", "ok"],
|
|
44981
44983
|
type: "object"
|
|
44982
44984
|
}
|
|
44983
44985
|
}
|
|
@@ -57939,7 +57941,7 @@ var openapi_default = {
|
|
|
57939
57941
|
},
|
|
57940
57942
|
"/user_identities/add_acs_user": {
|
|
57941
57943
|
post: {
|
|
57942
|
-
description: "Adds a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
|
|
57944
|
+
description: "Adds a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).\n\nYou must specify either `user_identity_id` or `user_identity_key` to identify the user identity.\n\nIf `user_identity_key` is provided, but the user identity doesn't exist, a new user identity will be created automatically using information from the ACS user.",
|
|
57943
57945
|
operationId: "userIdentitiesAddAcsUserPost",
|
|
57944
57946
|
requestBody: {
|
|
57945
57947
|
content: {
|
|
@@ -57996,7 +57998,7 @@ var openapi_default = {
|
|
|
57996
57998
|
"x-title": "Add an ACS User to a User Identity"
|
|
57997
57999
|
},
|
|
57998
58000
|
put: {
|
|
57999
|
-
description: "Adds a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
|
|
58001
|
+
description: "Adds a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).\n\nYou must specify either `user_identity_id` or `user_identity_key` to identify the user identity.\n\nIf `user_identity_key` is provided, but the user identity doesn't exist, a new user identity will be created automatically using information from the ACS user.",
|
|
58000
58002
|
operationId: "userIdentitiesAddAcsUserPut",
|
|
58001
58003
|
requestBody: {
|
|
58002
58004
|
content: {
|