@seamapi/types 1.398.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 +12 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -2
- package/lib/seam/connect/openapi.d.ts +10 -0
- package/lib/seam/connect/openapi.js +12 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +14 -2
- package/src/lib/seam/connect/route-types.ts +6 -2
package/dist/connect.cjs
CHANGED
|
@@ -24345,8 +24345,13 @@ var openapi_default = {
|
|
|
24345
24345
|
enum: ["code", "card", "mobile_key"],
|
|
24346
24346
|
type: "string"
|
|
24347
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
|
+
},
|
|
24348
24353
|
acs_user_id: {
|
|
24349
|
-
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`.",
|
|
24350
24355
|
format: "uuid",
|
|
24351
24356
|
type: "string"
|
|
24352
24357
|
},
|
|
@@ -24402,6 +24407,11 @@ var openapi_default = {
|
|
|
24402
24407
|
format: "date-time",
|
|
24403
24408
|
type: "string"
|
|
24404
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
|
+
},
|
|
24405
24415
|
visionline_metadata: {
|
|
24406
24416
|
description: "Visionline-specific metadata for the new credential.",
|
|
24407
24417
|
properties: {
|
|
@@ -24437,7 +24447,7 @@ var openapi_default = {
|
|
|
24437
24447
|
type: "object"
|
|
24438
24448
|
}
|
|
24439
24449
|
},
|
|
24440
|
-
required: ["
|
|
24450
|
+
required: ["access_method"],
|
|
24441
24451
|
type: "object"
|
|
24442
24452
|
}
|
|
24443
24453
|
}
|