@seamapi/types 1.76.0 → 1.76.1
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 +7 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -5
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +7 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -5
- package/lib/seam/connect/unstable/models/acs/user.d.ts +4 -4
- package/lib/seam/connect/unstable/models/acs/user.js +1 -1
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +7 -1
- package/src/lib/seam/connect/route-types.ts +31 -5
- package/src/lib/seam/connect/unstable/models/acs/user.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -284,7 +284,12 @@ var openapi_default = {
|
|
|
284
284
|
},
|
|
285
285
|
email_address: { format: "email", type: "string" },
|
|
286
286
|
external_type: {
|
|
287
|
-
enum: [
|
|
287
|
+
enum: [
|
|
288
|
+
"pti_user",
|
|
289
|
+
"brivo_user",
|
|
290
|
+
"hid_credential_manager_user",
|
|
291
|
+
"salto_site_user"
|
|
292
|
+
],
|
|
288
293
|
type: "string"
|
|
289
294
|
},
|
|
290
295
|
external_type_display_name: { type: "string" },
|
|
@@ -5897,6 +5902,7 @@ var openapi_default = {
|
|
|
5897
5902
|
"application/json": {
|
|
5898
5903
|
schema: {
|
|
5899
5904
|
properties: {
|
|
5905
|
+
acs_credential_id: { format: "uuid", type: "string" },
|
|
5900
5906
|
acs_system_id: { format: "uuid", type: "string" }
|
|
5901
5907
|
},
|
|
5902
5908
|
type: "object"
|