@seamapi/types 1.399.1 → 1.400.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
|
@@ -23648,12 +23648,17 @@ var openapi_default = {
|
|
|
23648
23648
|
type: "string"
|
|
23649
23649
|
},
|
|
23650
23650
|
acs_user_id: {
|
|
23651
|
-
description: "ID of the access system user that you want to add to an access group.",
|
|
23651
|
+
description: "ID of the access system user that you want to add to an access group. You can only provide one of acs_user_id or user_identity_id.",
|
|
23652
|
+
format: "uuid",
|
|
23653
|
+
type: "string"
|
|
23654
|
+
},
|
|
23655
|
+
user_identity_id: {
|
|
23656
|
+
description: "ID of the desired user identity that you want to add to an access group. 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 access group membership belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created.",
|
|
23652
23657
|
format: "uuid",
|
|
23653
23658
|
type: "string"
|
|
23654
23659
|
}
|
|
23655
23660
|
},
|
|
23656
|
-
required: ["acs_access_group_id"
|
|
23661
|
+
required: ["acs_access_group_id"],
|
|
23657
23662
|
type: "object"
|
|
23658
23663
|
}
|
|
23659
23664
|
}
|
|
@@ -23701,12 +23706,17 @@ var openapi_default = {
|
|
|
23701
23706
|
type: "string"
|
|
23702
23707
|
},
|
|
23703
23708
|
acs_user_id: {
|
|
23704
|
-
description: "ID of the access system user that you want to add to an access group.",
|
|
23709
|
+
description: "ID of the access system user that you want to add to an access group. You can only provide one of acs_user_id or user_identity_id.",
|
|
23710
|
+
format: "uuid",
|
|
23711
|
+
type: "string"
|
|
23712
|
+
},
|
|
23713
|
+
user_identity_id: {
|
|
23714
|
+
description: "ID of the desired user identity that you want to add to an access group. 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 access group membership belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created.",
|
|
23705
23715
|
format: "uuid",
|
|
23706
23716
|
type: "string"
|
|
23707
23717
|
}
|
|
23708
23718
|
},
|
|
23709
|
-
required: ["acs_access_group_id"
|
|
23719
|
+
required: ["acs_access_group_id"],
|
|
23710
23720
|
type: "object"
|
|
23711
23721
|
}
|
|
23712
23722
|
}
|