@seamapi/types 1.229.1 → 1.231.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 +51 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +124 -14
- package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-credential.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +1 -1
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +66 -0
- package/lib/seam/connect/openapi.js +47 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +55 -11
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +47 -1
- package/src/lib/seam/connect/route-types.ts +65 -4
package/dist/connect.cjs
CHANGED
|
@@ -1084,7 +1084,8 @@ var acs_credential_external_type = zod.z.enum([
|
|
|
1084
1084
|
"pti_card",
|
|
1085
1085
|
"brivo_credential",
|
|
1086
1086
|
"hid_credential",
|
|
1087
|
-
"visionline_card"
|
|
1087
|
+
"visionline_card",
|
|
1088
|
+
"salto_ks_credential"
|
|
1088
1089
|
]);
|
|
1089
1090
|
var acs_credential_access_method_type = zod.z.enum([
|
|
1090
1091
|
"code",
|
|
@@ -1180,7 +1181,7 @@ var visionline_instance_unreachable = common_acs_system_error.extend({
|
|
|
1180
1181
|
See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.visionline_instance_unreachable).`);
|
|
1181
1182
|
var salto_site_user_limit_reached = common_acs_system_error.extend({
|
|
1182
1183
|
error_code: zod.z.literal("salto_site_user_limit_reached").describe(
|
|
1183
|
-
"
|
|
1184
|
+
"Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit."
|
|
1184
1185
|
)
|
|
1185
1186
|
});
|
|
1186
1187
|
var acs_system_error = zod.z.union([
|
|
@@ -2452,7 +2453,8 @@ var openapi_default = {
|
|
|
2452
2453
|
"pti_card",
|
|
2453
2454
|
"brivo_credential",
|
|
2454
2455
|
"hid_credential",
|
|
2455
|
-
"visionline_card"
|
|
2456
|
+
"visionline_card",
|
|
2457
|
+
"salto_ks_credential"
|
|
2456
2458
|
],
|
|
2457
2459
|
type: "string"
|
|
2458
2460
|
},
|
|
@@ -2715,7 +2717,7 @@ var openapi_default = {
|
|
|
2715
2717
|
type: "string"
|
|
2716
2718
|
},
|
|
2717
2719
|
error_code: {
|
|
2718
|
-
description: "
|
|
2720
|
+
description: "Indicates that the maximum number of users allowed for the site has been reached. This means that new access codes cannot be created. Contact Salto support to increase the user limit.",
|
|
2719
2721
|
enum: ["salto_site_user_limit_reached"],
|
|
2720
2722
|
type: "string"
|
|
2721
2723
|
},
|
|
@@ -9127,6 +9129,51 @@ var openapi_default = {
|
|
|
9127
9129
|
"x-fern-sdk-method-name": "suspend"
|
|
9128
9130
|
}
|
|
9129
9131
|
},
|
|
9132
|
+
"/acs/users/unmanaged/get": {
|
|
9133
|
+
post: {
|
|
9134
|
+
operationId: "acsUsersUnmanagedGetPost",
|
|
9135
|
+
requestBody: {
|
|
9136
|
+
content: {
|
|
9137
|
+
"application/json": {
|
|
9138
|
+
schema: {
|
|
9139
|
+
properties: { acs_user_id: { format: "uuid", type: "string" } },
|
|
9140
|
+
required: ["acs_user_id"],
|
|
9141
|
+
type: "object"
|
|
9142
|
+
}
|
|
9143
|
+
}
|
|
9144
|
+
}
|
|
9145
|
+
},
|
|
9146
|
+
responses: {
|
|
9147
|
+
200: {
|
|
9148
|
+
content: {
|
|
9149
|
+
"application/json": {
|
|
9150
|
+
schema: {
|
|
9151
|
+
properties: {
|
|
9152
|
+
acs_user: { $ref: "#/components/schemas/acs_user" },
|
|
9153
|
+
ok: { type: "boolean" }
|
|
9154
|
+
},
|
|
9155
|
+
required: ["acs_user", "ok"],
|
|
9156
|
+
type: "object"
|
|
9157
|
+
}
|
|
9158
|
+
}
|
|
9159
|
+
},
|
|
9160
|
+
description: "OK"
|
|
9161
|
+
},
|
|
9162
|
+
400: { description: "Bad Request" },
|
|
9163
|
+
401: { description: "Unauthorized" }
|
|
9164
|
+
},
|
|
9165
|
+
security: [
|
|
9166
|
+
{ pat_with_workspace: [] },
|
|
9167
|
+
{ console_session: [] },
|
|
9168
|
+
{ api_key: [] }
|
|
9169
|
+
],
|
|
9170
|
+
summary: "/acs/users/unmanaged/get",
|
|
9171
|
+
tags: ["/acs"],
|
|
9172
|
+
"x-fern-sdk-group-name": ["acs", "users", "unmanaged"],
|
|
9173
|
+
"x-fern-sdk-method-name": "get",
|
|
9174
|
+
"x-fern-sdk-return-value": "acs_user"
|
|
9175
|
+
}
|
|
9176
|
+
},
|
|
9130
9177
|
"/acs/users/unsuspend": {
|
|
9131
9178
|
post: {
|
|
9132
9179
|
operationId: "acsUsersUnsuspendPost",
|