@seamapi/types 1.10.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.
@@ -534,7 +534,7 @@ export interface Routes {
534
534
  queryParams: {}
535
535
  jsonBody: {}
536
536
  commonParams: {
537
- acs_access_system_id?: string | undefined
537
+ acs_system_id?: string | undefined
538
538
  acs_user_id?: string | undefined
539
539
  }
540
540
  formData: {}
@@ -727,7 +727,7 @@ export interface Routes {
727
727
  }
728
728
  '/acs/users/remove_from_access_group': {
729
729
  route: '/acs/users/remove_from_access_group'
730
- method: 'POST' | 'PATCH'
730
+ method: 'DELETE' | 'POST'
731
731
  queryParams: {}
732
732
  jsonBody: {}
733
733
  commonParams: {
@@ -2808,6 +2808,7 @@ export interface Routes {
2808
2808
  | 'lock.locked'
2809
2809
  | 'lock.unlocked'
2810
2810
  | 'connected_account.connected'
2811
+ | 'connected_account.successful_login'
2811
2812
  | 'connected_account.created'
2812
2813
  | 'connected_account.deleted'
2813
2814
  | 'connected_account.disconnected'
@@ -2846,6 +2847,7 @@ export interface Routes {
2846
2847
  | 'lock.locked'
2847
2848
  | 'lock.unlocked'
2848
2849
  | 'connected_account.connected'
2850
+ | 'connected_account.successful_login'
2849
2851
  | 'connected_account.created'
2850
2852
  | 'connected_account.deleted'
2851
2853
  | 'connected_account.disconnected'
@@ -1,5 +1,6 @@
1
1
  import { z } from 'zod'
2
2
 
3
+ // If changed, update seam.acs_access_group.access_group_type check constraint
3
4
  export const acs_access_group_type = z.enum(['pti_unit'])
4
5
 
5
6
  export type AcsAccessGroupType = z.infer<typeof acs_access_group_type>
@@ -1,5 +1,6 @@
1
1
  import { z } from 'zod'
2
2
 
3
+ // If changed, update seam.acs_system.system_type check constraint
3
4
  export const acs_system_type = z.enum(['pti_site', 'alta_org'])
4
5
 
5
6
  export type AcsSystemType = z.infer<typeof acs_system_type>