@seamapi/types 1.7.1 → 1.9.0

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.
@@ -462,6 +462,18 @@ export interface Routes {
462
462
  }
463
463
  }
464
464
  }
465
+ '/acs/access_groups/add_user': {
466
+ route: '/acs/access_groups/add_user'
467
+ method: 'PATCH' | 'POST'
468
+ queryParams: {}
469
+ jsonBody: {}
470
+ commonParams: {
471
+ acs_access_group_id: string
472
+ acs_user_id: string
473
+ }
474
+ formData: {}
475
+ jsonResponse: {}
476
+ }
465
477
  '/acs/access_groups/create': {
466
478
  route: '/acs/access_groups/create'
467
479
  method: 'POST'
@@ -538,6 +550,40 @@ export interface Routes {
538
550
  }>
539
551
  }
540
552
  }
553
+ '/acs/access_groups/list_users': {
554
+ route: '/acs/access_groups/list_users'
555
+ method: 'GET' | 'POST'
556
+ queryParams: {}
557
+ jsonBody: {}
558
+ commonParams: {
559
+ acs_access_group_id: string
560
+ }
561
+ formData: {}
562
+ jsonResponse: {
563
+ acs_users: Array<{
564
+ acs_user_id: string
565
+ acs_system_id: string
566
+ workspace_id: string
567
+ created_at: string
568
+ display_name: string
569
+ full_name?: string | undefined
570
+ email?: string | undefined
571
+ phone_number?: string | undefined
572
+ }>
573
+ }
574
+ }
575
+ '/acs/access_groups/remove_user': {
576
+ route: '/acs/access_groups/remove_user'
577
+ method: 'DELETE' | 'POST'
578
+ queryParams: {}
579
+ jsonBody: {}
580
+ commonParams: {
581
+ acs_access_group_id: string
582
+ acs_user_id: string
583
+ }
584
+ formData: {}
585
+ jsonResponse: {}
586
+ }
541
587
  '/acs/access_groups/update': {
542
588
  route: '/acs/access_groups/update'
543
589
  method: 'POST' | 'PATCH'
@@ -921,6 +967,7 @@ export interface Routes {
921
967
  | 'hubitat'
922
968
  | 'four_suites'
923
969
  | 'dormakaba_oracode'
970
+ | 'pti'
924
971
  | 'wyze'
925
972
  | 'yale_access'
926
973
  >