@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
|
@@ -7498,6 +7498,8 @@ export interface Routes {
|
|
|
7498
7498
|
method: 'POST';
|
|
7499
7499
|
queryParams: {};
|
|
7500
7500
|
jsonBody: {
|
|
7501
|
+
/** Full name of the new `acs_user`. */
|
|
7502
|
+
full_name: string;
|
|
7501
7503
|
/** ID of the `acs_system` to which to add the new `acs_user`. */
|
|
7502
7504
|
acs_system_id: string;
|
|
7503
7505
|
/** Array of `access_group_id`s to indicate the access groups to which to add the new `acs_user`. */
|
|
@@ -7509,8 +7511,6 @@ export interface Routes {
|
|
|
7509
7511
|
starts_at?: string | undefined;
|
|
7510
7512
|
ends_at?: (string | undefined) | null;
|
|
7511
7513
|
} | undefined;
|
|
7512
|
-
/** Full name of the `acs_user`. */
|
|
7513
|
-
full_name?: string | undefined;
|
|
7514
7514
|
/**
|
|
7515
7515
|
* @deprecated use email_address. */
|
|
7516
7516
|
email?: string | undefined;
|