@seamapi/types 1.230.0 → 1.232.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 +55 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +131 -10
- 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/openapi.d.ts +77 -0
- package/lib/seam/connect/openapi.js +52 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +51 -7
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +52 -0
- package/src/lib/seam/connect/route-types.ts +61 -0
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",
|
|
@@ -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
|
},
|
|
@@ -9172,6 +9174,57 @@ var openapi_default = {
|
|
|
9172
9174
|
"x-fern-sdk-return-value": "acs_user"
|
|
9173
9175
|
}
|
|
9174
9176
|
},
|
|
9177
|
+
"/acs/users/unmanaged/list": {
|
|
9178
|
+
post: {
|
|
9179
|
+
operationId: "acsUsersUnmanagedListPost",
|
|
9180
|
+
requestBody: {
|
|
9181
|
+
content: {
|
|
9182
|
+
"application/json": {
|
|
9183
|
+
schema: {
|
|
9184
|
+
properties: {
|
|
9185
|
+
acs_system_id: { format: "uuid", type: "string" }
|
|
9186
|
+
},
|
|
9187
|
+
required: ["acs_system_id"],
|
|
9188
|
+
type: "object"
|
|
9189
|
+
}
|
|
9190
|
+
}
|
|
9191
|
+
}
|
|
9192
|
+
},
|
|
9193
|
+
responses: {
|
|
9194
|
+
200: {
|
|
9195
|
+
content: {
|
|
9196
|
+
"application/json": {
|
|
9197
|
+
schema: {
|
|
9198
|
+
properties: {
|
|
9199
|
+
acs_users: {
|
|
9200
|
+
items: { $ref: "#/components/schemas/acs_user" },
|
|
9201
|
+
type: "array"
|
|
9202
|
+
},
|
|
9203
|
+
ok: { type: "boolean" }
|
|
9204
|
+
},
|
|
9205
|
+
required: ["acs_users", "ok"],
|
|
9206
|
+
type: "object"
|
|
9207
|
+
}
|
|
9208
|
+
}
|
|
9209
|
+
},
|
|
9210
|
+
description: "OK"
|
|
9211
|
+
},
|
|
9212
|
+
400: { description: "Bad Request" },
|
|
9213
|
+
401: { description: "Unauthorized" }
|
|
9214
|
+
},
|
|
9215
|
+
security: [
|
|
9216
|
+
{ client_session: [] },
|
|
9217
|
+
{ pat_with_workspace: [] },
|
|
9218
|
+
{ console_session: [] },
|
|
9219
|
+
{ api_key: [] }
|
|
9220
|
+
],
|
|
9221
|
+
summary: "/acs/users/unmanaged/list",
|
|
9222
|
+
tags: ["/acs"],
|
|
9223
|
+
"x-fern-sdk-group-name": ["acs", "users", "unmanaged"],
|
|
9224
|
+
"x-fern-sdk-method-name": "list",
|
|
9225
|
+
"x-fern-sdk-return-value": "acs_users"
|
|
9226
|
+
}
|
|
9227
|
+
},
|
|
9175
9228
|
"/acs/users/unsuspend": {
|
|
9176
9229
|
post: {
|
|
9177
9230
|
operationId: "acsUsersUnsuspendPost",
|