@seamapi/types 1.312.0 → 1.312.2

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.
@@ -6088,8 +6088,6 @@ export interface Routes {
6088
6088
  queryParams: {};
6089
6089
  jsonBody: {};
6090
6090
  commonParams: {
6091
- /** ID of the acs_system the encoder belongs to. */
6092
- acs_system_id: string;
6093
6091
  /** ID of the acs_encoder to use for the scan. */
6094
6092
  acs_encoder_id: string;
6095
6093
  };
@@ -7498,6 +7496,8 @@ export interface Routes {
7498
7496
  method: 'POST';
7499
7497
  queryParams: {};
7500
7498
  jsonBody: {
7499
+ /** Full name of the new `acs_user`. */
7500
+ full_name: string;
7501
7501
  /** ID of the `acs_system` to which to add the new `acs_user`. */
7502
7502
  acs_system_id: string;
7503
7503
  /** Array of `access_group_id`s to indicate the access groups to which to add the new `acs_user`. */
@@ -7509,8 +7509,6 @@ export interface Routes {
7509
7509
  starts_at?: string | undefined;
7510
7510
  ends_at?: (string | undefined) | null;
7511
7511
  } | undefined;
7512
- /** Full name of the `acs_user`. */
7513
- full_name?: string | undefined;
7514
7512
  /**
7515
7513
  * @deprecated use email_address. */
7516
7514
  email?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.312.0",
3
+ "version": "1.312.2",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",