@seamapi/types 1.312.0 → 1.312.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 +185 -182
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +624 -647
- package/lib/seam/connect/openapi.d.ts +622 -645
- package/lib/seam/connect/openapi.js +185 -182
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +185 -182
- package/src/lib/seam/connect/route-types.ts +2 -2
|
@@ -8812,6 +8812,8 @@ export interface Routes {
|
|
|
8812
8812
|
method: 'POST'
|
|
8813
8813
|
queryParams: {}
|
|
8814
8814
|
jsonBody: {
|
|
8815
|
+
/** Full name of the new `acs_user`. */
|
|
8816
|
+
full_name: string
|
|
8815
8817
|
/** ID of the `acs_system` to which to add the new `acs_user`. */
|
|
8816
8818
|
acs_system_id: string
|
|
8817
8819
|
/** Array of `access_group_id`s to indicate the access groups to which to add the new `acs_user`. */
|
|
@@ -8825,8 +8827,6 @@ export interface Routes {
|
|
|
8825
8827
|
ends_at?: (string | undefined) | null
|
|
8826
8828
|
}
|
|
8827
8829
|
| undefined
|
|
8828
|
-
/** Full name of the `acs_user`. */
|
|
8829
|
-
full_name?: string | undefined
|
|
8830
8830
|
/**
|
|
8831
8831
|
* @deprecated use email_address. */
|
|
8832
8832
|
email?: string | undefined
|