@seamapi/types 1.400.0 → 1.401.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 +14 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +14 -2
- package/lib/seam/connect/openapi.d.ts +10 -0
- package/lib/seam/connect/openapi.js +14 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -4
- package/src/lib/seam/connect/route-types.ts +4 -2
package/dist/connect.cjs
CHANGED
|
@@ -24323,12 +24323,17 @@ var openapi_default = {
|
|
|
24323
24323
|
type: "string"
|
|
24324
24324
|
},
|
|
24325
24325
|
acs_user_id: {
|
|
24326
|
-
description: "ID of the access system user to whom you want to assign a credential.",
|
|
24326
|
+
description: "ID of the access system user to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_id.",
|
|
24327
|
+
format: "uuid",
|
|
24328
|
+
type: "string"
|
|
24329
|
+
},
|
|
24330
|
+
user_identity_id: {
|
|
24331
|
+
description: "ID of the user identity to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_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.",
|
|
24327
24332
|
format: "uuid",
|
|
24328
24333
|
type: "string"
|
|
24329
24334
|
}
|
|
24330
24335
|
},
|
|
24331
|
-
required: ["
|
|
24336
|
+
required: ["acs_credential_id"],
|
|
24332
24337
|
type: "object"
|
|
24333
24338
|
}
|
|
24334
24339
|
}
|
|
@@ -24380,12 +24385,17 @@ var openapi_default = {
|
|
|
24380
24385
|
type: "string"
|
|
24381
24386
|
},
|
|
24382
24387
|
acs_user_id: {
|
|
24383
|
-
description: "ID of the access system user to whom you want to assign a credential.",
|
|
24388
|
+
description: "ID of the access system user to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_id.",
|
|
24389
|
+
format: "uuid",
|
|
24390
|
+
type: "string"
|
|
24391
|
+
},
|
|
24392
|
+
user_identity_id: {
|
|
24393
|
+
description: "ID of the user identity to whom you want to assign a credential. You can only provide one of acs_user_id or user_identity_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.",
|
|
24384
24394
|
format: "uuid",
|
|
24385
24395
|
type: "string"
|
|
24386
24396
|
}
|
|
24387
24397
|
},
|
|
24388
|
-
required: ["
|
|
24398
|
+
required: ["acs_credential_id"],
|
|
24389
24399
|
type: "object"
|
|
24390
24400
|
}
|
|
24391
24401
|
}
|