@seamapi/types 1.397.0 → 1.399.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 +18 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +24 -3
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +18 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +9 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +20 -3
- package/src/lib/seam/connect/route-types.ts +9 -3
package/dist/connect.cjs
CHANGED
|
@@ -23933,9 +23933,14 @@ var openapi_default = {
|
|
|
23933
23933
|
description: "ID of the desired user.",
|
|
23934
23934
|
format: "uuid",
|
|
23935
23935
|
type: "string"
|
|
23936
|
+
},
|
|
23937
|
+
user_identity_id: {
|
|
23938
|
+
description: "ID of the desired user identity.",
|
|
23939
|
+
format: "uuid",
|
|
23940
|
+
type: "string"
|
|
23936
23941
|
}
|
|
23937
23942
|
},
|
|
23938
|
-
required: ["acs_access_group_id"
|
|
23943
|
+
required: ["acs_access_group_id"],
|
|
23939
23944
|
type: "object"
|
|
23940
23945
|
}
|
|
23941
23946
|
}
|
|
@@ -24340,8 +24345,13 @@ var openapi_default = {
|
|
|
24340
24345
|
enum: ["code", "card", "mobile_key"],
|
|
24341
24346
|
type: "string"
|
|
24342
24347
|
},
|
|
24348
|
+
acs_system_id: {
|
|
24349
|
+
description: "ID of the ACS system to which the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`.",
|
|
24350
|
+
format: "uuid",
|
|
24351
|
+
type: "string"
|
|
24352
|
+
},
|
|
24343
24353
|
acs_user_id: {
|
|
24344
|
-
description: "ID of the ACS user to whom the new credential belongs.",
|
|
24354
|
+
description: "ID of the ACS user to whom the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`.",
|
|
24345
24355
|
format: "uuid",
|
|
24346
24356
|
type: "string"
|
|
24347
24357
|
},
|
|
@@ -24397,6 +24407,11 @@ var openapi_default = {
|
|
|
24397
24407
|
format: "date-time",
|
|
24398
24408
|
type: "string"
|
|
24399
24409
|
},
|
|
24410
|
+
user_identity_id: {
|
|
24411
|
+
description: "ID of the user identity to whom the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`. If the ACS system contains an ACS user with the same `email_address` or `phone_number` as the user identity that you specify, they are linked, and the credential belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created.",
|
|
24412
|
+
format: "uuid",
|
|
24413
|
+
type: "string"
|
|
24414
|
+
},
|
|
24400
24415
|
visionline_metadata: {
|
|
24401
24416
|
description: "Visionline-specific metadata for the new credential.",
|
|
24402
24417
|
properties: {
|
|
@@ -24432,7 +24447,7 @@ var openapi_default = {
|
|
|
24432
24447
|
type: "object"
|
|
24433
24448
|
}
|
|
24434
24449
|
},
|
|
24435
|
-
required: ["
|
|
24450
|
+
required: ["access_method"],
|
|
24436
24451
|
type: "object"
|
|
24437
24452
|
}
|
|
24438
24453
|
}
|