@seamapi/types 1.11.0 → 1.11.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.
@@ -713,7 +713,7 @@ export interface Routes {
713
713
  };
714
714
  '/acs/users/remove_from_access_group': {
715
715
  route: '/acs/users/remove_from_access_group';
716
- method: 'POST' | 'PATCH';
716
+ method: 'DELETE' | 'POST';
717
717
  queryParams: {};
718
718
  jsonBody: {};
719
719
  commonParams: {
@@ -2,27 +2,27 @@ import { z } from 'zod';
2
2
  export declare const acs_user: z.ZodObject<{
3
3
  workspace_id: z.ZodString;
4
4
  created_at: z.ZodString;
5
- display_name: z.ZodString;
6
- acs_user_id: z.ZodString;
7
5
  acs_system_id: z.ZodString;
6
+ acs_user_id: z.ZodString;
7
+ display_name: z.ZodString;
8
8
  full_name: z.ZodOptional<z.ZodString>;
9
9
  email: z.ZodOptional<z.ZodString>;
10
10
  phone_number: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
11
11
  }, "strip", z.ZodTypeAny, {
12
12
  workspace_id: string;
13
13
  created_at: string;
14
- display_name: string;
15
- acs_user_id: string;
16
14
  acs_system_id: string;
15
+ acs_user_id: string;
16
+ display_name: string;
17
17
  full_name?: string | undefined;
18
18
  email?: string | undefined;
19
19
  phone_number?: string | undefined;
20
20
  }, {
21
21
  workspace_id: string;
22
22
  created_at: string;
23
- display_name: string;
24
- acs_user_id: string;
25
23
  acs_system_id: string;
24
+ acs_user_id: string;
25
+ display_name: string;
26
26
  full_name?: string | undefined;
27
27
  email?: string | undefined;
28
28
  phone_number?: string | undefined;